Repository: fesch/CanZE Branch: master Commit: e9554a608118 Files: 364 Total size: 7.3 MB Directory structure: gitextract_4gojfjwr/ ├── .gitignore ├── .idea/ │ ├── codeStyles/ │ │ └── Project.xml │ ├── encodings.xml │ ├── jarRepositories.xml │ └── vcs.xml ├── LICENSE.md ├── NEWS.json ├── README.md ├── app/ │ ├── .gitignore │ ├── build.gradle │ ├── playstore/ │ │ └── release/ │ │ └── output-metadata.json │ ├── proguard-rules.pro │ └── src/ │ ├── fdroid/ │ │ └── java/ │ │ └── lu/ │ │ └── fisch/ │ │ └── canze/ │ │ └── classes/ │ │ └── Crashlytics.java │ ├── main/ │ │ ├── AndroidManifest.xml │ │ ├── assets/ │ │ │ ├── Twingo_3_Ph2/ │ │ │ │ ├── BCB-OBC_Dtcs.csv │ │ │ │ ├── BCB-OBC_Fields.csv │ │ │ │ ├── BCB-OBC_Tests.csv │ │ │ │ ├── DCM_Dtcs.csv │ │ │ │ ├── DCM_Fields.csv │ │ │ │ ├── DCM_Tests.csv │ │ │ │ ├── EPS_Dtcs.csv │ │ │ │ ├── EPS_Fields.csv │ │ │ │ ├── EPS_Tests.csv │ │ │ │ ├── HVAC_Dtcs.csv │ │ │ │ ├── HVAC_Fields.csv │ │ │ │ ├── HVAC_Tests.csv │ │ │ │ ├── MIU_Dtcs.csv │ │ │ │ ├── MIU_Fields.csv │ │ │ │ ├── MIU_Tests.csv │ │ │ │ ├── Navigation-UCC-ITM_Dtcs.csv │ │ │ │ ├── Navigation-UCC-ITM_Fields.csv │ │ │ │ ├── Navigation-UCC-ITM_Tests.csv │ │ │ │ ├── PEB_Dtcs.csv │ │ │ │ ├── PEB_Fields.csv │ │ │ │ ├── PEB_Tests.csv │ │ │ │ ├── S-GW3_Dtcs.csv │ │ │ │ ├── S-GW3_Fields.csv │ │ │ │ ├── S-GW3_Tests.csv │ │ │ │ ├── TDB_Dtcs.csv │ │ │ │ ├── TDB_Fields.csv │ │ │ │ ├── TDB_Tests.csv │ │ │ │ ├── UCH_Dtcs.csv │ │ │ │ ├── UCH_Fields.csv │ │ │ │ ├── UCH_Tests.csv │ │ │ │ ├── VSP_Dtcs.csv │ │ │ │ ├── VSP_Fields.csv │ │ │ │ ├── VSP_Tests.csv │ │ │ │ ├── _Ecus.csv │ │ │ │ ├── _Fields.csv │ │ │ │ └── _Frames.csv │ │ │ ├── Twizy/ │ │ │ │ ├── _Ecus.csv │ │ │ │ ├── _Fields.csv │ │ │ │ └── _Frames.csv │ │ │ ├── ZOE/ │ │ │ │ ├── BCB-OBC_Dtcs.csv │ │ │ │ ├── BCB-OBC_Fields.csv │ │ │ │ ├── BCB-OBC_Tests.csv │ │ │ │ ├── DCM_Dtcs.csv │ │ │ │ ├── DCM_Fields.csv │ │ │ │ ├── DCM_Tests.csv │ │ │ │ ├── EPS_Dtcs.csv │ │ │ │ ├── EPS_Fields.csv │ │ │ │ ├── EPS_Tests.csv │ │ │ │ ├── EVC_Dtcs.csv │ │ │ │ ├── EVC_Fields.csv │ │ │ │ ├── EVC_Tests.csv │ │ │ │ ├── FFC_Fields.csv │ │ │ │ ├── FFC_Frames.csv │ │ │ │ ├── HVAC_Dtcs.csv │ │ │ │ ├── HVAC_Fields.csv │ │ │ │ ├── HVAC_Tests.csv │ │ │ │ ├── LBC2_Dtcs.csv │ │ │ │ ├── LBC2_Fields.csv │ │ │ │ ├── LBC2_Tests.csv │ │ │ │ ├── LBC_Dtcs.csv │ │ │ │ ├── LBC_Fields.csv │ │ │ │ ├── LBC_Tests.csv │ │ │ │ ├── PEB_Dtcs.csv │ │ │ │ ├── PEB_Fields.csv │ │ │ │ ├── PEB_Tests.csv │ │ │ │ ├── Parking-Sonar_Dtcs.csv │ │ │ │ ├── Parking-Sonar_Fields.csv │ │ │ │ ├── Parking-Sonar_Tests.csv │ │ │ │ ├── TDB_Dtcs.csv │ │ │ │ ├── TDB_Fields.csv │ │ │ │ ├── TDB_Tests.csv │ │ │ │ ├── UBP_Dtcs.csv │ │ │ │ ├── UBP_Fields.csv │ │ │ │ ├── UBP_Tests.csv │ │ │ │ ├── UCH_Dtcs.csv │ │ │ │ ├── UCH_Fields.csv │ │ │ │ ├── UCH_Tests.csv │ │ │ │ ├── USM_Dtcs.csv │ │ │ │ ├── USM_Fields.csv │ │ │ │ ├── USM_Tests.csv │ │ │ │ ├── VFC_Fields.csv │ │ │ │ ├── _Dtcs.csv │ │ │ │ ├── _Ecus.csv │ │ │ │ ├── _Fields.csv │ │ │ │ ├── _FieldsAlt.csv │ │ │ │ ├── _Frames.csv │ │ │ │ ├── _FramesAlt.csv │ │ │ │ └── _Tests.csv │ │ │ └── ZOE_Ph2/ │ │ │ ├── AAU_Dtcs.csv │ │ │ ├── AAU_Fields.csv │ │ │ ├── AAU_Tests.csv │ │ │ ├── ABS-VDC_Dtcs.csv │ │ │ ├── ABS-VDC_Fields.csv │ │ │ ├── ABS-VDC_Tests.csv │ │ │ ├── APB_Dtcs.csv │ │ │ ├── APB_Fields.csv │ │ │ ├── APB_Tests.csv │ │ │ ├── BCB-OBC_Dtcs.csv │ │ │ ├── BCB-OBC_Fields.csv │ │ │ ├── BCB-OBC_Tests.csv │ │ │ ├── DCM_Dtcs.csv │ │ │ ├── DCM_Fields.csv │ │ │ ├── DCM_Tests.csv │ │ │ ├── E-ACT-EBA_Dtcs.csv │ │ │ ├── E-ACT-EBA_Fields.csv │ │ │ ├── E-ACT-EBA_Tests.csv │ │ │ ├── EPS_Dtcs.csv │ │ │ ├── EPS_Fields.csv │ │ │ ├── EPS_Tests.csv │ │ │ ├── EVC-HCM-VCM_Dtcs.csv │ │ │ ├── EVC-HCM-VCM_Fields.csv │ │ │ ├── EVC-HCM-VCM_Tests.csv │ │ │ ├── FCAM_Dtcs.csv │ │ │ ├── FCAM_Fields.csv │ │ │ ├── FCAM_Tests.csv │ │ │ ├── FRRAD_Dtcs.csv │ │ │ ├── FRRAD_Fields.csv │ │ │ ├── FRRAD_Tests.csv │ │ │ ├── HFM_Dtcs.csv │ │ │ ├── HFM_Fields.csv │ │ │ ├── HFM_Tests.csv │ │ │ ├── HVAC_Dtcs.csv │ │ │ ├── HVAC_Fields.csv │ │ │ ├── HVAC_Tests.csv │ │ │ ├── IDM_Dtcs.csv │ │ │ ├── IDM_Fields.csv │ │ │ ├── IDM_Tests.csv │ │ │ ├── INV-ME_Dtcs.csv │ │ │ ├── INV-ME_Fields.csv │ │ │ ├── INV-ME_Tests.csv │ │ │ ├── LBC2_Dtcs.csv │ │ │ ├── LBC2_Fields.csv │ │ │ ├── LBC2_Tests.csv │ │ │ ├── LBC_Dtcs.csv │ │ │ ├── LBC_Fields.csv │ │ │ ├── LBC_Tests.csv │ │ │ ├── MIU_Dtcs.csv │ │ │ ├── MIU_Fields.csv │ │ │ ├── MIU_Tests.csv │ │ │ ├── Navigation-UCC-ITM_Dtcs.csv │ │ │ ├── Navigation-UCC-ITM_Fields.csv │ │ │ ├── Navigation-UCC-ITM_Tests.csv │ │ │ ├── PLC-PLGW_Dtcs.csv │ │ │ ├── PLC-PLGW_Fields.csv │ │ │ ├── PLC-PLGW_Tests.csv │ │ │ ├── Parking-Sonar_Dtcs.csv │ │ │ ├── Parking-Sonar_Fields.csv │ │ │ ├── Parking-Sonar_Tests.csv │ │ │ ├── S-GW3_Dtcs.csv │ │ │ ├── S-GW3_Fields.csv │ │ │ ├── S-GW3_Tests.csv │ │ │ ├── TDB_Dtcs.csv │ │ │ ├── TDB_Fields.csv │ │ │ ├── TDB_Tests.csv │ │ │ ├── UCH_Dtcs.csv │ │ │ ├── UCH_Fields.csv │ │ │ ├── UCH_Tests.csv │ │ │ ├── USM_Dtcs.csv │ │ │ ├── USM_Fields.csv │ │ │ ├── USM_Tests.csv │ │ │ ├── VSP_Dtcs.csv │ │ │ ├── VSP_Fields.csv │ │ │ ├── VSP_Tests.csv │ │ │ ├── WCGS_Dtcs.csv │ │ │ ├── WCGS_Fields.csv │ │ │ ├── WCGS_Tests.csv │ │ │ ├── _Ecus.csv │ │ │ ├── _Fields.csv │ │ │ └── _Frames.csv │ │ ├── java/ │ │ │ └── lu/ │ │ │ └── fisch/ │ │ │ ├── awt/ │ │ │ │ ├── Color.java │ │ │ │ ├── Graphics.java │ │ │ │ ├── Polygon.java │ │ │ │ └── Rectangle.java │ │ │ └── canze/ │ │ │ ├── activities/ │ │ │ │ ├── AllDataActivity.java │ │ │ │ ├── AuxBattTechActivity.java │ │ │ │ ├── BatteryActivity.java │ │ │ │ ├── BrakingActivity.java │ │ │ │ ├── CanSeeActivity.java │ │ │ │ ├── CanzeActivity.java │ │ │ │ ├── ChargingActivity.java │ │ │ │ ├── ChargingGraphActivity.java │ │ │ │ ├── ChargingHistActivity.java │ │ │ │ ├── ChargingTechActivity.java │ │ │ │ ├── ClimaTechActivity.java │ │ │ │ ├── ConsumptionActivity.java │ │ │ │ ├── DashActivity.java │ │ │ │ ├── DrivingActivity.java │ │ │ │ ├── DtcActivity.java │ │ │ │ ├── ElmTestActivity.java │ │ │ │ ├── FieldTestActivity.java │ │ │ │ ├── FirmwareActivity.java │ │ │ │ ├── HeatmapBatcompActivity.java │ │ │ │ ├── HeatmapCellvoltageActivity.java │ │ │ │ ├── LeakCurrentsActivity.java │ │ │ │ ├── LoggingActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── PredictionActivity.java │ │ │ │ ├── RangeActivity.java │ │ │ │ ├── ResearchActivity.java │ │ │ │ ├── SettingsActivity.java │ │ │ │ ├── SettingsCustomActivity.java │ │ │ │ ├── SpeedcontrolActivity.java │ │ │ │ ├── TiresActivity.java │ │ │ │ ├── TwingoTestActivity.java │ │ │ │ ├── TwizyTestActivity.java │ │ │ │ └── WidgetActivity.java │ │ │ ├── actors/ │ │ │ │ ├── AssetLoadHelper.java │ │ │ │ ├── Battery.java │ │ │ │ ├── Dtc.java │ │ │ │ ├── Dtcs.java │ │ │ │ ├── Ecu.java │ │ │ │ ├── Ecus.java │ │ │ │ ├── Field.java │ │ │ │ ├── Fields.java │ │ │ │ ├── Frame.java │ │ │ │ ├── Frames.java │ │ │ │ ├── Message.java │ │ │ │ ├── StoppableThread.java │ │ │ │ ├── Test.java │ │ │ │ ├── Utils.java │ │ │ │ └── VirtualField.java │ │ │ ├── adapters/ │ │ │ │ ├── FieldAdapter.java │ │ │ │ └── LoggerField.java │ │ │ ├── bluetooth/ │ │ │ │ └── BluetoothManager.java │ │ │ ├── changelog.txt │ │ │ ├── classes/ │ │ │ │ ├── Activity.java │ │ │ │ ├── ActivityRegistry.java │ │ │ │ ├── ColorRange.java │ │ │ │ ├── ColorRanges.java │ │ │ │ ├── DataLogger.java │ │ │ │ ├── DebugLogger.java │ │ │ │ ├── FieldLogger.java │ │ │ │ ├── ForegroundCheckTask.java │ │ │ │ ├── Intervals.java │ │ │ │ ├── LoggingLogger.java │ │ │ │ ├── Options.java │ │ │ │ ├── Sid.java │ │ │ │ └── TimePoint.java │ │ │ ├── database/ │ │ │ │ ├── CanzeDataSource.java │ │ │ │ └── CanzeOpenHelper.java │ │ │ ├── devices/ │ │ │ │ ├── CanSee.java │ │ │ │ ├── Device.java │ │ │ │ ├── ELM327.java │ │ │ │ └── Http.java │ │ │ ├── exceptions/ │ │ │ │ └── NoDecoderException.java │ │ │ ├── fragments/ │ │ │ │ ├── CustomFragment.java │ │ │ │ ├── ExperimentalFragment.java │ │ │ │ ├── MainFragment.java │ │ │ │ └── TechnicalFragment.java │ │ │ ├── interfaces/ │ │ │ │ ├── BluetoothEvent.java │ │ │ │ ├── DebugListener.java │ │ │ │ ├── DrawSurfaceInterface.java │ │ │ │ ├── FieldListener.java │ │ │ │ └── VirtualFieldAction.java │ │ │ ├── ui/ │ │ │ │ └── AppSectionsPagerAdapter.java │ │ │ └── widgets/ │ │ │ ├── Bar.java │ │ │ ├── BarGraph.java │ │ │ ├── BatteryBar.java │ │ │ ├── DrawThread.java │ │ │ ├── Drawable.java │ │ │ ├── Kompass.java │ │ │ ├── Label.java │ │ │ ├── Plotter.java │ │ │ ├── Tacho.java │ │ │ ├── Timeplot.java │ │ │ └── WidgetView.java │ │ └── res/ │ │ ├── drawable/ │ │ │ ├── animation_bluetooth.xml │ │ │ ├── background_splash.xml │ │ │ ├── border.xml │ │ │ ├── circular_progress_bar.xml │ │ │ ├── progressbar_canze.xml │ │ │ ├── progressbar_canze_accel.xml │ │ │ ├── progressbar_canze_decel.xml │ │ │ ├── progressbar_canze_decel_aim.xml │ │ │ ├── progressbar_canze_decel_aimright.xml │ │ │ ├── progressbar_canze_green.xml │ │ │ └── progressbar_canze_red.xml │ │ ├── layout/ │ │ │ ├── activity_alldata.xml │ │ │ ├── activity_auxbatt.xml │ │ │ ├── activity_battery.xml │ │ │ ├── activity_braking.xml │ │ │ ├── activity_can_see.xml │ │ │ ├── activity_charging.xml │ │ │ ├── activity_charging_graph.xml │ │ │ ├── activity_charginghist.xml │ │ │ ├── activity_chargingtech.xml │ │ │ ├── activity_climatech.xml │ │ │ ├── activity_consumption.xml │ │ │ ├── activity_consumption_dash.xml │ │ │ ├── activity_consumption_mi.xml │ │ │ ├── activity_dash.xml │ │ │ ├── activity_driving.xml │ │ │ ├── activity_dtc.xml │ │ │ ├── activity_elm_test.xml │ │ │ ├── activity_fieldtest.xml │ │ │ ├── activity_firmware.xml │ │ │ ├── activity_heatmap_batcomp.xml │ │ │ ├── activity_heatmap_cellvoltage.xml │ │ │ ├── activity_leak_currents.xml │ │ │ ├── activity_logging.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_prediction.xml │ │ │ ├── activity_range.xml │ │ │ ├── activity_research.xml │ │ │ ├── activity_settings.xml │ │ │ ├── activity_settings_custom.xml │ │ │ ├── activity_speedcontrol.xml │ │ │ ├── activity_tires.xml │ │ │ ├── activity_widget.xml │ │ │ ├── alert_dist_to_dest.xml │ │ │ ├── animated_menu_item.xml │ │ │ ├── fragment_custom.xml │ │ │ ├── fragment_experimental.xml │ │ │ ├── fragment_main.xml │ │ │ ├── fragment_technical.xml │ │ │ ├── logger_field.xml │ │ │ └── spinner_item.xml │ │ ├── menu/ │ │ │ ├── menu_driving.xml │ │ │ ├── menu_empty.xml │ │ │ ├── menu_main.xml │ │ │ └── menu_settings.xml │ │ ├── values/ │ │ │ ├── arrays.xml │ │ │ ├── attr.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── values-de/ │ │ │ └── strings.xml │ │ ├── values-fr/ │ │ │ └── strings.xml │ │ ├── values-hu/ │ │ │ └── strings.xml │ │ ├── values-ru/ │ │ │ └── strings.xml │ │ ├── values-uk/ │ │ │ └── strings.xml │ │ ├── values-v19/ │ │ │ └── strings.xml │ │ ├── values-v21/ │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── values-w820dp/ │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ │ └── xml/ │ │ └── fragment_settings_main.xml │ └── playstore/ │ └── java/ │ └── lu/ │ └── fisch/ │ └── canze/ │ └── classes/ │ └── Crashlytics.java ├── build.gradle ├── cleanIcon.php ├── fastlane/ │ └── metadata/ │ └── android/ │ └── en-US/ │ ├── full_description.txt │ └── short_description.txt ├── gpl.txt ├── gradle/ │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat └── settings.gradle ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # old manual entries /.idea/workspace.xml /.idea/libraries /.idea/misc.xml /.idea/modules.xml /.idea/usage.statistics.xml /.idea/tasks.xml /.idea/assetWizardSettings.xml /.idea/caches/ /projectFilesBackup/ gradle.xml /app/google-services.json # newer standard best practice entries #built application files *.apk *.ap_ # files for the dex VM *.dex # Java class files *.class # generated files bin/ gen/ # Local configuration file (sdk path, etc) local.properties # Windows thumbnail db Thumbs.db # OSX files .DS_Store # Android Studio *.iml .gradle build/ .navigation captures/ output.json #NDK obj/ .externalNativeBuild # Keystores *.jks compiler.xml ================================================ FILE: .idea/codeStyles/Project.xml ================================================
xmlns:android ^$
xmlns:.* ^$ BY_NAME
.*:id http://schemas.android.com/apk/res/android
.*:name http://schemas.android.com/apk/res/android
name ^$
style ^$
.* ^$ BY_NAME
.* http://schemas.android.com/apk/res/android ANDROID_ATTRIBUTE_ORDER
.* .* BY_NAME
================================================ FILE: .idea/encodings.xml ================================================ ================================================ FILE: .idea/jarRepositories.xml ================================================ ================================================ FILE: .idea/vcs.xml ================================================ ================================================ FILE: LICENSE.md ================================================ CanZE licenses file ------------------- CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Disclaimer ---------- CANZE (“THE SOFTWARE”) IS PROVIDED AS IS. USE THE SOFTWARE AT YOUR OWN RISK. THE AUTHORS MAKE NO WARRANTIES AS TO PERFORMANCE OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTIES WHETHER EXPRESSED OR IMPLIED. NO ORAL OR WRITTEN COMMUNICATION FROM OR INFORMATION PROVIDED BY THE AUTHORS SHALL CREATE A WARRANTY. UNDER NO CIRCUMSTANCES SHALL THE AUTHORS BE LIABLE FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES RESULTING FROM THE USE, MISUSE, OR INABILITY TO USE THE SOFTWARE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE EXCLUSIONS AND LIMITATIONS MAY NOT APPLY IN ALL JURISDICTIONS. YOU MAY HAVE ADDITIONAL RIGHTS AND SOME OF THESE LIMITATIONS MAY NOT APPLY TO YOU. THIS SOFTWARE IS ONLY INTENDED FOR SCIENTIFIC USAGE. Used third party components licenses ------------------------------------ * Google/gson > Apache License, Version 2.0 Source: https://github.com/google/gson License: https://github.com/google/gson/blob/master/LICENSE Icons & Images -------------- * Renault Zoé (launcher icon) The icon has been designed by Pieter Willems and is part of the CanZE project. * Thermometer > CC BY 3.0 Source: https://www.iconfinder.com/icons/653255/cloud_data_forecast_rain_temperature_thermometer_thermometre_icon#size=128 License: http://creativecommons.org/licenses/by/3.0/ * Lightning Bold > GPL Source: https://www.iconfinder.com/icons/28664/lightning_power_weather_icon#size=128 License: http://www.gnu.org/copyleft/gpl.html * Steering Wheel > CC BY 3.0 Source: https://www.iconfinder.com/icons/271819/steering_wheel_icon#size=128 License: http://creativecommons.org/licenses/by/3.0/ * Plug > MIT Source: https://www.iconfinder.com/icons/298846/plug_icon#size=512 License: http://opensource.org/licenses/MIT * Chip > GPL Source: https://www.iconfinder.com/icons/2612/chip_memory_microchip_processor_ram_icon#size=128 License: http://www.gnu.org/copyleft/gpl.html * Battery > CC BY-NC 3.0 NL Source: https://www.iconfinder.com/icons/118845/battery_icon#size=128 License: http://creativecommons.org/licenses/by-nc/3.0/nl/deed.en_GB * Braces > CC BY 3.0 Source: https://www.iconfinder.com/icons/536279/braces_javascript_programming_script_icon#size=128 License: http://creativecommons.org/licenses/by/3.0/ * Impulse > Free for commercial use (include link to authors website) Source: https://www.iconfinder.com/icons/680268/analysis_chart_combo_data_graph_icon#size=128 Link: https://www.iconfinder.com/samatodedara * Settings > Free for commercial use Source: https://www.iconfinder.com/icons/66878/settings_icon#size=128 * Accept > Free for commercial use Source: https://www.iconfinder.com/icons/66697/accept_icon#size=128 * Reject > Free for commercial use Source: https://www.iconfinder.com/icons/66878/settings_icon#size=128 * Bluetooth > CC BY 3.0 Source: https://www.iconfinder.com/icons/296510/bluetooth_sync_wave_icon#size=128 License: http://creativecommons.org/licenses/by/3.0/ * Tire > Free for commercial use Source: https://www.iconfinder.com/icons/753921/cars_radials_stacked_tyres_wheels_icon#size=128 * ELM327 > CC ND 2.0 Source: https://www.flickr.com/photos/buylaptopkeyboard/10418492796/in/photostream/ License: https://creativecommons.org/licenses/by-nd/2.0/ * Attention > LGPL Source: https://www.iconfinder.com/icons/18526/agt_critical_trouble_update_icon#size=256 License: http://www.gnu.org/licenses/lgpl.html * Nippers > Free for commercial use Source: https://www.iconfinder.com/icons/10351/spanner_technical_icon#size=48 * Experiment > CC By 3.0 Source: https://www.iconfinder.com/icons/50916/aqua_copy_experiments_folder_smooth_icon#size=128 License: http://creativecommons.org/licenses/by-nc/3.0/ ================================================ FILE: NEWS.json ================================================ {"news":"Now ZE50 enabled!", "version":92} ================================================ FILE: README.md ================================================ # CanZE You have to read and agree to the informal warning and the formal disclaimer at the end of this readme.md file! CanZE is an Android App that allows you to read out some useful information out of your Renault ZE car (actually Zoe, Kangoo & Fluence) that you cannot access using the on-board computer or display. The website can be found at http://canze.fisch.lu # Issues and language We strongly urge you to report bugs, issues and requests here on github using the issue system. You have to have a github account for that, but it offloads the team from an awful lot of administrative tasks, wasting valuable time that would better be spent on more productive work. You can report in English (preferred, and really, we don't mind language errors, NONE of the team members are native speakers!), German, French, Portuguese, Dutch and Danish, as long as you don't mind us answering in English, to keep things coordinated. # Informal warning Before you download and use this software consider the following: you are interfering with your car and doing that with hardware and software beyond your control (and frankly, for a large part beyond ours), created by a loose team of interested amateurs in this field. Any car is a possibly lethal piece of machinery and you might hurt or kill yourself or others using it, or even paying attention to the displays instead of watching the road. Be extremely prudent! By even downloading this software, or the source code provided on github, you agree to have completely understand this. # Formal disclaimer CANZE (“THE SOFTWARE”) IS PROVIDED AS IS. USE THE SOFTWARE AT YOUR OWN RISK. THE AUTHORS MAKE NO WARRANTIES AS TO PERFORMANCE OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTIES WHETHER EXPRESSED OR IMPLIED. NO ORAL OR WRITTEN COMMUNICATION FROM OR INFORMATION PROVIDED BY THE AUTHORS SHALL CREATE A WARRANTY. UNDER NO CIRCUMSTANCES SHALL THE AUTHORS BE LIABLE FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES RESULTING FROM THE USE, MISUSE, OR INABILITY TO USE THE SOFTWARE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THESE EXCLUSIONS AND LIMITATIONS MAY NOT APPLY IN ALL JURISDICTIONS. YOU MAY HAVE ADDITIONAL RIGHTS AND SOME OF THESE LIMITATIONS MAY NOT APPLY TO YOU. THIS SOFTWARE IS ONLY INTENDED FOR SCIENTIFIC USAGE. ================================================ FILE: app/.gitignore ================================================ /build app.iml ================================================ FILE: app/build.gradle ================================================ apply plugin: 'com.android.application' apply plugin: 'com.google.gms.google-services' apply plugin: 'com.google.firebase.crashlytics' android { signingConfigs { release { storeFile file("$project.rootDir/keystores/CanZeKeyStore.jks") storePassword 'canze4us!' keyAlias = 'canze-upload' keyPassword 'canze4us!' } } compileSdk 33 defaultConfig { applicationId "lu.fisch.canze" minSdkVersion 21 versionName '1.68beta2' versionCode 102 } buildTypes { release { // minifyEnabled false // minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } //debug { // minifyEnabled true // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' //} } flavorDimensions "edition" productFlavors { playstore { dimension "edition" } fdroid { dimension "edition" } } defaultConfig { targetSdk 33 buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L" buildConfigField "String", "BRANCH", "\"" + getGitRevParseInfo() + "\"" signingConfig signingConfigs.release } namespace 'lu.fisch.canze' lint { abortOnError false checkReleaseBuilds false disable 'TypographyFractions' } } def getGitRevParseInfo() { def cmd = "git rev-parse --abbrev-ref HEAD" def proc = cmd.execute() proc.text.trim() } dependencies { // BoM for the Firebase platform playstoreImplementation platform('com.google.firebase:firebase-bom:32.2.2') // Dependencies for the desired Firebase products without specifying versions playstoreImplementation 'com.google.firebase:firebase-analytics:21.3.0' playstoreImplementation 'com.google.firebase:firebase-crashlytics:18.4.0' implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'me.drakeet.support:toastcompat:1.1.0' implementation 'com.google.code.gson:gson:2.10.1' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.preference:preference:1.2.1' implementation 'com.google.firebase:firebase-crashlytics-ktx:18.4.0' implementation 'com.google.firebase:firebase-analytics-ktx:21.3.0' //implementation 'com.firebase:firebase-client-android:2.5.0' } ================================================ FILE: app/playstore/release/output-metadata.json ================================================ { "version": 3, "artifactType": { "type": "APK", "kind": "Directory" }, "applicationId": "lu.fisch.canze", "variantName": "playstoreRelease", "elements": [ { "type": "SINGLE", "filters": [], "attributes": [], "versionCode": 95, "versionName": "1.63", "outputFile": "app-playstore-release.apk" } ], "elementType": "File" } ================================================ FILE: app/proguard-rules.pro ================================================ # Add project specific ProGuard rules here. # By default, the flags in this file are appended to flags specified # in /Users/robertfisch/Programs/Android/sdk/tools/proguard/proguard-android.txt # You can edit the include path and order by changing the proguardFiles # directive in build.gradle. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # Add any project specific keep options here: # If your project uses WebView with JS, uncomment the following # and specify the fully qualified class name to the JavaScript interface # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #} -keep class lu.fisch.** { *; } ##---------------Begin: proguard configuration for Gson ---------- # Gson uses generic type information stored in a class file when working with fields. Proguard # removes such information by default, so configure it to keep all of it. -keepattributes Signature # Gson specific classes -keep class sun.misc.Unsafe { *; } #-keep class com.google.gson.stream.** { *; } ##------------------Begin: added rules to see if we can nip ClassNotFound in the butt ---------- ## A bit of a shot in the dark taken from https://stackoverflow.com/questions/15686593/java-lang-classnotfoundexception-in-dalvik-system-basedexclassloader-findclass -keep class com.google.gson.stream.** { *; } -keep class android.support.** { *; } -keep interface android.support.** { *; } # Keep line numbers to alleviate debugging stack traces -renamesourcefileattribute SourceFile -keepattributes SourceFile,LineNumberTable ================================================ FILE: app/src/fdroid/java/lu/fisch/canze/classes/Crashlytics.java ================================================ package lu.fisch.canze.classes; public class Crashlytics { public static void logException (Exception e) { } public static void logString (String e) { } } ================================================ FILE: app/src/main/AndroidManifest.xml ================================================ ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/BCB-OBC_Dtcs.csv ================================================ 030D,EVC 0305,Lithium Battery Controler 030C,BCM (Body Control Module) 0309,CAN 0436,Junction box hood interlock 0437,HV Battery interlock 0438,Mains plug interlock 0439,PEB interlock 043A,PEB neutral interlock 043E,PTC interlock 0466,Cooling Temperature Sensor 046F,Cooling temperature 0602,Charging stop 0613,Charge yield 0612,S2 relay control 0620,CPU temperature 0621,Electronic card voltage supply 0622,CPU Temperature sensor 0630,Electronic power driver 0632,Electronic power driver temperature sensor 0631,Electronic power driver temperature 0640,Mains identification 0669,Mains communication line 0642,Mains phase 1 current 0643,Mains phase 2 current 0644,Mains phase 3 current 0645,Mains phase mono current 0646,Mains current regulation 0647,Mains locking input line 0649,Mains phases voltage 064A,Mains phase 1 voltage sensor 064B,Mains phase 2 voltage sensor 064C,Mains phase 3 voltage sensor 064D,Mains mono phased voltage sensors 065E,Mains phase 1 current sensor 065F,Mains phase 2 current sensor 0660,Mains phase 3 current sensor 0670,Neutral current sensor 0671,Neutral current regulation 043D,Air conditionned Interlock 043B,Fuse interlock 043C,Relay box interlock 0623,Internal power supply voltage (+5V) 0625,SPI communication 0662,Mains locking motor command 0663,Mains ground 0664,Capacity module 0626,Rectifier micro-controler 0665,Mains phase current sensor 0666,Mains phase voltage sensor 0668,Earth current sensor 0680,Blue Led 0681,Red Led 066A,Input filter temperature 066B,Input filter i 066C,Mains neutral/phase3 0648,Mains leakage 0627,Driver Flyback 0690,External power supply 0654,Hot Spot Input Module Temperature 06A0,PLGW card 0667,Mains differential current sensor 0672,CPL card 0673,Relay Box ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/BCB-OBC_Fields.csv ================================================ ,793,0,0,1,0,0,,1081,5081,ff,StartDiagnosticSession.Default ,793,0,0,1,0,0,,1085,5085,ff,StartDiagnosticSession.Programming ,793,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.ExtendedDiagnostic ,793,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,793,16,23,1,0,0,,1902AF,5902AF,ff,DTCStatusAvailabilityMask ,793,24,39,1,0,0,,1902AF,5902AF,ff,DTCDeviceAndFailureTypeOBD ,793,40,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature;241:Safety Case 1;242:Safety Case 2;243:Multiple Failure;244:Temperature too Low;245:Negative Loop Error;246:Positive Loop Error;247:Initialisation not valid;248:Overspeed;249:Limp Home;250:Specific Supplier;251:-;252:--;253:Drift low;254:Drift high ,793,44,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType.ManufacturerOrSupplier ,793,48,48,1,0,0,,1902AF,5902AF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,793,49,49,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,793,50,50,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,793,51,51,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,793,52,52,1,0,0,,1902AF,5902AF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,793,53,53,1,0,0,,1902AF,5902AF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,793,54,54,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,793,55,55,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailed,0:No;1:Yes ,793,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,793,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,793,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,793,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,793,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,793,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,793,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,793,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,793,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,793,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,793,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,793,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,793,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,793,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,793,16,39,1,0,0,,190600000084,590600000084,4ff,DTCRecord ,793,40,47,1,0,0,,190600000084,590600000084,ff,StatusOfDTC ,793,56,63,1,0,0,,190600000084,590600000084,ff,DTCExtendedData.DTCOccurrenceCounter_2 ,793,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord ,793,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC ,793,56,79,1,0,0,km,190600000085,590600000085,ff,DTCExtendedData.DTCLastDiseappearMileage ,793,16,39,1,0,0,,190600000086,590600000086,4ff,DTCRecord ,793,40,47,1,0,0,,190600000086,590600000086,ff,StatusOfDTC ,793,56,79,1,0,0,km,190600000086,590600000086,ff,DTCExtendedData.DTCTravelledDistanceFailurePresent ,793,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord ,793,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC ,793,56,79,1,0,0,km,190600000087,590600000087,ff,DTCExtendedData.DTCFirstAppearMileage ,793,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,793,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,793,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,793,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,793,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,793,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,793,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,793,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,793,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,793,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,793,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,793,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,1:296H5;2:296H0 ,793,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,1:296H5 ,793,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,1:HMLGT ,793,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,793,16,151,1,0,0,,2181,6181,2ff,Vin In Ascii ,793,152,167,1,0,0,,2181,6181,4ff,Vin CRC ,793,16,39,1,0,0,,2184,6184,4ff,ITG Supplier Number ,793,40,47,1,0,0,,2184,6184,2ff,Traceability Factory Code ,793,48,143,1,0,0,,2184,6184,2ff,Traceability Serial Number ,793,16,103,1,0,0,,21B7,61B7,4ff,Configuration of Electrical Vehicle Networks ,793,16,103,1,0,0,,21B8,61B8,4ff,List of Electrical Vehicle ECUs with After-sales diagnostic ,793,16,23,1,0,0,,21EF,61EF,2ff,Hardware Part Number 1 ,793,24,31,1,0,0,,21EF,61EF,2ff,Hardware Part Number 2 ,793,32,39,1,0,0,,21EF,61EF,2ff,Hardware Part Number 3 ,793,40,47,1,0,0,,21EF,61EF,2ff,Hardware Part Number 4 ,793,48,55,1,0,0,,21EF,61EF,2ff,Hardware Part Number 5 ,793,56,63,1,0,0,,21EF,61EF,2ff,Hardware Part Number 6 ,793,64,71,1,0,0,,21EF,61EF,2ff,Hardware Part Number 7 ,793,72,79,1,0,0,,21EF,61EF,2ff,Hardware Part Number 8 ,793,80,87,1,0,0,,21EF,61EF,2ff,Hardware Part Number 9 ,793,88,95,1,0,0,,21EF,61EF,2ff,Hardware Part Number 10 ,793,96,103,1,0,0,,21EF,61EF,2ff,Software Part Number 1 ,793,104,111,1,0,0,,21EF,61EF,2ff,Software Part Number 2 ,793,112,119,1,0,0,,21EF,61EF,2ff,Software Part Number 3 ,793,120,127,1,0,0,,21EF,61EF,2ff,Software Part Number 4 ,793,128,135,1,0,0,,21EF,61EF,2ff,Software Part Number 5 ,793,136,143,1,0,0,,21EF,61EF,2ff,Software Part Number 6 ,793,144,151,1,0,0,,21EF,61EF,2ff,Software Part Number 7 ,793,152,159,1,0,0,,21EF,61EF,2ff,Software Part Number 8 ,793,160,167,1,0,0,,21EF,61EF,2ff,Software Part Number 9 ,793,168,175,1,0,0,,21EF,61EF,2ff,Software Part Number 10 ,793,16,55,1,0,0,,21F0,61F0,2ff,PartNumber.LowerPart ,793,56,63,1,0,0,,21F0,61F0,4ff,DiagnosticIdentificationCode ,793,64,87,1,0,0,,21F0,61F0,4ff,SupplierNumber ,793,88,127,1,0,0,,21F0,61F0,2ff,HardwareNumber.LowerPart ,793,128,143,1,0,0,,21F0,61F0,4ff,SoftwareNumber ,793,144,159,1,0,0,,21F0,61F0,4ff,EditionNumber ,793,160,175,1,0,0,,21F0,61F0,4ff,CalibrationNumber ,793,176,183,1,0,0,,21F0,61F0,ff,PartNumber.BasicPartList,1:296H5;2:296H0 ,793,184,191,1,0,0,,21F0,61F0,ff,HardwareNumber.BasicPartList,1:296H5 ,793,192,199,1,0,0,,21F0,61F0,ff,ApprovalNumber.BasicPartList,1:HMLGT ,793,200,207,1,0,0,,21F0,61F0,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,793,16,55,1,0,0,,21F1,61F1,2ff,ApprovalNumber.LowerPart ,793,56,95,1,0,0,,21F1,61F1,2ff,ProgrammingSiteReference ,793,96,135,1,0,0,,21F1,61F1,2ff,ProgrammingToolReference ,793,136,143,1,0,0,,21F1,61F1,ff,NumberOfReprogrammings ,793,144,167,1,0,0,,21F1,61F1,4ff,DateOfReprogramming ,793,168,183,1,0,0,,21F1,61F1,4ff,TimeOfReprogramming ,793,184,191,1,0,0,,21F1,61F1,ff,SaveMarking ,793,192,207,1,0,0,,21F1,61F1,4ff,CrcOfLogSave ,793,24,39,.0625,3200,2,A,222001,622001,ff,($2001) Mains phase 1 current RMS value ,793,24,39,.0625,0,2,V,222002,622002,ff,($2002) CPU voltage supply from BI ,793,29,31,1,0,0,,222003,622003,ff,($2003) Junction box 2 state,0:Init;1:Charge;4:Wait;5:Power Off/Sleep ,793,24,31,1,0,0,%,222004,622004,ff,($2004) System Relative Temperature in % ,793,24,31,1,40,0,°C,222005,622005,ff,($2005) Cooling temperature from BI ,793,24,47,1,0,0,,225001,625001,ff,($5001) Plugging counter ,793,24,47,1,0,0,,225002,625002,ff,($5002) Wake Up counter ,793,31,31,1,0,0,,225003,625003,ff,($5003) Raw A/C plug interlock value,0:open;1:closed ,793,31,31,1,0,0,,225005,625005,ff,($5005) CAN activity for JB2,0:No activity;1:Activity ,793,25,31,1,0,0,%,225007,625007,ff,($5007) MMI Green LED PWM request ,793,31,31,1,0,0,,225008,625008,ff,($5008) Raw JB2 hood plug interlock value,0:open;1:closed ,793,31,31,1,0,0,,225009,625009,ff,($5009) Raw HV Battery plug interlock value,0:open;1:closed ,793,31,31,1,0,0,,22500B,62500B,ff,($500B) Raw mains interlock value,0:open;1:closed ,793,31,31,1,0,0,,22500C,62500C,ff,($500C) Mains tri phases permutation,0:v1/v2/v3 off;1:v1/v2/v3 on ,793,31,31,1,0,0,,22500D,62500D,ff,($500D) Mains voltage presence,0:Absent;1:Present ,793,31,31,1,0,0,,22500E,62500E,ff,($500E) Wake-Up request from Mains or plug presence,0:No wake-up request;1:Wake-up request ,793,31,31,1,0,0,,22500F,62500F,ff,($500F) Raw PEB plug interlock value,0:open;1:closed ,793,31,31,1,0,0,,225010,625010,ff,($5010) Raw PEB neutral interlock value,0:open;1:closed ,793,31,31,1,0,0,,225011,625011,ff,($5011) Raw PTC plug interlock value,0:open;1:closed ,793,31,31,1,0,0,,225012,625012,ff,($5012) Mains phase 1-2 voltage presence,0:Absent;1:Present ,793,31,31,1,0,0,,225013,625013,ff,($5013) Mains phase 2-3 voltage presence,0:Absent;1:Present ,793,31,31,1,0,0,,225014,625014,ff,($5014) Mains phase 3-1 voltage presence,0:Absent;1:Present ,793,30,31,1,0,0,,225015,625015,ff,($5015) Wake-Up / Sleep request from EVC,0:GoToSleep;1:Reserved1;2:Reserved2;3:WakeUp ,793,29,31,1,0,0,,225016,625016,ff,($5016) Junction box 2 state request from EVC,0:init;1:Charge;4:Wait;5:Power Off/Sleep ,793,29,31,1,0,0,,225017,625017,ff,($5017) Mains current type,0:Nok;1:AC mono;2:AC tri;3:DC;4:AC bi ,793,30,31,1,0,0,,225018,625018,ff,($5018) Mains plug unlocking CAN request,0:Unavailable;1:Unlock request;2:No unlock request ,793,30,31,1,0,0,,225019,625019,ff,($5019) Memorized value of the wake up activation,1:Wake-up activated;2:Wake-up deactivated ,793,31,31,1,0,0,,22501A,62501A,ff,($501A) BCM wake-up by wire,0:No wake-up;1:Wake-up ,793,31,31,1,0,0,,22501C,62501C,ff,($501C) S2 relay control,0:Open;1:Close ,793,30,31,1,0,0,,22501D,62501D,ff,($501D) Charge state request,0:No charge;1:Charge;2:Emergency stop ,793,29,31,1,0,0,,22501E,62501E,ff,($501E) Global system state,0:Init;1:Actif;2:Sleep ,793,30,31,1,0,0,,22501F,62501F,ff,($501F) System Temperature State,0:Ok;1:Derating;2:Nok ,793,30,31,1,0,0,,225021,625021,ff,($5021) Cooling Temperature State,0:Ok;1:Derating;2:Nok ,793,30,31,1,0,0,,225022,625022,ff,($5022) Auto wake-up enabling,0:No change;1:Activation;2:Deactivation ,793,24,39,.0625,880,2,°C,225023,625023,ff,($5023) Raw CPU temperature value from BI ,793,24,39,.0625,3200,2,A,225024,625024,ff,($5024) Measured neutral current filtred ,793,24,39,.0625,3200,2,A,225025,625025,ff,($5025) Neutral current value from BI ,793,24,31,.5,0,1,%,225026,625026,ff,($5026) J1772 control pilot raw duty cycle ,793,24,31,.25,60,1,V,225027,625027,ff,($5027) J1772 control pilot raw voltage ,793,24,31,1,40,0,°C,225028,625028,ff,($5028) Mains input filter temperature from SPI ,793,24,39,.0625,3200,2,A,225029,625029,ff,($5029) Raw AC mains phase 1 measured current ,793,24,39,.0625,3200,2,A,22502A,62502A,ff,($502A) Raw AC mains phase 2 measured current ,793,24,39,.0625,3200,2,A,22502B,62502B,ff,($502B) Raw AC mains phase 3 measured current ,793,24,39,.5,32000,1,V,22502C,62502C,ff,($502C) Raw AC mains phase 1 measured voltage ,793,24,39,.5,32000,1,V,22502D,62502D,ff,($502D) Raw AC mains phase 2 measured voltage ,793,24,39,.5,32000,1,V,22502E,62502E,ff,($502E) Raw AC mains phase 3 measured voltage ,793,25,31,1,0,0,%,22502F,62502F,ff,($502F) MMI Red LED PWM request ,793,31,31,1,0,0,,225030,625030,ff,($5030) Raw fuse interlock value,0:open;1:closed ,793,31,31,1,0,0,,225031,625031,ff,($5031) Raw Relay box plug interlock closed,0:open;1:closed ,793,24,39,.015625,0,2,V,225032,625032,ff,($5032) Driver module power supply voltage from BI ,793,24,39,.0002441406,0,3,V,225033,625033,ff,($5033) Raw Detection Logic line value ,793,24,39,.0625,32768,2,mA,225035,625035,ff,($5035) Mains ground current 1st measurement ,793,31,31,1,0,0,,225038,625038,ff,($5038) Mains Plug Locking Switch raw information,0:Unlocked;1:Locked ,793,30,31,1,0,0,,225039,625039,ff,($5039) Mains plug locking control,0:No motion;1:Close;2:Open ,793,24,39,.0625,3200,2,A,22503A,62503A,ff,($503A) Mains phase 2 current RMS value ,793,24,39,.0625,3200,2,A,22503B,62503B,ff,($503B) Mains phase 3 current RMS value ,793,24,39,.0625,3200,2,A,22503C,62503C,ff,($503C) Mains current phase 1 mean value ,793,24,39,.0625,3200,2,A,22503D,62503D,ff,($503D) Mains current phase 2 mean value ,793,24,39,.0625,3200,2,A,22503E,62503E,ff,($503E) Mains current phase 3 mean value ,793,24,39,.5,0,1,V,22503F,62503F,ff,($503F) Mains phase 1-2 voltage RMS value ,793,24,39,.5,0,1,V,225041,625041,ff,($5041) Mains phase 2-3 voltage RMS value ,793,24,39,.5,0,1,V,225042,625042,ff,($5042) Mains phase 3-1 voltage RMS value ,793,24,39,.5,32000,1,V,225043,625043,ff,($5043) AC mains phase 1-2 measured voltage ,793,24,39,.5,32000,1,V,225044,625044,ff,($5044) AC mains phase 2-3 measured voltage ,793,24,39,.5,32000,1,V,225045,625045,ff,($5045) AC mains phase 3-1 measured voltage ,793,24,39,.5,32000,1,V,225046,625046,ff,($5046) Mains phase 1-2 mean voltage ,793,24,39,.5,32000,1,V,225047,625047,ff,($5047) Mains phase 2-3 mean voltage ,793,24,39,.5,32000,1,V,225048,625048,ff,($5048) Mains phase 3-1 mean voltage ,793,24,39,.0078125,-1280,3,Hz,225049,625049,ff,($5049) Mains phase frequency ,793,24,39,1,20000,0,W,22504A,62504A,ff,($504A) Mains active power consumed ,793,24,39,.0625,9600,2,A,22504B,62504B,ff,($504B) Mains current sum ,793,24,39,.5,32000,1,V,22504C,62504C,ff,($504C) Mains voltage sum ,793,24,39,.0625,3200,2,A,22504D,62504D,ff,($504D) HV Network measured current ,793,24,39,1,1023,0,V,22504E,62504E,ff,($504E) HV voltage ,793,24,31,1,0,0,,22504F,62504F,ff,($504F) Mains leakage current strategy state,0:OFF/Init;1:OK;2:NOK ,793,24,24,1,0,0,,225050,625050,ff,($5050) External controls denial status flags.0,0:Reserved for future use_0 ,793,24,31,1,40,0,°C,225051,625051,ff,($5051) CPU temperature value ,793,24,31,1,40,0,°C,225052,625052,ff,($5052) IGBT Buck arm 1 temperature ,793,24,31,1,40,0,°C,225053,625053,ff,($5053) Raw IGBT Buck arm 1 temperature ,793,24,31,1,40,0,°C,225054,625054,ff,($5054) Mains input filter hot spot temperature ,793,24,31,1,40,0,°C,225055,625055,ff,($5055) Mains input filter hot spot temperature from SPI ,793,24,31,1,40,0,°C,225056,625056,ff,($5056) Mains input filter temperature ,793,24,39,.0625,32768,2,mA,225057,625057,ff,($5057) Raw leakage current - DC part measurement ,793,24,39,.0625,32768,2,mA,225058,625058,ff,($5058) Raw leakage current - High Frequency 10kHz part measurement ,793,24,39,.0625,32768,2,mA,225059,625059,ff,($5059) Raw leakage current - High Frequency 1st part measurement ,793,24,39,.0625,32768,2,mA,22505A,62505A,ff,($505A) Raw leakage current - Low Frequency part measurement (50Hz) ,793,31,31,1,0,0,,22505B,62505B,ff,($505B) Virgin neutral current acquisition tuning detection ,793,31,31,1,0,0,,22505C,62505C,ff,($505C) Inform on spi communication error ,793,31,31,1,0,0,,22505D,62505D,ff,($505D) Global checksum result on SPI frames ,793,24,39,1,0,0,,22505E,62505E,ff,($505E) FPGA ident ,793,24,39,1,0,0,ms,22505F,62505F,ff,($505F) High part of CPU clock since power up ,793,24,39,1,0,0,ms,225061,625061,ff,($5061) Low part of CPU clock since power up ,793,24,39,1,0,0,Ohm,225062,625062,ff,($5062) Mains ground resistance ,793,24,31,1,0,0,,225063,625063,ff,($5063) Supervisor state,0:Init;1:Wait;2:ClosingS2;3:InitType;4:InitLkg;5:InitChg;6:Charge;7:ZeroAmpMode;8:EndOfChg;9:OpeningS2;10:ReadyToSleep;11:EmergencyStop;12:InitChargeDF;13:OCPStop;14:WaitS2;15:Reload;16:Prohibition;17:Not used17;18:Not used18;19:Not used19;20:Not used20 ,793,24,31,1,0,0,,225064,625064,ff,($5064) Leakage current diagnostic stored completion status,0:init;1:HF10;3:Mains Ground Default;5:Earth Current default;9:Ground Default;17:Means Leakage DC;33:Means Leakage LF;49:Means Leakage DC+LF;65:Means Leakage HF;81:Means Leakage DC+HF;97:Means Leakage LF+HF;113:Means Leakage DC+LF+HF ,793,24,39,.0625,32768,2,mA,225065,625065,ff,($5065) Leakage DC current saved indicator after failure ,793,24,39,.0625,32768,2,mA,225066,625066,ff,($5066) Leakage HF 10kHz current saved indicator after failure ,793,24,39,.0625,32768,2,mA,225067,625067,ff,($5067) Leakage HF current saved indicator after failure ,793,24,39,.0625,32768,2,mA,225068,625068,ff,($5068) Leakage LF current saved indicator after failure ,793,24,31,1,0,0,,225069,625069,ff,($5069) LED absence configuration,0:LED present;1:LED absent ,793,24,31,1,0,0,,22506A,62506A,ff,($506A) Old MMI configuration,0:New MMI;1:Old MMI ,793,24,31,1,0,0,,22506B,62506B,ff,($506B) Vehicle configuration type,0:X10 configuration;1:X07 configuration ,793,24,39,.015625,0,2,,22506C,62506C,ff,($506C) 15V from Driver flyback ,793,24,39,1,0,0,,22506D,62506D,ff,($506D) Saved number of quickdrop values ,793,24,31,1,0,0,,22506E,62506E,ff,($506E) Cosphi regulation enable,0:Disable;1:Enable ,793,24,31,1,0,0,,22506F,62506F,ff,($506F) PLGW card presence,0:Not Present;1:Present ,793,24,31,.25,0,1,A,225070,625070,ff,($5070) max AC current limitation configuration ,793,24,39,.0625,32768,2,mA,225074,625074,ff,($5074) Leakage current - DC part measurement - without offset ,793,24,39,.0625,32768,2,mA,225075,625075,ff,($5075) Filtered Leakage current -High Frequency measurement ,793,24,39,.0625,32768,2,mA,225076,625076,ff,($5076) Filtered Leakage current -High Frequency 10kHz part measurement ,793,24,39,.0625,32768,2,mA,225077,625077,ff,($5077) Leakage current - Low Frequency part measurement (50Hz) ,793,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,793,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,793,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/BCB-OBC_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature F1,Safety Case 1 F2,Safety Case 2 F3,Multiple Failure F4,Temperature too Low F5,Negative Loop Error F6,Positive Loop Error F7,Initialisation not valid F8,Overspeed F9,Limp Home FA,Specific Supplier FB,- FC,-- FD,Drift low FE,Drift high ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/DCM_Dtcs.csv ================================================ AE09,Ecall Red LED AE08,Ecall Microphone AE0B,Ecall Auto LED AE0C,Ecall Blacklight LED AE0D,Ecall Button AE13,HU/NAVI USB AE14,SMS AE16,PPP Data Communication AE17,Vnext Authentification AE22,SIM AE24,CEP Certificate Expired AE25,CEP Certificate Revoked AE26,CEP Bad Certificate AE27,CEP Certificate Unsupported AE28,CEP Certificate Unknown AE30,CEP Unknown AE32,Audio Head-Unit Failure AE00,Battery Level AE06,Aux_In_Info/Tel_Mute_Out Failure AE34,Cellular Ext Antenna AE23,Cellular Registration Denied AE33,Speaker Failure AE4F,BCM Pairing DTC AE4E,Remote Actuator- PIN code missing AE4C,Remote Actuator without unknown ID AE4B,Remote Actuator without Cipher key AE49,Remote Actuator not Activated AE01,Internal Battery Status AE04,Internal Battery Capacity AE10,MIC OUT SIGNAL AE94,RELAY Control AE0E,System Internal Failure AE36,Accelerometer Failure AE15,VOICE FAILURE AE18,Vnext Functional AE19,Vnext Config AE21,Invalid A-IVC AE38,Vnext Master Authentication NOK AE39,Vnext Regional Authentication NOK AE3A,Vnext Master timeout AE3B,Vnext Regional timeout AE3C,Part ID is unknown AE3D,Bad Pairing A-IVC & VIN AE3E,No Certificate available AE3F,Part Certificate Verification fails AE41,A-IVC Authentication Fails AE42,A-IVC no Region Setting AE43,A-IVC Invalid Region Setting AE44,Region Setting Storage error AE45,A-IVC no Partition Setting AE46,A-IVC Invalid Partition Setting AE47,Partition Setting Storage error AE48,Service Check not complete AE29,CEP ILLEGAL PARAMETER E141,Lost communication with Automatic Transmission E14F,Lost communication with Body Control Module E140,Lost communication with Electronic Control Moteur E159,Lost communication with Electric Powered Steering E118,Lost communication with Hand Free Module E153,Lost communication with Climate Control E14E,Lost communication with Cluster E15B,Lost communication with Underhood Switching Module E148,Lost communication with Electronic Stability Control E143,Lost communication with Hybrid Electric Vehicle Control AE0A,Ecall Green LED AE11,A-IVC Overheat AE12,VIRGIN Configuration AE31,A-IVC Clock AE35,GNSS Ext Antenna C079,CAN V C074,CAN M AE05,Airbag Failure(eCall) AE37,Airbag Hardwire Malfunction AE40,Part Certificate Storage error AE50,HTTP Failures AE51,HTTP Server error AE0F,MODEM FAILURE E150,Lost communication with Airbag Control Unit E144,Lost communication with Lithium-ion Battery Controller E157,Lost communication with DC to DC Converter Control Module 9380,ECU Wifi module ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/DCM_Fields.csv ================================================ ,7DA,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,7DA,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Reprog ,7DA,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,7DA,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7DA,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,7DA,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTCFormat;1:ISO_14229-1_DTCFormat;2:SAE_J1939-73_DTCFormat;3:ISO_11992-4_DTCFormat;4:SAE_J2012-DA_WWHOBD_DTCFormat ,7DA,32,47,1,0,0,,1901FF,5901FF,4ff,DTCCount ,7DA,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,7DA,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,7DA,40,43,1,0,0,,1902FF,5902FF,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,7DA,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier,0:None ,7DA,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested ,7DA,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle ,7DA,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7DA,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7DA,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7DA,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC ,7DA,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle ,7DA,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,7DA,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,7DA,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7DA,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,7DA,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,7DA,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,7DA,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,7DA,24,31,1,0,0,,220100,620100,ff,USB_connected,0:Not connected;1:Connected or alimented;2:Undefined ,7DA,24,279,1,0,0,,220101,620101,2ff,Application_parameters.Name ,7DA,280,535,1,0,0,,220101,620101,2ff,Application_parameters.Company ,7DA,536,791,1,0,0,,220101,620101,2ff,Application_parameters.Version ,7DA,24,31,1,0,0,,220102,620102,ff,Num_satellites ,7DA,24,31,1,0,0,%,220103,620103,ff,GSM_reception_level ,7DA,24,343,1,0,0,,220104,620104,2ff,Communication Network.Name ,7DA,344,423,1,0,0,,220104,620104,2ff,Communication Network.ID ,7DA,24,143,1,0,0,,220106,620106,2ff,IMEI ,7DA,24,31,1,0,0,,220107,620107,ff,RSSI,0:(< -113 dBm) No Signal;1:(-111dBm) Very Poor Signal;2:(-109 dBm) Very Poor Signal;3:(-107 dBm) Poor Signal;4:(-105 dBm) Poor Signal;5:(-103 dBm) Poor Signal;6:(-101dBm) Poor Signal;7:(-99 dBm) Fair Signal;8:(-97 dBm) Fair Signal;9:(-95 dBm) Fair Signal;10:(-93 dBm) Fair Signal;11:(-91 dBm) Fair Signal;12:(-89 dBm) Fair Signal;13:(-87 dBm) Fair Signal;14:(-85 dBm) Good Signal;15:(-83 dBm) Good Signal;16:(-81 dBm) Good Signal;17:(-79 dBm) Good Signal;18:(-77 dBm) Good Signal;19:(-75 dBm) Good Signal;20:(-73 dBm) Good Signal;21:(-71 dBm) Good Signal;22:(-69 dBm) Excellent Signal;23:(-67 dBm) Excellent Signal;24:(-65 dBm) Excellent Signal;25:(-63 dBm) Excellent Signal;26:(-61 dBm) Excellent Signal;27:(-59 dBm) Excellent Signal;28:(-57 dBm) Excellent Signal;29:(-55 dBm) Excellent Signal;30:(-53 dBm) Excellent Signal;31:(> -51 dBm) Excellent Signal;255:Not known or not detectable ,7DA,24,31,1,0,0,,220108,620108,ff,GNSS_sensing ,7DA,24,47,1,0,0,,220109,620109,ff,GNSS_parameters_status.Latitude position ,7DA,48,55,1,0,0,,220109,620109,2ff,GNSS_parameters_status.Latitude orientation ,7DA,56,79,1,0,0,,220109,620109,ff,GNSS_parameters_status.Longitude position ,7DA,80,87,1,0,0,,220109,620109,2ff,GNSS_parameters_status.Longitude orientation ,7DA,88,103,1,0,0,wk,220109,620109,ff,GNSS_parameters_status.Week_Number ,7DA,104,135,1,0,0,s,220109,620109,1ff,GNSS_parameters_status.Week_Seconds ,7DA,136,143,1,0,0,,220109,620109,2ff,GNSS_parameters_status.Lack ,7DA,24,31,1,0,0,,22010A,62010A,ff,AIVC_state,0:St On;1:StOnRFOff;2:StOnSwap;3:StDisc;4:StDrx;5:StDrxDisc;6:StOffSms;7:StOffData;8:StOff;9:StOffRFOff;10:StOffSwap;11:StFota;12:StECall;13:StCallBack;14:StReprog;15:StOnInit;16:StOnError;17:StOffInit ,7DA,24,279,1,0,0,,22010E,62010E,2ff,EcallChangeLog_SMSfallback.Old_Number ,7DA,280,535,1,0,0,,22010E,62010E,2ff,EcallChangeLog_SMSfallback.New_Number ,7DA,536,791,1,0,0,,22010E,62010E,2ff,EcallChangeLog_SMSfallback.Request_From ,7DA,792,1047,1,0,0,,22010E,62010E,2ff,EcallChangeLog_SMSfallback.Timestamp ,7DA,24,279,1,0,0,,22010F,62010F,2ff,EcallChangeLog_TestNumber.Old_Number ,7DA,280,535,1,0,0,,22010F,62010F,2ff,EcallChangeLog_TestNumber.New_Number ,7DA,536,791,1,0,0,,22010F,62010F,2ff,EcallChangeLog_TestNumber.Request_From ,7DA,792,1047,1,0,0,,22010F,62010F,2ff,EcallChangeLog_TestNumber.Timestamp ,7DA,24,31,1,0,0,,220112,620112,ff,CCS_SERVICE_ACTIVATION,0:Inactive;1:Active ,7DA,24,31,1,0,0,,220113,620113,ff,CCS_CURRENT_RENTAL_STATUS,0:Unavailable;1:Available;2:Reserved;3:Booking Registration;4:In rental;5:Restoration Registration ,7DA,24,31,1,0,0,%,220119,620119,ff,BER ,7DA,24,31,1,0,0,,22011A,62011A,ff,SIM Status.SIM _lock_status,0:SIM lock;1:SIM unlock ,7DA,32,191,1,0,0,,22011A,62011A,2ff,SIM Status.SIM CCID ,7DA,192,311,1,0,0,,22011A,62011A,2ff,SIM Status.SIM identification(IMSI) ,7DA,24,31,1,0,0,,22011B,62011B,ff,Data channel,0:Not connected;1:2G channel open;2:3G channel open;3:4G channel open;4:5G channel open;255:Unknown ,7DA,24,31,1,0,0,,22011C,62011C,ff,IP_address_APN1.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,22011C,62011C,4ff,IP_address_APN1.address ,7DA,24,39,1,0,0,°,220121,620121,ff,GNSS_VEHICLE_DIRECTION ,7DA,24,175,1,0,0,,220123,620123,2ff,NETWORK_MONITORING.NOKtoOK ,7DA,176,327,1,0,0,,220123,620123,2ff,NETWORK_MONITORING.OKtoNOK ,7DA,24,1143,1,0,0,,220124,620124,4ff,GET_ENCODED_MSD ,7DA,24,175,1,0,0,,220125,620125,2ff,LAST_CRASH_DETECTED ,7DA,24,31,1,40,0,°C,220126,620126,1ff,BUB_INTERNAL_TEMPERATURE ,7DA,24,39,1,0,0,mV,220127,620127,ff,BUB_OUTPUT_VOLTAGE ,7DA,24,31,1,0,0,,220129,620129,ff,BUB_CALCULATED_SOH,0:End of Life of the Battery;1:Battery not End of Life ,7DA,24,39,1,0,0,d,22012A,62012A,ff,BUB_AGE ,7DA,24,31,1,0,0,,22012B,62012B,ff,AutomaticEcallMemorizationState,0:No automatic eCall has ever been detected before;1:In progress;2:Sucessful violent Automatic eCall end;3:Successful medium Automatic eCall end;4:Failure automatic eCall end ,7DA,24,31,.1,0,1,V,22012D,62012D,ff,A-IVC input voltage ,7DA,24,39,1,0,0,,22012E,62012E,1ff,GET_ACCELEROMETER_AXIS_VALUES.Xaxis ,7DA,40,55,1,0,0,,22012E,62012E,1ff,GET_ACCELEROMETER_AXIS_VALUES.Yaxis ,7DA,56,71,1,0,0,,22012E,62012E,1ff,GET_ACCELEROMETER_AXIS_VALUES.Zaxis ,7DA,24,39,1,0,0,mg,22012F,62012F,ff,GET_ACCELEROMETER_THRESOLD_VALUES.rolloverzthreshold ,7DA,40,55,1,0,0,,22012F,62012F,ff,GET_ACCELEROMETER_THRESOLD_VALUES.endpositionzthreshold ,7DA,24,31,1,0,0,,220130,620130,ff,Conf_Monitoring,0:De Activated;1:Activated ,7DA,24,39,1,0,0,s,220131,620131,ff,Conf Monitoring Upload Period IGN-ON ,7DA,24,31,1,0,0,h,220132,620132,ff,Conf Monitoring Upload Period IGN_OFF ,7DA,24,39,1,0,0,s,220133,620133,ff,ConfTracking Upload Period IGN_ON ,7DA,24,39,1,0,0,min,220134,620134,ff,ConfTracking Upload Period IGN_OFF ,7DA,24,31,1,0,0,,220135,620135,ff,Conf Tdp Extra Data,0:De Activated;1:Activated ,7DA,24,31,1,0,0,,220137,620137,ff,Service activation status (SVT),0:De Activated;1:Activated ,7DA,24,31,1,0,0,,220138,620138,ff,AT+CREG,0:Not registered- MS is not currently searching for a new operator;1:Registered- home network;2:Not registered- MS currently searching for a base station;3:Registration denied;4:unknown;5:Registered- roaming ,7DA,24,31,1,0,0,,220139,620139,ff,AT+CGREG,0:Not registered- MS is not currently searching for a new operator;1:Registered- home network;2:Not registered- MS currently searching for a base station;3:Registration denied;4:unknown;5:Registered- roaming ,7DA,24,151,1,0,0,,220140,620140,4ff,[OutPut1] Remote order frame ,7DA,24,151,1,0,0,,220141,620141,4ff,[Input2] vehicle ACK frame ,7DA,24,31,1,0,0,,220144,620144,ff,Remote Actuator - WakeUpReqMax ,7DA,24,31,1,0,0,,220145,620145,ff,eUICC_status.PIN used,0:PIN code activated;1:PIN code deactivated ,7DA,32,287,1,0,0,,220145,620145,2ff,eUICC_status.EID ,7DA,288,447,1,0,0,,220145,620145,2ff,eUICC_status.ICCID ,7DA,448,567,1,0,0,,220145,620145,2ff,eUICC_status.IMSI ,7DA,568,687,1,0,0,,220145,620145,2ff,eUICC_status.MSISDN ,7DA,24,31,1,0,0,,220146,620146,ff,IP_address_APN5.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,220146,620146,4ff,IP_address_APN5.address ,7DA,24,31,1,0,0,,220147,620147,ff,IP_address_APN6.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,220147,620147,4ff,IP_address_APN6.address ,7DA,24,31,1,0,0,,220148,620148,ff,IP_address_APN7.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,220148,620148,4ff,IP_address_APN7.address ,7DA,24,31,1,0,0,,220149,620149,ff,IP_address_APN8.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,220149,620149,4ff,IP_address_APN8.address ,7DA,24,31,1,0,0,W.h,22014A,62014A,ff,EMPC Budget ,7DA,24,39,1,0,0,,22014B,62014B,ff,TimerDRX ,7DA,24,31,1,0,0,,22014C,62014C,ff,Remote Charging Activation status,0:Activated;1:Deactivated ,7DA,24,31,1,0,0,,22014E,62014E,ff,BUB_CALCULATED_SOC_B,0:Not available;1:Fully charged (>95%);2:In charge;3:Low charge (<=5%) ,7DA,24,119,1,0,0,,22014F,62014F,4ff,eUICCC Version ,7DA,24,151,1,0,0,,220150,620150,4ff,eUICC SPN ,7DA,24,111,1,0,0,,220151,620151,2ff,SIM_REF_NUMBER ,7DA,24,31,1,0,0,,220154,620154,ff,Key storage status,0:Request pending;1:Requested;2:Stored ,7DA,24,31,1,0,0,,220155,620155,ff,CALL_SWITCH_STATUS,0:OFF;1:ON ,7DA,24,39,1,0,0,,220156,620156,4ff,SW components version part1.SOP version ,7DA,40,103,1,0,0,,220156,620156,4ff,SW components version part1.VUC Version ,7DA,104,167,1,0,0,,220156,620156,4ff,SW components version part1.SOC version ,7DA,168,231,1,0,0,,220156,620156,4ff,SW components version part1.DCM Version ,7DA,232,295,1,0,0,,220156,620156,4ff,SW components version part1.UCD Version ,7DA,296,359,1,0,0,,220156,620156,4ff,SW components version part1.MDD Version ,7DA,360,535,1,0,0,,220156,620156,4ff,SW components version part1.Padding $20 ,7DA,24,87,1,0,0,,220157,620157,4ff,SW components version part2.Whitelist version ,7DA,88,151,1,0,0,,220157,620157,4ff,SW components version part2.TriggerContext ,7DA,152,215,1,0,0,,220157,620157,4ff,SW components version part2.FunctionDB version ,7DA,216,279,1,0,0,,220157,620157,4ff,SW components version part2.MqttTopicConfig version ,7DA,280,343,1,0,0,,220157,620157,4ff,SW components version part2.AivcConfig version ,7DA,344,535,1,0,0,,220157,620157,4ff,SW components version part2.Padding $20 ,7DA,24,31,1,0,0,,220158,620158,ff,Reprogramming Fota by USB (through IVI),0:Reprog on going;1:end of SOC reprog ,7DA,24,31,1,0,0,,220159,620159,ff,DIAG_Part Authentification Skip/Reset,0:Inactive;1:Skip (force the transition from [StOnInit] to [StOn]);2:Reset (force the transition from [StOn] to[StOnInit]) ,7DA,24,31,1,0,0,,224000,624000,ff,Architecture Definition,0:Virgin A-IVC;1:C1A ICE;2:C1A xEV;3:T4VS ICE;4:T4VS xEV;5:GEN5 ICE;6:GEN5 xEV;7:GEN3 ICE;8:GEN3 xEV;9:x07;10:G1;11:C1A-HS ICE;12:C1A-HS xEV ,7DA,24,31,1,0,0,,224003,624003,4ff,Speaker Settings.Codec gain ,7DA,32,39,1,0,0,,224003,624003,4ff,Speaker Settings.Pre-processing gain ,7DA,40,151,1,0,0,,224003,624003,4ff,Speaker Settings.Auto gain control ,7DA,152,279,1,0,0,,224003,624003,4ff,Speaker Settings.FIR ,7DA,280,1239,1,0,0,,224003,624003,4ff,Speaker Settings.IIR ,7DA,1240,1263,1,0,0,,224003,624003,4ff,Speaker Settings.Auto volume control ,7DA,24,31,1,0,0,,224004,624004,4ff,Microphone Settings.Codec gain ,7DA,32,39,1,0,0,,224004,624004,4ff,Microphone Settings.Pre-processing gain ,7DA,40,151,1,0,0,,224004,624004,4ff,Microphone Settings.Auto gain ctrl ,7DA,152,279,1,0,0,,224004,624004,4ff,Microphone Settings.FIR ,7DA,280,1239,1,0,0,,224004,624004,4ff,Microphone Settings.IIR ,7DA,1240,1871,1,0,0,,224004,624004,4ff,Microphone Settings.Echo ,7DA,24,71,1,0,0,,224005,624005,4ff,HPLMN Profile1 ,7DA,24,527,1,0,0,,224006,624006,4ff,APN1 parameters Profile 1.APN1 ,7DA,528,783,1,0,0,,224006,624006,4ff,APN1 parameters Profile 1.APN1UID ,7DA,784,1039,1,0,0,,224006,624006,4ff,APN1 parameters Profile 1.APN1PWD ,7DA,24,39,1,0,0,min,224007,624007,ff,DRX mode duration ,7DA,24,31,1,0,0,,224008,624008,ff,Ecall Vehicle Type,0:Passenger Vehicle (Class M1);1:Buses and Coaches (Class M2);2:Buses and Coaches (Class M3);3:Light Commercial Vehicles (Class N1);4:Heavy Duty Vehicles (Class N2);5:Heavy Duty Vehicles (Class N3);6:Motorcycles (Class L1e);7:Motorcycles (Class L2e);8:Motorcycles (Class L3e);9:Motorcycles (Class L4e);10:Motorcycles (Class L5e);11:Motorcycles (Class L6e);12:Motorcycles (Class L7e);13:Light passenger vehicle ( Classe K1) ,7DA,25,25,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.otherPropulsion,0:Not present;1:Present ,7DA,26,26,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.hydrogen,0:Not present;1:Present ,7DA,27,27,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.electricEnergy,0:Not present;1:Present ,7DA,28,28,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.liquidPropaneGas,0:Not Present;1:Present ,7DA,29,29,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.compressedNaturalGas,0:Not present;1:Present ,7DA,30,30,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.dieselTank,0:Not present;1:Present ,7DA,31,31,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.gasolineTank,0:Not Present;1:Present ,7DA,24,279,1,0,0,,22400C,62400C,2ff,SIM SMS Centre1 ,7DA,24,151,1,0,0,,22400D,62400D,2ff,Ecall Number _ Operational ,7DA,24,151,1,0,0,,22400E,62400E,2ff,Ecall Number _ Life cycle Test ,7DA,24,31,1,0,0,,22400F,62400F,ff,Priv_Ecall_Manual_Function_Activation,0:Priv Ecall Manual deactivated;1:Priv Ecall Manual activated ,7DA,24,31,1,0,0,,224010,624010,ff,Priv Ecall Auto Activation.ACN,0:Priv Eecall auto ACN deactivated;1:Priv Ecall auto ACN activated ,7DA,32,39,1,0,0,,224010,624010,ff,Priv Ecall Auto Activation.AACN,0:Priv Ecall auto AACN deactivated;1:Priv Ecall auto AACN activated ,7DA,24,279,1,0,0,,224013,624013,2ff,SIM PIN Code Profile 1 ,7DA,24,31,1,0,0,,224014,624014,ff,SIM PIN Used Profile 1,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,224016,624016,ff,A-IVC Activation Status,1:A-IVC activated;2:A-IVC deactivated;3:Not Available ,7DA,24,31,1,0,0,,22401C,62401C,ff,USB_definition,0:USB cable not mounted;1:USB cable mounted ,7DA,24,31,1,0,0,,22401D,62401D,ff,Ecall Activation Status,0:Reg Ecall deactivated;1:Reg Ecall activated ,7DA,24,151,1,0,0,,22401E,62401E,2ff,ECALL_SMS_FALLBACK_NUMBER ,7DA,24,31,1,0,0,,22401F,62401F,ff,Ecall ZONE,0:Europe;1:Russia;2:China Renault;3:Japan;4:NAM;5:China Nissan;6:China Infiniti;7:Latam;8:Korea;9:Austraria;10:MMC China;99:Master ,7DA,24,31,1,0,0,,224020,624020,ff,ECALL_NO_AUTOMATIC_TRIGGERING,0:False (Reg Auto Ecall activated);1:True (Reg Auto Ecall deactivated) ,7DA,24,31,1,0,0,,224022,624022,ff,ECALL_ABORT_ALLOWED,0:False;1:True ,7DA,24,31,1,0,0,,224023,624023,ff,Ecall H_ENTRIES_NUMBER ,7DA,24,31,1,0,0,,224024,624024,ff,MODIFICATIONS_NUMBER ,7DA,24,31,1,0,0,min,224025,624025,ff,Ecall CLEARDOWN_TIMEOUT ,7DA,24,39,1,0,0,min,224026,624026,ff,Ecall CALL-BACK_TIMEOUT ,7DA,24,31,1,0,0,,224027,624027,ff,Ecall VOICE_REQ_NO_RECEIVED_TIMEOUT ,7DA,24,31,1,0,0,min,224028,624028,ff,Ecall INT MEM TRANSMIT INTERVAL ,7DA,24,31,1,0,0,,224029,624029,ff,Ecall INT MEM TRANSMIT ATTEMPT ,7DA,24,31,1,0,0,s,22402A,62402A,ff,STOP_MSD_TIMEOUT ,7DA,24,39,1,0,0,min,22402B,62402B,ff,NAD_DEREGISTRATION_TIME ,7DA,24,39,1,0,0,s,22402C,62402C,ff,Ecall DIAL DURATION ,7DA,24,31,1,0,0,,22402D,62402D,ff,Ecall AUTO DIAL ATTEMPTS ,7DA,24,31,1,0,0,,22402E,62402E,ff,Ecall MANUAL DIAL ATTEMPTS ,7DA,24,31,1,0,0,,22402F,62402F,ff,MSD_SEND_BY_SMS_IF_NOT_ACK,0:False;1:True ,7DA,24,31,1,0,0,s,224030,624030,ff,SEND_MSD_NO_RECEIVED_TIMEOUT ,7DA,24,39,1,0,0,s,224032,624032,ff,Ecall TEST REGISTRATION PERIOD ,7DA,24,39,1,0,0,m,224033,624033,ff,Ecall TEST MODE END DISTANCE ,7DA,24,31,1,0,0,Hz,224034,624034,ff,Ecall F FAST ,7DA,24,31,1,0,0,Hz,224035,624035,ff,Ecall F SLOW ,7DA,24,31,1,0,0,s,224036,624036,ff,Ecall DURATION LED ON AT START ,7DA,24,31,1,0,0,s,224037,624037,ff,ECALL T LONG PUSH ,7DA,24,31,1,0,0,%,224038,624038,ff,Ecall HMI LUMINOSITY GREEN MIN ,7DA,24,31,1,0,0,%,224039,624039,ff,Ecall HMI LUMINOSITY GREEN MAX ,7DA,24,31,1,0,0,%,22403A,62403A,ff,Ecall HMI LUMINOSITY GREEN DAY ,7DA,24,31,1,0,0,%,22403B,62403B,ff,Ecall HMI LUMINOSITY GREEN NIGHT ,7DA,24,31,1,0,0,%,22403C,62403C,ff,Ecall HMI LUMINOSITY RED MIN ,7DA,24,31,1,0,0,%,22403D,62403D,ff,Ecall HMI LUMINOSITY RED MAX ,7DA,24,31,1,0,0,%,22403E,62403E,ff,Ecall HMI LUMINOSITY RED DAY ,7DA,24,31,1,0,0,%,22403F,62403F,ff,Ecall HMI LUMINOSITY RED NIGHT ,7DA,24,31,1,0,0,%,224040,624040,ff,Ecall HMI LUMINOSITY BACKLIGHT MIN ,7DA,24,31,1,0,0,%,224041,624041,ff,Ecall HMI LUMINOSITY BACKLIGHT MAX ,7DA,24,31,1,0,0,%,224042,624042,ff,Ecall HMI LUMINOSITY BACKLIGHT DEFAULT ,7DA,24,31,1,0,0,%,224043,624043,ff,HMI_LUMINOSITY_BACKLIGHT_DAY ,7DA,24,31,1,0,0,s,224044,624044,ff,Ecall T_HYSTERESIS ,7DA,24,31,1,0,0,,224045,624045,ff,Ecall REMOTE_CALL_BACK_REQUEST,0:False (callback request by sms is not allowed);1:True (callback request by sms is allowed) ,7DA,24,31,1,0,0,,224047,624047,ff,Ecall MSD_REQUEST_BY_SMS,0:False;1:True ,7DA,24,31,1,0,0,,224048,624048,ff,Ecall TEST_MODE_AVAILABLE,0:False (Test Mode NOTavailable);1:True (Test Mode available) ,7DA,24,31,1,0,0,,224050,624050,ff,PPP.ReconnectionConfiguration.ConnectionRetry ,7DA,32,47,1,0,0,s,224050,624050,ff,PPP.ReconnectionConfiguration.FailureTimeout ,7DA,48,63,1,0,0,s,224050,624050,ff,PPP.ReconnectionConfiguration.DisconnectionTimeout ,7DA,64,71,1,0,0,,224050,624050,ff,PPP.ReconnectionConfiguration.RejectionRetry,0:No retry until next ON cycle;1:Retry as PPP sequence timeout ,7DA,24,29,1,0,0,Year,224054,624054,ff,Default A-IVC time.Year ,7DA,30,33,1,0,0,Month,224054,624054,ff,Default A-IVC time.Month ,7DA,34,38,1,0,0,d,224054,624054,ff,Default A-IVC time.Day ,7DA,39,43,1,0,0,h,224054,624054,ff,Default A-IVC time.Hour ,7DA,44,49,1,0,0,min,224054,624054,ff,Default A-IVC time.Minute ,7DA,50,55,1,0,0,s,224054,624054,ff,Default A-IVC time.Seconds ,7DA,24,39,1,0,0,s,224058,624058,ff,Sync gap ,7DA,24,31,1,0,0,s,224059,624059,ff,DRX notification time ,7DA,24,39,1,0,0,s,22405D,62405D,ff,PPP reconnection time ,7DA,24,31,1,0,0,,22405E,62405E,ff,Max SMS treated ,7DA,24,31,1,0,0,,22405F,62405F,ff,Time Synchro activation status,0:Deactivated;1:Activated ,7DA,24,39,1,0,0,s,224060,624060,ff,UTN Time out ,7DA,24,39,1,0,0,s,224061,624061,ff,Sync Latch up ,7DA,24,31,1,0,0,,224062,624062,ff,RNQ service type,0:Transmission Mode 1;1:Transmission Mode 2;2:Transmission Mode 3 ,7DA,24,55,1,0,0,,224063,624063,1ff,SMS Counter1 ,7DA,24,31,1,0,0,,224065,624065,ff,MUTE_BY_CAN,0:mute by wire;1:mute by CAN ,7DA,24,31,1,0,0,,224069,624069,ff,SIMULATE_A-IVC_RADIO_MUTE,0:Radio not muted;1:Radio muted ,7DA,24,31,1,0,0,,22406B,62406B,ff,MULTIPROFILE_MANAGEMENT,0:commercial use (ECALL + Services);1:Glonass Union (ECALL only) ,7DA,24,31,1,0,0,,22406E,62406E,ff,ECALL_INPUT_TYPE,0:Renault Configuration;1:Nissan Configuration ,7DA,24,31,1,0,0,,22406F,62406F,ff,ECALL_OUTPUT_TYPE,0:Renault Configuration;1:Nissan Configuration ,7DA,24,31,1,0,0,s,224070,624070,ff,CANCEL_CALL_PUSH_DURATION ,7DA,24,39,1,0,0,min,224079,624079,ff,StOffDataMaxT2 ,7DA,24,39,1,0,0,ms,22407A,62407A,ff,ECU processing time N_Br ,7DA,24,39,1,0,0,ms,22407B,62407B,ff,ECU processing time N_Cs ,7DA,24,31,1,0,0,,22407C,62407C,ff,CLEAR_DIAG_ECALL,0:No reset requested;1:Reset requested ,7DA,24,39,1,0,0,°,22407E,62407E,ff,A-IVC Mount Angle.MountAngle_X ,7DA,40,55,1,0,0,°,22407E,62407E,ff,A-IVC Mount Angle.MountAngle_Y ,7DA,56,71,1,0,0,°,22407E,62407E,ff,A-IVC Mount Angle.MountAngle_Z ,7DA,24,31,1,0,0,°,224081,624081,ff,SET_ROLLOVER_THRESHOLD_ANGLE ,7DA,24,31,1,0,0,km/h,224082,624082,ff,SET_VEHICLE_SPEED_LIMIT ,7DA,24,31,100,0,0,ms,224083,624083,ff,SET_MIN_ROTATION_DETECTED_TIME ,7DA,24,31,1,0,0,,22408C,62408C,ff,Service activation status (Geofencing),0:De Activated;1:Activated ,7DA,24,31,1,0,0,,22408E,62408E,ff,Detect Stop Infringement For Time Limit,0:De Activated;1:Activated ,7DA,24,39,1,0,0,s,22408F,62408F,ff,Time To Confim Start Infringement For Time Limit ,7DA,24,39,1,0,0,s,224090,624090,ff,Time To Confirm Stop Infringement For Time Limit ,7DA,24,31,1,0,0,,224091,624091,ff,Detect Stop Infringement For Speed Limit,0:De Activated;1:Activated ,7DA,24,39,1,0,0,s,224092,624092,ff,Time To Confim Start Infringement For Speed Limit ,7DA,24,39,1,0,0,s,224093,624093,ff,Time To Confirm Stop Infringement For Speed Limit ,7DA,24,31,1,0,0,,224094,624094,ff,Detect Stop Infringement For Area Limit,0:De Activated;1:Activated ,7DA,24,39,1,0,0,s,224095,624095,ff,Time To Confim StartInfringement For Area Limit ,7DA,24,39,1,0,0,s,224096,624096,ff,Time To Confirm Stop Infringement For Area Limit ,7DA,24,31,1,0,0,,224097,624097,ff,Tow_Service Activation Status,0:De Activated;1:Activated ,7DA,24,39,1,0,0,mg,224098,624098,ff,Tow_ThresholdTiltValue ,7DA,24,39,1,0,0,s,224099,624099,ff,Tow_ParkedDelayConfirmation ,7DA,24,31,1,0,0,,22409A,62409A,ff,Burglar_Service Activation Status,0:De Activated;1:Activated ,7DA,24,39,1,0,0,s,22409B,62409B,ff,Burglar_ConfirmationDelay ,7DA,24,31,1,0,0,,2240A6,6240A6,ff,MQTTsessType,0:Always Connected;1:On demand ,7DA,24,39,1,0,0,s,2240A7,6240A7,ff,MQTTTkeepAlive ,7DA,24,39,1,0,0,s,2240A8,6240A8,ff,MQTTsessionTimeout ,7DA,24,31,1,0,0,min,2240A9,6240A9,ff,MQTTperiodicConnectInterval ,7DA,24,31,1,0,0,,2240AA,6240AA,ff,MQTTpayloadCompression,0:Compression disable;1:Compression enable ,7DA,24,31,1,0,0,s,2240AB,6240AB,ff,MQTTRetryCONNECTInterval ,7DA,24,31,1,0,0,,2240AC,6240AC,ff,MQTTRetryCONNECTOccurrence ,7DA,24,31,1,0,0,,2240AD,6240AD,ff,MQTTRetryPUBLISHInterval ,7DA,24,31,1,0,0,,2240AE,6240AE,ff,MQTTRetryPUBLISHOccurrence ,7DA,24,31,1,0,0,,2240B1,6240B1,ff,VoLTE activation flag,0:voLTE deactivated;1:voLTE activated ,7DA,24,31,1,0,0,°,2240B5,6240B5,ff,GNSS_MIN_ELEVATION ,7DA,24,39,1,0,0,,2240B6,6240B6,ff,CELLULAR NUMBER OF DATA Rx.Number of datas ,7DA,24,39,1,0,0,,2240B7,6240B7,ff,CELLULAR NUMBER OF DATA Tx.Number of datas ,7DA,25,25,1,0,0,,2240B8,6240B8,ff,Conf_Vehicle_WakeUp_timeout.no time/infinite time ,7DA,26,31,1,0,0,s,2240B8,6240B8,ff,Conf_Vehicle_WakeUp_timeout.Time configuration ,7DA,24,24,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Stop_Engine,0:Code not needed;1:Code needed ,7DA,25,25,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Start_Engine,0:Code not needed;1:Code needed ,7DA,26,26,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Forbid_Charge,0:Code not needed;1:Code needed ,7DA,27,27,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Allow_Charge,0:Code not needed;1:Code needed ,7DA,28,28,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Configure_without_Protect_Unprotect,0:Code not needed;1:Code needed ,7DA,29,29,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Configure_with_Protect_Unprotect,0:Code not needed;1:Code needed ,7DA,30,30,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.bye0.Unprotect_Vehicle,0:Code not needed;1:Code needed ,7DA,31,31,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Protect_Vehicle,0:Code not needed;1:Code needed ,7DA,32,32,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Close_Sunroof,0:Code not needed;1:Code needed ,7DA,33,33,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Open_Sunroof,0:Code not needed;1:Code needed ,7DA,34,34,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Unlock_Trunk,0:Code not needed;1:Code needed ,7DA,35,35,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Lock_Trunk,0:Code not needed;1:Code needed ,7DA,36,36,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Lock_Doors,0:Code not needed;1:Code needed ,7DA,37,37,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Unlock_Driver_Door,0:Code not needed;1:Code needed ,7DA,38,38,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Unlock_All_Doors,0:Code not needed;1:Code needed ,7DA,39,39,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Double_Start_Engine,0:Code not needed;1:Code needed ,7DA,40,40,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Remote_Horn&Light_StopRequest,0:Code not needed;1:Code needed ,7DA,41,41,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Start_Horn&Lights,0:Code not needed;1:Code needed ,7DA,42,42,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Start_Lights,0:Code not needed;1:Code needed ,7DA,43,43,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Start_Horn,0:Code not needed;1:Code needed ,7DA,44,44,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Stop_Pre_Conditioning,0:Code not needed;1:Code needed ,7DA,45,45,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Start_Pre_Conditioning,0:Code not needed;1:Code needed ,7DA,46,46,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Close_Windows,0:Code not needed;1:Code needed ,7DA,47,47,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Windows_Open,0:Code not needed;1:Code needed ,7DA,54,54,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte3.Stop_Charging,0:Code not needed;1:Code needed ,7DA,55,55,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte3.Start_Charging,0:Code not needed;1:Code needed ,7DA,24,24,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte0.Stop_Engine,0:Presence not needed;1:Presence needed ,7DA,25,25,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte0.Start_Engine,0:Presence not needed;1:Presence needed ,7DA,32,32,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Close_Sunroof,0:Presence not needed;1:Presence needed ,7DA,33,33,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Open_Sunroof,0:Presence not needed;1:Presence needed ,7DA,34,34,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Unlock_Trunk,0:Presence not needed;1:Presence needed ,7DA,35,35,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Lock_Trunk,0:Presence not needed;1:Presence needed ,7DA,36,36,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Lock_Doors,0:Presence not needed;1:Presence needed ,7DA,37,37,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Unlock_Driver_Door,0:Presence not needed;1:Presence needed ,7DA,38,38,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Unlock_All_Doors,0:Presence not needed;1:Presence needed ,7DA,39,39,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Double_Start_Engine,0:Presence not needed;1:Presence needed ,7DA,40,40,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Remote_Horn&Light_StopRequest,0:Presence not needed;1:Presence needed ,7DA,41,41,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Start_Horn&Lights,0:Presence not needed;1:Presence needed ,7DA,42,42,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Start_Lights,0:Presence not needed;1:Presence needed ,7DA,43,43,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Start_Horn,0:Presence not needed;1:Presence needed ,7DA,44,44,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Stop_Pre_Conditioning,0:Presence not needed;1:Presence needed ,7DA,45,45,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Start_Pre_Conditioning,0:Presence not needed;1:Presence needed ,7DA,46,46,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Close_Windows,0:Presence not needed;1:Presence needed ,7DA,47,47,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Windows_Open,0:Presence not needed;1:Presence needed ,7DA,54,54,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte3.Stop_Charging,0:Presence not needed;1:Presence needed ,7DA,55,55,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte3.Start_Charging,0:Presence not needed;1:Presence needed ,7DA,24,31,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte0.Protect_Vehicle ,7DA,32,39,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte1.Unprotect_Vehicle ,7DA,40,47,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte2.Configure_with_protect_unprotect ,7DA,48,55,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte3.Configure_without_protect_unprotect ,7DA,56,63,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte4.Allow_Charge ,7DA,64,71,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte5.Forbid_Charge ,7DA,72,79,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte6.Start_Engine ,7DA,80,87,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte7.Stop_Engine ,7DA,88,95,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte8.Double_Start_Engine ,7DA,96,103,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte9.Unlock_All_Doors ,7DA,104,111,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte10.Unlock_Driver_Door ,7DA,112,119,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte11.Lock_Doors ,7DA,120,127,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte12.Lock_Trunk ,7DA,128,135,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte13.Unlock_Trunk ,7DA,136,143,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte14.Open_Sunroof ,7DA,144,151,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte15.Close_Sunroof ,7DA,152,159,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte16.Windows_Open ,7DA,160,167,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte17.Close_Windows ,7DA,168,175,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte18.Start_Pre_conditioning ,7DA,176,183,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte19.Stop_Pre_conditioning ,7DA,184,191,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte20.Start_Horn ,7DA,192,199,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte21.Start_Lights ,7DA,200,207,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte22.Start_Horn&Lights ,7DA,208,215,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte23.Remote_Horn&Light_Stop Request ,7DA,216,223,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte24.Start_Charging ,7DA,224,231,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte25.Stop_Charging ,7DA,24,24,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte0.Stop_Engine,0:not Inhibited on board;1:inhibited on board ,7DA,25,25,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte0.Start_Engine,0:not Inhibited on board;1:inhibited on board ,7DA,32,32,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Close_Sunroof,0:not Inhibited on board;1:inhibited on board ,7DA,33,33,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Open_Sunroof,0:not Inhibited on board;1:inhibited on board ,7DA,34,34,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Unlock_Trunk,0:not Inhibited on board;1:inhibited on board ,7DA,35,35,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Lock_Trunk,0:not Inhibited on board;1:inhibited on board ,7DA,36,36,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Lock_Doors,0:not Inhibited on board;1:inhibited on board ,7DA,37,37,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Unlock_Driver_Door,0:not Inhibited on board;1:inhibited on board ,7DA,38,38,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Unlock_All_Doors,0:not Inhibited on board;1:inhibited on board ,7DA,39,39,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Double_Start_Engine,0:not Inhibited on board;1:inhibited on board ,7DA,40,40,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Remote_Horn&Light_StopRequest,0:not Inhibited on board;1:inhibited on board ,7DA,41,41,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Start_Horn&Lights,0:not Inhibited on board;1:inhibited on board ,7DA,42,42,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Start_Lights,0:not Inhibited on board;1:inhibited on board ,7DA,43,43,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Start_Horn,0:not Inhibited on board;1:inhibited on board ,7DA,44,44,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Stop_Pre_Conditioning,0:not Inhibited on board;1:inhibited on board ,7DA,45,45,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Start_Pre_Conditioning,0:not Inhibited on board;1:inhibited on board ,7DA,46,46,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Close_Windows,0:not Inhibited on board;1:inhibited on board ,7DA,47,47,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Windows_Open,0:not Inhibited on board;1:inhibited on board ,7DA,54,54,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte3.Stop_Charging,0:not Inhibited on board;1:inhibited on board ,7DA,55,55,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte3.Start_Charging,0:not Inhibited on board;1:inhibited on board ,7DA,24,27,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte0.Unprotect_Vehicle ,7DA,28,31,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte0.Protect_Vehicle ,7DA,32,35,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte1.Configure_without_protect_unprotect ,7DA,36,39,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte1.Configure_with_protect_unprotect ,7DA,40,43,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte2.Forbid_Charge ,7DA,44,47,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte2.Allow_Charge ,7DA,48,51,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte3.Stop_Engine ,7DA,52,55,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte3.Start_Engine ,7DA,56,59,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte4.Unlock_All_Doors ,7DA,60,63,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte4.Double_Start_Engine ,7DA,64,67,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte5.Lock_Doors ,7DA,68,71,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte5.Unlock_Driver_Door ,7DA,72,75,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte6.Unlock_Trunk ,7DA,76,79,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte6.Lock_Trunk ,7DA,80,83,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte7.Close_Sunroof ,7DA,84,87,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte7.Open_Sunroof ,7DA,88,91,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte8.Close_Windows ,7DA,92,95,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte8.Windows_Open ,7DA,96,99,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte9.Stop_Pre_conditioning ,7DA,100,103,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte9.Start_Pre_conditioning ,7DA,104,107,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte10.Start_Lights ,7DA,108,111,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte10.Start_Horn ,7DA,112,115,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte11.Remote_Horn&Light_StopRequest ,7DA,116,119,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte11.Start_Horn&Lights ,7DA,120,123,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte12.Stop_Charging ,7DA,124,127,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte12.Start_Charging ,7DA,24,31,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte0.Protect_Vehicle ,7DA,32,39,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte1.Unprotect_Vehicle ,7DA,40,47,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte2.Configure_with_protect_unprotect ,7DA,48,55,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte3.Configure_without_protect_unprotect ,7DA,56,63,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte4.Allow_Charge ,7DA,64,71,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte5.Forbid_Charge ,7DA,72,79,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte6.Start_Engine ,7DA,80,87,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte7.Stop_Engine ,7DA,88,95,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte8.Double_Start_Engine ,7DA,96,103,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte9.Unlock_All_Doors ,7DA,104,111,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte10.Unlock_Driver_Door ,7DA,112,119,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte11.Lock_Doors ,7DA,120,127,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte12.Lock_Trunk ,7DA,128,135,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte13.Unlock_Trunk ,7DA,136,143,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte14.Open_Sunroof ,7DA,144,151,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte15.Close_Sunroof ,7DA,152,159,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte16.Windows_Open ,7DA,160,167,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte17.Close_Windows ,7DA,168,175,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte18.Start_Pre_conditioning ,7DA,176,183,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte19.Stop_Pre_conditioning ,7DA,184,191,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte20.Start_Horn ,7DA,192,199,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte21.Start_Lights ,7DA,200,207,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte22.Start_Horn&Lights ,7DA,208,215,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte23.Remote_Horn&Light_StopRequest ,7DA,216,223,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte24.Start_Charging ,7DA,224,231,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte25.Stop_Charging ,7DA,24,31,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte0.Protect_Vehicle ,7DA,32,39,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte1.Unprotect_Vehicle ,7DA,40,47,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte2.Configure_with_protect_unprotect ,7DA,48,55,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte3.Configure_without_protect_unprotect ,7DA,56,63,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte4.Allow_Charge ,7DA,64,71,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte5.Forbid_Charge ,7DA,72,79,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte6.Start_Engine ,7DA,80,87,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte7.Stop_Engine ,7DA,88,95,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte8.Double_Start_Engine ,7DA,96,103,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte9.Unlock_All_Doors ,7DA,104,111,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte10.Unlock_Driver_Door ,7DA,112,119,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte11.Lock_Doors ,7DA,120,127,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte12.Lock_Trunk ,7DA,128,135,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte13.Unlock_Trunk ,7DA,136,143,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte14.Open_Sunroof ,7DA,144,151,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte15.Close_Sunroof ,7DA,152,159,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte16.Windows_Open ,7DA,160,167,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte17.Close_Windows ,7DA,168,175,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte18.Start_Pre_conditioning ,7DA,176,183,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte19.Stop_Pre_conditioning ,7DA,184,191,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte20.Start_Horn ,7DA,192,199,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte21.Start_Lights ,7DA,200,207,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte22.Start_Horn&Lights ,7DA,208,215,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte23.Remote_Horn&Light_StopRequest ,7DA,216,223,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte24.Start_Charging ,7DA,224,231,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte25.Stop_Charging ,7DA,24,527,1,0,0,,2240C2,6240C2,2ff,APN3 parameters Profile 1.APN3 ,7DA,528,783,1,0,0,,2240C2,6240C2,2ff,APN3 parameters Profile 1.APN3UID ,7DA,784,1039,1,0,0,,2240C2,6240C2,2ff,APN3 parameters Profile 1.APN3PWD ,7DA,24,527,1,0,0,,2240C4,6240C4,2ff,APN5 parameters Profile 1.APN5 ,7DA,528,783,1,0,0,,2240C4,6240C4,2ff,APN5 parameters Profile 1.APN5UID ,7DA,784,1039,1,0,0,,2240C4,6240C4,2ff,APN5 parameters Profile 1.APN5PWD ,7DA,24,527,1,0,0,,2240C5,6240C5,2ff,APN6 parameters Profile 1.APN6 ,7DA,528,783,1,0,0,,2240C5,6240C5,2ff,APN6 parameters Profile 1.APN6UID ,7DA,784,1039,1,0,0,,2240C5,6240C5,2ff,APN6 parameters Profile 1.APN6PWD ,7DA,24,527,1,0,0,,2240C6,6240C6,2ff,APN7 parameters Profile 1.APN7 ,7DA,528,783,1,0,0,,2240C6,6240C6,2ff,APN7 parameters Profile 1.APN7UID ,7DA,784,1039,1,0,0,,2240C6,6240C6,2ff,APN7 parameters Profile 1.APN7PWD ,7DA,24,527,1,0,0,,2240C7,6240C7,2ff,APN8 parameters Profile 1.APN8 ,7DA,528,783,1,0,0,,2240C7,6240C7,2ff,APN8 parameters Profile 1.APN8UID ,7DA,784,1039,1,0,0,,2240C7,6240C7,2ff,APN8 parameters Profile 1.APN8PWD ,7DA,24,71,1,0,0,,2240C8,6240C8,2ff,HPLMN profile 2 ,7DA,24,279,1,0,0,,2240C9,6240C9,2ff,SIM PIN Code Profile 2 ,7DA,24,31,1,0,0,,2240CA,6240CA,ff,SIM PIN Used Profile 2,0:Deactivated;1:Activated ,7DA,24,527,1,0,0,,2240CB,6240CB,2ff,APN1 parameters Profile 2.APN1 ,7DA,528,783,1,0,0,,2240CB,6240CB,2ff,APN1 parameters Profile 2.APN1UID ,7DA,784,1039,1,0,0,,2240CB,6240CB,2ff,APN1 parameters Profile 2.APN1PWD ,7DA,24,527,1,0,0,,2240CC,6240CC,2ff,APN3 parameters Profile 2.APN3 ,7DA,528,783,1,0,0,,2240CC,6240CC,2ff,APN3 parameters Profile 2.APN3UID ,7DA,784,1039,1,0,0,,2240CC,6240CC,2ff,APN3 parameters Profile 2.APN3PWD ,7DA,24,527,1,0,0,,2240CD,6240CD,2ff,APN5 parameters Profile 2.APN5 ,7DA,528,783,1,0,0,,2240CD,6240CD,2ff,APN5 parameters Profile 2.APN5UID ,7DA,784,1039,1,0,0,,2240CD,6240CD,2ff,APN5 parameters Profile 2.APN5PWD ,7DA,24,527,1,0,0,,2240CE,6240CE,2ff,APN6 parameters Profile 2.APN6 ,7DA,528,783,1,0,0,,2240CE,6240CE,2ff,APN6 parameters Profile 2.APN6UID ,7DA,784,1039,1,0,0,,2240CE,6240CE,2ff,APN6 parameters Profile 2.APN6PWD ,7DA,24,527,1,0,0,,2240CF,6240CF,2ff,APN7 parameters Profile 2.APN7 ,7DA,528,783,1,0,0,,2240CF,6240CF,2ff,APN7 parameters Profile 2.APN7UID ,7DA,784,1039,1,0,0,,2240CF,6240CF,2ff,APN7 parameters Profile 2.APN7PWD ,7DA,24,527,1,0,0,,2240D0,6240D0,2ff,APN8 parameters Profile 2.APN8 ,7DA,528,783,1,0,0,,2240D0,6240D0,4ff,APN8 parameters Profile 2.APN8UID ,7DA,784,1039,1,0,0,,2240D0,6240D0,2ff,APN8 parameters Profile 2.APN8PWD ,7DA,24,31,1,0,0,,2240E0,6240E0,ff,Radio Wave RF,0:Radio wave RF OFF;1:Radio wave RF ON ,7DA,24,279,1,0,0,,2240E7,6240E7,2ff,MQTTServerPort ,7DA,24,31,1,0,0,,2240EC,6240EC,ff,DRX to Off Notification,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,s,2240ED,6240ED,ff,StOffSmsMaxT ,7DA,24,31,1,0,0,s,2240EF,6240EF,ff,StOffDataMaxT ,7DA,24,31,1,0,0,d,2240F0,6240F0,ff,TowDeactivateTime ,7DA,24,39,1,0,0,s,2240F3,6240F3,ff,DRMdataReqTimeout ,7DA,24,31,1,0,0,,2240F4,6240F4,ff,DRXactStatus,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,km/h,2240F6,6240F6,ff,Speed_Threshold ,7DA,24,39,1,0,0,m,2240F7,6240F7,ff,Distance_threshold ,7DA,24,31,1,0,0,,2240F8,6240F8,ff,Ecall crash detected conf,0:Inactive;1:Active ,7DA,24,31,1,0,0,,2240F9,6240F9,ff,Ecall internal detection conf,0:Inactive;1:Active ,7DA,24,31,1,0,0,,2240FB,6240FB,ff,IP_address_APN3.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,2240FB,6240FB,4ff,IP_address_APN3.address ,7DA,24,31,1,0,0,,2240FE,6240FE,ff,Powertype,0:ICE;1:EV;2:HEV;3:PHEV ,7DA,24,31,1,0,0,,2240FF,6240FF,ff,XCALL - Destination_address,1:A_Vnext;2:Call_center ,7DA,24,279,1,0,0,,224100,624100,2ff,Xcall - Offboard_server_number ,7DA,24,287,1,0,0,,224101,624101,2ff,Xcall - Call_center_directory ,7DA,24,183,1,0,0,,224102,624102,2ff,Xcall - Operator Service Primary (w/DTMF) ,7DA,24,183,1,0,0,,224103,624103,2ff,Xcall - Operator Service Secondary (w/DTMF) ,7DA,24,183,1,0,0,,224104,624104,2ff,Xcall - Operator Service voice-only (no DTMF) ,7DA,24,279,1,0,0,,22410D,62410D,2ff,Ecall Private - Ecall_number ,7DA,24,183,1,0,0,,22410F,62410F,2ff,Ecall Private - Airbag Primary (w/DTMF) ,7DA,24,183,1,0,0,,224110,624110,2ff,Ecall Private - Airbag Secondary (w/DTMF) ,7DA,24,183,1,0,0,,224111,624111,2ff,Ecall Private - Airbag voice-only (no DTMF) ,7DA,24,183,1,0,0,,224112,624112,2ff,Ecall Private - Emergency Assistance Primary (w/DTMF) ,7DA,24,183,1,0,0,,224113,624113,2ff,Ecall Private - Emergency Assistance Secondary (w/DTMF) ,7DA,24,183,1,0,0,,224114,624114,2ff,Ecall Private - Emergency Assistance voice-only (no DTMF) ,7DA,24,31,1,0,0,,224115,624115,ff,Ecall Private - Ecall_availability_after_cancelling ,7DA,24,31,1,0,0,s,224117,624117,ff,Ecall Private - Enable_cancelation_timer ,7DA,24,31,1,0,0,,224119,624119,ff,Ecall Private - Audio_Output,0:Dedicated speaker;1:Multimedia speaker ,7DA,24,279,1,0,0,,22411A,62411A,2ff,ACN - acn_call_number ,7DA,24,39,1,0,0,ms,22411B,62411B,ff,ACN - acn_response_time ,7DA,24,279,1,0,0,,22411C,62411C,2ff,AACN - aacn_call_number ,7DA,24,39,100,0,0,ms,22411E,62411E,ff,AACN - aacn_response_time ,7DA,24,31,1,0,0,,22411F,62411F,ff,User_Authtentication - Number_wrong_Pin_Retry ,7DA,24,31,1,0,0,s,224121,624121,ff,User_Authtentication - Timeout4 ,7DA,24,31,1,0,0,s,224122,624122,ff,User_Authtentication - Timeout6 ,7DA,24,31,1,0,0,s,224123,624123,ff,User_Authtentication - Timeout9 ,7DA,24,31,1,0,0,min,224125,624125,ff,User_Authtentication - Timeout_SRP_A-IVC ,7DA,24,31,1,0,0,,224126,624126,ff,IVC Basic Service - MQTT_DownloadTopicArray ,7DA,24,31,1,0,0,,224127,624127,ff,IVC Basic Service - MQTT_UploadTopicArray ,7DA,24,279,1,0,0,,224128,624128,2ff,IVC Basic Service - MQTTUsernameConfig ,7DA,24,279,1,0,0,,224129,624129,2ff,IVC Basic Service - MQTTPasswordConfig ,7DA,24,47,1,0,0,s,22412D,62412D,ff,Remote DIAG - T_ECU_QUESTIONING ,7DA,24,39,1,0,0,,22412E,62412E,ff,RNQ - RNQ Status Data frequency Upload ,7DA,24,31,1,0,0,,224130,624130,ff,IVC Basic Service - Brandswitch,0:Renault;1:Nissan;2:Infinity;3:Mitsubishi ,7DA,24,31,1,0,0,,224131,624131,ff,Wifi Hotspot- Activation status,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,224132,624132,ff,Wifi hotspot available network,0:ALL;1:4G;2:3G ,7DA,24,39,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte0-1: Door_Lock_request_duration ,7DA,40,55,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte2-3: Horn_LIGHT_request_duration ,7DA,56,71,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte4-5: RES_request_duration ,7DA,72,87,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte6-7: Charge_request_duration ,7DA,88,103,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte8-9: PriAirConditioner_request_duration ,7DA,104,119,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte10-11: Battery_Inhibitor_request_duration ,7DA,24,31,1,0,0,,224134,624134,ff,RNQ transmission Level,0:None;1:Full;2:Partial ,7DA,24,31,1,0,0,,224135,624135,ff,Reg Ecall Audio Output,0:Dedicated Speaker;1:Relay Control ,7DA,24,31,1,0,0,h,224136,624136,ff,MSD_HISTORIC_TIMEOUT ,7DA,24,39,1,0,0,ms,224137,624137,ff,Inter_Request ,7DA,24,31,.1,0,1,V,224138,624138,ff,VEH_CHARGER_THRESHOLD ,7DA,24,31,1,0,0,,224139,624139,ff,Xcall Activation Status.Ccall,0:Deactivated;1:Activated ,7DA,32,39,1,0,0,,224139,624139,ff,Xcall Activation Status.Bcall,0:Deactivated;1:Bcall Activated ,7DA,40,47,1,0,0,,224139,624139,ff,Xcall Activation Status.Bcall_Diag status,0:Deactivated;1:Activated ,7DA,48,55,1,0,0,,224139,624139,ff,Xcall Activation Status.Hcall,0:Deactivated;1:Activated ,7DA,24,279,1,0,0,,22413A,62413A,2ff,Xcall - Ccall_Number ,7DA,24,279,1,0,0,,22413B,62413B,2ff,Xcall - Bcall_Number ,7DA,24,279,1,0,0,,22413C,62413C,2ff,Xcall - Hcall_Number ,7DA,24,31,1,0,0,s,22413D,62413D,ff,T_before_calling ,7DA,24,31,1,0,0,,22413E,62413E,ff,RDIAG Activation Status,0:RDaig Deactivated;1:RDaig activated ,7DA,24,31,1,0,0,,22413F,62413F,ff,MQTT_DownloadZlibTopicArray ,7DA,24,31,1,0,0,s,224141,624141,ff,MQTTConnectionTimeOut ,7DA,24,31,1,0,0,s,224142,624142,ff,MQTTSubscriptionTimeOut ,7DA,24,31,1,0,0,s,224143,624143,ff,MQTTPublishTimeOut ,7DA,24,31,1,0,0,s,224144,624144,ff,EVCAN TimeOut ,7DA,24,39,1,0,0,ms,224145,624145,ff,P2Timer_UDS ,7DA,24,39,1,0,0,ms,224146,624146,ff,P2Timer_BC ,7DA,24,31,1,0,0,,224147,624147,ff,Tx_Mode_Configuration,0:MQTT+SMS;1:MQTT ,7DA,24,151,1,0,0,,224148,624148,2ff,XCALL - SMS FALLBACK NUMBER ,7DA,24,31,1,0,0,°,224149,624149,ff,SET_END_POSITION_THRESHOLD_ANGLE ,7DA,24,31,100,0,0,ms,22414A,62414A,ff,SET_MIN_END_POSITION_DETECTED_TIME ,7DA,24,31,1,0,0,,22414B,62414B,ff,RNQ Service Activation Status,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,22414C,62414C,ff,Geofencing - UseLegacyMPDT,0:Use New MPDT Specification;1:Use Legacy MPDT Message ,7DA,24,31,1,0,0,,22414D,62414D,ff,UCD Activation status,0:Deactivated;1:Activated ,7DA,24,39,1,0,0,s,22414E,62414E,ff,OffToDrxTimeout ,7DA,24,31,1,0,0,s,224150,624150,ff,Priv Ecall T LONG PUSH ,7DA,24,31,1,0,0,s,224151,624151,ff,Priv ECALL - CANCEL_CALL_PUSH_DURATION ,7DA,24,31,.1,0,1,,224152,624152,ff,OffsetCorrectionForAreaLimit ,7DA,24,31,.001,0,3,,224153,624153,ff,OffsetCorrectionForSpeedLimit ,7DA,24,31,1,0,0,,224154,624154,ff,NumNotifByAccCycleForAreaLimit ,7DA,24,31,1,0,0,,224155,624155,ff,NumNotifByAccCycleForSpeedLimit ,7DA,24,31,1,0,0,,224156,624156,ff,NumNotifByAccCycleForTimeLimit ,7DA,24,31,1,0,0,,224157,624157,ff,EPMC Activation,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,224158,624158,ff,InitEPMCBudget ,7DA,24,31,.1,0,1,Wh,224159,624159,ff,PwRemote ,7DA,24,31,.1,0,1,W.h,22415A,62415A,ff,PwFOTA ,7DA,24,31,1,0,0,mA,22415B,62415B,ff,PwDRX ,7DA,24,31,.01,0,2,Wh,22415C,62415C,ff,PwMQTT ,7DA,24,31,1,0,0,Wh,22415D,62415D,ff,ThresholdWarningUser ,7DA,24,31,1,0,0,Wh,22415E,62415E,ff,ThresholdLimit ,7DA,24,39,.1,0,1,Wh,22415F,62415F,ff,ThresholdMQTT ,7DA,24,31,1,0,0,,224160,624160,ff,retry_number_X_CALL ,7DA,24,31,1,0,0,,224161,624161,ff,retry_number_E_CALL ,7DA,24,31,1,0,0,,224162,624162,ff,Cloud_Privacy_Mode,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,224163,624163,ff,FOTA _Enable_Disable,0:FOTA OFF;255:FOTA ON ,7DA,24,31,1,0,0,,224164,624164,ff,FOTA Periodic Check,0:No(Infinite);1:7 days;2:30 days;3:180 days ,7DA,24,31,10,0,0,ms,224166,624166,ff,Timer_CCS_Lock_Unlock_cmd ,7DA,24,31,1,0,0,,224167,624167,ff,MQTTRetrySUBSCRIBEInterval ,7DA,24,31,1,0,0,,224168,624168,ff,MQTTRetrySUBSCRIBEOccurrence ,7DA,24,39,1,0,0,s,22416A,62416A,ff,TLS_EXPBackOffStartDelay ,7DA,24,1047,1,0,0,,22416B,62416B,2ff,URL ,7DA,24,39,1,0,0,,22416C,62416C,ff,PORT ,7DA,24,103,1,0,0,,22416D,62416D,2ff,Data Dictionary(DD) Version ,7DA,24,39,1,0,0,s,22416F,62416F,ff,T_FOTA ,7DA,24,31,1,0,0,s,224170,624170,ff,Ecall_Priv_VOICE_CONNECTION_TIMEOUT ,7DA,24,31,1,0,0,,224171,624171,ff,Panic_Call Activation Status,0:Deactivated;1:Activated ,7DA,24,279,1,0,0,,224172,624172,2ff,Panic_Call number ,7DA,24,31,1,0,0,,224173,624173,ff,ACN_AD call Activation Status,0:Deactivated;1:Activated ,7DA,24,279,1,0,0,,224174,624174,2ff,ACN_AD call number ,7DA,24,31,1,0,0,s,224175,624175,ff,Ecall_Priv Ring Call Back Timer ,7DA,24,31,1,0,0,,224176,624176,ff,Plug In Reminder Activation Status,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,224177,624177,ff,Remote Blocking Charging Activation Status,0:deactivated;1:activated ,7DA,24,31,1,0,0,,224178,624178,ff,IMS Activation,0:Deactivated;1:activated ,7DA,24,31,1,0,0,,224179,624179,ff,SMS over IP Activation,0:Deactivated;1:Activated ,7DA,24,55,1,0,0,,22417A,62417A,1ff,SMS Counter2 ,7DA,24,55,1,0,0,,22417B,62417B,1ff,SMS Counter3 ,7DA,24,55,1,0,0,,22417C,62417C,1ff,SMS Counter4 ,7DA,24,55,1,0,0,,22417D,62417D,1ff,SMS Counter5 ,7DA,24,39,1,0,0,s,22417E,62417E,ff,OffToDrxTimeoutBase ,7DA,24,31,.1,0,1,,22417F,62417F,ff,OffToDrxTimeoutMultiplier ,7DA,24,31,1,0,0,h,224180,624180,ff,OffToDrxTimeoutMax ,7DA,24,39,1,0,0,,224181,624181,ff,OffToDrxMaxRetries ,7DA,24,39,1,0,0,min,224182,624182,ff,Ecall_Priv_call_back Timeout ,7DA,24,279,1,0,0,,224183,624183,2ff,SIM SMS Center 2 ,7DA,24,31,1,0,0,,224184,624184,ff,SMSenActStatus,0:Deactivated;1:Activated ,7DA,24,103,1,0,0,,224200,624200,2ff,Model Code ,7DA,24,1999,1,0,0,,224201,624201,2ff,Current Emergency Call URL Information ,7DA,24,1999,1,0,0,,224202,624202,2ff,Current Inspection URL Information ,7DA,24,1999,1,0,0,,224203,624203,2ff,New Emergency Call URL Information ,7DA,24,1999,1,0,0,,224204,624204,2ff,New Inspection URL Information ,7DA,24,223,1,0,0,,224205,624205,2ff,Scheduled Change Date and Time ,7DA,24,183,1,0,0,,224206,624206,2ff,Center’s Telephone Number ,7DA,24,31,1,0,0,,224207,624207,ff,User_collation_result_of_the_inspection.judge,0:Inspected (Available)-;1:Inspected (Unavailable)-;2:Uninspected ,7DA,24,223,1,0,0,,224208,624208,2ff,Automatic inspection time ,7DA,24,31,1,0,0,,224209,624209,ff,Driver_Info_Upload_Permit,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,22420A,62420A,ff,Probe_Upload_Permit,0:Deactivated;1:Activated ,7DA,24,55,1,0,0,m,22420B,62420B,1ff,Location Data Mileage No Fixed Location ,7DA,24,1623,1,0,0,,22420C,62420C,2ff,Location Data Acquisition Time1 ,7DA,24,1623,1,0,0,,22420D,62420D,2ff,Location Data Acquisition Time2 ,7DA,24,1623,1,0,0,,22420E,62420E,2ff,Location Data Acquisition Time3 ,7DA,24,1623,1,0,0,,22420F,62420F,2ff,Location Data Acquisition Time4 ,7DA,24,1623,1,0,0,,224210,624210,2ff,Location Data Acquisition Time5 ,7DA,24,1623,1,0,0,,224211,624211,2ff,Location Data Acquisition Time6 ,7DA,24,1623,1,0,0,,224212,624212,2ff,Location Data Acquisition Time7 ,7DA,24,1623,1,0,0,,224213,624213,2ff,Location Data Acquisition Time8 ,7DA,24,535,1,0,0,,224214,624214,4ff,Location Data Difference Between Front Wheels Rotation ,7DA,24,1047,1,0,0,,224215,624215,2ff,Location Data Steering Angle ,7DA,24,55,1,0,0,,224216,624216,2ff,Location Data Vehicle Speed ,7DA,24,4119,1,0,0,,224217,624217,2ff,Emergency Call Data1 ,7DA,24,4119,1,0,0,,224218,624218,2ff,Emergency Call Data2 ,7DA,24,4119,1,0,0,,224219,624219,2ff,Emergency Call Data3 ,7DA,24,4119,1,0,0,,22421A,62421A,2ff,Emergency Call Data4 ,7DA,24,4119,1,0,0,,22421B,62421B,2ff,Emergency Call Data5 ,7DA,24,47,1,0,0,,22421C,62421C,2ff,Emergency Call Log ,7DA,24,31,1,0,0,,22421D,62421D,2ff,Radio reception condition ,7DA,24,39,1,0,0,,22421E,62421E,2ff,Outgoing Call Retry Count ,7DA,24,223,1,0,0,,22421F,62421F,2ff,Error Histoy.TCU ON time ,7DA,224,423,1,0,0,,22421F,62421F,2ff,Error Histoy.TCU OFF time ,7DA,424,623,1,0,0,,22421F,62421F,2ff,Error Histoy.ecall start time ,7DA,624,823,1,0,0,,22421F,62421F,2ff,Error Histoy.ecall end time ,7DA,824,1023,1,0,0,,22421F,62421F,2ff,Error Histoy.failure occurrence time ,7DA,1024,1063,1,0,0,,22421F,62421F,2ff,Error Histoy.failure contents ,7DA,1064,1263,1,0,0,,22421F,62421F,2ff,Error Histoy.Switch to backup battery time ,7DA,24,31,1,0,0,,224220,624220,ff,RA_Presoak_Underhood_Check_Activation_CF,0:INACTIVE;1:ACTIVE ,7DA,24,31,1,0,0,,224221,624221,ff,Privacy_Mode_Activation,0:Activated;1:Deactivated ,7DA,24,31,1,0,0,,224300,624300,ff,Remote Ajustable SOC Activation Status,0:OFF;1:ON ,7DA,24,31,1,0,0,,224301,624301,ff,Remote KeyFob Inhibition Activation Status,0:OFF;1:ON ,7DA,24,31,1,0,0,,224302,624302,ff,Remote KeyFob Inhibition Supported,0:Remote KeyFob Inhibition command is not supported by HFM;1:Remote KeyFob Inhibition command is supported by HFM ,7DA,24,24,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Unlock VU Cargo Zone,0:Code not needed;1:Code needed ,7DA,25,25,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Lock VU Cargo Zone,0:Code not needed;1:Code needed ,7DA,26,26,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Unlock VU Cabin Zone,0:Code not needed;1:Code needed ,7DA,27,27,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Lock VU Cabin Zone,0:Code not needed;1:Code needed ,7DA,29,29,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Lock Driver Door Only,0:Code not needed;1:Code needed ,7DA,36,36,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.ikey_Inhibited,0:Code not needed;1:Code needed ,7DA,37,37,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.ikey_Authorized,0:Code not needed;1:Code needed ,7DA,38,38,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Unlock Superlock,0:Code not needed;1:Code needed ,7DA,39,39,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Lock Superlock,0:Code not needed;1:Code needed ,7DA,24,24,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Unlock VU Cargo Zone,0:Presence not needed;1:Presence needed ,7DA,25,25,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Lock VU Cargo Zone,0:Presence not needed;1:Presence needed ,7DA,26,26,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Unlock VU Cabin Zone,0:Presence not needed;1:Presence needed ,7DA,27,27,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Lock VU Cabin Zone,0:Presence not needed;1:Presence needed ,7DA,29,29,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Lock Driver Door Only,0:Presence not needed;1:Presence needed ,7DA,36,36,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.ikey_Inhibited,0:Presence not needed;1:Presence needed ,7DA,37,37,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.ikey_Authorized,0:Presence not needed;1:Presence needed ,7DA,38,38,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Unlock Superlock,0:Presence not needed;1:Presence needed ,7DA,39,39,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Lock Superlock,0:Presence not needed;1:Presence needed ,7DA,40,47,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Lock Driver Door Only ,7DA,48,55,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Unlock Driver Door Only ,7DA,56,63,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Lock VU Cabin Zone ,7DA,64,71,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Unlock VU Cabin Zone ,7DA,72,79,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Lock VU Cargo Zone ,7DA,80,87,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Unlock VU Cargo Zone ,7DA,88,95,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Lock Superlock ,7DA,96,103,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Unlock Superlock ,7DA,104,111,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.ikay_Authorized ,7DA,112,119,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.ikey_Inhibited ,7DA,24,24,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Unlock VU Cargo Zone,0:not inhibited on board;1:inhibited on board ,7DA,25,25,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Lock VU Cargo Zone,0:not inhibited on board;1:inhibited on board ,7DA,26,26,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Unlock VU Cabin Zone,0:not inhibited on board;1:inhibited on board ,7DA,27,27,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Lock VU Cabin Zone,0:not inhibited on board;1:inhibited on board ,7DA,28,28,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Unlock Driver Door Only,0:not inhibited on board;1:inhibited on board ,7DA,29,29,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Lock Driver Door Only,0:not inhibited on board;1:inhibited on board ,7DA,36,36,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.ikey_Inhibited,0:not inhibited on board;1:inhibited on board ,7DA,37,37,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.ikay_Authorized,0:not inhibited on board;1:inhibited on board ,7DA,38,38,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Unlock Superlock,0:not inhibited on board;1:inhibited on board ,7DA,39,39,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Lock Superlock,0:not inhibited on board;1:inhibited on board ,7DA,32,35,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Unlock Driver Door Only ,7DA,36,39,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Lock Driver Door Only ,7DA,40,43,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Unlock VU Cabin Zone ,7DA,44,47,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Lock VU Cabin Zone ,7DA,48,51,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Unlock VU Cargo Zone ,7DA,52,55,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Lock VU Cargo Zone ,7DA,56,59,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Unlock Superlock ,7DA,60,63,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Lock Superlock ,7DA,64,67,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.ikey_Inhibited ,7DA,68,71,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.ikay_Authorized ,7DA,40,47,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Lock Driver Door Only ,7DA,48,55,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Unlock Driver Door Only ,7DA,56,63,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Lock VU Cabin Zone ,7DA,64,71,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Unlock VU Cabin Zone ,7DA,72,79,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Lock VU Cargo Zone ,7DA,80,87,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Unlock VU Cargo Zone ,7DA,88,95,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Lock Superlock ,7DA,96,103,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Unlock Superlock ,7DA,104,111,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.iKEY_AUTHORIZED ,7DA,112,119,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.iKEY_INHIBITED ,7DA,24,39,1,0,0,h,224309,624309,ff,Technical_Cold_Reboot_Frequency ,7DA,24,31,1,0,0,,224310,624310,ff,SCM_Activation_Status,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,s,224312,624312,ff,RA_KeepRefuseToSleepTime ,7DA,24,24,1,0,0,,226000,626000,ff,DTC Activation.Ecall Microphone,0:Deactivated;1:Activated ,7DA,25,25,1,0,0,,226000,626000,ff,DTC Activation.EMU,0:Deactivated;1:Activated ,7DA,26,26,1,0,0,,226000,626000,ff,DTC Activation.Aux_In_Info/Tel_Mute_Out,0:Deactivated;1:Activated ,7DA,27,27,1,0,0,,226000,626000,ff,DTC Activation.AirbagCAN,0:Deactivated;1:Activated ,7DA,28,28,1,0,0,,226000,626000,ff,DTC Activation.CAN-M,0:Deactivated;1:Activated ,7DA,29,29,1,0,0,,226000,626000,ff,DTC Activation.CAN-V,0:Deactivated;1:Activated ,7DA,30,30,1,0,0,,226000,626000,ff,DTC Activation.InternalBattery status,0:Deactivated;1:Activated ,7DA,31,31,1,0,0,,226000,626000,ff,DTC Activation.Battery,0:Deactivated;1:Activated ,7DA,32,32,1,0,0,,226000,626000,ff,DTC Activation.MIC_OUT,0:Deactivated;1:Activated ,7DA,33,33,1,0,0,,226000,626000,ff,DTC Activation.GNSS COMMUNICATIONS FAILURE,0:Deactivated;1:Activated ,7DA,34,34,1,0,0,,226000,626000,ff,DTC Activation.System Internal Failure,0:Deactivated;1:Activated ,7DA,35,35,1,0,0,,226000,626000,ff,DTC Activation.Ecall Button,0:Deactivated;1:Activated ,7DA,36,36,1,0,0,,226000,626000,ff,DTC Activation.Ecall Blacklight LED,0:Deactivated;1:Activated ,7DA,37,37,1,0,0,,226000,626000,ff,DTC Activation.Ecall Auto LED,0:Deactivated;1:Activated ,7DA,38,38,1,0,0,,226000,626000,ff,DTC Activation.Ecall Green LED,0:Deactivated;1:Activated ,7DA,39,39,1,0,0,,226000,626000,ff,DTC Activation.Ecall Red LED,0:Deactivated;1:Activated ,7DA,40,40,1,0,0,,226000,626000,ff,DTC Activation.Vnext Functional,0:Deactivated;1:Activated ,7DA,41,41,1,0,0,,226000,626000,ff,DTC Activation.Vnext Authentication,0:Deactivated;1:Activated ,7DA,42,42,1,0,0,,226000,626000,ff,DTC Activation.PPP Data Comm. Authentication,0:Deactivated;1:Activated ,7DA,43,43,1,0,0,,226000,626000,ff,DTC Activation.Voice Failure,0:Deactivated;1:Activated ,7DA,44,44,1,0,0,,226000,626000,ff,DTC Activation.SMS,0:Deactivated;1:Activated ,7DA,45,45,1,0,0,,226000,626000,ff,DTC Activation.HU/Navi USB,0:Deactivated;1:Activated ,7DA,46,46,1,0,0,,226000,626000,ff,DTC Activation.Virgin Configuration,0:Deactivated;1:Activated ,7DA,47,47,1,0,0,,226000,626000,ff,DTC Activation.A-IVC OVERHEAT,0:Deactivated;1:Activated ,7DA,48,48,1,0,0,,226000,626000,ff,DTC Activation.Dedicated speaker,0:Deactivated;1:Activated ,7DA,49,49,1,0,0,,226000,626000,ff,DTC Activation.Audio HU,0:Deactivated;1:Activated ,7DA,50,50,1,0,0,,226000,626000,ff,DTC Activation.A-IVC Clock,0:Deactivated;1:Activated ,7DA,51,51,1,0,0,,226000,626000,ff,DTC Activation. Cellular Registration Denied,0:Deactivated;1:Activated ,7DA,52,52,1,0,0,,226000,626000,ff,DTC Activation.SIM Failure,0:Deactivated;1:Activated ,7DA,53,53,1,0,0,,226000,626000,ff,DTC Activation. Invalid A-IVC,0:Deactivated;1:Activated ,7DA,54,54,1,0,0,,226000,626000,ff,DTC Activation.Ext. GNSS Antenna for Splitter,0:Deactivated;1:Activated ,7DA,55,55,1,0,0,,226000,626000,ff,DTC Activation.Vnext Config,0:Deactivated;1:Activated ,7DA,56,56,1,0,0,,226000,626000,ff,DTC Activation.Vnext Regional Timeout,0:Deactivated;1:Activated ,7DA,57,57,1,0,0,,226000,626000,ff,DTC Activation.Vnext Master Timeout,0:Deactivated;1:Activated ,7DA,58,58,1,0,0,,226000,626000,ff,DTC Activation.Vnext Regional Authentication NOK,0:Deactivated;1:Activated ,7DA,59,59,1,0,0,,226000,626000,ff,DTC Activation.Vnext Master Authentication NOK,0:Deactivated;1:Activated ,7DA,60,60,1,0,0,,226000,626000,ff,DTC Activation. Airbag Hardwire,0:Deactivated;1:Activated ,7DA,61,61,1,0,0,,226000,626000,ff,DTC Activation.Acceleromter Failure,0:Deactivated;1:Activated ,7DA,62,62,1,0,0,,226000,626000,ff,DTC Activation.Ext. GNSS Antenna,0:Deactivated;1:Activated ,7DA,63,63,1,0,0,,226000,626000,ff,DTC Activation.Ext. Cellular Antenna,0:Deactivated;1:Activated ,7DA,64,64,1,0,0,,226000,626000,ff,DTC Activation.A-IVC Invalid Region Setting,0:Deactivated;1:Activated ,7DA,65,65,1,0,0,,226000,626000,ff,DTC Activation.A-IVC No Region Setting,0:Deactivated;1:Activated ,7DA,66,66,1,0,0,,226000,626000,ff,DTC Activation.A-IVC Authentication Fails,0:Deactivated;1:Activated ,7DA,67,67,1,0,0,,226000,626000,ff,DTC Activation.Part Certificate Storage Error,0:Deactivated;1:Activated ,7DA,68,68,1,0,0,,226000,626000,ff,DTC Activation.Part Certificate Verification Fails,0:Deactivated;1:Activated ,7DA,69,69,1,0,0,,226000,626000,ff,DTC Activation.No Certificate Available,0:Deactivated;1:Activated ,7DA,70,70,1,0,0,,226000,626000,ff,DTC Activation.Bad Pairing A-IVC & VIN,0:Deactivated;1:Activated ,7DA,71,71,1,0,0,,226000,626000,ff,DTC Activation.Part ID is Unknown,0:Deactivated;1:Activated ,7DA,72,72,1,0,0,,226000,626000,ff,DTC Activation. Remote Actuator not Activated,0:Deactivated;1:Activated ,7DA,73,73,1,0,0,,226000,626000,ff,DTC Activation.Internal Battery Capacity Low_A,0:Deactivated;1:Activated ,7DA,74,74,1,0,0,,226000,626000,ff,DTC Activation.Relay Control,0:Deactivated;1:Activated ,7DA,75,75,1,0,0,,226000,626000,ff,DTC Activation.Service Check Not Complete,0:Deactivated;1:Activated ,7DA,76,76,1,0,0,,226000,626000,ff,DTC Activation.Partition Setting Storage Error,0:Deactivated;1:Activated ,7DA,77,77,1,0,0,,226000,626000,ff,DTC Activation.A-IVC Invalid Partition Setting,0:Deactivated;1:Activated ,7DA,78,78,1,0,0,,226000,626000,ff,DTC Activation.A-IVC No Partition Setting,0:Deactivated;1:Activated ,7DA,79,79,1,0,0,,226000,626000,ff,DTC Activation.Region Setting Storage Error,0:Deactivated;1:Activated ,7DA,80,80,1,0,0,,226000,626000,ff,DTC Activation.Internal HTTP Server Error,0:Deactivated;1:Activated ,7DA,81,81,1,0,0,,226000,626000,ff,DTC Activation.Bad HTTP Request,0:Deactivated;1:Activated ,7DA,82,82,1,0,0,,226000,626000,ff,DTC Activation.BCM Pairing DTC,0:Deactivated;1:Activated ,7DA,83,83,1,0,0,,226000,626000,ff,DTC Activation.Remote Actuator- PIN code missing,0:Deactivated;1:Activated ,7DA,84,84,1,0,0,,226000,626000,ff,DTC Activation. Remote Actuator- CAN failure,0:Deactivated;1:Activated ,7DA,85,85,1,0,0,,226000,626000,ff,DTC Activation.Remote Actuator without unknown ID,0:Deactivated;1:Activated ,7DA,86,86,1,0,0,,226000,626000,ff,DTC Activation. Remote Actuator without Cipher key,0:Deactivated;1:Activated ,7DA,87,87,1,0,0,,226000,626000,ff,DTC Activation.Remote Actuator service activated without ciphering key,0:Deactivated;1:Activated ,7DA,24,39,1,0,0,,227000,627000,4ff,Audio Car Group tunning.CarGroup ,7DA,40,55,1,0,0,,227000,627000,4ff,Audio Car Group tunning.Checksum ,7DA,24,1767,1,0,0,,227001,627001,4ff,Audio Tunning 1.RawData ,7DA,1768,1783,1,0,0,,227001,627001,4ff,Audio Tunning 1.Checksum ,7DA,24,1767,1,0,0,,227002,627002,4ff,Audio Tunning 2.RawData ,7DA,1768,1783,1,0,0,,227002,627002,4ff,Audio Tunning 2.Checksum ,7DA,24,1767,1,0,0,,227003,627003,4ff,Audio Tunning 3.RawData ,7DA,1768,1783,1,0,0,,227003,627003,4ff,Audio Tunning 3.Checksum ,7DA,24,1767,1,0,0,,227004,627004,4ff,Audio Tunning 4.RawData ,7DA,1768,1783,1,0,0,,227004,627004,4ff,Audio Tunning 4.Checksum ,7DA,24,1767,1,0,0,,227005,627005,4ff,Audio Tunning 5.RawData ,7DA,1768,1783,1,0,0,,227005,627005,4ff,Audio Tunning 5.Checksum ,7DA,24,1767,1,0,0,,227006,627006,4ff,Audio Tunning 6.RawData ,7DA,1768,1783,1,0,0,,227006,627006,4ff,Audio Tunning 6.Checksum ,7DA,24,1767,1,0,0,,227007,627007,4ff,Audio Tunning 7.RawData ,7DA,1768,1783,1,0,0,,227007,627007,4ff,Audio Tunning 7.Checksum ,7DA,24,1767,1,0,0,,227008,627008,4ff,Audio Tunning 8.RawData ,7DA,1768,1783,1,0,0,,227008,627008,4ff,Audio Tunning 8.Checksum ,7DA,24,1767,1,0,0,,227009,627009,4ff,Audio Tunning 9.RawData ,7DA,1768,1783,1,0,0,,227009,627009,4ff,Audio Tunning 9.Checksum ,7DA,24,1767,1,0,0,,227010,627010,4ff,Audio Tunning 10.RawData ,7DA,1768,1783,1,0,0,,227010,627010,4ff,Audio Tunning 10.Checksum ,7DA,24,31,1,0,0,,229000,629000,ff,Control of Microphone connection,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK ,7DA,24,31,1,0,0,,229001,629001,ff,Control of Loudspeaker Connection,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK ,7DA,24,31,1,0,0,,229003,629003,ff,CONTROL AUX_IN_INFO OUTPUT,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK ,7DA,24,31,1,0,0,,229006,629006,ff,Control Of Led Ecall,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK;3:No Control done ,7DA,24,31,1,0,0,,229007,629007,ff,Control Of Led Ecall Malfunction Green,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK;3:No Control done ,7DA,24,31,1,0,0,,229008,629008,ff,Control Of Led Ecall Malfunction Red,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK;3:No Control done ,7DA,24,31,1,0,0,,229009,629009,ff,Control Of Led Backlight,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK;3:No Control done ,7DA,24,31,1,0,0,,229100,629100,ff,CONTROL OF Test TEL Number In Validation,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK ,7DA,24,31,1,0,0,,22C000,62C000,ff,USB Timeout ,7DA,24,2495,1,0,0,,22DA00,62DA00,2ff,V-SSD ,7DA,24,599,1,0,0,,22DA10,62DA10,2ff,V-TDD_No.0 ,7DA,24,599,1,0,0,,22DA11,62DA11,2ff,V-TDD_No.1 ,7DA,24,599,1,0,0,,22DA12,62DA12,2ff,V-TDD_No.2 ,7DA,24,599,1,0,0,,22DA13,62DA13,2ff,V-TDD_No.3 ,7DA,24,599,1,0,0,,22DA14,62DA14,2ff,V-TDD_No.4 ,7DA,24,31,1,0,0,,22DAB0,62DAB0,ff,TriggerFrameFunctionActivation,0:Deactivated;170:Activated ,7DA,24,151,1,0,0,,22F010,62F010,4ff,programmingOperationFingerPrint ,7DA,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,7DA,24,103,1,0,0,,22F012,62F012,2ff,Operational Reference ,7DA,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationnalReference ,7DA,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,7DA,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC Occurrence Counter ,7DA,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,7DA,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,7DA,24,279,1,0,0,,22F180,62F180,4ff,Boot Version ,7DA,24,103,1,0,0,,22F182,62F182,2ff,CalibrationNumber ,7DA,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,7DA,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,7DA,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7DA,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,7DA,24,159,1,0,0,,22F190,62F190,2ff,VIN ,7DA,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,7DA,24,127,1,0,0,,22F192,62F192,2ff,ecuHardware.hardware ,7DA,128,151,1,0,0,,22F192,62F192,2ff,ecuHardware.version ,7DA,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7DA,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7DA,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,7DA,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,7DA,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigurationDataReferenceAfterConfigurationProcess ,7DA,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/DCM_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal level out of range/zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component | system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/EPS_Dtcs.csv ================================================ F003,Battery D000,CAN_Bus D001,CAN_WheelSpeed 5608,EPS_Ecu 5606,EPS_Motor 5614,EPS_ThermalProtection 5604,EPS_TorqueSensor C129,CAN_ESC_Absent C418,CAN_VehicleSpeedInvalid C100,CAN_EngineStatusAbsent C126,CAN_SWA_Fault 5617,CAN_RearGear_Fault ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/EPS_Fields.csv ================================================ ,762,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.extendedSession ,762,0,0,1,0,0,,10FA,50FA,ff,StartDiagnosticSession.supplierSession ,762,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,762,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,762,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,762,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,762,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,762,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,762,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,762,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,762,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,762,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,762,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,762,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,762,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,762,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,762,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,762,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,762,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,762,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,762,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,762,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,762,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,762,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,762,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,762,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,762,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,762,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,762,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,762,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,762,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,762,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,762,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:NA;2:28504 ,762,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:NA;1:28500 ,762,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:NA ,762,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,762,16,151,1,0,0,,2181,6181,2ff,VIN ,762,152,167,1,0,0,,2181,6181,4ff,CRC ,762,16,175,1,0,0,,2184,6184,2ff,TraceabilityInformation ,762,0,0,1,0,0,,2190,6190,ff,Read.OutCalibrationResult ,762,16,95,1,0,0,,21EF,61EF,2ff,DaimlerHardwarePartNumber ,762,96,175,1,0,0,,21EF,61EF,2ff,DaimlerSoftwarePartNumber ,762,24,39,.1,0,1,°/s,220101,620101,ff,SteeringWheelSpeed ,762,24,31,1,0,0,,220102,620102,1ff,SWASensorInternalStatus.ALL ,762,29,29,1,0,0,,220102,620102,ff,SWASensorInternalStatus.CalibrationStatus,0:NotCalibrated;1:Calibrated ,762,30,30,1,0,0,,220102,620102,ff,SWASensorInternalStatus.FailureStatus,0:NoFailure;1:Failure ,762,31,31,1,0,0,,220102,620102,ff,SWASensorInternalStatus.InitializationStatus,0:NotInitialized;1:Initialized ,762,24,31,.1,0,1,°,220103,620103,ff,SteeringWheelAngleOffset ,762,24,39,.1,0,1,°,220104,620104,1ff,SteeringAngleAbsolutePosition ,762,24,39,.1,0,1,Nm,220112,620112,1ff,TorqueSensor ,762,24,39,.0078125,0,3,A,220113,620113,1ff,MotorDemand.Current ,762,24,31,1,0,0,%,220115,620115,ff,AssistanceLevel ,762,24,31,1,0,0,km/h,220116,620116,ff,VehicleSpeedFiltered ,762,24,31,1,0,0,,220119,620119,1ff,SystemMode,0:UbnormalState_000b;1:SystemStop;2:PowerUpTests;3:RampUpNormalOperation;4:UnknownVehicleState;5:SoftRampDown;6:WaitForShutdown;7:UbnormalState_111b ,762,24,31,1,0,0,,22011A,62011A,ff,EPSWarningFromCAN,0:NoWarning;1:MinorWarning;2:MajorWarning;3:NotUsed ,762,24,39,.0015625,0,3,tr/min,22011D,62011D,1ff,MotorSpeed ,762,24,31,1,0,0,,22011E,62011E,ff,IgnitionSwitchCounter ,762,24,39,.1,0,1,Nm,22011F,62011F,1ff,Assistance_Torque_Demand ,762,24,31,1,0,0,km/h,220120,620120,ff,CityHighVehicleSpeed ,762,24,31,1,0,0,A,22012C,62012C,1ff,MotorOutput.Current ,762,24,31,2,0,0,°C,22012E,62012E,1ff,ECUTemperature1 ,762,24,39,.00390625,0,3,V,22012F,62012F,ff,SupplyVoltage ,762,24,31,1,0,0,,220131,620131,ff,IgnitionStatus,0:OFF;1:ON ,762,24,119,1,0,0,,22015C,62015C,4ff,TuningVersionNumber ,762,24,31719,1,0,0,,22015D,62015D,4ff,TuningParameter ,762,24,31,1,0,0,%,220160,620160,ff,DeratingAssistanceLevel ,762,24,31,1,0,0,,220161,620161,ff,SupplierInternalFaultStore.01.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,32,39,1,0,0,,220161,620161,ff,SupplierInternalFaultStore.02.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,40,47,1,0,0,,220161,620161,ff,SupplierInternalFaultStore.03.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,48,55,1,0,0,,220161,620161,ff,SupplierInternalFaultStore.04.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,56,63,1,0,0,,220161,620161,ff,SupplierInternalFaultStore.05.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,64,71,1,0,0,,220161,620161,ff,SupplierInternalFaultStore.06.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,72,79,1,0,0,,220161,620161,ff,SupplierInternalFaultStore.07.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,80,87,1,0,0,,220161,620161,ff,SupplierInternalFaultStore.08.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,88,95,1,0,0,,220161,620161,ff,SupplierInternalFaultStore.09.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,96,103,1,0,0,,220161,620161,ff,SupplierInternalFaultStore.10.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,24,31,1,0,0,,220162,620162,ff,TuningNumberSelected,0:0_Slot#0_Normal;1:1_Slot#1_Default;2:2_Slot#2_CityMode;3:3_Slot#3 ,762,24,31,1,0,0,,220163,620163,ff,SupplierInternalFaultCode.List,0:00h Clear DTC;17:11h TS Main sensor output voltage out of range;18:12h TS Sub sensor output voltage out of range;19:13h TS Both sensors output voltage out of range;20:14h TS Power supply voltage out of range;22:16h TS Peak Average Error;23:17h TS Power supply low voltage;34:22h CAN EngineStatus Absent;52:34h FUNC Unknown VehicleState;55:37h CAN BRAKE_CANHS_RNr_02 Checksum/Clock Invalid;66:42h Motor;83:53h BATTERY High Voltage;84:54h BATTERY Low Voltage;87:57h BATTERY Cut Off;96:60h CAN BRAKE_CANHS_RNr_02 Absent OSEK;97:61h CAN VH VehicleSpeed Invalid;98:62h CAN BUS OFF;101:65h CAN BRAKE_CANHS_RNr_02 Absent;100:66h FUNC AngleFinding WheelSpeed Invalid;102:66h FUNC AngleFinding No Frame Received 29A / 29C;104:68h CAN SWA SteeringWheelAngle Invalid;105:69h CAN SWA SwaSensorInternalStatus <> 101;106:6Ah CAN SWA_CANHS_RNr_01 Absent;107:6Bh CAN SWA_CANHS_RNr_01 Checksum Invalid;108:6Ch CAN SWA_CANHS_RNr_01 Clock Invalid;146:92h FUNC AngleFinding Too Slow ,762,24,31,1,0,0,,220164,620164,ff,DongleState,1:OperationalLearnt;2:OperationalBlanked;3:NotOperational ,762,24,31,1,0,0,,220165,620165,ff,DonglePairingCounter ,762,24,31,1,0,0,,220166,620166,ff,DongleError,0:NoError;1:EEPROMProblemOnDongleID;2:EEPROMProblemOnDonglePairingCounter;3:MotorDisconnectedFromECU ,762,24,31,1,0,0,%,220169,620169,ff,CPULoad ,762,24,31,1,0,0,,220179,620179,ff,CCP_Status,0:0 - CAN CCP inhibited (EC will not answer to CCP tool request);1:1 - CAN CCP activated ,762,24,31,1,0,0,,220183,620183,ff,RearGearEngaged_from_CAN,0:0 - Rear Gear not engaged;1:1 - Rear Gear engaged ,762,24,39,.1,0,1,°,220189,620189,1ff,SteeringAngleCalulated_For_EPS ,762,24,31,1,0,0,,220197,620197,ff,CityModeWireInput,0:0 - Low state detected;1:1 - High state detected ,762,24,31,1,0,0,%,220198,620198,ff,VoltageAssistanceLevel ,762,24,39,.0078125,0,3,A,220199,620199,1ff,I_CurrentSteering returnability ,762,24,39,.0078125,0,3,A,22019A,62019A,1ff,I_CurrentActiveCentering ,762,24,39,.0078125,0,3,A,22019B,62019B,1ff,I_PushBack_current ,762,24,31,1,0,0,,22019C,62019C,ff,Backwards_Detection_For_EPS,0:0 - Forwards or deactivated;1:1 - Backwards and active ,762,24,39,.0078125,0,3,A,22019D,62019D,1ff,I_CurrentDamping_function ,762,24,31,1,0,0,,22019E,62019E,ff,LongitudinalAcceleration_function_gain ,762,24,31,1,0,0,km/h,22019F,62019F,ff,CityLowVehicleSpeed ,762,24,39,.01,0,2,km/h,220204,620204,ff,VehicleSpeedFromCAN ,762,24,31,1,0,0,,220501,620501,ff,EngineStatusFromCAN,0:Stopped;1:Reserved;2:Running;3:Driven ,762,24,31,1,0,0,,220503,620503,ff,GADEFromCAN,0:00 - Only faults reports and alerts that MUST remain active during cranking or sleeping periods are enabled;1:01 - All faults reports and alerts not related to APC power level are enabled;2:10 - All faults reports and alerts are enabled;3:11 - Unavailable ,762,24,31,1,0,0,,221024,621024,ff,TuningNumber,0:0_Slot#0_Normal;1:1_Slot#1_Default;2:2_Slot#2_CityMode;3:3_Slot#3_NotUsed ,762,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,762,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/EPS_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/HVAC_Dtcs.csv ================================================ A4A1,VBatt A4A6,InCarTemp A4A4,EvapTemp A4A3,AQS_Reductor A4A5,AQS_Oxydant A4A7,AQS_Supply A4A8,AQS_PreHeating A4AB,HumiditySensor A4D3,LIN_Bus A4DA,AQM_FragranceMotor A4DE,AQM_Ionizer A4DC,AQM_FragranceBlower A4D4,LIN2_Bus A4B4,FrontControlPanel A4C6,BlowerControl A4B7,Motor1Actr A4BF,Motor5Actr A4B9,Motor2Actr A4D5,RearControlPanel A4D8,AQMControlPanel A4B6,CentralPanel A4BB,Motor3Actr A4C1,Motor6Actr A4C3,BlowerSystem1 A4AC,AQS_PWM A4AD,RearMixActr A4BD,Motor4Actr A4CD,BatteryBlowerSystem1 A4D7,RearBlowerFanFeedback A4B8,RearAirTempSensor A4A0,EEPROM A4A2,Config A4E0,RearDistActr D010,CAN Self Diag D000,CAN Communication A4E8,BlowerByLin A4B2,AQM_IonizerMode A4AE,Hot_Source / Blower_Fan_Feedback A4E1,Rear_Hot_Blower_PWM A4E3,Rear_Cold_Blower_PWM A4B5,Blower_BatFan_Feedback / Rear_Switch/Boiler_Feedback A4AA,Heated_Seat_FL_Feedback / Sensor_2nd_Sunload A4A9,Heated_Seat_RR_Feedback / Sensor_Sunload A4B1,Heated_Seat_FR_Feedback A4C7,Heated_Seat_FR_CMD / BatFan_PWM /Rear_Fan_CMD A4CB,Heated_Seat_FL_CMD_LED / Comp_Valve_output A4E5,Heated_Seat_FR_CMD_LED / Windshield_Defroster_Right A4E7,Wipers_Defroster_ /Windshield_Defroster_Left A4CF,Cabin_Cool_Valve_output A4D1,Battery_Cool_Valve_output A4C9,Heated_Seat_FL_CMD /Relay_Control_Output/Boiler_CMD A4B3,Heated_Seat_RL_Feedback or LARC A481,PTC A483,ECompOutputLineSC A484,ECompOutputLineOC A485,ECompCurrentSensor A486,ECompOverload A487,ECompAbnormalRunUp A489,ECompAbnormalHV A48A,EComp A48B,ECompCPU A48C,HPMACleakageDynamic A4C0,HPMACleakageStatic A4C8,PTCStatOverUndervoltage A4E2,PTCStatHeatercirc2off A4F9,ECompTempSensor ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/HVAC_Fields.csv ================================================ ,764,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession ,764,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,764,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,764,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,764,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) - PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,764,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,764,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,764,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,764,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,764,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,764,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,764,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,764,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,764,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,764,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,764,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,764,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,764,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,764,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,764,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,764,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,764,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,764,16,23,1,0,0,,2100,6100,4ff,Supported Lid for RDBLID(01-08) ,764,24,31,1,0,0,,2100,6100,4ff,Supported Lid for RDBLID(09-10) ,764,32,39,1,0,0,,2100,6100,4ff,Supported Lid for RDBLID(11-18) ,764,40,47,1,0,0,,2100,6100,4ff,Supported Lid for RDBLID(19-20) ,764,16,16,1,0,0,,2101,6101,ff,External temperature sensor value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,17,17,1,0,0,,2101,6101,ff,Internal temperature sensor value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,18,18,1,0,0,,2101,6101,ff,Intake temperature sensor value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,19,19,1,0,0,,2101,6101,ff,Insolation sensor value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,20,20,1,0,0,,2101,6101,ff,External temperature sensor calculated value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,21,21,1,0,0,,2101,6101,ff,Internal temperature sensor calculated value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,22,22,1,0,0,,2101,6101,ff,Passenger side internal temperature sensor calculated value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,23,23,1,0,0,,2101,6101,ff,Intake temperature sensor calculated value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,24,24,1,0,0,,2101,6101,ff,Insolation sensor calculated value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,25,25,1,0,0,,2101,6101,ff,Passenger side insolation sensor calculated value2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,26,26,1,0,0,,2101,6101,ff,Compressor request signal 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,27,27,1,0,0,,2101,6101,ff,Compressor ECV DUTY 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,28,28,1,0,0,,2101,6101,ff,Blower fan request signal 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,29,29,1,0,0,,2101,6101,ff,Floor fan DUTY or voltage 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,30,30,1,0,0,,2101,6101,ff,XM 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,31,31,1,0,0,,2101,6101,ff,Rear internal temperature sensor value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,32,32,1,0,0,,2101,6101,ff,Rear intake temperature sensor value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,33,33,1,0,0,,2101,6101,ff,Rear internal temperature sensor calculated value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,34,34,1,0,0,,2101,6101,ff,Rear intake temperature sensor calculated value 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,35,35,1,0,0,,2101,6101,ff,Rear XM 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,36,36,1,0,0,,2101,6101,ff,Rear blower fan request signal 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,37,37,1,0,0,,2101,6101,ff,Rear floor fan DUTY or voltage 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,38,38,1,0,0,,2101,6101,ff,Water temperature signal 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,39,39,1,0,0,,2101,6101,ff,Vehicle speed signal 2101,0:Not to use the value for data monitor;1:To use the value for data monitor ,764,16,23,1,0,0,,2102,6102,ff,CL_VehicleType,0:Not Configured;9:X98;16:X10;17:P32;18:EspaceConcept;19:X82;20:X07VE;21:X07ICE ,764,16,23,1,0,0,,2103,6103,ff,CL_ACType,0:Not Configured;1:Manual Monozone;2:Heater - Chauffo;16:Monozone Regulated - CAREG MZ;17:Dualzone without rear vent ducts;18:Dualzone with rear vent ducts;19:Trizone with temperature;20:Trizone with temperature and with distribution;21:Dualzone with additional rear monozone;22:Monozone Regulated - with rear blowers ,764,16,23,1,0,0,,2104,6104,ff,CL_PTCType,0:Not Configured;1:Without PTC;16:PTC 0-9kW or 1kW;24:PTC 1-5kW-1-6kW or 1-8kW;25:CTP 0-9KW + THP;27:THP Only ,764,16,23,1,0,0,,2105,6105,ff,CL_CountryCfg,0:Not Configured;1:zone 1 (mild);2:zone 2;3:zone 3;4:zone 4 ,764,16,23,1,0,0,,2106,6106,ff,CL_Steering,0:Not Configured;1:Right Hand Drive;2:Left Hand Drive ,764,16,23,1,0,0,,2107,6107,ff,CL_CompType,0:Not Configured;1:Compressor 1 (Ext Ctrl - Clutch);33:Compressor 5 (Electrical Vehicle);67:Compressor 3 (Int Ctrl - Clutch);68:Compressor 4 (Fixed Cap - Clutch);129:Compressor 2 (Ext Ctrl - Clutchless) ,764,16,23,.01,0,2,,2108,6108,ff,CL_CompPulleyRatio ,764,16,23,1,0,0,,2109,6109,ff,CL_WithEvapSensor,0:Not Configured;1:WithoutSensor;2:WithLocalSensorType1;3:With local sensor type2 ,764,16,23,1,0,0,,210A,610A,ff,CL_WithSolarSensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor(left & right);3:KL_SensorByCAN;4:with sensor (local Right only);5:with sensor (local Left only) ,764,16,23,1,0,0,,210B,610B,ff,CL_WithAirQualitySensor,0:Not Configured;1:KL_WithoutSensor;2:with sensor Type1(Renault);3:with sensor Type2(Nissan) ,764,16,23,1,0,0,,210C,610C,ff,CL_WindshieldType,0:Not Configured;1:Without Windshield Option;2:With Ft Defrost;3:With Heat Reflecting;4:With Ft Defrost &Heat Reflecting;5:with front defrost by CAN;6:with front defrost +heat Reflect by CAN;7:with deicer;8:with deicer+HeatReflecting;9:With front defrost and switch ,764,16,23,1,0,0,,210D,610D,ff,CL_WithLINBus,0:Not Configured;1:KL_WithoutLINBus;2:with message set 1(LINCLIM3);3:with message set 2(TBD) ,764,16,23,1,0,0,,210E,610E,ff,CL_WithHumiditySensor,0:Not Configured;1:Without Sensor;2:WithLocalSensorType1 (Renault);3:With local sensor Type 2 ,764,16,23,1,0,0,,210F,610F,ff,CL_WithExtTempSensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor;3:KL_SensorByCAN ,764,16,23,1,40,0,°C,2110,6110,1ff,External temperature sensor value ,764,24,31,1,40,0,°C,2110,6110,1ff,Internal temperature sensor value ,764,32,39,1,40,0,°C,2110,6110,1ff,Intake temperature sensor value ,764,40,47,5,0,0,W/m²,2110,6110,ff,Insolation sensor value ,764,48,55,1,40,0,°C,2110,6110,1ff,External temperature sensor calculated value ,764,56,63,1,40,0,°C,2110,6110,1ff,Internal temperature sensor calculated value ,764,72,79,1,40,0,°C,2110,6110,1ff,Intake temperature sensor calculated value ,764,80,87,5,0,0,W/m²,2110,6110,ff,Insolation sensor calculated value ,764,96,96,1,0,0,,2110,6110,ff,Compressor request signal,0:Request OFF;1:Request ON ,764,97,103,1,0,0,%,2110,6110,ff,Compressor ECV DUTY ,764,104,104,1,0,0,,2110,6110,ff,Blower fan request signal,0:Request OFF;1:Request ON ,764,105,111,1,0,0,%,2110,6110,ff,Floor fan DUTY or voltage ,764,112,119,1,100,0,,2110,6110,1ff,XM ,764,168,175,1,40,0,°C,2110,6110,1ff,Water temperature signal ,764,176,183,1,40,0,,2110,6110,ff,Vehicle speed signal ,764,16,23,1,0,0,,2111,6111,ff,CL_ColdLoopType,0:Not Configured;1:Cold Loop inside ECU Clim;2:Cold Loop outside ECU Clim ,764,0,0,1,0,0,,2112,6112,ff,HLS_WorkingMode ,764,16,16,1,0,0,,2112,6112,ff,IH_LLSReady ,764,17,17,1,0,0,,2112,6112,ff,VH_BlowerAvailable ,764,18,18,1,0,0,,2112,6112,ff,VH_AvgFrontSetPoint ,764,19,19,1,0,0,,2112,6112,ff,VH_StopAutoForClim ,764,20,20,1,0,0,,2112,6112,ff,VH_PreHeatingForRequest ,764,24,31,1,0,0,,2112,6112,ff,VH_RegulationState ,764,32,39,1,0,0,,2112,6112,ff,VH_MMIState ,764,40,47,1,0,0,,2112,6112,ff,VH_PCState ,764,48,55,1,0,0,,2112,6112,ff,VH_EcoMode ,764,56,63,1,0,0,,2112,6112,ff,VH_GeneralMode ,764,64,71,1,0,0,,2112,6112,ff,VH_ExternalTemp_cor ,764,72,79,.1,400,1,°C,2112,6112,1ff,VH_FrontIncarAirTemp ,764,80,87,1,0,0,,2112,6112,ff,VH_AvgSolarLevel ,764,88,95,1,0,0,,2112,6112,ff,VH_AutoType ,764,96,103,1,0,0,,2112,6112,ff,VH_VehicleSpeed ,764,104,119,1,0,0,,2112,6112,ff,VH_TimerPCImm ,764,16,23,1,0,0,,2113,6113,ff,VH_Misting ,764,24,31,1,0,0,,2113,6113,ff,VH_TairWindshield ,764,32,39,.1,400,1,°C,2113,6113,1ff,VH_FrontIncarAirTemp ,764,40,55,1,0,0,,2113,6113,ff,VH_DriverTempNeed ,764,56,71,1,0,0,,2113,6113,ff,VH_PassTempNeed ,764,72,79,1,0,0,,2113,6113,ff,VH_RearTempNeed ,764,16,191,1,0,0,,2114,6114,4ff,CL_DiagnosticConfiguration ,764,16,23,1,0,0,,2115,6115,ff,CL_EngineType,0:Not Configured;1:Thermic engine;2:SAS Engine;3:Electrical engine;5:Thermic Nissan engine;6:Hybrid Nissan engine ,764,16,23,1,0,0,,2116,6116,ff,CL_WithInCarTempSensor,0:Not Configured;1:WithoutSensor;2:WithLocalSensor Type 1(Renault);3:WithLocalSensor Type 2(Nissan) ,764,16,23,1,0,0,,2117,6117,ff,CL_WithHotSourceSensor,0:Not Configured;1:Without Sensor;2:WithLocalSensor ,764,16,23,1,0,0,,2118,6118,ff,CL_CANArchitecture,0:Not Configured;1:Architecture type 1=T4(X82) / T4 Edison X07 ph2;2:Architecture type 2=1540;3:Architecture type 3=P32;4:Architecture type 4=X07VE;5:Architecture type 5=X07ICE;6:Architecture type 6;7:Architecture type 7;8:Architecture type 8;12:Architecture type 12=C1A ,764,16,23,1,0,0,,2119,6119,ff,CL_WithLINBus2,0:Not Configured;1:KL_WithoutLINBus2;2:with message set 1(LINCLIM3);3:with message set 2(TBD);4:with message set 2(HVPTC + Compressor) ,764,16,23,1,0,0,,211A,611A,ff,CL_WithBatteryBlower,0:Not Configured;1:Without Output;2:With Local Output;3:with output and feedback input ,764,0,0,1,0,0,,211B,611B,ff,HLS_ColdSource ,764,16,16,1,0,0,,211B,611B,ff,VH_ColdSourceNeed ,764,17,17,1,0,0,,211B,611B,ff,OH_ACCompWorkingMode,0:Running in idle mode or stopped;1:Running not in idle mode ,764,18,18,1,0,0,,211B,611B,ff,VH_ManualColdSourceReq ,764,24,31,1,0,0,,211B,611B,ff,VH_FrontColdSourceModeSelection ,764,32,39,1,0,0,,211B,611B,ff,VH_ColdSourceTempNeed ,764,40,47,50,0,0,W,211B,611B,ff,OH_ACCompPowerUsed ,764,48,55,1,0,0,,211B,611B,ff,VH_EvapTemp ,764,56,63,1,0,0,,211B,611B,ff,VH_ClearnessAirFlowReq ,764,64,71,1,0,0,,211B,611B,ff,VH_AC_StopAutoForbidden ,764,0,0,1,0,0,,211C,611C,ff,HLS_HotSource ,764,16,16,1,0,0,,211C,611C,ff,VH_HotSourceNeed ,764,17,17,1,0,0,,211C,611C,ff,VH_ClimFrontDefrostReq ,764,18,18,1,0,0,,211C,611C,ff,VH_FrontDefNeed ,764,19,19,1,0,0,,211C,611C,ff,VH_RearDefNeed ,764,20,20,1,0,0,,211C,611C,ff,OH_FrontDefrostRequest,0:Not Requested;1:Requested ,764,24,24,1,0,0,,211C,611C,ff,OH_RearDefrostRequest,0:Not Requested;1:Requested ,764,32,39,1,0,0,,211C,611C,ff,VH_HotSourceTempNeed ,764,40,43,1,0,0,,211C,611C,ff,OH_PTCNumberThermalReq,0:0 PTC requested;1:1 PTC requested;2:2 PTC requested;3:3 PTC requested;4:4 PTC requested;5:5 PTC requested;6:6 PTC requested;7:7 PTC requested;8:8 PTC requested;9:9 PTC requested;10:10 PTC requested;11:Not used;15:No Request ,764,48,49,1,0,0,,211C,611C,ff,OH_PTCActivationRequest,0:Unavailable;1:On Requested;2:Off Requested;3:Not used ,764,56,63,1,0,0,,211C,611C,ff,VH_WEPNeed ,764,64,79,1,0,0,,211C,611C,ff,VH_HotSourceTemp ,764,0,0,1,0,0,,211D,611D,ff,HLS_Distribution ,764,16,23,1,0,0,,211D,611D,ff,VH_FrontDistModeSelection ,764,24,31,1,0,0,,211D,611D,ff,VH_DistLevel ,764,32,39,1,0,0,,211D,611D,ff,IH_RearDistActrPosition ,764,40,47,1,0,0,,211D,611D,ff,VH_Prct_FeetAndRearNeed ,764,48,55,1,0,0,,211D,611D,ff,VH_ManualPrct_DefrostReq ,764,56,63,1,0,0,,211D,611D,ff,VH_ManualPrct_FrontVentReq ,764,64,71,1,0,0,,211D,611D,ff,VH_ManualFrontVentCor ,764,16,23,1,0,0,,211E,611E,ff,CL_WithHPM,0:Not Configured;1:WithoutHPM;2:WithHPM ,764,16,23,1,0,0,,2120,6120,4ff,Supported Lid for RDBLID(21-28) ,764,24,31,1,0,0,,2120,6120,4ff,Supported Lid for RDBLID(29-30) ,764,32,39,1,0,0,,2120,6120,4ff,Supported Lid for RDBLID(31-38) ,764,40,47,1,0,0,,2120,6120,4ff,Supported Lid for RDBLID(39-40) ,764,0,0,1,0,0,,2121,6121,ff,HLS_AirFlow ,764,16,16,1,0,0,,2121,6121,ff,VH_DriverSetPoint ,764,24,31,1,0,0,,2121,6121,ff,VH_BlowerMode ,764,32,39,1,0,0,,2121,6121,ff,VH_FrontAirFlowModeSelection ,764,40,47,1,0,0,,2121,6121,ff,VH_AirFlowNeed ,764,48,55,1,0,0,,2121,6121,ff,VH_ComfortAirFlowReq ,764,56,63,1,0,0,,2121,6121,ff,VH_FrontManualAirFlowReq ,764,64,71,1,0,0,,2121,6121,ff,VH_RearManualAirFlowReq ,764,72,87,1,0,0,,2121,6121,ff,VH_DriverBlowAirTemp ,764,88,103,1,0,0,,2121,6121,ff,VH_ComfortDriverTempReq ,764,104,119,1,0,0,,2121,6121,ff,VH_DriverTempNeed ,764,16,23,1,0,0,,2122,6122,ff,CL_WithSED,0:Not configured;1:Without SED;2:SED with low pressure drop ducts;3:SED with medium pressure drop ducts;4:SED with high pressure drop ducts ,764,16,23,1,0,0,,2123,6123,ff,CL_WithSteeringHeater,0:Not Configured;1:Without Steering Heater;2:With Steering Heater;3:With steering heater type 2 (PHEV) ,764,23,31,.3,167,1,°C,2124,6124,ff,IH_EX_TEMP ,764,32,39,.4,0,1,%,2124,6124,ff,IH_NightRheostatedLightMaxPercent ,764,20,20,1,0,0,,2125,6125,ff,VL_InCarTempDiag_OCFP,0:False;1:True ,764,21,21,1,0,0,,2125,6125,ff,VL_InCarTempDiag_SCFP,0:False;1:True ,764,22,22,1,0,0,,2125,6125,ff,VL_EvapTempDiag_OCFP,0:False;1:True ,764,23,23,1,0,0,,2125,6125,ff,VL_EvapTempDiag_SCFP,0:False;1:True ,764,24,24,1,0,0,,2125,6125,ff,VL_HeatAQSDiag_OCFP,0:False;1:True ,764,25,25,1,0,0,,2125,6125,ff,VL_HeatAQSDiag_SCFP,0:False;1:True ,764,26,26,1,0,0,,2125,6125,ff,VL_AQS_VrefSupply_BAT_SCFP,0:False;1:True ,764,27,27,1,0,0,,2125,6125,ff,VL_AQS_VrefSupply_GND_SCFP,0:False;1:True ,764,28,28,1,0,0,,2125,6125,ff,VL_OxydantDiag_OCFP,0:False;1:True ,764,29,29,1,0,0,,2125,6125,ff,VL_OxydantDiag_SCFP,0:False;1:True ,764,30,30,1,0,0,,2125,6125,ff,VL_ReductorDiag_OCFP,0:False;1:True ,764,31,31,1,0,0,,2125,6125,ff,VL_ReductorDiag_SCFP,0:False;1:True ,764,32,32,1,0,0,,2125,6125,ff,VL_LINComDiag_ERFP,0:False;1:True ,764,35,35,1,0,0,,2125,6125,ff,VL_EEPROM_ERFP,0:False;1:True ,764,36,36,1,0,0,,2125,6125,ff,VL_VBattDiag_FP,0:False;1:True ,764,37,37,1,0,0,,2125,6125,ff,VL_RHumidityDiag_BFFP,0:False;1:True ,764,38,38,1,0,0,,2125,6125,ff,VL_RHumidityDiag_OCFP,0:False;1:True ,764,39,39,1,0,0,,2125,6125,ff,VL_RHumidityDiag_SCFP,0:False;1:True ,764,49,49,1,0,0,,2125,6125,ff,VL_Config_ERFP,0:False;1:True ,764,50,50,1,0,0,,2125,6125,ff,VL_BlowerSystDefaultType1FP,0:False;1:True ,764,51,51,1,0,0,,2125,6125,ff,VL_BlowerSystDefaultType2FP,0:False;1:True ,764,54,54,1,0,0,,2125,6125,ff,VL_RearMixActrDiag_OCFP,0:False;1:True ,764,55,55,1,0,0,,2125,6125,ff,VL_RearMixActrDiag_SCFP,0:False;1:True ,764,65,65,1,0,0,,2125,6125,ff,VL_AQMCP_Ionizer_OCFP,0:False;1:True ,764,66,66,1,0,0,,2125,6125,ff,VL_AQMCP_Ionizer_SCFP,0:False;1:True ,764,67,67,1,0,0,,2125,6125,ff,VL_AQMCP_FragranceBlower_OCFP,0:False;1:True ,764,68,68,1,0,0,,2125,6125,ff,VL_AQMCP_FragranceBlower_SCFP,0:False;1:True ,764,69,69,1,0,0,,2125,6125,ff,VL_AQMCP_FragranceMotor_OCFP,0:False;1:True ,764,70,70,1,0,0,,2125,6125,ff,VL_AQMCP_FragranceMotor_SCFP,0:False;1:True ,764,71,71,1,0,0,,2125,6125,ff,VL_AQMCPComDiag_DCFP,0:False;1:True ,764,75,75,1,0,0,,2125,6125,ff,VL_RearMZCP_RearBlowerFanFeedbackDiag_OCFP,0:False;1:True ,764,76,76,1,0,0,,2125,6125,ff,VL_RearMZCP_RearBlowerFanFeedbackDiag_SCFP,0:False;1:True ,764,77,77,1,0,0,,2125,6125,ff,VL_RearMZCP_RearAirTempSensor_OCFP,0:False;1:True ,764,78,78,1,0,0,,2125,6125,ff,VL_RearMZCP_RearAirTempSensor_SCFP,0:False;1:True ,764,79,79,1,0,0,,2125,6125,ff,VL_RearMZCPComDiag_DCFP,0:False;1:True ,764,97,97,1,0,0,,2125,6125,ff,VL_BlowerControlDiag_OCFP,0:False;1:True ,764,98,98,1,0,0,,2125,6125,ff,VL_BlowerControlDiag_SCFP,0:False;1:True ,764,109,109,1,0,0,,2125,6125,ff,VL_LIN2ComDiag_ERFP,0:False;1:True ,764,110,110,1,0,0,,2125,6125,ff,VL_FrontCPComDiag_DCFP,0:False;1:True ,764,120,120,1,0,0,,2125,6125,ff,VL_HotSourceTempDiag_OCFP,0:False;1:True ,764,121,121,1,0,0,,2125,6125,ff,VL_HotSourceTempDiag_SCFP,0:False;1:True ,764,20,20,1,0,0,,2126,6126,ff,VL_InCarTempDiag_OCFM,0:False;1:True ,764,21,21,1,0,0,,2126,6126,ff,VL_InCarTempDiag_SCFM,0:False;1:True ,764,22,22,1,0,0,,2126,6126,ff,VL_EvapTempDiag_OCFM,0:False;1:True ,764,23,23,1,0,0,,2126,6126,ff,VL_EvapTempDiag_SCFM,0:False;1:True ,764,24,24,1,0,0,,2126,6126,ff,VL_HeatAQSDiag_OCFM,0:False;1:True ,764,25,25,1,0,0,,2126,6126,ff,VL_HeatAQSDiag_SCFM,0:False;1:True ,764,26,26,1,0,0,,2126,6126,ff,VL_AQS_VrefSupply_BAT_SCFM,0:False;1:True ,764,27,27,1,0,0,,2126,6126,ff,VL_AQS_VrefSupply_GND_SCFM,0:False;1:True ,764,28,28,1,0,0,,2126,6126,ff,VL_OxydantDiag_OCFM,0:False;1:True ,764,29,29,1,0,0,,2126,6126,ff,VL_OxydantDiag_SCFM,0:False;1:True ,764,30,30,1,0,0,,2126,6126,ff,VL_ReductorDiag_OCFM,0:False;1:True ,764,31,31,1,0,0,,2126,6126,ff,VL_ReductorDiag_SCFM,0:False;1:True ,764,32,32,1,0,0,,2126,6126,ff,VL_LINComDiag_ERFM,0:False;1:True ,764,35,35,1,0,0,,2126,6126,ff,VL_EEPROM_ERFM,0:False;1:True ,764,36,36,1,0,0,,2126,6126,ff,VL_VBattDiag_FM,0:False;1:True ,764,37,37,1,0,0,,2126,6126,ff,VL_RHumidityDiag_BFFM,0:False;1:True ,764,38,38,1,0,0,,2126,6126,ff,VL_RHumidityDiag_OCFM,0:False;1:True ,764,39,39,1,0,0,,2126,6126,ff,VL_RHumidityDiag_SCFM,0:False;1:True ,764,49,49,1,0,0,,2126,6126,ff,VL_Config_ERFM,0:False;1:True ,764,50,50,1,0,0,,2126,6126,ff,VL_BlowerSystDefaultType1FM,0:False;1:True ,764,51,51,1,0,0,,2126,6126,ff,VL_BlowerSystDefaultType2FM,0:False;1:True ,764,54,54,1,0,0,,2126,6126,ff,VL_RearMixActrDiag_OCFM,0:False;1:True ,764,55,55,1,0,0,,2126,6126,ff,VL_RearMixActrDiag_SCFM,0:False;1:True ,764,65,65,1,0,0,,2126,6126,ff,VL_AQMCP_Ionizer_OCFM,0:False;1:True ,764,66,66,1,0,0,,2126,6126,ff,VL_AQMCP_Ionizer_SCFM,0:False;1:True ,764,67,67,1,0,0,,2126,6126,ff,VL_AQMCP_FragranceBlower_OCFM,0:False;1:True ,764,68,68,1,0,0,,2126,6126,ff,VL_AQMCP_FragranceBlower_SCFM,0:False;1:True ,764,69,69,1,0,0,,2126,6126,ff,VL_AQMCP_FragranceMotor_OCFM,0:False;1:True ,764,70,70,1,0,0,,2126,6126,ff,VL_AQMCP_FragranceMotor_SCFM,0:False;1:True ,764,71,71,1,0,0,,2126,6126,ff,VL_AQMCPComDiag_DCFM,0:False;1:True ,764,75,75,1,0,0,,2126,6126,ff,VL_RearMZCP_RearBlowerFanFeedbackDiag_OCFM,0:False;1:True ,764,76,76,1,0,0,,2126,6126,ff,VL_RearMZCP_RearBlowerFanFeedbackDiag_SCFM,0:False;1:True ,764,77,77,1,0,0,,2126,6126,ff,VL_RearMZCP_RearAirTempSensor_OCFM,0:False;1:True ,764,78,78,1,0,0,,2126,6126,ff,VL_RearMZCP_RearAirTempSensor_SCFM,0:False;1:True ,764,79,79,1,0,0,,2126,6126,ff,VL_RearMZCPComDiag_DCFM,0:False;1:True ,764,97,97,1,0,0,,2126,6126,ff,VL_BlowerControlDiag_OCFM,0:False;1:True ,764,98,98,1,0,0,,2126,6126,ff,VL_BlowerControlDiag_SCFM,0:False;1:True ,764,109,109,1,0,0,,2126,6126,ff,VL_LIN2ComDiag_ERFM,0:False;1:True ,764,110,110,1,0,0,,2126,6126,ff,VL_FrontCPComDiag_DCFM,0:False;1:True ,764,120,120,1,0,0,,2126,6126,ff,VL_HotSourceTempDiag_OCFM,0:False;1:True ,764,121,121,1,0,0,,2126,6126,ff,VL_HotSourceTempDiag_SCFM,0:False;1:True ,764,16,16,1,0,0,,2128,6128,ff,IH_ACLongPushState,0:no long push detected;1:long push detected ,764,17,17,1,0,0,,2128,6128,ff,IH_ACPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,18,18,1,0,0,,2128,6128,ff,IH_AirQualityLongPushState,0:no long push detected;1:long push detected ,764,19,19,1,0,0,,2128,6128,ff,IH_AirQualityPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,20,20,1,0,0,,2128,6128,ff,IH_AutoFastLongPushState,0:no long push detected;1:long push detected ,764,21,21,1,0,0,,2128,6128,ff,IH_AutoFastPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,22,22,1,0,0,,2128,6128,ff,IH_AutoNormalLongPushState,0:no long push detected;1:long push detected ,764,23,23,1,0,0,,2128,6128,ff,IH_AutoNormalPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,24,24,1,0,0,,2128,6128,ff,IH_AutoSoftLongPushState,0:no long push detected;1:long push detected ,764,25,25,1,0,0,,2128,6128,ff,IH_AutoSoftPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,26,26,1,0,0,,2128,6128,ff,IH_BlowerDnLongPushState,0:no long push detected;1:long push detected ,764,27,27,1,0,0,,2128,6128,ff,IH_BlowerDnPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,28,28,1,0,0,,2128,6128,ff,IH_BlowerUpLongPushState,0:no long push detected;1:long push detected ,764,29,29,1,0,0,,2128,6128,ff,IH_BlowerUpPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,30,30,1,0,0,,2128,6128,ff,IH_ClearnessLongPushState,0:no long push detected;1:long push detected ,764,31,31,1,0,0,,2128,6128,ff,IH_ClearnessPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,32,32,1,0,0,,2128,6128,ff,IH_DistDegiMildLongPushState,0:no long push detected;1:long push detected ,764,33,33,1,0,0,,2128,6128,ff,IH_DistDegiMildPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,34,34,1,0,0,,2128,6128,ff,IH_DistFeetLongPushState,0:no long push detected;1:long push detected ,764,35,35,1,0,0,,2128,6128,ff,IH_DistFeetPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,36,36,1,0,0,,2128,6128,ff,IH_DistVentLongPushState,0:no long push detected;1:long push detected ,764,37,37,1,0,0,,2128,6128,ff,IH_DistVentPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,38,38,1,0,0,,2128,6128,ff,IH_DualModeLongPushState,0:no long push detected;1:long push detected ,764,39,39,1,0,0,,2128,6128,ff,IH_DualModePushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,40,40,1,0,0,,2128,6128,ff,IH_ForcedFreshAirLongPushState,0:no long push detected;1:long push detected ,764,41,41,1,0,0,,2128,6128,ff,IH_ForcedFreshAirPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,42,42,1,0,0,,2128,6128,ff,IH_ForcedRecyLongPushState,0:no long push detected;1:long push detected ,764,43,43,1,0,0,,2128,6128,ff,IH_ForcedRecyPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,44,44,1,0,0,,2128,6128,ff,IH_LeftTempDnLongPushState,0:no long push detected;1:long push detected ,764,45,45,1,0,0,,2128,6128,ff,IH_LeftTempDnPushToggle,0:transition means switch pressed;1:transition to 1 means switch pressed ,764,46,46,1,0,0,,2128,6128,ff,IH_LeftTempUpLongPushState,0:no long push detected;1:long push detected ,764,47,47,1,0,0,,2128,6128,ff,IH_LeftTempUpPushToggle,0:transition means switch pressed;1:transition to 1 means switch pressed ,764,48,48,1,0,0,,2128,6128,ff,IH_ModeOffLongPushState,0:no long push detected;1:long push detected ,764,49,49,1,0,0,,2128,6128,ff,IH_ModeOffPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,50,50,1,0,0,,2128,6128,ff,IH_RearDefLongPushState,0:no long push detected;1:long push detected ,764,51,51,1,0,0,,2128,6128,ff,IH_RearDefPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,52,52,1,0,0,,2128,6128,ff,IH_RearLongPushState,0:no long push detected;1:long push detected ,764,53,53,1,0,0,,2128,6128,ff,IH_RearPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,54,54,1,0,0,,2128,6128,ff,IH_RightTempDnLongPushState,0:no long push detected;1:long push detected ,764,55,55,1,0,0,,2128,6128,ff,IH_RightTempDnPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,56,56,1,0,0,,2128,6128,ff,IH_RightTempUpLongPushState,0:no long push detected;1:long push detected ,764,57,57,1,0,0,,2128,6128,ff,IH_RightTempUpPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,58,63,1,0,0,,2128,6128,ff,OH_LeftTempDisplay,0:No display;2:All segment displayed;4:Display OF;6:Display --;8:Display LO;10:Display HI;11:5-5;12:6;13:6-5;14:7;15:7-5;16:8;17:8-5;18:9;19:9-5;20:10;21:10-5;22:11;23:11-5;24:12;25:12-5;26:13;27:13-5;28:14;29:14-5;30:15;31:15-5;32:16;33:16-5;34:17;35:17-5;36:18;37:18-5;38:19;39:19-5;40:20;41:20-5;42:21;43:21-5;44:22;45:22-5;46:23;47:23-5;48:24;49:24-5;50:25;51:25-5;52:26;53:26-5;54:27;55:27-5;56:28;57:28-5;58:29;59:29-5;60:30 ,764,64,69,.5,0,1,,2128,6128,ff,OH_RightTempDisplay ,764,76,79,1,0,0,,2128,6128,ff,OH_BlowerLevelDisplay,0:No display;1:display 1 blades and fan symbol;2:display 2 blades and fan symbol;3:display 3 blades and fan symbol;4:display 4 blades and fan symbol;5:display 5 blades and fan symbol;6:display 6 blades and fan symbol;7:display 7 blades and fan symbol;8:display 8 blades and fan symbol;15:display the fan symbol only ,764,100,100,1,0,0,,2128,6128,ff,IH_EcoHighModeLongPushState,0:no long push detected;1:long push detected ,764,101,101,1,0,0,,2128,6128,ff,IH_EcoHighModePushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,102,102,1,0,0,,2128,6128,ff,IH_EcoLowModeLongPushState,0:no long push detected;1:long push detected ,764,103,103,1,0,0,,2128,6128,ff,IH_EcoLowModePushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,108,108,1,0,0,,2128,6128,ff,IH_PreConditionningLongPushState,0:no long push detected;1:long push detected ,764,109,109,1,0,0,,2128,6128,ff,IH_PreConditionningPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,110,110,1,0,0,,2128,6128,ff,IH_TempDnLongPushState,0:no long push detected;1:long push detected ,764,111,111,1,0,0,,2128,6128,ff,IH_TempDnPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,112,112,1,0,0,,2128,6128,ff,IH_TempUpLongPushState,0:no long push detected;1:long push detected ,764,113,113,1,0,0,,2128,6128,ff,IH_TempUpPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,114,117,1,0,0,,2128,6128,ff,OH_FP_RotaryTempDisplay,0:No display;1:Display Indicator 1;2:Display Indicator 2;3:Display Indicator 3;4:Display Indicator 4;5:Display Indicator 5;6:Display Indicator 6;7:Display Indicator 7;8:Display Indicator 8;9:Display Indicator 9;10:Display Indicator 10;11:Display Indicator 11;12:Display Indicator 12;13:Display Indicator 13;14:Display Indicator 14;15:Display Indicator 15 ,764,118,118,1,0,0,,2128,6128,ff,OH_FP_MMIModeTemp,0:Mode 1 (only one LED Display);1:Mode 2 (not only one LED Display) ,764,119,119,1,0,0,,2128,6128,ff,OH_FP_MMIModeBlower,0:Mode 1 (only one LED Display);1:Mode 2 (not only one LED Display) ,764,120,120,1,0,0,,2128,6128,ff,IH_RecyAutoLongPushState,0:no long push detected;1:long push detected ,764,121,121,1,0,0,,2128,6128,ff,IH_RecyAutoPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,16,23,1,0,0,,212A,612A,ff,CL_SeatsHeatingCommand,0:Not Configured;1:without Seats Heating;2:With seat heating control FL;4:With seat heating control FR;6:With seat heating control FL +FR;8:With seat heating control RL;10:With seat heating control FL+RL;12:With seat heating control FR+RL;14:With seat heating control FR+FR+RL;16:With seat heating control RR;18:With seat heating control FL+ RR;20:With seat heating control FR+ RR;22:With seat heating control FL+FR+ RR;24:With seat heating control RL + RR;26:With seat heating control FL+ RL + RR;28:With seat heating control FR+ RL + RR;30:With seat heating control FL+FR+ RL + RR ,764,16,23,1,0,0,,212B,612B,ff,CL_WithControlPanel,0:Not Configured;1:WithoutCP;2:CP Type 1 - X10 CAREG / X07 EV CAREG RSA;3:CP Type 2 - X10 CHAUFFO / X07 EV CHAUFFO RSA;4:CP Type 3 - CAREG X07 ICE RSA;5:CP Type 4 - X07 ICE & EV CAREG Daimler;6:CP Type 5 - Careg X82;7:CP Type 6 - 1540 E2;8:CP Type 7 - 1540 E3;9:CP Type 8 - Nissan USA;10:CP Type 9 - X07 ICE & EV CHAUFFO Daimler;11:CP Type 10- NISSAN Europe;12:CP Type 11 - 1540 Caman;13:CP Type 12 - CP HFE CAREG without HFS;14:CP Type 13 - CP HFE Caman;15:CP Type 14 - CP HFE CAREG with HFS;16:CP Type 15 - 1540 E2 KOREA;17:CP Type 16 - NISSAN P32 RUSSIA;18:CP Type 17;19:CP Type 18;20:CP Type 19;21:CP Type 20 ,764,16,23,1,0,0,,212C,612C,ff,CL_WithInternalAirQualityManagement,0:Not Configured;1:Without Air Quality Management;2:With Fragrance- Without Ionizer;3:Without Fragrance- With Ionizer Type1;4:With Fragrance- With Ionizer Type1;5:without fragrance with ionizer type 2;6:with fragrance with ionizer type 2 ,764,16,23,1,0,0,,212D,612D,ff,CL_CompValveType,0:Not configured;1:without Compressor Valve;2:with Compressor Valve type 1;3:with Compressor Valve type 2;4:with Compressor Valve type 3 ,764,16,23,1,0,0,,212E,612E,ff,CL_SeatsHeatingFeedback,0:Not Configured;1:without Seats Heating Feedback;2:With seat heating feedback FL;4:With seat heating feedback FR;6:With seat heating feedback FL +FR;8:With seat heating feedback RL;10:With seat heating feedback FL+RL;12:With seat heating feedback FR+RL;14:With seat heating feedback FR+FR+RL;16:With seat heating feedback RR;18:With seat heating feedback FL+ RR;20:With seat heating feedback FR+ RR;22:With seat heating feedback FL+FR+ RR;24:With seat heating feedback RL + RR;26:With seat heating feedback FL+ RL + RR;28:With seat heating feedback FR+ RL + RR;30:With seat heating feedback FL+FR+ RL + RR ,764,16,23,1,0,0,,212F,612F,ff,CL_WithBoiler,0:Not Configured;1:Without boiler;2:With Boiler Type 1;3:With Boiler Type 2;4:With Boiler Type 3 ,764,16,23,.390625,0,1,%,2131,6131,ff,IH_DCDCLoad ,764,48,48,1,0,0,,2131,6131,ff,IH_PreHeatingActivation,0:Don't Activate;1:Activate ,764,56,63,25,0,0,W,2131,6131,ff,IH_ClimAvailablePower ,764,16,16,1,0,0,,2132,6132,ff,OH_PreHeatingRequest,0:No Requested;1:Requested ,764,22,31,.1,400,1,°C,2132,6132,ff,OH_EvaporatorTempSetPoint ,764,40,45,2,0,0,,2132,6132,ff,OH_ClimAirFlow ,764,46,55,.1,400,1,°C,2132,6132,ff,OH_EvaporatorTempMeasure ,764,67,68,1,0,0,,2132,6132,ff,OH_PTCActivationRequest,0:Unavailable;1:On Requested;2:Off Requested;3:Not used ,764,16,23,1,0,0,,2133,6133,ff,VH_FrontRecyclingModeSelection ,764,24,31,1,0,0,,2133,6133,ff,VH_RecyclingNeed ,764,32,39,1,0,0,,2133,6133,ff,VH_AQSRecyclingNeed ,764,40,47,1,0,0,,2133,6133,ff,VH_ComfortRecyPartialReq ,764,48,55,1,0,0,,2133,6133,ff,VH_ComfortRecyPerfoReq ,764,56,63,1,0,0,,2133,6133,ff,VH_DemistingRecyReq ,764,16,16,1,0,0,,2134,6134,ff,VH_IoniserWakenUp ,764,17,17,1,0,0,,2134,6134,ff,VH_AirFreshenerWakenUp ,764,24,31,1,0,0,,2134,6134,ff,VH_IoniserAutoLaunchState ,764,0,0,1,0,0,,2135,6135,ff,DataRead.CAN_RX_BRAKE_CANHS_R_01 ,764,16,17,1,0,0,,2136,6136,ff,IH_EngineFanSpeedRequest,1:Low speed engine fan speed request;2:Mid speed engine fan speed request;0:No engine fan speed request;3:High speed engine fan speed request ,764,26,27,1,0,0,,2136,6136,ff,IH_EngineStatus_R,0:Engine Stopped;1:Not used - Reserved;2:running engine;3:Running-engine driven ,764,28,31,1,0,0,,2136,6136,ff,IH_EngineStopOrigine,0:No stop request;1:Stopped by other causes;2:Stopped by normal request;3:Value not defined (0011);4:Stopped by driver request;5:Value not defined (0101);6:Value not defined (0110);7:Value not defined (0111);8:Stopped by emergency request;9:Value not defined (1001);10:Value not defined (1010);11:Value not defined (1011);12:Value not defined (1100);13:Value not defined (1101);14:Value not defined (1110);15:Value not defined (1111) ,764,38,38,1,0,0,,2136,6136,ff,IH_ACCompAuthorized,0:AC not Authorized;1:AC Authorized ,764,39,47,.1,0,1,bar,2136,6136,ff,IH_ACHighPressureSensor ,764,72,79,25,0,0,W,2136,6136,ff,IH_ACMaxCompPowerAllowed ,764,16,23,1,40,0,°C,2137,6137,ff,IH_EngineCoolantTemp ,764,72,73,1,0,0,,2137,6137,ff,IH_EngineCoolantFlowStatus,0:Unavailable Value;1:No Engine Coolant Flow;2:Engine Coolant Flow;3:Not used ,764,16,23,1,40,0,°C,2138,6138,ff,IH_ExternalTemp ,764,24,31,.4,0,1,%,2138,6138,ff,IH_NightRheostatedLightMaxPercent ,764,32,32,1,0,0,,2138,6138,ff,IH_DayNightStatus,0:Day time;1:Night time ,764,36,40,5,0,0,%,213A,613A,ff,IH_EngineFanSpeed ,764,16,17,1,0,0,,213B,613B,ff,IH_BatVEShutdownAlert,0:Unavailable;1:No +BatVE shutdown alert;2:+BatVE shutdown alert;3:Not used ,764,20,21,1,0,0,,213B,613B,ff,IH_HVBatteryLevelAlert,0:No alert;1:Not used;2:Battery low alert;3:unavailable ,764,26,35,10,0,0,rpm,213B,613B,ff,IH_ClimCompRPMStatus ,764,36,38,1,0,0,,213B,613B,ff,IH_ClimCompDefaultStatus,0:No Failure and On;1:No Failure and Off;2:Downgraded;3:Failure;4:To change;5:Not used (101);6:Not used (110);7:Unavailable ,764,42,44,1,0,0,,213B,613B,ff,IH_PTCDefaultStatus,0:No Failure and On;1:No Failure and Off;2:Downgraded;3:Failure;4:To change;5:Not used (101);6:Not used (110);7:Unavailable ,764,58,64,100,0,0,,213B,613B,ff,IH_ClimAvailableEnergy ,764,72,73,1,0,0,,213B,613B,ff,IH_LowVoltageUnballast_Request,0:Unavailable;1:No Unballast request;2:Unballast request;3:Not used ,764,56,63,.3,0,1,,213C,613C,ff,IH_AvailableChargingPower ,764,31,31,1,0,0,,213D,613D,ff,OH_ClimateCoolingSelect,0:No AC request;1:AC requested ,764,38,38,1,0,0,,213D,613D,ff,OH_ACVbatTempoMaintain,0:Not Requested;1:Requested ,764,48,49,1,0,0,,213D,613D,ff,OH_ClimCustomerAction ,764,16,17,1,0,0,,213E,613E,ff,OH_ClimAQSActivationState,0:Unavailable;1:Activated;2:Not activated;3:Not used ,764,18,19,1,0,0,,213E,613E,ff,OH_ThermalComfortEcoAdvice,2:Thermal comfort eco advice not requested;1:Thermal comfort eco advice requested;0:Unavailable;3:Not Used ,764,18,19,1,0,0,,213F,613F,ff,OH_ClimRearDefrostDisplay,0:No Display;1:Rear Defrost ON;2:Rear Defrost OFF;3:Not used ,764,20,22,1,0,0,,213F,613F,ff,OH_ClimModeTypeDisplay,0:No Display;1:Auto mode;2:Eco mode;3:Clearness mode;4:Manual mode;5:Off;6:Not used (110);7:Not used (111) ,764,24,31,1,0,0,,213F,613F,ff,OH_ClimTempDisplay,0:No display;1:Not used (01);2:All segment displayed;3:Not used (11);4:Display OF;5:Not used (101);6:Display --;8:Display LO;9:Not used (1001);10:Display HI;11:5-5;12:6;13:6-5;14:7;16:Not used (10000);17:18-5;18:Not used (10010);20:Real display;21:10-5;22:11;23:11-5;24:12;25:12-5;26:13;27:13-5;28:14;29:14-5;30:15;31:15-5;32:16;33:16-5;34:17;35:17-5;36:18;37:28-5;38:19;39:19-5;40:20;41:30-5;42:21;43:21-5;44:22;45:22-5;46:23;47:23-5;48:24;49:24-5;50:25;51:25-5;52:26;53:26-5;54:27;55:27-5;56:28;57:38-5;58:29;59:29-5;60:30 ,764,32,35,1,0,0,,213F,613F,ff,OH_ClimFlowDistrDisplay,0:No Display;1:Feet Arrow;2:Aerator Arrow;3:Feet + Aerator Arrow;4:Mild flow Arrow;5:Feet + Mild Arrow;6:Mild + Feet Arrow;7:Feet + Aerator Mild Arrow;8:Defrost Arrow;9:Feet + Defrost Arrow;10:Aerator + Defrost Arrow;11:Feet + Aerator + Defrost Arrow;12:Mild + Defrost Arrow;13:Feet + Mild + Defrost Arrow;14:Aerator + Mild + Defrost Arrow;15:Feet + Aerator + Mild + Defrost Arrow ,764,36,37,1,0,0,,213F,613F,ff,OH_ClimForcedRecyDisplay,0:No display;1:Recycling On;2:Recycling Off;3:Not used ,764,38,39,1,0,0,,213F,613F,ff,OH_ClimECOModeStatusDisplay,0:No Display;1:Activated;2:Not activated;3:Unavailable ,764,40,43,1,0,0,,213F,613F,ff,OH_BlowerLevelDisplay,0:No display;1:display 1 blades and fan symbol;2:display 2 blades and fan symbol;3:display 3 blades and fan symbol;4:display 4 blades and fan symbol;5:display 5 blades and fan symbol;6:display 6 blades and fan symbol;7:display 7 blades and fan symbol;8:display 8 blades and fan symbol;15:display the fan symbol only ,764,44,47,1,0,0,,213F,613F,ff,OH_ClimLastFuncModifiedByCustomer,0:No last action;1:Temperature;2:Not used;3:Rear Defrost;4:Clearness;5:Flow Distribution;6:Forced Recycling;7:Eco Button;8:Blower Level;9:Conso Button;10:Auto;11:AC Off ,764,48,49,1,0,0,,213F,613F,ff,OH_ClimMMIActivationRequest,0:Unavailable;1:No request;2:Request;3:Not used ,764,63,63,1,0,0,,213F,613F,ff,OH_ClimEcoLowSocDisplay,0:No Display;1:Display Request ,764,68,69,1,0,0,,213F,613F,ff,OH_ClimAutoDisplay,0:No Display;1:Auto activated;2:Auto not activated;3:Not used ,764,70,71,1,0,0,,213F,613F,ff,OH_ClimACOffDisplay,0:No Display;1:AC Off activated;2:AC Off Deactivated;3:Not used ,764,72,73,1,0,0,,213F,613F,ff,OH_ClimClearnessDisplay,0:No Display;1:Clearness ON;2:Clearness OFF;3:Not used ,764,16,23,1,0,0,,2140,6140,4ff,Supported Lid for RDBLID(41-48) ,764,24,31,1,0,0,,2140,6140,4ff,Supported Lid for RDBLID(49-50) ,764,32,39,1,0,0,,2140,6140,4ff,Supported Lid for RDBLID(51-58) ,764,40,47,1,0,0,,2140,6140,4ff,Supported Lid for RDBLID(59-60) ,764,16,23,25,0,0,W,2141,6141,ff,OH_ACCompPowerUsed_V2 ,764,25,25,1,0,0,,2141,6141,ff,OH_Blower_State,0:Blower fan OFF;1:Blower fan ON ,764,26,27,1,0,0,,2141,6141,ff,OH_ACCoolingFanSpeedRequest,0:No Request;1:Low Request;2:Mid Request;3:High Request ,764,28,29,1,0,0,,2141,6141,ff,OH_PumpActivationRequest,0:Unvailable Value;1:No Activation Requested;2:Activation Requested;3:Not Used ,764,30,31,1,0,0,,2141,6141,ff,OH_AC_StopAutoFobidden,0:Unvailable Value;1:Auto Stop forbidden;2:Auto Stop authorized;3:Not used ,764,32,35,1,0,0,,2141,6141,ff,OH_PTCNumberThermalReq,0:0 PTC requested;1:1 PTC requested;2:2 PTC requested;3:3 PTC requested;4:4 PTC requested;5:5 PTC requested;6:6 PTC requested;7:7 PTC requested;8:8 PTC requested;9:9 PTC requested;10:10 PTC requested;11:Not used;15:No Request ,764,36,39,50,-10,0,rpm,2141,6141,ff,OH_ACMinEngineIdleSpeedRequest ,764,40,43,.25,-46,1,V,2141,6141,ff,OH_MinimumVoltagebyAC ,764,44,44,1,0,0,,2141,6141,ff,OH_ACCompRequest,0:No AC Requested;1:AC Requested ,764,45,45,1,0,0,,2141,6141,ff,OH_ACCompClutchRequest,0:Compressor Not Requested;1:Compressor Requested ,764,46,46,1,0,0,,2141,6141,ff,OH_RearDefrostRequest,0:Not Requested;1:Requested ,764,52,52,1,0,0,,2141,6141,ff,OH_FrontDefrostRequest,0:Not Requested;1:Requested ,764,32,38,1,0,0,%,2142,6142,ff,OH_HighVoltagePTCRequestPWM ,764,52,53,1,0,0,,2142,6142,ff,OH_ClimPanelPCActivationRequest,0:No Request;1:Pre-heating time requested;2:Pre-heating OFF requested;3:Unavailable ,764,18,19,1,0,0,,2143,6143,ff,OH_ClimRearDefrostDisplay,0:No Display;1:Rear Defrost ON;2:Rear Defrost OFF;3:Not used ,764,20,22,1,0,0,,2143,6143,ff,OH_ClimModeTypeDisplay,0:No Display;1:Auto mode;2:Eco mode;3:Clearness mode;4:Manual mode;5:Off;6:Not used (110);7:Not used (111) ,764,24,31,1,0,0,,2143,6143,ff,OH_ClimTempDisplay,0:No display;1:Not used (01);2:All segment displayed;3:Not used (11);4:Display OF;5:Not used (101);6:Display --;8:Display LO;9:Not used (1001);10:Display HI;11:5-5;12:6;13:6-5;14:7;16:Not used (10000);17:18-5;18:Not used (10010);20:Real display;21:10-5;22:11;23:11-5;24:12;25:12-5;26:13;27:13-5;28:14;29:14-5;30:15;31:15-5;32:16;33:16-5;34:17;35:17-5;36:18;37:28-5;38:19;39:19-5;40:20;41:30-5;42:21;43:21-5;44:22;45:22-5;46:23;47:23-5;48:24;49:24-5;50:25;51:25-5;52:26;53:26-5;54:27;55:27-5;56:28;57:38-5;58:29;59:29-5;60:30 ,764,32,35,1,0,0,,2143,6143,ff,OH_ClimFlowDistrDisplay,0:No Display;1:Feet Arrow;2:Aerator Arrow;3:Feet + Aerator Arrow;4:Mild flow Arrow;5:Feet + Mild Arrow;6:Mild + Feet Arrow;7:Feet + Aerator Mild Arrow;8:Defrost Arrow;9:Feet + Defrost Arrow;10:Aerator + Defrost Arrow;11:Feet + Aerator + Defrost Arrow;12:Mild + Defrost Arrow;13:Feet + Mild + Defrost Arrow;14:Aerator + Mild + Defrost Arrow;15:Feet + Aerator + Mild + Defrost Arrow ,764,36,37,1,0,0,,2143,6143,ff,OH_ClimForcedRecyDisplay,0:No display;1:Recycling On;2:Recycling Off;3:Not used ,764,40,43,1,0,0,,2143,6143,ff,OH_ClimBlowerLevelDisplay,0:No display;1:Level 1;2:Level 2;3:Level 3;4:Level 4;5:Level 5;6:Level 6;7:Level 7;8:Level 8;9:Level 9;10:Level 10;11:Level 11;12:Level 12;13:Level 13;14:Level 14;15:Blower Off ,764,44,47,1,0,0,,2143,6143,ff,OH_ClimLastFuncModifiedByCustomer,0:No last action;1:Temperature;2:Not used;3:Rear Defrost;4:Clearness;5:Flow Distribution;6:Forced Recycling;7:Eco Button;8:Blower Level;9:Conso Button;10:Auto;11:AC Off ,764,48,49,1,0,0,,2143,6143,ff,OH_ClimMMIActivationRequest,0:Unavailable;1:No request;2:Request;3:Not used ,764,50,55,2,0,0,,2143,6143,ff,OH_ClimAQSIndicator ,764,56,61,1,0,0,,2143,6143,ff,OH_ClimAQMIoniserMaxTimerDisplay,0:No display;1:1 min;2:2 min;3:3 min;4:4 min;5:5 min;6:6 min;7:7 min;8:8 min;9:9 min;10:10 min;11:11 min;12:12 min;13:13 min;14:14 min;15:15 min;16:16 min;17:17 min;18:18 min;19:19 min;20:20 min;21:21 min;22:22 min;23:23 min;24:24 min;25:25 min;26:26 min;27:27 min;28:28 min;29:29 min;30:30 min;31:31 min;32:32 min;33:33 min;34:34 min;35:35 min;36:36 min;37:37 min;38:38 min;39:39 min;40:40 min;41:41 min;42:42 min;43:43 min;44:44 min;45:45 min;46:46 min;47:47 min;48:48 min;49:49 min;50:50 min;51:51 min;52:52 min;53:53 min;54:54 min;55:55 min;56:56 min;57:57 min;58:58 min;59:59 min;60:60 min;63:Infinite Time ,764,62,67,1,0,0,,2143,6143,ff,OH_ClimAQMIoniserTimerDisplay,0:No display;1:1 min;2:2 min;3:3 min;4:4 min;5:5 min;6:6 min;7:7 min;8:8 min;9:9 min;10:10 min;11:11 min;12:12 min;13:13 min;14:14 min;15:15 min;16:16 min;17:17 min;18:18 min;19:19 min;20:20 min;21:21 min;22:22 min;23:23 min;24:24 min;25:25 min;26:26 min;27:27 min;28:28 min;29:29 min;30:30 min;31:31 min;32:32 min;33:33 min;34:34 min;35:35 min;36:36 min;37:37 min;38:38 min;39:39 min;40:40 min;41:41 min;42:42 min;43:43 min;44:44 min;45:45 min;46:46 min;47:47 min;48:48 min;49:49 min;50:50 min;51:51 min;52:52 min;53:53 min;54:54 min;55:55 min;56:56 min;57:57 min;58:58 min;59:59 min;60:60 min;63:Infinite Time ,764,68,69,1,0,0,,2143,6143,ff,OH_ClimAutoDisplay,0:No Display;1:Auto activated;2:Auto not activated;3:Not used ,764,70,71,1,0,0,,2143,6143,ff,OH_ClimACOffDisplay,0:No Display;1:AC Off activated;2:AC Off Deactivated;3:Not used ,764,72,73,1,0,0,,2143,6143,ff,OH_ClimClearnessDisplay,0:No Display;1:Clearness ON;2:Clearness OFF;3:Not used ,764,74,74,1,0,0,,2143,6143,ff,OH_FrontDefrostDisplay,0:No front defrost display request;1:Front defrost display request ,764,76,77,1,0,0,,2143,6143,ff,OH_ZoneMenuDisplayReq,0:No Zone Menu Display Request;1:Rear Only Menu Display Request;2:Dual Only Menu Display Request;3:Rear + Dual Menu Display Request ,764,16,19,1,0,0,,2144,6144,ff,ILB_LeftTempReq,0:Unavailable;1:+3 Click;2:+2 Click;3:+1 Click;4:+0 Click;5:-1 Click;6:-2 Click;7:-3 Click;8:Not Used ,764,20,23,1,0,0,,2144,6144,ff,ILB_RightTempReq,0:Unavailable;1:+3 Click;2:+2 Click;3:+1 Click;4:+0 Click;5:-1 Click;6:-2 Click;7:-3 Click;8:Not Used ,764,24,27,1,0,0,,2144,6144,ff,ILB_BlowerLevelReq,0:Unavailable;1:+3 Click;2:+2 Click;3:+1 Click;4:+0 Click;5:-1 Click;6:-2 Click;7:-3 Click;8:Not Used ,764,28,31,1,0,0,,2144,6144,ff,ILB_FP_SliderRequest,0:No Request;1:Position 1;2:Position 2;3:Position 3;4:Position 4;5:Position 5;6:Position 6;7:Position 7;8:Position 8;9:Position 9;10:Position 10;11:Position 11;12:Position 12;13:Position 13;14:Position 14;15:Position 15 ,764,35,36,1,0,0,,2145,6145,ff,IH_ClimAQSActivationRequest,0:No request;1:Activation request;2:No activation request;3:Not used ,764,37,38,1,0,0,,2145,6145,ff,IH_IoniserAutoLaunchRequest,0:Unavailable;1:Activated;2:Not activated;3:Not used ,764,16,22,1,0,0,,2146,6146,ff,IH_FragranceActrPosition ,764,23,29,1,0,0,,2146,6146,ff,OH_FragranceActrReq ,764,30,45,1,0,0,,2146,6146,ff,ILW_FragranceActrPosition ,764,46,61,1,0,0,,2146,6146,ff,OLW_FragranceActrTarget ,764,62,62,1,0,0,,2146,6146,ff,OH_FragranceFanReq,0:Off;1:On ,764,63,64,1,0,0,,2146,6146,ff,OH_IonizerMode,0:Off;1:Clean;2:Relax ,764,68,68,1,0,0,,2146,6146,ff,OLW_IonizerSupply,0:output inactive;1:output active ,764,69,69,1,0,0,,2146,6146,ff,OLW_OnOffOutput_1,0:output inactive;1:output active ,764,16,23,1,0,0,,2147,6147,ff,CL_SolarSensorType,0:Not Configured;1:Local sensor Renault (type 1);2:Local sensor Nissan_CK (type 2);3:Local sensor Nissan_Valéo (type 3) ,764,16,23,1,0,0,,2149,6149,ff,PresetTemperatureCorrection ,764,24,24,1,0,0,,2149,6149,ff,Set_REC_Memory,0:Use memory for manual REC;1:Do not use memory for manual REC ,764,25,25,1,0,0,,2149,6149,ff,Set_FRE_Memory,0:Use memory for manual FRE;1:Do not use memory for manual FRE ,764,26,27,1,0,0,,2149,6149,ff,Set_air_transfer_condition,0:DEF door open when auto- DEF door closed when manual;1:DEF door open when auto- DEF door open when manual;2:DEF door closed when auto- DEF door open when manual;3:DEF door closed when auto- DEF door closed when manual ,764,32,39,1,0,0,,2149,6149,ff,Set_sensor_sensitivity_correction ,764,40,41,1,0,0,,2149,6149,ff,Set_operation_CAV_SW,0:Turn ON compressor when CAV SW is operated;1:Do not turn ON compressor when CAV SW is operated;2:Do not accept CAV SW operations when A/C SW is OFF;3:When CAV SW is operated compressor must be OFF ,764,96,97,1,0,0,,2149,6149,ff,Set_evaporator_temp_target,0:default;1:3°C;2:5°C;3:7°C ,764,16,23,1,0,0,,214B,614B,ff,KH_RemoteEnable,0:Enable (0);1:Disable (1) ,764,45,45,1,0,0,,214D,614D,ff,IH_ELAMP,0:Eco mode lamp OFF;1:Eco mode lamp ON ,764,42,43,1,0,0,,214E,614E,ff,IH_DriveMode_Status,0:Standard;1:ECO;2:Sports;3:Snow ,764,16,31,.01,0,2,km/h,214F,614F,ff,IH_VSP ,764,32,55,.1,0,1,km,214F,614F,ff,IH_DIS_TOTAL ,764,66,66,1,0,0,,214F,614F,ff,IH_Dis_Unit,0:Km;1:Miles ,764,16,16,1,0,0,,2150,6150,ff,VL_AnalogInput_3DefType1FP,0:False;1:True ,764,17,17,1,0,0,,2150,6150,ff,VL_AnalogInput_3DefType2FP,0:False;1:True ,764,18,18,1,0,0,,2150,6150,ff,VL_OnOffOutput_2DefType1FP,0:False;1:True ,764,19,19,1,0,0,,2150,6150,ff,VL_OnOffOutput_2DefType2FP,0:False;1:True ,764,20,20,1,0,0,,2150,6150,ff,VL_AnalogInput_4DefType1FP,0:False;1:True ,764,21,21,1,0,0,,2150,6150,ff,VL_AnalogInput_4DefType2FP,0:False;1:True ,764,22,22,1,0,0,,2150,6150,ff,VL_AnalogInput_5DefType1FP,0:False;1:True ,764,23,23,1,0,0,,2150,6150,ff,VL_AnalogInput_5DefType2FP,0:False;1:True ,764,24,24,1,0,0,,2150,6150,ff,VL_AnalogInput_2DefType1FP,0:False;1:True ,764,25,25,1,0,0,,2150,6150,ff,VL_AnalogInput_2DefType2FP,0:False;1:True ,764,26,26,1,0,0,,2150,6150,ff,VL_AQS_PWMDiag_SCFP,0:False;1:True ,764,27,27,1,0,0,,2150,6150,ff,VL_AQS_PWMDiag_OCFP,0:False;1:True ,764,28,28,1,0,0,,2150,6150,ff,VL_PWMOutput_6DefType1FP,0:False;1:True ,764,29,29,1,0,0,,2150,6150,ff,VL_PWMOutput_6DefType2FP,0:False;1:True ,764,30,30,1,0,0,,2150,6150,ff,VL_Motor1ActrDiag_OCFP,0:False;1:True ,764,31,31,1,0,0,,2150,6150,ff,VL_Motor1ActrDiag_SCFP,0:False;1:True ,764,32,32,1,0,0,,2150,6150,ff,VL_Motor2ActrDiag_OCFP,0:False;1:True ,764,33,33,1,0,0,,2150,6150,ff,VL_Motor2ActrDiag_SCFP,0:False;1:True ,764,34,34,1,0,0,,2150,6150,ff,VL_Motor3ActrDiag_OCFP,0:False;1:True ,764,35,35,1,0,0,,2150,6150,ff,VL_Motor3ActrDiag_SCFP,0:False;1:True ,764,36,36,1,0,0,,2150,6150,ff,VL_Motor4ActrDiag_OCFP,0:False;1:True ,764,37,37,1,0,0,,2150,6150,ff,VL_Motor4ActrDiag_SCFP,0:False;1:True ,764,38,38,1,0,0,,2150,6150,ff,VL_Motor5ActrDiag_OCFP,0:False;1:True ,764,39,39,1,0,0,,2150,6150,ff,VL_Motor5ActrDiag_SCFP,0:False;1:True ,764,40,40,1,0,0,,2150,6150,ff,VL_Motor6ActrDiag_OCFP,0:False;1:True ,764,41,41,1,0,0,,2150,6150,ff,VL_Motor6ActrDiag_SCFP,0:False;1:True ,764,42,42,1,0,0,,2150,6150,ff,VL_PWMOutput_4DefType1FP,0:False;1:True ,764,43,43,1,0,0,,2150,6150,ff,VL_PWMOutput_4DefType2FP,0:False;1:True ,764,44,44,1,0,0,,2150,6150,ff,VL_OnOffOutput_3DefType1FP,0:False;1:True ,764,45,45,1,0,0,,2150,6150,ff,VL_OnOffOutput_3DefType2FP,0:False;1:True ,764,46,46,1,0,0,,2150,6150,ff,VL_OnOffOutput_4DefType1FP,0:False;1:True ,764,47,47,1,0,0,,2150,6150,ff,VL_OnOffOutput_4DefType2FP,0:False;1:True ,764,48,48,1,0,0,,2150,6150,ff,VL_PWMOutput_1DefType1FP,0:False;1:True ,764,49,49,1,0,0,,2150,6150,ff,VL_PWMOutput_1DefType2FP,0:False;1:True ,764,50,50,1,0,0,,2150,6150,ff,VL_PWMOutput_2DefType1FP,0:False;1:True ,764,51,51,1,0,0,,2150,6150,ff,VL_PWMOutput_2DefType2FP,0:False;1:True ,764,52,52,1,0,0,,2150,6150,ff,VL_PWMOutput_3DefType1FP,0:False;1:True ,764,53,53,1,0,0,,2150,6150,ff,VL_PWMOutput_3DefType2FP,0:False;1:True ,764,54,54,1,0,0,,2150,6150,ff,VL_OnOffOutput_1DefType1FP,0:False;1:True ,764,55,55,1,0,0,,2150,6150,ff,VL_OnOffOutput_1DefType2FP,0:False;1:True ,764,56,56,1,0,0,,2150,6150,ff,VL_PWMOutput_5DefType1FP,0:False;1:True ,764,57,57,1,0,0,,2150,6150,ff,VL_PWMOutput_5DefType2FP,0:False;1:True ,764,58,58,1,0,0,,2150,6150,ff,VL_CPComDiag_DCFP,0:False;1:True ,764,59,59,1,0,0,,2150,6150,ff,VL_AnalogInput_6DefType1FP,0:False;1:True ,764,60,60,1,0,0,,2150,6150,ff,VL_AnalogInput_6DefType2FP,0:False;1:True ,764,61,61,1,0,0,,2150,6150,ff,VL_CANComDiag_ERFP,0:False;1:True ,764,62,62,1,0,0,,2150,6150,ff,VL_CAN_SelfDiag_ErFP,0:False;1:True ,764,63,63,1,0,0,,2150,6150,ff,VL_BlowerComDiag_DCFP,0:False;1:True ,764,16,16,1,0,0,,2151,6151,ff,VL_AnalogInput_3DefType1FM,0:False;1:True ,764,17,17,1,0,0,,2151,6151,ff,VL_AnalogInput_3DefType2FM,0:False;1:True ,764,18,18,1,0,0,,2151,6151,ff,VL_OnOffOutput_2DefType1FM,0:False;1:True ,764,19,19,1,0,0,,2151,6151,ff,VL_OnOffOutput_2DefType2FM,0:False;1:True ,764,20,20,1,0,0,,2151,6151,ff,VL_AnalogInput_4DefType1FM,0:False;1:True ,764,21,21,1,0,0,,2151,6151,ff,VL_AnalogInput_4DefType2FM,0:False;1:True ,764,22,22,1,0,0,,2151,6151,ff,VL_AnalogInput_5DefType1FM,0:False;1:True ,764,23,23,1,0,0,,2151,6151,ff,VL_AnalogInput_5DefType2FM,0:False;1:True ,764,24,24,1,0,0,,2151,6151,ff,VL_AnalogInput_2DefType1FM,0:False;1:True ,764,25,25,1,0,0,,2151,6151,ff,VL_AnalogInput_2DefType2FM,0:False;1:True ,764,26,26,1,0,0,,2151,6151,ff,VL_AQS_PWMDiag_SCFM,0:False;1:True ,764,27,27,1,0,0,,2151,6151,ff,VL_AQS_PWMDiag_OCFM,0:False;1:True ,764,28,28,1,0,0,,2151,6151,ff,VL_PWMOutput_6DefType1FM,0:False;1:True ,764,29,29,1,0,0,,2151,6151,ff,VL_PWMOutput_6DefType2FM,0:False;1:True ,764,30,30,1,0,0,,2151,6151,ff,VL_Motor1ActrDiag_OCFM,0:False;1:True ,764,31,31,1,0,0,,2151,6151,ff,VL_Motor1ActrDiag_SCFM,0:False;1:True ,764,32,32,1,0,0,,2151,6151,ff,VL_Motor2ActrDiag_OCFM,0:False;1:True ,764,33,33,1,0,0,,2151,6151,ff,VL_Motor2ActrDiag_SCFM,0:False;1:True ,764,34,34,1,0,0,,2151,6151,ff,VL_Motor3ActrDiag_OCFM,0:False;1:True ,764,35,35,1,0,0,,2151,6151,ff,VL_Motor3ActrDiag_SCFM,0:False;1:True ,764,36,36,1,0,0,,2151,6151,ff,VL_Motor4ActrDiag_OCFM,0:False;1:True ,764,37,37,1,0,0,,2151,6151,ff,VL_Motor4ActrDiag_SCFM,0:False;1:True ,764,38,38,1,0,0,,2151,6151,ff,VL_Motor5ActrDiag_OCFM,0:False;1:True ,764,39,39,1,0,0,,2151,6151,ff,VL_Motor5ActrDiag_SCFM,0:False;1:True ,764,40,40,1,0,0,,2151,6151,ff,VL_Motor6ActrDiag_OCFM,0:False;1:True ,764,41,41,1,0,0,,2151,6151,ff,VL_Motor6ActrDiag_SCFM,0:False;1:True ,764,42,42,1,0,0,,2151,6151,ff,VL_PWMOutput_4DefType1FM,0:False;1:True ,764,43,43,1,0,0,,2151,6151,ff,VL_PWMOutput_4DefType2FM,0:False;1:True ,764,44,44,1,0,0,,2151,6151,ff,VL_OnOffOutput_3DefType1FM,0:False;1:True ,764,45,45,1,0,0,,2151,6151,ff,VL_OnOffOutput_3DefType2FM,0:False;1:True ,764,46,46,1,0,0,,2151,6151,ff,VL_OnOffOutput_4DefType1FM,0:False;1:True ,764,47,47,1,0,0,,2151,6151,ff,VL_OnOffOutput_4DefType2FM,0:False;1:True ,764,48,48,1,0,0,,2151,6151,ff,VL_PWMOutput_1DefType1FM,0:False;1:True ,764,49,49,1,0,0,,2151,6151,ff,VL_PWMOutput_1DefType2FM,0:False;1:True ,764,50,50,1,0,0,,2151,6151,ff,VL_PWMOutput_2DefType1FM,0:False;1:True ,764,51,51,1,0,0,,2151,6151,ff,VL_PWMOutput_2DefType2FM,0:False;1:True ,764,52,52,1,0,0,,2151,6151,ff,VL_PWMOutput_3DefType1FM,0:False;1:True ,764,53,53,1,0,0,,2151,6151,ff,VL_PWMOutput_3DefType2FM,0:False;1:True ,764,54,54,1,0,0,,2151,6151,ff,VL_OnOffOutput_1DefType1FM,0:False;1:True ,764,55,55,1,0,0,,2151,6151,ff,VL_OnOffOutput_1DefType2FM,0:False;1:True ,764,56,56,1,0,0,,2151,6151,ff,VL_PWMOutput_5DefType1FM,0:False;1:True ,764,57,57,1,0,0,,2151,6151,ff,VL_PWMOutput_5DefType2FM,0:False;1:True ,764,58,58,1,0,0,,2151,6151,ff,VL_CPComDiag_DCFM,0:False;1:True ,764,59,59,1,0,0,,2151,6151,ff,VL_AnalogInput_6DefType1FM,0:False;1:True ,764,60,60,1,0,0,,2151,6151,ff,VL_AnalogInput_6DefType2FM,0:False;1:True ,764,61,61,1,0,0,,2151,6151,ff,VL_CANComDiag_ERFM,0:False;1:True ,764,62,62,1,0,0,,2151,6151,ff,VL_CAN_SelfDiag_ErFM,0:False;1:True ,764,63,63,1,0,0,,2151,6151,ff,VL_BlowerComDiag_DCFM,0:False;1:True ,764,16,16,1,0,0,,2152,6152,ff,IH_BlowerState,0:No fan;1:Fan ,764,17,17,1,0,0,,2152,6152,ff,IH_BlowerDefault,0:No Blower failure;1:Blower failure ,764,18,25,.5,0,1,%,2152,6152,ff,IH_BlowerVoltRatio ,764,26,35,.1,400,1,°C,2152,6152,ff,IH_EvapTemp ,764,36,45,.1,400,1,°C,2152,6152,ff,IH_InCarTemp ,764,51,66,.0048828125,0,3,mV,2152,6152,ff,IH_OxydantRatio ,764,67,82,.0048828125,0,3,mV,2152,6152,ff,IH_ReductorRatio ,764,83,90,.5,0,1,%,2152,6152,ff,IH_RHumidity ,764,91,98,.1,0,1,V,2152,6152,ff,IH_Vbatt ,764,99,109,.1,400,1,°C,2152,6152,ff,IH_HotSourceTemp ,764,110,116,.1,0,1,A,2152,6152,ff,IH_ACCompValveCurrent ,764,117,117,1,0,0,,2152,6152,ff,IH_BattBlowerState,0:No fan;1:Fan ,764,118,118,1,0,0,,2152,6152,ff,IH_BattBlowerDefault,0:No Battery Blower failure;1:Battery Blower failure ,764,119,126,.5,0,1,%,2152,6152,ff,IH_BattBlowerVoltRatio ,764,127,127,1,0,0,,2152,6152,ff,IH_Rear_Switch,0:Rear Off;1:Rear On ,764,128,132,5,0,0,%,2152,6152,ff,IH_AQS_PWM ,764,133,140,5,0,0,W/m²,2152,6152,ff,IH_LeftSolarLevelN ,764,141,141,1,0,0,,2152,6152,ff,IH_HeatSeatRearRightCmd,0:Heating Off;1:Heating On ,764,142,142,1,0,0,,2152,6152,ff,IH_HeatSeatFrontLeftReq,0:Heating Off;1:Heating On ,764,143,143,1,0,0,,2152,6152,ff,IH_HeatSeatFrontRightReq,0:Heating Off;1:Heating On ,764,144,144,1,0,0,,2152,6152,ff,IH_HeatSeatRearLeftCmd,0:Heating Off;1:Heating On ,764,145,152,1,0,0,%,2152,6152,ff,OH_BlowerReq ,764,153,160,1,0,0,%,2152,6152,ff,OH_BattBlowerReq ,764,161,161,1,0,0,,2152,6152,ff,OH_BattBlowerRelayReq,0:Off;1:On ,764,162,168,1,0,0,%,2152,6152,ff,OH_ACCompValveCommand ,764,169,169,1,0,0,,2152,6152,ff,OH_CabinValveRequest,0:Off;1:On ,764,170,170,1,0,0,,2152,6152,ff,OH_CoolingValveRequest,0:Off;1:On ,764,171,178,.5,0,1,%,2152,6152,ff,OH_HotAirBlowerReq ,764,179,179,1,0,0,,2152,6152,ff,OH_WindshieldHeating1Req,0:Off;1:On ,764,180,187,.5,0,1,%,2152,6152,ff,OH_ColdAirBlowerReq ,764,188,188,1,0,0,,2152,6152,ff,OH_WindshieldHeating2Req,0:Off;1:On ,764,189,189,1,0,0,,2152,6152,ff,OH_HeatSeatFrontLeftCmd,0:Off;1:On ,764,190,190,1,0,0,,2152,6152,ff,OH_HeatSeatFrontRightCmd,0:Off;1:On ,764,191,191,1,0,0,,2152,6152,ff,OH_HeatSeatFrontLeftIndic,0:Off;1:On ,764,192,192,1,0,0,,2152,6152,ff,OH_HeatSeatFrontRightIndic,0:Off;1:On ,764,193,198,1,0,0,,2152,6152,ff,IH_RearBlowerRotaryState ,764,199,199,1,0,0,,2152,6152,ff,IH_RearFastMode,0:means auto fast mode off;1:means auto fast mode on ,764,200,200,1,0,0,,2152,6152,ff,IH_RearOffMode,0:means rear off mode not activated;1:means rear off mode activated ,764,201,201,1,0,0,,2152,6152,ff,IH_RearAutoMode,0:means auto mode off;1:means auto mode on ,764,202,205,1,0,0,,2152,6152,ff,IH_RearBlowerLevelReq,0:No Request;1:Level 1;2:Level 2;3:Level 3;4:Level 4;5:Level 5;6:Level 6;7:Level 7;8:Level 8;9:Level 9;10:Level 10;11:Level 11;12:Level 12;13:Level 13;14:Level 14;15:Off ,764,206,206,1,0,0,,2152,6152,ff,IH_RearBlowerState,0:No fan;1:Fan ,764,207,207,1,0,0,,2152,6152,ff,IH_RearBlowerDefault,0:No Rear Blower failure;1:Rear Blower failure ,764,208,215,.5,0,1,%,2152,6152,ff,IH_RearBlowerVoltRatio ,764,216,222,1,0,0,%,2152,6152,ff,OH_RearBlowerReq ,764,223,224,1,0,0,,2152,6152,ff,OH_RearActrScalingReq,0:00 (Transition to 1 or 3) - auto-indexing CCW;1:01 (Transition to 0 or 2) - auto-indexing CW;2:10 (Transition to 1 or 3) - auto-indexing CCW;3:11 (Transition to 0 or 2) - auto-indexing CW ,764,225,231,1,0,0,,2152,6152,ff,OH_RearMixActrReq ,764,232,238,1,0,0,,2152,6152,ff,IH_RearMixActrPosition ,764,239,248,.1,400,1,°C,2152,6152,ff,IH_RearBlowedAirTemp ,764,249,249,1,0,0,,2152,6152,ff,OH_RearOnOffIndic,0:Off;1:On ,764,255,255,1,0,0,,2152,6152,ff,IH_BoilerFeedback,0:Inactive;1:Active ,764,256,256,1,0,0,,2152,6152,ff,OH_Boiler_Cde,0:Off;1:On ,764,257,257,1,0,0,,2152,6152,ff,OH_WipersHeating_Cde,0:Off;1:On ,764,259,261,1,0,0,,2152,6152,ff,IH_VehicleStateForClim,0:Sleeping;1:CutOffPending;2:BatTempoLevel;3:Blower_Available;4:Starting_In_Progress;5:Engine_Running;6:Not_Used;7:Unavailable ,764,262,263,1,0,0,,2152,6152,ff,IH_FrontWiperStatus,0:Unavailable;1:Wiper_Off;2:Wiper_On;3:Not_Used ,764,17,23,1,0,0,,2153,6153,ff,IH_FeetVentActrPosition ,764,25,31,1,0,0,,2153,6153,ff,IH_LeftMixActrPosition ,764,33,39,1,0,0,,2153,6153,ff,IH_RecyActrPosition ,764,41,47,1,0,0,,2153,6153,ff,IH_RightMixActrPosition ,764,49,55,1,0,0,,2153,6153,ff,IH_DefActrPosition ,764,57,63,1,0,0,,2153,6153,ff,IH_ReserveActrPosition ,764,65,71,1,0,0,,2153,6153,ff,OH_FeetVentActrReq ,764,73,79,1,0,0,,2153,6153,ff,OH_LeftMixActrReq ,764,81,87,1,0,0,,2153,6153,ff,OH_RecyActrReq ,764,89,95,1,0,0,,2153,6153,ff,OH_RightMixActrReq ,764,97,103,1,0,0,,2153,6153,ff,OH_DefActrReq ,764,105,111,1,0,0,,2153,6153,ff,OH_ReserveActrReq ,764,121,127,1,0,0,,2153,6153,ff,IH_RearMixActrPosition ,764,137,143,1,0,0,,2153,6153,ff,OH_RearMixActrReq ,764,16,31,1,0,0,,2154,6154,ff,ILW_Motor1ActrPosition ,764,32,47,1,0,0,,2154,6154,ff,ILW_Motor2ActrPosition ,764,48,63,1,0,0,,2154,6154,ff,ILW_Motor3ActrPosition ,764,64,79,1,0,0,,2154,6154,ff,ILW_Motor4ActrPosition ,764,80,95,1,0,0,,2154,6154,ff,ILW_Motor5ActrPosition ,764,96,111,1,0,0,,2154,6154,ff,ILW_Motor6ActrPosition ,764,19,21,1,0,0,,2155,6155,ff,IH_UserIdentification,0:Undefined user;1:User n°1;2:User n°2;3:User n°3;4:User n°4 ,764,37,37,1,0,0,,2155,6155,ff,IH_PTCThermalRegulatorFreeze,0:Not requested;1:Freeze requested ,764,20,20,1,0,0,,2156,6156,ff,IH_DiagMuxOn_BCM,0:counting and storing CAN mute/absent failure masked;1:counting and storing CAN mute/absent failure not masked ,764,35,39,100,0,0,W,2156,6156,ff,IH_ElectricalPowerDrived ,764,48,49,1,0,0,,2156,6156,ff,ILN_GenericApplicativeDiagEnable,0:Diag frozen;1:Diag enabled (01);2:Diag enabled (10);3:Unavailable Value ,764,69,71,1,0,0,,2156,6156,ff,IH_VehicleActivationState,0:Vehicle Electrically Asleep;1:BatTempoLevel;2:Ignition ON (Engine Ready To Start);3:Initial Starting in Progress;4:Driving State;5:Not Used (101);6:Not Used (110);7:Unavailable ,764,22,22,1,0,0,,2157,6157,ff,CAN_RX_BCM_CANHS_R_04.IH_VehicleOutsideLockedToggle,0:VehicleNotLockedFromOutside;1:VehicleLockedFromOutside ,764,24,25,1,0,0,,2157,6157,ff,IH_SupposedCustomerDeparture,0:Event 0;1:Event 1;2:Event 2;3:Unavailable ,764,34,35,1,0,0,,2157,6157,ff,IH_EcoModeRequest,0:Unavailable Value;1:Eco mode requested;2:Eco mode not requested;3:Not used ,764,16,39,1,0,0,min,2158,6158,ff,IH_AbsoluteTimeSinceFirstIgnition ,764,16,39,1,0,0,,2159,6159,ff,IH_DistanceTotalizer ,764,24,31,1,40,0,°C,215A,615A,ff,IH_ExternalTemp ,764,32,39,.4,0,1,%,215A,615A,ff,IH_NightRheostatedLightMaxPercent ,764,62,62,1,0,0,,215A,615A,ff,IH_DayNightStatus,0:Day time;1:Night time ,764,23,31,.1,0,1,bar,215B,615B,ff,IH_ACHighPressureSensor ,764,32,33,1,0,0,,215B,615B,ff,IH_EngineStatus_R,0:Engine Stopped;1:Not used - Reserved;2:running engine;3:Running-engine driven ,764,34,37,1,0,0,,215B,615B,ff,IH_EngineStopOrigine,0:No stop request;1:Stopped by other causes;2:Stopped by normal request;3:Value not defined (0011);4:Stopped by driver request;5:Value not defined (0101);6:Value not defined (0110);7:Value not defined (0111);8:Stopped by emergency request;9:Value not defined (1001);10:Value not defined (1010);11:Value not defined (1011);12:Value not defined (1100);13:Value not defined (1101);14:Value not defined (1110);15:Value not defined (1111) ,764,48,48,1,0,0,,215B,615B,ff,IH_ACCompAuthorized,0:AC not Authorized;1:AC Authorized ,764,56,60,3.22,0,0,,215B,615B,ff,IH_AlternatorLoad ,764,61,61,1,0,0,,215B,615B,ff,IH_StopAutoForClim,0:Vehicle not in automatic state;1:Vehicle in automatic state ,764,72,79,25,0,0,W,215B,615B,ff,IH_ACMaxCompPowerAllowed ,764,16,23,1,40,0,°C,215C,615C,ff,IH_EngineCoolantTemp ,764,42,43,1,0,0,,215C,615C,ff,IH_EngineCoolantFlowStatus,0:Unavailable Value;1:No Engine Coolant Flow;2:Engine Coolant Flow;3:Not used ,764,16,16,1,0,0,,215E,615E,ff,IH_AC_OnPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,17,17,1,0,0,,215E,615E,ff,IH_AutoNormalPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,18,18,1,0,0,,215E,615E,ff,IH_ClearnessPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,19,19,1,0,0,,215E,615E,ff,IH_DistDegiMildPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,20,20,1,0,0,,215E,615E,ff,IH_DistFeetPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,21,21,1,0,0,,215E,615E,ff,IH_DistMildFlowPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,22,22,1,0,0,,215E,615E,ff,IH_DistVentPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,23,23,1,0,0,,215E,615E,ff,IH_ForcedRecyPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,24,24,1,0,0,,215E,615E,ff,IH_ModeOffPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,25,25,1,0,0,,215E,615E,ff,IH_RecyAutoPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,26,26,1,0,0,,215E,615E,ff,IH_AutoFastPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,27,27,1,0,0,,215E,615E,ff,IH_AutoSoftPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,28,28,1,0,0,,215E,615E,ff,IH_DualModePushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,29,29,1,0,0,,215E,615E,ff,IH_RearDefPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,30,30,1,0,0,,215E,615E,ff,IH_RearPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,31,31,1,0,0,,215E,615E,ff,IH_ClimFrontDeFrostPush,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,32,35,1,0,0,,215E,615E,ff,IH_ClimFPBlowerRequest,0:No Request;1:Level 1;2:Level 2;3:Level 3;4:Level 4;5:Level 5;6:Level 6;7:Level 7;8:Level 8;9:Level 9;10:Level 10;11:Level 11;12:Level 12;13:Level 13;14:Level 14;15:Blower OFF ,764,36,39,1,0,0,,215E,615E,ff,IH_AQMFragIntensityRequest,0:No request;1:No intensity/Not used;2:intensity 1;3:intensity 2;4:intensity 3;5:intensity 4;6:intensity 5;7:intensity 6;8:intensity 7 ,764,40,47,.5,-20,1,°,215E,615E,ff,IH_LeftTempRequest ,764,48,55,.5,-20,1,°,215E,615E,ff,IH_RightTempRequest ,764,56,58,1,0,0,,215E,615E,ff,IH_AQMFragSelectRequest,0:No request;1:Fragrance 1;2:Fragrance 2;3:Off;7:Auto ,764,59,60,1,0,0,,215E,615E,ff,IH_AQMIoniserModeSelectionReq,0:No request;1:Off;2:Clean;3:Relax ,764,16,16,1,0,0,,215F,615F,ff,IH_DistDnLongPushState,0:no long push detected;1:long push detected ,764,17,17,1,0,0,,215F,615F,ff,IH_DistDnPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,18,18,1,0,0,,215F,615F,ff,IH_DistUpLongPushState,0:no long push detected;1:long push detected ,764,19,19,1,0,0,,215F,615F,ff,IH_DistUpPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,20,20,1,0,0,,215F,615F,ff,IH_DistMildFlowLongPushState,0:no long push detected;1:long push detected ,764,21,21,1,0,0,,215F,615F,ff,IH_DistMildFlowPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,22,22,1,0,0,,215F,615F,ff,IH_AC_OnLongPushState,0:no long push detected;1:long push detected ,764,23,23,1,0,0,,215F,615F,ff,IH_AC_OnPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,24,27,1,0,0,,215F,615F,ff,IH_LeftTempReq,0:Unavailable;1:+3 Click;2:+2 Click;3:+1 Click;4:+0 Click;5:-1 Click;6:-2 Click;7:-3 Click;8:Not used(1000);9:Not used(1001);10:Not used(1010);11:Not used(1011);12:Not used(1100);13:Not used(1101);14:Not used(1110);15:Not used(11111) ,764,28,31,1,0,0,,215F,615F,ff,IH_RightTempReq,0:Unavailable;1:+3 Click;2:+2 Click;3:+1 Click;4:+0 Click;5:-1 Click;6:-2 Click;7:-3 Click;8:Not used(1000);9:Not used(1001);10:Not used(1010);11:Not used(1011);12:Not used(1100);13:Not used(1101);14:Not used(1110);15:Not used(11111) ,764,32,35,1,0,0,,215F,615F,ff,IH_BlowerLevelReq,0:Unavailable;1:+3 Click;2:+2 Click;3:+1 Click;4:+0 Click;5:-1 Click;6:-2 Click;7:-3 Click;8:Not used(1000);9:Not used(1001);10:Not used(1010);11:Not used(1011);12:Not used(1100);13:Not used(1101);14:Not used(1110);15:Not used(11111) ,764,36,36,1,0,0,,215F,615F,ff,OH_ACIndic,0:Indic Off;1:Indic On ,764,37,37,1,0,0,,215F,615F,ff,OH_AirQualityIndic,0:Indic Off;1:Indic On ,764,38,38,1,0,0,,215F,615F,ff,OH_AutoFastIndic,0:Indic Off;1:Indic On ,764,39,39,1,0,0,,215F,615F,ff,OH_AutoNormalIndic,0:Indic Off;1:Indic On ,764,40,40,1,0,0,,215F,615F,ff,OH_AutoSoftIndic,0:Indic Off;1:Indic On ,764,41,41,1,0,0,,215F,615F,ff,OH_ClearnessIndic,0:Indic Off;1:Indic On ,764,42,42,1,0,0,,215F,615F,ff,OH_DistDegiMildIndic,0:Indic Off;1:Indic On ,764,43,43,1,0,0,,215F,615F,ff,OH_DistFeetIndic,0:Indic Off;1:Indic On ,764,44,44,1,0,0,,215F,615F,ff,OH_DistVentIndic,0:Indic Off;1:Indic On ,764,45,45,1,0,0,,215F,615F,ff,OH_DualModeIndic,0:Indic Off;1:Indic On ,764,46,46,1,0,0,,215F,615F,ff,OH_ForcedFreshAirIndic,0:Indic Off;1:Indic On ,764,47,47,1,0,0,,215F,615F,ff,OH_ForcedRecyIndic,0:Indic Off;1:Indic On ,764,48,48,1,0,0,,215F,615F,ff,OH_ModeOffIndic,0:Indic Off;1:Indic On ,764,49,49,1,0,0,,215F,615F,ff,OH_RearControlIndic,0:Indic Off;1:Indic On ,764,50,50,1,0,0,,215F,615F,ff,OH_RearDefIndic,0:Indic Off;1:Indic On ,764,51,51,1,0,0,,215F,615F,ff,OH_RecyIndic,0:Indic Off;1:Indic On ,764,52,52,1,0,0,,215F,615F,ff,OH_DayNightStatus,0:day;1:night ,764,53,53,1,0,0,,215F,615F,ff,OH_FP_MMITempUnit,0:Celsius;1:Farenheit ,764,54,57,1,0,0,,215F,615F,ff,OH_FP_RightTempByLEDs,0:No display;1:Display indicator 1;2:Display indicator 2;3:Display indicator 3;4:Display indicator 4;5:Display indicator 5;6:Display indicator 6;7:Display indicator 7;8:Display indicator 8;9:Display indicator 9;10:Display indicator 10;11:Display indicator 11;12:Display indicator 12;13:Display indicator 13;14:Display indicator 14;15:Display indicator 15 ,764,58,58,1,0,0,,215F,615F,ff,OH_DistMildFlowIndic,0:Indic Off;1:Indic On ,764,59,59,1,0,0,,215F,615F,ff,OH_AC_OnIndic,0:Indic Off;1:Indic On ,764,60,63,1,0,0,,215F,615F,ff,OH_ClimFlowDistrDisplay,0:No Display;1:Feet Arrow;2:Aerator Arrow;3:Feet + Aerator Arrow;4:Mild flow Arrow;5:Feet + Mild Arrow;6:Mild + Feet Arrow;7:Feet + Aerator Mild Arrow;8:Defrost Arrow;9:Feet + Defrost Arrow;10:Aerator + Defrost Arrow;11:Feet + Aerator + Defrost Arrow;12:Mild + Defrost Arrow;13:Feet + Mild + Defrost Arrow;14:Aerator + Mild + Defrost Arrow;15:Feet + Aerator + Mild + Defrost Arrow ,764,64,67,1,0,0,,215F,615F,ff,IH_FP_SliderTempReq,0:No Request;1:Position 1;2:Position 2;3:Position 3;4:Position 4;5:Position 5;6:Position 6;7:Position 7;8:Position 8;9:Position 9;10:Position 10;11:Position 11;12:Position 12;13:Position 13;14:Position 14;15:Position 15 ,764,68,68,1,0,0,,215F,615F,ff,IH_DistribModeLongPushState,0:no long push detected;1:long push detected ,764,69,69,1,0,0,,215F,615F,ff,IH_DistribModePushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,70,70,1,0,0,,215F,615F,ff,IH_RearDualMenuLongPushState,0:no long push detected;1:long push detected ,764,71,71,1,0,0,,215F,615F,ff,IH_RearDualMenuPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,72,72,1,0,0,,215F,615F,ff,IH_BlowerMinPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,73,73,1,0,0,,215F,615F,ff,IH_BlowerMaxPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,74,74,1,0,0,,215F,615F,ff,IH_BlowerMinLongPushState,0:no long push detected;1:long push detected ,764,75,75,1,0,0,,215F,615F,ff,IH_BlowerMaxLongPushState,0:no long push detected;1:long push detected ,764,76,82,1,0,0,%,215F,615F,ff,OH_BackLightDimming2 ,764,83,87,5,0,0,%,215F,615F,ff,OH_IndicDimming2 ,764,88,94,1,0,0,%,215F,615F,ff,OH_ScreenDimming2 ,764,95,95,1,0,0,,215F,615F,ff,OH_EcoHighModeIndic,0:Indic Off;1:Indic On ,764,96,96,1,0,0,,215F,615F,ff,OH_EcoLowModeIndic,0:Indic Off;1:Indic On ,764,97,97,1,0,0,,215F,615F,ff,OH_PreConditioningIndic,0:Indic Off;1:Indic On ,764,98,98,1,0,0,,215F,615F,ff,OH_SliderDisplayMode,0:No display;1:Display Blower ,764,99,99,1,0,0,,215F,615F,ff,OH_SliderTempIndic,0:Indic Off;1:Indic On ,764,100,103,1,0,0,,215F,615F,ff,IH_ClimFPBlowerRequest,0:No Request;1:Level 1;2:Level 2;3:Level 3;4:Level 4;5:Level 5;6:Level 6;7:Level 7;8:Level 8;9:Level 9;10:Level 10;11:Level 11;12:Level 12;13:Level 13;14:Level 14;15:Blower OFF ,764,104,104,1,0,0,,215F,615F,ff,OH_IgnitionState,0:before ignition (off or AUTO ACC);1:Ignition ,764,105,105,1,0,0,,215F,615F,ff,OH_HFS_Left,0:HFS Left OFF;1:HFS Left ON ,764,106,106,1,0,0,,215F,615F,ff,OH_HFS_Right,0:HFS Right OFF;1:HFS Right ON ,764,107,109,1,0,0,,215F,615F,ff,IH_AQMFragSelectRequest,0:No request;1:Fragrance 1;2:Fragrance 2;3:Off;7:Auto ,764,110,111,1,0,0,,215F,615F,ff,IH_AQMIoniserModeSelectionReq,0:No request;1:Off;2:Clean;3:Relax ,764,112,115,1,0,0,,215F,615F,ff,IH_AQMFragIntensityRequest,0:No request;1:No intensity/Not used;2:intensity 1;3:intensity 2;4:intensity 3;5:intensity 4;6:intensity 5;7:intensity 6;8:intensity 7 ,764,116,119,1,0,0,,215F,615F,ff,OH_AQMFragIntensityState,0:Unavailable;1:No intensity;2:intensity 1;3:intensity 2;4:intensity 3;5:intensity 4;6:intensity 5;7:intensity 6;8:intensity 7 ,764,120,122,1,0,0,,215F,615F,ff,OH_AQMFragSelectState,0:Unavailable;1:Fragrance 1;2:Fragrance 2;3:Off;7:Auto ,764,123,125,1,0,0,,215F,615F,ff,OH_AQMIoniserModeState,0:Unavailable;1:Off;2:Clean;3:Relax;4:Refused ,764,16,23,1,0,0,,2160,6160,4ff,Supported Lid for RDBLID(61-68) ,764,24,31,1,0,0,,2160,6160,4ff,Supported Lid for RDBLID(69-70) ,764,32,39,1,0,0,,2160,6160,4ff,Supported Lid for RDBLID(71-78) ,764,40,47,1,0,0,,2160,6160,4ff,Supported Lid for RDBLID(79-80) ,764,16,22,1,0,0,%,2161,6161,ff,OLB_BacklightDimming ,764,23,23,1,0,0,,2161,6161,ff,OLB_DayNightStatus,0:Day;1:Night ,764,24,28,1,0,0,%,2161,6161,ff,OLB_IndicDimming ,764,32,38,1,0,0,%,2161,6161,ff,OLB_ScreenDimming ,764,39,39,1,0,0,,2161,6161,ff,OLB_ClearDiaginfo,0:no clear diag;1:clear diag ,764,16,23,1,0,0,,2165,6165,ff,OLB_FP_LeftTempDisplay,0:No display;1:Not used (01);2:All segment displayed;3:Not used (11);4:Display OF;5:Not used (101);6:Display --;8:Display LO;9:Not used (1001);10:Display HI;11:5-5;12:6;13:6-5;14:7;16:Not used (10000);18:Not used (10010);20:Real display;22:11;23:11-5;24:12;25:12-5;26:13;27:13-5;28:14;29:14-5;30:15;31:15-5;32:16;33:16-5;34:17;35:17-5;36:18;37:18-5;38:19;39:19-5;40:20;41:20-5;42:21;43:21-5;44:22;45:22-5;46:23;47:23-5;48:24;49:24-5;50:25;51:25-5;52:26;53:26-5;54:27;55:27-5;56:28;57:28-5;58:29;59:29-5;60:30 ,764,24,31,1,0,0,,2165,6165,ff,OLB_FP_RightTempDisplay,0:No display;1:Not used (01);2:All segment displayed;3:Not used (11);4:Display OF;5:Not used (101);6:Display --;8:Display LO;9:Not used (1001);10:Display HI;11:Not used (1011);12:Not used (1100);13:Not used (1101);15:Not used (1111);16:Not used (10000);18:Not used (10010);20:Real display ,764,32,33,1,0,0,,2165,6165,ff,OLB_FP_MMIState,0:Inactive;1:Light;2:Full;3:Not used ,764,34,34,1,0,0,,2165,6165,ff,OLB_FP_MMIModeTemp,0:Display mode 1;1:Display mode 2 ,764,35,35,1,0,0,,2165,6165,ff,OLB_FP_MMIModeBlower,0:Display mode 1;1:Display mode 2 ,764,36,39,1,0,0,,2165,6165,ff,OLB_FP_RotaryTempDisplay,0:No display;1:Display indicator 1;2:Display indicator 2;3:Display indicator 3;4:Display indicator 4;5:Display indicator 5;6:Display indicator 6;7:Display indicator 7;8:Display indicator 8;9:Display indicator 9;10:Display indicator 10;11:Display indicator 11;12:Display indicator 12;13:Display indicator 13;14:Display indicator 14;15:Display indicator 15 ,764,40,43,1,0,0,,2165,6165,ff,OLB_FP_DistDisplay,0:No display;1:Feet;2:Aerator;3:Feet + Aerator;4:Mild flow;5:Feet + Mild flow;6:Mild flow + Feet;7:Feet + Aerator Mild flow;8:Defrost;9:Feet + Defrost;10:Aerator + Defrost;11:Feet + Aerator + Defrost;12:Mild flow + Defrost;13:Feet + Mild flow + Defrost;14:Aerator + Mild flow + Defrost;15:Feet + Aerator + Mild flow + Defrost ,764,44,47,1,0,0,,2165,6165,ff,OLB_FP_BlowerLevelDisplay,0:No display;1:Display bars 1;2:Display bars 2;3:Display bars 3;4:Display bars 4;5:Display bars 5;6:Display bars 6;7:Display bars 7;8:Display bars 8;9:Display bars 9;10:Display bars 10;11:Display bars 11;12:Display bars 12;13:Display bars 13;14:Display bars 14;15:Display blower OFF ,764,48,48,1,0,0,,2165,6165,ff,OLB_FP_TestLamp,0:No test lamps;1:Test lamps ,764,49,49,1,0,0,,2165,6165,ff,OLB_FP_LEDA_Indic,0:Off;1:On ,764,50,50,1,0,0,,2165,6165,ff,OLB_FP_LEDB_Indic,0:Off;1:On ,764,51,51,1,0,0,,2165,6165,ff,OLB_FP_LEDC_Indic,0:Off;1:On ,764,52,52,1,0,0,,2165,6165,ff,OLB_FP_LEDD_Indic,0:Off;1:On ,764,53,53,1,0,0,,2165,6165,ff,OLB_FP_LEDE_Indic,0:Off;1:On ,764,54,54,1,0,0,,2165,6165,ff,OLB_FP_LEDF_Indic,0:Off;1:On ,764,55,55,1,0,0,,2165,6165,ff,OLB_FP_LEDG_Indic,0:Off;1:On ,764,56,56,1,0,0,,2165,6165,ff,OLB_FP_LEDH_Indic,0:Off;1:On ,764,57,57,1,0,0,,2165,6165,ff,OLB_FP_LEDJ_Indic,0:Off;1:On ,764,58,58,1,0,0,,2165,6165,ff,OLB_FP_LEDK_Indic,0:Off;1:On ,764,59,59,1,0,0,,2165,6165,ff,OLB_FP_LEDL_Indic,0:Off;1:On ,764,60,60,1,0,0,,2165,6165,ff,OLB_FP_LEDM_Indic,0:Off;1:On ,764,61,61,1,0,0,,2165,6165,ff,OLB_FP_LEDN_Indic,0:Off;1:On ,764,62,62,1,0,0,,2165,6165,ff,OLB_FP_LEDP_Indic,0:Off;1:On ,764,63,63,1,0,0,,2165,6165,ff,OLB_FP_LEDR_Indic,0:Off;1:On ,764,64,64,1,0,0,,2165,6165,ff,OLB_FP_LEDS_Indic,0:Off;1:On ,764,65,65,1,0,0,,2165,6165,ff,OLB_FP_LEDT_Indic,0:Off;1:On ,764,66,66,1,0,0,,2165,6165,ff,OLB_FP_LEDU_Indic,0:Off;1:On ,764,67,67,1,0,0,,2165,6165,ff,OLB_FP_LEDV_Indic,0:Off;1:On ,764,68,68,1,0,0,,2165,6165,ff,OLB_FP_LEDW_Indic,0:Off;1:On ,764,69,69,1,0,0,,2165,6165,ff,OLB_FP_LEDX_Indic,0:Off;1:On ,764,70,70,1,0,0,,2165,6165,ff,OLB_FP_LEDY_Indic,0:Off;1:On ,764,71,71,1,0,0,,2165,6165,ff,OLB_FP_LEDZ_Indic,0:Off;1:On ,764,72,72,1,0,0,,2165,6165,ff,OLB_MMITempUnit,0:Celsius;1:Fahrenheit ,764,73,76,1,0,0,,2165,6165,ff,OLB_FP_RightTempByLEDs,0:No display;1:Display indicator 1;2:Display indicator 2;3:Display indicator 3;4:Display indicator 4;5:Display indicator 5;6:Display indicator 6;7:Display indicator 7;8:Display indicator 8;9:Display indicator 9;10:Display indicator 10;11:Display indicator 11;12:Display indicator 12;13:Display indicator 13;14:Display indicator 14;15:Display indicator 15 ,764,77,77,1,0,0,,2165,6165,ff,OLB_SliderDisplayMode,0:No display;1:Display Blower ,764,16,19,1,-1,0,,2166,6166,ff,ILB_FP_VersionNumber ,764,20,23,1,0,0,,2166,6166,ff,ILB_FP_ControlPanelType,0:Unavailable;1:CP type 1;2:CP type 2;3:CP type 3;4:CP type 4;5:CP type 5;6:CP type 6;7:CP type 7;8:CP type 8;9:CP type 9;10:CP type 10;11:CP type 11;12:CP type 12;13:CP type 13;14:CP type 14;15:CP type 15 ,764,24,28,1,-1,0,,2166,6166,ff,ILB_FP_SpareCPPartNumber ,764,29,29,1,0,0,,2166,6166,ff,ILB_FCP_Response_Error,0:No response error;1:Response error ,764,30,30,1,0,0,,2166,6166,ff,ILB_FP_ResetState,0:No reset;1:Exit from reset ,764,31,31,1,0,0,,2166,6166,ff,ILB_FP_SwitchAPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,32,32,1,0,0,,2166,6166,ff,ILB_FP_SwitchALongPushState,0:No long push in progress;1:Long push in progress ,764,33,33,1,0,0,,2166,6166,ff,ILB_FP_SwitchBPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,34,34,1,0,0,,2166,6166,ff,ILB_FP_SwitchBLongPushState,0:No long push in progress;1:Long push in progress ,764,35,35,1,0,0,,2166,6166,ff,ILB_FP_SwitchCPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,36,36,1,0,0,,2166,6166,ff,ILB_FP_SwitchCLongPushState,0:No long push in progress;1:Long push in progress ,764,37,37,1,0,0,,2166,6166,ff,ILB_FP_SwitchDPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,38,38,1,0,0,,2166,6166,ff,ILB_FP_SwitchDLongPushState,0:No long push in progress;1:Long push in progress ,764,39,39,1,0,0,,2166,6166,ff,ILB_FP_SwitchEPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,40,40,1,0,0,,2166,6166,ff,ILB_FP_SwitchELongPushState,0:No long push in progress;1:Long push in progress ,764,41,41,1,0,0,,2166,6166,ff,ILB_FP_SwitchFPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,42,42,1,0,0,,2166,6166,ff,ILB_FP_SwitchFLongPushState,0:No long push in progress;1:Long push in progress ,764,43,43,1,0,0,,2166,6166,ff,ILB_FP_SwitchGPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,44,44,1,0,0,,2166,6166,ff,ILB_FP_SwitchGLongPushState,0:No long push in progress;1:Long push in progress ,764,45,45,1,0,0,,2166,6166,ff,ILB_FP_SwitchHPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,46,46,1,0,0,,2166,6166,ff,ILB_FP_SwitchHLongPushState,0:No long push in progress;1:Long push in progress ,764,47,47,1,0,0,,2166,6166,ff,ILB_FP_SwitchJPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,48,48,1,0,0,,2166,6166,ff,ILB_FP_SwitchJLongPushState,0:No long push in progress;1:Long push in progress ,764,49,49,1,0,0,,2166,6166,ff,ILB_FP_SwitchKPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,50,50,1,0,0,,2166,6166,ff,ILB_FP_SwitchKLongPushState,0:No long push in progress;1:Long push in progress ,764,51,51,1,0,0,,2166,6166,ff,ILB_FP_SwitchLPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,52,52,1,0,0,,2166,6166,ff,ILB_FP_SwitchLLongPushState,0:No long push in progress;1:Long push in progress ,764,53,53,1,0,0,,2166,6166,ff,ILB_FP_SwitchMPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,54,54,1,0,0,,2166,6166,ff,ILB_FP_SwitchMLongPushState,0:No long push in progress;1:Long push in progress ,764,55,55,1,0,0,,2166,6166,ff,ILB_FP_SwitchNPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,56,56,1,0,0,,2166,6166,ff,ILB_FP_SwitchNLongPushState,0:No long push in progress;1:Long push in progress ,764,57,57,1,0,0,,2166,6166,ff,ILB_FP_SwitchPPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,58,58,1,0,0,,2166,6166,ff,ILB_FP_SwitchPLongPushState,0:No long push in progress;1:Long push in progress ,764,59,59,1,0,0,,2166,6166,ff,ILB_FP_SwitchRPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,60,60,1,0,0,,2166,6166,ff,ILB_FP_SwitchRLongPushState,0:No long push in progress;1:Long push in progress ,764,61,61,1,0,0,,2166,6166,ff,ILB_FP_SwitchSPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,62,62,1,0,0,,2166,6166,ff,ILB_FP_SwitchSLongPushState,0:No long push in progress;1:Long push in progress ,764,63,63,1,0,0,,2166,6166,ff,ILB_FP_SwitchTPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,64,64,1,0,0,,2166,6166,ff,ILB_FP_SwitchTLongPushState,0:No long push in progress;1:Long push in progress ,764,65,65,1,0,0,,2166,6166,ff,ILB_FP_SwitchUPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,66,66,1,0,0,,2166,6166,ff,ILB_FP_SwitchULongPushState,0:No long push in progress;1:Long push in progress ,764,67,67,1,0,0,,2166,6166,ff,ILB_FP_SwitchVPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,68,68,1,0,0,,2166,6166,ff,ILB_FP_SwitchVLongPushState,0:No long push in progress;1:Long push in progress ,764,69,69,1,0,0,,2166,6166,ff,ILB_FP_SwitchWPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,70,70,1,0,0,,2166,6166,ff,ILB_FP_SwitchWLongPushState,0:No long push in progress;1:Long push in progress ,764,71,71,1,0,0,,2166,6166,ff,ILB_FP_SwitchXPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,72,72,1,0,0,,2166,6166,ff,ILB_FP_SwitchXLongPushState,0:No long push in progress;1:Long push in progress ,764,73,73,1,0,0,,2166,6166,ff,ILB_FP_SwitchYPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,74,74,1,0,0,,2166,6166,ff,ILB_FP_SwitchYLongPushState,0:No long push in progress;1:Long push in progress ,764,75,75,1,0,0,,2166,6166,ff,ILB_FP_SwitchZPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,76,76,1,0,0,,2166,6166,ff,ILB_FP_SwitchZLongPushState,0:No long push in progress;1:Long push in progress ,764,16,23,1,0,0,,216C,616C,ff,CL_WithValve1Output,0:Not Configured;1:without output;2:with output type1;3:with output type2;4:with output type3;5:with output type4 ,764,21,23,1,0,0,,216D,616D,ff,IH_UnballastRequest,0:No request;1:Load Cut Off For life On Board;2:Load Cut Off For life On Board 2;3:Reserved for Safety;4:Load Cut Off For Pulse Compatibilty;5:Load Cut off level 1;6:Load Cut off level 2;7:Load Cut off level 3 ,764,47,47,1,0,0,,216E,616E,ff,IH_ACCompClutchDefault,0:No clutch failure;1:Clutch failure ,764,48,54,.1,0,1,A,216E,616E,ff,IH_ACCompValveCurrent ,764,55,55,1,0,0,,216E,616E,ff,IH_ACCompValveDefault,0:No valve failure;1:Valve failure ,764,72,78,1,0,0,%,216E,616E,ff,IH_EngineFanSpeedStatus_PWM ,764,16,23,1,0,0,,216F,616F,ff,CL_WithValve2Output,0:Not Configured;1:without output;2:with output type1;3:with output type2;4:with output type3;5:with output type4 ,764,16,23,50,0,0,W,2170,6170,ff,OH_ACCompPowerUsed ,764,24,30,.01,0,2,A,2170,6170,ff,OH_ACCompValveRequest ,764,31,31,1,0,0,,2170,6170,ff,OH_ClimateCoolingSelect,0:No AC request;1:AC requested ,764,32,32,1,0,0,,2170,6170,ff,OH_BlowerFanMotorStatus_AC,0:Blower fan motor off;1:Blower fan motor on ,764,33,34,1,0,0,,2170,6170,ff,OH_VoltageRatebyAC,0:No request;1:Rate 1;2:Rate 2;3:Rate 3 ,764,35,35,1,0,0,,2170,6170,ff,OH_ACCompRequest,0:No AC Requested;1:AC Requested ,764,36,36,1,0,0,,2170,6170,ff,OH_ACCompWorkingMode,0:Running in idle mode or stopped;1:Running not in idle mode ,764,37,37,1,0,0,,2170,6170,ff,OH_ACCompClutchRequest,0:Compressor Not Requested;1:Compressor Requested ,764,38,39,1,0,0,,2170,6170,ff,OH_PumpActivationRequest,0:Unvailable Value;1:No Activation Requested;2:Activation Requested;3:Not Used ,764,40,40,1,0,0,,2170,6170,ff,OH_RearDefrostRequest,0:Not Requested;1:Requested ,764,41,47,1,0,0,%,2170,6170,ff,OH_EngineFanSpeedRequestPWM_AC ,764,48,51,1,0,0,,2170,6170,ff,OH_PTCNumberThermalReq,0:0 PTC requested;1:1 PTC requested;2:2 PTC requested;3:3 PTC requested;4:4 PTC requested;5:5 PTC requested;6:6 PTC requested;7:7 PTC requested;8:8 PTC requested;9:9 PTC requested;10:10 PTC requested;11:Not used;15:No Request ,764,52,55,50,-10,0,rpm,2170,6170,ff,OH_ACMinEngineIdleSpeedRequest ,764,56,57,1,0,0,,2170,6170,ff,OH_AC_StopAutoFobidden,0:Unvailable Value;1:Auto Stop forbidden;2:Auto Stop authorized;3:Not used ,764,58,59,1,0,0,,2170,6170,ff,OH_ClimConsoButtonDisplay,0:No display;1:Clim Conso Button ON;2:Clim Conso Button OFF;3:Not used ,764,60,62,.5,-24,1,V,2170,6170,ff,OH_MinimumVoltagebyAC_1540 ,764,63,63,1,0,0,,2170,6170,ff,OH_FrontDefrostEngaged,0:Front defrost not engaged;1:Front defrost engaged ,764,16,23,1,0,0,,2174,6174,ff,CL_BatteryPTCType,0:Not Configured;1:Without PTC;16:PTC 1kW;24:PTC 1-8kW ,764,16,23,1,0,0,,2175,6175,ff,CL_HVPTCType,0:Not Configured;1:Without HV PTC;35:HV PTC 3-5 kW;50:HV PTC 5kW ,764,16,23,1,0,0,,2176,6176,ff,CL_FrontHVACType,0:Not Configured;1:HVAC Type 1 (CK CMF1);2:HVAC Type 2 (Valeo VLCL CMF1);3:HVAC Type 3 (Valeo GHEM CMF1);4:HVAC Type 4 (X82);5:HVAC Type 5 (X07);6:HVAT Type 6 (CK CMF1 Renault 1);7:HVAC Type 7 (CK CMF1 Renault 2);8:HVAC Type 8 (Valeo XGA-HHA);9:HVAC Type 9 (Behr H79ph2);10:HVAC Type 10 (CK CMF1 Renault 3);11:HVAC Type 11 (CK CMF1 Renault 4);12:HVAC Type 12;13:HVAC Type 13;14:HVAC Type 14;15:HVAC Type 15;16:HVAC Type 16;17:HVAC Type 17;18:HVAC Type 18;19:HVAC Type 19;20:HVAC Type 20 ,764,16,23,1,0,0,,2177,6177,ff,CL_RearHVACType,0:Not configured;1:without rearHVACType;2:with rear blower by wires;3:with rear blower by LIN ,764,16,23,1,0,0,,2178,6178,ff,CL_NISSANDestination,0:Not Configured;1:JPN- GOM;2:EUR1;3:PRC;4:GCC;5:GOM1;6:USA;7:GOM(CAN);12:EUR2;15:GOM2 ,764,16,23,1,0,0,,2179,6179,ff,CL_WithBlowerFanFeedback,0:Not Configured;1:without local blower Fan Feedback;2:with local blower Fan Feedback ,764,16,23,1,0,0,,217C,617C,ff,CL_WithBattBlowerRelayOutput,0:Not Configured;1:KL_WithoutOutput;2:KL_WithLocalOutput ,764,16,23,1,0,0,,217D,617D,ff,CL_MMIArchitecture,0:Not Configured;1:Front Control Panel only;2:Multimedia Display + Front Control Panel;3:Multimedia Display + Front Control Panel + RCP;4:Front Control Panel+Rear Control Panel+AQM;5:Central Panel only;6:Central Panel+Rear Control Panel;7:Front Control Panel+Rear Control Panel;8:Front Control Panel+AQM ,764,16,23,1,0,0,,217E,617E,ff,CL_LINArchitecture,0:Not Configured;1:Architecture type 1;2:Architecture type 2;3:Architecture type 3;4:Architecture type 4 ,764,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,764,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,764,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,764,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,764,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,764,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,764,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,764,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A;1:28525;2:27531 ,764,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:N/A;1:28526 ,764,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A;1:RENO.;2:NISS. ,764,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,136:5DIGITS;131:Nissan N4;130:Nissan N3;129:Nissan N2;128:Nissan N1;0:Renault R1;255:Renault R3 ,764,16,151,1,0,0,,2181,6181,2ff,VIN ,764,152,167,1,0,0,,2181,6181,4ff,Vin CRC ,764,16,31,1,0,0,,2182,6182,4ff,KL_CanVerMess ,764,32,32,1,0,0,,2182,6182,ff,CurrentFaultBus_OFF,0:False;1:True ,764,33,33,1,0,0,,2182,6182,ff,ConfirmedFaultBus_OFF,0:False;1:True ,764,34,39,1,0,0,,2182,6182,ff,M_Bus_OFF ,764,40,40,1,0,0,,2182,6182,ff,CurrentFaultMute,0:False;1:True ,764,41,41,1,0,0,,2182,6182,ff,ConfirmedFaultMute,0:False;1:True ,764,42,47,1,0,0,,2182,6182,ff,M_Mute ,764,72,72,1,0,0,,2182,6182,ff,CurrentFaultBCM,0:False;1:True ,764,73,73,1,0,0,,2182,6182,ff,ConfirmedFaultBCM,0:False;1:True ,764,74,79,1,0,0,,2182,6182,ff,M_BCM ,764,111,118,1,0,0,,2182,6182,ff,CLIM_Absent,0:False;1:True ,764,16,55,1,0,0,,2183,6183,2ff,NissanSparePartNumber ,764,56,63,1,0,0,,2183,6183,4ff,NissanDiagnosticIdentificationCode ,764,64,87,1,0,0,,2183,6183,4ff,NissanSupplierNumber.ITG ,764,88,127,1,0,0,,2183,6183,4ff,NissanHardwareNumber ,764,128,143,1,0,0,,2183,6183,4ff,NissanSoftwareNumber ,764,144,159,1,0,0,,2183,6183,4ff,NissanEditionNumber ,764,160,175,1,0,0,,2183,6183,4ff,NissanCalibrationNumber ,764,176,199,1,0,0,,2183,6183,4ff,NissanOtherSystemFeatures ,764,200,207,1,0,0,,2183,6183,4ff,NissanManufacturerIdentificationCode ,764,16,175,1,0,0,,2184,6184,2ff,UnitaryDataTraceability ,764,24,31,1,0,0,,2185,6185,ff,CL_VehicleType,0:Not Configured;9:X98;16:X10;17:P32;18:EspaceConcept;19:X82;20:X07VE;21:X07ICE ,764,32,39,1,0,0,,2185,6185,ff,CL_ACType,0:Not Configured;1:Manual Monozone;2:Heater - Chauffo;16:Monozone Regulated - CAREG MZ;17:Dualzone without rear vent ducts;18:Dualzone with rear vent ducts;19:Trizone with temperature;20:Trizone with temperature and with distribution;21:Dualzone with additional rear monozone;22:Monozone Regulated - with rear blowers ,764,40,47,1,0,0,,2185,6185,ff,CL_PTCType,0:Not Configured;1:Without PTC;16:PTC 0-9kW or 1kW;24:PTC 1-5kW-1-6kW or 1-8kW;25:CTP 0-9KW + THP;27:THP Only ,764,48,55,1,0,0,,2185,6185,ff,CL_CountryCfg,0:Not Configured;1:zone 1 (mild);2:zone 2;3:zone 3;4:zone 4 ,764,56,63,1,0,0,,2185,6185,ff,CL_Steering,0:Not Configured;1:Right Hand Drive;2:Left Hand Drive ,764,64,71,1,0,0,,2185,6185,ff,CL_CompType,0:Not Configured;1:Compressor 1 (Ext Ctrl - Clutch);33:Compressor 5 (Electrical Vehicle);67:Compressor 3 (Int Ctrl - Clutch);68:Compressor 4 (Fixed Cap - Clutch);129:Compressor 2 (Ext Ctrl - Clutchless) ,764,72,79,.01,0,2,,2185,6185,ff,CL_CompPulleyRatio ,764,80,87,1,0,0,,2185,6185,ff,CL_WithEvapSensor,0:Not Configured;1:WithoutSensor;2:WithLocalSensorType1;3:With local sensor type2 ,764,88,95,1,0,0,,2185,6185,ff,CL_WithSolarSensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor(left & right);3:KL_SensorByCAN;4:with sensor (local Right only);5:with sensor (local Left only) ,764,96,103,1,0,0,,2185,6185,ff,CL_WithAirQualitySensor,0:Not Configured;1:KL_WithoutSensor;2:with sensor Type1(Renault);3:with sensor Type2(Nissan) ,764,104,111,1,0,0,,2185,6185,ff,CL_WindshieldType,0:Not Configured;1:Without Windshield Option;2:With Ft Defrost;3:With Heat Reflecting;4:With Ft Defrost &Heat Reflecting;5:with front defrost by CAN;6:with front defrost +heat Reflect by CAN;7:with deicer;8:with deicer+HeatReflecting;9:With front defrost and switch ,764,112,119,1,0,0,,2185,6185,ff,CL_WithLINBus,0:Not Configured;1:KL_WithoutLINBus;2:with message set 1(LINCLIM3);3:with message set 2(TBD) ,764,120,127,1,0,0,,2185,6185,ff,CL_WithHumiditySensor,0:Not Configured;1:Without Sensor;2:WithLocalSensorType1 (Renault);3:With local sensor Type 2 ,764,128,135,1,0,0,,2185,6185,ff,CL_WithExtTempSensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor;3:KL_SensorByCAN ,764,136,143,1,0,0,,2185,6185,ff,CL_ColdLoopType,0:Not Configured;1:Cold Loop inside ECU Clim;2:Cold Loop outside ECU Clim ,764,144,319,1,0,0,,2185,6185,4ff,CL_DiagnosticConfiguration ,764,320,327,1,0,0,,2185,6185,ff,CL_EngineType,0:Not Configured;1:Thermic engine;2:SAS Engine;3:Electrical engine;5:Thermic Nissan engine;6:Hybrid Nissan engine ,764,328,335,1,0,0,,2185,6185,ff,CL_WithInCarTempSensor,0:Not Configured;1:WithoutSensor;2:WithLocalSensor Type 1(Renault);3:WithLocalSensor Type 2(Nissan) ,764,336,343,1,0,0,,2185,6185,ff,CL_WithHotSourceSensor,0:Not Configured;1:Without Sensor;2:WithLocalSensor ,764,344,351,1,0,0,,2185,6185,ff,CL_CANArchitecture,0:Not Configured;1:Architecture type 1=T4(X82) / T4 Edison X07 ph2;2:Architecture type 2=1540;3:Architecture type 3=P32;4:Architecture type 4=X07VE;5:Architecture type 5=X07ICE;6:Architecture type 6;7:Architecture type 7;8:Architecture type 8;12:Architecture type 12=C1A ,764,352,359,1,0,0,,2185,6185,ff,CL_WithLINBus2,0:Not Configured;1:KL_WithoutLINBus2;2:with message set 1(LINCLIM3);3:with message set 2(TBD);4:with message set 2(HVPTC + Compressor) ,764,360,367,1,0,0,,2185,6185,ff,CL_WithBatteryBlower,0:Not Configured;1:Without Output;2:With Local Output;3:with output and feedback input ,764,368,375,1,0,0,,2185,6185,ff,CL_WithHPM,0:Not Configured;1:WithoutHPM;2:WithHPM ,764,376,383,1,0,0,,2185,6185,ff,CL_SeatsHeatingCommand,0:Not Configured;1:without Seats Heating;2:With seat heating control FL;4:With seat heating control FR;6:With seat heating control FL +FR;8:With seat heating control RL;10:With seat heating control FL+RL;12:With seat heating control FR+RL;14:With seat heating control FR+FR+RL;16:With seat heating control RR;18:With seat heating control FL+ RR;20:With seat heating control FR+ RR;22:With seat heating control FL+FR+ RR;24:With seat heating control RL + RR;26:With seat heating control FL+ RL + RR;28:With seat heating control FR+ RL + RR;30:With seat heating control FL+FR+ RL + RR ,764,384,391,1,0,0,,2185,6185,ff,CL_WithControlPanel,0:Not Configured;1:WithoutCP;2:CP Type 1 - X10 CAREG / X07 EV CAREG RSA;3:CP Type 2 - X10 CHAUFFO / X07 EV CHAUFFO RSA;4:CP Type 3 - CAREG X07 ICE RSA;5:CP Type 4 - X07 ICE & EV CAREG Daimler;6:CP Type 5 - Careg X82;7:CP Type 6 - 1540 E2;8:CP Type 7 - 1540 E3;9:CP Type 8 - Nissan USA;10:CP Type 9 - X07 ICE & EV CHAUFFO Daimler;11:CP Type 10- NISSAN Europe;12:CP Type 11 - 1540 Caman;13:CP Type 12 - CP HFE CAREG without HFS;14:CP Type 13 - CP HFE Caman;15:CP Type 14 - CP HFE CAREG with HFS;16:CP Type 15 - 1540 E2 KOREA;17:CP Type 16 - NISSAN P32 RUSSIA;18:CP Type 17;19:CP Type 18;20:CP Type 19;21:CP Type 20 ,764,392,399,1,0,0,,2185,6185,ff,CL_WithInternalAirQualityManagement,0:Not Configured;1:Without Air Quality Management;2:With Fragrance- Without Ionizer;3:Without Fragrance- With Ionizer Type1;4:With Fragrance- With Ionizer Type1;5:without fragrance with ionizer type 2;6:with fragrance with ionizer type 2 ,764,400,407,1,0,0,,2185,6185,ff,CL_CompValveType,0:Not configured;1:without Compressor Valve;2:with Compressor Valve type 1;3:with Compressor Valve type 2;4:with Compressor Valve type 3 ,764,408,415,1,0,0,,2185,6185,ff,CL_SeatsHeatingFeedback,0:Not Configured;1:without Seats Heating Feedback;2:With seat heating feedback FL;4:With seat heating feedback FR;6:With seat heating feedback FL +FR;8:With seat heating feedback RL;10:With seat heating feedback FL+RL;12:With seat heating feedback FR+RL;14:With seat heating feedback FR+FR+RL;16:With seat heating feedback RR;18:With seat heating feedback FL+ RR;20:With seat heating feedback FR+ RR;22:With seat heating feedback FL+FR+ RR;24:With seat heating feedback RL + RR;26:With seat heating feedback FL+ RL + RR;28:With seat heating feedback FR+ RL + RR;30:With seat heating feedback FL+FR+ RL + RR ,764,416,423,1,0,0,,2185,6185,ff,CL_WithBoiler,0:Not Configured;1:Without boiler;2:With Boiler Type 1;3:With Boiler Type 2;4:With Boiler Type 3 ,764,424,431,1,0,0,,2185,6185,ff,CL_SolarSensorType,0:Not Configured;1:Local sensor Renault (type 1);2:Local sensor Nissan_CK (type 2);3:Local sensor Nissan_Valéo (type 3) ,764,432,439,1,0,0,,2185,6185,ff,CL_WithSED,0:Not configured;1:Without SED;2:SED with low pressure drop ducts;3:SED with medium pressure drop ducts;4:SED with high pressure drop ducts ,764,440,447,1,0,0,,2185,6185,ff,CL_WithValve1Output,0:Not Configured;1:without output;2:with output type1;3:with output type2;4:with output type3;5:with output type4 ,764,448,455,1,0,0,,2185,6185,ff,CL_WithValve2Output,0:Not Configured;1:without output;2:with output type1;3:with output type2;4:with output type3;5:with output type4 ,764,456,463,1,0,0,,2185,6185,ff,CL_BatteryPTCType,0:Not Configured;1:Without PTC;16:PTC 1kW;24:PTC 1-8kW ,764,464,471,1,0,0,,2185,6185,ff,CL_HVPTCType,0:Not Configured;1:Without HV PTC;35:HV PTC 3-5 kW;50:HV PTC 5kW ,764,480,487,1,0,0,,2185,6185,ff,CL_WithBlowerFanFeedback,0:Not Configured;1:without local blower Fan Feedback;2:with local blower Fan Feedback ,764,488,495,1,0,0,,2185,6185,ff,CL_WithBattBlowerRelayOutput,0:Not Configured;1:KL_WithoutOutput;2:KL_WithLocalOutput ,764,496,503,1,0,0,,2185,6185,ff,CL_MMIArchitecture,0:Not Configured;1:Front Control Panel only;2:Multimedia Display + Front Control Panel;3:Multimedia Display + Front Control Panel + RCP;4:Front Control Panel+Rear Control Panel+AQM;5:Central Panel only;6:Central Panel+Rear Control Panel;7:Front Control Panel+Rear Control Panel;8:Front Control Panel+AQM ,764,504,511,1,0,0,,2185,6185,ff,CL_LINArchitecture,0:Not Configured;1:Architecture type 1;2:Architecture type 2;3:Architecture type 3;4:Architecture type 4 ,764,512,519,1,0,0,,2185,6185,ff,CL_FrontHVACType,0:Not Configured;1:HVAC Type 1 (CK CMF1);2:HVAC Type 2 (Valeo VLCL CMF1);3:HVAC Type 3 (Valeo GHEM CMF1);4:HVAC Type 4 (X82);5:HVAC Type 5 (X07);6:HVAT Type 6 (CK CMF1 Renault 1);7:HVAC Type 7 (CK CMF1 Renault 2);8:HVAC Type 8 (Valeo XGA-HHA);9:HVAC Type 9 (Behr H79ph2);10:HVAC Type 10 (CK CMF1 Renault 3);11:HVAC Type 11 (CK CMF1 Renault 4);12:HVAC Type 12;13:HVAC Type 13;14:HVAC Type 14;15:HVAC Type 15;16:HVAC Type 16;17:HVAC Type 17;18:HVAC Type 18;19:HVAC Type 19;20:HVAC Type 20 ,764,520,527,1,0,0,,2185,6185,ff,CL_RearHVACType,0:Not configured;1:without rearHVACType;2:with rear blower by wires;3:with rear blower by LIN ,764,16,95,1,0,0,,21EF,61EF,2ff,HardwareNumber.ASCII ,764,96,175,1,0,0,,21EF,61EF,2ff,SoftwareNumber.ASCII ,764,16,55,1,0,0,,21F0,61F0,2ff,KL_RefB ,764,56,63,1,0,0,,21F0,61F0,4ff,DiagnosticIdentificationCode ,764,64,87,1,0,0,,21F0,61F0,2ff,SupplierNumber.ITG ,764,88,127,1,0,0,,21F0,61F0,2ff,KL_RefA ,764,128,143,1,0,0,,21F0,61F0,4ff,SoftwareNumber ,764,144,159,1,0,0,,21F0,61F0,4ff,EditionNumber ,764,160,175,1,0,0,,21F0,61F0,4ff,CalibrationNumber ,764,176,183,1,0,0,,21F0,61F0,ff,PartNumber.BasicPartList,0:N/A;1:28525;2:27531 ,764,184,191,1,0,0,,21F0,61F0,ff,HardwareNumber.BasicPartList,0:N/A;1:28526 ,764,192,199,1,0,0,,21F0,61F0,ff,ApprovalNumber.BasicPartList,0:N/A;1:RENO.;2:NISS. ,764,200,207,1,0,0,,21F0,61F0,ff,ManufacturerIdentificationCode,136:5DIGITS;131:Nissan N4;130:Nissan N3;129:Nissan N2;128:Nissan N1;0:Renault R1;255:Renault R3 ,764,0,0,1,0,0,,21F1,61F1,ff,DataRead.Reprog.1stRec.Reprog ,764,16,55,1,0,0,,21FE,61FE,2ff,PartNumber.LowerPart ,764,56,63,1,0,0,,21FE,61FE,4ff,DiagnosticIdentificationCode ,764,64,87,1,0,0,,21FE,61FE,2ff,SupplierNumber.ITG ,764,88,127,1,0,0,,21FE,61FE,2ff,KL_RefA ,764,128,143,1,0,0,,21FE,61FE,4ff,SoftwareNumber ,764,144,159,1,0,0,,21FE,61FE,4ff,EditionNumber ,764,160,175,1,0,0,,21FE,61FE,4ff,CalibrationNumber ,764,176,183,1,0,0,,21FE,61FE,ff,PartNumber.BasicPartList,0:N/A;1:28525;2:27531 ,764,184,191,1,0,0,,21FE,61FE,ff,HardwareNumber.BasicPartList,0:N/A;1:28526 ,764,192,199,1,0,0,,21FE,61FE,ff,ApprovalNumber.BasicPartList,0:N/A;1:RENO.;2:NISS. ,764,200,207,1,0,0,,21FE,61FE,ff,ManufacturerIdentificationCode,136:5DIGITS;131:Nissan N4;130:Nissan N3;129:Nissan N2;128:Nissan N1;0:Renault R1;255:Renault R3 ,764,0,0,1,0,0,,21FF,61FF,ff,DataRead.Reprog.2ndRec.Reprog ,764,24,33,.1,400,1,°C,22400A,62400A,ff,IH_EvapTemp ,764,24,30,1,0,0,%,224248,624248,ff,OH_ACCompValveCommand ,764,24,39,1,0,0,,229101,629101,4ff,EngineeringSoftwareNumber ,764,24,39,1,0,0,,229102,629102,4ff,EngineeringCalibrationNumber ,764,24,39,1,0,0,,22A101,62A101,ff,LIN_CAREG_LINCLIM3_R_01.OLB_RearMixActrTarget ,764,40,46,1,0,0,,22A101,62A101,ff,LIN_CAREG_LINCLIM3_R_01.OLB_Indexing_Overstepping ,764,47,47,1,0,0,,22A101,62A101,ff,LIN_CAREG_LINCLIM3_R_01.OLB_RearActrLockReq,0:Lock not requested;1:Lock requested ,764,48,48,1,0,0,,22A101,62A101,ff,LIN_CAREG_LINCLIM3_R_01.OLB_RearOnOffIndic,0:Off;1:On ,764,49,55,1,0,0,%,22A101,62A101,ff,LIN_CAREG_LINCLIM3_R_01.OLB_RearBlowerReq ,764,56,56,1,0,0,,22A101,62A101,ff,LIN_CAREG_LINCLIM3_R_01.OLB_RP_TestLamps,0:No test lamps;1:Test lamps ,764,62,64,1,0,0,,22A101,62A101,ff,LIN_CAREG_LINCLIM3_R_01.OLB_AQMFragSelectState,0:Unavailable;1:Fragrance 1;2:Fragrance 2;3:OFF;4:Fragrance 3;5:Not Used;6:Not Used 1;7:Auto ,764,65,67,1,0,0,,22A101,62A101,ff,LIN_CAREG_LINCLIM3_R_01.OLB_AQMIoniserModeState,0:Unavailable;1:Off;2:Clean;3:Relax;4:Refused;5:Not Used ,764,68,71,1,0,0,,22A101,62A101,ff,LIN_CAREG_LINCLIM3_R_01.OLB_AQMFragIntensityState,0:Unavailable;1:No intensity / Not used;2:Intensity 1;3:Intensity 2;4:Intensity 3;5:Intensity 4;6:Intensity 5;7:Intensity 6;8:Intensity 7 ,764,24,27,1,0,0,,22A102,62A102,ff,LIN_AQM_LINCLIM3_R_01.ILB_AQMFragIntensityRequest,0:No request;1:Not used;2:Intensity 1;3:Intensity 2;4:Intensity 3;5:Intensity 4;6:Intensity 5;7:Intensity 6;8:Intensity 7 ,764,28,30,1,0,0,,22A102,62A102,ff,LIN_AQM_LINCLIM3_R_01.ILB_AQMFragSelectRequest,0:No request;1:Fragrance 1;2:Fragrance 2;3:OFF;4:Fragrance 3;5:Not Used;6:Not Used 1;7:Auto ,764,31,33,1,0,0,,22A102,62A102,ff,LIN_AQM_LINCLIM3_R_01.ILB_AQMIoniserModeSelectionReq,0:No request;1:Off;2:Clean;3:Relax;4:Refused;5:Not Used ,764,34,37,1,-1,0,,22A102,62A102,ff,LIN_AQM_LINCLIM3_R_01.ILB_AQMCPVersionNumber ,764,39,39,1,0,0,,22A102,62A102,ff,LIN_AQM_LINCLIM3_R_01.ILB_AQM_Response_Error,0:No response error;1:Response error ,764,24,33,.1,400,1,°C,22A103,62A103,ff,LIN_RCP_LINCLIM3_R_01.ILB_RearBlowedAirTemp ,764,34,39,1,0,0,,22A103,62A103,ff,LIN_RCP_LINCLIM3_R_01.ILB_RearBlowerRotaryState ,764,40,47,.5,0,1,%,22A103,62A103,ff,LIN_RCP_LINCLIM3_R_01.ILB_RearBlowerVoltRatio ,764,48,51,1,-1,0,,22A103,62A103,ff,LIN_RCP_LINCLIM3_R_01.ILB_RMZCPVersionNumber ,764,52,52,1,0,0,,22A103,62A103,ff,LIN_RCP_LINCLIM3_R_01.ILB_RearBlowerFanOn,0:No fan;1:Fan ,764,63,78,1,0,0,,22A103,62A103,ff,LIN_RCP_LINCLIM3_R_01.ILB_RearMixActrPosition ,764,79,79,1,0,0,,22A103,62A103,ff,LIN_RCP_LINCLIM3_R_01.ILB_RearMixActr_OCF,0:No failure;1:Failure ,764,80,80,1,0,0,,22A103,62A103,ff,LIN_RCP_LINCLIM3_R_01.ILB_RearMixActr_SCF,0:No failure;1:Failure ,764,81,81,1,0,0,,22A103,62A103,ff,LIN_RCP_LINCLIM3_R_01.ILB_RearMixActr_F,0:DTC Update shouldn t be done;1:DTC Update can be done ,764,24,24,1,0,0,,22A104,62A104,ff,LIN_RCP_LINCLIM3_R_02.ILB_RearAirTempSensor_SCF,0:No failure;1:Failure ,764,25,25,1,0,0,,22A104,62A104,ff,LIN_RCP_LINCLIM3_R_02.ILB_RearAirTempSensor_OCF,0:No failure;1:Failure ,764,26,26,1,0,0,,22A104,62A104,ff,LIN_RCP_LINCLIM3_R_02.ILB_RearBlowerFanFeedback_SCF,0:No failure;1:Failure ,764,27,27,1,0,0,,22A104,62A104,ff,LIN_RCP_LINCLIM3_R_02.ILB_RearBlowerFanFeedback_OCF,0:No failure;1:Failure ,764,28,28,1,0,0,,22A104,62A104,ff,LIN_RCP_LINCLIM3_R_02.ILB_RCP_Response_Error,0:No response error;1:Response error ,764,0,0,1,0,0,,22A105,62A105,ff,DataRead.LIN_Bit_Error ,764,28,31,1,0,0,,22A106,62A106,ff,CAN_RX_BCM_CANHS_R_04.IH_VehicleStateExtended,0:Vehicle Sleeping;1:Technical Wakeup;2:Cut Off Pending;3:Bat Tempo Level;4:Accessory Level;5:Ignition Level;6:Starting in Progress;7:Engine Running;8:Auto Start;9:Engine System Stop;15:Unavailable Value ,764,32,55,1,0,0,min,22A106,62A106,ff,CAN_RX_BCM_CANHS_R_04.IH_AbsoluteTimeSinceFirstIgnition ,764,64,64,1,0,0,,22A106,62A106,ff,CAN_RX_BCM_CANHS_R_04.IH_VehicleOutsideLockedToggle,0:VehicleNotLockedFromOutside;1:VehicleLockedFromOutside ,764,68,69,1,0,0,,22A106,62A106,ff,CAN_RX_BCM_CANHS_R_04.ILN_GenericApplicativeDiagEnable,0:Diag frozen;1:Diag enabled (01);2:Diag enabled (10);3:Unavailable Value ,764,80,81,1,0,0,,22A106,62A106,ff,CAN_RX_BCM_CANHS_R_04.IH_EcoModeRequest,0:Unavailable Value;1:Eco mode requested;2:Eco mode not requested;3:Not used ,764,24,28,100,0,0,W,22A107,62A107,ff,CAN_RX_BCM_CANHS_R_05.IH_ElectricalPowerDrived ,764,30,31,1,0,0,,22A107,62A107,ff,CAN_RX_BCM_CANHS_R_05.IH_SupposedCustomerDeparture,0:Event 0;1:Event 1;2:Event 2;3:Unavailable ,764,47,47,1,0,0,,22A107,62A107,ff,CAN_RX_BCM_CANHS_R_05.IH_PTCThermalRegulatorFreeze,0:Not requested;1:Freeze requested ,764,48,54,1,0,0,min,22A108,62A108,ff,CAN_RX_BCM_CANHS_R_07.IH_LeftTimeToScheduledTime ,764,56,63,1,0,0,km/h,22A109,62A109,ff,CAN_RX_HALMO_CANHS_R_01.CAN_RX_BRAKE_FWHEEL_R1.IH_VehicleSpeed ,764,24,25,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_ClimAQSActivationState,0:Unavailable;1:Activated;2:Not activated;3:Not used ,764,27,27,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_ClimOFFModeDisplay,0:No Display;1:OFF Mode Activated Display ,764,28,31,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_AQMFragIntensityState,0:Unavailable;1:No intensity;2:intensity 1;3:intensity 2;4:intensity 3;5:intensity 4;6:intensity 5;7:intensity 6;8:intensity 7 ,764,32,34,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_AQMFragSelectState,0:Unavailable;1:Fragrance 1;2:Fragrance 2;3:Off;7:Auto ,764,35,37,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_AQMIoniserModeState,0:Unavailable;1:Off;2:Clean;3:Relax;4:Refused ,764,38,39,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_IoniserAutoLaunchState,0:Unavailable;1:Activated;2:Not activated;3:Not used ,764,40,47,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_ClimRightTempDisplay,0:No display;8:Display LO;10:Display HI;16:18;17:18-5;18:19;19:19-5;20:20;21:20-5;22:21;23:21-5;24:22;25:22-5;26:23;27:23-5;28:24;29:24-5;30:25;31:25-5;32:26;33:26-5;34:27;35:27-5;36:28;37:28-5;38:29;40:30;41:30-5;42:31;43:31-5;44:32;45:32-5;46:33;47:33-5;48:34;49:34-5;50:35;51:35-5;52:36;53:36-5;54:37;55:37-5;56:38;57:38-5;58:39;59:39-5;60:40 ,764,49,50,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_ClimRearModeDisplay,0:No display;1:Rear Panel available;2:Rear Panel locked;3:Rear panel OFF ,764,51,52,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_AutoRecyclingDisplay,0:Unavailable value;1:Automatic Recycling not in progress;2:Automatic Recycling in progress;3:Not Used ,764,53,54,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_ClimAutoModeDisplay,0:No display;1:Soft display;2:Fast display;3:Auto display ,764,55,55,1,0,0,,22A10A,62A10A,ff,CAN_TX_HVAC_MMI_R1.OH_ClimDualModeDisplay,0:No display;1:Dual Mode activated ,764,30,32,1,0,0,,22A10B,62A10B,ff,CAN_RX_MULTIDRIVE_SELECTION_R1.IH_MultiDriveMode_CLIM,0:Mode CLIM 1 (Normal);1:Mode CLIM 2 (Eco);2:Mode CLIM 3;3:Mode CLIM 4;4:Mode CLIM 5;5:Mode CLIM 6;6:Mode CLIM 7;7:Unavailable ,764,26,27,1,0,0,,22A10C,62A10C,ff,CAN_RX_CCM_CANV_01.IH_RearRoofState,0:Rear Roof fully open;1:Rear Roof in conversion;2:Rear Roof fully closed;3:Unavailable ,764,28,29,1,0,0,,22A10C,62A10C,ff,CAN_RX_CCM_CANV_01.IH_FrontRoofState,0:Front Roof fully open;1:Front Roof in conversion;2:Front Roof fully closed;3:Unavailable ,764,38,39,1,0,0,,22A10D,62A10D,ff,CAN_RX_CONTROL_CANHS_R_01.IH_ClimAQSActivationRequest,0:No request;1:Activation request;2:No activation request;3:Not used ,764,72,73,1,0,0,,22A10E,62A10E,ff,CAN_RX_ECM_CANHS_R_03.IH_CoolingFanSpeedStatus,0:Engine Fan Stopped;1:Low speed;2:Mid speed;3:High speed ,764,74,74,1,0,0,,22A10E,62A10E,ff,CAN_RX_ECM_CANHS_R_03.IH_ACCompClutchStatus,0:Clutch OFF;1:Clutch ON ,764,24,28,50,0,0,W/m²,22A10F,62A10F,ff,CAN_RX_EMM_CANHS_R_02.IH_RightSolarLevel ,764,30,33,50,0,0,W,22A10F,62A10F,ff,CAN_RX_EMM_CANHS_R_02.IH_VisibleSolarLevelInfo ,764,34,38,50,0,0,W/m²,22A10F,62A10F,ff,CAN_RX_EMM_CANHS_R_02.IH_LeftSolarLevel ,764,64,65,1,0,0,,22A110,62A110,ff,CAN_RX_MMI_SCH_CANHS_R_03.IH_ClimProgrammedPCDisplay,0:No pre-heating requested;1:pre-heating time 1;2:pre-heating time 2;3:Unavailable ,764,40,41,1,0,0,,22A111,62A111,ff,CAN_RX_SCH_CANHS_R_16.IH_ChillerActivation_Request,1:No chiller activation requested;0:Not Used;2:Chiller activation requested;3:Unavailable ,764,42,43,1,0,0,,22A111,62A111,ff,CAN_RX_SCH_CANHS_R_16.IH_ChillerPriorityLevel,0:Priority level 1;1:Priority level 2;2:Priority level 3;3:Unavailable ,764,24,39,.125,0,1,,22A112,62A112,ff,CAN_RX_TORQUE_ECM_CANHS_RNr_01.IH_EngineRPM ,764,24,31,1,0,0,km/h,22A113,62A113,ff,CAN_RX_HALMO_CANHS_R_01.CAN_RX_BRAKE_FWHEEL_R1.IH_VehicleSpeed ,764,40,63,1,0,0,,22A113,62A113,ff,CAN_RX_HALMO_CANHS_R_01.IH_DistanceTotalizer ,764,34,34,1,0,0,,22A114,62A114,ff,CAN_RX_MM_R1_IH_BlowerSpeedReductionRequest,0:Blower Speed Reduction not Requested;1:Blower Speed Reduction Requested ,764,24,103,1,0,0,,22F187,62F187,2ff,VehiculeManufacturerSparPartNumber ,764,24,103,1,0,0,,22F18E,62F18E,2ff,VehicleManufacturerKitAssemblyPartNumber ,764,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/HVAC_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) - PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/MIU_Dtcs.csv ================================================ 9F32,buttons/touchpad 9F34,CAN M defaut 9F38,Display over temperature 9F31,Internal Default 9F33,LVDS default 9F37,Power Supply Monitoring 9F06,Keyboard internal failure 9307,Backlight default 9F08,Keyboard CAN communication failure ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/MIU_Fields.csv ================================================ ,734,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,734,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming ,734,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnostic ,734,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,734,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,734,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,734,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,734,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,734,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,734,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,734,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,734,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,734,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,734,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,734,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,734,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,734,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,734,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,734,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,734,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,734,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,734,40,47,1,0,0,,1904000000FF,5904000000FF,ff,DTCSnapshotRecordNumber ,734,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,734,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,734,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,734,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,734,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,734,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,734,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,734,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,734,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,734,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,37639:Backlight default;40754:buttons/touchpad;40756:CAN M defaut;40753:Internal Default;40712:Keyboard CAN communication failure;40710:Keyboard internal failure;40755:LVDS default;40759:Power Supply Monitoring;40760:Display over temperature ,734,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,734,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,734,16,31,1,0,0,,1914,5914,ff,DTCDeviceIdentifier,37639:Backlight default;40754:buttons/touchpad;40756:CAN M defaut;40753:Internal Default;40712:Keyboard CAN communication failure;40710:Keyboard internal failure;40755:LVDS default;40759:Power Supply Monitoring;40760:Display over temperature ,734,32,39,1,0,0,,1914,5914,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,734,40,47,1,0,0,,1914,5914,ff,DTCFaultDetectionCounter ,734,24,31,1,0,0,,220108,620108,ff,I/O control Telltales.States,1:ON;2:OFF ,734,24,31,.4,0,1,%,220115,620115,ff,I/O status PWM Display ,734,24,31,1,0,0,,220116,620116,ff,I/O control Display Color.Values,0:$00 = Black;1:$01 = Red;2:$02 = Green;3:$03 = Blue;4:$04 = White ,734,24,31,.4,0,1,%,220204,620204,ff,Global_dimming.Max_Symbol ,734,32,39,.4,0,1,%,220204,620204,ff,Global_dimming.Min_Symbol ,734,40,47,.4,0,1,%,220204,620204,ff,Global_dimming.Max_Display_Night ,734,48,55,.4,0,1,%,220204,620204,ff,Global_dimming.Min_Display_Night ,734,56,63,.4,0,1,%,220204,620204,ff,Global_dimming.Max_Display_day ,734,64,71,.4,0,1,%,220204,620204,ff,Global_dimming.Min_Display_day ,734,72,79,.4,0,1,%,220204,620204,ff,Global_dimming.Max_LCD_Night ,734,80,87,.4,0,1,%,220204,620204,ff,Global_dimming.Min_LCD_Night ,734,88,95,.4,0,1,%,220204,620204,ff,Global_dimming.Max_LCD_Day ,734,96,103,.4,0,1,%,220204,620204,ff,Global_dimming.Min_LCD_Day ,734,104,111,.4,0,1,%,220204,620204,ff,Global_dimming.Day_Telltale ,734,112,119,.4,0,1,%,220204,620204,ff,Global_dimming.Night_Telltale ,734,120,127,.4,0,1,%,220204,620204,ff,Global_dimming.Max_Climate_Symbol ,734,128,135,.4,0,1,%,220204,620204,ff,Global_dimming.Min_Climate_Symbol ,734,31,31,1,0,0,,220218,620218,ff,CAN transfert mission,0:CAN GW deactivated;1:CAN GW activated ,734,24,31,1,0,0,,220236,620236,ff,Max_EEPROM_Default ,734,24,31,.05,0,2,,220260,620260,ff,SmoothingLow.K_value ,734,32,39,.05,0,2,,220260,620260,ff,SmoothingLow.J_value ,734,44,47,5,0,0,ms,220260,620260,ff,SmoothingLow.TE_value ,734,24,31,1,0,0,,220301,620301,ff,HW_Reset_Counter ,734,24,31,1,0,0,,220302,620302,ff,SW_Reset_Counter ,734,24,31,1,0,0,,220321,620321,ff,EEPROM_default ,734,24,103,1,0,0,,22F012,62F012,2ff,Operationnal_Reference ,734,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,734,24,31,1,0,0,,22F0D1,62F0D1,ff,DTCoccurenceCounter ,734,24,39,.001,0,3,V,22F0D2,62F0D2,ff,BaterryVoltage ,734,24,31,1,40,0,°C,22F0D3,62F0D3,ff,Display_Temperature ,734,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,734,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,734,24,103,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,734,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,734,24,159,1,0,0,,22F190,62F190,2ff,VIN ,734,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,734,24,79,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,734,24,79,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,734,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,734,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/MIU_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adj. failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or sys. operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/Navigation-UCC-ITM_Dtcs.csv ================================================ 9341,Internal self-diagnosis abnormality_Others 9311,Rear Left Loudspeaker 930B,Rear Right Loudspeaker 930D,Front Right Loudspeaker 930F,Front Left Loudspeaker 9320,Rear Right Tweeter 9321,Front Right Tweeter 9322,Front Left Tweeter 9323,Rear Left Tweeter 9346,GNSS antenna 9315,AM/FM1 antenna supply 9316,FM2 antenna supply D000,CAN communication D300,AV Communication 93EC,Configuration error2 and Factory mode 9382,Amp temperature up 9383,Angle sensor calibration 9381,ETC self-diagnosis abnormality 933C,AMP connection abnormality 933B,Beacon unit connection abnormality 9360,Cluster meter connection abnormality 9303,DAB antenna connection abnormality 93DF,DSRC unit connection abnormality 9333,D-TV antenna 1 connection abnormality 9334,D-TV antenna 2 connection abnormality 9317,SXM antenna connection abnormality 9332,MCH1 External Aux IN 932A,MCH1 external USB 93D9,MCH1 external USB_Comm 932C,TCU external USB 93E5,TCU external USB_Comm 933A,CVBS IN AVM line 9339,CVBS IN rear cam line 9375,Rear camera Power supply 93DD,LVDS IN CP Line 9351,ECU Amplifier 93CF,ECU Buttons 9342,Locked ECU 9309,System ON 9347,ECU Bluetooth module 935E,ECU Fan 9380,ECU Wifi module C079,Bus off (Ext-CAN) 9328,External Microphone signal line 1 9329,External Microphone signal line 2 9372,RearSwitch connection abnormality E141,Lost communication with Automatic Transmission on Powertrain CAN E14E,lost communication with Cluster on V1 CAN E14F,lost communication with Body Control Module E159,lost communication with Electric Powered Steering on V1 CAN E148,lost communication with Electronic Stability Control on IC CAN E15B,lost communication with Underhood Switching Module E16B,lost communication with Front Camera E176,lost communication with Integrated Dynamics-control on chassis CAN E165,lost communication with Ultra Sonic Adas E104,lost communication with Four Wheels Steering E175,lost communication with Around view monitoring E118,lost communication with Hand free Module E153,lost communication with Climate Control E173,lost communication with Head Up display on multimedia CAN E16D,lost communication with Telematic Control Unit on V1 CAN E150,lost communication with Airbag Control Unit E152,lost communication with Advanced driver assistance system E16E,lost communication with Blind Sport Warning Right E140,lost communication with Engine Control Module E143,lost communication with Hybrid Electric Vehicle Control E187,lost communication with Scene recorder E164,lost communication with Automatic Driver Seat positionning E177,lost communication with Seat Passenger E023,lost communication with Central Panel E24E,lost communication with Cluster on multimedia CAN E025,lost communication with AMP on V1 CAN E26D,lost communication with Telematic Control Unit on multimedia CAN 9384,2nd Display self-diagnosis abnormality 93C1,RR Display self-diagnosis abnormality 93C2,RL Display self-diagnosis abnormality 93C3,RR Display High temperature 93C4,RL Display High temperature 93C5,RSE Self diagnosis abnormality 93C6,RSE High Temperature 9335,D-TV antenna 3 connection abnormality 9336,D-TV antenna 4 connection abnormality 9366,Media Box Connection abnormality 9370,2nd Display connection abnormality 9371,RSE connection abnormality 937A,Integrated Switch connection abnormality 937B,DTV Box UART connection abnormality 937C,DTV Box Power supply 93EB,ANC Microphone supply1 9368,External CD Drive disc 936C,External CD Drive 93DE,LVDS IN Media Player 930A,LVDS IN Digital Player 93DA,LVDS IN LVDS Camera 93DB,LVDS IN 2nd Display 93D8,LVDS IN DTV Box 93AF,AUDIO IN RSE 9343,ECU ROM 9344,ECU EEPROM 9345,ECU Gyro 9356,ECU DSP E768,lost communication with Gateway AE17,TLS Session error 9F0B,mic1 input 9F10,mic2 input 9F15,mic3 input 9F1A,mic4 input 9F01,TACHO Pulse 9A00,speaker DTC 1 9A01,speaker DTC 2 9A02,speaker DTC 3 9A03,speaker DTC 4 9A04,speaker DTC 5 9A05,speaker DTC 6 9A06,speaker DTC 7 9A07,speaker DTC 8 9A08,speaker DTC 9 9A09,speaker DTC 10 9A0A,speaker DTC 11 9A0B,speaker DTC 12 9A0C,speaker DTC 13 9A0D,speaker DTC 14 9A0E,speaker DTC 15 9A0F,speaker DTC 16 9A10,speaker DTC 17 9A11,speaker DTC 18 9A12,speaker DTC 19 9A13,speaker DTC 20 9A14,speaker DTC 21 9A15,speaker DTC 22 9A16,speaker DTC 23 9A17,speaker DTC 24 9A18,speaker DTC 25 9A19,speaker DTC 26 9A1A,speaker DTC 27 9A1B,speaker DTC 28 9A1C,speaker DTC 29 9A1D,speaker DTC 30 9A1E,speaker DTC 31 9A1F,speaker DTC 32 9A20,speaker DTC 33 9A21,speaker DTC 34 9A22,speaker DTC 35 9A23,speaker DTC 36 9A24,speaker DTC 37 9A25,speaker DTC 38 9A26,speaker DTC 39 9A27,speaker DTC 40 9A28,speaker DTC 41 9A29,speaker DTC 42 9A2A,speaker DTC 43 9A2B,speaker DTC 44 9A2C,speaker DTC 45 9A2D,speaker DTC 46 9A2E,speaker DTC 47 9A2F,speaker DTC 48 9A30,speaker DTC 49 9A31,speaker DTC 50 9A32,speaker DTC 51 9A33,speaker DTC 52 9A34,speaker DTC 53 9A35,speaker DTC 54 9A36,speaker DTC 55 9A37,speaker DTC 56 9A38,speaker DTC 57 9A39,speaker DTC 58 9A3A,speaker DTC 59 9A3B,speaker DTC 60 9A3C,speaker DTC 61 9A3D,speaker DTC 62 9A3E,speaker DTC 63 9A3F,speaker DTC 64 9A40,speaker DTC 65 9A41,speaker DTC 66 9A42,speaker DTC 67 9A43,speaker DTC 68 9A44,speaker DTC 69 9A45,speaker DTC 70 9A46,speaker DTC 71 9A47,speaker DTC 72 9A48,speaker DTC 73 9A49,speaker DTC 74 9A4A,speaker DTC 75 9A4B,speaker DTC 76 9A4C,speaker DTC 77 9A4D,speaker DTC 78 9A4E,speaker DTC 79 9A4F,speaker DTC 80 9A50,speaker DTC 81 9A51,speaker DTC 82 9A52,speaker DTC 83 9A53,speaker DTC 84 9A54,speaker DTC 85 9A55,speaker DTC 86 9A56,speaker DTC 87 9A57,speaker DTC 88 9A58,speaker DTC 89 9A59,speaker DTC 90 9A5A,speaker DTC 91 9A5B,speaker DTC 92 9A5C,speaker DTC 93 9A5D,speaker DTC 94 9A5E,speaker DTC 95 9A5F,speaker DTC 96 9A60,speaker DTC 97 9A61,speaker DTC 98 9A62,speaker DTC 99 9A63,speaker DTC 100 9A64,speaker DTC 101 9A65,speaker DTC 102 9A66,speaker DTC 103 9A67,speaker DTC 104 9A68,speaker DTC 105 9A69,speaker DTC 106 9A6A,speaker DTC 107 9A6B,speaker DTC 108 9A6C,speaker DTC 109 9A6D,speaker DTC 110 9A6E,speaker DTC 111 9A6F,speaker DTC 112 9A70,speaker DTC 113 9A71,speaker DTC 114 9A72,speaker DTC 115 9A73,speaker DTC 116 9A74,speaker DTC 117 9A75,speaker DTC 118 9A76,speaker DTC 119 9A77,speaker DTC 120 9A78,speaker DTC 121 9A79,speaker DTC 122 9A7A,speaker DTC 123 9A7B,speaker DTC 124 9A7C,speaker DTC 125 9A7D,speaker DTC 126 9A7E,speaker DTC 127 9A7F,speaker DTC 128 9A80,speaker DTC 129 9A81,speaker DTC 130 9A82,speaker DTC 131 9A83,speaker DTC 132 9A84,speaker DTC 133 9A85,speaker DTC 134 9A86,speaker DTC 135 9A87,speaker DTC 136 9A88,speaker DTC 137 9A89,speaker DTC 138 9A8A,speaker DTC 139 9A8B,speaker DTC 140 AE38,Vnext Master Authentication NOK AE39,Vnext Regional Authentication NOK AE3A,Vnext Master timeout AE3B,Vnext Regional timeout AE3C,Unknown Part-ID AE3D,Bad Pairing A-IVI & VIN AE3E,No Certificate available AE40,Part Certificate Storage error AE41,A-IVI Authentication Fails AE42,A-IVI no Region Setting AE43,A-IVI Invalid Region Setting AE44,Region Setting Storage error AE45,A-IVI no Partition Setting AE46,A-IVI Invalid Partition Setting AE47,Partition Setting Storage error AE48,Service Check not complete AE21,Invalid A-IVI certificate E00A,lost communication with V-DIST (RSE) on multimedia CAN D600,Front Left-DOOR speaker output D608,Front Right-DOOR speaker output D711,Rear Right-DOOR woofer output D709,Rear Left-DOOR woofer output 9F0A,Mic1 input old 932E,A+T BOX/ETC2.0 USB 93D7,A+TBOX Internal failure E754,lost communication with gateway 3.0 E075,lost communication with AMP AE19,Vnext configuration discarded AE3F,Part certificate verification fails ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/Navigation-UCC-ITM_Fields.csv ================================================ ,767,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,767,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Reprog ,767,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,767,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,767,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,767,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTCFormat;1:ISO_14229-1_DTCFormat;2:SAE_J1939-73_DTCFormat;3:ISO_11992-4_DTCFormat;4:SAE_J2012-DA_WWHOBD_DTCFormat ,767,32,47,1,0,0,,1901FF,5901FF,4ff,DTCCount ,767,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,767,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD,49273:BUS off (Ext-CAN) ,767,40,43,1,0,0,,1902FF,5902FF,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,767,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,767,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested ,767,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle ,767,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,767,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,767,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,767,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC ,767,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle ,767,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,767,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,767,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,767,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,767,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,767,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,767,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,767,31,31,1,0,0,,220100,620100,ff,LIN_OUT.SystemON,0:Not active;1:Active ,767,29,29,1,0,0,,220101,620101,ff,LIN_IN.MR out,0:Not active;1:Active ,767,30,30,1,0,0,,220101,620101,ff,LIN_IN.PKB,0:Not active;1:Active ,767,31,31,1,0,0,,220101,620101,ff,LIN_IN.IGN,0:Not active;1:Active ,767,32,32,1,0,0,,220101,620101,ff,LIN_IN.Auto ACC,0:Not active;1:Active ,767,33,33,1,0,0,,220101,620101,ff,LIN_IN.ACC,0:Not active;1:Active ,767,34,34,1,0,0,,220101,620101,ff,LIN_IN.Info_Aux_IN,0:Jack not connected;1:Jack connected ,767,35,35,1,0,0,,220101,620101,ff,LIN_IN.Info_Aux_IN_2,0:Jack not connected;1:Jack connected ,767,36,36,1,0,0,,220101,620101,ff,LIN_IN.MuteTCU,0:Mute OFF;1:Mute ON ,767,37,37,1,0,0,,220101,620101,ff,LIN_IN.REV,0:Not active;1:Active ,767,38,38,1,0,0,,220101,620101,ff,LIN_IN.Illumination,0:Not active;1:Active ,767,39,39,1,0,0,,220101,620101,ff,LIN_IN.Illumination Con,0:Not active;1:Active ,767,24,31,.2,0,1,V,220200,620200,ff,Batterylevel ,767,24,39,.01,0,2,,220201,620201,ff,Speed information ,767,24,24,1,0,0,,220300,620300,ff,SWRC_button.9,0:Not pressed;1:Pressed ,767,25,25,1,0,0,,220300,620300,ff,SWRC_button.8,0:Not pressed;1:Pressed ,767,26,26,1,0,0,,220300,620300,ff,SWRC_button.6,0:Not pressed;1:Pressed ,767,27,27,1,0,0,,220300,620300,ff,SWRC_button.5,0:Not pressed;1:Pressed ,767,28,28,1,0,0,,220300,620300,ff,SWRC_button.4,0:Not pressed;1:Pressed ,767,29,29,1,0,0,,220300,620300,ff,SWRC_button.3,0:Not pressed;1:Pressed ,767,30,30,1,0,0,,220300,620300,ff,SWRC_button.2,0:Not pressed;1:Pressed ,767,31,31,1,0,0,,220300,620300,ff,SWRC_button.1,0:Not pressed;1:Pressed ,767,38,38,1,0,0,,220300,620300,ff,SWRC_button.11,0:Not pressed;1:Pressed ,767,39,39,1,0,0,,220300,620300,ff,SWRC_button.10,0:Not pressed;1:Pressed ,767,24,24,1,0,0,,220301,620301,ff,SWRC_rotary.'7'UpToDown,0:Not pressed;1:Rotary switch turned Up to Down ,767,25,25,1,0,0,,220301,620301,ff,SWRC_rotary.'7'DownToUp,0:Not pressed;1:Rotary switch turned Down to Up ,767,25,25,1,0,0,,220302,620302,ff,OSW.Key-7,0:Not pressed;1:Pressed ,767,26,26,1,0,0,,220302,620302,ff,OSW.PTT,0:Not pressed;1:Pressed ,767,27,27,1,0,0,,220302,620302,ff,OSW.Phone,0:Not pressed;1:Pressed ,767,28,28,1,0,0,,220302,620302,ff,OSW.Key-3,0:Not pressed;1:Pressed ,767,29,29,1,0,0,,220302,620302,ff,OSW.Key-4,0:Not pressed;1:Pressed ,767,30,30,1,0,0,,220302,620302,ff,OSW.Key-5,0:Not pressed;1:Pressed ,767,31,31,1,0,0,,220302,620302,ff,OSW.Key-6,0:Not pressed;1:Pressed ,767,24,24,1,0,0,,220303,620303,ff,CSW.rotaryAnticlockwise,0:Not pressed;1:Pressed ,767,25,25,1,0,0,,220303,620303,ff,CSW.rotaryClockwise,0:Not pressed;1:Pressed ,767,26,26,1,0,0,,220303,620303,ff,CSW.rotaryRight,0:Not pressed;1:Pressed ,767,27,27,1,0,0,,220303,620303,ff,CSW.rotaryLeft,0:Not pressed;1:Pressed ,767,28,28,1,0,0,,220303,620303,ff,CSW.rotaryDown,0:Not pressed;1:Pressed ,767,29,29,1,0,0,,220303,620303,ff,CSW.rotaryUp,0:Not pressed;1:Pressed ,767,30,30,1,0,0,,220303,620303,ff,CSW.rotaryPush,0:Not pressed;1:Pressed ,767,36,36,1,0,0,,220303,620303,ff,CSW.button4,0:Not pressed;1:Pressed ,767,37,37,1,0,0,,220303,620303,ff,CSW.button3,0:Not pressed;1:Pressed ,767,38,38,1,0,0,,220303,620303,ff,CSW.button2,0:Not pressed;1:Pressed ,767,39,39,1,0,0,,220303,620303,ff,CSW.button1,0:Not pressed;1:Pressed ,767,27,27,1,0,0,,220304,620304,ff,CP_buttons.button5,0:Not pressed;1:Pressed ,767,28,28,1,0,0,,220304,620304,ff,CP_buttons.button4,0:Not pressed;1:Pressed ,767,29,29,1,0,0,,220304,620304,ff,CP_buttons.button3,0:Not pressed;1:Pressed ,767,30,30,1,0,0,,220304,620304,ff,CP_buttons.button2,0:Not pressed;1:Pressed ,767,31,31,1,0,0,,220304,620304,ff,CP_buttons.button1,0:Not pressed;1:Pressed ,767,25,25,1,0,0,,220305,620305,ff,CD_drive.Eject,0:Not pressed;1:Pressed ,767,31,31,1,0,0,,220306,620306,ff,CP_touchscreen,0:Not pressed;1:Pressed ,767,24,143,1,0,0,,220308,620308,2ff,Wifi monitoring.A-IVI IP address ,767,145,147,1,0,0,,220308,620308,ff,Wifi monitoring.Number of connected devices ,767,148,151,1,0,0,,220308,620308,ff,Wifi monitoring.Wifi status,0:Wifi if OFF;1:Wifi is in client mode;2:Wifi is in hotspot mode without internet sharing;3:Wifi is in hotspot mode with internet sharing;4:Wifi is in hotspot mode due to Carplay Wireless ,767,152,152,1,0,0,,220308,620308,ff,Wifi monitoring.Wifi band,0:2.4 GHz band;1:5 GHz band ,767,153,159,1,0,0,,220308,620308,ff,Wifi monitoring.Signal strength (RSSI value) ,767,160,183,1,0,0,,220308,620308,2ff,Wifi monitoring.Wifi channel ,767,184,447,1,0,0,,220308,620308,2ff,Wifi monitoring.User defined SSID (ASCII)  ,767,24,55,1,0,0,,221000,621000,4ff,VID ,767,31,31,1,0,0,,221005,621005,ff,Radio_State,0:Radio is in state Off user;1:Radio is in state On user ,767,24,31,1,0,0,°C,221007,621007,ff,ECU temperature ,767,24,31,1,0,0,,221008,621008,ff,Fan activation counter ,767,24,39,1,0,0,min,221009,621009,ff,Fan activation duration ,767,24,31,1,0,0,,221010,621010,ff,Degraded mode counter ,767,24,39,1,0,0,,221011,621011,ff,Degraded mode cumulated duration ,767,24,39,1,0,0,,221012,621012,ff,Time from engine stopped ,767,24,39,1,0,0,,221100,621100,ff,History.NumberOfReprogramming ,767,24,31,1,0,0,,221102,621102,4ff,HistoricZone0.Year ,767,32,39,1,0,0,,221102,621102,4ff,HistoricZone0.Month ,767,40,47,1,0,0,,221102,621102,4ff,HistoricZone0.Day ,767,48,55,1,0,0,,221102,621102,4ff,HistoricZone0.Hour ,767,56,63,1,0,0,,221102,621102,4ff,HistoricZone0.Minute ,767,64,71,1,0,0,,221102,621102,4ff,HistoricZone0.Second ,767,72,79,1,0,0,,221102,621102,ff,HistoricZone0.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221102,621102,ff,HistoricZone0.Index ,767,96,151,1,0,0,,221102,621102,4ff,HistoricZone0.ReleaseSWversion ,767,152,159,1,0,0,,221102,621102,4ff,HistoricZone0.Padding character ,767,24,31,1,0,0,,221103,621103,4ff,HistoricZone1.Year ,767,32,39,1,0,0,,221103,621103,4ff,HistoricZone1.Mounth ,767,40,47,1,0,0,,221103,621103,4ff,HistoricZone1.Day ,767,48,55,1,0,0,,221103,621103,4ff,HistoricZone1.Hour ,767,56,63,1,0,0,,221103,621103,4ff,HistoricZone1.Minute ,767,64,71,1,0,0,,221103,621103,4ff,HistoricZone1.Second ,767,72,79,1,0,0,,221103,621103,ff,HistoricZone1.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221103,621103,ff,HistoricZone1.Index ,767,96,151,1,0,0,,221103,621103,4ff,HistoricZone1.ReleaseSWversion ,767,152,159,1,0,0,,221103,621103,4ff,HistoricZone1.Padding character ,767,24,31,1,0,0,,221110,621110,4ff,HistoricZoneX0.Year ,767,32,39,1,0,0,,221110,621110,4ff,HistoricZoneX0.Month ,767,40,47,1,0,0,,221110,621110,4ff,HistoricZoneX0.Day ,767,48,55,1,0,0,,221110,621110,4ff,HistoricZoneX0.Hour ,767,56,63,1,0,0,,221110,621110,4ff,HistoricZoneX0.Minute ,767,64,71,1,0,0,,221110,621110,4ff,HistoricZoneX0.Second ,767,72,79,1,0,0,,221110,621110,ff,HistoricZoneX0.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221110,621110,ff,HistoricZoneX0.Index ,767,96,151,1,0,0,,221110,621110,4ff,HistoricZoneX0.ReleaseSWversion ,767,152,159,1,0,0,,221110,621110,4ff,HistoricZoneX0.Padding character ,767,24,31,1,0,0,,221111,621111,4ff,HistoricZoneX1.Year ,767,32,39,1,0,0,,221111,621111,4ff,HistoricZoneX1.Month ,767,40,47,1,0,0,,221111,621111,4ff,HistoricZoneX1.Day ,767,48,55,1,0,0,,221111,621111,4ff,HistoricZoneX1.Hour ,767,56,63,1,0,0,,221111,621111,4ff,HistoricZoneX1.Minute ,767,64,71,1,0,0,,221111,621111,4ff,HistoricZoneX1.Second ,767,72,79,1,0,0,,221111,621111,ff,HistoricZoneX1.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221111,621111,ff,HistoricZoneX1.Index ,767,96,151,1,0,0,,221111,621111,4ff,HistoricZoneX1.ReleaseSWversion ,767,152,159,1,0,0,,221111,621111,4ff,HistoricZoneX1.Padding character ,767,24,31,1,0,0,,221112,621112,4ff,HistoricZoneX2.Year ,767,32,39,1,0,0,,221112,621112,4ff,HistoricZoneX2.Month ,767,40,47,1,0,0,,221112,621112,4ff,HistoricZoneX2.Day ,767,48,55,1,0,0,,221112,621112,4ff,HistoricZoneX2.Hour ,767,56,63,1,0,0,,221112,621112,4ff,HistoricZoneX2.Minute ,767,64,71,1,0,0,,221112,621112,4ff,HistoricZoneX2.Second ,767,72,79,1,0,0,,221112,621112,ff,HistoricZoneX2.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221112,621112,ff,HistoricZoneX2.Index ,767,96,151,1,0,0,,221112,621112,4ff,HistoricZoneX2.ReleaseSWversion ,767,152,159,1,0,0,,221112,621112,4ff,HistoricZoneX2.Padding character ,767,24,31,1,0,0,,221113,621113,4ff,HistoricZoneX3.Year ,767,32,39,1,0,0,,221113,621113,4ff,HistoricZoneX3.Month ,767,40,47,1,0,0,,221113,621113,4ff,HistoricZoneX3.Day ,767,48,55,1,0,0,,221113,621113,4ff,HistoricZoneX3.Hour ,767,56,63,1,0,0,,221113,621113,4ff,HistoricZoneX3.Minute ,767,64,71,1,0,0,,221113,621113,4ff,HistoricZoneX3.Second ,767,72,79,1,0,0,,221113,621113,ff,HistoricZoneX3.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221113,621113,ff,HistoricZoneX3.Index ,767,96,151,1,0,0,,221113,621113,4ff,HistoricZoneX3.ReleaseSWversion ,767,152,159,1,0,0,,221113,621113,4ff,HistoricZoneX3.Padding character ,767,24,31,1,0,0,,221114,621114,4ff,HistoricZoneX4.Year ,767,32,39,1,0,0,,221114,621114,4ff,HistoricZoneX4.Mounth ,767,40,47,1,0,0,,221114,621114,4ff,HistoricZoneX4.Day ,767,48,55,1,0,0,,221114,621114,4ff,HistoricZoneX4.Hour ,767,56,63,1,0,0,,221114,621114,4ff,HistoricZoneX4.Minute ,767,64,71,1,0,0,,221114,621114,4ff,HistoricZoneX4.Second ,767,72,79,1,0,0,,221114,621114,ff,HistoricZoneX4.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221114,621114,ff,HistoricZoneX4.Index ,767,96,151,1,0,0,,221114,621114,4ff,HistoricZoneX4.ReleaseSWversion ,767,152,159,1,0,0,,221114,621114,4ff,HistoricZoneX4.Padding character ,767,24,31,1,0,0,,221115,621115,4ff,HistoricZoneX5.Year ,767,32,39,1,0,0,,221115,621115,4ff,HistoricZoneX5.Month ,767,40,47,1,0,0,,221115,621115,4ff,HistoricZoneX5.Day ,767,48,55,1,0,0,,221115,621115,4ff,HistoricZoneX5.Hour ,767,56,63,1,0,0,,221115,621115,4ff,HistoricZoneX5.Minute ,767,64,71,1,0,0,,221115,621115,4ff,HistoricZoneX5.Second ,767,72,79,1,0,0,,221115,621115,ff,HistoricZoneX5.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221115,621115,ff,HistoricZoneX5.Index ,767,96,151,1,0,0,,221115,621115,4ff,HistoricZoneX5.ReleaseSWversion ,767,152,159,1,0,0,,221115,621115,4ff,HistoricZoneX5.Padding character ,767,24,31,1,0,0,,221116,621116,4ff,HistoricZoneX6.Year ,767,32,39,1,0,0,,221116,621116,4ff,HistoricZoneX6.Month ,767,40,47,1,0,0,,221116,621116,4ff,HistoricZoneX6.Day ,767,48,55,1,0,0,,221116,621116,4ff,HistoricZoneX6.Hour ,767,56,63,1,0,0,,221116,621116,4ff,HistoricZoneX6.Minute ,767,64,71,1,0,0,,221116,621116,4ff,HistoricZoneX6.Second ,767,72,79,1,0,0,,221116,621116,ff,HistoricZoneX6.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221116,621116,ff,HistoricZoneX6.Index ,767,96,151,1,0,0,,221116,621116,4ff,HistoricZoneX6.ReleaseSWversion ,767,152,159,1,0,0,,221116,621116,4ff,HistoricZoneX6.Padding character ,767,24,31,1,0,0,,221117,621117,4ff,HistoricZoneX7.Year ,767,32,39,1,0,0,,221117,621117,4ff,HistoricZoneX7.Month ,767,40,47,1,0,0,,221117,621117,4ff,HistoricZoneX7.Day ,767,48,55,1,0,0,,221117,621117,4ff,HistoricZoneX7.Hour ,767,56,63,1,0,0,,221117,621117,4ff,HistoricZoneX7.Minute ,767,64,71,1,0,0,,221117,621117,4ff,HistoricZoneX7.Second ,767,72,79,1,0,0,,221117,621117,ff,HistoricZoneX7.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221117,621117,ff,HistoricZoneX7.Index ,767,96,151,1,0,0,,221117,621117,4ff,HistoricZoneX7.ReleaseSWversion ,767,152,159,1,0,0,,221117,621117,4ff,HistoricZoneX7.Padding character ,767,24,31,1,0,0,,221118,621118,4ff,HistoricZoneX8.Year ,767,32,39,1,0,0,,221118,621118,4ff,HistoricZoneX8.Month ,767,40,47,1,0,0,,221118,621118,4ff,HistoricZoneX8.Day ,767,48,55,1,0,0,,221118,621118,4ff,HistoricZoneX8.Hour ,767,56,63,1,0,0,,221118,621118,4ff,HistoricZoneX8.Minute ,767,64,71,1,0,0,,221118,621118,4ff,HistoricZoneX8.Second ,767,72,79,1,0,0,,221118,621118,ff,HistoricZoneX8.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221118,621118,ff,HistoricZoneX8.Index ,767,96,151,1,0,0,,221118,621118,4ff,HistoricZoneX8.ReleaseSWversion ,767,152,159,1,0,0,,221118,621118,4ff,HistoricZoneX8.Padding character ,767,24,31,1,0,0,,221119,621119,4ff,HistoricZoneX9.Year ,767,32,39,1,0,0,,221119,621119,4ff,HistoricZoneX9.Month ,767,40,47,1,0,0,,221119,621119,4ff,HistoricZoneX9.Day ,767,48,55,1,0,0,,221119,621119,4ff,HistoricZoneX9.Hour ,767,56,63,1,0,0,,221119,621119,4ff,HistoricZoneX9.Minute ,767,64,71,1,0,0,,221119,621119,4ff,HistoricZoneX9.Second ,767,72,79,1,0,0,,221119,621119,ff,HistoricZoneX9.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221119,621119,ff,HistoricZoneX9.Index ,767,96,151,1,0,0,,221119,621119,4ff,HistoricZoneX9.ReleaseSWversion ,767,152,159,1,0,0,,221119,621119,4ff,HistoricZoneX9.Padding character ,767,24,55,1,0,0,s,222106,622106,1ff,Xcall_config.status_display_time ,767,56,63,1,0,0,,222106,622106,ff,Xcall_config.maximum_number_of_data_sets ,767,64,71,1,0,0,,222106,622106,ff,Xcall_config.maximum_POI_number_within_data_set ,767,72,87,1,0,0,s,222106,622106,ff,Xcall_config.call_display_status_reaction ,767,24,223,1,0,0,,222107,622107,2ff,Connectivity configuration.URL ,767,24,24,1,0,0,,222108,622108,ff,HMI config.CFG_DSI_Settings,0:Absent;1:Present ,767,25,25,1,0,0,,222108,622108,ff,HMI config.CFG_Cluster_style_forMEX,0:Cluster 7inch;1:Cluster 10inch ,767,26,26,1,0,0,,222108,622108,ff,HMI config.AIR_FRESHNER_CF,0:Absent;1:Present ,767,27,27,1,0,0,,222108,622108,ff,HMI config.CFG_HeatedWindscreen,0:Absent;1:Present ,767,28,28,1,0,0,,222108,622108,ff,HMI config.CFG_RearClim,0:Absent;1:Present ,767,29,29,1,0,0,,222108,622108,ff,HMI config.CFG_Dualzone_Monozone,0:monozone display;1:dualzone display ,767,30,30,1,0,0,,222108,622108,ff,HMI config.CFG_Color_selection,0:Absent;1:Present ,767,31,31,1,0,0,,222108,622108,ff,HMI config.CFG_Cluster_style,0:Absent;1:Present ,767,32,33,1,0,0,,222108,622108,ff,HMI config.CFG_Seat_massage,0:without massage;1:with driver massage;2:with driver and passenger massage;3:not used ,767,34,35,1,0,0,,222108,622108,ff,HMI config.CFG_Heated_ventilated_seats,0:without heating and ventilating;1:with heating only;2:with ventilating;3:with heating and ventilating ,767,36,36,1,0,0,,222108,622108,ff,HMI config.CFG_HMD,0:Absent;1:Present ,767,37,37,1,0,0,,222108,622108,ff,HMI config.CFG_RVC_dynamic_guidelines,0:Absent;1:Present ,767,38,38,1,0,0,,222108,622108,ff,HMI config.CFG_RVC_fixed_guidelines,0:Absent;1:Present ,767,39,39,1,0,0,,222108,622108,ff,HMI config.CFG_Synchronize,0:Absent;1:Present ,767,40,40,1,0,0,,222108,622108,ff,HMI config.CFG_AQS_Histogram,0:Absent;1:Present ,767,41,41,1,0,0,,222108,622108,ff,HMI config.CFG_Fragance,0:Absent;1:Present ,767,42,42,1,0,0,,222108,622108,ff,HMI config.CFG_Ionizer,0:Absent;1:Present ,767,43,43,1,0,0,,222108,622108,ff,HMI config.CFG_FLOW_SED_ACTIVATION,0:Absent;1:Present ,767,44,44,1,0,0,,222108,622108,ff,HMI config.CFG_Memo_seat,0:Absent;1:Present ,767,45,47,1,0,0,,222108,622108,ff,HMI config.CFG_Magic_folding,0:without magic folding;1:with 1/3 - 2/3;2:with 1/3 - 2/3 and 2 seats;3:with 5 seats;4:with 7 seats;5:with 2 seats row 3 ,767,48,48,1,0,0,,222108,622108,ff,HMI config.cf_MPU_WAC_Buzzer,0:absent;1:present ,767,49,49,1,0,0,,222108,622108,ff,HMI config.CFG_ADAS_RCTA,0:Absent;1:Present ,767,50,50,1,0,0,,222108,622108,ff,HMI config.CFG_EcoMode,0:Absent;1:Present ,767,51,51,1,0,0,,222108,622108,ff,HMI config.CFG_OffBoard_consulting,0:Absent;1:Present ,767,52,52,1,0,0,,222108,622108,ff,HMI config.CFG_DimmingStrategy,0:by meter;1:by head-unit ,767,53,54,1,0,0,,222108,622108,ff,HMI config.CFG_RemoteEngineStart,0:RES not present;1:RES without additional boiler;2:RES with additional boiler;3:not used ,767,55,55,1,0,0,,222108,622108,ff,HMI config.CFG_AmbientLighting,0:Absent;1:Present ,767,56,56,1,0,0,,222108,622108,ff,HMI config.CFG_ELF,0:ELF (contract) is not required;1:ELF (contract) is required ,767,57,57,1,0,0,,222108,622108,ff,HMI config.cf_MPU_FlashersVolumeSelection,0:Absent;1:Present ,767,58,58,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AutoFrontWiper,0:Absent;1:Present ,767,59,59,1,0,0,,222108,622108,ff,HMI config.cf_MPU_RearWiper,0:Absent;1:Present ,767,60,60,1,0,0,,222108,622108,ff,HMI config.CFG_DRIVECO,0:Absent;1:Present ,767,61,63,1,0,0,,222108,622108,ff,HMI config.CFG_VehicleMode,0:ICE;1:EV;2:HEV;3:PHEV ,767,64,64,1,0,0,,222108,622108,ff,HMI config.cf_MPU_MirrorsFolding,0:Absent;1:Present ,767,65,65,1,0,0,,222108,622108,ff,HMI config.cf_MPU_WAC_APRUN,0:Absent;1:Present ,767,66,66,1,0,0,,222108,622108,ff,HMI config.cf_MPU_WAC_SilentMode,0:Absent;1:Present ,767,67,67,1,0,0,,222108,622108,ff,HMI config.cf_MPU_HandFreeLock_Unlock,0:Absent;1:Present ,767,68,68,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AutoLockUp,0:Absent;1:Present ,767,69,69,1,0,0,,222108,622108,ff,HMI config.cf_MPU_SingleDoorOpening,0:Absent;1:Present ,767,70,70,1,0,0,,222108,622108,ff,HMI config.cf_MPU_FRWiperDrop,0:Absent;1:Present ,767,71,71,1,0,0,,222108,622108,ff,HMI config.cf_MPU_MotorwayFlashersNb,0:Absent;1:Present ,767,72,72,1,0,0,,222108,622108,ff,HMI config.cf_MPU_ALS_threshold,0:Absent;1:Present ,767,73,73,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AHL_function,0:Absent;1:Present ,767,74,74,1,0,0,,222108,622108,ff,HMI config.cf_MPU_ADB,0:Absent;1:Present ,767,75,75,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AFS,0:Absent;1:Present ,767,76,76,1,0,0,,222108,622108,ff,HMI config.cf_MPU_DrivingSide,0:Absent;1:Present ,767,77,77,1,0,0,,222108,622108,ff,HMI config.cf_MPU_WGS,0:Absent;1:Present ,767,78,78,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AutoFMH,0:Absent;1:Present ,767,79,79,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AutoRelock,0:Absent;1:Present ,767,80,80,1,0,0,,222108,622108,ff,HMI config.ADAS_DangerousArea,0:Absent;1:Present ,767,81,81,1,0,0,,222108,622108,ff,HMI config.ADAS_DW,0:Absent;1:Present ,767,82,82,1,0,0,,222108,622108,ff,HMI config.ADAS_UTA,0:Absent;1:Present ,767,83,83,1,0,0,,222108,622108,ff,HMI config.ADAS_SR,0:Absent;1:Present ,767,84,85,1,0,0,,222108,622108,ff,HMI config.CFG_4WD_HMI,0:no HMI;1:display only torque split HMI;2:display only clinometer HMI;3:display torque split and clinometer HMI ,767,86,87,1,0,0,,222108,622108,ff,HMI config.TPMSMMI_CF,0:TPW is NOT present & TPMS is NOT present;1:TPW is NOT present & TPMS is present;2:TPW is present & TPMS is NOT present ,767,88,88,1,0,0,,222108,622108,ff,HMI config.ADAS_PSM,0:Absent;1:Present ,767,90,91,1,0,0,,222108,622108,ff,HMI config.ADAS_LDW,0:LDW not present;1:LDW Sound;2:LDW Haptic ,767,92,92,1,0,0,,222108,622108,ff,HMI config.ADAS_LKA,0:Absent;1:Present ,767,93,93,1,0,0,,222108,622108,ff,HMI config.ADAS_OSP,0:Absent;1:Present ,767,94,95,1,0,0,,222108,622108,ff,HMI config.ADAS_AEB,0:AEB not present;1:FCW present;2:AEB present ,767,96,97,1,0,0,,222108,622108,ff,HMI config.ADAS_UPA_Visual,0:UPA not present;1:UPA Rear;2:UPA Rear/front ,767,98,98,1,0,0,,222108,622108,ff,HMI config.Display format,0:landscape;1:portrait ,767,99,100,1,0,0,,222108,622108,ff,HMI config.ADAS_UPA_Audio,0:UPA audio not present;1:UPA audio without settings;2:UPA audio with settings ,767,101,101,1,0,0,,222108,622108,ff,HMI config.ADAS_FKP,0:Absent;1:Present ,767,102,103,1,0,0,,222108,622108,ff,HMI config.CFG_ADAS_APA,0:APA not present;1:HFP present;2:HFPB present;3:APK present ,767,109,110,1,0,0,,222108,622108,ff,HMI config.ADAS_BSW,0:Not present;1:BSW Radar;2:BSW Sonar ,767,111,111,1,0,0,,222108,622108,ff,HMI config.CFG_ExtendedGrip,0:Absent;1:Present ,767,112,112,1,0,0,,222108,622108,ff,HMI config.CFG_AM,0:absent;1:Present ,767,113,113,1,0,0,,222108,622108,ff,HMI config.CFG_SPVR,0:Absent;1:Present ,767,114,115,1,0,0,,222108,622108,ff,HMI config.CFG_HMI_DATE_DISPLAY,0:absent;1:Numeric;2:Text format ,767,116,116,1,0,0,,222108,622108,ff,HMI config.CFG_SMART_INT_LIGHT,0:Absent;1:Present ,767,117,117,1,0,0,,222108,622108,ff,HMI config.TyrePressureUnit_CF,0:Bar;1:PSI ,767,118,118,1,0,0,,222108,622108,ff,HMI config.CFG_AUDIO_Speakers,0:Front speaker only;1:Rear and front speakers ,767,119,119,1,0,0,,222108,622108,ff,HMI config.Volume_popup_position,0:Top;1:Bottom ,767,120,120,1,0,0,,222108,622108,ff,HMI config.REMOTE_START_2HOURS_CF,0:Absent;1:Present ,767,121,121,1,0,0,,222108,622108,ff,HMI config.CFG_Seat_courtesy,0:Absent;1:Present ,767,122,122,1,0,0,,222108,622108,ff,HMI config.CFG_Clim,0:no clim display;1:clim display ,767,123,123,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_TTS,0:Absent;1:Present ,767,124,124,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_ECOMode,0:Absent;1:Present ,767,125,125,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_STOPANDSTART,0:Absent;1:Present ,767,126,126,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_SAILING,0:Absent;1:Present ,767,127,127,1,0,0,,222108,622108,ff,HMI config.CFG_Forgot_Phone_Popup,0:Absent;1:Present ,767,128,135,1,0,0,s,222108,622108,ff,HMI config.CFG_ADAS_UPA_Mute ,767,136,136,1,0,0,,222108,622108,ff,HMI config.CFG_Favorite,0:Absent;1:Present ,767,137,137,1,0,0,,222108,622108,ff,HMI config.CFG_Edit_Home,0:2 Pages;1:3 Pages ,767,138,139,1,0,0,,222108,622108,ff,HMI config.CFG_Home,0:with menu button;1:without menu buton;2:Not used;3:not used ,767,140,140,1,0,0,,222108,622108,ff,HMI config.TPMS_Autoloc_CF,0:Absent;1:Present ,767,142,143,1,0,0,,222108,622108,ff,HMI config.CFG_Easy_access,0:without easy access;1:with driver easy access;2:with driver and passenger easy access;3:not used ,767,144,144,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_Distance_wo_cons,0:Absent;1:Present ,767,145,145,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_ResetType,0:Absent;1:Present ,767,146,146,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_EcoNav,0:Absent;1:Present ,767,147,147,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_CMI,0:Absent;1:Present ,767,148,148,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_RangeIncrease,0:Absent;1:Present ,767,149,149,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_Distance_wo_accel,0:Absent;1:Present ,767,150,150,1,0,0,,222108,622108,ff,HMI config.CFG_GSI_CONTACT_BREAKER_BUZZER_RST,0:Absent;1:Present ,767,151,151,1,0,0,,222108,622108,ff,HMI config.CFG_EnergyInfo,0:Absent;1:Present ,767,152,159,1,0,0,,222108,622108,ff,HMI config.CFG_ELF_NOTIF_NUMBER ,767,160,160,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL4,0:Absent;1:Present ,767,161,161,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL3,0:Absent;1:Present ,767,162,162,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL2,0:Absent;1:Present ,767,163,163,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL1,0:Absent;1:Present ,767,164,164,1,0,0,,222108,622108,ff,HMI config.CFG_AL_AREA3,0:Absent;1:Present ,767,165,165,1,0,0,,222108,622108,ff,HMI config.CFG_AL_AREA2,0:Absent;1:Present ,767,166,166,1,0,0,,222108,622108,ff,HMI config.CFG_AL_AREA1,0:Absent;1:Present ,767,167,167,1,0,0,,222108,622108,ff,HMI config.CFG_AL_Dynamic Pattern,0:Absent;1:Present ,767,168,168,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL12,0:Absent;1:Present ,767,169,169,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL11,0:Absent;1:Present ,767,170,170,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL10,0:Absent;1:Present ,767,171,171,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL9,0:Absent;1:Present ,767,172,172,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL8,0:Absent;1:Present ,767,173,173,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL7,0:Absent;1:Present ,767,174,174,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL6,0:Absent;1:Present ,767,175,175,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL5,0:Absent;1:Present ,767,176,176,1,0,0,,222108,622108,ff,HMI config.CFG_Dual_Sync_Clim,0:Dual Mode is Activated;1:Sync Mode is Activated ,767,177,177,1,0,0,,222108,622108,ff,HMI config.CFG_AQS_Clim,0:absent;1:present ,767,178,179,1,0,0,,222108,622108,ff,HMI config.CFG_User_Profile,0:User profile not present;1:Not connected user profile present;2:Reserved (connected user profile present);3:not used ,767,180,180,1,0,0,,222108,622108,ff,HMI config.CFG_FLOW_PHEV_ACTIVATION,0:absent;1:present ,767,181,181,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL15,0:Absent;1:Present ,767,182,182,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL14,0:Absent;1:Present ,767,183,183,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL13,0:Absent;1:Present ,767,184,184,1,0,0,,222108,622108,ff,HMI config.REMOTE_FUEL_BURNER_CF,0:Absent;1:Present ,767,185,185,1,0,0,,222108,622108,ff,HMI config.REMOTE_START_CF,0:Absent;1:Present ,767,186,186,1,0,0,,222108,622108,ff,HMI config.CGF_FLOW_EV_ACTIVATION,0:Absent;1:Present ,767,187,187,1,0,0,,222108,622108,ff,HMI config.CFG_Heated_Steering_Wheel_Clim,0:absent;1:present ,767,188,191,1,0,0,,222108,622108,ff,HMI config.Welcome Sequence,0:Without welcome sequence;1:Welcome sequence 1;2:Welcome sequence 2;3:Welcome sequence 3;4:Welcome sequence 4;5:Welcome sequence 5;6:Welcome sequence 6;7:Welcome sequence 7;8:Welcome sequence 8 ,767,24,29,1,0,0,,222109,622109,ff,Sound volume config.MaxVolumeStartup ,767,32,37,1,0,0,,222109,622109,ff,Sound volume config.Ecall_volume ,767,44,47,1,0,0,,222109,622109,ff,Sound volume config.Minimum_volume_set_by_user ,767,48,53,1,0,0,,222109,622109,ff,Sound volume config.Welcome_sequence_volume ,767,56,60,1,0,0,,222109,622109,1ff,Sound volume config.ParkingAids_UPA_gain ,767,64,68,1,0,0,,222109,622109,1ff,Sound volume config.ParkingAids_HFP_gain ,767,72,76,1,0,0,,222109,622109,1ff,Sound volume config.ParkingAids_PSM_gain ,767,80,84,1,0,0,,222109,622109,1ff,Sound volume config.LateralADAS_LDW_gain ,767,88,92,1,0,0,,222109,622109,1ff,Sound volume config.LateralADAS_LKA_gain ,767,96,99,1,0,0,,222109,622109,ff,Sound volume config.ParkingAids_UPA_default_UserVolume,0:OFF;1:Very low;2:Low;3:Medium;4:High;5:Very High ,767,100,103,1,0,0,,222109,622109,ff,Sound volume config.ParkingAids_HFP_default_UserVolume,0:OFF;1:Very low;2:Low;3:Medium;4:High;5:Very High ,767,104,107,1,0,0,,222109,622109,ff,Sound volume config.ParkingAids_PSM_default_UserVolume,0:OFF;1:Very low;2:Low;3:Medium;4:High;5:Very High ,767,108,111,1,0,0,,222109,622109,ff,Sound volume config.LateralADAS_LDW_default_UserVolume,0:OFF;1:Very low;2:Low;3:Medium;4:High;5:Very High ,767,112,115,1,0,0,,222109,622109,ff,Sound volume config.LateralADAS_LKA_default_UserVolume,0:OFF;1:Very low;2:Low;3:Medium;4:High;5:Very High ,767,120,124,1,12,0,,222109,622109,ff,Sound volume config.Beep_Clic_Level ,767,125,125,1,0,0,,222109,622109,ff,Sound volume config.Loudness,0:Disabled;1:Enabled ,767,128,132,1,9,0,,222109,622109,ff,Sound volume config.synth_voice_tonality_bass ,767,136,140,1,9,0,,222109,622109,ff,Sound volume config.synth_voice_tonality_medium ,767,144,148,1,9,0,,222109,622109,ff,Sound volume config.synth_voice_tonality_treble ,767,152,157,1,0,0,,222109,622109,ff,Sound volume config.Cluster_sound_level ,767,24,87,1,0,0,,222110,622110,4ff,HMI config part2.CFG_Displayable_Sys_Lang ,767,88,88,1,0,0,,222110,622110,ff,HMI config part2.CFG_Video,0:Without;1:With ,767,89,89,1,0,0,,222110,622110,ff,HMI config part2.CFG_Messaging,0:Without;1:With ,767,90,90,1,0,0,,222110,622110,ff,HMI config part2.CFG_AQI,0:Without;1:With ,767,91,91,1,0,0,,222110,622110,ff,HMI config part2.CFG_HMI_Temp_PreCond,0:Without;1:With ,767,92,92,1,0,0,,222110,622110,ff,HMI config part2.HEV_Comfort_Battery,0:Without;1:With ,767,93,93,1,0,0,,222110,622110,ff,HMI config part2.CFG_FLOW_HEV_ACTIVATION,0:Without;1:With ,767,94,94,1,0,0,,222110,622110,ff,HMI config part2.CFG_Distribution,0:Without;1:With ,767,95,95,1,0,0,,222110,622110,ff,HMI config part2.CFG_Blower_Setting,0:Without;1:With ,767,100,100,1,0,0,,222110,622110,ff,HMI config part2.CFG_PictureViewer,0:Without;1:With ,767,101,101,1,0,0,,222110,622110,ff,HMI config part2.CFG_PrivacyMode,0:Without;1:With ,767,102,102,1,0,0,,222110,622110,ff,HMI config part2.CFG_Animation,0:Without;1:With ,767,103,103,1,0,0,,222110,622110,ff,HMI config part2.CFG_InfotainmentPicture,0:Without;1:With ,767,24,24,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Present,0:Absent;1:Present ,767,25,27,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Mode_Def,0:Eco;1:Comfort;2:Normal;3:Dynamic;4:Perso ,767,28,30,1,0,0,,222123,622123,ff,MEX configuration.CF_MexSys_Mode,0:SysMode table 1;1:SysMode table 2;2:SysMode table 3;3:SysMode table 4;4:SysMode table 5;5:SysMode table 6;6:SysMode table 7;7:SysMode table 8 ,767,31,31,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ACC,0:Absent;1:Present ,767,32,32,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_EPS,0:Absent;1:Present ,767,33,33,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ADB,0:Absent;1:Present ,767,34,34,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DBL,0:Absent;1:Present ,767,35,37,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Restart,0:Previous;1:Normal;2:Eco;3:Normal if dynamic;4:Eco if dynamic;5:Zen;6:Hybrid;7:Perso ,767,38,38,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Wsequence,0:Absent;1:Present ,767,39,39,1,0,0,,222123,622123,ff,MEX configuration.CF_RangeSaver,0:absent;1:present ,767,40,40,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DUAL,0:Absent;1:Present ,767,41,41,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_VADA,0:Absent;1:Present ,767,42,42,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_4WAS,0:Absent;1:Present ,767,43,43,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_VDC,0:Absent;1:Present ,767,44,44,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ShiftLightSoundAlert,0:Absent;1:Present ,767,45,45,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Pedal,0:Absent;1:Present ,767,46,46,1,0,0,,222123,622123,ff,MEX configuration.CF_DynamicDriveSystem,0:absent;1:present ,767,47,47,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Heel_ToeShifting,0:Absent;1:Present ,767,48,52,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_RAC ,767,53,53,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ThrottleResponse,0:Absent;1:Present ,767,54,54,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_IDM,0:Absent;1:Present ,767,55,55,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_AT,0:Absent;1:Present ,767,56,63,1,0,0,km/h,222123,622123,ff,MEX configuration.CF_Max_Speed ,767,64,65,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_ECO,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,66,67,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_COM,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,68,69,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_NOM,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,70,71,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_DYN,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,72,73,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_PER,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,74,75,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_RAC,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,76,77,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_RAC,0:No change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,78,79,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_RAC,0:No change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,80,81,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_ECO,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,82,83,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_COM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,84,85,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_NOM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,86,87,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_DYN,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,88,89,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_PER,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,90,91,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_ECO,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,92,93,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_COM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,94,95,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_NOM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,96,97,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_DYN,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,98,99,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_PER,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,100,101,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_ECO,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,102,103,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_COM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,104,105,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_NOM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,106,107,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_DYN,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,108,109,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_PER,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,110,111,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_RAC,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,112,116,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_ECO ,767,117,117,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_GearShiftIndicator,0:Absent;1:Present ,767,118,118,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_SynchroRevs,0:Absent;1:Present ,767,119,119,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_RegBrake,0:Absent;1:Present ,767,120,124,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_COM ,767,125,125,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_AmbExhaust,0:Absent;1:Present ,767,126,126,1,0,0,,222123,622123,ff,MEX configuration.CF_COMFORT,0:Absent;1:Present ,767,127,127,1,0,0,,222123,622123,ff,MEX configuration.CF_NORMAL,0:Absent;1:Present ,767,128,132,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_NOM ,767,133,133,1,0,0,,222123,622123,ff,MEX configuration.CF_ECO,0:Absent;1:Present ,767,134,134,1,0,0,,222123,622123,ff,MEX configuration.CF_SPORT,0:Absent;1:Present ,767,135,135,1,0,0,,222123,622123,ff,MEX configuration.CF_RACE,0:Absent;1:Present ,767,136,140,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_DYN ,767,141,141,1,0,0,,222123,622123,ff,MEX configuration.CF_Zen,0:Absent;1:Present ,767,142,142,1,0,0,,222123,622123,ff,MEX configuration.CF_ZEVCityDriving,0:Absent;1:Present ,767,143,143,1,0,0,,222123,622123,ff,MEX configuration.CF_ModeAtEngineStart,0:Not activated;1:Activated ,767,144,148,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_PER ,767,152,156,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_ECO,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,160,164,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_COM,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,168,172,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_NOM,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,176,180,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_DYN,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,184,188,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_PER,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,192,199,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_ECO ,767,200,207,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_COM ,767,208,215,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_NOM ,767,216,223,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_DYN ,767,224,231,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_PER ,767,232,233,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_ECO,0:No Change;1:OFF;2:ON;3:Reserved ,767,234,235,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_COM,0:No Change;1:OFF;2:ON;3:Reserved ,767,236,237,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_NOM,0:No Change;1:OFF;2:ON;3:Reserved ,767,238,239,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_DYN,0:No Change;1:OFF;2:ON;3:Reserved ,767,240,241,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_PER,0:No Change;1:OFF;2:ON;3:Reserved ,767,242,243,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_RAC,0:No Change;1:OFF;2:ON;3:Reserved ,767,244,245,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_RAC,0:No Change;1:Program 1;2:Program 2;3:Program 3 ,767,246,247,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_RAC,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,248,249,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_ECO,0:No change;1:Program 1;2:Program 2;3:Program 3 ,767,250,251,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_COM,0:No change;1:Program 1;2:Program 2;3:Program 3 ,767,252,253,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_NOM,0:No change;1:Program 1;2:Program 2;3:Program 3 ,767,254,255,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_DYN,0:No change;1:Program 1;2:Program 2;3:Program 3 ,767,256,257,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_PER,0:No change;1:Program 1;2:Program 2;3:Program 3 ,767,258,260,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_ECO,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,261,263,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_COM,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,264,266,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_NOM,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,267,269,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_DYN,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,272,274,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_PER,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,275,277,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_RAC,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,280,282,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_ECO,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,284,286,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_RAC,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,287,287,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Engine,0:Absent;1:Present ,767,288,290,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_COM,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,291,295,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_RAC,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,296,298,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_NOM,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,299,301,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_DYN,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,304,306,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_PER,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,307,309,1,0,0,,222123,622123,ff,MEX configuration.CF_MexMode_MMI,0:Mode table 1;1:Mode table 2;2:Mode table 3;3:Mode table 4;4:Mode table 5;5:Mode table 6;6:Mode table 7;7:Mode table 8 ,767,310,311,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_PER,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,312,312,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Comb1,0:Deactivated;1:Activated ,767,313,313,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Comb2,0:Deactivated;1:Activated ,767,314,314,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Comb3,0:Deactivated;1:Activated ,767,315,317,1,0,0,,222123,622123,ff,MEX configuration.CF_Proposed_MexMode,0:Mode table 1;1:Mode table 2;2:Mode table 3;3:Mode table 4;4:Mode table 5;5:Mode table 6;6:Mode table 7;7:Mode table 8 ,767,318,318,1,0,0,,222123,622123,ff,MEX configuration.CF_HMI_sMassage,0:Absent;1:Present ,767,319,319,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_SeatPosition,0:Absent;1:Present ,767,320,320,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_S&S,0:Absent;1:Present ,767,321,321,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_SAILING,0:Absent;1:Present ,767,322,322,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_VADADUAL,0:Absent;1:Present ,767,323,323,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_LC,0:Absent;1:Present ,767,324,324,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_CREEPING,0:Absent;1:Present ,767,325,325,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_HVAC,0:Absent;1:Present ,767,326,326,1,0,0,,222123,622123,ff,MEX configuration.CF_HMI_ALC,0:Absent;1:Present ,767,327,327,1,0,0,,222123,622123,ff,MEX configuration.CF_HMI_DspC,0:Absent;1:Present ,767,328,335,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_RAC ,767,336,337,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_COM,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,338,339,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_DYN,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,340,341,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_ECO,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,342,343,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_NOM,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,344,350,5,0,0,,222123,622123,ff,MEX configuration.CF_Temp_HybTract ,767,24,24,1,0,0,,222301,622301,ff,Lock out development configuration.Navigation destination input restriction,0:Absent;1:Present ,767,25,25,1,0,0,,222301,622301,ff,Lock out development configuration.Phone dial input restriction,0:Absent;1:Present ,767,26,26,1,0,0,,222301,622301,ff,Lock out development configuration.Text input restriction,0:Absent;1:Present ,767,27,27,1,0,0,,222301,622301,ff,Lock out development configuration.System user handbook restriction,0:Absent;1:Present ,767,28,28,1,0,0,,222301,622301,ff,Lock out development configuration.Features tutorials restriction,0:Absent;1:Present ,767,29,29,1,0,0,,222301,622301,ff,Lock out development configuration.SMS text input restriction,0:Absent;1:Present ,767,30,30,1,0,0,,222301,622301,ff,Lock out development configuration.Picture slideshow restriction,0:Absent;1:Present ,767,31,31,1,0,0,,222301,622301,ff,Lock out development configuration.Video playing restriction,0:Absent;1:Present ,767,32,32,1,0,0,,222301,622301,ff,Lock out development configuration.Smooth map scrool operation restriction,0:Absent;1:Present ,767,33,33,1,0,0,,222301,622301,ff,Lock out development configuration.One by one line operation nonMusic list scroll restriction,0:Absent;1:Present ,767,34,34,1,0,0,,222301,622301,ff,Lock out development configuration.Stationary picture indiction restriction,0:Absent;1:Present ,767,35,35,1,0,0,,222301,622301,ff,Lock out development configuration.HMI animations restriction,0:Absent;1:Present ,767,36,36,1,0,0,,222301,622301,ff,Lock out development configuration.Displayed text lenght restriction,0:Absent;1:Present ,767,37,37,1,0,0,,222301,622301,ff,Lock out development configuration.Service activation restriction,0:Absent;1:Present ,767,38,38,1,0,0,,222301,622301,ff,Lock out development configuration.General HMI restriction,0:Absent;1:Present ,767,39,39,1,0,0,,222301,622301,ff,Lock out development configuration.Music/radio cover dsplay restriction,0:Absent;1:Present ,767,40,40,1,0,0,,222301,622301,ff,Lock out development configuration.Nissan 5-operation count restriction,0:Absent;1:Present ,767,41,41,1,0,0,,222301,622301,ff,Lock out development configuration.Picture/text background display restriction,0:Absent;1:Present ,767,42,42,1,0,0,,222301,622301,ff,Lock out development configuration.Map rotation restriction,0:Absent;1:Present ,767,43,43,1,0,0,,222301,622301,ff,Lock out development configuration.Camera settings restriction,0:Absent;1:Present ,767,44,44,1,0,0,,222301,622301,ff,Lock out development configuration.Home menu edition restriction,0:Absent;1:Present ,767,45,45,1,0,0,,222301,622301,ff,Lock out development configuration.User profile restriction,0:Absent;1:Present ,767,46,46,1,0,0,,222301,622301,ff,Lock out development configuration.Pinch in/out operation restriction,0:Absent;1:Present ,767,47,47,1,0,0,,222301,622301,ff,Lock out development configuration.Dragging operation restriction,0:Absent;1:Present ,767,49,49,1,0,0,,222301,622301,ff,Lock out development configuration.One by one line operation Music list scroll restriction,0:Absent;1:Present ,767,50,50,1,0,0,,222301,622301,ff,Lock out development configuration.SXM Stock,0:Absent;1:Present ,767,51,51,1,0,0,,222301,622301,ff,Lock out development configuration.System update restriction,0:Absent;1:Present ,767,52,52,1,0,0,,222301,622301,ff,Lock out development configuration.Audio play automatically restriction,0:Absent;1:Present ,767,53,53,1,0,0,,222301,622301,ff,Lock out development configuration.Renault 8-operation count restriction,0:Absent;1:Present ,767,54,54,1,0,0,,222301,622301,ff,Lock out development configuration.Renault 5-operation count restriction,0:Absent;1:Present ,767,55,55,1,0,0,,222301,622301,ff,Lock out development configuration.Nissan 8-operation count restriction,0:Absent;1:Present ,767,24,183,1,0,0,,223000,623000,2ff,BluetoothDevice.name1 ,767,184,231,1,0,0,,223000,623000,4ff,BluetoothDevice.address1 ,767,232,391,1,0,0,,223000,623000,2ff,BluetoothDevice.name2 ,767,392,439,1,0,0,,223000,623000,4ff,BluetoothDevice.address2 ,767,440,599,1,0,0,,223000,623000,2ff,BluetoothDevice.name3 ,767,600,647,1,0,0,,223000,623000,4ff,BluetoothDevice.address3 ,767,648,807,1,0,0,,223000,623000,2ff,BluetoothDevice.name4 ,767,808,855,1,0,0,,223000,623000,4ff,BluetoothDevice.address4 ,767,856,1015,1,0,0,,223000,623000,2ff,BluetoothDevice.name5 ,767,1016,1063,1,0,0,,223000,623000,4ff,BluetoothDevice.address5 ,767,24,31,1,0,0,,223001,623001,4ff,ANT1.current level Field strength on antenna 1 ,767,32,39,1,0,0,,223001,623001,4ff,ANT1.current Multipath level ,767,40,47,1,0,0,,223001,623001,4ff,ANT1.current Noise level ,767,48,87,1,0,0,,223001,623001,4ff,ANT1.current Frequency value ,767,88,95,1,0,0,,223001,623001,ff,ANT1.Band info,1:FM;2:AM ,767,24,31,1,0,0,,223002,623002,4ff,ANT2.current level Field strength on antenna 2 ,767,32,39,1,0,0,,223002,623002,4ff,ANT2.current Multipath level (0-F) if FM ,767,40,47,1,0,0,,223002,623002,4ff,ANT2.current Noise level (0-F) if FM ,767,48,87,1,0,0,,223002,623002,4ff,ANT2.current Frequency value ,767,88,95,1,0,0,,223002,623002,ff,ANT2.Band info,1:FM ,767,24,31,1,0,0,,223003,623003,4ff,ANT3.Antenna field RSSI [dBm] ,767,32,47,1,0,0,,223003,623003,4ff,ANT3.FIC_BER ,767,48,63,1,0,0,,223003,623003,4ff,ANT3.MSC_BER ,767,64,103,1,0,0,,223003,623003,4ff,ANT3.current Channel Number ,767,104,167,1,0,0,,223003,623003,2ff,ANT3.Service short Name ,767,168,183,1,0,0,,223003,623003,4ff,ANT3.EnsembleID ,767,184,215,1,0,0,,223003,623003,4ff,ANT3.ServiceID ,767,216,231,1,0,0,,223003,623003,4ff,ANT3.CompID ,767,232,239,1,0,0,,223003,623003,ff,ANT3.Band Info,3:DAB+;4:DAB;5:DMB-A;6:DMB-BSAC ,767,24,24,1,0,0,,223004,623004,ff,GPS.Reception_status,0:No satellite;1:At least one satellite ,767,28,31,1,0,0,,223004,623004,ff,GPS.Number_of_satellites ,767,24,31,1,0,0,,223005,623005,ff,CD_Insertion,0:No CD;1:1 CD;255:No available information ,767,24,47,1,0,0,,227001,627001,4ff,BT_HW_identifier ,767,24,47,1,0,0,,227002,627002,4ff,BT_SW_identifier ,767,24,71,1,0,0,,227008,627008,4ff,BT_ECU_address ,767,24,71,1,0,0,,227009,627009,4ff,ECU Wifi address ,767,24,71,1,0,0,,228001,628001,4ff,BluetoothRSSI.Address ,767,72,79,1,127,0,,228001,628001,ff,BluetoothRSSI.Indicator ,767,80,87,1,0,0,,228001,628001,ff,BluetoothRSSI.LinkQuality ,767,24,31,1,0,0,,229000,629000,ff,CDejection,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229001,629001,ff,Tuner,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229002,629002,ff,Loudspeaker,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229005,629005,ff,Graphic display test,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229006,629006,ff,Rear Camera Activation,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229007,629007,ff,Rear Camera Configuration,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229009,629009,ff,System ON output command,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,22900A,62900A,ff,IO.Tweeter_result,0:In progress;1:Done and OK;2:Done and NOK ,767,24,31,1,0,0,,22900B,62900B,ff,IO.Speaker_result,0:In progress;1:Done and OK;2:Done and NOK ,767,24,31,1,0,0,,229010,629010,ff,Touch controller reset command,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229012,629012,ff,Parametric guidelines command,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,32759,1,0,0,,22D000,62D000,4ff,Phone_EC/NR_(NBS) ,767,24,32759,1,0,0,,22D100,62D100,4ff,Phone_EC/NR_(WBS) ,767,24,32759,1,0,0,,22D200,62D200,4ff,VR_Parameter_(Nuance) ,767,24,32759,1,0,0,,22D300,62D300,4ff,CarPlay_Phone_EC/NR_(NBS) ,767,24,32759,1,0,0,,22D400,62D400,4ff,CarPlay_Phone_EC/NR_(WBS) ,767,24,32759,1,0,0,,22D500,62D500,4ff,CarPlay_Facetime_EC/NR_(WBS) ,767,24,32759,1,0,0,,22D600,62D600,4ff,Acoustic_Parameter_(Arkamys) ,767,24,28,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Destination,0:US;1:CAN;2:MEX;3:UK;4:TKY;5:RUS;6:other EUR;7:PRC;8:TWN;9:HKG/Macau;10:GCC;11:EGP;12:ASR/NZE;13:BRA;14:AGT;15:other LAC;16:SAF;17:THI;18:SGP;19:MLY;20:BRN;21:INN;22:VNM;23:PHL;24:IND;25:JPN;26:KOR;27:other GOM;28:ISR ,767,32,47,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Vehicle_Type,0:B07;1:B10;2:B52;3:BBA;4:BFB;5:BFJ;6:BJA;7:DZC;8:FFK;9:FJK;10:GJA;11:HFE;12:HHA;13:HJA;14:HJB;15:HJD;16:HJE;17:HZG;18:HZH;19:HZJ;20:HZK;21:J92;22:JFA;23:JFC;24:KFB;25:KFD;26:KFK;27:KJK;28:L52;29:LFD;30:LFF;31:LFJ;32:LJC;33:RBC;34:RFA;35:RZK;36:UJD;37:C07;38:H79;39:HBC;40:HZC;41:LBC;48:LJH;49:LJL;580:02D (L02D);581:02E (B02E);582:02F (P02F);3354:GD1 (GD1A);3411:D53 (D53H);4678:12F (L12F);4685:12M (L12M);4688:12P (B12P);4929:13A (P13A);8514:21B (L21B);12882:32R (P32R);12883:32S (P32S);12885:32U (J32U);16973:42M (P42M);16974:42N (L42N);16976:42P (L42P);16978:42R (P42R);20065:N61 (N61G);20081:N71 (N71A);20577:P61 (P61G);20593:P71 (P71A);21320:L53 (L53H);21323:53K (L53K);21856:U60;24641:60A (H60A);24903:61G (P61G);24908:61L (H61L) ,767,48,63,1,0,0,kg,22DAB0,62DAB0,ff,Vehicle_Information.Weight_of_vehicle ,767,64,79,1,0,0,mm,22DAB0,62DAB0,ff,Vehicle_Information.Width_of_vehicle ,767,80,95,1,0,0,mm,22DAB0,62DAB0,ff,Vehicle_Information.Height_of_vehicle ,767,96,111,1,0,0,mm,22DAB0,62DAB0,ff,Vehicle_Information.Length_of_vehicle ,767,112,119,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Vehicle-body_shape,0:Default/ Not use;50:Convertible;65:Sedan 2 Door;66:Sedan 4 Door;67:Sedan 4 Door(Wide);69:H/B 2 Door;70:H/B 4 Door;71:Coupe 2 Door;72:Coupe T Bar;73:Wagon 4 Door (Wide);75:H/T 2 Door;76:H/T 2 Door(HighRoof);77:H/T 4 Door;78:H/T 4 Door(Wide);83:Wagon 2 Door;84:Wagon 4 Door(HighRoof);85:Wagon 4 Door(Wide);87:Van 2 Door;89:Van 4 Door;90:Van 4 Door(HighRoof) ,767,123,124,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.TPMS,0:OFF;1:ON (without EUR Regulation);2:ON (with EUR Regulation);3:OFF(with V-CAN Communication) ,767,125,126,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Driving_type,0:Front;1:Rear;2:4WD ,767,127,127,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Steering_position,0:LHD;1:RHD ,767,131,132,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Petrol_type,0:NA;1:Regular;2:Premium;3:Non Petrol ,767,133,135,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Fuel_type,0:Petrol;1:Diesel;2:Hybrid(Diesel);3:Hybrid(Petrol);4:Electricity;5:Plug-in Hybrid ,767,136,136,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.VCAN-MCAN_Gateway_for_ANC/ASC,0:OFF;1:ON ,767,137,139,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Type_of_meter,0:Nissan Type 1;1:Renault V_CAN;2:Renault V_CAN/M_CAN;3:GD1A Type;4:Mitsubishi ,767,141,143,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.PowerPlatform,0:Default;1:Auto_ACC without M-CAN (Nissan CMFB);2:Auto_ACC with M-CAN (Nissan CMFC/D);3:ACC with V-CAN wake-up (Nissan other vehicles);4:V-CAN wake-up C1A (Renault C1A);5:V-CAN wake-up T4VS (Renault T4VS);6:ACC of current vehicle (Reference);7:Auto_ACC with V-CAN (Nissan C1A) ,767,144,151,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.CAN_diversity,0:Slot 0 (Default);1:Slot 1 (C1A);2:Slot 2 (C1R);3:Slot 3 (T4vs);4:Slot 4 (G1);5:Slot 5 (C1N);6:Slot 6 (Old Nissan cars OR Nissan EV cars);7:Slot7 (C1A HS) ,767,152,152,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.CAN_activation_C1A,0:Nissan message set;1:Renault message set ,767,153,155,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.IPA/HFP,0:Not present;1:IPA;2:FAP;3:HFP (Renault) ,767,156,156,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Intelligent_speed_assist,0:OFF;1:ON ,767,157,159,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Steering_SW,0:None (No steering wheel controls available.);1:MCAN;2:Hardwire P42M resistor set;3:Hardwire P32RS/L42P resistor set;4:RVLV 5 contacts;5:RVLV 4 contacts;6:VCAN;7:Daimler version ,767,161,161,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Traffic_sign_recognition,0:Without;1:With ,767,162,164,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Microphone,0:None;1:1 MIC (Renault);2:BFM2;3:BFM3(HDM);4:2 MIC (Renault) ,767,165,167,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.RCS_(Rear_Armrest_Switch),0:Without;1:With(legacy HVAC&AUDIO);2:With(legacy AUDIO);3:With(A-IVI) ,767,168,168,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.ETC2.0,0:Without;1:With ,767,169,170,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.External_CD_drive,0:Without;1:With;2:Auto ,767,173,175,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.IT-Commander_/_Central_Switch,0:Without;1:With (Nissan Type1);2:With (Nissan Type2);3:With (Renault Type1) ,767,177,179,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.TCU,0:Without TCU (Not activate USB DTC detection nor MCAN communication);1:With eCall (Not activate USB DTC detection but activate MCAN communication);2:Without TCU or With eCall (Use MCAN auto-configuration. Not activate USB DTC detection even if TCU is auto-configured);5:With TCU (Activate USB DTC detection and MCAN communication);6:Without TCU or with TCU (Use MCAN auto-configuration. Activate USB DTC detection if TCU is auto-configured) ,767,180,181,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.RSE,0:Without;1:With;2:Auto ,767,182,183,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Media_Player,0:Without;1:With;2:Auto ,767,187,189,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.HEV_Shape_of_body,0:No body shape;1:Sedan;2:SUV;3:Wagon;4:SUV2 ,767,190,191,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.EV_HVAC,0:None;1:EV X12G Type ,767,192,207,.001,0,3,,22DAB0,62DAB0,ff,Vehicle_Information.Motor_efficiency ,767,208,223,.001,0,3,,22DAB0,62DAB0,ff,Vehicle_Information.Reduction_gear_efficiency ,767,224,239,.001,0,3,,22DAB0,62DAB0,ff,Vehicle_Information.Cd_value ,767,240,247,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Charging cable - Connector,0:IEC 62196-2 Type 1 Connector;1:IEC 62196-2 Type 2 Connector;2:China Specific (AC Charging) GBT 20234.2;3:China Specific (DC Charging) GBT 20234.3;4:Chademo;5:IEC 62196-3 type 2 connector CCS (Combo 2);6:SAE J1772 CCS (combo 1);7:not present ,767,248,255,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Charging cable - Spot side Plug,0:Standard Household;1:IEC 62196-2 Type -2;2:IEC 62196-2 Type -3;3:309-Single Phase-Industrial;4:China Infrastructure (AC Charging);5:Korea specific EVSE Plug;6:Not present ,767,256,263,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Vehicle Inlet,0:IEC 62196-2 Type 1 Inlet;1:IEC 62196-2 Type 2 Inlet;2:China Specific (AC Charging) GBT 20234.2;3:China Specific (DC Charging) GBT 20234.3;4:Chademo;5:IEC 62196-3 type 2 inlet CCS (Combo 2);6:SAE J1772 CCS (combo 1);7:Combo 1 + Type 2;8:Chademo + Combo2;9:China specific AC + China specific DC;10:Chademo + Combo 1;11:Combo 2 + Type 1;12:China Specific AC + Chademo;13:China specific AC + Combo 2;14:Combo 1 + China Specific AC;15:not present ,767,264,265,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Motor maximum regenerative power,0:50;1:35 ,767,266,267,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.The maximum motor output power,0:80;1:110;2:180 ,767,268,271,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.CNF_CHG_FACTYPE,0:Standard/Normal Charge;1:Accelerated Charge;2:Fast Charge;3:DC;4:Normal + Accelerated + Fast;5:not present;6:Normal + Accelerated + Fast + DC ,767,279,279,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.BlowerReductionRequest,0:Disabled;1:Enabled ,767,280,280,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Inductive charger,0:Without;1:With ,767,281,281,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.HUD,0:Without;1:With ,767,282,284,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.RADIO SATELLITE SWITCH,0:Version 1;1:Version 2;2:Version 3;3:Version 4;4:Version 5 ,767,287,287,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Ethernet interface,0:Without;1:With ,767,288,289,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Remote_Park_function,0:Off;1:Type 1;2:Type 2;3:Type 3 ,767,290,291,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Learning_Park_function,0:Off;1:Type 1;2:Type 2;3:Type 3 ,767,292,292,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Navi_available,0:NonNavi;1:Navi ,767,293,293,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.HUD_setting,0:OFF;1:ON ,767,294,295,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Fuel_consumption_info,0:OFF;1:ON (Display Bar graph from V-CAN);2:ON (Display Numeric number from V-CAN));3:Reserved ,767,299,299,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Smart charging,0:absent;1:Present ,767,301,301,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Meter_setting_icon,0:Without (IT-System shall not show Meter Setting ICON.);1:With (IT-System shall show Meter Setting ICON.) ,767,302,303,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Transmission_type,0:Unknown;1:AT;2:CVT;3:MT ,767,304,311,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Charging cable grouping,0:Group 1;1:Group 2;2:Group 3;3:Group 4;4:Group 5;5:Group 6;6:Rest of the world - Group 1 + Group 2 + Group 4;7:France specific - Group 1 + Group 2 + Group 3 + Group 4;8:China specific - Group 1 + Group 5;9:Not present ,767,312,319,1,0,0,min,22DAB0,62DAB0,ff,Vehicle_Information.Unballast warning time ,767,321,321,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Unballast_counter,0:absent;1:Present ,767,322,327,1,0,0,min,22DAB0,62DAB0,ff,Vehicle_Information.Min time before unballast ,767,328,332,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Color ,767,336,343,1,-100,0,cm,22DAB0,62DAB0,ff,Vehicle_Information.DynamicLenght ,767,344,344,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Warning Text Pos,0:Bottom;1:Top ,767,345,351,1,0,0,cm,22DAB0,62DAB0,1ff,Vehicle_Information.TuningDeltaXFarLeftDyn ,767,352,352,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.RearView Activation,0:Off;1:On ,767,353,359,1,0,0,cm,22DAB0,62DAB0,1ff,Vehicle_Information.TuningDeltaXFarRightDyn ,767,360,360,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Additional RVC configuration items,0:not taken in account;1:taken in account ,767,361,367,1,0,0,%,22DAB0,62DAB0,ff,Vehicle_Information.Crop-Up ,767,369,375,1,0,0,%,22DAB0,62DAB0,ff,Vehicle_Information.Crop-Down ,767,377,383,1,0,0,%,22DAB0,62DAB0,ff,Vehicle_Information.Crop-Left ,767,385,391,1,0,0,%,22DAB0,62DAB0,ff,Vehicle_Information.Crop-Right ,767,392,394,1,0,0,s,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Holding Time ,767,396,399,1,0,0,ms,22DAB0,62DAB0,ff,Vehicle_Information.Reverse Gear Debouncing ,767,400,402,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera rear trunk behaviour,0:no action;1:switch off;2:warning text;3:switch off +warning text;4:black screen;6:black screen + warning tex ,767,403,407,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Contrast ,767,411,415,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Tint ,767,417,418,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Image Mirror,0:none;1:Vert.;2:Horiz.;3:Vert+Horiz ,767,419,423,1,0,0,km/h,22DAB0,62DAB0,ff,Vehicle_Information.Vehicle Speed Too High ,767,427,431,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Black Level Day ,767,435,439,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Black Level Night ,767,442,444,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Seat_Guidance_PS,0:no seat guidance;1:ps-8w-2wl;2:ps-6w-2wl;3:ps-8w-4wl-m;4:ps-8w-4wl;5:ps-6w-2wl-o ,767,445,447,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Seat_Guidance_DR,0:no seat guidance;1:ds-8w-2wl;2:ds-6w-2wl;3:ds-8w-4wl-m;4:ds-8w-4wl ,767,32,32,1,0,0,,22DAB1,62DAB1,ff,System_Information.Default_Temperature_unit,0:Celsius;1:Fahrenheit ,767,33,34,1,0,0,,22DAB1,62DAB1,ff,System_Information.Supported_Temperature_units,0:Celsius & Fahrenheit;1:Celsius only ,767,35,36,1,0,0,,22DAB1,62DAB1,ff,System_Information.Default_Distance_Fuel_Consumption_unit,0:km- L/100km;1:UK mile- MPG(UK);2:US mile- MPG(US);3:km- km/L ,767,37,39,1,0,0,,22DAB1,62DAB1,ff,System_Information.Supported_Distance_Fuel_Consumption_units,0:US mile(MPG(US)) & km(L/100km) & km(km/L);1:US mile(MPG(US)) & km(L/100km);2:km(L/100km) & km(km/L);3:UK mile(MPG(UK)) & km(L/100km) & km(km/L);4:UK mile(MPG(UK)) & km(L/100km) ,767,40,47,1,0,0,,22DAB1,62DAB1,ff,System_Information.Default_Language,0:Automatic;1:Albanese;2:Arabic;3:Bulgarian;4:Reserved;5:Chinese Cantonese (Traditional Chinese character) HK;6:Chinese Mandarin (Simplified Chinses character)- CN;7:Croatian;8:Czech;9:Danish;10:Dutch;11:English (Australian);12:English (UK);13:English (US);14:English (US) for JPN;15:English (US) for PRC;16:English Canadian;17:English India;18:Estonian;19:Finnish;20:Flemish;21:French;22:French Canadian;23:German;24:Greek;25:Hebrew;26:Hindi;27:Hungarian;28:Indonesian;29:Italian;30:Japanese;31:Korean;32:Latvian;33:Lithuanian;34:Malay;35:Norwegian;36:Persian (Farsi/Iranian);37:Philippines;38:Polish;39:Portuguese;40:Portuguese Brazilian;41:Romanian;42:Russian;43:Serbian;44:Slovakian;45:Slovenian;46:Spanish;47:Spanish Latin American;48:Spanish Mexican;49:Swedish;50:Taiwanese;51:Thai;52:Turkish;53:Ukrainian;54:Vietnamese ,767,50,50,1,0,0,,22DAB1,62DAB1,ff,System_Information.Off_road_information,0:Disabled;1:Enabled ,767,51,51,1,0,0,,22DAB1,62DAB1,ff,System_Information.Eco_score_display,0:Disabled;1:Enabled ,767,54,54,1,0,0,,22DAB1,62DAB1,ff,System_Information.Clock_12/24h,0:24h;1:12h ,767,55,55,1,0,0,,22DAB1,62DAB1,ff,System_Information.Show_clock,0:Disabled;1:Enabled ,767,57,60,1,0,0,,22DAB1,62DAB1,ff,System_Information.Opening_animation,0:Renault;1:Nissan;2:Infiniti;3:Mitsubishi;4:RSM;5:GT line;6:Initiale;7:RS;8:Infiniti with R;9:Infiniti (Skyline) ,767,61,63,1,0,0,,22DAB1,62DAB1,ff,System_Information.Brand,0:Renault;1:Nissan;2:Infiniti;3:Mitsubishi;4:Dacia;5:Daimler;6:Avtovaz;7:RSM ,767,68,70,1,0,0,,22DAB1,62DAB1,ff,System_Information.HEV_Drive_type,0:Non HEV;1:FF;2:FR;5:FF+4WD;6:FR+4WD;7:4WD ,767,71,71,1,0,0,,22DAB1,62DAB1,ff,System_Information.HEV_information_function,0:OFF;1:ON ,767,76,76,1,0,0,,22DAB1,62DAB1,ff,System_Information.Speed_lock_restrictions,0:OFF;1:ON ,767,77,77,1,0,0,,22DAB1,62DAB1,ff,System_Information.Eco function,0:Absent;1:Present ,767,78,78,1,0,0,,22DAB1,62DAB1,ff,System_Information.Eco challenge,0:absent;1:present ,767,79,79,1,0,0,,22DAB1,62DAB1,ff,System_Information.Sound_on_encoder_press,0:Disabled;1:Enabled ,767,80,87,1,0,0,km/h,22DAB1,62DAB1,ff,System_Information.Speed_lock_min_threshold_for_use_restriction_(km/h) ,767,88,95,1,0,0,km/h,22DAB1,62DAB1,ff,System_Information.Speed_lock_max_threshold_for_use_restriction_(km/h) ,767,100,100,1,0,0,,22DAB1,62DAB1,ff,System_Information.ExtTempDisplayCfg,0:Disabled;1:Enabled ,767,101,101,1,0,0,,22DAB1,62DAB1,ff,System_Information.Display_activation,0:Disabled;1:Enabled ,767,102,102,1,0,0,,22DAB1,62DAB1,ff,System_Information.Seat_restriction,0:Not Restricted;1:Restricted ,767,103,103,1,0,0,,22DAB1,62DAB1,ff,System_Information.Tyre_Pressure_Reset_restriction,0:Not Restricted;1:Restricted ,767,104,119,1,0,0,min,22DAB1,62DAB1,ff,System_Information.PORT ,767,216,217,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE_activation,0:Disabled;1:Enabled in head-unit;2:Enabled in external amplifier ,767,219,219,1,0,0,,22DAB1,62DAB1,ff,System_Information.ANC activation,0:Disabled;1:Enabled ,767,227,227,1,0,0,,22DAB1,62DAB1,ff,System_Information.TTS,0:Disabled;1:Enabled ,767,228,228,1,0,0,,22DAB1,62DAB1,ff,System_Information.VR_short_prompts,0:OFF;1:ON ,767,229,229,1,0,0,,22DAB1,62DAB1,ff,System_Information.VR_beep_only,0:OFF;1:ON ,767,230,231,1,0,0,,22DAB1,62DAB1,ff,System_Information.Voice_recognition,0:Absent;1:Reserved;2:Present ,767,232,233,1,0,0,,22DAB1,62DAB1,ff,System_Information.Tweeter_setup,0:No tweeters;1:Only front tweeters mounted;2:Only rear tweeters mounted;3:Front and Rear tweeters mounted ,767,234,237,1,0,0,,22DAB1,62DAB1,ff,System_Information.Output_Information,0:Internal AMP (2channels) / Head-unit alone (2channels);1:Premium 1;2:Bose Booster w/o MCAN;3:Premium 2;4:Bose 2ch stereo MCAN Amplifier;5:external ANC box;6:Bose 5.1ch MCAN Amplifier (future extension) / Not applicable for Renault;7:Daimler external amplifier (4 channels);8:Head-unit alone (4channels)+ SubOut;9:Internal AMP (4channels) / Head-unit alone (4channels);10:Daimler external amplifier (2 channels);11:Bose Personal Space;12:external ANC box for only front ,767,238,239,1,0,0,,22DAB1,62DAB1,ff,System_Information.Auto_barge_in,0:Off;1:ON (Feedback inside PCB);2:ON (Feedback from OUT) ,767,242,244,1,0,0,,22DAB1,62DAB1,ff,System_Information.Speed_curve,0:Speed curve 0;1:Speed curve 1;2:Speed curve 2;3:Speed curve 3;4:Speed curve 4;5:Speed curve 5 ,767,245,247,1,0,0,,22DAB1,62DAB1,ff,System_Information.Sonar_Volume,0:-3dB;1:-2dB;2:-1dB;3:0dB;4:+1dB;5:+2dB;6:+3dB ,767,258,259,1,0,0,,22DAB1,62DAB1,ff,System_Information.AM tuner activation,0:AM (LW & MW) activated;1:Reserved;2:LW deactivated- MW activated;3:AM (LW & MW) deactivated ,767,260,261,1,0,0,,22DAB1,62DAB1,ff,System_Information.MCH1_mount_information,0:No MCH1 mounted in car;1:1 USB port (MCH1- w/o HUB);2:2 USB ports (MCH1- with HUB);3:1 USB port (MCH1- with HUB) ,767,262,263,1,0,0,,22DAB1,62DAB1,ff,System_Information.AUX,0:without AUX;1:wirh AUX and without Pin detection;2:with AUX and with Pin detection ,767,271,271,1,0,0,,22DAB1,62DAB1,ff,System_Information.DAB,0:Disabled;1:Enabled ,767,279,279,1,0,0,,22DAB1,62DAB1,ff,System_Information.CMF_support_for_ETC,0:Disabled;1:Enabled ,767,280,281,1,0,0,,22DAB1,62DAB1,ff,System_Information.ATBOX,0:Disabled;1:Type 1 (Nissan specific);2:Type 2 (Alliance) ,767,282,282,1,0,0,,22DAB1,62DAB1,ff,System_Information.MySPIN,0:Disabled;1:Enabled ,767,283,283,1,0,0,,22DAB1,62DAB1,ff,System_Information.Android_Auto,0:Disabled;1:Enabled ,767,284,284,1,0,0,,22DAB1,62DAB1,ff,System_Information.CarPlay,0:Disabled;1:Enabled ,767,285,285,1,0,0,,22DAB1,62DAB1,ff,System_Information.WiFi_IVC_tethering,0:Disabled;1:Enabled ,767,286,286,1,0,0,,22DAB1,62DAB1,ff,System_Information.Bluetooth_function,0:Disabled;1:Enabled ,767,287,287,1,0,0,,22DAB1,62DAB1,ff,System_Information.Wifi_function,0:Disabled;1:Enabled ,767,289,289,1,0,0,,22DAB1,62DAB1,ff,System_Information.OnCar,0:Disabled;1:Enabled ,767,290,290,1,0,0,,22DAB1,62DAB1,ff,System_Information.Wifi_5GHz_support,0:Disabled;1:Enabled ,767,291,295,1,0,0,,22DAB1,62DAB1,ff,System_Information.Model_year,0:17 MY;1:18 MY;2:19 MY;3:20 MY;4:21 MY;5:22 MY;6:23 MY;7:24 MY;8:25 MY;9:26 MY;10:27 MY;11:28 MY;12:29 MY;13:30 MY;14:31 MY;15:32 MY;16:33 MY;17:34 MY;18:35 MY;19:36 MY;20:37 MY;21:38 MY;22:39 MY;23:40 MY;24:41 MY;25:42 MY;26:43 MY;27:44 MY;28:45 MY;29:46 MY;30:47 MY;31:MY not determined ,767,299,299,1,0,0,,22DAB1,62DAB1,ff,System_Information.Minimize_unpaved_roads,0:Disabled;1:Enabled ,767,303,303,1,0,0,,22DAB1,62DAB1,ff,System_Information.Truck/LCV_route,0:Disabled;1:Enabled ,767,304,304,1,0,0,,22DAB1,62DAB1,ff,System_Information.MQTTPayloadCompression,0:absent;1:present ,767,306,306,1,0,0,,22DAB1,62DAB1,ff,System_Information.Map_zoom,0:Encoder;1:Touch ,767,308,311,1,0,0,,22DAB1,62DAB1,ff,System_Information.Kind_of_destination_entry,0:EUR (European style i.e. form basd.);1:NAR (Amercian style i.e. user guided entry flow.);2:JPN (Japanese style i.e. user guided fixed entry flow.) ,767,315,315,1,0,0,,22DAB1,62DAB1,ff,System_Information.VA_on_shortpress,0:OFF;1:ON ,767,316,316,1,0,0,,22DAB1,62DAB1,ff,System_Information.WBS,0:OFF;1:ON ,767,317,317,1,0,0,,22DAB1,62DAB1,ff,System_Information.SIRI,0:OFF;1:ON ,767,318,318,1,0,0,,22DAB1,62DAB1,ff,System_Information.VA/SPVR,0:OFF;1:ON ,767,320,327,1,0,0,,22DAB1,62DAB1,ff,System_Information.MQTTSessionType,0:Always connected;1:On Demand;2:IVI Periodic ,767,336,336,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_REACH_AREA,0:Patatoid solution (Default);1:Reachable Circle (Backup solution) ,767,337,337,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_REROUTE_ALT,0:Not present (service de-activation);1:Present (service activation) ,767,338,338,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_PSOC,0:Not present (service de-activation);1:Present (service activation) ,767,339,339,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_CHG_TIME_FORECAST,0:Not present (service de-activation);1:Present (service activation) ,767,340,340,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_GUARD_ANG,0:Not present (service de-activation);1:Present (service activation) ,767,341,341,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_LOWBAT_ALT,0:Not present (service de-activation);1:Present (service activation) ,767,342,342,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_CHGSTN_SORT,0:(Ascending order- Nearest charging station to Farthest charging station);1:(Descending order- Farthest charging station to Nearest charging station) ,767,343,343,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_CHGSTN_FIND,0:Not present (service de-activation);1:Present (service activation) ,767,345,345,1,0,0,,22DAB1,62DAB1,ff,System_Information.Remote application support,0:Not present (service de-activation);1:Present (service activation) ,767,347,347,1,0,0,,22DAB1,62DAB1,ff,System_Information.TIMER PRE-AIR-CONDITIONING,0:Not present (service de-activation);1:Present (service activation) ,767,348,348,1,0,0,,22DAB1,62DAB1,ff,System_Information.TIMER CHARGING,0:Not present (service de-activation);1:Present (service activation) ,767,349,349,1,0,0,,22DAB1,62DAB1,ff,System_Information.Info from Meter_DC/DC caution,0:Not present (service de-activation);1:Present (service activation) ,767,350,350,1,0,0,,22DAB1,62DAB1,ff,System_Information.Info from Meter_Limited power,0:Not present (service de-activation);1:Present (service activation) ,767,356,356,1,0,0,,22DAB1,62DAB1,ff,System_Information.Power Consumption Information,0:Not present (service de-activation);1:Present (service activation) ,767,357,357,1,0,0,,22DAB1,62DAB1,ff,System_Information.Energy Information,0:Not present (service de-activation);1:Present (service activation) ,767,358,358,1,0,0,,22DAB1,62DAB1,ff,System_Information.EV & PHEV Energy Flow 15mn historical graph,0:Not present (service de-activation);1:Present (service activation) ,767,359,359,1,0,0,,22DAB1,62DAB1,ff,System_Information.EV & PHEV real time Energy Flow display,0:Not present (service de-activation);1:Present (service activation) ,767,360,367,1,128,0,°C,22DAB1,62DAB1,ff,System_Information.Pre-conditioning duration-vehicle not plugged ,767,368,375,1,0,0,°C,22DAB1,62DAB1,ff,System_Information.Pre-conditioning median temperature request ,767,376,378,1,0,0,,22DAB1,62DAB1,ff,System_Information.Car_type,0:Standard (or Nissan vehicle);1:GT;2:RS ,767,380,382,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice_Race,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,384,386,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice -Eco,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,387,389,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice-Comfort,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,392,394,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice-Normal,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,395,397,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice-Dynamic,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,400,402,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice-Perso,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,408,415,5,0,0,%,22DAB1,62DAB1,ff,System_Information.MexSwitch_IntensityWithoutAmbient_lighting ,767,417,417,1,0,0,,22DAB1,62DAB1,ff,System_Information.DualMode_Mgt,0:Without Dual Management;1:With Dual Management ,767,418,420,1,0,0,,22DAB1,62DAB1,ff,System_Information.Preferential_Mode1,0:Not Available;1:Eco;2:Comfort;3:Normal;4:Dynamic;5:Race;6:Perso;7:Reserved ,767,421,423,1,0,0,,22DAB1,62DAB1,ff,System_Information.Preferential_Mode2,0:Not Available;1:Eco;2:Comfort;3:Normal;4:Dynamic;5:Race;6:Perso;7:Reserved ,767,424,426,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Eco,0:No request;1:0;2:low;3:high ,767,427,429,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Comfort,0:No Change;1:OFF;2:low;3:high ,767,432,434,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Normal,0:No request;1:0;2:low;3:high ,767,435,437,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Dynamic,0:No request;1:0;2:low;3:high ,767,442,444,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Perso,0:No request;1:0;2:low;3:high ,767,445,446,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Eco,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,448,449,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Comfort,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,450,451,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Normal,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,452,453,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Dynamic,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,454,455,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Perso,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,456,456,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE sound 2 volume HMI,0:Disabled;1:Enabled ,767,457,457,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE sound 1 volume HMI,0:Disabled;1:Enabled ,767,458,460,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE sound 2 name,0:Sport;1:Comfort;2:Race ,767,461,463,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE sound 1 name,0:Sport;1:Comfort;2:Race ,767,464,465,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE HMI,0:No HMI for ESE;1:ESE With Driving Modes;2:ESE With Rsound ,767,466,468,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Race,0:No request;1:0;2:low;3:high ,767,472,473,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_VPA,0:Not present;1:Present;3:Reserved ,767,479,479,1,0,0,,22DAB1,62DAB1,ff,System_Information.Wireless_Android_Auto_function,0:OFF;1:ON ,767,480,483,1,0,0,,22DAB1,62DAB1,ff,System_Information.Touch_screen_configuration,0:Attached fascia (A-IVI);1:CMF1 7 inches central panel carry back;2:C7D 7 inches display carry back;3:CMFCDph2 9.3 inches central panel;4:CMFB 9.3 inches central panel;5:CMFB 7 affordable display;6:CMFB 7 best level display;7:CMF1 8.7 central panel carry back;8:HFE 7 inches central panel;9:CMFCDph2 7 inches central panel;14:Custom display + Atmel touch;15:Custom display + cypress ,767,486,487,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Race,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,494,494,1,0,0,,22DAB1,62DAB1,ff,System_Information.Wireless_CarPlay_function,0:OFF;1:ON ,767,495,495,1,0,0,,22DAB1,62DAB1,ff,System_Information.Baidu_CarLife_function,0:OFF;1:ON ,767,500,501,1,0,0,,22DAB1,62DAB1,ff,System_Information.FOTA_bearer,0:NOT USE;1:USE;2:Only USE FOTA;3:Only USE MAP ,767,24,31,1,0,0,,22DAB2,62DAB2,ff,Antitheft/Map_Selection.Antitheft_function,0:Without antitheft function;1:With Nissan Antitheft function (Immobilizer);2:With Alliance Antitheft function ,767,32,47,1,0,0,,22DAB2,62DAB2,ff,Antitheft/Map_Selection.Map_selection,0:No initial activation done (default);1:No map selected ,767,24,3359,1,0,0,,22DAC0,62DAC0,4ff,Generic Tuner Parameter Set ,767,24,2327,1,0,0,,22DAC5,62DAC5,4ff,FM/AM_Tuner_Parameter_Set ,767,24,535,1,0,0,,22DAC9,62DAC9,4ff,HD_parameter_set ,767,24,1863,1,0,0,,22DACB,62DACB,4ff,DAB_Parameter ,767,24,1071,1,0,0,,22DACC,62DACC,4ff,Antenna_Parameter ,767,24,1647,1,0,0,,22DAD0,62DAD0,4ff,Sensor_Configuration_Gyro ,767,24,119,1,0,0,,22DAD1,62DAD1,4ff,Sensor_Configuration_GNSS ,767,24,1647,1,0,0,,22DAD2,62DAD2,4ff,Sensor_Configuration_ACC ,767,24,27,1,0,0,,22DAE0,62DAE0,ff,Camera_System.ConfigStringVersionMinor ,767,28,31,1,0,0,,22DAE0,62DAE0,ff,Camera_System.ConfigStringVersionMajor ,767,32,47,1,0,0,mm,22DAE0,62DAE0,ff,Camera_System.Vehicle Width ,767,48,63,1,0,0,mm,22DAE0,62DAE0,ff,Camera_System.WheelBase ,767,64,79,1,0,0,mm,22DAE0,62DAE0,ff,Camera_System.RearOverhang ,767,80,95,.00001,0,3,,22DAE0,62DAE0,1ff,Camera_System.SteerWheelCalib_f1 ,767,96,111,.0000000001,0,3,,22DAE0,62DAE0,1ff,Camera_System.SteerWheelCalib_f3 ,767,112,127,1,0,0,°,22DAE0,62DAE0,ff,Camera_System.MaxSteerWheelAngle ,767,128,143,.01,0,2,°,22DAE0,62DAE0,ff,Camera_System.MaxRearWheelAngle ,767,144,159,.01,0,2,°,22DAE0,62DAE0,ff,Camera_System.RadiusTuningFact ,767,160,160,1,0,0,,22DAE0,62DAE0,ff,Camera_System.TestConfigOnlyFlag,0:verified configuration for use in customer vehicle;1:test configuration ,767,161,163,1,0,0,,22DAE0,62DAE0,ff,Camera_System.GuidelineStyle,0:not definded;1:Nissan;2:Renault;3:Mitsubishi ,767,164,165,1,0,0,,22DAE0,62DAE0,ff,Camera_System.TireAngleReferencePoint,0:front axle center;1:outer front tire;2:inner front tire;3:reserved ,767,166,166,1,0,0,,22DAE0,62DAE0,ff,Camera_System.TireAngleTurnSense,0:clockwise tire turn;1:counterclockwise tire turn ,767,167,167,1,0,0,,22DAE0,62DAE0,ff,Camera_System.FourWheelSteering,0:2WS vehicle;1:4WS vehicle ,767,168,183,1,0,0,mm,22DAE0,62DAE0,1ff,Camera_System.CamXOffset ,767,184,199,1,0,0,mm,22DAE0,62DAE0,ff,Camera_System.CamYOffset ,767,200,215,1,0,0,mm,22DAE0,62DAE0,1ff,Camera_System.CamZOffset ,767,216,231,.1,0,1,°,22DAE0,62DAE0,1ff,Camera_System.CamYaw ,767,232,247,.1,0,1,°,22DAE0,62DAE0,1ff,Camera_System.CamPitch ,767,248,263,.1,0,1,°,22DAE0,62DAE0,1ff,Camera_System.CamRoll ,767,264,271,.01,0,2,°,22DAE0,62DAE0,ff,Camera_System.FrontTireThresh ,767,272,279,.01,0,2,°,22DAE0,62DAE0,ff,Camera_System.MinFrontTireChange ,767,280,287,.01,0,2,°,22DAE0,62DAE0,ff,Camera_System.RearTireThresh ,767,288,295,.01,0,2,°,22DAE0,62DAE0,ff,Camera_System.MinRearTireChange ,767,296,303,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.GuidelineStartDistance ,767,304,311,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.GuidelineSideMargin ,767,312,319,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideNear_R ,767,320,327,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideNear_G ,767,328,335,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideNear_B ,767,336,343,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideMid_R ,767,344,351,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideMid_G ,767,352,359,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideMid_B ,767,360,367,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideFar_R ,767,368,375,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideFar_G ,767,376,383,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideFar_B ,767,384,391,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticCenter_R ,767,392,399,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticCenter_G ,767,400,407,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticCenter_B ,767,408,415,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorDynamic_R ,767,416,423,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorDynamic_G ,767,424,431,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorDynamic_B ,767,432,435,1,0,0,,22DAE0,62DAE0,ff,Camera_System.LineWidthStaticSideFar ,767,436,439,1,0,0,,22DAE0,62DAE0,ff,Camera_System.LineWidthStaticSideNear ,767,440,443,1,0,0,,22DAE0,62DAE0,ff,Camera_System.LineWidthDynamicFar ,767,444,447,1,0,0,,22DAE0,62DAE0,ff,Camera_System.LineWidthDynamicNear ,767,448,451,1,0,0,,22DAE0,62DAE0,ff,Camera_System.LineWidthStaticCenterFar ,767,452,455,1,0,0,,22DAE0,62DAE0,ff,Camera_System.LineWidthStaticCenterNear ,767,456,463,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.StaticLineLengthNear ,767,464,471,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.StaticLineLengthMid ,767,472,479,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.StaticLineLengthFar1 ,767,480,487,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.StaticLineLengthFar2 ,767,488,495,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.StaticHorizLineLength ,767,496,503,.01,0,2,,22DAE0,62DAE0,ff,Camera_System.LineWidthFactorNearHLine ,767,504,507,1,0,0,,22DAE0,62DAE0,ff,Camera_System.TuningMethod,0:no tuning;1:input d_yaw/pitch/roll tuning;2:input d_pitch + input d_x/y tuning;3:input d_pitch + estimated d_yaw/roll tuning;4:input d_pitch + estimated d_yaw/roll + residual d_x/y tuning;5:estimated d_yaw/pitch/roll tuning;6:estimated d_yaw/pitch/roll + residual d_x/y tuning;7:improved input d_pitch + estimated d_yaw/roll tuning;8:improved input d_pitch + estimated d_yaw/roll + residual d_x/y tuning ,767,508,511,1,0,0,,22DAE0,62DAE0,ff,Camera_System.TuningStringVersion ,767,512,519,.1,0,1,°,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaCamYaw ,767,520,527,.1,0,1,°,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaCamPitch ,767,528,535,.1,0,1,°,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaCamRoll ,767,536,543,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaXNearLeft ,767,544,551,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaYNearLeft ,767,552,559,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaXFarLeft ,767,560,567,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaXNearRight ,767,568,575,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaYNearRight ,767,576,583,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaXFarRight ,767,584,591,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.TuningNearLineLengthLeft ,767,592,599,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.TuningNearLineLengthRight ,767,600,607,1,0,0,°,22DAE0,62DAE0,1ff,Camera_System.TuningSwaZeroPointOffset ,767,608,615,.01,0,2,,22DAE0,62DAE0,1ff,Camera_System.TuningRwaZeroPointOffset ,767,665,667,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Camera connection,0:Without;1:CVBS;2:LVDS;3:Ethernet ,767,668,670,1,0,0,,22DAE0,62DAE0,ff,Camera_System.cameraSystem,0:None;1:Entry AVM;2:Reserved (2);3:Rear Camera;4:Reserved (4);5:MVC;6:AVM Ph3;7:Reserved (7) ,767,671,671,1,0,0,,22DAE0,62DAE0,ff,Camera_System.anticipatoryLine,0:Disabled;1:Enabled ,767,672,672,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_AVM,0:AVM (integration into video-signal);1:Headunit (drawing an overlay) ,767,673,674,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_Type,0:None;1:FR+RR Sonar;2:RR Sonar ,767,675,677,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_menu,0:None;1:Gen3 menu;2:Gen3 GD1A menu;3:Gen5 menu ,767,678,678,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_Switch_display,0:OFF;1:ON ,767,679,679,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_System_Availability,0:not available;1:available ,767,685,685,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_FKP,0:OFF;1:ON ,767,686,686,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar Sound,0:OFF;1:ON ,767,687,687,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar Display,0:OFF;1:ON ,767,688,695,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar vehicle image,0:No body shape;1:Sedan;2:SUV;3:Van;4:Coupe;5:42P;6:H/B ,767,696,703,1,0,0,%,22DAE0,62DAE0,ff,Camera_System.Camera brightness (Day) ,767,704,711,1,0,0,%,22DAE0,62DAE0,ff,Camera_System.Camera brightness (Night) ,767,712,719,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Camera Steering Message,0:CAN ID 002;1:CAN ID 0C1 ,767,720,727,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RVC Lens Parameter,0:Type1 (Sony_2400S_W130_6);1:Type2 (Sony_2200S_W130);2:Type3 (Panasonic);3:Type4 (Sony 2400S (Renault FOV));4:Type5 (Semco Logo);5:Type6 (Semco Generic);6:Type7 (Semco L47);7:Type8 (Sony S2500);8:Type9 (Whetron);9:Type10 (Clarion) ,767,28,31,1,0,0,,22DAE5,62DAE5,ff,ECO_Route.ECO_Route_Vehicle_type,0:SUV;1:Sedan;2:Coupe;3:Mini Van / Van/ Wagon;4:Hatchback;5:Truck;6:unknown / other;7:RenaultDefaultModel ,767,35,39,1,0,0,,22DAE5,62DAE5,ff,ECO_Route.Engine_size,1:Petrol -> 2L class engine;2:Petrol -> over 2L to 3.5L class engine;3:Petrol -> over 3.5L class engine;4:Diesel -> 2L class engine;5:Diesel -> over 2L to 3.5L class engine;6:Diesel -> over 3.5L class engine;7:EV 40kWh JPN;8:EV 60kWh JPN;9:EV 40kWh NAM/CAN;10:EV 60kWh NAM/CAN;11:EV 40kWh EUR;12:EV 60kWh EUR;13:Renault Default Petrol;14:Renault Default Diesel Light vehicle;15:Renault Default EV;16:Renault Default Petrol Hybrid;17:Renault Default Diesel Hybrid;18:Renault Default Diesel Heavy Vehicle;19:Renault Default EV 30kWh;20:Renault Default EV 40kWh;21:Renault Default EV 50kWh;22:Renault Default EV 60kWh;31:unknown / other ,767,24,199,1,0,0,,22DAF0,62DAF0,2ff,WiFi_Name.SSID_WiFi_1 ,767,200,375,1,0,0,,22DAF0,62DAF0,2ff,WiFi_Name.SSID_WiFi_2 ,767,24,199,1,0,0,,22DAF1,62DAF1,2ff,BT_Name.BT_name ,767,31,31,1,0,0,,22DEF0,62DEF0,ff,Factory mode,0:Market (normal) mode;1:Factory mode ,767,24,183,1,0,0,,22DEFE,62DEFE,4ff,Message_Authentication_Code ,767,24,151,1,0,0,,22F010,62F010,4ff,Fingerprint ,767,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,767,24,103,1,0,0,,22F012,62F012,2ff,Operational Reference ,767,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationnalReference ,767,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,767,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC Occurrence Counter ,767,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,767,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,767,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,767,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,767,24,63,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,767,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,767,24,159,1,0,0,,22F190,62F190,2ff,VIN ,767,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,767,24,199,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,767,24,111,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,767,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,767,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,767,24,103,1,0,0,,22F1A2,62F1A2,2ff,RenaultConfigurationPartNumber ,767,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/Navigation-UCC-ITM_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal level out of range/zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component | system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/PEB_Dtcs.csv ================================================ 0030,+APC 030C,BCM (Body Control Module) 030B,Boost PWM (between rectifier and inverter modules) 0306,Charger Controler 0854,DCDC 0852,DCDC driver 0850,DCDC High voltage side 0851,DCDC low voltage side 0861,ECU monitoring (Safety torque estimation) 0860,ECU monitoring (Watchdog) 0848,Electric engine FAN 0849,Electric engine phase 0847,Electric engine temperature 030D,EVC 0820,Excitation 0821,Excitation current sensor 0830,Excitation driver (high arm) 0831,Excitation driver (low arm) 0832,Excitation driver ready 0822,Excitation temperature sensor 0870,High voltage network 0803,High voltage sensor 0801,Inverter 0802,Inverter current sensor 0810,Inverter driver (high arm) 0811,Inverter driver (low arm) 0805,Inverter temperature 0804,Inverter temperature sensor 0305,Lithium Battery Controler 0864,Main controler temperature sensor 0865,PCB controler temperature sensor 0867,Power supply 2.1 0842,PWM Electric Engine command 084A,Rotor position offset learning 0841,Rotor position sensor 0840,Rotor position speed 084B,Rotor resistance leaning 0843,Safety rotor temperature estimation 0862,SPI communication 0845,Stator temperature sensor 1 0846,Stator temperature sensor 2 0863,Supply monitoring 0806,Water temperature 030E,EVC relays 0807,Hardware over voltage protection 0808,Inverter phase 0868,Driver board temperature sensor 0880,Voltage supply A11 0809,Inverter non traction safety watch 080A,Inverter auto diagnosis 080B,Inverter DFLASH memory corruption 080C,Inverter Reset failure 0812,Inverter driver ready (high arm) 0813,Inverter driver ready (low arm) ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/PEB_Fields.csv ================================================ ,77E,0,0,1,0,0,,1081,5081,ff,StartDiagnosticSession.Default ,77E,0,0,1,0,0,,1085,5085,ff,StartDiagnosticSession.Programming ,77E,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.ExtendedDiagnosticSession ,77E,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,77E,16,23,1,0,0,,1902AF,5902AF,ff,DTCStatusAvailabilityMask ,77E,24,39,1,0,0,,1902AF,5902AF,ff,DTCDeviceAndFailureTypeOBD ,77E,40,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature;241:Safety Case 1;242:Safety Case 2;243:Multiple Failure;244:Temperature too Low;245:Negative Loop Error;246:Positive Loop Error;247:Initialisation not valid;248:Overspeed;249:Limp Home;250:Specific Supplier;251:-;252:--;253:Drift low;254:Drift high ,77E,44,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType.ManufacturerOrSupplier ,77E,48,48,1,0,0,,1902AF,5902AF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,77E,49,49,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,77E,50,50,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,77E,51,51,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,77E,52,52,1,0,0,,1902AF,5902AF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,77E,53,53,1,0,0,,1902AF,5902AF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,77E,54,54,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,77E,55,55,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailed,0:No;1:Yes ,77E,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,77E,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,77E,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,77E,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,77E,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,77E,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,77E,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,77E,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,77E,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,77E,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,77E,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,77E,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,77E,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,77E,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,77E,16,39,1,0,0,,190600000084,590600000084,4ff,DTCRecord ,77E,40,47,1,0,0,,190600000084,590600000084,ff,StatusOfDTC ,77E,56,63,1,0,0,,190600000084,590600000084,ff,DTCExtendedData.DTCOccurrenceCounter_2 ,77E,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord ,77E,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC ,77E,56,79,1,0,0,km,190600000085,590600000085,ff,DTCExtendedData.DTCLastDiseappearMileage ,77E,16,39,1,0,0,,190600000086,590600000086,4ff,DTCRecord ,77E,40,47,1,0,0,,190600000086,590600000086,ff,StatusOfDTC ,77E,56,79,1,0,0,km,190600000086,590600000086,ff,DTCExtendedData.DTCTravelledDistanceFailurePresent ,77E,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord ,77E,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC ,77E,56,79,1,0,0,km,190600000087,590600000087,ff,DTCExtendedData.DTCFirstAppearMileage ,77E,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,77E,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,77E,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,77E,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,77E,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,77E,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,77E,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,77E,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,77E,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,77E,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,77E,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,77E,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A;1:292A6;2:29170 ,77E,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:N/A;1:292A6 ,77E,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A;1:HMLGT ,77E,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,77E,16,151,1,0,0,,2181,6181,2ff,V.I.N ,77E,152,167,1,0,0,,2181,6181,4ff,CRC ,77E,16,39,1,0,0,,2184,6184,4ff,ITG Supplier Number ,77E,40,47,1,0,0,,2184,6184,2ff,Traceability Factory Code ,77E,48,143,1,0,0,,2184,6184,2ff,Traceability Serial Number ,77E,16,103,1,0,0,,21B7,61B7,4ff,Configuration of Electrical Vehicle Networks ,77E,16,103,1,0,0,,21B8,61B8,4ff,List of Electrical Vehicle ECUs with After-sales diagnostic ,77E,16,23,1,0,0,,21EF,61EF,2ff,Hardware Part Number 1 ,77E,24,31,1,0,0,,21EF,61EF,2ff,Hardware Part Number 2 ,77E,32,39,1,0,0,,21EF,61EF,2ff,Hardware Part Number 3 ,77E,40,47,1,0,0,,21EF,61EF,2ff,Hardware Part Number 4 ,77E,48,55,1,0,0,,21EF,61EF,2ff,Hardware Part Number 5 ,77E,56,63,1,0,0,,21EF,61EF,2ff,Hardware Part Number 6 ,77E,64,71,1,0,0,,21EF,61EF,2ff,Hardware Part Number 7 ,77E,72,79,1,0,0,,21EF,61EF,2ff,Hardware Part Number 8 ,77E,80,87,1,0,0,,21EF,61EF,2ff,Hardware Part Number 9 ,77E,88,95,1,0,0,,21EF,61EF,2ff,Hardware Part Number 10 ,77E,96,103,1,0,0,,21EF,61EF,2ff,Software Part Number 1 ,77E,104,111,1,0,0,,21EF,61EF,2ff,Software Part Number 2 ,77E,112,119,1,0,0,,21EF,61EF,2ff,Software Part Number 3 ,77E,120,127,1,0,0,,21EF,61EF,2ff,Software Part Number 4 ,77E,128,135,1,0,0,,21EF,61EF,2ff,Software Part Number 5 ,77E,136,143,1,0,0,,21EF,61EF,2ff,Software Part Number 6 ,77E,144,151,1,0,0,,21EF,61EF,2ff,Software Part Number 7 ,77E,152,159,1,0,0,,21EF,61EF,2ff,Software Part Number 8 ,77E,160,167,1,0,0,,21EF,61EF,2ff,Software Part Number 9 ,77E,168,175,1,0,0,,21EF,61EF,2ff,Software Part Number 10 ,77E,16,55,1,0,0,,21F0,61F0,2ff,PartNumber.LowerPart ,77E,56,63,1,0,0,,21F0,61F0,4ff,DiagnosticIdentificationCode ,77E,64,87,1,0,0,,21F0,61F0,2ff,SupplierNumber.ITG ,77E,88,127,1,0,0,,21F0,61F0,2ff,HardwareNumber.LowerPart ,77E,128,143,1,0,0,,21F0,61F0,4ff,SoftwareNumber ,77E,144,159,1,0,0,,21F0,61F0,4ff,EditionNumber ,77E,160,175,1,0,0,,21F0,61F0,4ff,CalibrationNumber ,77E,176,183,1,0,0,,21F0,61F0,ff,PartNumber.BasicPartList,0:N/A;1:292A6;2:29170 ,77E,184,191,1,0,0,,21F0,61F0,ff,HardwareNumber.BasicPartList,0:N/A;1:292A6 ,77E,192,199,1,0,0,,21F0,61F0,ff,ApprovalNumber.BasicPartList,0:N/A;1:HMLGT ,77E,200,207,1,0,0,,21F0,61F0,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,77E,16,55,1,0,0,,21F1,61F1,2ff,ApprovalNumber.LowerPart ,77E,56,95,1,0,0,,21F1,61F1,2ff,ProgrammingSiteReference ,77E,96,135,1,0,0,,21F1,61F1,2ff,ProgrammingToolReference ,77E,136,143,1,0,0,,21F1,61F1,ff,NumberOfReprogrammings ,77E,144,167,1,0,0,,21F1,61F1,4ff,DateOfReprogramming ,77E,168,183,1,0,0,,21F1,61F1,4ff,TimeOfReprogramming ,77E,184,191,1,0,0,,21F1,61F1,ff,SaveMarking ,77E,192,207,1,0,0,,21F1,61F1,4ff,CrcOfLogSave ,77E,16,55,1,0,0,,21FF,61FF,2ff,ApprovalNumber.LowerPart ,77E,56,95,1,0,0,,21FF,61FF,2ff,ProgrammingSiteReference ,77E,96,135,1,0,0,,21FF,61FF,2ff,ProgrammingToolReference ,77E,136,143,1,0,0,,21FF,61FF,ff,NumberOfReprogrammings ,77E,144,167,1,0,0,,21FF,61FF,4ff,DateOfReprogramming ,77E,168,183,1,0,0,,21FF,61FF,4ff,TimeOfReprogramming ,77E,184,191,1,0,0,,21FF,61FF,ff,SaveMarking ,77E,192,207,1,0,0,,21FF,61FF,4ff,CrcOfLogSave ,77E,24,55,1,0,0,,222000,622000,4ff,DIDs supported in range [$2001 - $2020] ,77E,24,39,.5,32000,1,rpm,222001,622001,ff,($2001) Rotor mechanical rotation speed ,77E,24,39,.015625,16256,2,N·m,222002,622002,ff,($2002) Emotor torque estimation, based on measured current values ,77E,24,39,.1,2500,1,N·m,222003,622003,ff,($2003) Torque setpoint from EVC ,77E,24,39,.03125,0,2,V,222004,622004,ff,($2004) Battery voltage sensor ,77E,24,39,1,0,0,mV,222005,622005,ff,($2005) DCDC output tension measure ,77E,24,55,1,0,0,,222060,622060,4ff,DIDs supported in range [$2061 - $2080] ,77E,31,31,1,0,0,,222070,622070,ff,($2070) Immobilizer - diagnosis availability,0:unavailable;1:available ,77E,24,31,1,0,0,,222071,622071,ff,($2071) Immobilizer - Byte 1 used to allow diagnosis ,77E,24,31,1,0,0,,222072,622072,ff,($2072) Immobilizer - Byte 2 used to allow diagnosis ,77E,24,24,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.7,0:Not used ,77E,25,25,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.6,0:ECM not protected;1:ECM protected ,77E,26,27,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.4,0:ECM virgin - Secret key not learnt;1:Not used;2:Not virgin ECM - Secret key learnt in erasable area;3:Not virgin ECM - Secret key learnt in non erasable area ,77E,28,28,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.3,0:Not used ,77E,29,29,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.2,0:Cleappli not set;1:Cleappli set ,77E,30,30,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.1,0:Not used ,77E,31,31,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.0,0:Immobilizer engine running forbidden;1:Immobilizer engine running authorized ,77E,31,31,1,0,0,,222074,622074,ff,($2074) Immobilizer - engine not running due to ECM,0:no;1:yes ,77E,31,31,1,0,0,,222075,622075,ff,($2075) Immobilizer - engine not running due to BCM in secure mode,0:no;1:yes ,77E,31,31,1,0,0,,222076,622076,ff,($2076) Immobilizer - engine not running due to no BCM authorization,0:no;1:yes ,77E,31,31,1,0,0,,222077,622077,ff,($2077) Immobilizer - engine not running due to a CAN network problem with the BCM,0:no;1:yes ,77E,24,31,1,0,0,%,227001,627001,ff,($7001) Command of PEC fan ,77E,31,31,1,0,0,,227002,627002,ff,($7002) Wired APC signal,0:APC off;1:APC on ,77E,24,39,.0009765625,0,3,A,227003,627003,ff,($7003) Measured rotor current (sensor 1) ,77E,24,39,.0009765625,0,3,A,227004,627004,ff,($7004) Measured rotor current (sensor 2) ,77E,31,31,1,0,0,,227005,627005,ff,($7005) Verlog Status,0:Vehicle locked;1:Vehicle unlocked ,77E,31,31,1,0,0,,227006,627006,ff,($7006) Wire frame APC state,0:APC off;1:APC on ,77E,24,39,.03125,16000,2,A,227007,627007,ff,($7007) Measured stator current on phase U ,77E,24,39,.03125,16000,2,A,227008,627008,ff,($7008) Measured stator current on phase V ,77E,24,39,.03125,16000,2,A,227009,627009,ff,($7009) Measured stator current on phase W ,77E,31,31,1,0,0,,22700A,62700A,ff,($700A) Feedback fan raw diagnostic,0:OK;1:NOK ,77E,24,47,.001953125,20480,3,°C,22700B,62700B,ff,($700B) Excitation temperature ,77E,24,47,.001953125,20480,3,°C,22700C,62700C,ff,($700C) Inverter temperature sensor 1 ,77E,24,47,.001953125,20480,3,°C,22700D,62700D,ff,($700D) MICRO temperature ,77E,24,47,.001953125,20480,3,°C,22700E,62700E,ff,($700E) PCB temperature ,77E,24,47,.001953125,20480,3,°C,22700F,62700F,ff,($700F) Stator temperature sensor 1 ,77E,24,47,.001953125,20480,3,°C,227010,627010,ff,($7010) Stator temperature sensor 2 ,77E,24,39,.0078125,0,3,°,227011,627011,ff,($7011) Raw rotor position resolver angular position measurement ,77E,24,31,1,0,0,,227012,627012,ff,($7012) Status flag of the Smartcoder ,77E,24,39,.0002441406,0,3,V,227013,627013,ff,($7013) Raw rotor position resolver cosine voltage ,77E,24,39,.0002441406,0,3,V,227014,627014,ff,($7014) Raw rotor position resolver cosine voltage with 25µs delay ,77E,24,39,.0002441406,0,3,V,227015,627015,ff,($7015) Raw rotor position resolver excitation peak voltage ,77E,31,31,1,0,0,,227016,627016,ff,($7016) result of the check on CAN communication with EVC,0:Check is Ok;1:Check is Nok ,77E,24,39,1,0,0,,227017,627017,ff,($7017) Failure vector allowing exact identification of the failure.1 ,77E,24,31,1,0,0,,227018,627018,ff,($7018) Failure vector allowing exact identification of the failure.2 ,77E,24,31,1,0,0,,227019,627019,ff,($7019) Failure vector allowing exact identification of the failure.3 ,77E,24,39,1,0,0,,22701A,62701A,ff,($701A) Failure vector allowing exact identification of the failure.4 ,77E,24,31,1,0,0,,22701B,62701B,ff,($701B) Failure vector allowing exact identification of the DCDC event ,77E,24,39,.0078125,0,3,,22701C,62701C,ff,($701C) Saved rotor position offset.value.physical ,77E,40,47,1,0,0,,22701C,62701C,4ff,($701C) Saved rotor position offset.CRC ,77E,24,39,1,0,0,,22701D,62701D,ff,($701D) Counter of FAN fail times to cool the machine stator in hard conditions.1 ,77E,24,39,1,0,0,,22701E,62701E,ff,($701E) Counter of FAN fail times to cool the machine stator in hard conditions.2 ,77E,24,39,1,0,0,,22701F,62701F,ff,($701F) Counter of FAN fail times to cool the machine stator in hard conditions.3 ,77E,24,39,1,0,0,,227021,627021,4ff,($7021) Saved resistance rotor.value ,77E,40,47,1,0,0,,227021,627021,4ff,($7021) Saved resistance rotor.CRC ,77E,31,31,1,0,0,,227022,627022,ff,($7022) Active discharge request from EVC to PEB,0:Discharge not requested;1:Discharge requested ,77E,31,31,1,0,0,,227023,627023,ff,($7023) Effective active discharge feedback to EVC,0:Active Discharge Not In Progress;1:Active Discharge In Progress ,77E,31,31,1,0,0,,227024,627024,ff,($7024) APC state (from CAN),0:APC off;1:APC on ,77E,31,31,1,0,0,,227025,627025,ff,($7025) Charge request from EVC to PEB,0:No charge requested;1:Charge requested ,77E,31,31,1,0,0,,227026,627026,ff,($7026) Effective Charge feedback to EVC,0:No charge in progress;1:Charging in progress ,77E,31,31,1,0,0,,227027,627027,ff,($7027) On/Off request of the DCDC from EVC,0:DCDC Off;1:DCDC On ,77E,31,31,1,0,0,,227028,627028,ff,($7028) status verlog from PEB to EVC,0:Vehicle locked;1:Vehicle unlocked ,77E,31,31,1,0,0,,227029,627029,ff,($7029) On/Off power train activation request from EVC,0:Inverter Off;1:Inverter On ,77E,29,31,1,0,0,,22702B,62702B,ff,($702B) Auto Diag enable,0:Nsx_auto_diag_nok (0) - Auto diag not allowed;1:Nsx_auto_diag_apc_off (1) - Auto diag without apc allowed;2:Nsx_auto_diag_apc_on (2) - Auto diag with apc allowed;3:Nsx_auto_diag_sfty_1 (3) - auto diag Safety 1 (DM);4:Nsx_auto_diag_sfty_2 (4) - auto diag Safety 2 (FPGA) ,77E,29,31,1,0,0,,22702D,62702D,ff,($702D) Failure class of the DCDC converter,0:Nsx_dcdc_err_stt_ok - No Fault type;1:Nsx_dcdc_err_stt_1 - GE-MD1 Class C;2:Nsx_dcdc_err_stt_1_prmt - GE-MD1 Class D;3:Nsx_dcdc_err_stt_2 - Not used;4:Nsx_dcdc_err_stt_3 - GE-MD3;5:Nsx_dcdc_err_stt_4 - GE-MD4 ,77E,29,31,1,0,0,,22702E,62702E,ff,($702E) DCDC state,0:Init (Nsx_dcdc_stt_ini);1:Autodiag (Nsx_dcdc_stt_dgt);2:Reset (Nsx_dcdc_stt_rst);3:Standby (Nsx_dcdc_stt_stby);4:Pwer ON (Nsx_dcdc_stt_on);5:MD1 (Nsx_dcdc_stt_def_mod_1);6:MD4 on (Nsx_dcdc_stt_def_mod_4_on);7:MD4 stby (Nsx_dcdc_stt_def_mod_4_stby) ,77E,28,31,1,0,0,,22702F,62702F,ff,($702F) High Voltage Network Default,0:Nsx_hv_nok (0)- More than one sensor failure;1:Nsx_hv_ok (1)- No Default;2:Nsx_hv_udc_dfl (2)- HV UDC Failure;3:Nsx_hv_dcdc_dfl (3)- HV DCDC voltage sensor Failure;4:Nsx_hv_bat_dfl (4)- HV Battery voltage sensor Failure;5:Nsx_hv_nw_loss - HV Network Loss or false relay status information;6:Nsx_hv_bat_cell_ov_dfl - HV battery overvoltage (cell);7:Nsx_hv_bat_ov_dfl - HV battery overvoltage (pack);8:Nsx_hv_rly_open_dfl- false open relay status information ,77E,29,31,1,0,0,,227030,627030,ff,($7030) Failure class of the Inverter,0:Nsx_invt_flt_type_0 (0)- no downgraded mode;1:Nsx_invt_flt_type_1 (1)- INV Stopped (class C);2:Nsx_invt_flt_type_2 (2)- INV Stopped (class D);3:Nsx_invt_flt_type_3 (3)- not used;4:Nsx_invt_flt_type_4 (4) - Safety Barrier Lost;5:Nsx_invt_flt_type_5 (5) - Alert Service;6:Nsx_invt_flt_type_6 (6) - Charge Stop Alert ,77E,30,31,1,0,0,,227031,627031,ff,($7031) Interlock plug service status, from LBC (condition for reprogramming),0:Closed;1:Opened;2:Unavailable;3:not used ,77E,28,31,1,0,0,,227032,627032,ff,($7032) Torque Default,0:No default;1:CAN Default;2:Safety Check Default;3:"Unexpected braking" is detected by the "static control strategy";4:"Unexpected acceleration" in case of negative torque request is detected by the "static control strategy";5:"Unexpected acceleration" is detected by the "static control strategy";6:"Unexpected acceleration" is detected by the "dynamic control strategy";7:"Over braking" is detected by the "static control strategy";8:"Over braking" or "Unexpected braking" are detected by the "dynamic control strategy";9:"Lack of motricity" is detected by the "static control strategy";10:"Lack of motricity" is detected by the "dynamic control strategy";11:"Loss of regenerative torque" is detected by the "static control strategy";12:"Loss of regenerative torque" is detected by the "dynamic control strategy";13:Non zero generated torque detected in case of overvoltage;14:Non limited torque detected in case of rotor overtemperature (rotor temperature = 100%) ,77E,24,39,.5,0,1,V,227033,627033,ff,($7033) DCDC input voltage ,77E,24,39,1,0,0,mV,227034,627034,ff,($7034) Voltage demand for the DCDC converter from the EVC ,77E,24,31,1,0,0,N·m,227035,627035,ff,($7035) Maximal available calculated torque in generator mode ,77E,24,31,1,0,0,N·m,227036,627036,ff,($7036) Maximal available calculated torque in motor mode ,77E,24,39,1,0,0,,227037,627037,4ff,($7037) Rotor position offset learning + CRC written by diag tool.1 ,77E,40,47,1,0,0,,227037,627037,4ff,($7037) Rotor position offset learning + CRC written by diag tool.2 ,77E,24,39,.0078125,5120,3,°C,227038,627038,ff,($7038) Rotor copper temperature raw estimation ,77E,24,39,.015625,0,2,%,227039,627039,ff,($7039) Combination of inverter, Excitation, PCB, MC and DRI temperatures, so in % ,77E,24,39,.015625,0,2,%,22703A,62703A,ff,($703A) Combination of rotor and stator temperatures, so in % ,77E,24,39,1,0,0,,22703B,62703B,4ff,($703B) Resistance rotor learning + CRC written by diag tool.1 ,77E,40,47,1,0,0,,22703B,62703B,4ff,($703B) Resistance rotor learning + CRC written by diag tool.2 ,77E,24,47,1,0,0,km,22703C,62703C,ff,($703C) Vehicle distance totalizer from EVC ,77E,25,31,1,0,0,°C,22703D,62703D,ff,($703D) The water temperature produced by the Rectifier ,77E,31,31,1,0,0,,22703E,62703E,ff,($703E) Mode of the power train (motor or generator),0:Motor;1:Generator ,77E,31,31,1,0,0,,22703F,62703F,ff,($703F) SPI communication default,0:No default;1:Default ,77E,31,31,1,0,0,,227041,627041,ff,($7041) Rotor overcurrent validated,0:No default;1:Default ,77E,31,31,1,0,0,,227042,627042,ff,($7042) Stator overcurrent validated,0:No default;1:Default ,77E,28,31,1,0,0,,227043,627043,ff,($7043) activated downgraded mode FPGA number,0:Nsx_no_sfty_dfl - no downgraded mode;1:Nsx_gc_md_01a - GC-MD01a;2:Nsx_gc_md_01b - GC-MD01b;3:Nsx_gc_md_01c - GC-MD01c;4:Nsx_gc_md_01d - GC-MD01d;5:Nsx_gc_md_01e - GC-MD01e;6:Nsx_gc_ci_md_01a ( 9 ) - gc_ci_md_01a;7:Nsx_gc_ci_md_01b (10) - gc_ci_md_01b;8:Nsx_dfl_chr_md (11) - inconsistency between PWMs and downgraded mode;9:Nsx_dfl_auto_diag_sfty_2 (12) -autodiag safety 2 fpga NOK ,77E,28,31,1,0,0,,227044,627044,ff,($7044) activated downgraded mode number,0:Nsx_no_sfty_dfl - no downgraded mode;1:Nsx_gc_md_01a - GC-MD01a;2:Nsx_gc_md_01b - GC-MD01b;3:Nsx_gc_md_01c - GC-MD01c;4:Nsx_gc_md_01d - GC-MD01d;5:Nsx_gc_md_01e - GC-MD01e;6:Nsx_gc_md_03 - GC-MD03;7:Nsx_gc_ci_md_01a ( 9 ) - gc_ci_md_01a;8:Nsx_gc_ci_md_01b (10) - gc_ci_md_01b ,77E,30,31,1,0,0,,227045,627045,ff,($7045) Validity status of the rotor electrical rotation speed,0:Nsx_emot_n_chk_ok- OK;1:Nsx_emot_n_chk_fail- Rotor speed is based on backup position acquisition- increased noise.;2:Nsx_emot_n_full_fail- No reliable position inforamtion to compute rotor speed or incoherency between functional and safety rotation speeds ,77E,29,31,1,0,0,,227046,627046,ff,($7046) Excitation Current Default,0:Nsx_ok (0) - no excitation sensor default;1:Nsx_i_f_dfl_1 (1) - default excitation sensor 1;2:Nsx_i_f_dfl_2 (2) - default excitation sensor 2;3:Nsx_i_f_dfl (3) - unknown excitation sensor default;4:Nsx_i_f_wi_dfl (4) - excitation wire default ,77E,28,31,1,0,0,,227047,627047,ff,($7047) Phase Current Default,0:Nsx_ok (0) - no sensor default;1:Nsx_i_mot_ph_dfl_1 (1) - default phase sensor 1;2:Nsx_i_mot_ph_dfl_2 (2) - default phase sensor 2;3:Nsx_i_mot_ph_dfl_3 (3) - default phase sensor 3;4:Nsx_i_mot_ph_dfl (4) - unknown phase sensor default;5:Nsx_i_mot_ph_wi_dfl_1 (5) - phase wire 1 default;6:Nsx_i_mot_ph_wi_dfl_2 (6) - phase wire 2 default;7:Nsx_i_mot_ph_wi_dfl_3 (7) - phase wire 3 default;8:Nsx_i_mot_ph_wi_dfl (8) - unknown phase wire default;9:Nsx_i_mot_ph_igbt_dfl (9) - unknown IBGT default ,77E,30,31,1,0,0,,227048,627048,ff,($7048) Validity status of the rotor electrical angular position,0:Nsx_dgt_emot_psn_chk_ok- OK;1:Nsx_dgt_emot_psn_chk_fail- Failure of the functional position acquisition;2:Nsx_dgt_emot_psn_chk_fail_sfty- Failure of the safety position acquisition;3:Nsx_dgt_emot_psn_chk_full_fail- Double failure or incoherency between functional and safety positions ,77E,24,39,.03125,16000,2,A,227049,627049,ff,($7049) Combinated current value on the HV Network of Inverter and Excitation ,77E,24,31,1,0,0,,22704A,62704A,4ff,($704A) TETA CRC received ,77E,24,39,.0078125,0,3,,22704B,62704B,ff,($704B) Received TETA position offset ,77E,24,31,1,0,0,,22704C,62704C,4ff,($704C) Received rotor reference resistance CRC ,77E,24,39,.001953125,-512,3,Ohm,22704D,62704D,ff,($704D) Received value for reference rotor resistance ,77E,24,39,.001953125,0,3,Ohm,227050,627050,ff,($7050) Value for reference rotor resistance (for safety monitoring) ,77E,24,31,1,0,0,,227051,627051,ff,($7051) Position sensor type,0:0- Sensor type A = TAMAGAWA;1:1- Sensor type B = MINEBEA ,77E,24,47,.001953125,20480,3,°C,227052,627052,ff,($7052) Vector of 5 average dcdc temperature on 1s in the minute before break event for post mortem.4 ,77E,48,71,.001953125,20480,3,°C,227052,627052,ff,($7052) Vector of 5 average dcdc temperature on 1s in the minute before break event for post mortem.3 ,77E,72,95,.001953125,20480,3,°C,227052,627052,ff,($7052) Vector of 5 average dcdc temperature on 1s in the minute before break event for post mortem.2 ,77E,96,119,.001953125,20480,3,°C,227052,627052,ff,($7052) Vector of 5 average dcdc temperature on 1s in the minute before break event for post mortem.1 ,77E,120,143,.001953125,20480,3,°C,227052,627052,ff,($7052) Vector of 5 average dcdc temperature on 1s in the minute before break event for post mortem.0 ,77E,24,47,.001953125,20480,3,°C,227053,627053,ff,($7053) Vector of 5 average driver board temperature on 1s in the minute before break event for post mortem.4 ,77E,48,71,.001953125,20480,3,°C,227053,627053,ff,($7053) Vector of 5 average driver board temperature on 1s in the minute before break event for post mortem.3 ,77E,72,95,.001953125,20480,3,°C,227053,627053,ff,($7053) Vector of 5 average driver board temperature on 1s in the minute before break event for post mortem.2 ,77E,96,119,.001953125,20480,3,°C,227053,627053,ff,($7053) Vector of 5 average driver board temperature on 1s in the minute before break event for post mortem.1 ,77E,120,143,.001953125,20480,3,°C,227053,627053,ff,($7053) Vector of 5 average driver board temperature on 1s in the minute before break event for post mortem.0 ,77E,24,47,.001953125,20480,3,°C,227054,627054,ff,($7054) Vector of 5 average excitation temperature on 1s in the minute before break event for post mortem.4 ,77E,48,71,.001953125,20480,3,°C,227054,627054,ff,($7054) Vector of 5 average excitation temperature on 1s in the minute before break event for post mortem.3 ,77E,72,95,.001953125,20480,3,°C,227054,627054,ff,($7054) Vector of 5 average excitation temperature on 1s in the minute before break event for post mortem.2 ,77E,96,119,.001953125,20480,3,°C,227054,627054,ff,($7054) Vector of 5 average excitation temperature on 1s in the minute before break event for post mortem.1 ,77E,120,143,.001953125,20480,3,°C,227054,627054,ff,($7054) Vector of 5 average excitation temperature on 1s in the minute before break event for post mortem.0 ,77E,24,47,.001953125,20480,3,°C,227055,627055,ff,($7055) Vector of 5 average inverter temperature on 1s in the minute before break event for post mortem.4 ,77E,48,71,.001953125,20480,3,°C,227055,627055,ff,($7055) Vector of 5 average inverter temperature on 1s in the minute before break event for post mortem.3 ,77E,72,95,.001953125,20480,3,°C,227055,627055,ff,($7055) Vector of 5 average inverter temperature on 1s in the minute before break event for post mortem.2 ,77E,96,119,.001953125,20480,3,°C,227055,627055,ff,($7055) Vector of 5 average inverter temperature on 1s in the minute before break event for post mortem.1 ,77E,120,143,.001953125,20480,3,°C,227055,627055,ff,($7055) Vector of 5 average inverter temperature on 1s in the minute before break event for post mortem.0 ,77E,24,47,.001953125,20480,3,°C,227056,627056,ff,($7056) Vector of 5 average pcb temperature on 1s in the minute before break event for post mortem.4 ,77E,48,71,.001953125,20480,3,°C,227056,627056,ff,($7056) Vector of 5 average pcb temperature on 1s in the minute before break event for post mortem.3 ,77E,72,95,.001953125,20480,3,°C,227056,627056,ff,($7056) Vector of 5 average pcb temperature on 1s in the minute before break event for post mortem.2 ,77E,96,119,.001953125,20480,3,°C,227056,627056,ff,($7056) Vector of 5 average pcb temperature on 1s in the minute before break event for post mortem.1 ,77E,120,143,.001953125,20480,3,°C,227056,627056,ff,($7056) Vector of 5 average pcb temperature on 1s in the minute before break event for post mortem.0 ,77E,24,47,.001953125,20480,3,°C,227057,627057,ff,($7057) Vector of 5 average wtr temperature on 1s in the minute before break event for post mortem.4 ,77E,48,71,.001953125,20480,3,°C,227057,627057,ff,($7057) Vector of 5 average wtr temperature on 1s in the minute before break event for post mortem.3 ,77E,72,95,.001953125,20480,3,°C,227057,627057,ff,($7057) Vector of 5 average wtr temperature on 1s in the minute before break event for post mortem.2 ,77E,96,119,.001953125,20480,3,°C,227057,627057,ff,($7057) Vector of 5 average wtr temperature on 1s in the minute before break event for post mortem.1 ,77E,120,143,.001953125,20480,3,°C,227057,627057,ff,($7057) Vector of 5 average wtr temperature on 1s in the minute before break event for post mortem.0 ,77E,24,47,.001953125,20480,3,°C,227058,627058,ff,($7058) 1s average dcdc temperature on break event for post mortem ,77E,24,47,.001953125,20480,3,°C,227059,627059,ff,($7059) 1s average driver board temperature on break event for post mortem ,77E,24,39,1,0,0,,22705A,62705A,ff,($705A) Derating counter for post mortem ,77E,24,39,1,0,0,,22705B,62705B,ff,($705B) Blocked rotor counter for post mortem ,77E,24,39,1,0,0,,22705C,62705C,ff,($705C) Water overheat temperature counter for post mortem ,77E,24,47,.001953125,20480,3,°C,22705D,62705D,ff,($705D) 1s average excitation temperature on break event for post mortem ,77E,24,47,.001953125,20480,3,°C,22705E,62705E,ff,($705E) 1s average inverter temperature on break event for post mortem ,77E,24,47,.001953125,20480,3,°C,22705F,62705F,ff,($705F) 1s average pcb temperature on break event for post mortem ,77E,24,47,.001953125,20480,3,°C,227061,627061,ff,($7061) Maximum driver board temperature during last derating ,77E,24,47,.001953125,20480,3,°C,227062,627062,ff,($7062) Maximum excitation temperature during last derating ,77E,24,47,.001953125,20480,3,°C,227063,627063,ff,($7063) Maximum inverter temperature during last derating ,77E,24,47,.001953125,20480,3,°C,227064,627064,ff,($7064) Maximum pcb temperature during last derating ,77E,24,47,.001953125,20480,3,°C,227065,627065,ff,($7065) Maximum water temperature during last derating ,77E,24,55,1,0,0,s,227066,627066,1ff,($7066) Charge or non zero torque time counter for post mortem analysis ,77E,24,55,1,0,0,s,227067,627067,1ff,($7067) APC and zero torque time counter for post mortem analysis ,77E,24,39,1,0,0,,227068,627068,ff,($7068) Software overcurrent protection counter for post mortem analysis ,77E,24,39,1,0,0,,227069,627069,ff,($7069) Hardware (by the fpga) overcurrent protection counter for post mortem analysis ,77E,24,39,1,0,0,,22706A,62706A,ff,($706A) Hardware (by the fpga) overvoltage protection counter for post mortem analysis ,77E,24,39,1,0,0,,22706B,62706B,ff,($706B) Software overvoltage protection counter for post mortem analysis ,77E,24,31,1,0,0,,22706C,62706C,ff,($706C) Alim 21 monitoring,0:No default;1:Default ,77E,24,31,1,0,0,,22706D,62706D,ff,($706D) Alim 21 with redundance monitoring,0:No default;1:Default ,77E,24,31,1,0,0,,22706E,62706E,ff,($706E) DID for activation of bypass frame,0:Frame inactivated;1:Frame active ,77E,24,31,1,0,0,,22706F,62706F,ff,($706F) Excitation high arm IGBT driver fault,0:No default;1:Default ,77E,24,31,1,0,0,,227070,627070,ff,($7070) Excitation low arm IGBT driver fault,0:No default;1:Default ,77E,24,31,1,0,0,,227071,627071,ff,($7071) Inverter high arm IGBT driver fault,0:No default;1:Default ,77E,24,31,1,0,0,,227072,627072,ff,($7072) Inverter low arm IGBT driver fault,0:No default;1:Default ,77E,24,31,1,0,0,,227073,627073,ff,($7073) Excitation over current protection (before flipflop) High,0:No default;1:Default ,77E,24,31,1,0,0,,227074,627074,ff,($7074) Excitation over current protection (before flipflop) Low,0:No default;1:Default ,77E,24,31,1,0,0,,227075,627075,ff,($7075) Inverter over current protection (before flipflop) Arm U,0:No default;1:Default ,77E,24,31,1,0,0,,227076,627076,ff,($7076) Inverter over current protection (before flipflop) Arm V,0:No default;1:Default ,77E,24,31,1,0,0,,227077,627077,ff,($7077) Inverter over current protection (before flipflop) Arm W,0:No default;1:Default ,77E,24,31,1,0,0,,227078,627078,ff,($7078) Over voltage protection (before flipflop),0:No default;1:Default ,77E,24,31,1,0,0,,227079,627079,ff,($7079) Copy Over voltage protection (before flipflop),0:No default;1:Default ,77E,24,31,1,0,0,,22707A,62707A,ff,($707A) Excitation driver state (ready or not),0:Not Ready;1:Ready ,77E,24,31,1,0,0,,22707B,62707B,ff,($707B) Inverter high IGBT driver state (ready or not),0:Not Ready;1:Ready ,77E,24,31,1,0,0,,22707C,62707C,ff,($707C) Inverter low IGBT driver state (ready or not),0:Not Ready;1:Ready ,77E,24,31,1,0,0,,22707D,62707D,ff,($707D) Supply monitoring default,0:No default;1:Default ,77E,24,31,1,0,0,,22707E,62707E,ff,($707E) Alimentation 11 state,0:Stop;1:Start ,77E,24,31,1,0,0,,22707F,62707F,ff,($707F) Alimentation 21 state,0:Stop;1:Start ,77E,24,31,1,0,0,,227081,627081,ff,($7081) Bypass mode,0:Bypass off;1:Only THOCP bypass;2:Torque setpoint bypass;3:TQ setpoint and torque mode bypass;4:Current request bypass;5:Voltage control bypass;6:Voltage control + position/speed bypass;7:Inverter voltage control +excitation current +position/speed bypass;8:RGL duty cycle bypass (in PWM);9:Voltage control and speed bypass and position emulation ,77E,24,31,1,0,0,,227082,627082,ff,($7082) FPGA fault sent by SPI,0:no fault;1:Vbx_invt_flt_dri_l or Vbx_invt_flt_dri_h;2:Vbx_exct_flt_dri_h or Vbx_exct_flt_dri_l;3:Vbx_ovp_udc_mem;4:Vbx_ocp_invt_mem;5:Vbx_ocp_exct_mem;6:Vbx_pwm_dfl_sfty_mem ,77E,24,31,1,0,0,,227083,627083,ff,($7083) INV Automation State,0:Init;1:Traction;2:Charge;3:Motor Stop;4:Rotor Position Learning;5:Stand By;6:Active Discharge;7:Diag ,77E,24,39,1,0,0,A,227084,627084,ff,($7084) DCDC Input current measure ,77E,24,39,1,0,0,A,227085,627085,ff,($7085) DCDC output current measure ,77E,24,31,1,0,0,°C,227086,627086,ff,($7086) DCDC power card temperature ,77E,24,39,.0078125,5120,3,°C,227087,627087,ff,($7087) Observer estimation for stack rotor temperature ,77E,24,39,.0078125,5120,3,°C,227088,627088,ff,($7088) Rotor copper temperature estimation ,77E,24,39,.0078125,5120,3,°C,227089,627089,ff,($7089) Stator copper temperature estimation ,77E,24,39,1,0,0,,22708A,62708A,ff,($708A) FPGA firmware version Identifier ,77E,24,39,.0078125,0,3,,22708B,62708B,ff,($708B) Rotor position measure ,77E,24,39,.000244140625,0,3,V,22708C,62708C,ff,($708C) Copy Raw rotor position resolver excitation peak voltage ,77E,24,39,.0078125,0,3,,22708D,62708D,ff,($708D) Rotor position measure (for safety monitoring) ,77E,24,47,.001953125,20480,3,°C,22708E,62708E,ff,($708E) Spare signal for driver board temperature ,77E,24,31,1,0,0,,22708F,62708F,ff,($708F) Opening relays wire request,0:Not open;1:Open ,77E,24,47,.001953125,20480,3,°C,227091,627091,ff,($7091) Last driver board temperature on 1s in the minute before break event for post mortem ,77E,24,31,1,0,0,,227092,627092,ff,($7092) CAN Etude activation,0:deactivated;1:activated ,77E,24,39,1,0,0,,227093,627093,ff,($7093) Number of Derating CFA functionnal failure 1 cycles saved ,77E,24,39,1,0,0,,227094,627094,ff,($7094) Number of Derating CFA functionnal failure 2 cycles saved ,77E,24,39,1,0,0,,227095,627095,ff,($7095) Number of Derating CFA functionnal failure 3 cycles saved ,77E,24,39,.015625,0,2,%,227096,627096,ff,($7096) Normalized inverter-Excitation temperature ,77E,24,39,.015625,0,2,%,227097,627097,ff,($7097) Normalized PCB-Micro_driverboard temperature ,77E,24,31,1,0,0,,227098,627098,ff,($7098) Excitation currents safety check,0:Both currents are consistent (difference thershold);2:current from sensor 1 (Vxx_i_f_1) is out of range;3:current from sensor 2 (Vxx_i_f_2) is out of range ,77E,24,31,1,0,0,,227099,627099,ff,($7099) Phase currents safety check,0:the summ of the 3 currents is close to zero (< threshold);1:the summ of the 3 currents isn't close to zero (>threshold) OR at least 2 of the currents are out of range;2:current from sensor 1 (Vxx_i_mot_ph_1) is out of range;3:current from sensor 2 (Vxx_i_mot_ph_2) is out of range;4:current from sensor 3 (Vxx_i_mot_ph_3) is out of range ,77E,24,31,1,0,0,µs,22709A,62709A,ff,($709A) Max CPU load at 10ms ,77E,24,31,1,0,0,µs,22709B,62709B,ff,($709B) CPU load at 10ms ,77E,24,31,1,0,0,,22709C,62709C,ff,($709C) Gestion of current sensors,0:No Default;1:Phase open circuit default;2:IGBT open circuit default ,77E,24,39,1,0,0,,22709D,62709D,ff,($709D) redundant supply 21 failure counter for post mortem analysis ,77E,24,39,1,0,0,,22709E,62709E,ff,($709E) SeedBreaker to explain the reset cause ,77E,24,39,1,0,0,,22709F,62709F,ff,($709F) Max of CPU load in micro-seconds (Vtx_TaskMaxDurationIT_A[12]) ,77E,24,39,1,0,0,,2270A1,6270A1,ff,($70A1) Max of 10ms task (Vtx_TaskMaxDurationIT_A[3]) ,77E,24,27,1,0,0,ms,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vtx_TaskMaxDurationIT_A[3]_(bit8-11) ,77E,28,31,1,0,0,ms,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vxx_10ms_max_duration_(bit12-15) ,77E,32,33,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Stack Overflow on State_(bit6-7),0:No overflow;1:overflow on Istack;2:overflow on Ustack;3:overflowon Csa ,77E,34,34,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vbx_sply_mon_(bit5) ,77E,35,35,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vbx_alim_21_mon_red_(bit4) ,77E,36,36,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vbx_alim_21_mon_(bit3) ,77E,37,37,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vbx_dfl_i_f_low_(bit2) ,77E,38,38,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vsx_emot_n_dfl_sfty_(bit1) ,77E,39,39,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vbx_rot_temp_dfl_sfty_(bit0) ,77E,24,39,.0000610352,16384,3,,2270A3,6270A3,ff,($70A3) Maximum normalized torque corresponding to max current saturation value ,77E,24,39,.0000610352,16384,3,,2270A4,6270A4,ff,($70A4) Minimum normalized torque corresponding to max current saturation value ,77E,24,39,.0000610352,16384,3,,2270A5,6270A5,ff,($70A5) Maximum instant value of normalized torque for cell overvoltage ,77E,24,39,.0000610352,16384,3,,2270A6,6270A6,ff,($70A6) Maximum instant value of normalized torque for temperature derating ,77E,24,39,.0000610352,16384,3,,2270A7,6270A7,ff,($70A7) Maximum instant value of normalized torque for voltage derating ,77E,24,39,.0000610352,16384,3,,2270A8,6270A8,ff,($70A8) Minimum instant value of normalized torque for cell overvoltage ,77E,24,39,1,0,0,,2270A9,6270A9,ff,($70A9) Vxx_invt_rst_ctx_5 ,77E,24,31,1,0,0,,2270CA,6270CA,ff,($70CA) Number of the bloc which has nvrol error ,77E,24,39,1,0,0,,2270CB,6270CB,ff,($70CB) Nvrol error counters.8 bits MSB.8 bits LSB ,77E,31,31,1,0,0,,2270D5,6270D5,ff,($70D5) Rotor position sensor safety check,0:the 2 positions are inconsisten (difference > thershold);1:Both positions are consistent (difference maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature F1,Safety Case 1 F2,Safety Case 2 F3,Multiple Failure F4,Temperature too Low F5,Negative Loop Error F6,Positive Loop Error F7,Initialisation not valid F8,Overspeed F9,Limp Home FA,Specific Supplier FB,- FC,-- FD,Drift low FE,Drift high ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/S-GW3_Dtcs.csv ================================================ D325,EMPTY_CALIB E24F,DTC_MUX_BCM E248,DTC_MUX_VDC E24E,DTC_MUX_CLUSTER E25B,DTC_MUX_USM A612,TX_CAN2 A613,TX_CAN3 A614,TX_CAN4 A615,TX_CAN5 A616,TX_CAN6 A617,TX_CAN7 A618,TX_CAN8 FD01,APPLI_SW_AREA FD02,CALIBRATION_AREA E140,DTC_MUX_ECM A600,GENERAL ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/S-GW3_Fields.csv ================================================ ,18DAF1D2,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,18DAF1D2,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Reprog ,18DAF1D2,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,18DAF1D2,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,18DAF1D2,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,18DAF1D2,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier ,18DAF1D2,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,18DAF1D2,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,18DAF1D2,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,42496:GENERAL;42514:TX_CAN2;42515:TX_CAN3;42516:TX_CAN4;42517:TX_CAN5;42518:TX_CAN6;42519:TX_CAN7;42520:TX_CAN8;54053:EMPTY_CALIB;57664:DTC_MUX_ECM;57928:DTC_MUX_VDC;57934:DTC_MUX_CLUSTER;57935:DTC_MUX_BCM;57947:DTC_MUX_USM;64769:APPLI_SW_AREA;64770:CALIBRATION_AREA ,18DAF1D2,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog / safety µC failure;70:calibration / parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive / sequence counter incorrect / not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions / events;15:Vehicle manufacturer / System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal / Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding/ General Failure Information;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time > maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time < minimum;51:signal low time > maximum;50:signal low time < minimum;49:no signal;37:signal shape / waveform failure;33:signal amplitude < minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude > maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid ,18DAF1D2,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,18DAF1D2,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,18DAF1D2,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1D2,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1D2,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1D2,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1D2,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1D2,0,0,1,0,0,,1903,5903,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,18DAF1D2,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,18DAF1D2,40,40,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,18DAF1D2,41,41,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,42,42,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1D2,43,43,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1D2,44,44,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1D2,45,45,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1D2,46,46,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,47,47,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1D2,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,18DAF1D2,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,42496:GENERAL;42514:TX_CAN2;42515:TX_CAN3;42516:TX_CAN4;42517:TX_CAN5;42518:TX_CAN6;42519:TX_CAN7;42520:TX_CAN8;54053:EMPTY_CALIB;57664:DTC_MUX_ECM;57928:DTC_MUX_VDC;57934:DTC_MUX_CLUSTER;57935:DTC_MUX_BCM;57947:DTC_MUX_USM;64769:APPLI_SW_AREA;64770:CALIBRATION_AREA ,18DAF1D2,40,47,1,0,0,,190A,590A,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog / safety µC failure;70:calibration / parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive / sequence counter incorrect / not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions / events;15:Vehicle manufacturer / System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal / Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding/ General Failure Information;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time > maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time < minimum;51:signal low time > maximum;50:signal low time < minimum;49:no signal;37:signal shape / waveform failure;33:signal amplitude < minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude > maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid ,18DAF1D2,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,18DAF1D2,49,49,1,0,0,,190A,590A,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,50,50,1,0,0,,190A,590A,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1D2,51,51,1,0,0,,190A,590A,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1D2,52,52,1,0,0,,190A,590A,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1D2,53,53,1,0,0,,190A,590A,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1D2,54,54,1,0,0,,190A,590A,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,55,55,1,0,0,,190A,590A,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1D2,24,31,1,0,0,,220100,620100,ff,VIRGIN_FLAG_CF,0:VIRGIN_MODE;255:NORMAL ,18DAF1D2,27,27,1,0,0,,220111,620111,ff,DATA_MONITOR_S.APC_HARD_WIRE_STATUS,0:APC is OFF;1:APC is ON ,18DAF1D2,28,31,1,0,0,,220111,620111,ff,DATA_MONITOR_S.GATEWAY_MODE_S,0:MEMORY_FAILURE;1:EMPTY;2:SECURE_CONFIG_FAILURE;3:DIAG_COM_CONFIG_FAILURE;4:SECURE_MODE;5:DIAG_COM_MODE;6:BUS_MONITOR_MODE;7:ID_MONITOR_MODE;8:INTERMEDIATE ,18DAF1D2,32,32,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN1,1:SEMI;0:COMPLETE ,18DAF1D2,33,33,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN2,1:SEMI;0:COMPLETE ,18DAF1D2,34,34,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN3,0:COMPLETE;1:SEMI ,18DAF1D2,35,35,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN4,1:SEMI;0:COMPLETE ,18DAF1D2,36,36,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN5,1:SEMI;0:COMPLETE ,18DAF1D2,37,37,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN6,1:SEMI;0:COMPLETE ,18DAF1D2,38,38,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN7,1:SEMI;0:COMPLETE ,18DAF1D2,39,39,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN8,0:COMPLETE;1:SEMI ,18DAF1D2,40,47,10,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_TIMEOUT_CF ,18DAF1D2,48,49,1,0,0,,220111,620111,ff,DATA_MONITOR_S.BSL_TRANS_REST_CF,0:NO_RESTRICTON;1:ONLY_DLC_DISABLED;2:ONLY_EXT_DISABLED;3:DLC_AND_EXT_DISABLED ,18DAF1D2,50,51,1,0,0,,220111,620111,ff,DATA_MONITOR_S.BSL_TRANS_REST_S,0:NO_VIOLATION;1:TRANS_DISABLED_FROM_DLC;2:TRANS_DISABLED_FROM_EXT;3:TRANS_DISABLED_FROM_DLC_EXT ,18DAF1D2,56,95,1,0,0,,220111,620111,2ff,DATA_MONITOR_S.ID_NUMBER_S ,18DAF1D2,96,111,1,0,0,,220111,620111,4ff,DATA_MONITOR_S.CONF_DATA_VARIATION ,18DAF1D2,112,175,1,0,0,,220111,620111,4ff,DATA_MONITOR_S.CONFIGURATION_DATA_VERSION_S ,18DAF1D2,176,199,1,0,0,,220111,620111,ff,DATA_MONITOR_S.MILEAGE_OF_LAST_BUSLOAD_VIOL ,18DAF1D2,200,207,1,0,0,,220111,620111,ff,DATA_MONITOR_S.CAN_GENERATION,1:C1A;2:N_GEN5;3:N_GEN3;20:R_G1;10:R_T4;30:R_CMF1 ,18DAF1D2,24,47,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_1 ,18DAF1D2,48,71,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_2 ,18DAF1D2,72,95,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_3 ,18DAF1D2,96,119,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_4 ,18DAF1D2,120,143,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_5 ,18DAF1D2,144,167,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_6 ,18DAF1D2,168,191,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_7 ,18DAF1D2,192,215,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_8 ,18DAF1D2,216,239,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_9 ,18DAF1D2,240,263,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_10 ,18DAF1D2,264,287,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_11 ,18DAF1D2,288,311,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_12 ,18DAF1D2,312,335,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_13 ,18DAF1D2,336,359,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_14 ,18DAF1D2,360,383,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_15 ,18DAF1D2,384,407,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_16 ,18DAF1D2,24,31,1,0,0,,220200,620200,ff,DIAG_COM_MODE_REQ_CF,170:DIAG_COM_MODE_START;255:DIAG_COM_MODE_STOP ,18DAF1D2,24,31,1,0,0,,220210,620210,ff,MONITOR_MODE_REQ_CF,170:MONITOR_BY_BUS_START;187:MONITOR_BY_ID_START;255:MONITOR_MODE_STOP ,18DAF1D2,24,31,1,0,0,,220220,620220,ff,MONITOR_TABLE_FOR_CH_CF,2:CAN2;4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,55,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_01_CF ,18DAF1D2,56,63,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_01_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,64,95,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_02_CF ,18DAF1D2,96,103,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_02_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,104,135,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_03_CF ,18DAF1D2,136,143,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_03_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,144,175,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_04_CF ,18DAF1D2,176,183,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_04_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,184,215,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_05_CF ,18DAF1D2,216,223,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_05_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,224,255,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_06_CF ,18DAF1D2,256,263,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_06_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,264,295,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_07_CF ,18DAF1D2,296,303,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_07_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,304,335,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_08_CF ,18DAF1D2,336,343,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_08_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,344,375,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_09_CF ,18DAF1D2,376,383,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_09_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,384,415,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_10_CF ,18DAF1D2,416,423,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_10_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,424,455,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_11_CF ,18DAF1D2,456,463,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_11_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,464,495,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_12_CF ,18DAF1D2,496,503,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_12_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,504,535,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_13_CF ,18DAF1D2,536,543,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_13_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,544,575,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_14_CF ,18DAF1D2,576,583,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_14_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,584,615,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_15_CF ,18DAF1D2,616,623,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_15_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,624,655,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_16_CF ,18DAF1D2,656,663,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_16_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,664,695,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_17_CF ,18DAF1D2,696,703,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_17_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,704,735,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_18_CF ,18DAF1D2,736,743,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_18_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,744,775,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_19_CF ,18DAF1D2,776,783,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_19_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,784,815,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_20_CF ,18DAF1D2,816,823,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_20_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,824,855,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_21_CF ,18DAF1D2,856,863,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_21_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,864,895,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_22_CF ,18DAF1D2,896,903,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_22_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,904,935,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_23_CF ,18DAF1D2,936,943,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_23_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,944,975,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_24_CF ,18DAF1D2,976,983,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_24_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,984,1015,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_25_CF ,18DAF1D2,1016,1023,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_25_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1024,1055,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_26_CF ,18DAF1D2,1056,1063,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_26_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1064,1095,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_27_CF ,18DAF1D2,1096,1103,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_27_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1104,1135,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_28_CF ,18DAF1D2,1136,1143,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_28_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1144,1175,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_29_CF ,18DAF1D2,1176,1183,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_29_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1184,1215,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_30_CF ,18DAF1D2,1216,1223,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_30_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1224,1255,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_31_CF ,18DAF1D2,1256,1263,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_31_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1264,1295,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_32_CF ,18DAF1D2,1296,1303,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_32_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1304,1335,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_33_CF ,18DAF1D2,1336,1343,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_33_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1344,1375,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_34_CF ,18DAF1D2,1376,1383,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_34_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1384,1415,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_35_CF ,18DAF1D2,1416,1423,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_35_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1424,1455,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_36_CF ,18DAF1D2,1456,1463,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_36_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1464,1495,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_37_CF ,18DAF1D2,1496,1503,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_37_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1504,1535,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_38_CF ,18DAF1D2,1536,1543,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_38_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1544,1575,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_39_CF ,18DAF1D2,1576,1583,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_39_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1584,1615,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_40_CF ,18DAF1D2,1616,1623,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_40_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1624,1655,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_41_CF ,18DAF1D2,1656,1663,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_41_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1664,1695,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_42_CF ,18DAF1D2,1696,1703,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_42_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1704,1735,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_43_CF ,18DAF1D2,1736,1743,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_43_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1744,1775,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_44_CF ,18DAF1D2,1776,1783,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_44_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1784,1815,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_45_CF ,18DAF1D2,1816,1823,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_45_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1824,1855,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_46_CF ,18DAF1D2,1856,1863,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_46_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1864,1895,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_47_CF ,18DAF1D2,1896,1903,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_47_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1904,1935,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_48_CF ,18DAF1D2,1936,1943,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_48_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1944,1975,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_49_CF ,18DAF1D2,1976,1983,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_49_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1984,2015,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_50_CF ,18DAF1D2,2016,2023,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_50_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,55,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_101_CF ,18DAF1D2,56,63,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_101_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,64,95,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_102_CF ,18DAF1D2,96,103,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_102_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,104,135,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_103_CF ,18DAF1D2,136,143,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_103_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,144,175,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_104_CF ,18DAF1D2,176,183,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_104_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,184,215,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_105_CF ,18DAF1D2,216,223,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_105_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,224,255,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_106_CF ,18DAF1D2,256,263,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_106_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,264,295,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_107_CF ,18DAF1D2,296,303,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_107_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,304,335,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_108_CF ,18DAF1D2,336,343,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_108_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,344,375,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_109_CF ,18DAF1D2,376,383,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_109_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,384,415,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_110_CF ,18DAF1D2,416,423,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_110_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,424,455,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_111_CF ,18DAF1D2,456,463,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_111_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,464,495,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_112_CF ,18DAF1D2,496,503,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_112_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,504,535,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_113_CF ,18DAF1D2,536,543,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_113_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,544,575,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_114_CF ,18DAF1D2,576,583,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_114_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,584,615,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_115_CF ,18DAF1D2,616,623,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_115_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,624,655,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_116_CF ,18DAF1D2,656,663,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_116_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,664,695,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_117_CF ,18DAF1D2,696,703,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_117_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,704,735,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_118_CF ,18DAF1D2,736,743,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_118_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,744,775,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_119_CF ,18DAF1D2,776,783,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_119_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,784,815,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_120_CF ,18DAF1D2,816,823,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_120_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,824,855,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_121_CF ,18DAF1D2,856,863,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_121_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,864,895,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_122_CF ,18DAF1D2,896,903,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_122_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,904,935,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_123_CF ,18DAF1D2,936,943,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_123_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,944,975,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_124_CF ,18DAF1D2,976,983,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_124_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,984,1015,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_125_CF ,18DAF1D2,1016,1023,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_125_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1024,1055,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_126_CF ,18DAF1D2,1056,1063,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_126_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1064,1095,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_127_CF ,18DAF1D2,1096,1103,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_127_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1104,1135,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_128_CF ,18DAF1D2,1136,1143,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_128_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1144,1175,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_129_CF ,18DAF1D2,1176,1183,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_129_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1184,1215,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_130_CF ,18DAF1D2,1216,1223,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_130_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1224,1255,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_131_CF ,18DAF1D2,1256,1263,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_131_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1264,1295,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_132_CF ,18DAF1D2,1296,1303,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_132_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1304,1335,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_133_CF ,18DAF1D2,1336,1343,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_133_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1344,1375,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_134_CF ,18DAF1D2,1376,1383,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_134_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1384,1415,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_135_CF ,18DAF1D2,1416,1423,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_135_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1424,1455,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_136_CF ,18DAF1D2,1456,1463,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_136_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1464,1495,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_137_CF ,18DAF1D2,1496,1503,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_137_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1504,1535,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_138_CF ,18DAF1D2,1536,1543,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_138_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1544,1575,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_139_CF ,18DAF1D2,1576,1583,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_139_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1584,1615,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_140_CF ,18DAF1D2,1616,1623,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_140_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1624,1655,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_141_CF ,18DAF1D2,1656,1663,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_141_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1664,1695,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_142_CF ,18DAF1D2,1696,1703,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_142_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1704,1735,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_143_CF ,18DAF1D2,1736,1743,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_143_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1744,1775,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_144_CF ,18DAF1D2,1776,1783,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_144_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1784,1815,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_145_CF ,18DAF1D2,1816,1823,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_145_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1824,1855,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_146_CF ,18DAF1D2,1856,1863,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_146_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1864,1895,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_147_CF ,18DAF1D2,1896,1903,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_147_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1904,1935,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_148_CF ,18DAF1D2,1936,1943,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_148_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1944,1975,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_149_CF ,18DAF1D2,1976,1983,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_149_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1984,2015,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_150_CF ,18DAF1D2,2016,2023,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_150_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,55,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_201_CF ,18DAF1D2,56,63,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_201_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,64,95,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_202_CF ,18DAF1D2,96,103,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_202_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,104,135,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_203_CF ,18DAF1D2,136,143,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_203_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,144,175,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_204_CF ,18DAF1D2,176,183,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_204_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,184,215,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_205_CF ,18DAF1D2,216,223,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_205_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,224,255,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_206_CF ,18DAF1D2,256,263,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_206_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,264,295,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_207_CF ,18DAF1D2,296,303,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_207_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,304,335,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_208_CF ,18DAF1D2,336,343,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_208_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,344,375,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_209_CF ,18DAF1D2,376,383,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_209_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,384,415,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_210_CF ,18DAF1D2,416,423,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_210_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,424,455,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_211_CF ,18DAF1D2,456,463,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_211_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,464,495,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_212_CF ,18DAF1D2,496,503,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_212_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,504,535,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_213_CF ,18DAF1D2,536,543,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_213_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,544,575,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_214_CF ,18DAF1D2,576,583,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_214_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,584,615,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_215_CF ,18DAF1D2,616,623,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_215_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,624,655,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_216_CF ,18DAF1D2,656,663,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_216_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,664,695,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_217_CF ,18DAF1D2,696,703,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_217_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,704,735,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_218_CF ,18DAF1D2,736,743,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_218_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,744,775,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_219_CF ,18DAF1D2,776,783,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_219_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,784,815,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_220_CF ,18DAF1D2,816,823,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_220_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,824,855,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_221_CF ,18DAF1D2,856,863,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_221_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,864,895,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_222_CF ,18DAF1D2,896,903,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_222_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,904,935,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_223_CF ,18DAF1D2,936,943,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_223_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,944,975,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_224_CF ,18DAF1D2,976,983,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_224_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,984,1015,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_225_CF ,18DAF1D2,1016,1023,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_225_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1024,1055,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_226_CF ,18DAF1D2,1056,1063,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_226_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1064,1095,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_227_CF ,18DAF1D2,1096,1103,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_227_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1104,1135,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_228_CF ,18DAF1D2,1136,1143,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_228_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1144,1175,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_229_CF ,18DAF1D2,1176,1183,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_229_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1184,1215,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_230_CF ,18DAF1D2,1216,1223,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_230_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1224,1255,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_231_CF ,18DAF1D2,1256,1263,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_231_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1264,1295,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_232_CF ,18DAF1D2,1296,1303,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_232_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1304,1335,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_233_CF ,18DAF1D2,1336,1343,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_233_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1344,1375,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_234_CF ,18DAF1D2,1376,1383,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_234_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1384,1415,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_235_CF ,18DAF1D2,1416,1423,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_235_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1424,1455,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_236_CF ,18DAF1D2,1456,1463,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_236_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1464,1495,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_237_CF ,18DAF1D2,1496,1503,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_237_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1504,1535,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_238_CF ,18DAF1D2,1536,1543,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_238_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1544,1575,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_239_CF ,18DAF1D2,1576,1583,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_239_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1584,1615,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_240_CF ,18DAF1D2,1616,1623,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_240_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1624,1655,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_241_CF ,18DAF1D2,1656,1663,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_241_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1664,1695,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_242_CF ,18DAF1D2,1696,1703,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_242_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1704,1735,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_243_CF ,18DAF1D2,1736,1743,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_243_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1744,1775,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_244_CF ,18DAF1D2,1776,1783,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_244_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1784,1815,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_245_CF ,18DAF1D2,1816,1823,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_245_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1824,1855,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_246_CF ,18DAF1D2,1856,1863,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_246_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1864,1895,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_247_CF ,18DAF1D2,1896,1903,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_247_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1904,1935,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_248_CF ,18DAF1D2,1936,1943,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_248_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1944,1975,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_249_CF ,18DAF1D2,1976,1983,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_249_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1984,2015,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_250_CF ,18DAF1D2,2016,2023,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_250_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,55,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_301_CF ,18DAF1D2,56,63,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_301_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,64,95,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_302_CF ,18DAF1D2,96,103,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_302_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,104,135,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_303_CF ,18DAF1D2,136,143,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_303_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,144,175,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_304_CF ,18DAF1D2,176,183,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_304_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,184,215,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_305_CF ,18DAF1D2,216,223,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_305_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,224,255,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_306_CF ,18DAF1D2,256,263,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_306_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,264,295,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_307_CF ,18DAF1D2,296,303,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_307_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,304,335,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_308_CF ,18DAF1D2,336,343,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_308_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,344,375,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_309_CF ,18DAF1D2,376,383,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_309_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,384,415,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_310_CF ,18DAF1D2,416,423,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_310_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,424,455,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_311_CF ,18DAF1D2,456,463,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_311_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,464,495,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_312_CF ,18DAF1D2,496,503,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_312_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,504,535,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_313_CF ,18DAF1D2,536,543,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_313_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,544,575,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_314_CF ,18DAF1D2,576,583,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_314_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,584,615,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_315_CF ,18DAF1D2,616,623,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_315_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,624,655,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_316_CF ,18DAF1D2,656,663,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_316_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,664,695,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_317_CF ,18DAF1D2,696,703,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_317_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,704,735,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_318_CF ,18DAF1D2,736,743,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_318_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,744,775,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_319_CF ,18DAF1D2,776,783,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_319_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,784,815,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_320_CF ,18DAF1D2,816,823,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_320_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,824,855,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_321_CF ,18DAF1D2,856,863,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_321_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,864,895,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_322_CF ,18DAF1D2,896,903,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_322_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,904,935,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_323_CF ,18DAF1D2,936,943,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_323_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,944,975,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_324_CF ,18DAF1D2,976,983,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_324_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,984,1015,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_325_CF ,18DAF1D2,1016,1023,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_325_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1024,1055,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_326_CF ,18DAF1D2,1056,1063,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_326_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1064,1095,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_327_CF ,18DAF1D2,1096,1103,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_327_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1104,1135,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_328_CF ,18DAF1D2,1136,1143,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_328_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1144,1175,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_329_CF ,18DAF1D2,1176,1183,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_329_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1184,1215,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_330_CF ,18DAF1D2,1216,1223,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_330_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1224,1255,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_331_CF ,18DAF1D2,1256,1263,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_331_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1264,1295,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_332_CF ,18DAF1D2,1296,1303,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_332_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1304,1335,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_333_CF ,18DAF1D2,1336,1343,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_333_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1344,1375,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_334_CF ,18DAF1D2,1376,1383,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_334_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1384,1415,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_335_CF ,18DAF1D2,1416,1423,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_335_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1424,1455,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_336_CF ,18DAF1D2,1456,1463,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_336_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1464,1495,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_337_CF ,18DAF1D2,1496,1503,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_337_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1504,1535,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_338_CF ,18DAF1D2,1536,1543,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_338_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1544,1575,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_339_CF ,18DAF1D2,1576,1583,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_339_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1584,1615,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_340_CF ,18DAF1D2,1616,1623,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_340_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1624,1655,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_341_CF ,18DAF1D2,1656,1663,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_341_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1664,1695,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_342_CF ,18DAF1D2,1696,1703,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_342_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1704,1735,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_343_CF ,18DAF1D2,1736,1743,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_343_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1744,1775,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_344_CF ,18DAF1D2,1776,1783,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_344_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1784,1815,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_345_CF ,18DAF1D2,1816,1823,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_345_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1824,1855,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_346_CF ,18DAF1D2,1856,1863,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_346_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1864,1895,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_347_CF ,18DAF1D2,1896,1903,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_347_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1904,1935,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_348_CF ,18DAF1D2,1936,1943,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_348_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1944,1975,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_349_CF ,18DAF1D2,1976,1983,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_349_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1984,2015,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_350_CF ,18DAF1D2,2016,2023,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_350_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,55,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_401_CF ,18DAF1D2,56,63,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_401_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,64,95,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_402_CF ,18DAF1D2,96,103,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_402_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,104,135,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_403_CF ,18DAF1D2,136,143,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_403_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,144,175,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_404_CF ,18DAF1D2,176,183,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_404_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,184,215,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_405_CF ,18DAF1D2,216,223,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_405_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,224,255,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_406_CF ,18DAF1D2,256,263,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_406_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,264,295,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_407_CF ,18DAF1D2,296,303,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_407_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,304,335,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_408_CF ,18DAF1D2,336,343,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_408_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,344,375,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_409_CF ,18DAF1D2,376,383,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_409_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,384,415,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_410_CF ,18DAF1D2,416,423,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_410_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,424,455,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_411_CF ,18DAF1D2,456,463,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_411_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,464,495,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_412_CF ,18DAF1D2,496,503,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_412_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,504,535,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_413_CF ,18DAF1D2,536,543,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_413_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,544,575,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_414_CF ,18DAF1D2,576,583,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_414_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,584,615,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_415_CF ,18DAF1D2,616,623,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_415_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,624,655,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_416_CF ,18DAF1D2,656,663,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_416_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,664,695,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_417_CF ,18DAF1D2,696,703,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_417_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,704,735,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_418_CF ,18DAF1D2,736,743,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_418_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,744,775,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_419_CF ,18DAF1D2,776,783,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_419_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,784,815,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_420_CF ,18DAF1D2,816,823,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_420_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,824,855,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_421_CF ,18DAF1D2,856,863,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_421_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,864,895,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_422_CF ,18DAF1D2,896,903,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_422_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,904,935,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_423_CF ,18DAF1D2,936,943,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_423_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,944,975,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_424_CF ,18DAF1D2,976,983,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_424_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,984,1015,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_425_CF ,18DAF1D2,1016,1023,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_425_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1024,1055,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_426_CF ,18DAF1D2,1056,1063,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_426_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1064,1095,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_427_CF ,18DAF1D2,1096,1103,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_427_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1104,1135,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_428_CF ,18DAF1D2,1136,1143,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_428_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1144,1175,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_429_CF ,18DAF1D2,1176,1183,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_429_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1184,1215,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_430_CF ,18DAF1D2,1216,1223,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_430_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1224,1255,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_431_CF ,18DAF1D2,1256,1263,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_431_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1264,1295,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_432_CF ,18DAF1D2,1296,1303,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_432_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1304,1335,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_433_CF ,18DAF1D2,1336,1343,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_433_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1344,1375,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_434_CF ,18DAF1D2,1376,1383,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_434_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1384,1415,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_435_CF ,18DAF1D2,1416,1423,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_435_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1424,1455,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_436_CF ,18DAF1D2,1456,1463,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_436_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1464,1495,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_437_CF ,18DAF1D2,1496,1503,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_437_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1504,1535,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_438_CF ,18DAF1D2,1536,1543,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_438_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1544,1575,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_439_CF ,18DAF1D2,1576,1583,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_439_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1584,1615,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_440_CF ,18DAF1D2,1616,1623,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_440_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1624,1655,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_441_CF ,18DAF1D2,1656,1663,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_441_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1664,1695,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_442_CF ,18DAF1D2,1696,1703,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_442_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1704,1735,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_443_CF ,18DAF1D2,1736,1743,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_443_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1744,1775,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_444_CF ,18DAF1D2,1776,1783,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_444_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1784,1815,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_445_CF ,18DAF1D2,1816,1823,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_445_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1824,1855,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_446_CF ,18DAF1D2,1856,1863,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_446_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1864,1895,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_447_CF ,18DAF1D2,1896,1903,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_447_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1904,1935,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_448_CF ,18DAF1D2,1936,1943,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_448_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1944,1975,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_449_CF ,18DAF1D2,1976,1983,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_449_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1984,2015,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_450_CF ,18DAF1D2,2016,2023,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_450_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,63,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN1 ,18DAF1D2,64,103,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN2 ,18DAF1D2,104,143,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN3 ,18DAF1D2,144,183,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN4 ,18DAF1D2,184,223,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN5 ,18DAF1D2,224,263,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN6 ,18DAF1D2,264,303,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN7 ,18DAF1D2,304,343,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN8 ,18DAF1D2,344,383,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.PAYLOAD_FILTER_VIOL_CAN1 ,18DAF1D2,384,423,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.PAYLOAD_FILTER_VIOL_CAN2 ,18DAF1D2,424,463,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN3 ,18DAF1D2,464,503,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN4 ,18DAF1D2,504,543,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN5 ,18DAF1D2,544,583,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN6 ,18DAF1D2,584,623,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN7 ,18DAF1D2,624,663,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN8 ,18DAF1D2,664,703,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.AUTHENT_VIOL ,18DAF1D2,704,719,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.APPLI_DIGITAL_SIGN_VIOL ,18DAF1D2,720,735,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.CALIB_DIGITAL_SIGN_VIOL ,18DAF1D2,24,47,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.ABOLUTE_TIME_N01 ,18DAF1D2,48,71,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.MILEAGE_N01 ,18DAF1D2,76,78,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.VIOLATION_TYPE_N01,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.SIZE_IDENTIFIER_N01,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220400,620400,4ff,SECURITY_LOG_N01.IDENTIFIER_VIOLATED_FRAME_N01 ,18DAF1D2,112,119,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.VIOLATED_BUS_N01,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.PAYLOAD_DLC_N01,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220400,620400,4ff,SECURITY_LOG_N01.PAYLOAD_VIOLATED_FRAME_N01 ,18DAF1D2,199,199,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_STATUS_N01,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN1_N01 ,18DAF1D2,208,215,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN2_N01 ,18DAF1D2,216,223,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN3_N01 ,18DAF1D2,224,231,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN4_N01 ,18DAF1D2,232,239,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN5_N01 ,18DAF1D2,240,247,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN6_N01 ,18DAF1D2,248,255,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN7_N01 ,18DAF1D2,256,263,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN8_N01 ,18DAF1D2,24,47,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.ABOLUTE_TIME_N500 ,18DAF1D2,48,71,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.MILEAGE_N500 ,18DAF1D2,76,78,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.VIOLATION_TYPE_N500,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.SIZE_IDENTIFIER_N500,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205F3,6205F3,4ff,SECURITY_LOG_N500.IDENTIFIER_VIOLATED_FRAME_N500 ,18DAF1D2,112,119,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.VIOLATED_BUS_N500,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.PAYLOAD_DLC_N500,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205F3,6205F3,4ff,SECURITY_LOG_N500.PAYLOAD_VIOLATED_FRAME_N500 ,18DAF1D2,199,199,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_STATUS_N500,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN1_N500 ,18DAF1D2,208,215,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN2_N500 ,18DAF1D2,216,223,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN3_N500 ,18DAF1D2,224,231,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN4_N500 ,18DAF1D2,232,239,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN5_N500 ,18DAF1D2,240,247,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN6_N500 ,18DAF1D2,248,255,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN7_N500 ,18DAF1D2,256,263,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN8_N500 ,18DAF1D2,24,55,1,-1,0,,2206FF,6206FF,1ff,LAST_VIOL_LOG_POSITION ,18DAF1D2,24,24,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Activation_Request_Response,0:Not Sent;1:Sent ,18DAF1D2,25,25,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Activation_Request,0:Not Accepted;1:Accepted ,18DAF1D2,26,26,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Activation_Result_Request,0:Not Received;1:Received ,18DAF1D2,27,27,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Activation_Result_Response,0:Not Sent;1:Sent ,18DAF1D2,28,28,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Back_to_Idle_Complete,0:Not Received;1:Received ,18DAF1D2,29,29,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Back_to_Idle_Request,0:Not Sent;1:Sent ,18DAF1D2,30,30,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Cancel_request,0:Not Received;1:Received ,18DAF1D2,31,31,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Cancel_request_to_Target_ECU,0:Not Sent;1:Sent ,18DAF1D2,32,32,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Cancel_request_to_Target_ECU_Reply,0:Not Received;1:Received ,18DAF1D2,33,33,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Change_to_Ready_to_config,0:Not Sent;1:Sent ,18DAF1D2,34,34,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Change_to_Ready_to_config_reply,0:Not Received;1:Received ,18DAF1D2,35,35,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Configuration_complete,0:Not Received;1:Received ,18DAF1D2,36,36,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_configuration_data,0:Not Exist;1:Exist ,18DAF1D2,37,37,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Current_Bank_request,0:Not Sent;1:Sent ,18DAF1D2,38,38,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_default_session_request,0:Not Sent;1:Sent ,18DAF1D2,39,39,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_default_session_request_reply,0:Not Received;1:Received ,18DAF1D2,40,47,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_current_bank ,18DAF1D2,48,48,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Download_start_request,0:Not Received;1:Received ,18DAF1D2,49,49,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Download_start_request_Response,0:Not Sent;1:Sent ,18DAF1D2,50,50,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_DTC_request,0:Not Sent;1:Sent ,18DAF1D2,51,51,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_energy_state_condition,0:Not Met;1:Met ,18DAF1D2,52,52,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Error_report_request,0:Not Sent;1:Sent ,18DAF1D2,53,53,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Error_report_request_response,0:Not Received;1:Received ,18DAF1D2,54,54,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_mode_notification_cancel_request,0:Not Sent;1:Sent ,18DAF1D2,55,55,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_mode_notification,0:Not Sent;1:Sent ,18DAF1D2,56,87,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_ECU_ID ,18DAF1D2,88,95,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_current_Bank ,18DAF1D2,96,175,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_current_component_reference_F012 ,18DAF1D2,176,255,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_current_component_reference_F188 ,18DAF1D2,256,263,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Expected_current_ECU_reference_Bank ,18DAF1D2,264,343,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Expected_current_ECU_reference _HW ,18DAF1D2,344,503,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Expected_current_ECU_reference_Serial_Number ,18DAF1D2,504,511,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_updated_bank ,18DAF1D2,512,591,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_updated_component_reference_F012 ,18DAF1D2,592,727,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_VIN ,18DAF1D2,728,729,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_buffer_diagnostic_error,0:No error detected;1:Error detected;2:Invalid;3:Not Used ,18DAF1D2,730,732,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_session,0:Gateway - Default;1:Gateway - Extended;2:Gateway - Reprogramming;3:FOTA-A Default;4:FOTA-A FOTA;5:FOTA-B Default;6:Not Used ,18DAF1D2,733,733,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_violation_SOC,0:NORMAL (FOTA violation is not detected);1:VIOLATED (FOTA violation is detected) ,18DAF1D2,734,734,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Gateway package remained size request,0:Not Received;1:Received ,18DAF1D2,735,735,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_IGN,0:OFF;1:ON ,18DAF1D2,736,736,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Gateway FOTA Busy Status,0:Ready;1:Busy ,18DAF1D2,737,741,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Gateway_FOTA_status,0:Idle;1:Inventory read in progress;2:Inventory read complete;3:Transmission from SWMC in progress;4:Integrity check in progress;5:Integrity check complete;6:Parameters check in progress;7:Transmission to target ECU in progress;8:writing complete;9:Ready to activate;10:vehicle state check in progress;11:Switch in progress;12:Reboot in progress;13:Configuration install in progress;14:Configuration complete;15:Activation complete;16:Cancel in progress;17:Cancel complete;18:RollBack in progress;19:Rollback complete;20:Cancel failed;21:SWMC related cancel complete;22:invalid;23:No used ,18DAF1D2,744,775,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Gateway_package_remained_size ,18DAF1D2,776,807,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Gateway package size ,18DAF1D2,808,808,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Install result request,0:Not Received;1:Received ,18DAF1D2,809,809,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Install result request response,0:Not Received;1:Received ,18DAF1D2,810,810,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Installation complete reply from Target ECU,0:Not Received;1:Received ,18DAF1D2,811,811,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Installation complete to Target ECU,0:Not Sent;1:Sent ,18DAF1D2,812,812,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Installation Request,0:Not Sent;1:Sent ,18DAF1D2,813,813,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Installation Request Response,0:Not Sent;1:Sent ,18DAF1D2,814,814,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_integrity check NOK result,0:Not Sent;1:Sent ,18DAF1D2,815,815,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_integrity check OK result,0:Not Sent;1:Sent ,18DAF1D2,816,816,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_integrity check result request,0:Not Received;1:Received ,18DAF1D2,817,817,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Inventory Elementary Request Response,0:Not Received;1:Received ,18DAF1D2,818,818,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Reboot request reply from Target ECU,0:Not Received;1:Received ,18DAF1D2,819,819,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Reboot request to Target ECU,0:Not Sent;1:Sent ,18DAF1D2,820,820,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_RequestTransferExit,0:Not Received;1:Received ,18DAF1D2,821,821,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_RequestTransferExit Reply,0:Not Sent;1:Sent ,18DAF1D2,822,822,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Rollback complete,0:Not Received;1:Received ,18DAF1D2,823,823,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Rollback request,0:Not Sent;1:Sent ,18DAF1D2,824,871,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Inventory_Elementary_Request ,18DAF1D2,872,879,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Number of target ECU package blocks ,18DAF1D2,880,887,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Retry counter ,18DAF1D2,888,888,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Session change request,0:Not Received;1:Received ,18DAF1D2,889,889,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Switching_Complete,0:Not Received;1:Received ,18DAF1D2,890,890,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Switching_Request,0:Not Sent;1:Sent ,18DAF1D2,891,891,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F1A2,0:Not Sent;1:Sent ,18DAF1D2,892,892,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F188,0:Not Sent;1:Sent ,18DAF1D2,893,893,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F18C,0:Not Sent;1:Sent ,18DAF1D2,894,894,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F012,0:Not Sent;1:Sent ,18DAF1D2,895,895,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F191,0:Not Sent;1:Sent ,18DAF1D2,896,896,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F1A1,0:Not Sent;1:Sent ,18DAF1D2,897,897,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F187,0:Not Sent;1:Sent ,18DAF1D2,898,898,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target ECU FOTA inconsistence error,0:Not Detected;1:Detected ,18DAF1D2,899,903,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_FOTA_status,0:Idle;1:Transmission in progress;2:Ready to switch;3:Switch in progress;4:Switch done;5:Reboot in progress;6:FW version check in progress;7:Configuration install in progress;8:Installation complete;9:Error detected;10:Rollback in progress;11:Rollback complete;12:Cancel in progress;13:Update Error detected;14:Reserved ,18DAF1D2,904,1063,1,0,0,,221111,621111,4ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F18C ,18DAF1D2,1064,1143,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F012 ,18DAF1D2,1144,1223,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F1A1 ,18DAF1D2,1224,1303,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F187 ,18DAF1D2,1304,1383,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F1A2 ,18DAF1D2,1384,1463,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F188 ,18DAF1D2,1464,1543,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F191 ,18DAF1D2,1544,1544,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_FOTA_Status_Request,0:Not Sent;1:Sent ,18DAF1D2,1545,1545,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Integrity_Check_NOK_Result,0:Not Received;1:Received ,18DAF1D2,1546,1546,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Integrity_Check_OK_Result,0:Not Received;1:Received ,18DAF1D2,1547,1547,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Integrity_Check_Request,0:Not Received;1:Received ,18DAF1D2,1548,1548,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Package_Transmission_Complete,0:Not Received;1:Received ,18DAF1D2,1549,1549,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Package_Transmission_Complete_Reply,0:Not Received;1:Received ,18DAF1D2,1550,1551,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_VehicleStateCondition,0:Not Met;1:Met;2:Invalid;3:Not Used ,18DAF1D2,1552,1567,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_VehicleSpeed ,18DAF1D2,1568,1571,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_VehicleState,0:Sleeping;1:Not used;2:CutoffPending;3:AutoACC - BatTempoLevel;4:Not used2;5:IgnitionLevel;6:StartingInProgress;7:PowertrainRunning;8:AutoStart;9:EngineSystemStop;15:Unavailable ,18DAF1D2,1572,1573,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_PWTStartForbiddenFeedback,0:unavailable value;1:No received request;2:Not Set - powertrain start allowed;3:Set - powertrain start forbidden ,18DAF1D2,24,663,1,0,0,,221200,621200,4ff,FOTA_Pass DTC ,18DAF1D2,24,503,1,0,0,,221210,621210,4ff,FOTA_DTC from Target ECU ,18DAF1D2,24,2071,1,0,0,,221220,621220,4ff,FOTA_Digital signature ,18DAF1D2,24,2071,1,0,0,,221230,621230,4ff,FOTA_Target ECU digital signature ,18DAF1D2,24,2071,1,0,0,,221240,621240,4ff,FOTA_Hash of content ,18DAF1D2,24,39,1,0,0,,2212FF,6212FF,ff,FOTA_Violation counter ,18DAF1D2,24,151,1,0,0,,22F010,62F010,2ff,Fingerprint ,18DAF1D2,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,18DAF1D2,24,103,1,0,0,,22F012,62F012,2ff,OperationnalReference ,18DAF1D2,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationnalReference ,18DAF1D2,24,135,1,0,0,,22F0A1,62F0A1,4ff,FOTA_Resume flag and Address ,18DAF1D2,24,95,1,0,0,,22F0A3,62F0A3,4ff,FOTA_Send request as SMC command ,18DAF1D2,24,255,1,0,0,,22F0A4,62F0A4,4ff,FOTA_Read the result of SMC command ,18DAF1D2,24,47,1,0,0,km,22F0D0,62F0D0,ff,MileageIdent ,18DAF1D2,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC_OccurrenceCounter ,18DAF1D2,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,18DAF1D2,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,18DAF1D2,24,63,1,0,0,,22F180,62F180,4ff,bootSoftwareIdentification ,18DAF1D2,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,18DAF1D2,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,18DAF1D2,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,18DAF1D2,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,18DAF1D2,24,31,1,0,0,,22F18E,62F18E,ff,VehicleManufacturerKitAssemblyPartNumber ,18DAF1D2,24,159,1,0,0,,22F190,62F190,2ff,VIN ,18DAF1D2,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,18DAF1D2,24,103,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,18DAF1D2,24,151,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,18DAF1D2,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,18DAF1D2,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumberN ,18DAF1D2,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/S-GW3_Tests.csv ================================================ 44,data memory failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 61,signal calculation failure 67,signal incorrect after event 51,not programmed 71,actuator stuck 72,actuator stuck open 45,program memory failure 55,not configured 54,missing calibration 52,not activated 4B,over temperature 4A,incorrect component installed 49,internal electronic failure 48,supervision software failure 47,watchdog / safety µC failure 46,calibration / parameter memory failure 73,actuator stuck closed 87,missing message 53,deactivated 43,special memory failure 98,component or system over temperature 97,Component or system operation obstructed or blocked 96,component internal failure 95,incorrect assembly 94,unexpected operation 93,no operation 92,performance or incorrect operation 91,parametric 8F,erratic 88,bus off 85,signal above allowable range 86,signal invalid 74,actuator slipping 84,signal below allowable range 83,value of signal protection calculation incorrect 82,alive / sequence counter incorrect / not updated 81,invalid serial data received 7B,low fluid level 7A,fluid leak or seal failure 79,mechanical linkage failure 78,alignment or adjustment incorrect 77,commanded position not reachable 76,wrong mounting position 75,emergency position not reachable 66,signal has too many transitions / events 0F,Vehicle manufacturer / System supplier specific 1B,circuit resistance above threshold 1A,circuit resistance below threshold 19,circuit current above threshold 18,circuit current below threshold 17,circuit voltage above threshold 16,circuit voltage below threshold 15,circuit short to battery or open 14,circuit short to ground or open 13,circuit open 1C,circuit voltage out of range 11,circuit short to ground 09,Component Failures 08,Bus Signal / Message Failures 06,Algorithm Based Failures 05,System Programming Failures 04,System Internal Failures 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 02,General signal failure 01,General Electrical Failure 00,Device and failure type ODB codding/ General Failure Information 42,general memory failure 68,event information 12,circuit short to battery 35,signal high time > maximum 41,general checksum failure 3A,incorrect has too many pulses 07,Mechanical Failures 1D,circuit current out of range 39,incorrect has too few pulses 38,signal frequency incorrect 36,signal frequency too low 34,signal high time < minimum 33,signal low time > maximum 32,signal low time < minimum 31,no signal 25,signal shape / waveform failure 21,signal amplitude < minimum 37,signal frequency too high 2F,signal erratic 1F,circuit intermittent 23,signal stuck low 24,signal stuck high 22,signal amplitude > maximum 1E,circuit resistance out of range 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/TDB_Dtcs.csv ================================================ 9402,Fuel gauge monitoring 9404,Warning Airbag telltale monitoring 940C,EEPROM monitoring 9412,External temperature inputs 9413,Error configuration C001,Lost CAN communication or BUS OFF F003,Power supply monitoring 9420,Alternator Excitation Input C002,Lost LIN communication or BUS OFF ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/TDB_Fields.csv ================================================ ,763,0,0,1,0,0,,1081,5081,ff,StartDiagnosticSession.Default ,763,0,0,1,0,0,,1085,5085,ff,StartDiagnosticSession.Programming ,763,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession ,763,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,763,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,763,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,37890:Fuel gauge monitoring;37900:EEPROM monitoring;37906:External temperature inputs;37892:Warning Airbag telltale monitoring;37907:Error configuration;37920:Alternator Excitation Input;49153:Lost CAN communication or BUS OFF;49154:Lost LIN communication or BUS OFF;61443:Power supply monitoring ,763,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjt failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component/system operation obstructed or blocked;152:component or system over temperature ,763,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,763,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,763,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,763,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,763,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,763,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,763,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,763,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,763,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,763,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,763,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,763,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,763,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,763,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,763,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,763,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,763,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,763,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,763,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,763,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,763,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,763,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,763,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,763,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,763,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,763,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,763,64,87,1,0,0,,2180,6180,4ff,SupplierNumber ,763,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,763,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,763,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,763,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,763,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A;2:248B3 ,763,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:N/A;1:25046 ,763,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A ,763,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,763,16,151,1,0,0,,2181,6181,2ff,VIN ,763,152,167,1,0,0,,2181,6181,4ff,VINcrc ,763,16,31,1,0,0,,2182,6182,ff,Ref Messagerie Mux ,763,32,33,1,0,0,,2182,6182,ff,Produce Bus Off,0:Present;2:Missing;3:Missing Confirmed ,763,34,39,1,0,0,,2182,6182,ff,Produce Bus Off Counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,40,41,1,0,0,,2182,6182,ff,Produce Bus Mute,0:Present;2:Missing;3:Missing Confirmed ,763,42,47,1,0,0,,2182,6182,ff,Produce Bus Mute Counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,48,49,1,0,0,,2182,6182,ff,MUX ECM,0:Present;2:Missing;3:Missing Confirmed ,763,50,55,1,0,0,,2182,6182,ff,MUX ECM counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,56,57,1,0,0,,2182,6182,ff,MUX BRAKE,0:Present;2:Missing;3:Missing Confirmed ,763,58,63,1,0,0,,2182,6182,ff,MUX BRAKE counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,64,65,1,0,0,,2182,6182,ff,MUX Cluster,0:Present;2:Missing;3:Missing Confirmed ,763,66,71,1,0,0,,2182,6182,ff,MUX Cluster counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,72,73,1,0,0,,2182,6182,ff,MUX BCM,0:Present;2:Missing;3:Missing Confirmed ,763,74,79,1,0,0,,2182,6182,ff,MUX BCM counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,80,81,1,0,0,,2182,6182,ff,MUX AIRBAG,0:Present;2:Missing;3:Missing Confirmed ,763,82,87,1,0,0,,2182,6182,ff,MUX AIRBAG counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,112,113,1,0,0,,2182,6182,ff,MUX AT,0:Present;2:Missing;3:Missing Confirmed ,763,114,119,1,0,0,,2182,6182,ff,MUX AT counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,120,121,1,0,0,,2182,6182,ff,MUX MIU BIC,0:Present;2:Missing;3:Missing Confirmed ,763,122,127,1,0,0,,2182,6182,ff,MUX MIU BIC counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,184,185,1,0,0,,2182,6182,ff,MUX EPS,0:Present;2:Missing;3:Missing Confirmed ,763,186,191,1,0,0,,2182,6182,ff,MUX EPS counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,200,201,1,0,0,,2182,6182,ff,MUX EMM,0:Present;2:Missing;3:Missing Confirmed ,763,202,207,1,0,0,,2182,6182,ff,MUX EMM counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,536,537,1,0,0,,2182,6182,ff,MUX FrontCamera,0:Present;2:Missing;3:Missing Confirmed ,763,538,543,1,0,0,,2182,6182,ff,MUX FrontCamera counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,592,593,1,0,0,,2182,6182,ff,MUX TCU,0:Present;2:Missing;3:Missing Confirmed ,763,594,599,1,0,0,,2182,6182,ff,MUX TCU counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,744,745,1,0,0,,2182,6182,ff,MUX INS FCW,0:Present;2:Missing;3:Missing Confirmed ,763,746,751,1,0,0,,2182,6182,ff,MUX INS FCW counter,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:No Checked ,763,16,95,1,0,0,,2184,6184,2ff,ClusterProductionNumber_ASCII ,763,96,143,1,0,0,,2184,6184,2ff,ClusterProductionDate_ASCII ,763,16,127,1,0,0,,21B1,61B1,4ff,networkConfB1 ,763,16,127,1,0,0,,21B2,61B2,4ff,networkConfB2 ,763,16,95,1,0,0,,21EF,61EF,2ff,PartNumber.Hardware ,763,96,175,1,0,0,,21EF,61EF,2ff,PartNumber.Software ,763,27,31,1,0,0,,220101,620101,ff,Language_CF,0:0x00 = Français;1:0x01 = English_UK;2:0x02 = Italiano;3:0x03 = Deutsch;4:0x04 = Español;5:0x05 = Nederlands - Dutch;6:0x06 = Português;7:0x07 = Türkçe;8:0x08 = Polski - (FR - Polonais) (Polish);9:0x09 = [NO] Coréen;10:0x0A = [NO] Svenska (EN) - Suédois;11:0x0B = [NO] Suomi (EN) - Finnois;12:0x0C = [NO] Bulgare;13:0x0D = [NO] Slovensko (EN) - Slovène;14:0x0E = [NO] (EN) - Grec;15:0x0F = [NO] Magyar (EN) - Hongrois;16:0x10 = [NO] Jazyk (EN) - Slovaque;17:0x11 = [NO] Ceština (EN) - Tchèque;18:0x12 = [NO] Dansk (EN) - Danois;19:0x13 = [NO] Eesti keel (PL) - Estonien;20:0x14 = [NO] Latviešu (PL) - Letton;21:0x15 = [NO] Lituanien;22:0x16 = [NO] Româna (EN) - Roumain;23:0x17 = [NO] Brasileiro;24:0x18 = Russian;25:0x19 = English_US;26:0x1A = Japanese_Kanji;27:0x1B = Chinese_Simple;28:0x1C = Chinese_Tradition;29:0x1D to 0x1F = Not used ,763,30,31,1,0,0,,220102,620102,ff,GearBoxType_CF,0:00b = Automatic gearbox;1:01b = Manual gearbox;2:10b = Not Used;3:11b = Not Used ,763,29,31,1,0,0,,220103,620103,ff,CarburationType_CF,0:000b = Petrol;1:001b = Diesel;2:010b = GNC;3:011b = GPL;4:100b = Petrol/GNC;5:101b = Petrol/GPL;6:110 = Not Used;7:111 = Not Used ,763,31,31,1,0,0,,220104,620104,ff,DistanceUnit_CF,0:km;1:miles ,763,30,31,1,0,0,,220105,620105,ff,VolumeUnit_CF,0:00b = Litre;1:01b = Gallon UK;2:10b = Gallon US;3:11b = Reserved ,763,30,31,1,0,0,,220106,620106,ff,TripComputerType_CF,0:00b = without Trip Computer;1:01b = volume/distance;2:10b = distance/volume;3:11b = Not used ,763,30,31,1,0,0,,220108,620108,ff,CCSLACCServiceCustomer_CF,0:00b = without;1:01b = CC/SL;2:10b = ACC/SL;3:11b = SL only ,763,31,31,1,0,0,,220109,620109,ff,FrontSBRInhibition_CF,0:0b = Activated;1:1b = De-activated ,763,31,31,1,0,0,,22010B,62010B,ff,ESCPresent_CF,0:0b = Without ESC (with ABS);1:1b = With ESC (with ABS) ,763,30,31,1,0,0,,22010E,62010E,ff,TPMSPresent_CF,0:00b = Without TPMS;1:01b = With Direct TPMS;2:10b = With Idirect TPMS;3:11b = Not Used ,763,31,31,1,0,0,,22010F,62010F,ff,OverspeedWarningPresent_CF,0:0b = Without overspeed warning;1:1b = With overspeed warning ,763,31,31,1,0,0,,220113,620113,ff,SingleDoorOpeningUserSetPrefPresent_CF,0:Without;1:With ,763,30,31,1,0,0,,220115,620115,ff,PowerSteeringType_CF,0:00b = Without;1:01b = Hydraulic (HEPS);2:10b = Electrical (EPS);3:11b = Not used ,763,31,31,1,0,0,,220118,620118,ff,DayBacklightsPresent_CF,0:0b = Without;1:1b = With ,763,27,31,100,0,0,rpm,220119,620119,ff,OilPressureThreshold_CF ,763,31,31,1,0,0,,22011C,62011C,ff,EMMPresent_CF,0:0b = Without EMM;1:1b = With EMM ,763,28,31,1,0,0,,22011D,62011D,ff,BodyType_CF,0:0000b = B;1:0001b = D;2:0010b = E;3:0011b = L;4:0100b = K;5:0101b = J;6:0110b = R;7:0111b = C;8:1000b = H;9:1001b = N;10:1010b = F;11:1011b = U;12:1100b = Not used;13:1101b = Not used;14:1110b = Not used;15:1111b = Not used ,763,31,31,1,0,0,,22011E,62011E,ff,RearSBRPresent_CF,0:0b = Without;1:1b = With ,763,30,31,1,0,0,,220121,620121,ff,ClockDisplayed_CF,0:00b = Not displayed / not Managed => RTC off;1:01b = Displayed / managed => RTC on;2:10b = Displayed / not managed => RTC off;3:11b = Not Used ,763,30,31,1,0,0,,220122,620122,ff,ExternalTemperaturePresent_CF,0:00b = No external Temp. management;1:01b = External Temp. displayed;2:10b = External Temp. measurement;3:11b = External Temp. Measurement and Display ,763,24,31,1,0,0,,220123,620123,ff,TripComputerScrollControlSwitchAcquisition_CF,0:0x00 = CAN input;1:0x01 = Digital input;2:0x02 = Digital input + PTT;3:0x03 = MFL (Daimler switches) ,763,31,31,1,0,0,,220124,620124,ff,AirbagPresent_CF,0:0b = Without AIRBAG ECU;1:1b = With AIRBAG ECU ,763,29,31,1,0,0,,220129,620129,ff,TelematicSystemPresent_CF,0:000b = Without;1:001b = LPN;2:010b = ITD2;3:011b = ITX;4:100b = NFA;5:101b = MFD and/or BIC (steering wheel switches DAI);6:110b = Not used;7:111b = Not used ,763,31,31,1,0,0,,22012A,62012A,ff,OCSPresent_CF,0:Without OCS;1:With OCS ,763,24,31,100,0,0,km,22012C,62012C,ff,FirstWarningThresholdMaintenanceScheduleInKm_CF ,763,31,31,1,0,0,,22012D,62012D,ff,StopStartPresent_CF,0:0b = without StopStart;1:1b = with StopStart ,763,31,31,1,0,0,,22012E,62012E,ff,LDWPresent_CF,0:0b = Without Line Departure Warning;1:1b = With Line Departure Warning ,763,31,31,1,0,0,,220130,620130,ff,TemperatureUnit_CF,0:0b = degree Celsius;1:1b = degree Fahrenheit ,763,31,31,1,0,0,,220131,620131,ff,MuteRadioFunction_CF,0:0b = Mute radio function deactivated;1:1b = Mute radio function activated ,763,31,31,1,0,0,,220132,620132,ff,ClockDisplayMode_CF,0:0b = 24h format;1:1b = 12h format ,763,24,24,1,0,0,,220135,620135,ff,EVStartupSoundInhibition_CF,0:0 = StartupSound present;1:1 = StartupSound inhibited ,763,30,31,1,0,0,,220136,620136,ff,DimmingStrategy_CF,0:00b = Day/Night only;1:01b = Mechnical rheostat (wired input);2:10b = Virtual rheostat (CAN);3:11b = Rheostat by MPU (Daimler) ,763,30,31,1,0,0,,220139,620139,ff,DigitalSpeedometerPresent_CF,0:00b = No display;1:01b = DigitalSpeed in MPH;2:10b = DigitalSpeed in Km/h;3:11b = Digitalspeed always in Km/h ,763,24,24,1,0,0,,22013D,62013D,ff,ChargingScreenActivation_CF,0:0 = Charging screen desactivated;1:1 = Charging screen activated ,763,30,31,1,0,0,,220140,620140,ff,CCSLOverspeedBuzzerPresent_CF,0:00b = without buzzer;1:01b = With expected and unexpected;2:10b = With unexpected only;3:11b = Not used ,763,31,31,1,0,0,,220142,620142,ff,TCU_EcallPresent_CF,0:0 = without TCU or With TCU/Without Ecall (frame loss HMI filtered);1:1 = With TCU/With Ecal (frame loss HMI not filtered) ,763,31,31,1,0,0,,220148,620148,ff,SBRModuleType_CF,0:0b = Wire module;1:1b = LIN Module ,763,31,31,1,0,0,,220149,620149,ff,AT_BeepInRPresent_CF,0:0b = Without beep;1:1b = With beep ,763,24,24,1,0,0,,22014D,62014D,ff,BatteryWarningType_CF,0:0b = wire;1:1b = CAN by ECM ,763,31,31,1,0,0,,220150,620150,ff,AEBSPresent_CF,0:0b = without AEBS;1:1b = with AEBS ,763,31,31,1,0,0,,220151,620151,ff,GeotrackingPresent_CF,0:0b = Without geotracking;1:1b = With geotracking ,763,24,24,1,0,0,,220152,620152,ff,GPFPresent_CF,0:0b = Without GPF;1:1b = With GPF ,763,24,31,1,0,0,L,220153,620153,ff,FuelRangeDisplayThreshold_CF ,763,30,31,1,0,0,,220154,620154,ff,StartUpAnimationDisplay_CF,0:00b = General animation (Same as Ph1);1:01b = Specific S2S EV animation;2:10b = Specific S4S EV animation;3:11b = Not used ,763,24,31,1,0,0,kW,220155,620155,ff,MaxElecPower_TP ,763,24,31,1,0,0,kW,220156,620156,ff,MinElecPower_TP ,763,24,31,1,0,0,%,220157,620157,ff,BatteryIncThreshold0_CF ,763,24,31,1,0,0,%,220158,620158,ff,BatteryIncThresholdHalf_CF ,763,24,31,1,0,0,%,220159,620159,ff,BatteryIncThreshold1_CF ,763,24,31,1,0,0,%,22015A,62015A,ff,BatteryIncThreshold2_CF ,763,24,31,1,0,0,%,22015B,62015B,ff,BatteryIncThreshold3_CF ,763,24,31,1,0,0,%,22015C,62015C,ff,BatteryIncThreshold4_CF ,763,24,31,1,0,0,%,22015D,62015D,ff,BatteryIncThreshold5_CF ,763,24,31,1,0,0,%,22015E,62015E,ff,BatteryIncThreshold6_CF ,763,24,31,1,0,0,%,22015F,62015F,ff,BatteryIncThreshold7_CF ,763,24,31,1,0,0,%,220160,620160,ff,BatteryDecThreshold8_CF ,763,24,31,1,0,0,%,220161,620161,ff,BatteryDecThreshold7_CF ,763,24,31,1,0,0,%,220162,620162,ff,BatteryDecThreshold6_CF ,763,24,31,1,0,0,%,220163,620163,ff,BatteryDecThreshold5_CF ,763,24,31,1,0,0,%,220164,620164,ff,BatteryDecThreshold4_CF ,763,24,31,1,0,0,%,220165,620165,ff,BatteryDecThreshold3_CF ,763,24,31,1,0,0,%,220166,620166,ff,BatteryDecThreshold2_CF ,763,24,31,1,0,0,%,220167,620167,ff,BatteryDecThreshold1_CF ,763,24,31,1,0,0,%,220168,620168,ff,BatteryDecThresholdHalf_CF ,763,24,31,1,0,0,%,220169,620169,1ff,PowermeterThreshold0_CF ,763,24,31,1,0,0,%,22016A,62016A,1ff,PowermeterThreshold1_CF ,763,24,31,1,0,0,%,22016B,62016B,1ff,PowermeterThreshold2_CF ,763,24,31,1,0,0,%,22016C,62016C,1ff,PowermeterThreshold3_CF ,763,24,31,1,0,0,%,22016D,62016D,1ff,PowermeterThreshold4_CF ,763,24,31,1,0,0,%,22016E,62016E,1ff,PowermeterThreshold5_CF ,763,24,31,1,0,0,%,22016F,62016F,1ff,PowermeterThreshold6_CF ,763,24,31,1,0,0,%,220170,620170,1ff,PowermeterThreshold7_CF ,763,24,31,1,0,0,%,220171,620171,1ff,PowermeterThreshold8_CF ,763,24,31,1,0,0,%,220172,620172,1ff,PowermeterThreshold9_CF ,763,24,31,1,0,0,%,220173,620173,1ff,PowermeterThreshold10_CF ,763,24,31,1,0,0,%,220174,620174,1ff,PowermeterThreshold11_CF ,763,24,31,1,0,0,%,220175,620175,1ff,PowermeterThreshold12_CF ,763,24,31,1,0,0,%,220176,620176,ff,SOCNoDisplayThreshold_CF ,763,24,31,1,0,0,ms,220177,620177,ff,EconometerInterSegmentReachTime_CF ,763,31,31,1,0,0,,220180,620180,ff,AdditionnalInstrumentPresent_CF,0:0b = Without Additional Instrument;1:1b = With Additional Instrument ,763,29,31,1,0,0,,220182,620182,ff,CountrySpecificity_CF,0:000b = RoW;1:001b = UK;2:010b = USA;3:011b = Japan;4:100b = China;5:101b = Canada;6:110b = Not used;7:111b = Not used ,763,31,31,1,0,0,,220184,620184,ff,FCWPresent_CF,0:0b = Without Front Collision Warning;1:1b = With Front Collision Warning ,763,31,31,1,0,0,,220185,620185,ff,SBRLogic_CF,0:0b = Standard logic;1:1b = US/Canada logic ,763,31,31,1,0,0,,220186,620186,ff,BlackIceWarningInhibition_CF,0:0b = Black ICE Warning Activated (Daimler);1:1b = Black ICE Warning Deactivated (Daimler) ,763,31,31,1,0,0,,220187,620187,ff,ECOScoreInhibition_CF,0:0b = ECO Score Activated (Daimler);1:1b = ECO Score Deactivated (Daimler) ,763,31,31,1,0,0,,220188,620188,ff,MaintenanceLevelFlag_CF,0:0b = Lower Maintenance Level;1:1b = Higher Maintenance Level ,763,31,31,1,0,0,,220189,620189,ff,AmbientLightPresent_CF,0:0b = de-activated;1:1b = Activated ,763,31,31,1,0,0,,22018A,62018A,ff,ECOModePresent_CF,0:0b = de-activated;1:1b = Activated ,763,24,24,1,0,0,,22018B,62018B,ff,SmartChargingPresent_CF,0:0b = De-activated;1:1b = Activated ,763,24,24,1,0,0,,22018C,62018C,ff,RRPresent_CF,0:0b = Without RR;1:1b = With RR ,763,31,31,1,0,0,,22018D,62018D,ff,CF_MPU_RearWiper,0:Rear wiper when rear gear engaged not present;1:Rear wiper when rear gear engaged present ,763,31,31,1,0,0,,22018E,62018E,ff,CF_MPU_AutoLockUp,0:Automatic door lock not present;1:Automatic door lock present ,763,24,103,1,0,0,,220190,620190,2ff,AdditionnalInstrumentPartNumber_Ref_Daimler ,763,24,63,1,0,0,,220191,620191,2ff,AdditionnalInstrumentPartNumber_Ref_Renault ,763,24,39,1,0,0,km,2201A0,6201A0,ff,TripDistanceKm_START ,763,24,39,50,0,0,mL,2201A1,6201A1,ff,TripFuelUsed_START ,763,24,47,1,0,0,s,2201A2,6201A2,ff,TripTimer_START ,763,28,31,1,0,0,,2201A3,6201A3,ff,CauseOfLastTripComputerStart,0:0000b = Never Resetted;1:0001b = ADAC button customer reset;2:0010b = Multimedia customer reset;3:0011b = Dist/Time/Carb overflow;4:0100b = Odometer update;5:0101b = CAN frame loss;6:0110b = Diag routine;7:0111b = After Start automatic reset (Daimler);8:1000b = Not used;9:1001b = Not used;10:1010b = Not used;11:1011b = Not used;12:1100b = Not used;13:1101b = Not used;14:1110b = Not used;15:1111b = Not used ,763,24,39,1,0,0,km,2201A4,6201A4,ff,MSCDistanceInKM_Elapsed ,763,24,39,1,0,0,d,2201A5,6201A5,ff,MSCDurationInDay_Elapsed ,763,24,39,1,0,0,km,220201,620201,ff,MSCChangeInitialDistanceInKM_CF ,763,24,39,1,0,0,d,220202,620202,ff,MSCChangeInitialDurationInDay_CF ,763,24,39,1,0,0,km,220203,620203,ff,MSCChangeUsualDistanceInKM ,763,24,39,1,0,0,d,220204,620204,ff,MSCChangeUsualDurationInDay ,763,24,47,1,0,0,km,220207,620207,ff,ClusterCurrentDistanceByDiag_CF ,763,24,31,1,0,0,L,220301,620301,ff,GaugingThreshold.High_CF ,763,32,39,1,0,0,L,220301,620301,ff,GaugingThreshold.Low_CF ,763,24,31,.01,0,2,,220302,620302,ff,S1.Kmin_CF ,763,32,39,.01,0,2,,220302,620302,ff,S1.Kmaj_CF ,763,24,31,.01,0,2,,220303,620303,ff,S2.Kmin_CF ,763,32,39,.01,0,2,,220303,620303,ff,S2.Kmaj_CF ,763,24,31,.01,0,2,,220304,620304,ff,S3.Kmin_CF ,763,32,39,.01,0,2,,220304,620304,ff,S3.Kmaj_CF ,763,24,31,.1,0,1,,220305,620305,ff,TCCorrection_CF ,763,24,31,1,0,0,L,220306,620306,ff,FuelReadjustment.L2offL0_CF ,763,32,39,1,0,0,L,220306,620306,ff,FuelReadjustment.L0L3_CF ,763,40,47,1,0,0,L,220306,620306,ff,FuelReadjustment.L2ZeroSpeed_CF ,763,24,31,1,0,0,L,220307,620307,ff,FuelReadjustmentNearFull.L0_CF ,763,32,39,1,0,0,L,220307,620307,ff,FuelReadjustmentNearFull.L2_CF ,763,40,47,1,0,0,L,220307,620307,ff,FuelReadjustmentNearFull.L0L3_CF ,763,24,31,1,0,0,L,220308,620308,ff,V0FuncR0.V0 ,763,32,47,1,0,0,Ohm,220308,620308,ff,V0FuncR0.R0 ,763,24,31,1,0,0,L,220309,620309,ff,V1FuncR1.V1 ,763,32,47,1,0,0,Ohm,220309,620309,ff,V1FuncR1.R1 ,763,24,31,1,0,0,L,22030A,62030A,ff,V2FuncR2.V2 ,763,32,47,1,0,0,Ohm,22030A,62030A,ff,V2FuncR2.R2 ,763,24,31,1,0,0,L,22030B,62030B,ff,V3FuncR3.V3 ,763,32,47,1,0,0,Ohm,22030B,62030B,ff,V3FuncR3.R3 ,763,24,31,1,0,0,L,22030C,62030C,ff,V4FuncR4.V4 ,763,32,47,1,0,0,Ohm,22030C,62030C,ff,V4FuncR4.R4 ,763,24,31,1,0,0,L,22030D,62030D,ff,V5FuncR5.V5 ,763,32,47,1,0,0,Ohm,22030D,62030D,ff,V5FuncR5.R5 ,763,24,31,1,0,0,L,22030E,62030E,ff,V6FuncR6.V6 ,763,32,47,1,0,0,Ohm,22030E,62030E,ff,V6FuncR6.R6 ,763,24,31,1,0,0,L,22030F,62030F,ff,V7FuncR7.V7 ,763,32,47,1,0,0,Ohm,22030F,62030F,ff,V7FuncR7.R7 ,763,24,31,1,0,0,L,220310,620310,ff,V8FuncR8.V8 ,763,32,47,1,0,0,Ohm,220310,620310,ff,V8FuncR8.R8 ,763,24,31,1,0,0,L,220311,620311,ff,V9FuncR9.V9 ,763,32,47,1,0,0,Ohm,220311,620311,ff,V9FuncR9.R9 ,763,24,31,1,0,0,L,220312,620312,ff,V10FuncR10.V10 ,763,32,47,1,0,0,Ohm,220312,620312,ff,V10FuncR10.R10 ,763,24,31,1,0,0,L,220314,620314,ff,L2Displayed1_CF ,763,24,31,1,0,0,L,220315,620315,ff,L2Displayed2_CF ,763,24,31,1,0,0,L,220316,620316,ff,L2Displayed3_CF ,763,24,31,1,0,0,L,220317,620317,ff,L2Displayed4_CF ,763,24,31,1,0,0,L,220318,620318,ff,L2Displayed5_CF ,763,24,31,1,0,0,L,220319,620319,ff,L2Displayed6_CF ,763,24,31,1,0,0,L,22031A,62031A,ff,L2Displayed7_CF ,763,24,31,1,0,0,L,22031B,62031B,ff,L2Displayed8_CF ,763,24,31,1,0,0,km,22031D,62031D,ff,FuelRangeCorrection.KmAutonomyCalculation_CF ,763,32,39,.1,0,1,L,22031D,62031D,ff,FuelRangeCorrection.L2Alert_CF ,763,40,47,.1,0,1,,22031D,62031D,ff,FuelRangeCorrection.CoeffAlert_CF ,763,24,31,.1,0,1,L,22031E,62031E,ff,VolumeFuelWarning_CF ,763,24,31,.1,0,1,L,22031F,62031F,ff,Backup.VolumeFuelWarning_CF ,763,32,39,10,0,0,s,22031F,62031F,ff,Backup.Tau_CF ,763,31,31,1,0,0,,220320,620320,ff,FuelGaugingType_CF,0:0b = Using petrol flow;1:1b = Without petrol flow ,763,30,31,1,0,0,,222001,622001,ff,HandBrakeState,0:00b = Parking brake released;1:01b = Parking brake tightened;2:10b = Circuit short to battery;3:11b = Unavailable ,763,30,31,1,0,0,,222002,622002,ff,BrakeFluidLevelState,0:00b = No default;1:01b = Mini level is reached;2:10b = Circuit short to battery;3:11b = Unavailable ,763,24,39,1,0,0,Ohm,222005,622005,ff,FuelGaugeValue ,763,24,39,1,0,0,mV,222006,622006,ff,BatteryVoltage ,763,30,31,1,0,0,,222008,622008,ff,OilPressureState,0:00b = Switch OFF;1:01b = Switch ON;2:10b = Circuit short to battery;3:11b = Open circuit ,763,30,31,1,0,0,,222009,622009,ff,TripComputerScrollState,0:00b = No driver request;1:01b = Upward scrolling request;2:10b = Downward scrolling request;3:11b = Both scrolling request ,763,24,39,1,0,0,Ohm,22200C,62200C,ff,ExternalTemperatureValue.External_Temperature.R ,763,40,55,.1,400,1,°C,22200C,62200C,1ff,ExternalTemperatureValue.External_Temperature.Temp ,763,31,31,1,0,0,,22200D,62200D,ff,BatteryWarningState,0:0b = Switch OFF (telltale OFF);1:1b = Switch ON ,763,26,26,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.ADAC Up since reset ,763,27,27,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.ADAC DOWN since reset ,763,28,28,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.ADAC OK since reset ,763,29,29,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.Vol plus since reset ,763,30,30,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.Vol moins since reset ,763,31,31,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.Push to Talk since reset ,763,34,34,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.ADAC UP ,763,35,35,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.ADAC DOWN ,763,36,36,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.ADAC OK ,763,37,37,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.Vol plus ,763,38,38,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.Vol moins ,763,39,39,1,0,0,,2220F0,6220F0,ff,AnalogInput.OnSWRC.Push to Talk ,763,24,39,1,0,0,km,222101,622101,ff,TripDistanceKm ,763,24,39,50,0,0,mL,222102,622102,ff,TripFuelUsed ,763,24,47,1,0,0,s,222104,622104,ff,TripTimer ,763,28,31,1,0,0,,222105,622105,ff,CauseOfLastTripComputerReset,0:0000b = Never Resetted;1:0001b = ADAC button customer reset;2:0010b = Multimedia customer reset;3:0011b = Dist/Time/Carb overflow;4:0100b = Odometer update;5:0101b = CAN frame loss;6:0110b = Diag routine;7:0111b = ECO-Score (Instr. Cluster);8:1000b = Not used;9:1001b = Not used;10:1010b = Not used;11:1011b = Not used;12:1100b = Not used;13:1101b = Not used;14:1110b = Not used;15:1111b = Not used ,763,24,39,.01,0,2,L,222201,622201,ff,L0_Value ,763,24,39,.01,0,2,L,222202,622202,ff,L1_Value ,763,24,39,.01,0,2,L,222203,622203,ff,L2_Value ,763,24,55,1,0,0,km,222204,622204,1ff,Distance_When_Fuel_Low_Backup_Update_Occurs ,763,24,39,.01,0,2,L,222205,622205,ff,LBackup_Value ,763,24,24,1,0,0,,222401,622401,ff,FuelReadjustmentCause.L2_during_fuel_flow_failure,0:L2 without fuel flow failure;1:L2 with fuel flow failure ,763,26,26,1,0,0,,222401,622401,ff,FuelReadjustmentCause.Plein_Fuel_Update,0:No update with C_RECALAGE_PLEIN;1:L2 is initialized with C_RECALAGE_PLEIN ,763,27,27,1,0,0,,222401,622401,ff,FuelReadjustmentCause.Fuel_Update_Backup,0:No update with C_BACKUP.ALERTVOLUME;1:L2 is initialized with C_BACKUP.ALERTVOLUME ,763,28,28,1,0,0,,222401,622401,ff,FuelReadjustmentCause.Fuel_Update_Diag_request,0:No update with Diag request;1:L2 is initialized with Diag request ,763,29,29,1,0,0,,222401,622401,ff,FuelReadjustmentCause.L3_Fuel_Update,0:No update with C_RECALAGE.RecalageL0_L3;1:L2 init. with C_RECALAGE.RecalageL0_L3 threshold ,763,30,30,1,0,0,,222401,622401,ff,FuelReadjustmentCause.L2off_Fuel_Update,0:No update with C_RECALAGE.RecalageL2off_L0;1:L2 is initialized with RecalageL2off_L0 threshold ,763,31,31,1,0,0,,222401,622401,ff,FuelReadjustmentCause.Fuel_During_ignition_ON,0:No update with C_RECALAGE.RecalageL2_EnAPC;1:L2 is initialized with RecalageL2_EnAPC threshold ,763,24,31,1,0,0,L,222402,622402,ff,L0onValueDuringFuelReadjustment ,763,24,31,1,0,0,L,222403,622403,ff,L3ValueDuringFuelReadjustment ,763,24,31,1,0,0,,222404,622404,ff,L2offValueDuringFuelReadjustment ,763,30,30,1,0,0,,222406,622406,ff,NVMStatus.NVM Backup Solution,0:By Default;1:Use ROM Values ,763,31,31,1,0,0,,222406,622406,ff,NVMStatus.Status NVM,0:OK;1:NOK ,763,28,28,1,0,0,,222407,622407,ff,FuelLevelStatus.Gas_Gauge,0:OK;1:Gas gauge in default ,763,29,29,1,0,0,,222407,622407,ff,FuelLevelStatus.Gas_flow,0:OK;1:Fuel flow in default ,763,30,30,1,0,0,,222407,622407,ff,FuelLevelStatus.Fuel_Gauge,0:OK;1:Fuel gauge in default ,763,31,31,1,0,0,,222407,622407,ff,FuelLevelStatus.Fuel_flow,0:OK;1:Fuel flow in default ,763,24,31,1,0,0,,222408,622408,ff,NumberResetsCausedByFailures ,763,24,31,1,0,0,,222409,622409,ff,NumberIntendedResets ,763,24,24,1,0,0,,22240A,62240A,ff,ConfigurationError.Multimedia,0:OK;1:Multimedia configuration error detection ,763,28,28,1,0,0,,22240A,62240A,ff,ConfigurationError.LIN,0:OK;1:LIN configuration error detection ,763,29,29,1,0,0,,22240A,62240A,ff,ConfigurationError.Trip_UnitConsumption,0:OK;1:ERROR - Correct trip unit. ,763,30,30,1,0,0,,22240A,62240A,ff,ConfigurationError.Cluster,0:OK;1:ERROR - Apply cluster conf ,763,31,31,1,0,0,,22240A,62240A,ff,ConfigurationError.Petrol_Gauging,0:OK;1:ERROR - Apply gauging conf ,763,32,32,1,0,0,,22240A,62240A,ff,ConfigurationError.AIRBAG,0:OK;1:ERROR ,763,33,33,1,0,0,,22240A,62240A,ff,ConfigurationError.EPS,0:OK;1:ERROR ,763,34,34,1,0,0,,22240A,62240A,ff,ConfigurationError.AT,0:OK;1:ERROR ,763,35,35,1,0,0,,22240A,62240A,ff,ConfigurationError.FCW,0:OK;1:ERROR ,763,36,36,1,0,0,,22240A,62240A,ff,ConfigurationError.TPMS,0:OK;1:ERROR ,763,38,38,1,0,0,,22240A,62240A,ff,ConfigurationError.RadarRec,0:OK;1:ERROR ,763,39,39,1,0,0,,22240A,62240A,ff,ConfigurationError.AEBS,0:OK;1:ERROR ,763,24,31,1,0,0,,22240D,62240D,ff,LINFailureCounter.LIN_BusOffCounter ,763,32,39,1,0,0,,22240D,62240D,ff,LINFailureCounter.LIN_AICLossCounter ,763,40,47,1,0,0,,22240D,62240D,ff,LINFailureCounter.LIN_SBRModuleLossCounter ,763,48,55,1,0,0,,22240D,62240D,ff,LINFailureCounter.LIN_SBRModuleConfigErrorCounter ,763,56,87,1,0,0,,22240D,62240D,4ff,LINFailureCounter.RESERVED ,763,24,55,.01,0,2,km,222604,622604,1ff,ExternalECUDistanceBeforeOdoReadjustment ,763,24,55,1,0,0,km,222605,622605,1ff,ClusterDistanceBeforeOdoReadjustment ,763,24,31,1,0,0,,222606,622606,ff,DistanceUpdateByDiagCounter ,763,24,31,1,0,0,,222607,622607,ff,DistanceUpdateByExternalECUCounter ,763,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,763,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,763,24,103,1,0,0,,22F187,62F187,2ff,VehiculeManufacturerSparPartNumber ,763,24,103,1,0,0,,22F18E,62F18E,2ff,VehicleManufacturerKitAssemblyPartNumber ,763,24,103,1,0,0,,22F196,62F196,2ff,Spare Part Number Approval Reference Number ,763,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/TDB_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjt failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component/system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/UCH_Dtcs.csv ================================================ 9562,AUTO_CLUTCHSTART_SW 923A,BATTERY 9266,BATTERY_CURRENT_SENSOR 9570,BCM_APV_CODE 9561,CLUTCH_END_SW 9560,CLUTCHSTART_SW 9530,DI_LEFT 9528,DI_LEFT_LED 9531,DI_RIGHT 9529,DI_RIGHT_LED 9568,DONGLE_DEVICE 9505,DRIVER_DOOR 9582,EEPROM 9504,EXTERNAL_ANTENNA A0BD,I_CURRENT_SENSOR A0BE,I_TEMP_SENSOR 9571,INFO_STOP 9572,INFO_STOP_AEBS 95F1,LIN_DEVICE 920F,NETWORK_14V 9519,NEUTRAL_CONTACT_SW 9540,PWM_ROOMLAMP_1 9510,PWR_BPT 9514,PWR_DOORLOCK 9513,PWR_FLASHERS 9511,PWR_FR_WIPER 9512,PWR_RR_WIPER 95B2,REAR_GEAR_SW 95A0,REAR_WIPER 9502,REGISTERS 9501,ROM 9520,STARTER_RL 9563,STOP_PEDAL_DFT_11 9564,STOP_PEDAL_DFT_12 9566,STOP_PEDAL_SW1 9565,STOP_PEDAL_SW2 9533,TAILGATE_COHERENT 9532,TGATE_OPENER 5A80,TPMS_Function 5A86,TPMS_RECEIVER 5A60,TPMS_UNDER_INFLATED 5A82,TPMS_VALVE_1 5A83,TPMS_VALVE_2 5A84,TPMS_VALVE_3 5A85,TPMS_VALVE_4 5A72,TPMS_WHEEL_1 5A73,TPMS_WHEEL_2 5A74,TPMS_WHEEL_3 5A75,TPMS_WHEEL_4 9567,TRACKER_DEVICE 95F0,TRANSPONDER 9550,WL_CENTAL_CLOSE ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/UCH_Fields.csv ================================================ ,765,0,0,1,0,0,,1081,5081,ff,Default Diagnostic Session ,765,0,0,1,0,0,,1085,5085,ff,Reprog Session ,765,0,0,1,0,0,,10C0,50C0,ff,Start Diagnostic Session ,765,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,765,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,765,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,38242:AUTO_CLUTCHSTART_SW;37434:BATTERY;37478:BATTERY_CURRENT_SENSOR;38256:BCM_APV_CODE;38241:CLUTCH_END_SW;38240:CLUTCHSTART_SW;38192:DI_LEFT;38184:DI_LEFT_LED;38193:DI_RIGHT;38185:DI_RIGHT_LED;38248:DONGLE_DEVICE;38149:DRIVER_DOOR;38274:EEPROM;38148:EXTERNAL_ANTENNA;41149:I_CURRENT_SENSOR;41150:I_TEMP_SENSOR;38257:INFO_STOP;38258:INFO_STOP_AEBS;38385:LIN_DEVICE;37391:NETWORK_14V;38169:NEUTRAL_CONTACT_SW;38208:PWM_ROOMLAMP_1;38160:PWR_BPT;38164:PWR_DOORLOCK;38163:PWR_FLASHERS;38161:PWR_FR_WIPER;38162:PWR_RR_WIPER;38322:REAR_GEAR_SW;38304:REAR_WIPER;38146:REGISTERS;38145:ROM;38176:STARTER_RL;38243:STOP_PEDAL_DFT_11;38244:STOP_PEDAL_DFT_12;38246:STOP_PEDAL_SW1;38245:STOP_PEDAL_SW2;38195:TAILGATE_COHERENT;38194:TGATE_OPENER;23168:TPMS_Function;23174:TPMS_RECEIVER;23136:TPMS_UNDER_INFLATED;23170:TPMS_VALVE_1;23171:TPMS_VALVE_2;23172:TPMS_VALVE_3;23173:TPMS_VALVE_4;23154:TPMS_WHEEL_1;23155:TPMS_WHEEL_2;23156:TPMS_WHEEL_3;23157:TPMS_WHEEL_4;38247:TRACKER_DEVICE;38384:TRANSPONDER;38224:WL_CENTAL_CLOSE ,765,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog / safety µC failure;70:calibration / parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive / sequence counter incorrect / not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions / events;15:Vehicle manufacturer / System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal / Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding/ General Failure Information;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time > maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time < minimum;51:signal low time > maximum;50:signal low time < minimum;49:no signal;37:signal shape / waveform failure;33:signal amplitude < minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude > maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid ,765,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,765,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,765,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,765,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,765,40,40,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,765,41,41,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,42,42,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,43,43,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,44,44,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,45,45,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,46,46,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,47,47,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailed,0:No;1:Yes ,765,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,765,40,40,1,0,0,,190600000080,590600000080,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,765,41,41,1,0,0,,190600000080,590600000080,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,42,42,1,0,0,,190600000080,590600000080,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,43,43,1,0,0,,190600000080,590600000080,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,44,44,1,0,0,,190600000080,590600000080,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,45,45,1,0,0,,190600000080,590600000080,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,46,46,1,0,0,,190600000080,590600000080,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,47,47,1,0,0,,190600000080,590600000080,ff,DTCStatus.testFailed,0:No;1:Yes ,765,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,765,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,765,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,765,40,40,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,765,41,41,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,42,42,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,43,43,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,44,44,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,45,45,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,46,46,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,47,47,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testFailed,0:No;1:Yes ,765,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,765,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,765,16,23,1,0,0,,2101,6101,ff,AIRBAG_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,24,24,1,0,0,,2101,6101,ff,CAN_AIRBAG_ABSENT,1:true;0:false ,765,25,25,1,0,0,,2101,6101,ff,CAN_AIRBAG_PRESENT,1:true;0:false ,765,32,39,1,0,0,,2101,6101,ff,BRAKE_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,40,40,1,0,0,,2101,6101,ff,CAN_ABS_ABSENT,1:true;0:false ,765,41,41,1,0,0,,2101,6101,ff,CAN_ABS_PRESENT,1:true;0:false ,765,48,55,1,0,0,,2101,6101,ff,CLIM_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,56,56,1,0,0,,2101,6101,ff,CAN_CLIM_ABSENT,1:true;0:false ,765,57,57,1,0,0,,2101,6101,ff,CAN_CLIM_PRESENT,1:true;0:false ,765,58,58,1,0,0,,2101,6101,ff,IH_ACREQUESTNA,1:true;0:false ,765,60,60,1,0,0,,2101,6101,ff,IH_REARDEFROSTREQUESTNA,1:true;0:false ,765,64,71,1,0,0,,2101,6101,ff,DSU_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,72,72,1,0,0,,2101,6101,ff,CAN_DSU_ABSENT,1:true;0:false ,765,73,73,1,0,0,,2101,6101,ff,CAN_DSU_PRESENT,1:true;0:false ,765,80,87,1,0,0,,2101,6101,ff,ECM_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,88,88,1,0,0,,2101,6101,ff,CAN_ECM_ABSENT,1:true;0:false ,765,89,89,1,0,0,,2101,6101,ff,CAN_ECM_PRESENT,1:true;0:false ,765,96,103,1,0,0,,2101,6101,ff,EMM_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,104,104,1,0,0,,2101,6101,ff,CAN_EMM_ABSENT,1:true;0:false ,765,105,105,1,0,0,,2101,6101,ff,CAN_EMM_PRESENT,1:true;0:false ,765,112,119,1,0,0,,2101,6101,ff,HFM_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,120,120,1,0,0,,2101,6101,ff,CAN_HFM_ABSENT,1:true;0:false ,765,121,121,1,0,0,,2101,6101,ff,CAN_HFM_PRESENT,1:true;0:false ,765,128,135,1,0,0,,2101,6101,ff,TORQUE_AT_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,136,136,1,0,0,,2101,6101,ff,CAN_AT_ABSENT,1:true;0:false ,765,137,137,1,0,0,,2101,6101,ff,CAN_AT_PRESENT,1:true;0:false ,765,144,151,1,0,0,,2101,6101,ff,TRACKER_TCU_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,152,152,1,0,0,,2101,6101,ff,CAN_TRACKER_TCU_ABSENT,1:true;0:false ,765,153,153,1,0,0,,2101,6101,ff,CAN_TRACKER_TCU_PRESENT,1:true;0:false ,765,160,167,1,0,0,,2101,6101,ff,APB_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,168,168,1,0,0,,2101,6101,ff,CAN_APB_ABSENT,1:true;0:false ,765,169,169,1,0,0,,2101,6101,ff,CAN_APB_PRESENT,1:true;0:false ,765,176,183,1,0,0,,2101,6101,ff,SCH_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,184,184,1,0,0,,2101,6101,ff,CAN_SCH_ABSENT,1:true;0:false ,765,185,185,1,0,0,,2101,6101,ff,CAN_SCH_PRESENT,1:true;0:false ,765,186,186,1,0,0,,2101,6101,ff,CAN_TRACKER_TCU_CONFIRMED_ABSENT,1:true;0:false ,765,187,187,1,0,0,,2101,6101,ff,CAN_TORQUE_AT_CONFIRMED_ABSENT,1:true;0:false ,765,188,188,1,0,0,,2101,6101,ff,CAN_SCH_CONFIRMED_ABSENT,1:true;0:false ,765,189,189,1,0,0,,2101,6101,ff,CAN_HFM_CONFIRMED_ABSENT,1:true;0:false ,765,190,190,1,0,0,,2101,6101,ff,CAN_EPS_CONFIRMED_ABSENT,1:true;0:false ,765,191,191,1,0,0,,2101,6101,ff,CAN_EMM_CONFIRMED_ABSENT,1:true;0:false ,765,192,192,1,0,0,,2101,6101,ff,CAN_ABS_CONFIRMED_ABSENT,1:true;0:false ,765,193,193,1,0,0,,2101,6101,ff,CAN_APB_CONFIRMED_ABSENT,1:true;0:false ,765,194,194,1,0,0,,2101,6101,ff,CAN_CLIM_CONFIRMED_ABSENT,1:true;0:false ,765,195,195,1,0,0,,2101,6101,ff,CAN_DSU_CONFIRMED_ABSENT,1:true;0:false ,765,196,196,1,0,0,,2101,6101,ff,CAN_AIRBAG_CONFIRMED_ABSENT,1:true;0:false ,765,197,197,1,0,0,,2101,6101,ff,CAN_CLUSTER_CONFIRMED_ABSENT,1:true;0:false ,765,198,198,1,0,0,,2101,6101,ff,CAN_ECM_CONFIRMED_ABSENT,1:true;0:false ,765,16,16,1,0,0,,2102,6102,ff,ANTISCANNING_IS_ACTIVATED,1:true;0:false ,765,17,17,1,0,0,,2102,6102,ff,HFM_IS_AUTHENTICATED,1:true;0:false ,765,24,31,1,0,0,,2102,6102,ff,LAST_HFM_REQUEST,0:HFM_REQUEST_UNAVAILABLE;1:HFM_NO_REQUEST;2:HFM_UNLOCK;3:HFM_LOCK;4:HFM_LOCK_BY_WAC;5:HFM_LONG_LOCK;6:HFM_BACKDOOR;7:HFM_BACKDOOR_OPEN;8:HFM_REMOTE_LIGHTING;9:HFM_PANIC;10:HFM_REMOTE_LOCK;11:HFM_REMOTE_UNLOCK ,765,32,39,1,0,0,,2102,6102,ff,BCM_USER_IDENT,0:UI_UNAVAILABLE_VALUE;1:UI_CID_1;2:UI_CID_2;3:UI_CID_3;4:UI_CID_4;5:UI_FRONT_LEFT;6:UI_FRONT_RIGHT;7:UI_REAR_LEFT;8:UI_REAR_RIGHT;9:UI_BACKDOOR ,765,16,23,1,0,0,,2103,6103,ff,ANTISCANNING_MAX_TP ,765,24,39,.01,0,2,s,2103,6103,ff,BCM_ANTISCANNING_TM_TP ,765,40,55,.01,0,2,s,2103,6103,ff,INTERIOR_LIGHTS_TM_TP ,765,56,71,10,0,0,ms,2103,6103,ff,RKE_INTERFRAMES_TM_TP ,765,16,31,10,0,0,ms,2104,6104,ff,GADE_INIT_DELAY_TM_TP ,765,16,16,1,0,0,,2105,6105,ff,HFM_IS_LEARNT_S,1:true;0:false ,765,16,47,1,0,0,,2106,6106,4ff,DISTANCE_TOTALIZER ,765,48,48,1,0,0,,2106,6106,ff,DISTANCE_TOTALIZER_INVALID,1:true;0:false ,765,49,49,1,0,0,,2106,6106,ff,DISTANCE_UNAVAILABLE_OR_INVALID,1:true;0:false ,765,56,71,1,0,0,km/h,2106,6106,ff,VEHICLE_SPEED ,765,72,72,1,0,0,,2106,6106,ff,SPEED_UNAVAILABLE_OR_INVALID,1:true;0:false ,765,80,80,1,0,0,,2106,6106,ff,VEHICLE_RUNNING,1:true;0:false ,765,16,16,1,0,0,,2107,6107,ff,BRAKE_ECU_PRESENT_CF,1:true;0:false ,765,16,31,.01,0,2,s,2108,6108,ff,FRAME_ABSENT_CONFIRMATION_TM_TP ,765,32,47,1,0,0,km/h,2108,6108,ff,VEHICLE_MOVING_THRESHOLD_TP ,765,48,63,1,0,0,km/h,2108,6108,ff,VEHICLE_STOPPED_THRESHOLD_TP ,765,16,16,1,0,0,,2109,6109,ff,DONGLE_PAIRING_DONE_S,1:true;0:false ,765,24,31,1,0,0,,2109,6109,ff,INTERNAL_DONGLE_CONFIG_S,0:DONGLE_SLAVE_1;1:DONGLE_SLAVE_2;2:DONGLE_SLAVE_3 ,765,32,39,1,0,0,,2109,6109,ff,DONGLE_SLAVE_STATE,0:SLAVE_IS_BLANK;1:SLAVE_PAIRED;2:SLAVE_ERROR;3:SLAVE_NOT_OPERATIONAL ,765,47,47,1,0,0,,2109,6109,ff,DONGLE_CONFIG_SLAVE,1:true;0:false ,765,48,55,1,0,0,,2109,6109,ff,DONGLE_RETRY_HISTORY_COUNTER ,765,56,56,1,0,0,,2109,6109,ff,DONGLE_AUTHORIZED,1:true;0:false ,765,16,23,1,0,0,,210A,610A,ff,DONGLE_CF,0:DONGLE_SLAVE_1;1:DONGLE_SLAVE_2;2:DONGLE_SLAVE_3 ,765,16,23,.01,0,2,s,210B,610B,ff,TIME_OUT_RECEIVE_DONGLE_CODE_TP ,765,16,31,.01,0,2,V,210C,610C,ff,BATT_VOLTAGE ,765,32,32,1,0,0,,210C,610C,ff,DIAG_MUX_ON,1:true;0:false ,765,16,31,.01,0,2,V,210D,610D,ff,DIAG_MUX_BATT_VOLTAGE_THRESH_TP ,765,32,47,.01,0,2,s,210D,610D,ff,DIAG_MUX_CONFIRMATION_TM_TP ,765,16,16,1,0,0,,210E,610E,ff,ALARM_PRESENT_CF,1:true;0:false ,765,16,16,1,0,0,,210F,610F,ff,LIGHTING_BY_EMM_CF,1:true;0:false ,765,16,16,1,0,0,,2111,6111,ff,O_PWM_ROOMLAMP_1,1:true;0:false ,765,16,16,1,0,0,,2112,6112,ff,ACTIVATE_INTERIOR_LIGHTING_CF,1:true;0:false ,765,16,31,.01,0,2,s,2113,6113,ff,INTERIOR_LIGHTS_TM_TP ,765,48,55,1,0,0,%,2113,6113,ff,RL_PWM_MAX_TM_TP ,765,56,63,1,0,0,%,2113,6113,ff,RL_PWM_MIN_TM_TP ,765,64,79,.01,0,2,s,2113,6113,ff,RL_T_PWM_OFF_TM_TP ,765,80,95,.01,0,2,s,2113,6113,ff,RL_T_PWM_ON_TM_TP ,765,16,16,1,0,0,,2114,6114,ff,I_DEFROST_BY_CUSTOMER,1:true;0:false ,765,18,18,1,0,0,,2114,6114,ff,O_REAR_DEFROST_COMMAND,1:true;0:false ,765,19,19,1,0,0,,2114,6114,ff,O_DEFROST_INDICATOR,1:true;0:false ,765,20,20,1,0,0,,2114,6114,ff,REAR_DEFROST_ENGAGED,1:true;0:false ,765,21,21,1,0,0,,2114,6114,ff,R_FRONT_DEFROST_BY_CLIM,1:true;0:false ,765,22,22,1,0,0,,2114,6114,ff,R_REAR_DEFROST_BY_CLIM,1:true;0:false ,765,24,39,1,0,0,,2114,6114,ff,REAR_DEFROST_ELAPSE_TIME_V ,765,40,47,1,0,0,,2114,6114,ff,DEFROST_CONTROL_TEMP ,765,48,63,1,0,0,,2114,6114,ff,FRONT_DEFROST_ELAPSE_TIME_V ,765,64,71,1,0,0,,2114,6114,ff,RATED_ENGINE_AIR_TEMP ,765,72,79,1,0,0,,2114,6114,ff,RATED_EXTERNAL_TEMP ,765,88,88,1,0,0,,2114,6114,ff,O_ASSIST_DEFROST_COMMAND,1:true;0:false ,765,89,89,1,0,0,,2114,6114,ff,O_DRIVER_DEFROST_COMMAND,1:true;0:false ,765,96,111,1,0,0,,2114,6114,ff,NOMINAL_FRONT_DEFROST_DURATION ,765,112,127,1,0,0,,2114,6114,ff,NOMINAL_REAR_DEFROST_DURATION ,765,32,47,10,0,0,ms,2115,6115,ff,REAR_DEFROST_ENGAGEMENT_TM_TP ,765,48,63,10,0,0,ms,2115,6115,ff,REAR_DEFROST_RELAY_PROTECT_TM_TP ,765,64,79,10,0,0,ms,2115,6115,ff,REAR_DEFROST_RELEASE_TM_TP ,765,80,95,10,0,0,ms,2115,6115,ff,WAIT_FOR_ENGINE_READY_TM_TP ,765,96,111,1,0,0,,2115,6115,ff,DEFAULT_FRONT_DEFROST_CNT_TP ,765,112,127,1,0,0,,2115,6115,ff,DEFAULT_REAR_DEFROST_CNT_TP ,765,128,143,10,0,0,ms,2115,6115,ff,DEFROST_ONE_SECOND_TM_CST ,765,152,167,10,0,0,ms,2115,6115,ff,FRONT_DEFROST_ENGAGEMENT_TM_TP ,765,168,183,10,0,0,ms,2115,6115,ff,FRONT_DEFROST_RELAY_PROTECT_TM_TP ,765,184,199,10,0,0,ms,2115,6115,ff,FRONT_DEFROST_RELEASE_TM_TP ,765,200,215,1,0,0,s,2115,6115,ff,FRONT_DEFROST_CNT_TP 0 ,765,216,231,1,0,0,s,2115,6115,ff,FRONT_DEFROST_CNT_TP 1 ,765,232,247,1,0,0,s,2115,6115,ff,FRONT_DEFROST_CNT_TP 2 ,765,248,263,1,0,0,s,2115,6115,ff,FRONT_DEFROST_CNT_TP 3 ,765,264,279,1,0,0,,2115,6115,ff,REAR_DEFROST_CNT_TP 0 ,765,280,295,1,0,0,,2115,6115,ff,REAR_DEFROST_CNT_TP 1 ,765,296,311,1,0,0,,2115,6115,ff,REAR_DEFROST_CNT_TP 2 ,765,312,327,1,0,0,,2115,6115,ff,REAR_DEFROST_CNT_TP 3 ,765,328,335,1,40,0,°C,2115,6115,ff,MAX_EXTERNAL_TEMP_THRESHOLD_TP ,765,336,343,1,40,0,°C,2115,6115,ff,MED_EXTERNAL_TEMP_THRESHOLD_TP ,765,344,351,1,40,0,°C,2115,6115,ff,MIN_EXTERNAL_TEMP_THRESHOLD_TP ,765,352,367,10,0,0,ms,2115,6115,ff,DEFROST_SHIFT_DRIVER_TO_ASSIST_TM_TP ,765,368,383,1,0,0,W,2115,6115,ff,ELECTRICAL_POWER_PBE_1_TP ,765,384,399,1,0,0,W,2115,6115,ff,ELECTRICAL_POWER_PBE_2_TP ,765,16,16,1,0,0,,2116,6116,ff,TRACKER_PAIRING_DONE_S,1:true;0:false ,765,24,24,1,0,0,,2116,6116,ff,TRACKER_AUTHORIZED,1:true;0:false ,765,32,39,1,0,0,,2116,6116,ff,TRACKER_RETRY_HISTORY_COUNTER ,765,40,47,1,0,0,,2116,6116,ff,TRACKER_SLAVE_STATE,0:TRACKER_SLAVE_IS_BLANK;1:TRACKER_SLAVE_PAIRED;2:TRACKER_SLAVE_ERROR;3:TRACKER_SLAVE_NOT_OPERATIONAL ,765,16,23,.01,0,2,s,2117,6117,ff,TIME_OUT_INTER_FRAMES_TP ,765,24,31,.01,0,2,s,2117,6117,ff,TIME_OUT_RECEIVE_TRACKER_CODE_TP ,765,16,16,1,0,0,,2118,6118,ff,BRAKE_FAIL1_DETECTION_CF,1:true;0:false ,765,17,17,1,0,0,,2118,6118,ff,BRAKE_FAIL2_DETECTION_CF,1:true;0:false ,765,18,18,1,0,0,,2118,6118,ff,STOP_LAMP_ELEC_FAIL_DETECT_CF,1:true;0:false ,765,16,23,10,0,0,ms,2119,6119,ff,DURATION_BRAKE_PRESS_TM_TP ,765,24,55,1,0,0,,2119,6119,4ff,DURATION_FROZEN_BRAKE_SW_TM_TP ,765,56,71,.01,0,2,s,2119,6119,ff,MIN_STEP_FROZEN_BRAKE_SW_TM_TP ,765,72,79,1,0,0,,2119,6119,ff,NB_TRANS_BRAKE_FAIL1_TP ,765,80,87,1,0,0,,2119,6119,ff,NB_TRANS_BRAKE_FAIL2_TP ,765,88,95,10,0,0,ms,2119,6119,ff,DELAY_BATTEMPO_TM_TP ,765,16,16,1,0,0,,211A,611A,ff,O_WL_AUTHORIZATION_RL,1:true;0:false ,765,17,17,1,0,0,,211A,611A,ff,O_WL_CENTRAL_CLOSE,1:true;0:false ,765,18,18,1,0,0,,211A,611A,ff,O_CHILDLOCK_WL_RL,1:true;0:false ,765,19,19,1,0,0,,211A,611A,ff,R_SUNROOF_CENTRALIZED_CLOSING,1:true;0:false ,765,20,20,1,0,0,,211A,611A,ff,SUNROOF_AUTHORIZATION_CAN,1:true;0:false ,765,21,21,1,0,0,,211A,611A,ff,O_WL_AUTHORIZATION,1:true;0:false ,765,22,22,1,0,0,,211A,611A,ff,O_WL_CHILDLOCK_INHIBITION,1:true;0:false ,765,16,16,1,0,0,,211B,611B,ff,AUTO_WINDOW_CLOSING_CF,1:true;0:false ,765,17,17,1,0,0,,211B,611B,ff,INHIB_LVAR_CF,1:true;0:false ,765,16,23,10,0,0,ms,211C,611C,ff,RETURN_TO_NO_SIGNAL_TM_TP ,765,24,39,.01,0,2,s,211C,611C,ff,WL_CENTRAL_CLOSE_TM_TP ,765,40,71,1,0,0,,211C,611C,4ff,WL_TM_TP ,765,72,79,10,0,0,ms,211C,611C,ff,WINDOW_LIFT_POWER_FILTER_TM_TP ,765,16,16,1,0,0,,211D,611D,ff,I_TAIL_LAMP_SW,1:true;0:false ,765,17,17,1,0,0,,211D,611D,ff,I_LOW_BEAM_SW,1:true;0:false ,765,18,18,1,0,0,,211D,611D,ff,I_HIGH_BEAM_SW,1:true;0:false ,765,19,19,1,0,0,,211D,611D,ff,I_FR_FOG_LAMP_SW,1:true;0:false ,765,20,20,1,0,0,,211D,611D,ff,I_RR_FOG_LAMP_SW,1:true;0:false ,765,16,16,1,0,0,,211E,611E,ff,INFOCLUTCH_DIAG_AUTO_DYN_CF,1:true;0:false ,765,17,17,1,0,0,,211E,611E,ff,INFOCLUTCH_DIAG_AUTO_STATIC_CF,1:true;0:false ,765,18,18,1,0,0,,211E,611E,ff,INFOCLUTCH_DIAG_END_DYN_CF,1:true;0:false ,765,19,19,1,0,0,,211E,611E,ff,INFOCLUTCH_DIAG_END_STATIC_CF,1:true;0:false ,765,20,20,1,0,0,,211E,611E,ff,INFOCLUTCH_DIAG_START_DYN_CF,1:true;0:false ,765,21,21,1,0,0,,211E,611E,ff,INFOCLUTCH_DIAG_START_STATIC_CF,1:true;0:false ,765,16,23,1,0,0,km,211F,611F,ff,AUTO_START_NEVER_PRESENT_DISTANCE_TP ,765,24,31,10,0,0,ms,211F,611F,ff,AUTOSTART_FILTER_TM_TP ,765,32,39,10,0,0,ms,211F,611F,ff,CLUTCH_NO_FAIL_CONFIRM_TM_TP ,765,40,47,1,0,0,W,211F,611F,ff,END_ALWAYS_PRESENT_DISTANCE_TP ,765,48,79,1,0,0,,211F,611F,4ff,END_ALWAYS_PRESENT_TM_TP ,765,80,111,1,0,0,,211F,611F,4ff,START_ALWAYS_PRESENT_TM_TP ,765,112,119,1,0,0,km,211F,611F,ff,START_NEVER_PRESENT_DISTANCE_TP ,765,16,16,1,0,0,,2121,6121,ff,I_DR_DOOR_SW,1:true;0:false ,765,17,17,1,0,0,,2121,6121,ff,I_ASS_DOOR_SW,1:true;0:false ,765,18,18,1,0,0,,2121,6121,ff,I_RL_DOOR_SW,1:true;0:false ,765,19,19,1,0,0,,2121,6121,ff,I_RR_DOOR_SW,1:true;0:false ,765,20,20,1,0,0,,2121,6121,ff,I_TGATE_STAT,1:true;0:false ,765,24,24,1,0,0,,2121,6121,ff,I_RL_CHILDLOCK_STAT,1:true;0:false ,765,25,25,1,0,0,,2121,6121,ff,I_RR_CHILDLOCK_STAT,1:true;0:false ,765,32,32,1,0,0,,2121,6121,ff,I_TGATE_OPENER_SW,1:true;0:false ,765,33,33,1,0,0,,2121,6121,ff,I_TGATE_INSIDE_OPENER_SW,1:true;0:false ,765,34,34,1,0,0,,2121,6121,ff,I_DOORLOCK_SW,1:true;0:false ,765,35,35,1,0,0,,2121,6121,ff,I_CHILDLOCK_SW,1:true;0:false ,765,36,36,1,0,0,,2121,6121,ff,I_DR_DOOR_LOCK_SW,1:true;0:false ,765,37,37,1,0,0,,2121,6121,ff,I_DR_DOOR_UNLOCK_SW,1:true;0:false ,765,48,48,1,0,0,,2121,6121,ff,O_LOCK_DOORS,1:true;0:false ,765,49,49,1,0,0,,2121,6121,ff,O_LOCK_DR_DOOR,1:true;0:false ,765,56,56,1,0,0,,2121,6121,ff,O_UNLOCK_DOORS,1:true;0:false ,765,57,57,1,0,0,,2121,6121,ff,O_UNLOCK_DR_RL,1:true;0:false ,765,64,64,1,0,0,,2121,6121,ff,O_SUPERLOCK,1:true;0:false ,765,72,72,1,0,0,,2121,6121,ff,O_MASTER_RELAY,1:true;0:false ,765,80,80,1,0,0,,2121,6121,ff,O_DOORLOCK_LED,1:true;0:false ,765,82,82,1,0,0,,2121,6121,ff,O_TAILGATE_OPENER,1:true;0:false ,765,83,83,1,0,0,,2121,6121,ff,O_SUPERLOCK_DOORS_RL,1:true;0:false ,765,84,84,1,0,0,,2121,6121,ff,DOORLOCK_SW,1:true;0:false ,765,85,85,1,0,0,,2121,6121,ff,O_UNLOCK_DOORS_B_CMD,1:true;0:false ,765,86,86,1,0,0,,2121,6121,ff,O_LOCK_DOORS_B_CMD,1:true;0:false ,765,87,87,1,0,0,,2121,6121,ff,O_LOCK_DR_DOOR_CMD,1:true;0:false ,765,89,89,1,0,0,,2121,6121,ff,TGATE_OPENER_SW,1:true;0:false ,765,90,90,1,0,0,,2121,6121,ff,O_EXT_UNLOCK_DR_CMD,1:true;0:false ,765,91,91,1,0,0,,2121,6121,ff,O_SUPERLOCK_CMD,1:true;0:false ,765,92,92,1,0,0,,2121,6121,ff,OTHERS_KNOB_LOCKED,1:true;0:false ,765,93,93,1,0,0,,2121,6121,ff,O_EXT_SUPERLOCK_DOORS_CMD,1:true;0:false ,765,94,94,1,0,0,,2121,6121,ff,DOOR_KNOB_SW,1:true;0:false ,765,16,23,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 0,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,24,31,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 1,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,32,39,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 2,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,40,47,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 3,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,48,55,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 4,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,56,63,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 5,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,64,71,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 6,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,72,79,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 7,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,80,87,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 8,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,88,95,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 9,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,96,103,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 10,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,104,111,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 11,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,112,119,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 12,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,120,127,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 13,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,128,135,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 14,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,136,143,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 15,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,144,151,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 16,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,152,159,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 17,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,160,167,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 18,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,168,175,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION 19,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,176,183,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 0,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,184,191,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 1,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,192,199,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 2,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,200,207,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 3,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,208,215,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 4,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,216,223,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 5,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,224,231,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 6,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,232,239,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 7,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,240,247,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 8,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,248,255,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 9,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,256,263,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 10,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,264,271,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 11,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,272,279,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 12,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,280,287,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 13,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,288,295,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 14,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,296,303,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 15,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,304,311,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 16,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,312,319,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 17,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,320,327,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 18,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,328,335,1,0,0,,2122,6122,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM 19,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,336,367,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 0 ,765,368,399,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 1 ,765,400,431,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 2 ,765,432,463,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 3 ,765,464,495,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 4 ,765,496,527,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 5 ,765,528,559,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 6 ,765,560,591,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 7 ,765,592,623,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 8 ,765,624,655,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 9 ,765,656,687,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 10 ,765,688,719,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 11 ,765,720,751,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 12 ,765,752,783,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 13 ,765,784,815,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 14 ,765,816,847,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 15 ,765,848,879,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 16 ,765,880,911,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 17 ,765,912,943,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 18 ,765,944,975,1,0,0,,2122,6122,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME 19 ,765,16,16,1,0,0,,2123,6123,ff,ANTI_HIJACK_CF,1:true;0:false ,765,17,17,1,0,0,,2123,6123,ff,BTN_TAILGATE_OPENING_CF,1:true;0:false ,765,18,18,1,0,0,,2123,6123,ff,CHILD_LOCK_SWITCH_REVERSE_CF,1:true;0:false ,765,19,19,1,0,0,,2123,6123,ff,CRASH_DETECTION_CF,1:true;0:false ,765,20,20,1,0,0,,2123,6123,ff,DRIVER_ON_RIGHT_SIDE_CF,1:true;0:false ,765,22,22,1,0,0,,2123,6123,ff,LOCK_UNLOCK_BUTTON_CF,1:true;0:false ,765,23,23,1,0,0,,2123,6123,ff,PLANT_LOCK_WITH_SPEED_CF,1:true;0:false ,765,24,24,1,0,0,,2123,6123,ff,RKE_BACK_DOORS_CF,1:true;0:false ,765,25,25,1,0,0,,2123,6123,ff,SUPERLOCK_CF,1:true;0:false ,765,32,47,1.66666666666667E-04,0,3,min,2123,6123,ff,AUTO_RELOCK_TIMEOUT_CF ,765,48,48,1,0,0,,2123,6123,ff,REVERSE_SW_ON_BACK_DOOR_CF,1:true;0:false ,765,49,49,1,0,0,,2123,6123,ff,REVERSE_SW_ON_FL_DOOR_CF,1:true;0:false ,765,50,50,1,0,0,,2123,6123,ff,REVERSE_SW_ON_FR_DOOR_CF,1:true;0:false ,765,51,51,1,0,0,,2123,6123,ff,REVERSE_SW_ON_RR_DOOR_CF,1:true;0:false ,765,52,52,1,0,0,,2123,6123,ff,REVERSE_SW_ON_RL_DOOR_CF,1:true;0:false ,765,53,53,1,0,0,,2123,6123,ff,LOAD_AREA_CF,1:true;0:false ,765,54,54,1,0,0,,2123,6123,ff,LATCH_TYPE_ON_BACK_DOOR_CF,1:true;0:false ,765,55,55,1,0,0,,2123,6123,ff,DOORLOCK_OUTPUT_CF,1:true;0:false ,765,56,56,1,0,0,,2123,6123,ff,OPEN_REAR_SIDE_DOOR_ARE_NOT_LOCKABLE_CF,1:true;0:false ,765,57,57,1,0,0,,2123,6123,ff,KNOB_CF,1:true;0:false ,765,58,58,1,0,0,,2123,6123,ff,RKE_BACK_DOOR_OPENING_CF,1:true;0:false ,765,64,71,1,0,0,km/h,2123,6123,ff,LWS_SPEED_THRESH_CF ,765,16,31,.01,0,2,s,2124,6124,ff,ANTI_HIJACK_TM_TP ,765,32,47,.01,0,2,s,2124,6124,ff,CHANGE_LOCK_W_SPEED_TM_TP ,765,48,55,10,0,0,ms,2124,6124,ff,CHILDLOCK_REQ_RELEASE_TIME_TP ,765,56,71,.01,0,2,s,2124,6124,ff,DL_DISABLED_AFTER_CRASH_TM_TP ,765,72,87,.01,0,2,s,2124,6124,ff,DL_MAX_AIRBAG_WAKE_UP_TM_TP ,765,88,95,1,0,0,km/h,2124,6124,ff,DOOR_WARNING_SPEED_THRESH_TP ,765,96,103,1,0,0,,2124,6124,ff,DOORLOCK_CHILDLOCK_NLIM_TP ,765,104,119,.01,0,2,s,2124,6124,ff,FORCE_CDL_LOCK_TM_TP ,765,120,151,1,0,0,,2124,6124,4ff,LONG_CDL_INDICATOR_TM_TP ,765,152,159,.01,0,2,s,2124,6124,ff,LWS_SPEED_ABOVE_THRESH_TM_TP ,765,168,175,1,0,0,km/h,2124,6124,ff,MASTER_DOOR_SPEED_THRESH_TP ,765,176,183,10,0,0,ms,2124,6124,ff,MASTER_RELAY_SYNCHRO_TM_TP ,765,184,199,1,0,0,,2124,6124,ff,MAX_NB_DOOR_WARNING_REQUEST_TP ,765,200,207,1,0,0,,2124,6124,ff,MAX_NB_LOCK_REQUESTS_BY_LWS_TP ,765,208,215,1,0,0,,2124,6124,ff,NUMBER_DISABLE_TP ,765,216,223,1,0,0,,2124,6124,ff,NUMBER_ENABLE_TP ,765,224,231,10,0,0,ms,2124,6124,ff,PAUSE_TIME_TP ,765,232,247,.01,0,2,s,2124,6124,ff,RETRY_CHILDLOCK_TM_TP ,765,248,263,1.66666666666667E-04,0,3,min,2124,6124,ff,SHORT_CDL_INDICATOR_TM_TP ,765,264,279,.01,0,2,s,2124,6124,ff,SUPERLOCK_TM_TP ,765,280,287,10,0,0,ms,2124,6124,ff,TAILGATE_RELEASE_TIME_TP ,765,288,295,.01,0,2,s,2124,6124,ff,TIME_DECREMENT_TP ,765,296,303,10,0,0,ms,2124,6124,ff,DOORLOCK_ACTUATORS_TIME_TP ,765,16,16,1,0,0,,2125,6125,ff,DRIVER_DOOR_LOCKED_S,1:true;0:false ,765,17,17,1,0,0,,2125,6125,ff,ASSIST_DOOR_LOCKED_S,1:true;0:false ,765,18,18,1,0,0,,2125,6125,ff,REAR_LEFT_DOOR_LOCKED_S,1:true;0:false ,765,19,19,1,0,0,,2125,6125,ff,REAR_RIGHT_DOOR_LOCKED_S,1:true;0:false ,765,20,20,1,0,0,,2125,6125,ff,TAILGATE_LOCKED_S,1:true;0:false ,765,21,21,1,0,0,,2125,6125,ff,FUEL_LOCKED_S,1:true;0:false ,765,24,24,1,0,0,,2125,6125,ff,DRIVER_DOOR_SUPERLOCKED_S,1:true;0:false ,765,25,25,1,0,0,,2125,6125,ff,ASSIST_DOOR_SUPERLOCKED_S,1:true;0:false ,765,26,26,1,0,0,,2125,6125,ff,REAR_LEFT_DOOR_SUPERLOCKED_S,1:true;0:false ,765,27,27,1,0,0,,2125,6125,ff,REAR_RIGHT_DOOR_SUPERLOCKED_S,1:true;0:false ,765,28,28,1,0,0,,2125,6125,ff,BACK_DOOR_SUPERLOCKED_S,1:true;0:false ,765,32,32,1,0,0,,2125,6125,ff,REAR_LEFT_DOOR_CHILDLOCKED_S,1:true;0:false ,765,33,33,1,0,0,,2125,6125,ff,REAR_RIGHT_DOOR_CHILDLOCKED_S,1:true;0:false ,765,40,40,1,0,0,,2125,6125,ff,CAR_SECURE_S,1:true;0:false ,765,41,41,1,0,0,,2125,6125,ff,NOT_CAR_SECURE_S,1:true;0:false ,765,42,42,1,0,0,,2125,6125,ff,CUSTOMER_ANTI_HIJACK_S,1:true;0:false ,765,43,43,1,0,0,,2125,6125,ff,CUSTOMER_LOCK_W_SPEED_S,1:true;0:false ,765,44,44,1,0,0,,2125,6125,ff,IGNITION_ON_FLAG_UP_S,1:true;0:false ,765,45,45,1,0,0,,2125,6125,ff,UNLOCK_REQUEST_FLAG_UP_S,1:true;0:false ,765,46,46,1,0,0,,2125,6125,ff,CRASH_DOORLOCK_OPERATED_S,1:true;0:false ,765,48,55,1,0,0,,2125,6125,ff,LAST_DL_MA_MEDIUM_S 0,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,56,63,1,0,0,,2125,6125,ff,LAST_DL_MA_MEDIUM_S 1,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,64,71,1,0,0,,2125,6125,ff,LAST_DL_MA_MEDIUM_S 2,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,72,79,1,0,0,,2125,6125,ff,LAST_DL_MA_MEDIUM_S 3,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,80,87,1,0,0,,2125,6125,ff,LAST_DL_MA_MEDIUM_S 4,0:BY_NONE;1:BY_EMERGENCY_CRASH;2:BY_SECURITY_CRASH;4:BY_CDL;5:BY_BACK_UP;6:BY_MASTER_DOOR;7:BY_RKE;8:BY_RKE_VALET;9:BY_HANDSFREE;3:BY_KEY;10:BY_BACKDOOR_HANDSFREE;11:BY_WAC;12:BY_KNOB;13:BY_AUTH;14:BY_AUTO_RELOCK;15:BY_DIAG_TOOL;16:BY_RTL_DOOR;17:BY_RTL_CARD;18:BY_LWS;19:BY_CHILD;20:BY_RKE_SLD_RIGHT_LONG_PRESS;21:BY_RKE_SLD_LEFT_LONG_PRESS;22:BY_ASDM_RIGHT;23:BY_ASDM_LEFT;24:BY_INSIDE_SW;25:BY_OUTSIDE_SW;26:BY_CAR_SHARING;27:BY_BACKDOOR_RKE;28:BY_NFC;29:BY_RLU ,765,88,95,1,0,0,,2125,6125,ff,LAST_DL_MA_S 0,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,96,103,1,0,0,,2125,6125,ff,LAST_DL_MA_S 1,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,104,111,1,0,0,,2125,6125,ff,LAST_DL_MA_S 2,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,112,119,1,0,0,,2125,6125,ff,LAST_DL_MA_S 3,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,120,127,1,0,0,,2125,6125,ff,LAST_DL_MA_S 4,0:NO_DOORLOCK_ACTION;1:CRASH_UNLOCK_ALL_SUPERUNLOCK_ALL;2:CRASH_UNLOCK_ALL_SUPERUNLOCK_RR;3:CRASH_UNLOCK_ALL_SUPERUNLOCK_FR;4:LOCK_ALL;5:UNLOCK_ALL;6:UNLOCK_DRIVER;7:LOCK_REAR_AND_BACK_DOORS;8:UNLOCK_REAR_AND_BACK_DOORS;9:LOCK_BACK_DOORS;10:UNLOCK_BACK_DOORS;11:SUPERLOCK_ALL;12:SUPERUNLOCK_ALL;13:CHILDLOCK;14:CHILDUNLOCK;16:TAILGATE_OPENING;17:DRIVER_DOOR_OPEN;18:ASSIST_DOOR_OPEN;19:REAR_RIGHT_DOOR_OPEN;20:REAR_LEFT_DOOR_OPEN;21:TAILGATE_OPEN;22:DRIVER_DOOR_CLOSE;23:ASSIST_DOOR_CLOSE;24:REAR_RIGHT_DOOR_CLOSE;25:REAR_LEFT_DOOR_CLOSE;26:TAILGATE_CLOSE;15:SUPERUNLOCK_BUT_CHILDLOCK;27:CHILDUNLOCK_BUT_SUPERLOCK;28:UNLOCK_UNSUPERLOCK_BACK_DOORS;29:UNLOCK_UNSUPERLOCK_REAR_AND_BACK_DOORS;30:UNLOCK_UNSUPERLOCK_ALL;31:CRASH_UNLOCK_ALL;32:SUPERUNLOCK_ALL_STEP1;33:SUPERUNLOCK_ALL_STEP2;34:UNLOCK_DR_AND_SUPERUNLOCK_ALL_STEP1 ,765,16,16,1,0,0,,2126,6126,ff,I_ACC_SW,1:true;0:false ,765,17,17,1,0,0,,2126,6126,ff,I_APC_SW,1:true;0:false ,765,18,18,1,0,0,,2126,6126,ff,I_STARTER_SW,1:true;0:false ,765,24,24,1,0,0,,2126,6126,ff,O_BAT_TEMP,1:true;0:false ,765,25,25,1,0,0,,2126,6126,ff,O_ACC_RL,1:true;0:false ,765,26,26,1,0,0,,2126,6126,ff,O_STARTER_RL,1:true;0:false ,765,32,39,1,0,0,,2126,6126,ff,KEY_STATUS,0:KEY_STOP;1:KEY_ACC;2:KEY_IGN;3:KEY_STARTER_REQUEST ,765,40,47,1,0,0,,2126,6126,ff,VEHICLESTATE_T4,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,48,48,1,0,0,,2126,6126,ff,LAST_MIN_POWER_LEVEL_1_ON,1:true;0:false ,765,49,49,1,0,0,,2126,6126,ff,R_POWER_LEVEL_1_BY_INT_LIGHTS,1:true;0:false ,765,50,50,1,0,0,,2126,6126,ff,R_POWER_LEVEL_1_BY_WINDOWS,1:true;0:false ,765,56,63,1,0,0,,2126,6126,ff,R_POWER_LEVEL_1_BY_HFM,0:PL1_BY_HFM_UNAVAILABLE;1:PL1_BY_HFM_NO_REQUEST;2:PL1_BY_HFM_REQUEST;3:PL1_BY_HFM_NOT_USED ,765,65,65,1,0,0,,2126,6126,ff,IGNITION_SUPPLY_CONFIRMATION,1:true;0:false ,765,66,66,1,0,0,,2126,6126,ff,IGNITION_ON,1:true;0:false ,765,73,73,1,0,0,,2126,6126,ff,STARTING_REQUESTED,1:true;0:false ,765,80,87,1,0,0,,2126,6126,ff,ENGINE_STATUS_FROM_CAN,0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,88,95,1,0,0,,2126,6126,ff,AUTO_START_AUTHORIZATION,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,96,103,1,0,0,,2126,6126,ff,TECHNICAL_AUTOSTART_REQUEST,0:TECH_AUTOSTART_UNAVAILABLE;1:NO_TECH_AUTOSTART_REQUESTED;2:TECH_AUTOSTART_REQUESTED;3:TECH_AUTOSTART_NOT_USED ,765,104,111,1,0,0,,2126,6126,ff,INHIBITION_STARTER_CS ,765,112,119,1,0,0,,2126,6126,ff,STARTING_REQUEST_TYPE,0:MANUAL_REQUEST;1:AUTOMATIC_REQUEST ,765,120,127,1,0,0,,2126,6126,ff,ENGINE_STOP_REQUEST_ORIGINE ,765,128,135,1,0,0,,2126,6126,ff,CRANKING_FAILURE_CS ,765,136,143,1,0,0,,2126,6126,ff,CRANKING_FAILURE_HISTORY_1_CS_S ,765,144,151,1,0,0,,2126,6126,ff,CRANKING_FAILURE_HISTORY_2_CS_S ,765,152,159,1,0,0,,2126,6126,ff,CRANKING_FAILURE_HISTORY_3_CS_S ,765,160,167,1,0,0,,2126,6126,ff,CRANKING_FAILURE_HISTORY_4_CS_S ,765,168,175,1,0,0,,2126,6126,ff,CRANKING_FAILURE_HISTORY_5_CS_S ,765,176,176,1,0,0,,2126,6126,ff,POWER_LEVEL_1_ON,1:true;0:false ,765,177,177,1,0,0,,2126,6126,ff,POWER_LEVEL_2_RELAY_ON,1:true;0:false ,765,178,178,1,0,0,,2126,6126,ff,R_STARTER_RELAY_ON,1:true;0:false ,765,179,179,1,0,0,,2126,6126,ff,R_STOPSTART_LED,1:true;0:false ,765,16,16,1,0,0,,2127,6127,ff,AT_CF,1:true;0:false ,765,17,17,1,0,0,,2127,6127,ff,IGNITION_RELAY_IN_EMM_CF,1:true;0:false ,765,18,18,1,0,0,,2127,6127,ff,KEY_PRESENT_CF,1:true;0:false ,765,19,19,1,0,0,,2127,6127,ff,PLANT_START_SEQ_INHIBITION_CF,1:true;0:false ,765,20,20,1,0,0,,2127,6127,ff,STARTER_WITH_RELAY_CF,1:true;0:false ,765,22,22,1,0,0,,2127,6127,ff,STARTER_PROTECTION_CF,1:true;0:false ,765,23,23,1,0,0,,2127,6127,ff,ANTI_JUMP_AUTO_CF,1:true;0:false ,765,24,24,1,0,0,,2127,6127,ff,ANTI_JUMP_MANU_CF,1:true;0:false ,765,25,25,1,0,0,,2127,6127,ff,END_CLUTCH_USED_FOR_AUTOSTART_CF,1:true;0:false ,765,32,39,1,0,0,,2127,6127,ff,HAND_BRAKE_CF,0:HB_NOT_USED_FOR_S_AND_S;1:HB_USED_FOR_S_AND_S ,765,40,47,10,0,0,ms,2127,6127,ff,GEAR_POSITION_TIMER_TM_CF ,765,48,55,.5,0,1,bar,2127,6127,ff,BK_PRESSURE_THRESHOLD_FOR_START_CF ,765,64,79,.01,0,2,s,2127,6127,ff,MAX_ENGINE_START_SEQ_TM_CF ,765,80,95,.125,0,1,%,2127,6127,ff,RAW_SENSOR_START_AUTO_THRESHOLD_CF ,765,16,31,.01,0,2,s,2128,6128,ff,APB_SYNC_TM_TP ,765,32,39,10,0,0,ms,2128,6128,ff,CONF_VEHICLESTATET4_UNAVAILABLE_TM_TP ,765,40,55,.01,0,2,s,2128,6128,ff,CRANKING_VERLOG_INHIB_TM_TP ,765,56,87,1,0,0,,2128,6128,4ff,DIAG_BTP_OFF_AUTO_TM_TP ,765,88,103,.01,0,2,s,2128,6128,ff,MAX_AUTHENTICATION_TM_TP ,765,112,127,.01,0,2,s,2128,6128,ff,MAX_ENGINE_RESTART_TM_TP ,765,144,151,10,0,0,ms,2128,6128,ff,NEUTRAL_CONTACT_CONFIRM_TM_TP ,765,152,159,1,0,0,km/h,2128,6128,ff,SPEED_THRESH_OFF_TP ,765,160,167,1,0,0,km/h,2128,6128,ff,SPEED_THRESH_ON_TP ,765,168,183,.01,0,2,s,2128,6128,ff,TIMER_BTP_TM_TP ,765,184,199,.01,0,2,s,2128,6128,ff,MAX_STARTING_PROTECTION_TM_TP ,765,200,215,.01,0,2,s,2128,6128,ff,MAX_STARTING_TM_TP ,765,216,231,.01,0,2,s,2128,6128,ff,ANTI_MILLING_TM_TP ,765,232,239,.01,0,2,s,2128,6128,ff,RESTART_FAILURE_TM_TP ,765,240,247,.01,0,2,s,2128,6128,ff,MINIMUM_TIME_FOR_CLUTCHRELEASED_TM_TP ,765,248,255,.01,0,2,s,2128,6128,ff,MIN_DURATION_TM_TP ,765,16,16,1,0,0,,2129,6129,ff,VEHICLE_IS_BLANK_S,1:true;0:false ,765,17,17,1,0,0,,2129,6129,ff,KEY_ID_AUTH_STARTING_SEQUENCE_S,1:true;0:false ,765,18,18,1,0,0,,2129,6129,ff,VEHICLE_PROTECTION_S,1:true;0:false ,765,16,16,1,0,0,,212A,612A,ff,I_END_CLUTCH_SW,1:true;0:false ,765,17,17,1,0,0,,212A,612A,ff,I_START_CLUTCH_SW,1:true;0:false ,765,18,18,1,0,0,,212A,612A,ff,I_SS_START_CLUTCH_SW,1:true;0:false ,765,19,19,1,0,0,,212A,612A,ff,AUTO_START_ALWAYS_PRESSED_STAT_S,1:true;0:false ,765,20,20,1,0,0,,212A,612A,ff,AUTO_START_NEVER_PRESSED_DYN_S,1:true;0:false ,765,21,21,1,0,0,,212A,612A,ff,END_ALWAYS_PRESSED_DYN_S,1:true;0:false ,765,22,22,1,0,0,,212A,612A,ff,END_ALWAYS_PRESSED_STAT_S,1:true;0:false ,765,23,23,1,0,0,,212A,612A,ff,START_ALWAYS_PRESSED_STAT_S,1:true;0:false ,765,24,24,1,0,0,,212A,612A,ff,START_NEVER_PRESSED_DYN_S,1:true;0:false ,765,16,16,1,0,0,,212B,612B,ff,ALARM_PERI_REFUSE_TO_SLEEP,1:true;0:false ,765,17,17,1,0,0,,212B,612B,ff,DOORLOCK_REFUSE_TO_SLEEP,1:true;0:false ,765,19,19,1,0,0,,212B,612B,ff,TPMS_REFUSE_TO_SLEEP,1:true;0:false ,765,20,20,1,0,0,,212B,612B,ff,I_EXT_WAKE_UP,1:true;0:false ,765,24,31,1,0,0,,212B,612B,ff,V_LOW_LAYER_STATE,0:SLEEP;1:WAKE_UP_TRANSIENT;2:APPLICATION;3:STARTING_CAN_WAKE_UP;4:STARTING_GO_TO_SLEEP ,765,32,32,1,0,0,,212B,612B,ff,UNDERHOOD_OPENED,1:true;0:false ,765,16,16,1,0,0,,212C,612C,ff,I_BS_SW,1:true;0:false ,765,17,17,1,0,0,,212C,612C,ff,I_BLS_SW,1:true;0:false ,765,18,18,1,0,0,,212C,612C,ff,STOP_LAMP_1_ON,1:true;0:false ,765,16,31,.01,0,2,s,212D,612D,ff,DELAYED_CAN_V_CUSTOMER_ON_TM_TP ,765,32,63,1,0,0,,212D,612D,4ff,GLOBAL_TIMER_TM_TP ,765,64,79,.01,0,2,s,212D,612D,ff,DISPLAY_REQUEST_CAN_TM_TP ,765,112,119,1,0,0,km,212D,612D,ff,DELIVERY_DISTANCE_MAX_TM_TP ,765,120,151,1,0,0,,212D,612D,4ff,DELIVERY_TIME_MAX_TM_TP ,765,152,159,1,0,0,min,212D,612D,ff,PRM_MIN_TIME_TP ,765,168,175,10,0,0,ms,212D,612D,ff,SCH_INTERFRAMES_TM_TP ,765,176,191,.01,0,2,s,212D,612D,ff,SCH_WAKE_UP_MAX_TM_TP ,765,192,207,.01,0,2,s,212D,612D,ff,PRM_IMMEDIATE_TIME_TM_TP ,765,208,215,1,0,0,,212D,612D,ff,LEFT_TIME_DV_TP ,765,16,47,1,0,0,,212E,612E,4ff,GLOBAL_TIME_S ,765,48,55,1,0,0,,212E,612E,ff,WAKE_UP_INDEX_S ,765,56,87,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 0 ,765,88,95,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 0,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,96,127,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 1 ,765,128,135,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 1,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,136,167,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 2 ,765,168,175,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 2,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,176,207,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 3 ,765,208,215,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 3,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,216,247,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 4 ,765,248,255,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 4,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,256,287,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 5 ,765,288,295,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 5,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,296,327,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 6 ,765,328,335,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 6,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,336,367,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 7 ,765,368,375,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 7,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,376,407,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 8 ,765,408,415,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 8,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,416,447,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 9 ,765,448,455,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 9,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,456,487,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 10 ,765,488,495,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 10,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,496,527,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 11 ,765,528,535,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 11,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,536,567,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 12 ,765,568,575,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 12,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,576,607,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 13 ,765,608,615,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 13,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,616,647,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 14 ,765,648,655,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 14,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,656,687,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 15 ,765,688,695,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 15,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,696,727,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 16 ,765,728,735,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 16,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,736,767,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 17 ,765,768,775,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 17,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,776,807,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 18 ,765,808,815,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 18,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,816,847,1,0,0,,212E,612E,4ff,WAKE_UP_TIME_S 19 ,765,848,855,1,0,0,,212E,612E,ff,WAKE_UP_SOURCE_S 19,0:NO_WAKEUP_SOURCE;1:HAZARD_SW;2:CDL_SW_BY_DRIVER;3:TAILGATE_OPENER_ON_BY_DRIVER;4:DRIVER_DOOR;5:ASSIST_DOOR;6:REAR_LEFT_DOOR;7:REAR_RIGHT_DOOR;8:TAILGATE;9:TAIL_LIGHTS_BY_CSW;10:LOW_BEAM_LIGHTS_BY_CSW;11:HIGH_BEAM_LIGHTS_BY_CSW;12:UNDERHOOD;13:TAILGATE_INSIDE_OPENER;14:ACC_SW;15:APC_SW;16:STARTER_SW;17:LOCK_BY_KEY_SWITCH_SW;18:UNLOCK_BY_KEY_SWITCH_SW;19:WAKE_UP_BY_HFM;20:ELEC_CHILD_LOCK_SW;21:LOCK_BY_RKE;22:UNLOCK_BY_RKE;23:RKE_BACK_DOORS;25:WAKEUP_BY_CAN;26:GLOBAL_TIMER_WRITING;27:RADIO_FREQUENCY;28:WAKEUP_BY_PRESOAK;29:WAKEUP_BY_RES;24:WAKEUP_BY_TECHNICAL_WAKEUP ,765,856,871,1,0,0,,212E,612E,ff,CLUSTER_TIME_PC1_S ,765,872,887,1,0,0,,212E,612E,ff,CLUSTER_TIME_PC2_S ,765,16,16,1,0,0,,212F,612F,ff,WITH_CCP_CF,1:true;0:false ,765,16,16,1,0,0,,2131,6131,ff,CID_BUTTON_1_PRESSED,1:true;0:false ,765,17,17,1,0,0,,2131,6131,ff,CID_BUTTON_2_PRESSED,1:true;0:false ,765,18,18,1,0,0,,2131,6131,ff,CID_BUTTON_3_PRESSED,1:true;0:false ,765,19,19,1,0,0,,2131,6131,ff,CID_BUTTON_4_PRESSED,1:true;0:false ,765,24,31,1,0,0,,2131,6131,ff,RKE_ID ,765,32,39,1,0,0,,2131,6131,ff,RKE_STATUS,0:RS_NOT_AVAILABLE;1:RS_ENABLED;2:RS_INHIBITED ,765,40,71,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 0 ,765,72,103,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 1 ,765,104,135,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 2 ,765,136,167,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 3 ,765,168,199,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 4 ,765,200,231,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 5 ,765,232,263,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 6 ,765,264,295,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 7 ,765,296,327,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 8 ,765,328,359,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 9 ,765,360,391,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 10 ,765,392,423,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 11 ,765,424,455,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 12 ,765,456,487,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 13 ,765,488,519,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 14 ,765,520,551,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 15 ,765,552,583,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 16 ,765,584,615,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 17 ,765,616,647,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 18 ,765,648,679,1,0,0,,2131,6131,4ff,LAST_RKE_HISTO_SI_NUMBER 19 ,765,680,687,1,0,0,,2131,6131,ff,RF_FRAME_RECEIVED_COUNTER ,765,688,719,1,0,0,,2131,6131,4ff,RKE_IDE_RECEIVED_FRAME ,765,720,727,1,0,0,,2131,6131,ff,RF_ORIGIN,0:NO_SIGNIFICATION;1:NO_SIGNIFICATION_1;2:TPMS_CHECKSUM_OK;3:TPMS_CHECKSUM_NOK;4:HANDFREE_CHECKSUM_OK;5:HANDFREE_CHECKSUM_NOK;6:CID_RKE_CHECKSUM_OK;7:CID_RKE_CHECKSUM_NOK ,765,728,728,1,0,0,,2131,6131,ff,RF_IDENTIFICATION_STATUS,1:true;0:false ,765,736,767,1,0,0,,2131,6131,4ff,RKE_SI_NUMBER ,765,16,23,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_INDEX ,765,24,55,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 0 ,765,56,63,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 0 ,765,64,64,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 0,1:true;0:false ,765,65,65,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 0,1:true;0:false ,765,66,66,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 0,1:true;0:false ,765,67,67,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 0,1:true;0:false ,765,68,68,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 0,1:true;0:false ,765,69,69,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 0,1:true;0:false ,765,70,70,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 0,1:true;0:false ,765,71,71,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 0,1:true;0:false ,765,72,103,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 1 ,765,104,111,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 1 ,765,112,112,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 1,1:true;0:false ,765,113,113,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 1,1:true;0:false ,765,114,114,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 1,1:true;0:false ,765,115,115,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 1,1:true;0:false ,765,116,116,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 1,1:true;0:false ,765,117,117,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 1,1:true;0:false ,765,118,118,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 1,1:true;0:false ,765,119,119,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 1,1:true;0:false ,765,120,151,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 2 ,765,152,159,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 2 ,765,160,160,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 2,1:true;0:false ,765,161,161,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 2,1:true;0:false ,765,162,162,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 2,1:true;0:false ,765,163,163,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 2,1:true;0:false ,765,164,164,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 2,1:true;0:false ,765,165,165,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 2,1:true;0:false ,765,166,166,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 2,1:true;0:false ,765,167,167,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 2,1:true;0:false ,765,168,199,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 3 ,765,200,207,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 3 ,765,208,208,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 3,1:true;0:false ,765,209,209,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 3,1:true;0:false ,765,210,210,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 3,1:true;0:false ,765,211,211,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 3,1:true;0:false ,765,212,212,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 3,1:true;0:false ,765,213,213,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 3,1:true;0:false ,765,214,214,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 3,1:true;0:false ,765,215,215,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 3,1:true;0:false ,765,216,247,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 4 ,765,248,255,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 4 ,765,256,256,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 4,1:true;0:false ,765,257,257,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 4,1:true;0:false ,765,258,258,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 4,1:true;0:false ,765,259,259,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 4,1:true;0:false ,765,260,260,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 4,1:true;0:false ,765,261,261,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 4,1:true;0:false ,765,262,262,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 4,1:true;0:false ,765,263,263,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 4,1:true;0:false ,765,264,295,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 5 ,765,296,303,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 5 ,765,304,304,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 5,1:true;0:false ,765,305,305,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 5,1:true;0:false ,765,306,306,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 5,1:true;0:false ,765,307,307,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 5,1:true;0:false ,765,308,308,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 5,1:true;0:false ,765,309,309,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 5,1:true;0:false ,765,310,310,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 5,1:true;0:false ,765,311,311,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 5,1:true;0:false ,765,312,343,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 6 ,765,344,351,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 6 ,765,352,352,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 6,1:true;0:false ,765,353,353,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 6,1:true;0:false ,765,354,354,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 6,1:true;0:false ,765,355,355,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 6,1:true;0:false ,765,356,356,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 6,1:true;0:false ,765,357,357,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 6,1:true;0:false ,765,358,358,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 6,1:true;0:false ,765,359,359,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 6,1:true;0:false ,765,360,391,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 7 ,765,392,399,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 7 ,765,400,400,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 7,1:true;0:false ,765,401,401,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 7,1:true;0:false ,765,402,402,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 7,1:true;0:false ,765,403,403,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 7,1:true;0:false ,765,404,404,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 7,1:true;0:false ,765,405,405,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 7,1:true;0:false ,765,406,406,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 7,1:true;0:false ,765,407,407,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 7,1:true;0:false ,765,408,439,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 8 ,765,440,447,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 8 ,765,448,448,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 8,1:true;0:false ,765,449,449,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 8,1:true;0:false ,765,450,450,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 8,1:true;0:false ,765,451,451,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 8,1:true;0:false ,765,452,452,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 8,1:true;0:false ,765,453,453,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 8,1:true;0:false ,765,454,454,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 8,1:true;0:false ,765,455,455,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 8,1:true;0:false ,765,456,487,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 9 ,765,488,495,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 9 ,765,496,496,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 9,1:true;0:false ,765,497,497,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 9,1:true;0:false ,765,498,498,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 9,1:true;0:false ,765,499,499,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 9,1:true;0:false ,765,500,500,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 9,1:true;0:false ,765,501,501,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 9,1:true;0:false ,765,502,502,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 9,1:true;0:false ,765,503,503,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 9,1:true;0:false ,765,504,535,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 10 ,765,536,543,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 10 ,765,544,544,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 10,1:true;0:false ,765,545,545,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 10,1:true;0:false ,765,546,546,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 10,1:true;0:false ,765,547,547,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 10,1:true;0:false ,765,548,548,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 10,1:true;0:false ,765,549,549,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 10,1:true;0:false ,765,550,550,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 10,1:true;0:false ,765,551,551,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 10,1:true;0:false ,765,552,583,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 11 ,765,584,591,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 11 ,765,592,592,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 11,1:true;0:false ,765,593,593,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 11,1:true;0:false ,765,594,594,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 11,1:true;0:false ,765,595,595,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 11,1:true;0:false ,765,596,596,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 11,1:true;0:false ,765,597,597,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 11,1:true;0:false ,765,598,598,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 11,1:true;0:false ,765,599,599,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 11,1:true;0:false ,765,600,631,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 12 ,765,632,639,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 12 ,765,640,640,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 12,1:true;0:false ,765,641,641,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 12,1:true;0:false ,765,642,642,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 12,1:true;0:false ,765,643,643,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 12,1:true;0:false ,765,644,644,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 12,1:true;0:false ,765,645,645,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 12,1:true;0:false ,765,646,646,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 12,1:true;0:false ,765,647,647,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 12,1:true;0:false ,765,648,679,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 13 ,765,680,687,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 13 ,765,688,688,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 13,1:true;0:false ,765,689,689,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 13,1:true;0:false ,765,690,690,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 13,1:true;0:false ,765,691,691,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 13,1:true;0:false ,765,692,692,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 13,1:true;0:false ,765,693,693,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 13,1:true;0:false ,765,694,694,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 13,1:true;0:false ,765,695,695,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 13,1:true;0:false ,765,696,727,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 14 ,765,728,735,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 14 ,765,736,736,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 14,1:true;0:false ,765,737,737,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 14,1:true;0:false ,765,738,738,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 14,1:true;0:false ,765,739,739,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 14,1:true;0:false ,765,740,740,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 14,1:true;0:false ,765,741,741,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 14,1:true;0:false ,765,742,742,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 14,1:true;0:false ,765,743,743,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 14,1:true;0:false ,765,744,775,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 15 ,765,776,783,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 15 ,765,784,784,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 15,1:true;0:false ,765,785,785,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 15,1:true;0:false ,765,786,786,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 15,1:true;0:false ,765,787,787,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 15,1:true;0:false ,765,788,788,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 15,1:true;0:false ,765,789,789,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 15,1:true;0:false ,765,790,790,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 15,1:true;0:false ,765,791,791,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 15,1:true;0:false ,765,792,823,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 16 ,765,824,831,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 16 ,765,832,832,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 16,1:true;0:false ,765,833,833,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 16,1:true;0:false ,765,834,834,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 16,1:true;0:false ,765,835,835,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 16,1:true;0:false ,765,836,836,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 16,1:true;0:false ,765,837,837,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 16,1:true;0:false ,765,838,838,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 16,1:true;0:false ,765,839,839,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 16,1:true;0:false ,765,840,871,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 17 ,765,872,879,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 17 ,765,880,880,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 17,1:true;0:false ,765,881,881,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 17,1:true;0:false ,765,882,882,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 17,1:true;0:false ,765,883,883,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 17,1:true;0:false ,765,884,884,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 17,1:true;0:false ,765,885,885,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 17,1:true;0:false ,765,886,886,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 17,1:true;0:false ,765,887,887,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 17,1:true;0:false ,765,888,919,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 18 ,765,920,927,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 18 ,765,928,928,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 18,1:true;0:false ,765,929,929,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 18,1:true;0:false ,765,930,930,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 18,1:true;0:false ,765,931,931,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 18,1:true;0:false ,765,932,932,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 18,1:true;0:false ,765,933,933,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 18,1:true;0:false ,765,934,934,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 18,1:true;0:false ,765,935,935,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 18,1:true;0:false ,765,936,967,1,0,0,,2132,6132,4ff,LAST_RKE_HISTO_ABSOLUTETIME 19 ,765,968,975,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_ID 19 ,765,976,976,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_SHORT_PRESSED 19,1:true;0:false ,765,977,977,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_SHORT_PRESSED 19,1:true;0:false ,765,978,978,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_SHORT_PRESSED 19,1:true;0:false ,765,979,979,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_SHORT_PRESSED 19,1:true;0:false ,765,980,980,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_1_LONG_PRESSED 19,1:true;0:false ,765,981,981,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_2_LONG_PRESSED 19,1:true;0:false ,765,982,982,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_3_LONG_PRESSED 19,1:true;0:false ,765,983,983,1,0,0,,2132,6132,ff,LAST_RKE_HISTO_BTN_4_LONG_PRESSED 19,1:true;0:false ,765,16,31,.01,0,2,s,2133,6133,ff,LONG_PRESS_TM_CF ,765,16,31,1,0,0,,2134,6134,ff,RKE_CID1_COUNTER_S ,765,32,47,1,0,0,,2134,6134,ff,RKE_CID2_COUNTER_S ,765,48,63,1,0,0,,2134,6134,ff,RKE_CID3_COUNTER_S ,765,64,79,1,0,0,,2134,6134,ff,RKE_CID4_COUNTER_S ,765,16,23,10,0,0,ms,2135,6135,ff,CAN_BCM_CS_EMISSION_TM_TP ,765,24,31,10,0,0,ms,2135,6135,ff,CRYPTO_RESPONSE_TM_TP ,765,32,39,10,0,0,ms,2135,6135,ff,TCU_EMISSION_CS_TM_TP ,765,18,18,1,0,0,,2136,6136,ff,CS_ERROR_RESPONSE_TCU,1:true;0:false ,765,19,19,1,0,0,,2136,6136,ff,BCM_CS_ARMED_S,1:true;0:false ,765,23,23,1,0,0,,2136,6136,ff,CAR_SHARING_AUTHORIZED,1:true;0:false ,765,24,24,1,0,0,,2136,6136,ff,CAN_TCU_CS_ACTIVE,1:true;0:false ,765,25,25,1,0,0,,2136,6136,ff,CAN_TCU_CS_AUTHORIZED,1:true;0:false ,765,16,16,1,0,0,,2137,6137,ff,EMM_CF,1:true;0:false ,765,16,16,1,0,0,,2138,6138,ff,ELECTRICAL_VEH_CF,1:true;0:false ,765,17,17,1,0,0,,2138,6138,ff,FRONT_DEFROST_CF,1:true;0:false ,765,18,18,1,0,0,,2138,6138,ff,OPENABLE_ROOF_CF,1:true;0:false ,765,19,19,1,0,0,,2138,6138,ff,CLIMATE_CONTROL_UNIT_CF,1:true;0:false ,765,16,16,1,0,0,,2139,6139,ff,PERIMETRIC_ALARM_CF,1:true;0:false ,765,17,17,1,0,0,,2139,6139,ff,SEPARATED_TAILGATE_CF,1:true;0:false ,765,18,18,1,0,0,,2139,6139,ff,UNDERHOOD_CF,1:true;0:false ,765,19,19,1,0,0,,2139,6139,ff,BIPBIP_LOCK_CF,1:true;0:false ,765,20,20,1,0,0,,2139,6139,ff,PANIC_BUTTON_CF,1:true;0:false ,765,16,31,10,0,0,ms,213A,613A,ff,HORN_DEACTIVATION_SEQUENCE_TM_TP ,765,32,47,10,0,0,ms,213A,613A,ff,ALARM_FEEDBACK_ACTIVATION_TM_TP ,765,48,63,10,0,0,ms,213A,613A,ff,BREAKING_IN_DETECTION_TM_TP ,765,64,79,10,0,0,ms,213A,613A,ff,HORN_ACTIVATION_SEQUENCE_TM_TP ,765,80,95,10,0,0,ms,213A,613A,ff,HORN_ACTIVATION_TM_TP ,765,96,111,10,0,0,ms,213A,613A,ff,HORN_DEACTIVATION_TM_TP ,765,112,119,1,0,0,,213A,613A,ff,MAX_BREAKING_IN_NUMBER_TP ,765,120,135,10,0,0,ms,213A,613A,ff,BIPBIP_LOCK_TM_TP ,765,136,151,10,0,0,ms,213A,613A,ff,BIPBIP_UNLOCK_TM_TP ,765,16,23,1,0,0,,213B,613B,ff,LAST_VERLOG_STATUS,0:VERLOG_OFF;1:BAD_ECM_CHALLENGE;2:CHALLENGE_ANSWERED_BY_ECU ,765,24,31,1,0,0,,213B,613B,ff,ECM_IS_BLANK,0:SP_UNKNOWN;1:SP_IS_BLANK;2:SP_NOT_BLANK ,765,32,32,1,0,0,,213B,613B,ff,ECM_VERLOG_PROTECTION_S,1:true;0:false ,765,33,33,1,0,0,,213B,613B,ff,ECM_RES_VERLOG_PROTECTION_S,1:true;0:false ,765,40,47,1,0,0,,213B,613B,ff,LAST_RES_VERLOG_STATUS,0:RES_VERLOG_OFF;1:RES_BAD_ECM_CHALLENGE;2:RES_CHALLENGE_ANSWERED_BY_ECU ,765,16,16,1,0,0,,213C,613C,ff,CLUTCHEND_ALWAYS_SEEN_TFAIL_S,1:true;0:false ,765,24,24,1,0,0,,213C,613C,ff,NEUTRAL_CONTACT_FAILURE_S,1:true;0:false ,765,32,39,1,0,0,,213C,613C,ff,DISPLAY_REQUEST_CS ,765,40,55,1,0,0,,213C,613C,ff,CUSTOMER_ACTION_CNT ,765,56,56,1,0,0,,213C,613C,ff,I_ECO_MODE,1:true;0:false ,765,16,23,1,0,0,,213D,613D,ff,CUST_ACTION_MAX_TP ,765,56,63,10,0,0,ms,213D,613D,ff,SKID_REEMISSION_REQUEST_TM_TP ,765,64,71,1,0,0,km/h,213D,613D,ff,VHL_SPEED_THRESH_PARK_POS_TP ,765,72,103,1,0,0,,213D,613D,4ff,LONG_DISPLAY_REQ_TM_TP ,765,104,135,1,0,0,,213D,613D,4ff,SHORT_DISPLAY_REQ_TM_TP ,765,136,151,.01,0,2,s,213D,613D,ff,ECOMODE_OVERDELAY_TM_TP ,765,152,159,.01,0,2,s,213D,613D,ff,KEY_REMINDER_POLLING_PERIOD_TM_TP ,765,160,175,1.66666666666667E-04,0,3,min,213D,613D,ff,KEY_REMINDER_POLLING_TIMEOUT_TM_TP ,765,16,16,1,0,0,,213E,613E,ff,LEARNING_CARIMMO_NOT_FINISHED_S,1:true;0:false ,765,16,16,1,0,0,,213F,613F,ff,MMI_START_CF,1:true;0:false ,765,17,17,1,0,0,,213F,613F,ff,WITH_PARK_POSITION_CF,1:true;0:false ,765,18,18,1,0,0,,213F,613F,ff,LONG_TEMPO_DISPLAY_CF,1:true;0:false ,765,19,19,1,0,0,,213F,613F,ff,KEY_REMINDER_WARNING_CF,1:true;0:false ,765,20,20,1,0,0,,213F,613F,ff,ECOMODE_PREVIOUS_RESTART_CF,1:true;0:false ,765,16,23,1,0,0,,2141,6141,ff,IMMO_COUNTER_REMAINING_IGNITION_BEFORE_APV_CODE_ERASING ,765,24,24,1,0,0,,2141,6141,ff,IMMO_FLAG_APV_CODE_RECOGNIZED,1:true;0:false ,765,25,25,1,0,0,,2141,6141,ff,IMMO_FLAG_BCM_AFTER_SALES_MODE_LAUNCHED,1:true;0:false ,765,26,26,1,0,0,,2141,6141,ff,IMMO_FLAG_CID_AFTER_SALES_MODE_LAUNCHED,1:true;0:false ,765,27,27,1,0,0,,2141,6141,ff,IMMO_FLAG_CUSTOMER_MODE_LAUNCHED,1:true;0:false ,765,28,28,1,0,0,,2141,6141,ff,IMMO_FLAG_ECM_AFTER_SALES_MODE_LAUNCHED,1:true;0:false ,765,29,29,1,0,0,,2141,6141,ff,IMMO_FLAG_GENESIS_MODE_LAUNCHED,1:true;0:false ,765,30,30,1,0,0,,2141,6141,ff,IMMO_FLAG_TIME_OUT_AFTER_SALES_MODE_REACHED,1:true;0:false ,765,31,31,1,0,0,,2141,6141,ff,IMMO_FLAG_AUTHORIZATION_TO_PAIR_ECM,1:true;0:false ,765,32,39,1,0,0,,2141,6141,ff,IMMO_STATE_AFTER_SALES_MODE_ROOT_ERROR ,765,40,47,1,0,0,,2141,6141,ff,IMMO_STATE_ECM_AFTER_SALES_MODE_ENTER_FAILED ,765,48,55,1,0,0,,2141,6141,ff,IMMO_STATE_ECM_AFTER_SALES_MODE_EXIT ,765,56,63,1,0,0,,2141,6141,ff,IMMO_STATE_GENESIS_MODE_ROOT_ERROR ,765,16,31,1.66666666666667E-04,0,3,min,2142,6142,ff,IMMO_TIMEOUT_AFTER_SALES_MODE_TM_CF ,765,16,47,1,0,0,,2143,6143,4ff,IMMO_DURATION_AUTHORIZATION_ECM_PAIRING_TM_TP ,765,48,55,1,0,0,,2143,6143,ff,IMMO_NB_IGNITION_AUTO_ERASE_APV_CODE_TP ,765,16,16,1,0,0,,2144,6144,ff,ECU_IS_BLANK_S,1:true;0:false ,765,17,17,1,0,0,,2144,6144,ff,IMMO_FLAG_CODE_APV_AVAILABLE_S,1:true;0:false ,765,24,31,1,0,0,,2144,6144,ff,IMMO_COUNTER_IGNITION_S ,765,32,39,1,0,0,,2144,6144,ff,IMMO_NB_CID_PAIRED_S ,765,40,40,1,0,0,,2144,6144,ff,IMMO_FLAG_CODE_ECM_AVAILABLE_S,1:true;0:false ,765,48,175,1,0,0,,2144,6144,4ff,AfterSalesCode ,765,16,23,1,0,0,,2145,6145,ff,PRECOND_BY_KEY_CF,0:PC_BY_KEY_NOT_EQUIPED;1:PC_BY_KEY_1;2:PC_BY_KEY_2;3:PC_BY_KEY_3;4:PC_BY_KEY_4 ,765,24,55,1,0,0,,2145,6145,4ff,TECHNICAL_TIMER_TM_CF ,765,16,47,1,0,0,,2146,6146,4ff,MILEAGE_OF_ECU_RESET_S 0 ,765,48,79,1,0,0,,2146,6146,4ff,MILEAGE_OF_ECU_RESET_S 1 ,765,80,111,1,0,0,,2146,6146,4ff,MILEAGE_OF_ECU_RESET_S 2 ,765,112,143,1,0,0,,2146,6146,4ff,MILEAGE_OF_ECU_RESET_S 3 ,765,144,175,1,0,0,,2146,6146,4ff,MILEAGE_OF_ECU_RESET_S 4 ,765,16,23,1,0,0,,2147,6147,ff,CS_ANTISCANNING_MAX_TP ,765,24,39,.01,0,2,s,2147,6147,ff,CS_ANTISCANNING_TM_TP ,765,16,16,1,0,0,,2148,6148,ff,INTERMITTENT_RING_CF,1:true;0:false ,765,17,17,1,0,0,,2148,6148,ff,WIPING_BY_EMM_CF,1:true;0:false ,765,16,31,10,0,0,ms,2149,6149,ff,DROP_WIPE_TM_TP ,765,32,47,10,0,0,ms,2149,6149,ff,FIXED_INT_TM_TP ,765,48,63,10,0,0,ms,2149,6149,ff,FR_WASH_PROLONGATION_MAX_TM_TP ,765,64,71,1,0,0,,2149,6149,ff,FR_WIPER_PROLONGATION_WIPES_TP ,765,72,87,.01,0,2,V,2149,6149,ff,FR_WP_BATT_TH_MAX_TP ,765,88,103,.01,0,2,V,2149,6149,ff,FR_WP_BATT_TH_MIN_TP ,765,104,111,10,0,0,ms,2149,6149,ff,PAST_TIME_UPDATE_TM_TP ,765,112,127,10,0,0,ms,2149,6149,ff,SWITCHOFF_INT_RELAY_TM_TP ,765,128,135,10,0,0,ms,2149,6149,ff,WASH_WIPE_DELAY_TM_TP ,765,136,143,10,0,0,ms,2149,6149,ff,WASHER_CONFIRMATION_TM_TP ,765,144,159,.01,0,2,s,2149,6149,ff,STANDARD_INT_TM_TP 0 ,765,160,175,.01,0,2,s,2149,6149,ff,STANDARD_INT_TM_TP 1 ,765,176,191,.01,0,2,s,2149,6149,ff,STANDARD_INT_TM_TP 2 ,765,192,207,.01,0,2,s,2149,6149,ff,STANDARD_INT_TM_TP 3 ,765,208,223,.01,0,2,V,2149,6149,ff,CSW_INPUT_VOLTAGE_1_TP ,765,224,239,.01,0,2,V,2149,6149,ff,CSW_INPUT_VOLTAGE_2_TP ,765,240,255,.01,0,2,V,2149,6149,ff,CSW_INPUT_VOLTAGE_3_TP ,765,256,271,.01,0,2,V,2149,6149,ff,CSW_INPUT_VOLTAGE_4_TP ,765,16,16,1,0,0,,214A,614A,ff,I_FR_WASHER_SW,1:true;0:false ,765,17,17,1,0,0,,214A,614A,ff,I_FR_AUTOSTOP,1:true;0:false ,765,18,18,1,0,0,,214A,614A,ff,I_RR_WIPER_SW,1:true;0:false ,765,19,19,1,0,0,,214A,614A,ff,I_RR_AUTOSTOP_SW,1:true;0:false ,765,20,20,1,0,0,,214A,614A,ff,I_RR_WASHER_SW,1:true;0:false ,765,24,39,1,0,0,,214A,614A,ff,FR_INT_WIPER ,765,40,40,1,0,0,,214A,614A,ff,O_FR_LS_WIPER,1:true;0:false ,765,41,41,1,0,0,,214A,614A,ff,O_REAR_WIPER,1:true;0:false ,765,16,16,1,0,0,,214B,614B,ff,I_BREAKEVEN_POINT_SW,1:true;0:false ,765,17,17,1,0,0,,214B,614B,ff,I_REAR_GEAR_SW,1:true;0:false ,765,24,31,1,0,0,,214B,614B,ff,NEUTRAL_CONTACT_STATUS,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,32,39,1,0,0,,214B,614B,ff,REAR_GEAR_STATUS,0:REAR_GEAR_RESERVED;1:REAR_GEAR_NOT_ENGAGED;2:REAR_GEAR_ENGAGED;3:REAR_GEAR_UNAVAILABLE ,765,40,40,1,0,0,,214B,614B,ff,BREAKEVEN_ALW_SEEN_FAILURE_S,1:true;0:false ,765,41,41,1,0,0,,214B,614B,ff,BREAKEVEN_NEVER_SEEN_FAILURE_S,1:true;0:false ,765,42,42,1,0,0,,214B,614B,ff,REAR_GEAR_ALW_SEEN_FAILURE_S,1:true;0:false ,765,16,16,1,0,0,,214C,614C,ff,BREAKEVEN_POINT_CF,1:true;0:false ,765,17,17,1,0,0,,214C,614C,ff,BREAKEVEN_POINT_ALWAYS_PRESENT_DETECTION_CF,1:true;0:false ,765,18,18,1,0,0,,214C,614C,ff,BREAKEVEN_POINT_NEVER_PRESENT_DETECTION_CF,1:true;0:false ,765,19,19,1,0,0,,214C,614C,ff,REAR_GEAR_ALWAYS_PRESENT_DETECTION_CF,1:true;0:false ,765,16,23,1,0,0,km,214D,614D,ff,BREAKEVEN_POINT_ALWAYS_PRESENT_DIST_TP ,765,24,31,1,0,0,,214D,614D,ff,BREAKEVEN_POINT_MISSION_NB_TP ,765,32,39,1,0,0,km,214D,614D,ff,BREAKEVEN_POINT_NEVER_PRESENT_DIST_TP ,765,40,47,1,0,0,km,214D,614D,ff,BREAKEVEN_POINT_NO_FAIL_DIST_TP ,765,48,63,.01,0,2,s,214D,614D,ff,BREAKEVEN_POINT_NO_FAIL_TM_TP ,765,64,71,1,0,0,km,214D,614D,ff,REAR_GEAR_ALWAYS_PRESENT_DIST_TP ,765,72,79,1,0,0,km,214D,614D,ff,REAR_GEAR_NO_FAIL_DIST_TP ,765,16,23,1,0,0,,214E,614E,ff,HwLevel ,765,16,23,1,0,0,,214F,614F,ff,BCM_CS_USER_IDENT,0:CS_UI_UNAVAILABLE;1:CS_UI_EXTERNAL_READER;2:CS_UI_CALL_CENTER;3:CS_UI_NOT_USED ,765,24,31,1,0,0,,214F,614F,ff,LAST_TCU_REQUEST,2:TCU_UNLOCK;0:TCU_NO_REQUEST;1:TCU_LOCK;3:TCU_REQUEST_NOT_USED ,765,32,39,1,0,0,,214F,614F,ff,TCU_REQUEST,2:TCU_UNLOCK;0:TCU_NO_REQUEST;1:TCU_LOCK;3:TCU_REQUEST_NOT_USED ,765,40,40,1,0,0,,214F,614F,ff,CS_ANTISCANNING_IS_ACTIVATED,1:true;0:false ,765,41,41,1,0,0,,214F,614F,ff,TCU_IS_AUTHENTICATED,1:true;0:false ,765,42,42,1,0,0,,214F,614F,ff,TCU_IS_LEARNT_S,1:true;0:false ,765,16,16,1,0,0,,2151,6151,ff,LAST_AUTHENTICATION_SUCCEED,1:true;0:false ,765,24,31,1,0,0,,2151,6151,ff,LAST_CID_USED ,765,32,39,1,0,0,,2151,6151,ff,NB_AUTHENT_FAILED ,765,40,47,1,0,0,,2151,6151,ff,NB_AUTHENT_SUCCEED ,765,48,55,1,0,0,,2151,6151,ff,NB_IDENT_FAILED ,765,56,63,1,0,0,,2151,6151,ff,NB_IDENT_SUCCEED ,765,64,64,1,0,0,,2151,6151,ff,IMMO_FLAG_USER_AUTHENT_ALLOWED,1:true;0:false ,765,16,47,1,0,0,,2152,6152,4ff,PARKING_TIME_S ,765,48,48,1,0,0,,2152,6152,ff,SOC_INIT_ACTIVATED_S,1:true;0:false ,765,56,71,1,0,0,,2152,6152,ff,V_BATT_NOLOAD_MEM ,765,16,23,10,0,0,ms,2153,6153,ff,AUTHENT_TIMEOUT_TM_TP ,765,16,16,1,0,0,,2154,6154,ff,SOC_INIT_CF,1:true;0:false ,765,16,31,10,0,0,ms,2155,6155,ff,SOC_INIT_DURATION_TM_TP ,765,32,47,1,0,0,km,2155,6155,ff,SOC_INIT_MAX_DISTANCE_ACTIVATED_TP ,765,48,55,1,0,0,,2155,6155,ff,TECH_WAKEUP_FOR_CHG_DETECT_TP ,765,56,87,1,0,0,,2155,6155,4ff,TIME_MIN_FOR_SOC_VALID_TM_TP ,765,88,103,.01,0,2,V,2155,6155,ff,V_BATT_WELL_CHARGED_TP ,765,104,111,10,0,0,ms,2155,6155,ff,VBATT_STAB_TM_TP ,765,120,135,.01,0,2,s,2155,6155,ff,CUSTOMER_PRESENCE_CONFIRMED_SOC_TM_TP ,765,136,151,.01,0,2,V,2155,6155,ff,V_BATT_NOLOAD_INIT_TP ,765,152,167,.01,0,2,V,2155,6155,ff,V_BATT_NOLOAD_TEMP_MIN_TP ,765,168,175,10,0,0,ms,2155,6155,ff,VSYS_STAB_TM_TP ,765,16,16,1,0,0,,2156,6156,ff,CID_AUTHENTICATED,1:true;0:false ,765,17,17,1,0,0,,2156,6156,ff,CID_IDENTIFIED,1:true;0:false ,765,18,18,1,0,0,,2156,6156,ff,CUSTOMER_AUTHENT_SESSION_IN_PROGRESS,1:true;0:false ,765,19,19,1,0,0,,2156,6156,ff,DIAG_TRANSP_IDE_OK,1:true;0:false ,765,20,20,1,0,0,,2156,6156,ff,DIAG_TRANSP_RESPONSE_OK,1:true;0:false ,765,21,21,1,0,0,,2156,6156,ff,DIAG_TRANSP_RESPONSE_RECEIVED,1:true;0:false ,765,22,22,1,0,0,,2156,6156,ff,SINGLE_IDENT_SESSION_IN_PROGRESS,1:true;0:false ,765,23,23,1,0,0,,2156,6156,ff,TEST_CID_IN_PROGRESS,1:true;0:false ,765,24,55,1,0,0,,2156,6156,4ff,DIAG_TRANSP_IDE_RECEIVED ,765,56,71,1,0,0,,2156,6156,ff,PERM_AUTHENT_COUNTER ,765,72,87,1,0,0,,2156,6156,ff,PERM_AUTHENT_DELAY_COUNTER ,765,88,103,1,0,0,,2156,6156,ff,PERM_AUTHENT_FAILED_COUNTER ,765,104,111,1,0,0,,2156,6156,ff,LAST_CID_AUTHENT_NUMBER ,765,112,112,1,0,0,,2156,6156,ff,IMMO_FLAG_SR_ANALYZE_CID_BLANK,1:true;0:false ,765,120,120,1,0,0,,2156,6156,ff,IMMO_FLAG_SR_ANALYZE_CID_CURRENT_STATUS,1:true;0:false ,765,128,128,1,0,0,,2156,6156,ff,IMMO_FLAG_SR_ANALYZE_CID_IN_TBS,1:true;0:false ,765,136,136,1,0,0,,2156,6156,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_COIL,1:true;0:false ,765,144,144,1,0,0,,2156,6156,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_IDEnotreceived,1:true;0:false ,765,152,152,1,0,0,,2156,6156,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_NO_Challenge,1:true;0:false ,765,160,160,1,0,0,,2156,6156,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_TBS,1:true;0:false ,765,16,31,.01,0,2,s,2157,6157,ff,IMMO_TIME_OUT_LEARNING_KEY_TM_CF ,765,32,32,1,0,0,,2157,6157,ff,LOCK_CRYPTO_PAGES_CF,1:true;0:false ,765,16,16,1,0,0,,2158,6158,ff,WRITING_PAIRING_CONTEXT_TP,1:true;0:false ,765,24,31,10,0,0,ms,2158,6158,ff,WRITING_TIMEOUT_TM_TP ,765,32,47,.01,0,2,s,2158,6158,ff,CUSTOMER_AUTHENT_TIMEOUT_TM_TP ,765,48,63,10,0,0,ms,2158,6158,ff,LOCKING_TIMEOUT_TM_TP ,765,64,79,.01,0,2,s,2158,6158,ff,TRANSP_TIMEOUT_AUTH_TM_TP ,765,80,95,10,0,0,ms,2158,6158,ff,TRANSP_TIMEOUT_RESPONSE_TM_TP ,765,96,103,1,0,0,,2158,6158,ff,CKC_PHIOC_TP ,765,16,23,1,0,0,,2159,6159,ff,GET_LAST_CONFIGURATION_ERROR_S,0:ATCIDCNF_OPERATION_SUCCESSFUL;1:ATCIDCNF_ERROR_TRANSPORT_AUTH;2:ATCIDCNF_ERROR_ALREADY_KEY_LEARNING;3:ATCIDCNF_ERROR_LOCKED_KEY;4:ATCIDCNF_ERROR_SET_BANK;5:ATCIDCNF_ERROR_WRITE_RSK;6:ATCIDCNF_ERROR_WRITE_ISK;7:ATCIDCNF_ERROR_AUTH_NEW_ISK;8:ATCIDCNF_ERROR_EEPROM_FAILURE;9:ATCIDCNF_ERROR_UNKNOWN_BLANK_CID;10:ATCIDCNF_ERROR_TIMEOUT_CID_CONF;11:ATCIDCNF_TRP_DRIVER_NOT_AVAILABLE;12:ATCIDCNF_ERROR_INVALID_CID_NUMBER;13:ATCIDCNF_ERROR_INVALID_OPERATION;14:ATCIDCNF_ERROR_RESYNCH ,765,24,39,1,0,0,,2159,6159,ff,CUSTOMER_AUTHENT_COUNTER_DELAY_S ,765,40,55,1,0,0,,2159,6159,ff,CUSTOMER_AUTHENT_COUNTER_FAILED_S ,765,56,71,1,0,0,,2159,6159,ff,CUSTOMER_AUTHENT_COUNTER_S ,765,72,103,1,0,0,,2159,6159,4ff,IDE_S 0 ,765,104,135,1,0,0,,2159,6159,4ff,IDE_S 1 ,765,136,167,1,0,0,,2159,6159,4ff,IDE_S 2 ,765,168,199,1,0,0,,2159,6159,4ff,IDE_S 3 ,765,16,16,1,0,0,,215A,615A,ff,R_HAZARD_SIGNAL_CRASH_S,1:true;0:false ,765,17,17,1,0,0,,215A,615A,ff,R_FLASH_RIGHT_SW,1:true;0:false ,765,18,18,1,0,0,,215A,615A,ff,R_FLASH_LEFT_SW,1:true;0:false ,765,19,19,1,0,0,,215A,615A,ff,I_HAZARD_SW,1:true;0:false ,765,20,20,1,0,0,,215A,615A,ff,WARNING_LED_ON,1:true;0:false ,765,21,21,1,0,0,,215A,615A,ff,DI_LAMP_LEFT_FR_ON,1:true;0:false ,765,22,22,1,0,0,,215A,615A,ff,DI_LAMP_RIGHT_FR_ON,1:true;0:false ,765,16,16,1,0,0,,215B,615B,ff,HAZARD_WITH_BRAKE_CF,1:true;0:false ,765,17,17,1,0,0,,215B,615B,ff,HAZARD_WITH_CRASH_CF,1:true;0:false ,765,18,18,1,0,0,,215B,615B,ff,OVERLOAD_BY_SMART_CF,1:true;0:false ,765,19,19,1,0,0,,215B,615B,ff,T_PULSE_CF,1:true;0:false ,765,20,20,1,0,0,,215B,615B,ff,PC_SIGNALISATION_CF,1:true;0:false ,765,16,31,.01,0,2,s,215C,615C,ff,ALARM_WARNING_HOLD_TM_TP ,765,32,39,10,0,0,ms,215C,615C,ff,FLASHING_ON_TIME_TP ,765,40,47,10,0,0,ms,215C,615C,ff,PULSE_TURN_SW_TM_TP ,765,48,63,.01,0,2,s,215C,615C,ff,PRECONDITIONING_FLASH_TM_TP ,765,16,31,10,0,0,ms,215D,615D,ff,REAR_AUTO_STOP_DISREGARD_TM_TP ,765,32,47,10,0,0,ms,215D,615D,ff,REAR_DROP_WIPE_TM_TP ,765,48,63,10,0,0,ms,215D,615D,ff,REAR_WIPER_CHECK_FR_WP_POSITION_TM_TP ,765,64,79,10,0,0,ms,215D,615D,ff,REAR_WIPER_COOL_OFF_TM_TP ,765,80,95,10,0,0,ms,215D,615D,ff,REAR_WIPER_INT_PERIOD_TP ,765,96,111,1,0,0,km/h,215D,615D,ff,REAR_WIPER_OVERSPEED_TH_TP ,765,112,119,1,0,0,,215D,615D,ff,REAR_WIPER_PROLONGATION_WIPES_TP ,765,120,135,10,0,0,ms,215D,615D,ff,REAR_WIPER_SUPPLY_TM_TP ,765,136,151,10,0,0,ms,215D,615D,ff,REVERSE_DELAY_TIME_TP ,765,152,167,10,0,0,ms,215D,615D,ff,WASHER_HOLD_TIME_TM_TP ,765,168,183,10,0,0,ms,215D,615D,ff,REAR_WIPER_CYCLE_TM_TP ,765,16,16,1,0,0,,215E,615E,ff,LINKED_WITH_REVERSE_CF,1:true;0:false ,765,17,17,1,0,0,,215E,615E,ff,REAR_WIPER_AF_CF,1:true;0:false ,765,18,18,1,0,0,,215E,615E,ff,REAR_WIPER_CF,1:true;0:false ,765,24,39,1,0,0,km/h,215E,615E,ff,REAR_WIPER_INT_SPEED_TH_CF 0 ,765,40,55,1,0,0,km/h,215E,615E,ff,REAR_WIPER_INT_SPEED_TH_CF 1 ,765,56,71,1,0,0,km/h,215E,615E,ff,REAR_WIPER_INT_SPEED_TH_CF 2 ,765,72,87,10,0,0,ms,215E,615E,ff,REAR_WIPER_INT_VALUES_TM_CF 0 ,765,88,103,10,0,0,ms,215E,615E,ff,REAR_WIPER_INT_VALUES_TM_CF 1 ,765,104,119,10,0,0,ms,215E,615E,ff,REAR_WIPER_INT_VALUES_TM_CF 2 ,765,120,135,10,0,0,ms,215E,615E,ff,REAR_WIPER_INT_VALUES_TM_CF 3 ,765,136,151,10,0,0,ms,215E,615E,ff,REAR_WIPER_PROTECTION_TM_CF ,765,16,31,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 0 ,765,32,47,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 1 ,765,48,63,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 2 ,765,64,79,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 3 ,765,80,95,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 4 ,765,96,111,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 5 ,765,112,127,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 6 ,765,128,143,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 7 ,765,144,159,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 8 ,765,160,175,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 9 ,765,176,191,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 10 ,765,192,207,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 11 ,765,208,223,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 12 ,765,224,239,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 13 ,765,240,255,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 14 ,765,256,271,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 0 ,765,272,287,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 1 ,765,288,303,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 2 ,765,304,319,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 3 ,765,320,335,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 4 ,765,336,351,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 5 ,765,352,367,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 6 ,765,368,383,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 7 ,765,384,399,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 8 ,765,400,415,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 9 ,765,416,431,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 10 ,765,432,447,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 11 ,765,448,463,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 12 ,765,464,479,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 13 ,765,480,495,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 14 ,765,496,511,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 0 ,765,512,527,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 1 ,765,528,543,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 2 ,765,544,559,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 3 ,765,560,575,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 4 ,765,576,591,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 5 ,765,592,607,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 6 ,765,608,623,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 7 ,765,624,639,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 8 ,765,640,655,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 9 ,765,656,671,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 10 ,765,672,687,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 11 ,765,688,703,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 12 ,765,704,719,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 13 ,765,720,735,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 14 ,765,736,751,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 15 ,765,752,767,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 16 ,765,768,783,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 17 ,765,784,799,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 18 ,765,800,815,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 15 ,765,816,831,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 16 ,765,832,847,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 17 ,765,848,863,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 18 ,765,864,879,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 15 ,765,880,895,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 16 ,765,896,911,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 17 ,765,912,927,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 18 ,765,928,943,1,0,0,,215F,615F,ff,X_TPASS_DETECTED_TP 19 ,765,944,959,1,0,0,,215F,615F,ff,X_TFAIL_DETECTED_TP 19 ,765,960,975,1,0,0,,215F,615F,ff,X_TCONF_REVERS_TP 19 ,765,16,23,1,0,0,,2161,6161,ff,RESYNC_COUNTER_1 ,765,24,31,1,0,0,,2161,6161,ff,RESYNC_COUNTER_2 ,765,32,39,1,0,0,,2161,6161,ff,RESYNC_COUNTER_3 ,765,40,47,1,0,0,,2161,6161,ff,RESYNC_COUNTER_4 ,765,48,55,1,0,0,,2161,6161,ff,FAILED_RESYNC_COUNTER_1 ,765,56,63,1,0,0,,2161,6161,ff,FAILED_RESYNC_COUNTER_2 ,765,64,71,1,0,0,,2161,6161,ff,FAILED_RESYNC_COUNTER_3 ,765,72,79,1,0,0,,2161,6161,ff,FAILED_RESYNC_COUNTER_4 ,765,16,16,1,0,0,,2162,6162,ff,OH_Relay1Command ,765,17,17,1,0,0,,2162,6162,ff,OH_Relay2Command ,765,18,18,1,0,0,,2162,6162,ff,OH_Relay3Command ,765,19,19,1,0,0,,2162,6162,ff,ILW_NoBlowerFan ,765,16,16,1,0,0,,2163,6163,ff,CL_PTCArchi ,765,17,17,1,0,0,,2163,6163,ff,CL_AlternatorLoadArchi ,765,18,18,1,0,0,,2163,6163,ff,CL_PTCType ,765,16,16,1,0,0,,2164,6164,ff,RKE_CID_NEED_RESYNC_ID_1_S,1:true;0:false ,765,17,17,1,0,0,,2164,6164,ff,RKE_CID_NEED_RESYNC_ID_2_S,1:true;0:false ,765,18,18,1,0,0,,2164,6164,ff,RKE_CID_NEED_RESYNC_ID_3_S,1:true;0:false ,765,19,19,1,0,0,,2164,6164,ff,RKE_CID_NEED_RESYNC_ID_4_S,1:true;0:false ,765,24,55,1,0,0,,2164,6164,4ff,LAST_SYNC_VALUE_1_S ,765,56,87,1,0,0,,2164,6164,4ff,LAST_SYNC_VALUE_2_S ,765,88,119,1,0,0,,2164,6164,4ff,LAST_SYNC_VALUE_3_S ,765,120,151,1,0,0,,2164,6164,4ff,LAST_SYNC_VALUE_4_S ,765,152,152,1,0,0,,2164,6164,ff,KEY_1_SYNC_S,1:true;0:false ,765,153,153,1,0,0,,2164,6164,ff,KEY_2_SYNC_S,1:true;0:false ,765,154,154,1,0,0,,2164,6164,ff,KEY_4_SYNC_S,1:true;0:false ,765,155,155,1,0,0,,2164,6164,ff,KEY_3_SYNC_S,1:true;0:false ,765,160,191,1,0,0,,2164,6164,4ff,LAST_RESYNC_READ_1_S ,765,192,223,1,0,0,,2164,6164,4ff,LAST_RESYNC_READ_2_S ,765,224,255,1,0,0,,2164,6164,4ff,LAST_RESYNC_READ_3_S ,765,256,287,1,0,0,,2164,6164,4ff,LAST_RESYNC_READ_4_S ,765,288,319,1,0,0,,2164,6164,4ff,LAST_RESYNC_WRITTEN_1_S ,765,320,351,1,0,0,,2164,6164,4ff,LAST_RESYNC_WRITTEN_2_S ,765,352,383,1,0,0,,2164,6164,4ff,LAST_RESYNC_WRITTEN_3_S ,765,384,415,1,0,0,,2164,6164,4ff,LAST_RESYNC_WRITTEN_4_S ,765,736,751,1,0,0,rpm,2165,6165,ff,C1d_DzoAltLoadStart_In 0 ,765,752,767,1,0,0,rpm,2165,6165,ff,C1d_DzoAltLoadStart_In 1 ,765,768,783,1,0,0,rpm,2165,6165,ff,C1d_DzoAltLoadStart_In 2 ,765,784,799,1,0,0,rpm,2165,6165,ff,C1d_DzoAltLoadStart_In 3 ,765,800,815,1,0,0,rpm,2165,6165,ff,C1d_DzoAltLoadStart_In 4 ,765,816,831,1,0,0,rpm,2165,6165,ff,C1d_DzoAltLoadStart_In 5 ,765,832,847,1,0,0,rpm,2165,6165,ff,C1d_DzoAltLoadStart_In 6 ,765,848,863,1,0,0,rpm,2165,6165,ff,C1d_DzoAltLoadStart_In 7 ,765,864,879,1,0,0,rpm,2165,6165,ff,C1d_DzoAltLoadStart_In 8 ,765,880,895,1,0,0,rpm,2165,6165,ff,C1d_DzoAltLoadStart_In 9 ,765,16,31,1,0,0,rpm,2166,6166,ff,C1d_DzoAltLoadEnd_In 0 ,765,32,47,1,0,0,rpm,2166,6166,ff,C1d_DzoAltLoadEnd_In 1 ,765,48,63,1,0,0,rpm,2166,6166,ff,C1d_DzoAltLoadEnd_In 2 ,765,64,79,1,0,0,rpm,2166,6166,ff,C1d_DzoAltLoadEnd_In 3 ,765,80,95,1,0,0,rpm,2166,6166,ff,C1d_DzoAltLoadEnd_In 4 ,765,96,111,1,0,0,rpm,2166,6166,ff,C1d_DzoAltLoadEnd_In 5 ,765,112,127,1,0,0,rpm,2166,6166,ff,C1d_DzoAltLoadEnd_In 6 ,765,128,143,1,0,0,rpm,2166,6166,ff,C1d_DzoAltLoadEnd_In 7 ,765,144,159,1,0,0,rpm,2166,6166,ff,C1d_DzoAltLoadEnd_In 8 ,765,160,175,1,0,0,rpm,2166,6166,ff,C1d_DzoAltLoadEnd_In 9 ,765,176,191,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadEnd_Out 0 ,765,192,207,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadEnd_Out 1 ,765,208,223,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadEnd_Out 2 ,765,224,239,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadEnd_Out 3 ,765,240,255,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadEnd_Out 4 ,765,256,271,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadEnd_Out 5 ,765,272,287,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadEnd_Out 6 ,765,288,303,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadEnd_Out 7 ,765,304,319,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadEnd_Out 8 ,765,320,335,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadEnd_Out 9 ,765,336,351,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadStart_Out 0 ,765,352,367,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadStart_Out 1 ,765,368,383,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadStart_Out 2 ,765,384,399,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadStart_Out 3 ,765,400,415,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadStart_Out 4 ,765,416,431,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadStart_Out 5 ,765,432,447,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadStart_Out 6 ,765,448,463,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadStart_Out 7 ,765,464,479,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadStart_Out 8 ,765,480,495,.5,200,1,%,2166,6166,ff,C1d_DzoAltLoadStart_Out 9 ,765,528,535,.5,0,1,%,2166,6166,ff,KH_AlternatorLoadFilter_DV ,765,536,543,.01,0,2,s,2166,6166,ff,KH_AlternatorLoadFilter_Ts ,765,544,551,.5,0,1,%,2166,6166,ff,KH_AlternatorLoadSetting ,765,552,559,.05,0,2,,2166,6166,ff,KH_AlternatorPulleyRatio ,765,560,575,1,0,0,%,2166,6166,ff,KH_AlternatorSpeed_DV ,765,576,591,1,0,0,rpm,2166,6166,ff,KH_AlternatorSpeed_IV ,765,592,607,.5,200,1,%,2166,6166,ff,KH_AltLoadErrorManaged_IV ,765,624,631,1,0,0,,2166,6166,ff,KH_ElectricalPowerCutFreeze_DV ,765,632,632,1,0,0,,2166,6166,ff,KH_EnableBlowerState ,765,633,633,1,0,0,,2166,6166,ff,KH_EnableECMCutOff ,765,634,634,1,0,0,,2166,6166,ff,KH_EnableECMFreezing ,765,640,647,1,40,0,%,2166,6166,ff,KH_EngineCoolantTemp_DV ,765,648,663,.0001,0,3,,2166,6166,ff,KH_EngineCoolantTempFilter_flt ,765,664,671,1,0,0,,2166,6166,ff,KH_EngineStatus_R_DV ,765,672,679,1,40,0,°C,2166,6166,ff,KH_ExternalTemp_DV ,765,680,695,.0001,0,3,,2166,6166,ff,KH_ExtTempFilter_flt ,765,696,703,1,0,0,,2166,6166,ff,KH_HsaNumberPTC ,765,720,727,1,0,0,%,2166,6166,ff,KH_HysCTP1_Offset ,765,728,735,1,0,0,%,2166,6166,ff,KH_HysCTP2_Offset ,765,736,743,1,0,0,%,2166,6166,ff,KH_HysCTP3_Offset ,765,744,751,1,0,0,%,2166,6166,ff,KH_HysCTP4_Offset ,765,752,759,1,0,0,%,2166,6166,ff,KH_HysCTP5_Offset ,765,760,775,.01,0,2,,2166,6166,ff,KH_HysPTCDiscreteL1_SwOFF ,765,776,791,.01,0,2,,2166,6166,ff,KH_HysPTCDiscreteL1_SwON ,765,792,807,.01,0,2,,2166,6166,ff,KH_HysPTCDiscreteL2_SwOFF ,765,808,823,.01,0,2,,2166,6166,ff,KH_HysPTCDiscreteL2_SwON ,765,824,839,.01,0,2,,2166,6166,ff,KH_HysPTCDiscreteL3_SwOFF ,765,840,855,.01,0,2,,2166,6166,ff,KH_HysPTCDiscreteL3_SwON ,765,856,871,.01,0,2,,2166,6166,ff,KH_HysPTCDiscreteL4_SwOFF ,765,872,887,.01,0,2,,2166,6166,ff,KH_HysPTCDiscreteL4_SwON ,765,888,903,.01,0,2,,2166,6166,ff,KH_HysPTCDiscreteL5_SwOFF ,765,904,919,.01,0,2,,2166,6166,ff,KH_HysPTCDiscreteL5_SwON ,765,920,927,1,0,0,,2166,6166,ff,KH_MaxPTCNumber ,765,944,951,1,0,0,,2166,6166,ff,KH_PTCNumberThermalRequest_DV ,765,952,959,.01,0,2,s,2166,6166,ff,KH_PTCRelayActiveMinTime ,765,960,960,1,0,0,,2166,6166,ff,KH_Relay1Level0 ,765,961,961,1,0,0,,2166,6166,ff,KH_Relay1Level1 ,765,962,962,1,0,0,,2166,6166,ff,KH_Relay1Level2 ,765,963,963,1,0,0,,2166,6166,ff,KH_Relay1Level3 ,765,964,964,1,0,0,,2166,6166,ff,KH_Relay1Level4 ,765,965,965,1,0,0,,2166,6166,ff,KH_Relay1Level5 ,765,966,966,1,0,0,,2166,6166,ff,KH_Relay2Level0 ,765,967,967,1,0,0,,2166,6166,ff,KH_Relay2Level1 ,765,968,968,1,0,0,,2166,6166,ff,KH_Relay2Level2 ,765,969,969,1,0,0,,2166,6166,ff,KH_Relay2Level3 ,765,970,970,1,0,0,,2166,6166,ff,KH_Relay2Level4 ,765,971,971,1,0,0,,2166,6166,ff,KH_Relay2Level5 ,765,972,972,1,0,0,,2166,6166,ff,KH_Relay3Level0 ,765,973,973,1,0,0,,2166,6166,ff,KH_Relay3Level1 ,765,974,974,1,0,0,,2166,6166,ff,KH_Relay3Level2 ,765,975,975,1,0,0,,2166,6166,ff,KH_Relay3Level3 ,765,976,976,1,0,0,,2166,6166,ff,KH_Relay3Level4 ,765,977,977,1,0,0,,2166,6166,ff,KH_Relay3Level5 ,765,978,978,1,0,0,,2166,6166,ff,KH_BlowerState_DV ,765,984,991,.1,0,1,V,2166,6166,ff,KH_BatteryLoad_DV ,765,16,23,.01,0,2,s,2167,6167,ff,KH_UndPTCNumberAuthorized_Ts ,765,24,31,.01,0,2,s,2167,6167,ff,KH_WaitForPTCDecrease ,765,32,39,.01,0,2,s,2167,6167,ff,KH_WaitForPTCIncrease ,765,40,47,.01,0,2,s,2167,6167,ff,KH_WaitForPTCSwitching ,765,48,55,.01,0,2,s,2167,6167,ff,PTCPeriodicity ,765,56,63,1,0,0,,2167,6167,ff,T1d_PowerDrived_Index 0 ,765,64,71,1,0,0,,2167,6167,ff,T1d_PowerDrived_Index 1 ,765,72,79,1,0,0,,2167,6167,ff,T1d_PowerDrived_Index 2 ,765,80,87,1,0,0,,2167,6167,ff,T1d_PowerDrived_Index 3 ,765,88,95,1,0,0,,2167,6167,ff,T1d_PowerDrived_Index 4 ,765,96,103,1,0,0,,2167,6167,ff,T1d_PowerDrived_Index 5 ,765,104,111,100,0,0,W,2167,6167,ff,T1d_PowerDrived_Out 0 ,765,112,119,100,0,0,W,2167,6167,ff,T1d_PowerDrived_Out 1 ,765,120,127,100,0,0,W,2167,6167,ff,T1d_PowerDrived_Out 2 ,765,128,135,100,0,0,W,2167,6167,ff,T1d_PowerDrived_Out 3 ,765,136,143,100,0,0,W,2167,6167,ff,T1d_PowerDrived_Out 4 ,765,144,151,100,0,0,W,2167,6167,ff,T1d_PowerDrived_Out 5 ,765,152,159,.01,0,2,s,2167,6167,ff,KH_TsAltLoad ,765,160,175,.01,0,2,,2167,6167,ff,KH_UndIntegralAltLoad_IV ,765,176,183,.01,0,2,,2167,6167,ff,KH_UndIntegralAltLoad_Ts ,765,184,199,.01,0,2,,2167,6167,ff,KH_UndPTCLinearLimit_IV ,765,200,207,.01,0,2,s,2167,6167,ff,KH_UndPTCLinearLimit_Ts ,765,208,215,1,0,0,,2167,6167,ff,KH_UndPTCNumberAuthorized_IV ,765,216,231,.001,0,3,,2167,6167,ff,KH_KAlternatorLoadFilter ,765,232,247,.001,0,3,,2167,6167,ff,KH_KiAltLoadErrorNeg ,765,248,263,.001,0,3,,2167,6167,ff,KH_KiAltLoadErrorPos ,765,264,279,.0001,0,3,,2167,6167,ff,KH_KpAltLoadErrorNeg ,765,280,295,.0001,0,3,,2167,6167,ff,KH_KpAltLoadErrorPos ,765,296,311,.01,0,2,,2167,6167,ff,KH_SatPTCLinearLimit_Lw ,765,312,327,.01,0,2,,2167,6167,ff,KH_SatPTCLinearLimit_Up ,765,328,343,.01,0,2,s,2167,6167,ff,KH_TmaxPTCCutOff ,765,344,359,.01,0,2,s,2167,6167,ff,KH_TmaxPTCFreeze ,765,360,367,.1,0,1,V,2167,6167,ff,KH_HysBattVoltage_SwON ,765,376,383,.1,0,1,V,2167,6167,ff,KH_HysBattVoltage_SwOFF ,765,16,47,1,0,0,,2168,6168,4ff,EVENTS_HISTORY_ABSOLUTETIME ,765,48,55,1,0,0,,2168,6168,ff,SSREH_SAV_AWK_PUSH_BUTN_INDEX_NUMBER ,765,56,87,1,0,0,,2168,6168,4ff,SSREH_SAV_AWK_PUSH_BUTN_ABSOLUTE_TIME 0 ,765,88,119,1,0,0,,2168,6168,4ff,SSREH_SAV_AWK_PUSH_BUTN_DISTANCE_TOTALIZER 0 ,765,120,151,1,0,0,,2168,6168,4ff,SSREH_SAV_AWK_PUSH_BUTN_ABSOLUTE_TIME 1 ,765,152,183,1,0,0,,2168,6168,4ff,SSREH_SAV_AWK_PUSH_BUTN_DISTANCE_TOTALIZER 1 ,765,184,215,1,0,0,,2168,6168,4ff,SSREH_SAV_AWK_PUSH_BUTN_ABSOLUTE_TIME 2 ,765,216,247,1,0,0,,2168,6168,4ff,SSREH_SAV_AWK_PUSH_BUTN_DISTANCE_TOTALIZER 2 ,765,248,279,1,0,0,,2168,6168,4ff,SSREH_SAV_AWK_PUSH_BUTN_ABSOLUTE_TIME 3 ,765,280,311,1,0,0,,2168,6168,4ff,SSREH_SAV_AWK_PUSH_BUTN_DISTANCE_TOTALIZER 3 ,765,312,343,1,0,0,,2168,6168,4ff,SSREH_SAV_AWK_PUSH_BUTN_ABSOLUTE_TIME 4 ,765,344,375,1,0,0,,2168,6168,4ff,SSREH_SAV_AWK_PUSH_BUTN_DISTANCE_TOTALIZER 4 ,765,16,47,1,0,0,,2169,6169,4ff,EVENTS_HISTORY_ABSOLUTETIME ,765,48,55,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_INDEX_NUMBER ,765,56,87,1,0,0,,2169,6169,4ff,SSREH_SAV_FAL_ERRORS_ABSOLUTE_TIME 0 ,765,88,95,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CLUTCH_SW_MAX_TRAVEL 0,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,96,103,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CLUTCH_SW_MIN_TRAVEL 0,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,104,111,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CRANKING_FAILURE_CS 0 ,765,112,143,1,0,0,,2169,6169,4ff,SSREH_SAV_FAL_ERRORS_DISTANCE_TOTALIZER 0 ,765,144,151,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_NEUTRAL_CONTACT_STATUS 0,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,152,159,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_VEHICLESTATE_T4 0,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,160,191,1,0,0,,2169,6169,4ff,SSREH_SAV_FAL_ERRORS_ABSOLUTE_TIME 1 ,765,192,199,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CLUTCH_SW_MAX_TRAVEL 1,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,200,207,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CLUTCH_SW_MIN_TRAVEL 1,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,208,215,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CRANKING_FAILURE_CS 1 ,765,216,247,1,0,0,,2169,6169,4ff,SSREH_SAV_FAL_ERRORS_DISTANCE_TOTALIZER 1 ,765,248,255,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_NEUTRAL_CONTACT_STATUS 1,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,256,263,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_VEHICLESTATE_T4 1,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,264,295,1,0,0,,2169,6169,4ff,SSREH_SAV_FAL_ERRORS_ABSOLUTE_TIME 2 ,765,296,303,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CLUTCH_SW_MAX_TRAVEL 2,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,304,311,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CLUTCH_SW_MIN_TRAVEL 2,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,312,319,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CRANKING_FAILURE_CS 2 ,765,320,351,1,0,0,,2169,6169,4ff,SSREH_SAV_FAL_ERRORS_DISTANCE_TOTALIZER 2 ,765,352,359,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_NEUTRAL_CONTACT_STATUS 2,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,360,367,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_VEHICLESTATE_T4 2,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,368,399,1,0,0,,2169,6169,4ff,SSREH_SAV_FAL_ERRORS_ABSOLUTE_TIME 3 ,765,400,407,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CLUTCH_SW_MAX_TRAVEL 3,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,408,415,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CLUTCH_SW_MIN_TRAVEL 3,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,416,423,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CRANKING_FAILURE_CS 3 ,765,424,455,1,0,0,,2169,6169,4ff,SSREH_SAV_FAL_ERRORS_DISTANCE_TOTALIZER 3 ,765,456,463,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_NEUTRAL_CONTACT_STATUS 3,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,464,471,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_VEHICLESTATE_T4 3,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,472,503,1,0,0,,2169,6169,4ff,SSREH_SAV_FAL_ERRORS_ABSOLUTE_TIME 4 ,765,504,511,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CLUTCH_SW_MAX_TRAVEL 4,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,512,519,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CLUTCH_SW_MIN_TRAVEL 4,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,520,527,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_CRANKING_FAILURE_CS 4 ,765,528,559,1,0,0,,2169,6169,4ff,SSREH_SAV_FAL_ERRORS_DISTANCE_TOTALIZER 4 ,765,560,567,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_NEUTRAL_CONTACT_STATUS 4,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,568,575,1,0,0,,2169,6169,ff,SSREH_SAV_FAL_ERRORS_VEHICLESTATE_T4 4,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,16,47,1,0,0,,216A,616A,4ff,EVENTS_HISTORY_ABSOLUTETIME ,765,48,55,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_INDEX_NUMBER ,765,56,87,1,0,0,,216A,616A,4ff,SSREH_SAV_RSTRT_FAIL_ABSOLUTE_TIME 0 ,765,88,95,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_APB_REQUEST 0,0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,96,103,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CLUTCH_SW_MAX_TRAVEL 0,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,104,111,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CLUTCH_SW_MIN_TRAVEL 0,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,112,119,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CRANKING_FAILURE_CS 0 ,765,120,151,1,0,0,,216A,616A,4ff,SSREH_SAV_RSTRT_FAIL_DISTANCE_TOTALIZER 0 ,765,152,152,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_IGNITION_SUPPLY_CONFIRMED 0,1:true;0:false ,765,160,167,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_NEUTRAL_CONTACT_STATUS 0,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,168,175,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_VEHICLESTATE_T4 0,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,176,207,1,0,0,,216A,616A,4ff,SSREH_SAV_RSTRT_FAIL_ABSOLUTE_TIME 1 ,765,208,215,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_APB_REQUEST 1,0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,216,223,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CLUTCH_SW_MAX_TRAVEL 1,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,224,231,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CLUTCH_SW_MIN_TRAVEL 1,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,232,239,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CRANKING_FAILURE_CS 1 ,765,240,271,1,0,0,,216A,616A,4ff,SSREH_SAV_RSTRT_FAIL_DISTANCE_TOTALIZER 1 ,765,272,272,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_IGNITION_SUPPLY_CONFIRMED 1,1:true;0:false ,765,280,287,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_NEUTRAL_CONTACT_STATUS 1,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,288,295,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_VEHICLESTATE_T4 1,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,296,327,1,0,0,,216A,616A,4ff,SSREH_SAV_RSTRT_FAIL_ABSOLUTE_TIME 2 ,765,328,335,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_APB_REQUEST 2,0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,336,343,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CLUTCH_SW_MAX_TRAVEL 2,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,344,351,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CLUTCH_SW_MIN_TRAVEL 2,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,352,359,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CRANKING_FAILURE_CS 2 ,765,360,391,1,0,0,,216A,616A,4ff,SSREH_SAV_RSTRT_FAIL_DISTANCE_TOTALIZER 2 ,765,392,399,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_NEUTRAL_CONTACT_STATUS 2,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,400,400,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_IGNITION_SUPPLY_CONFIRMED 2,1:true;0:false ,765,408,415,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_VEHICLESTATE_T4 2,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,416,447,1,0,0,,216A,616A,4ff,SSREH_SAV_RSTRT_FAIL_ABSOLUTE_TIME 3 ,765,448,455,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_APB_REQUEST 3,0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,456,463,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CLUTCH_SW_MAX_TRAVEL 3,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,464,471,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CLUTCH_SW_MIN_TRAVEL 3,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,472,479,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CRANKING_FAILURE_CS 3 ,765,480,511,1,0,0,,216A,616A,4ff,SSREH_SAV_RSTRT_FAIL_DISTANCE_TOTALIZER 3 ,765,512,512,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_IGNITION_SUPPLY_CONFIRMED 3,1:true;0:false ,765,520,527,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_NEUTRAL_CONTACT_STATUS 3,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,528,535,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_VEHICLESTATE_T4 3,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,536,567,1,0,0,,216A,616A,4ff,SSREH_SAV_RSTRT_FAIL_ABSOLUTE_TIME 4 ,765,568,575,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_APB_REQUEST 4,0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,576,583,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CLUTCH_SW_MAX_TRAVEL 4,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,584,591,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CLUTCH_SW_MIN_TRAVEL 4,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,592,599,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_CRANKING_FAILURE_CS 4 ,765,600,631,1,0,0,,216A,616A,4ff,SSREH_SAV_RSTRT_FAIL_DISTANCE_TOTALIZER 4 ,765,632,632,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_IGNITION_SUPPLY_CONFIRMED 4,1:true;0:false ,765,640,647,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_NEUTRAL_CONTACT_STATUS 4,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,648,655,1,0,0,,216A,616A,ff,SSREH_SAV_RSTRT_FAIL_VEHICLESTATE_T4 4,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,16,47,1,0,0,,216B,616B,4ff,EVENTS_HISTORY_ABSOLUTETIME ,765,48,55,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_INDEX_NUMBER ,765,56,87,1,0,0,,216B,616B,4ff,SSREH_SAV_RSTRT_FORBID_ABSOLUTE_TIME 0 ,765,88,95,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_AUTO_START_AUTHORIZATION 0,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,96,96,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_CAN_EMM_PRESENT 0,1:true;0:false ,765,104,135,1,0,0,,216B,616B,4ff,SSREH_SAV_RSTRT_FORBID_DISTANCE_TOTALIZER 0 ,765,136,143,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_ENGINE_STATUS 0,0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,144,175,1,0,0,,216B,616B,4ff,SSREH_SAV_RSTRT_FORBID_ABSOLUTE_TIME 1 ,765,176,183,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_AUTO_START_AUTHORIZATION 1,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,184,184,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_CAN_EMM_PRESENT 1,1:true;0:false ,765,192,223,1,0,0,,216B,616B,4ff,SSREH_SAV_RSTRT_FORBID_DISTANCE_TOTALIZER 1 ,765,224,231,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_ENGINE_STATUS 1,0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,232,263,1,0,0,,216B,616B,4ff,SSREH_SAV_RSTRT_FORBID_ABSOLUTE_TIME 2 ,765,264,271,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_AUTO_START_AUTHORIZATION 2,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,272,272,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_CAN_EMM_PRESENT 2,1:true;0:false ,765,280,311,1,0,0,,216B,616B,4ff,SSREH_SAV_RSTRT_FORBID_DISTANCE_TOTALIZER 2 ,765,312,319,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_ENGINE_STATUS 2,0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,320,351,1,0,0,,216B,616B,4ff,SSREH_SAV_RSTRT_FORBID_ABSOLUTE_TIME 3 ,765,352,359,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_AUTO_START_AUTHORIZATION 3,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,360,360,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_CAN_EMM_PRESENT 3,1:true;0:false ,765,368,399,1,0,0,,216B,616B,4ff,SSREH_SAV_RSTRT_FORBID_DISTANCE_TOTALIZER 3 ,765,400,407,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_ENGINE_STATUS 3,0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,408,439,1,0,0,,216B,616B,4ff,SSREH_SAV_RSTRT_FORBID_ABSOLUTE_TIME 4 ,765,440,447,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_AUTO_START_AUTHORIZATION 4,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,448,448,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_CAN_EMM_PRESENT 4,1:true;0:false ,765,456,487,1,0,0,,216B,616B,4ff,SSREH_SAV_RSTRT_FORBID_DISTANCE_TOTALIZER 4 ,765,488,495,1,0,0,,216B,616B,ff,SSREH_SAV_RSTRT_FORBID_ENGINE_STATUS 4,0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,16,47,1,0,0,,216C,616C,4ff,EVENTS_HISTORY_ABSOLUTETIME ,765,48,55,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_INDEX_NUMBER ,765,56,87,1,0,0,,216C,616C,4ff,SSREH_SAV_STOP_AUTO_ABSOLUTE_TIME 0 ,765,88,95,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_AUTO_START_AUTHORIZATION 0,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,96,103,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_CRANKING_FAILURE_CS 0 ,765,104,135,1,0,0,,216C,616C,4ff,SSREH_SAV_STOP_AUTO_DISTANCE_TOTALIZER 0 ,765,136,143,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_ENGINE_STOP_ORIGIN 0 ,765,144,151,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_VEHICLESTATE_T4 0,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,152,183,1,0,0,,216C,616C,4ff,SSREH_SAV_STOP_AUTO_ABSOLUTE_TIME 1 ,765,184,191,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_AUTO_START_AUTHORIZATION 1,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,192,199,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_CRANKING_FAILURE_CS 1 ,765,200,231,1,0,0,,216C,616C,4ff,SSREH_SAV_STOP_AUTO_DISTANCE_TOTALIZER 1 ,765,232,239,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_ENGINE_STOP_ORIGIN 1 ,765,240,247,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_VEHICLESTATE_T4 1,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,248,279,1,0,0,,216C,616C,4ff,SSREH_SAV_STOP_AUTO_ABSOLUTE_TIME 2 ,765,280,287,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_AUTO_START_AUTHORIZATION 2,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,288,295,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_CRANKING_FAILURE_CS 2 ,765,296,327,1,0,0,,216C,616C,4ff,SSREH_SAV_STOP_AUTO_DISTANCE_TOTALIZER 2 ,765,328,335,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_ENGINE_STOP_ORIGIN 2 ,765,336,343,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_VEHICLESTATE_T4 2,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,344,375,1,0,0,,216C,616C,4ff,SSREH_SAV_STOP_AUTO_ABSOLUTE_TIME 3 ,765,376,383,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_AUTO_START_AUTHORIZATION 3,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,384,391,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_CRANKING_FAILURE_CS 3 ,765,392,423,1,0,0,,216C,616C,4ff,SSREH_SAV_STOP_AUTO_DISTANCE_TOTALIZER 3 ,765,424,431,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_ENGINE_STOP_ORIGIN 3 ,765,432,439,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_VEHICLESTATE_T4 3,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,440,471,1,0,0,,216C,616C,4ff,SSREH_SAV_STOP_AUTO_ABSOLUTE_TIME 4 ,765,472,479,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_AUTO_START_AUTHORIZATION 4,0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,480,487,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_CRANKING_FAILURE_CS 4 ,765,488,519,1,0,0,,216C,616C,4ff,SSREH_SAV_STOP_AUTO_DISTANCE_TOTALIZER 4 ,765,520,527,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_ENGINE_STOP_ORIGIN 4 ,765,528,535,1,0,0,,216C,616C,ff,SSREH_SAV_STOP_AUTO_VEHICLESTATE_T4 4,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,16,47,1,0,0,,216D,616D,4ff,EVENTS_HISTORY_ABSOLUTETIME ,765,48,55,1,0,0,,216D,616D,ff,SSREH_SAV_TECH_AUTO_STRT_INDEX_NUMBER ,765,56,87,1,0,0,,216D,616D,4ff,SSREH_SAV_TECH_AUTO_STRT_ABSOLUTE_TIME 0 ,765,88,119,1,0,0,,216D,616D,4ff,SSREH_SAV_TECH_AUTO_STRT_DISTANCE_TOTALIZER 0 ,765,120,127,1,0,0,,216D,616D,ff,SSREH_SAV_TECH_AUTO_STRT_REQUEST 0,0:TECH_AUTOSTART_UNAVAILABLE;1:NO_TECH_AUTOSTART_REQUESTED;2:TECH_AUTOSTART_REQUESTED;3:TECH_AUTOSTART_NOT_USED ,765,128,159,1,0,0,,216D,616D,4ff,SSREH_SAV_TECH_AUTO_STRT_ABSOLUTE_TIME 1 ,765,160,191,1,0,0,,216D,616D,4ff,SSREH_SAV_TECH_AUTO_STRT_DISTANCE_TOTALIZER 1 ,765,192,199,1,0,0,,216D,616D,ff,SSREH_SAV_TECH_AUTO_STRT_REQUEST 1,0:TECH_AUTOSTART_UNAVAILABLE;1:NO_TECH_AUTOSTART_REQUESTED;2:TECH_AUTOSTART_REQUESTED;3:TECH_AUTOSTART_NOT_USED ,765,200,231,1,0,0,,216D,616D,4ff,SSREH_SAV_TECH_AUTO_STRT_ABSOLUTE_TIME 2 ,765,232,263,1,0,0,,216D,616D,4ff,SSREH_SAV_TECH_AUTO_STRT_DISTANCE_TOTALIZER 2 ,765,264,271,1,0,0,,216D,616D,ff,SSREH_SAV_TECH_AUTO_STRT_REQUEST 2,0:TECH_AUTOSTART_UNAVAILABLE;1:NO_TECH_AUTOSTART_REQUESTED;2:TECH_AUTOSTART_REQUESTED;3:TECH_AUTOSTART_NOT_USED ,765,272,303,1,0,0,,216D,616D,4ff,SSREH_SAV_TECH_AUTO_STRT_ABSOLUTE_TIME 3 ,765,304,335,1,0,0,,216D,616D,4ff,SSREH_SAV_TECH_AUTO_STRT_DISTANCE_TOTALIZER 3 ,765,336,343,1,0,0,,216D,616D,ff,SSREH_SAV_TECH_AUTO_STRT_REQUEST 3,0:TECH_AUTOSTART_UNAVAILABLE;1:NO_TECH_AUTOSTART_REQUESTED;2:TECH_AUTOSTART_REQUESTED;3:TECH_AUTOSTART_NOT_USED ,765,344,375,1,0,0,,216D,616D,4ff,SSREH_SAV_TECH_AUTO_STRT_ABSOLUTE_TIME 4 ,765,376,407,1,0,0,,216D,616D,4ff,SSREH_SAV_TECH_AUTO_STRT_DISTANCE_TOTALIZER 4 ,765,408,415,1,0,0,,216D,616D,ff,SSREH_SAV_TECH_AUTO_STRT_REQUEST 4,0:TECH_AUTOSTART_UNAVAILABLE;1:NO_TECH_AUTOSTART_REQUESTED;2:TECH_AUTOSTART_REQUESTED;3:TECH_AUTOSTART_NOT_USED ,765,16,47,1,0,0,,216E,616E,4ff,EVENTS_HISTORY_ABSOLUTETIME ,765,48,55,1,0,0,,216E,616E,ff,SSREH_SAV_WAITING_APB_INDEX_NUMBER ,765,56,87,1,0,0,,216E,616E,4ff,SSREH_SAV_WAITING_APB_ABSOLUTE_TIME 0 ,765,88,95,1,0,0,,216E,616E,ff,SSREH_SAV_WAITING_APB_APB_REQUEST 0,0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,96,127,1,0,0,,216E,616E,4ff,SSREH_SAV_WAITING_APB_DISTANCE_TOTALIZER 0 ,765,128,159,1,0,0,,216E,616E,4ff,SSREH_SAV_WAITING_APB_ABSOLUTE_TIME 1 ,765,160,167,1,0,0,,216E,616E,ff,SSREH_SAV_WAITING_APB_APB_REQUEST 1,0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,168,199,1,0,0,,216E,616E,4ff,SSREH_SAV_WAITING_APB_DISTANCE_TOTALIZER 1 ,765,200,231,1,0,0,,216E,616E,4ff,SSREH_SAV_WAITING_APB_ABSOLUTE_TIME 2 ,765,232,239,1,0,0,,216E,616E,ff,SSREH_SAV_WAITING_APB_APB_REQUEST 2,0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,240,271,1,0,0,,216E,616E,4ff,SSREH_SAV_WAITING_APB_DISTANCE_TOTALIZER 2 ,765,272,303,1,0,0,,216E,616E,4ff,SSREH_SAV_WAITING_APB_ABSOLUTE_TIME 3 ,765,304,311,1,0,0,,216E,616E,ff,SSREH_SAV_WAITING_APB_APB_REQUEST 3,0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,312,343,1,0,0,,216E,616E,4ff,SSREH_SAV_WAITING_APB_DISTANCE_TOTALIZER 3 ,765,344,375,1,0,0,,216E,616E,4ff,SSREH_SAV_WAITING_APB_ABSOLUTE_TIME 4 ,765,376,383,1,0,0,,216E,616E,ff,SSREH_SAV_WAITING_APB_APB_REQUEST 4,0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,384,415,1,0,0,,216E,616E,4ff,SSREH_SAV_WAITING_APB_DISTANCE_TOTALIZER 4 ,765,16,47,1,0,0,,216F,616F,4ff,EVENTS_HISTORY_ABSOLUTETIME ,765,48,55,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_INDEX_NUMBER ,765,56,87,1,0,0,,216F,616F,4ff,SSREH_SAV_UNSATFID_RSTRT_ABSOLUTE_TIME 0 ,765,88,95,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_CLUTCH_SW_MAX_TRAVEL 0,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,96,103,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_CLUTCH_SW_MIN_TRAVEL 0,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,104,111,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_NEUTRAL_CONTACT_STATUS 0,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,112,143,1,0,0,,216F,616F,4ff,SSREH_SAV_UNSATFID_RSTRT_DISTANCE_TOTALIZER 0 ,765,144,151,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_CLUTCH_SW_MAX_TRAVEL 0,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,152,159,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_CLUTCH_SW_MIN_TRAVEL 0,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,160,167,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_NEUTRAL_CONTACT_STATUS 0,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,168,199,1,0,0,,216F,616F,4ff,SSREH_SAV_UNSATFID_RSTRT_ABSOLUTE_TIME 1 ,765,200,207,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_CLUTCH_SW_MAX_TRAVEL 1,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,208,215,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_CLUTCH_SW_MIN_TRAVEL 1,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,216,223,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_NEUTRAL_CONTACT_STATUS 1,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,224,255,1,0,0,,216F,616F,4ff,SSREH_SAV_UNSATFID_RSTRT_DISTANCE_TOTALIZER 1 ,765,256,263,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_CLUTCH_SW_MAX_TRAVEL 1,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,264,271,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_CLUTCH_SW_MIN_TRAVEL 1,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,272,279,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_NEUTRAL_CONTACT_STATUS 1,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,280,311,1,0,0,,216F,616F,4ff,SSREH_SAV_UNSATFID_RSTRT_ABSOLUTE_TIME 2 ,765,312,319,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_CLUTCH_SW_MAX_TRAVEL 2,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,320,327,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_CLUTCH_SW_MIN_TRAVEL 2,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,328,335,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_NEUTRAL_CONTACT_STATUS 2,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,336,367,1,0,0,,216F,616F,4ff,SSREH_SAV_UNSATFID_RSTRT_DISTANCE_TOTALIZER 2 ,765,368,375,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_CLUTCH_SW_MAX_TRAVEL 2,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,376,383,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_CLUTCH_SW_MIN_TRAVEL 2,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,384,391,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_NEUTRAL_CONTACT_STATUS 2,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,392,423,1,0,0,,216F,616F,4ff,SSREH_SAV_UNSATFID_RSTRT_ABSOLUTE_TIME 3 ,765,424,431,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_CLUTCH_SW_MAX_TRAVEL 3,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,432,439,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_CLUTCH_SW_MIN_TRAVEL 3,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,440,447,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_NEUTRAL_CONTACT_STATUS 3,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,448,479,1,0,0,,216F,616F,4ff,SSREH_SAV_UNSATFID_RSTRT_DISTANCE_TOTALIZER 3 ,765,480,487,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_CLUTCH_SW_MAX_TRAVEL 3,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,488,495,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_CLUTCH_SW_MIN_TRAVEL 3,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,496,503,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_NEUTRAL_CONTACT_STATUS 3,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,504,535,1,0,0,,216F,616F,4ff,SSREH_SAV_UNSATFID_RSTRT_ABSOLUTE_TIME 4 ,765,536,543,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_CLUTCH_SW_MAX_TRAVEL 4,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,544,551,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_CLUTCH_SW_MIN_TRAVEL 4,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,552,559,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_CUR_NEUTRAL_CONTACT_STATUS 4,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,560,591,1,0,0,,216F,616F,4ff,SSREH_SAV_UNSATFID_RSTRT_DISTANCE_TOTALIZER 4 ,765,592,599,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_CLUTCH_SW_MAX_TRAVEL 4,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,600,607,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_CLUTCH_SW_MIN_TRAVEL 4,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,608,615,1,0,0,,216F,616F,ff,SSREH_SAV_UNSATFID_RSTRT_OLD_NEUTRAL_CONTACT_STATUS 4,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,16,23,1,0,0,,2171,6171,ff,TPMS_VEH_RUNNING_THRESHOLD ,765,24,31,1,0,0,,2171,6171,ff,TPMS_VEH_STOPPED_THRESHOLD ,765,32,39,1,0,0,,2171,6171,ff,TPMS_MISSING_THRESHOLD_ALERT ,765,40,47,1,0,0,,2171,6171,ff,TPMS_TIMEOUT_MISSING_SENSOR ,765,48,63,1,0,0,,2171,6171,ff,TPMS_TIMEOUT_VALVE_VEH_STOPPED ,765,64,95,1,0,0,,2171,6171,4ff,TPMS_WHEEL_ID 1 ,765,96,127,1,0,0,,2171,6171,4ff,TPMS_WHEEL_ID 2 ,765,128,159,1,0,0,,2171,6171,4ff,TPMS_WHEEL_ID 3 ,765,160,191,1,0,0,,2171,6171,4ff,TPMS_WHEEL_ID 4 ,765,192,199,1,0,0,,2171,6171,ff,TPMS_VEH_RUNNING_ON_DELAY ,765,200,207,1,0,0,,2171,6171,ff,TPMS_VEH_STOPPED_ON_DELAY ,765,208,223,10,0,0,,2171,6171,ff,TPMS_REF_PRESS_HIGH_SPEED_FRONT ,765,224,239,10,0,0,,2171,6171,ff,TPMS_REF_PRESS_HIGH_SPEED_REAR ,765,240,255,10,0,0,,2171,6171,ff,TPMS_REF_PRESS_LOW_SPEED_FRONT ,765,256,271,10,0,0,,2171,6171,ff,TPMS_REF_PRESS_LOW_SPEED_REAR ,765,272,272,1,0,0,,2171,6171,ff,TPMS_PRESENCE_SSPP ,765,273,273,1,0,0,,2171,6171,ff,TPMS_RECEIVER_PRESENT ,765,16,23,1,0,0,,2172,6172,ff,TPMS_UND_INF_ALERT_FIX_ RATE_ON ,765,24,31,1,0,0,,2172,6172,ff,TPMS_PRESSURE_ALERT_FIX_ RATE_OFF ,765,32,39,1,0,0,,2172,6172,ff,TPMS_UND_INF_ALERT_VAR_ RATE_ON ,765,40,47,1,0,0,,2172,6172,ff,TPMS_PRESSURE_ALERT_VAR_ RATE_OFF ,765,48,55,1,0,0,,2172,6172,ff,TPMS_INTERNAL_INCOH_THRESHOLD_ON ,765,56,63,1,0,0,,2172,6172,ff,TPMS_THRESHOLD_PUNCT_ALERT_ON ,765,64,71,1,0,0,,2172,6172,ff,TPMS_THRESHOLD_PUNCT_ALERT_OFF ,765,72,79,1,0,0,,2172,6172,ff,TPMS_THRD_UNDER_INF_ALERT_ON ,765,80,87,1,0,0,,2172,6172,ff,TPMS_THRD_UNDER_INF_ALERT_OFF ,765,88,95,1,0,0,,2172,6172,ff,TPMS_INCOH_PRESS_THRESHOLD ,765,96,103,1,0,0,,2172,6172,ff,TPMS_INCOH_TEMP_THRESHOLD ,765,104,111,1,0,0,,2172,6172,ff,TPMS_INTERNAL_INCOH_THRESHOLD_OFF ,765,112,119,1,30,0,°C,2172,6172,ff,TPMS_LOW_BATT_THRESHOLD_ALERT ,765,120,127,1,0,0,,2172,6172,ff,TPMS_PUNCT_ALERT_FIX_ RATE_ON ,765,16,23,1,30,0,°C,2173,6173,ff,TPMS_MAX_TREF_VALUE ,765,24,39,7.5,0,0,,2173,6173,ff,TPMS_PRESS_MEAS_ERROR ,765,40,47,1,0,0,,2173,6173,ff,TPMS_LEARNING_P1_PARAM ,765,48,55,.05,0,2,,2173,6173,ff,TPMS_LEARNING_P2_PARAM ,765,56,63,1,0,0,,2173,6173,ff,TPMS_PRESS_LEARN_NB_FRAME_MEAN ,765,72,87,1,0,0,,2173,6173,ff,TPMS_ATMO_EXTERN_PRESS ,765,88,95,10,0,0,,2173,6173,ff,TPMS_TIMEOUT_OFF_VALIDITY_DATA ,765,96,103,1,0,0,s,2173,6173,ff,TPMS_APV_PROCESS_TIMOUT ,765,104,111,1,0,0,,2173,6173,ff,TPMS_LEARN_RESET_MAX_VALUE ,765,112,119,1,0,0,,2173,6173,ff,TPMS_LEARNING_MATRIX_SIZE ,765,120,127,1,0,0,,2173,6173,ff,TPMS_LEARN_NEWID_MAX_COUNT ,765,136,143,1,0,0,,2173,6173,ff,TPMS_LEARN_KNOWNID_MAX_COUNT ,765,144,144,1,0,0,,2173,6173,ff,TPMS_AUTOLEARNING_ACTIVED ,765,145,145,1,0,0,,2173,6173,ff,TPMS_FLAG_MISSING_SENSOR_ENABLE ,765,16,23,1,0,0,,2174,6174,ff,TPMS_RF_EVENT_TYPE 1 ,765,24,31,1,0,0,,2174,6174,ff,TPMS_RF_EVENT_TYPE 2 ,765,32,39,1,0,0,,2174,6174,ff,TPMS_RF_EVENT_TYPE 3 ,765,40,47,1,0,0,,2174,6174,ff,TPMS_RF_EVENT_TYPE 4 ,765,48,55,1,0,0,,2174,6174,ff,TPMS_MOTION_STATUS 1 ,765,56,63,1,0,0,,2174,6174,ff,TPMS_MOTION_STATUS 2 ,765,64,71,1,0,0,,2174,6174,ff,TPMS_MOTION_STATUS 3 ,765,72,79,1,0,0,,2174,6174,ff,TPMS_MOTION_STATUS 4 ,765,80,95,7.5,0,0,mbar,2174,6174,ff,TPMS_INTERNAL_PRES 1 ,765,96,111,7.5,0,0,mbar,2174,6174,ff,TPMS_INTERNAL_PRES 2 ,765,112,127,7.5,0,0,mbar,2174,6174,ff,TPMS_INTERNAL_PRES 3 ,765,128,143,7.5,0,0,mbar,2174,6174,ff,TPMS_INTERNAL_PRES 4 ,765,144,151,1,30,0,°C,2174,6174,ff,TPMS_INTERNAL_TEMP 1 ,765,152,159,1,30,0,°C,2174,6174,ff,TPMS_INTERNAL_TEMP 2 ,765,160,167,1,30,0,°C,2174,6174,ff,TPMS_INTERNAL_TEMP 3 ,765,168,175,1,30,0,°C,2174,6174,ff,TPMS_INTERNAL_TEMP 4 ,765,176,176,1,0,0,,2174,6174,ff,TPMS_INCOH_TEMP_1 ,765,177,177,1,0,0,,2174,6174,ff,TPMS_INCOH_TEMP_2 ,765,178,178,1,0,0,,2174,6174,ff,TPMS_INCOH_TEMP_3 ,765,179,179,1,0,0,,2174,6174,ff,TPMS_INCOH_TEMP_4 ,765,180,180,1,0,0,,2174,6174,ff,TPMS_INTERNAL_INCOH 1 ,765,181,181,1,0,0,,2174,6174,ff,TPMS_INTERNAL_INCOH 2 ,765,182,182,1,0,0,,2174,6174,ff,TPMS_INTERNAL_INCOH 3 ,765,183,183,1,0,0,,2174,6174,ff,TPMS_INTERNAL_INCOH 4 ,765,184,184,1,0,0,,2174,6174,ff,TPMS_INTERNAL_LOW_BATT_ON 1 ,765,185,185,1,0,0,,2174,6174,ff,TPMS_INTERNAL_LOW_BATT_ON 2 ,765,186,186,1,0,0,,2174,6174,ff,TPMS_INTERNAL_LOW_BATT_ON 3 ,765,187,187,1,0,0,,2174,6174,ff,TPMS_INTERNAL_LOW_BATT_ON 4 ,765,16,16,1,0,0,,2175,6175,ff,CID_EXT_MEM_CF,1:true;0:false ,765,16,47,1,0,0,,2176,6176,4ff,CID_EM_PAGE_0_RD ,765,48,79,1,0,0,,2176,6176,4ff,CID_EM_PAGE_1_RD ,765,80,111,1,0,0,,2176,6176,4ff,CID_EM_PAGE_2_RD ,765,112,143,1,0,0,,2176,6176,4ff,CID_EM_PAGE_3_RD ,765,144,175,1,0,0,,2176,6176,4ff,CID_EM_PAGE_4_RD ,765,176,207,1,0,0,,2176,6176,4ff,CID_EM_PAGE_5_RD ,765,208,239,1,0,0,,2176,6176,4ff,CID_EM_PAGE_6_RD ,765,240,271,1,0,0,,2176,6176,4ff,CID_EM_PAGE_7_RD ,765,16,23,1,0,0,,2177,6177,ff,TPMS_RF_EVENT_TYPE _OLD 1 ,765,24,31,1,0,0,,2177,6177,ff,TPMS_RF_EVENT_TYPE _OLD 2 ,765,32,39,1,0,0,,2177,6177,ff,TPMS_RF_EVENT_TYPE _OLD 3 ,765,40,47,1,0,0,,2177,6177,ff,TPMS_RF_EVENT_TYPE _OLD 4 ,765,48,55,1,0,0,,2177,6177,ff,TPMS_MOTION_STATUS_OLD 1 ,765,56,63,1,0,0,,2177,6177,ff,TPMS_MOTION_STATUS_OLD 2 ,765,64,71,1,0,0,,2177,6177,ff,TPMS_MOTION_STATUS_OLD 3 ,765,72,79,1,0,0,,2177,6177,ff,TPMS_MOTION_STATUS_OLD 4 ,765,80,95,7.5,0,0,mbar,2177,6177,ff,TPMS_INTERNAL_PRES_OLD 1 ,765,96,111,7.5,0,0,mbar,2177,6177,ff,TPMS_INTERNAL_PRES_OLD 2 ,765,112,127,7.5,0,0,mbar,2177,6177,ff,TPMS_INTERNAL_PRES_OLD 3 ,765,128,143,7.5,0,0,mbar,2177,6177,ff,TPMS_INTERNAL_PRES_OLD 4 ,765,144,151,1,30,0,°C,2177,6177,ff,TPMS_INTERNAL_TEMP_OLD 1 ,765,152,159,1,30,0,°C,2177,6177,ff,TPMS_INTERNAL_TEMP_OLD 2 ,765,160,167,1,30,0,°C,2177,6177,ff,TPMS_INTERNAL_TEMP_OLD 3 ,765,168,175,1,30,0,°C,2177,6177,ff,TPMS_INTERNAL_TEMP_OLD 4 ,765,176,176,1,0,0,,2177,6177,ff,TPMS_INTERNAL_LOW_BATT_ON_OLD 1 ,765,177,177,1,0,0,,2177,6177,ff,TPMS_INTERNAL_LOW_BATT_ON_OLD 2 ,765,178,178,1,0,0,,2177,6177,ff,TPMS_INTERNAL_LOW_BATT_ON_OLD 3 ,765,179,179,1,0,0,,2177,6177,ff,TPMS_INTERNAL_LOW_BATT_ON_OLD 4 ,765,16,31,7.5,0,0,,2178,6178,ff,TPMS_PREF_MIN_ACCEPTABLE ,765,32,47,.125,0,1,mbar,2178,6178,ff,TPMS_PUNCT_PRES_ALERT_ON 1 ,765,48,63,.125,0,1,mbar,2178,6178,ff,TPMS_PUNCT_PRES_ALERT_ON 2 ,765,64,79,.125,0,1,mbar,2178,6178,ff,TPMS_PUNCT_PRES_ALERT_ON 3 ,765,80,95,.125,0,1,mbar,2178,6178,ff,TPMS_PUNCT_PRES_ALERT_ON 4 ,765,96,111,.125,0,1,mbar,2178,6178,ff,TPMS_UNDER_INF_PRES_ALERT_OFF 1 ,765,112,127,.125,0,1,mbar,2178,6178,ff,TPMS_UNDER_INF_PRES_ALERT_OFF 2 ,765,128,143,.125,0,1,mbar,2178,6178,ff,TPMS_UNDER_INF_PRES_ALERT_OFF 3 ,765,144,159,.125,0,1,mbar,2178,6178,ff,TPMS_UNDER_INF_PRES_ALERT_OFF 4 ,765,160,175,.125,0,1,mbar,2178,6178,ff,TPMS_UNDER_INF_PRES_ALERT_ON 1 ,765,176,191,.125,0,1,mbar,2178,6178,ff,TPMS_UNDER_INF_PRES_ALERT_ON 2 ,765,192,207,.125,0,1,mbar,2178,6178,ff,TPMS_UNDER_INF_PRES_ALERT_ON 3 ,765,208,223,.125,0,1,mbar,2178,6178,ff,TPMS_UNDER_INF_PRES_ALERT_ON 4 ,765,224,239,7.5,0,0,mbar,2178,6178,ff,TPMS_CUSTOMER_PRES_REF 1 ,765,240,255,7.5,0,0,mbar,2178,6178,ff,TPMS_CUSTOMER_PRES_REF 2 ,765,256,271,7.5,0,0,mbar,2178,6178,ff,TPMS_CUSTOMER_PRES_REF 3 ,765,272,287,7.5,0,0,mbar,2178,6178,ff,TPMS_CUSTOMER_PRES_REF 4 ,765,288,295,1,30,0,°C,2178,6178,ff,TPMS_TREF 1 ,765,296,303,1,30,0,°C,2178,6178,ff,TPMS_TREF 2 ,765,304,311,1,30,0,°C,2178,6178,ff,TPMS_TREF 3 ,765,312,319,1,30,0,,2178,6178,ff,TPMS_TREF 4 ,765,320,335,7.5,0,0,,2178,6178,ff,TPMS_PREF 1 ,765,336,351,7.5,0,0,,2178,6178,ff,TPMS_PREF 2 ,765,352,367,7.5,0,0,,2178,6178,ff,TPMS_PREF 3 ,765,368,383,7.5,0,0,,2178,6178,ff,TPMS_PREF 4 ,765,384,391,1,30,0,°C,2178,6178,ff,TPMS_CUSTOMER_TEMP_REF 1 ,765,392,399,1,30,0,°C,2178,6178,ff,TPMS_CUSTOMER_TEMP_REF 2 ,765,400,407,1,30,0,°C,2178,6178,ff,TPMS_CUSTOMER_TEMP_REF 3 ,765,408,415,1,30,0,°C,2178,6178,ff,TPMS_CUSTOMER_TEMP_REF 4 ,765,16,23,1,0,0,,2179,6179,ff,TPMS_SPEED_OR_VEH_STAT_STATUS ,765,24,31,1,0,0,,2179,6179,ff,TPMS_INTERNAL_INCOH_COUNT 1 ,765,32,39,1,0,0,,2179,6179,ff,TPMS_INTERNAL_INCOH_COUNT 2 ,765,40,47,1,0,0,,2179,6179,ff,TPMS_INTERNAL_INCOH_COUNT 3 ,765,48,55,1,0,0,,2179,6179,ff,TPMS_INTERNAL_INCOH_COUNT 4 ,765,56,63,1,0,0,,2179,6179,ff,TPMS_PUNCT_ALERT_ON_COUNT 1 ,765,64,71,1,0,0,,2179,6179,ff,TPMS_PUNCT_ALERT_ON_COUNT 2 ,765,72,79,1,0,0,,2179,6179,ff,TPMS_PUNCT_ALERT_ON_COUNT 3 ,765,80,87,1,0,0,,2179,6179,ff,TPMS_PUNCT_ALERT_ON_COUNT 4 ,765,88,95,1,0,0,,2179,6179,ff,TPMS_PUNCT_ALERT_OFF_COUNT 1 ,765,96,103,1,0,0,,2179,6179,ff,TPMS_PUNCT_ALERT_OFF_COUNT 2 ,765,104,111,1,0,0,,2179,6179,ff,TPMS_PUNCT_ALERT_OFF_COUNT 3 ,765,112,119,1,0,0,,2179,6179,ff,TPMS_PUNCT_ALERT_OFF_COUNT 4 ,765,120,127,1,0,0,,2179,6179,ff,TPMS_UNDER_INF_ALERT_ON_COUNT 1 ,765,128,135,1,0,0,,2179,6179,ff,TPMS_UNDER_INF_ALERT_ON_COUNT 2 ,765,136,143,1,0,0,,2179,6179,ff,TPMS_UNDER_INF_ALERT_ON_COUNT 3 ,765,144,151,1,0,0,,2179,6179,ff,TPMS_UNDER_INF_ALERT_ON_COUNT 4 ,765,152,159,1,0,0,,2179,6179,ff,TPMS_UNDER_INF_ALERT_OFF_COUNT 1 ,765,160,167,1,0,0,,2179,6179,ff,TPMS_UNDER_INF_ALERT_OFF_COUNT 2 ,765,168,175,1,0,0,,2179,6179,ff,TPMS_UNDER_INF_ALERT_OFF_COUNT 3 ,765,176,183,1,0,0,,2179,6179,ff,TPMS_UNDER_INF_ALERT_OFF_COUNT 4 ,765,184,191,1,0,0,,2179,6179,ff,TPMS_WHEEL_STATE 1 ,765,192,199,1,0,0,,2179,6179,ff,TPMS_WHEEL_STATE 2 ,765,200,207,1,0,0,,2179,6179,ff,TPMS_WHEEL_STATE 3 ,765,208,215,1,0,0,,2179,6179,ff,TPMS_WHEEL_STATE 4 ,765,216,216,1,0,0,,2179,6179,ff,TPMS_ACCEL_INCOH 1 ,765,217,217,1,0,0,,2179,6179,ff,TPMS_ACCEL_INCOH 2 ,765,218,218,1,0,0,,2179,6179,ff,TPMS_ACCEL_INCOH 3 ,765,219,219,1,0,0,,2179,6179,ff,TPMS_ACCEL_INCOH 4 ,765,220,220,1,0,0,,2179,6179,ff,TPMS_LOW_BATT_INCOH 1 ,765,221,221,1,0,0,,2179,6179,ff,TPMS_LOW_BATT_INCOH 2 ,765,222,222,1,0,0,,2179,6179,ff,TPMS_LOW_BATT_INCOH 3 ,765,223,223,1,0,0,,2179,6179,ff,TPMS_LOW_BATT_INCOH 4 ,765,224,224,1,0,0,,2179,6179,ff,TPMS_MISSING_TRANSMITTER 1 ,765,225,225,1,0,0,,2179,6179,ff,TPMS_MISSING_TRANSMITTER 2 ,765,226,226,1,0,0,,2179,6179,ff,TPMS_MISSING_TRANSMITTER 3 ,765,227,227,1,0,0,,2179,6179,ff,TPMS_MISSING_TRANSMITTER 4 ,765,228,228,1,0,0,,2179,6179,ff,TPMS_PRESS_INCOH 1 ,765,229,229,1,0,0,,2179,6179,ff,TPMS_PRESS_INCOH 2 ,765,230,230,1,0,0,,2179,6179,ff,TPMS_PRESS_INCOH 3 ,765,231,231,1,0,0,,2179,6179,ff,TPMS_PRESS_INCOH 4 ,765,16,23,1,0,0,,217A,617A,ff,TPMS_INVALIDS_IDS ,765,24,31,1,0,0,,217A,617A,ff,TPMS_PASSTHROUGH_STATUS ,765,32,39,1,0,0,,217A,617A,ff,TPMS_MISSING_CALIB_WARN_STATE ,765,40,47,1,0,0,,217A,617A,ff,TPMS_APV_ID_WRITING_STATUS ,765,48,55,1,0,0,,217A,617A,ff,TPMS_APV_PROCESS_STATUS ,765,56,87,1,0,0,,217A,617A,4ff,TPMS_APV_PROCESS_ID_CONFIRMED ,765,88,88,1,0,0,,217A,617A,ff,TPMS_ID_LEARN_SET 1 ,765,89,89,1,0,0,,217A,617A,ff,TPMS_ID_LEARN_SET 2 ,765,90,90,1,0,0,,217A,617A,ff,TPMS_ID_LEARN_SET 3 ,765,91,91,1,0,0,,217A,617A,ff,TPMS_ID_LEARN_SET 4 ,765,92,92,1,0,0,,217A,617A,ff,TPMS_PRES_LEARN_SET 1 ,765,93,93,1,0,0,,217A,617A,ff,TPMS_PRES_LEARN_SET 2 ,765,94,94,1,0,0,,217A,617A,ff,TPMS_PRES_LEARN_SET 3 ,765,95,95,1,0,0,,217A,617A,ff,TPMS_PRES_LEARN_SET 4 ,765,96,96,1,0,0,,217A,617A,ff,TPMS_APV_LEARN_REQUEST ,765,97,97,1,0,0,,217A,617A,ff,TPMS_LEARNING_STATUS ,765,98,98,1,0,0,,217A,617A,ff,TPMS_PRESSURES_PLACARD_ACTIVATED ,765,99,99,1,0,0,,217A,617A,ff,TPMS_LEARNING_ID_FINISHED ,765,16,23,1,0,0,,217B,617B,ff,TPMS_NB_RESET ,765,24,31,1,0,0,,217B,617B,ff,TPMS_NB_LEARN_SEQUENCES ,765,32,39,1,0,0,,217B,617B,ff,TPMS_MAX_RESET_TIMING ,765,40,47,1,0,0,,217B,617B,ff,TPMS_LEARN_RESET_TIMER ,765,48,55,1,0,0,,217B,617B,ff,TPMS_APV_DEACTIVATION ,765,56,71,1,0,0,,217B,617B,ff,TPMS_COUNTER_PERMANENT_MISSING_1 ,765,72,87,1,0,0,,217B,617B,ff,TPMS_COUNTER_PERMANENT_MISSING 2 ,765,88,103,1,0,0,,217B,617B,ff,TPMS_COUNTER_PERMANENT_MISSING 3 ,765,104,119,1,0,0,,217B,617B,ff,TPMS_COUNTER_PERMANENT_MISSING 4 ,765,120,127,1,0,0,,217B,617B,ff,TPMS_TEMPORARY_COUNTER_MISSING 1 ,765,128,135,1,0,0,,217B,617B,ff,TPMS_TEMPORARY_COUNTER_MISSING 2 ,765,136,143,1,0,0,,217B,617B,ff,TPMS_TEMPORARY_COUNTER_MISSING 3 ,765,144,151,1,0,0,,217B,617B,ff,TPMS_TEMPORARY_COUNTER_MISSING 4 ,765,152,152,1,0,0,,217B,617B,ff,TPMS_LEARN_RESET_DELAY_REACHED ,765,16,31,1,0,0,,217C,617C,ff,X_TCONF_REVERS_TP 20 ,765,32,47,1,0,0,,217C,617C,ff,X_TFAIL_DETECTED_TP 20 ,765,48,63,1,0,0,,217C,617C,ff,X_TPASS_DETECTED_TP 20 ,765,64,79,1,0,0,,217C,617C,ff,X_TCONF_REVERS_TP 21 ,765,80,95,1,0,0,,217C,617C,ff,X_TFAIL_DETECTED_TP 21 ,765,96,111,1,0,0,,217C,617C,ff,X_TPASS_DETECTED_TP 21 ,765,16,23,10,0,0,,217D,617D,ff,TPMS_WARNING_OFF_DELAY_FROM_INPUT ,765,24,31,10,0,0,,217D,617D,ff,TPMS_WARNING_ON_DELAY_FROM_INPUT ,765,32,39,10,0,0,,217D,617D,ff,TPMS_TIMEOUT_CAN_INPUT ,765,40,47,.1,0,1,s,217D,617D,ff,TPMS_LIN_TIMEOUT_PASSTHROUGH ,765,48,55,.1,0,1,s,217D,617D,ff,TPMS_LIN_TIMEOUT_WRITING_ID ,765,56,63,10,0,0,ms,217D,617D,ff,TPMS_DELAYED_EXECUTION_TM_TP ,765,16,151,1,0,0,,217E,617E,2ff,V.I.N. in ASCII Saved ,765,17,17,1,0,0,,217F,617F,ff,ECHO_RF_CF,1:true;0:false ,765,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,765,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,765,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,765,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,765,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,765,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,765,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,765,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,1:284B3;2:284B1 ,765,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:284B2 ,765,192,199,1,0,0,,2180,6180,4ff,ApprovalNumber.BasicPartList ,765,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,136:5DIGITS R2;255:Renault R3;0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3 ,765,16,151,1,0,0,,2181,6181,2ff,V.I.N. in ASCII ,765,152,167,1,0,0,,2181,6181,ff,VinInASCIICrc ,765,16,23,1,0,0,,2184,6184,2ff,Supplier serial number Byte 19 ,765,24,31,1,0,0,,2184,6184,2ff,Supplier serial number Byte 18 ,765,32,39,1,0,0,,2184,6184,2ff,Supplier serial number Byte 17 ,765,40,47,1,0,0,,2184,6184,2ff,Supplier serial number Byte 16 ,765,48,55,1,0,0,,2184,6184,2ff,Supplier serial number Byte 15 ,765,56,63,1,0,0,,2184,6184,2ff,Supplier serial number Byte 14 ,765,64,71,1,0,0,,2184,6184,2ff,Supplier serial number Byte 13 ,765,72,79,1,0,0,,2184,6184,2ff,Supplier serial number Byte 12 ,765,80,87,1,0,0,,2184,6184,2ff,Supplier serial number Byte 11 ,765,88,95,1,0,0,,2184,6184,2ff,Supplier serial number Byte 10 ,765,96,103,1,0,0,,2184,6184,2ff,Supplier serial number Byte 9 ,765,104,111,1,0,0,,2184,6184,2ff,Supplier serial number Byte 8 ,765,112,119,1,0,0,,2184,6184,2ff,Supplier serial number Byte 7 ,765,120,127,1,0,0,,2184,6184,2ff,Supplier serial number Byte 6 ,765,128,135,1,0,0,,2184,6184,2ff,Supplier serial number Byte 5 ,765,136,143,1,0,0,,2184,6184,2ff,Supplier serial number Byte 4 ,765,144,151,1,0,0,,2184,6184,2ff,Supplier serial number Byte 3 ,765,152,159,1,0,0,,2184,6184,2ff,Supplier serial number Byte 2 ,765,160,167,1,0,0,,2184,6184,2ff,Supplier serial number Byte 1 ,765,168,175,1,0,0,,2184,6184,2ff,Supplier serial number Byte 0 ,765,16,23,1,0,0,,21EF,61EF,2ff,Daimler Hardware Part Number Byte 0 ,765,24,31,1,0,0,,21EF,61EF,2ff,Daimler Hardware Part Number Byte 1 ,765,32,39,1,0,0,,21EF,61EF,2ff,Daimler Hardware Part Number Byte 2 ,765,40,47,1,0,0,,21EF,61EF,2ff,Daimler Hardware Part Number Byte 3 ,765,48,55,1,0,0,,21EF,61EF,2ff,Daimler Hardware Part Number Byte 4 ,765,56,63,1,0,0,,21EF,61EF,2ff,Daimler Hardware Part Number Byte 5 ,765,64,71,1,0,0,,21EF,61EF,2ff,Daimler Hardware Part Number Byte 6 ,765,72,79,1,0,0,,21EF,61EF,2ff,Daimler Hardware Part Number Byte 7 ,765,80,87,1,0,0,,21EF,61EF,2ff,Daimler Hardware Part Number Byte 8 ,765,88,95,1,0,0,,21EF,61EF,2ff,Daimler Hardware Part Number Byte 9 ,765,96,103,1,0,0,,21EF,61EF,2ff,Daimler Software Part Number Byte 0 ,765,104,111,1,0,0,,21EF,61EF,2ff,Daimler Software Part Number Byte 1 ,765,112,119,1,0,0,,21EF,61EF,2ff,Daimler Software Part Number Byte 2 ,765,120,127,1,0,0,,21EF,61EF,2ff,Daimler Software Part Number Byte 3 ,765,128,135,1,0,0,,21EF,61EF,2ff,Daimler Software Part Number Byte 4 ,765,136,143,1,0,0,,21EF,61EF,2ff,Daimler Software Part Number Byte 5 ,765,144,151,1,0,0,,21EF,61EF,2ff,Daimler Software Part Number Byte 6 ,765,152,159,1,0,0,,21EF,61EF,2ff,Daimler Software Part Number Byte 7 ,765,160,167,1,0,0,,21EF,61EF,2ff,Daimler Software Part Number Byte 8 ,765,168,175,1,0,0,,21EF,61EF,2ff,Daimler Software Part Number Byte 9 ,765,16,55,1,0,0,,21F0,61F0,2ff,PartNumber.LowerPart ,765,56,63,1,0,0,,21F0,61F0,4ff,DiagnosticIdentificationCode ,765,64,87,1,0,0,,21F0,61F0,2ff,SupplierNumber.ITG ,765,88,127,1,0,0,,21F0,61F0,2ff,HardwareNumber.LowerPart ,765,128,143,1,0,0,,21F0,61F0,4ff,SoftwareNumber ,765,144,159,1,0,0,,21F0,61F0,4ff,EditionNumber ,765,160,175,1,0,0,,21F0,61F0,4ff,CalibrationNumber ,765,176,183,1,0,0,,21F0,61F0,ff,PartNumber.BasicPartList,1:284B3;2:284B1 ,765,184,191,1,0,0,,21F0,61F0,ff,HardwareNumber.BasicPartList,0:284B2 ,765,192,199,1,0,0,,21F0,61F0,4ff,ApprovalNumber.BasicPartList ,765,200,207,1,0,0,,21F0,61F0,ff,ManufacturerIdentificationCode,136:5DIGITS R2;255:Renault R3;0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3 ,765,16,55,1,0,0,,21F1,61F1,2ff,ApprovalNumber.LowerPart ,765,56,95,1,0,0,,21F1,61F1,2ff,ProgrammingSiteReference ,765,96,135,1,0,0,,21F1,61F1,2ff,ProgrammingToolReference ,765,136,143,1,0,0,,21F1,61F1,4ff,NumberOfReprogrammings ,765,144,167,1,0,0,,21F1,61F1,4ff,DateOfReprogramming ,765,168,183,1,0,0,,21F1,61F1,4ff,TimeOfReprogramming ,765,184,191,1,0,0,,21F1,61F1,4ff,SaveMarking ,765,192,207,1,0,0,,21F1,61F1,4ff,CrcOfLogSave ,765,24,39,.0001,0,3,A,220002,620002,1ff,E_K_ICONSFLT_A0_CF ,765,24,39,.0001,0,3,,220003,620003,1ff,E_K_ICONSFLT_B0_CF ,765,24,39,.0001,0,3,,220004,620004,1ff,E_K_PCONSFLT_A0_CF ,765,24,39,.0001,0,3,,220005,620005,1ff,E_K_PCONSFLT_B0_CF ,765,24,31,.02,0,2,Hz,220006,620006,ff,E_KI_UALT_CF ,765,24,31,.02,0,2,,220007,620007,ff,E_KP_UALT_CF ,765,24,39,.01,0,2,%,220008,620008,ff,E_PCT_ALTLOAD_ADMISSIBLE_CF ,765,24,39,.01,0,2,%,220009,620009,ff,E_PCT_ALTLOAD_MAX_CF ,765,24,31,1,0,0,s,22000A,62000A,ff,E_TM_ALTREGACTIVWOCAN_CF ,765,24,31,1,0,0,s,22000B,62000B,ff,E_TM_DEFAULT_COMMFROMECM_CF ,765,24,31,1,0,0,s,22000C,62000C,ff,E_TM_LIM_BY_INJ_CF ,765,24,31,1,0,0,s,22000D,62000D,ff,E_TM_OVERVOLTAGE_CF ,765,24,31,1,0,0,s,22000E,62000E,ff,E_TM_UNDERVOLTAGE_CF ,765,24,31,.1,0,1,V,22000F,62000F,ff,E_U_ALT_BATTERYDISCONNEXION_CF ,765,24,31,.005,0,3,V,220010,620010,1ff,E_U_ALT_ERRORNOK_CF ,765,24,31,.005,0,3,V,220011,620011,1ff,E_U_ALT_ERROROK_CF ,765,24,31,.1,0,1,V,220012,620012,ff,E_U_ALT_MIN_CF ,765,24,39,.001,0,3,V,220013,620013,ff,E_U_ALT_START_CF ,765,24,39,.001,0,3,V,220014,620014,ff,E_U_ALTBATTUNDERVOLTAGE_OFFSET_CF ,765,24,31,.1,0,1,V,220015,620015,ff,E_U_BATT_VOLTAGENETWORK_MIN_CF ,765,24,39,.001,0,3,V,220016,620016,ff,E_U_BATTUNDERVOLTAGE1_THRESHOLD_CF ,765,24,39,.001,0,3,V,220017,620017,ff,E_U_BATTUNDERVOLTAGE2_THRESHOLD_CF ,765,24,39,.001,0,3,V,220018,620018,ff,E_U_OVERVOLTAGE_SUPPLY_CF ,765,24,39,.01,0,2,%,220019,620019,ff,E_PCT_UNDERVOLTAGE_DF_CF ,765,24,31,.1,0,1,s,22001A,62001A,ff,E_TAU_ALTERNATORLOAD_CF ,765,24,31,.01,0,2,s,22001B,62001B,ff,E_TAU_UALT_CF ,765,24,31,.01,0,2,V,22001C,62001C,ff,E_KAW_POS_CF ,765,24,31,.01,0,2,V,22001D,62001D,1ff,E_KAW_NEG_CF ,765,24,55,1,0,0,,22001E,62001E,4ff,E_K_MAXAHFORRECALAGEPS100PCT_CF ,765,24,24,1,0,0,,22001F,62001F,ff,E_B_RECALAGEPS100PCT_INHIBIT_CF,1:true;0:false ,765,24,39,.1,0,1,A,220020,620020,1ff,E_I_RECALAGEPS100PCTMAXCURRENT_CF ,765,24,39,.01,0,2,%,220021,620021,ff,E_K_ALERTEPCT_CF ,765,24,39,.01,0,2,,220022,620022,1ff,E_K_COEFFCORRTEMP_CF ,765,24,31,1,0,0,%,220023,620023,ff,E_K_RECALAGEPS100PCTSOC_CF ,765,24,31,1,0,0,Ah,220024,620024,ff,E_K_CAPACITENOMINALE_CF ,765,24,31,1,40,0,°C,220025,620025,ff,E_TEMP_BATT_ALERTE_CF ,765,24,31,1,40,0,°C,220026,620026,ff,E_TEMP_RECALAGEPS100PCTTEMPMAX_CF ,765,24,31,1,40,0,°C,220027,620027,ff,E_TEMP_RECALAGEPS100PCTTEMPMIN_CF ,765,24,31,.01,0,2,s,220028,620028,ff,E_TM_BATTERYGAUGEACTIVATION_CF ,765,24,39,.1,0,1,s,220029,620029,ff,E_TM_CURRENTCONDITIONPS100PCT_CF ,765,24,31,.1,0,1,s,22002A,62002A,ff,E_TM_LIMITTIME_CUSTOMERCONF_CF ,765,24,39,.1,0,1,s,22002B,62002B,ff,E_TM_RECALAGETIMEPS100PCT_CF ,765,24,31,1,40,0,°C,22002C,62002C,ff,E_TEMP_REF_CF ,765,24,55,1,0,0,,22002D,62002D,4ff,E_TM_TIMEMINFORSOCVALID_CF ,765,24,31,.1,0,1,V,22002E,62002E,ff,E_U_BATT_CHARGERDETECT_CF ,765,24,39,.001,0,3,V,22002F,62002F,ff,E_U_BATT_WELLCHARGED_CF ,765,24,39,.001,0,3,V,220030,620030,ff,E_U_RECALAGEPS100PCTVOLTAGEMAX_CF ,765,24,39,.001,0,3,V,220031,620031,ff,E_U_RECALAGEPS100PCTVOLTAGEMIN_CF ,765,24,39,1,0,0,s,220032,620032,ff,E_TM_RECALAGEPS100MAXDURATION_CF ,765,24,39,.01,0,2,%,220033,620033,ff,E_PCT_SOCCURRENT_LIMP_CF ,765,24,39,.0001,0,3,,220034,620034,1ff,E_K_IBATTRECALAGEFLT_A0_CF ,765,24,39,.0001,0,3,,220035,620035,1ff,E_K_IBATTRECALAGEFLT_B0_CF ,765,24,39,.0001,0,3,,220036,620036,1ff,E_K_UBATTRECALAGEFLT_A0_CF ,765,24,39,.0001,0,3,,220037,620037,1ff,E_K_UBATTRECALAGEFLT_B0_CF ,765,24,39,.1,0,1,A,220038,620038,1ff,E_I_BATTFILT_INIT_CF ,765,24,31,1,0,0,s,220039,620039,ff,E_TM_CONFIRMATIONALERTE_CF ,765,24,39,.001,0,3,V,22003A,62003A,ff,E_U_BATTFILT_INIT_CF ,765,24,31,1,0,0,V,22003B,62003B,ff,E_PCT_POLARIZEDBATTSOC_OFFSET_CF ,765,24,31,1,0,0,%,22003C,62003C,ff,E_PCT_SOCAFTERCHARGER_CF ,765,24,39,.01,0,2,V,22003D,62003D,ff,E_U_VERYPOLARIZEDOCV_THRESHOLD_CF ,765,24,31,1,0,0,V,22003E,62003E,ff,E_PCT_VERYPOLARIZEDBATTSOC_CF ,765,24,31,10,0,0,A,22003F,62003F,ff,E_K_CCABATTERIENOMINALE_CF ,765,24,31,1,0,0,,220040,620040,ff,E_K_TECHWUCHARGERDETECT_CF ,765,24,39,.001,0,3,V,220041,620041,ff,E_U_COEFFC_CF ,765,24,39,.001,0,3,V,220042,620042,ff,E_U_COEFFD_CF ,765,24,39,.01,0,2,,220043,620043,ff,E1D_K_CHARGECOEFF 0 ,765,40,55,.01,0,2,,220043,620043,ff,E1D_K_CHARGECOEFF 1 ,765,24,39,.01,0,2,,220044,620044,ff,E1D_K_DISCHARGECOEFF 0 ,765,40,55,.01,0,2,,220044,620044,ff,E1D_K_DISCHARGECOEFF 1 ,765,24,31,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 0 ,765,32,39,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 1 ,765,40,47,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 2 ,765,48,55,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 3 ,765,56,63,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 4 ,765,64,71,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 5 ,765,72,79,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 6 ,765,80,87,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 7 ,765,88,95,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 8 ,765,96,103,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 9 ,765,104,111,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 10 ,765,112,119,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 11 ,765,120,127,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 12 ,765,128,135,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 13 ,765,136,143,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 14 ,765,144,151,1,0,0,%,220045,620045,ff,E1D_K_SOCCOEFFSOC 15 ,765,24,39,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 0 ,765,40,55,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 1 ,765,56,71,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 2 ,765,72,87,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 3 ,765,88,103,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 4 ,765,104,119,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 5 ,765,120,135,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 6 ,765,136,151,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 7 ,765,152,167,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 8 ,765,168,183,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 9 ,765,184,199,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 10 ,765,200,215,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 11 ,765,216,231,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 12 ,765,232,247,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 13 ,765,248,263,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 14 ,765,264,279,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 15 ,765,280,295,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 16 ,765,296,311,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 17 ,765,312,327,.005,0,3,%,220046,620046,1ff,E1D_PCT_PCTCCAALERTE 18 ,765,24,31,1,40,0,°C,220047,620047,ff,E1D_TEMP_BATTFORCHARGE 0 ,765,32,39,1,40,0,°C,220047,620047,ff,E1D_TEMP_BATTFORCHARGE 1 ,765,24,31,1,40,0,°C,220048,620048,ff,E1D_TEMP_BATTFORDISCHARGE 0 ,765,32,39,1,40,0,°C,220048,620048,ff,E1D_TEMP_BATTFORDISCHARGE 1 ,765,24,31,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 0 ,765,32,39,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 1 ,765,40,47,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 2 ,765,48,55,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 3 ,765,56,63,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 4 ,765,64,71,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 5 ,765,72,79,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 6 ,765,80,87,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 7 ,765,88,95,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 8 ,765,96,103,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 9 ,765,104,111,1,40,0,°C,220049,620049,ff,E1D_TEMP_TEMPBATTCOEFFSOC 10 ,765,24,31,1,40,0,°C,22004A,62004A,ff,E1D_TEMP_TEMPBATTSOC 0 ,765,32,39,1,40,0,°C,22004A,62004A,ff,E1D_TEMP_TEMPBATTSOC 1 ,765,40,47,1,40,0,°C,22004A,62004A,ff,E1D_TEMP_TEMPBATTSOC 2 ,765,24,31,1,40,0,°C,22004B,62004B,ff,E1D_TEMPBATT 0 ,765,32,39,1,40,0,°C,22004B,62004B,ff,E1D_TEMPBATT 1 ,765,24,39,1,0,0,,22004C,62004C,1ff,E1D_U_INCREMENT_JAUGEVT 0 ,765,40,55,1,0,0,,22004C,62004C,1ff,E1D_U_INCREMENT_JAUGEVT 1 ,765,56,71,1,0,0,,22004C,62004C,1ff,E1D_U_INCREMENT_JAUGEVT 2 ,765,72,87,1,0,0,,22004C,62004C,1ff,E1D_U_INCREMENT_JAUGEVT 3 ,765,88,103,1,0,0,,22004C,62004C,1ff,E1D_U_INCREMENT_JAUGEVT 4 ,765,104,119,1,0,0,,22004C,62004C,1ff,E1D_U_INCREMENT_JAUGEVT 5 ,765,120,135,1,0,0,,22004C,62004C,1ff,E1D_U_INCREMENT_JAUGEVT 6 ,765,136,151,1,0,0,,22004C,62004C,1ff,E1D_U_INCREMENT_JAUGEVT 7 ,765,152,167,1,0,0,,22004C,62004C,1ff,E1D_U_INCREMENT_JAUGEVT 8 ,765,168,183,1,0,0,,22004C,62004C,1ff,E1D_U_INCREMENT_JAUGEVT 9 ,765,24,39,.001,0,3,V,22004D,62004D,1ff,E1D_U_OFFSETV_DURINGTECHWAKEUP 0 ,765,40,55,.001,0,3,V,22004D,62004D,1ff,E1D_U_OFFSETV_DURINGTECHWAKEUP 1 ,765,56,71,.001,0,3,V,22004D,62004D,1ff,E1D_U_OFFSETV_DURINGTECHWAKEUP 2 ,765,24,39,.001,0,3,V,22004E,62004E,ff,E1D_U_RES_BATTTHRESHOLD 0 ,765,40,55,.001,0,3,V,22004E,62004E,ff,E1D_U_RES_BATTTHRESHOLD 1 ,765,24,39,.001,0,3,V,22004F,62004F,ff,E1D_U_VBATT_INCJAUGEVT 0 ,765,40,55,.001,0,3,V,22004F,62004F,ff,E1D_U_VBATT_INCJAUGEVT 1 ,765,56,71,.001,0,3,V,22004F,62004F,ff,E1D_U_VBATT_INCJAUGEVT 2 ,765,72,87,.001,0,3,V,22004F,62004F,ff,E1D_U_VBATT_INCJAUGEVT 3 ,765,88,103,.001,0,3,V,22004F,62004F,ff,E1D_U_VBATT_INCJAUGEVT 4 ,765,104,119,.001,0,3,V,22004F,62004F,ff,E1D_U_VBATT_INCJAUGEVT 5 ,765,120,135,.001,0,3,V,22004F,62004F,ff,E1D_U_VBATT_INCJAUGEVT 6 ,765,136,151,.001,0,3,V,22004F,62004F,ff,E1D_U_VBATT_INCJAUGEVT 7 ,765,152,167,.001,0,3,V,22004F,62004F,ff,E1D_U_VBATT_INCJAUGEVT 8 ,765,168,183,.001,0,3,V,22004F,62004F,ff,E1D_U_VBATT_INCJAUGEVT 9 ,765,24,39,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 0 ,765,40,55,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 1 ,765,56,71,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 2 ,765,72,87,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 3 ,765,88,103,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 4 ,765,104,119,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 5 ,765,120,135,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 6 ,765,136,151,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 7 ,765,152,167,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 8 ,765,168,183,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 9 ,765,184,199,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 10 ,765,200,215,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 11 ,765,216,231,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 12 ,765,232,247,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 13 ,765,248,263,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 14 ,765,264,279,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 15 ,765,280,295,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 16 ,765,296,311,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 17 ,765,312,327,.001,0,3,V,220050,620050,ff,E1D_U_VMINIALERT_COLD 18 ,765,24,39,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 0 ,765,40,55,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 1 ,765,56,71,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 2 ,765,72,87,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 3 ,765,88,103,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 4 ,765,104,119,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 5 ,765,120,135,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 6 ,765,136,151,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 7 ,765,152,167,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 8 ,765,168,183,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 9 ,765,184,199,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 10 ,765,200,215,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 11 ,765,216,231,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 12 ,765,232,247,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 13 ,765,248,263,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 14 ,765,264,279,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 15 ,765,280,295,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 16 ,765,296,311,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 17 ,765,312,327,.001,0,3,V,220051,620051,ff,E1D_U_VMINIALERT_WARM 18 ,765,24,24,1,0,0,,220052,620052,ff,E_K_FRONTBATTERY_TYPE_CF,1:true;0:false ,765,24,31,.01,0,2,,220053,620053,ff,E_K_HIGH_LIMIT_MAX_CF ,765,24,31,.01,0,2,,220054,620054,ff,E_K_HIGH_LIMIT_MIN_CF ,765,24,31,.01,0,2,,220055,620055,ff,E_K_LOW_LIMIT_MAX_CF ,765,24,31,.01,0,2,,220056,620056,ff,E_K_LOW_LIMIT_MIN_CF ,765,24,31,1,0,0,,220057,620057,ff,E_K_TEMPGRADIENTMAX_CF ,765,24,31,1,0,0,%,220058,620058,ff,E_PWM_ENGINEFANSPEED_MIN_CF ,765,24,39,.01,0,2,km/h,220059,620059,ff,E_S_DEFAULTVEHICLESPEED_CF ,765,24,39,.01,0,2,km/h,22005A,62005A,ff,E_S_MCHTRVSP_CF ,765,24,31,1,0,0,km/h,22005B,62005B,ff,E_S_VEH_LIMIT_MAX_CF ,765,24,31,1,0,0,km/h,22005C,62005C,ff,E_S_VEH_LIMIT_MIN_CF ,765,24,39,1,0,0,min,22005D,62005D,ff,E_TAU_ENGINE_CF ,765,24,31,1,40,0,°C,22005E,62005E,ff,E_TEMP_DEFAULTENGINECOOLANTTEMP_CF ,765,24,31,1,40,0,°C,22005F,62005F,ff,E_TEMP_EQ_EXT_LIMIT_MAX_CF ,765,24,31,1,40,0,°C,220060,620060,ff,E_TEMP_EQ_EXT_LIMIT_MIN_CF ,765,24,31,.5,100,1,°C,220061,620061,ff,E_TEMP_MNPOFS_CF ,765,24,55,1,0,0,,220062,620062,4ff,E_TM_CAN_ENGINECOOLANTTEMP_CF ,765,24,39,.01,0,2,s,220063,620063,ff,E_TM_TEMPBATTACTIV_DELAY_CF ,765,24,39,1,0,0,min,220064,620064,ff,E_TAU_BATT_BATTSENS_MID_CF ,765,24,39,1,0,0,min,220065,620065,ff,E_TAU_BATT_BATTSENS_HIGH_CF ,765,24,39,1,0,0,min,220066,620066,ff,E_TAU_BATT_NOBATTSENS_MID_CF ,765,24,39,1,0,0,min,220067,620067,ff,E_TAU_BATT_NOBATTSENS_HIGH_CF ,765,24,39,1,0,0,min,220068,620068,ff,E_TAU_BATT_BATTSENS_LOW_CF ,765,24,39,1,0,0,min,220069,620069,ff,E_TAU_BATT_NOBATTSENS_LOW_CF ,765,24,24,1,0,0,,22006A,62006A,ff,E_B_ESMINHIBIT_CF,1:true;0:false ,765,24,24,1,0,0,,22006B,62006B,ff,E_B_FLOATINGINHIBIT_CF,1:true;0:false ,765,24,24,1,0,0,,22006C,62006C,ff,E_B_NEGATIVE_1_POSNEG_RATE_CF,1:true;0:false ,765,24,31,1,0,0,,22006D,62006D,ff,E_E_VOLTAGE_RATE_AC_LHM_CF,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,24,31,1,0,0,,22006E,62006E,ff,E_E_VOLTAGE_RATE_BCM_LHM_CF,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,24,31,.1,0,1,V/s,22006F,62006F,ff,E_DU_CHARGE_RATE_CF ,765,24,31,1,0,0,,220070,620070,ff,E_E_VOLTAGE_RATE_ECM_LHM_CF,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,24,31,.1,0,1,V/s,220071,620071,ff,E_DU_ESM_POS_FROZEN_CF ,765,24,31,.1,0,1,V/s,220072,620072,ff,E_DU_ESM_POS_LIMIT_CF ,765,24,31,.1,0,1,V/s,220073,620073,ff,E_DU_ESM_POS_RATE_CF ,765,24,31,.1,0,1,V/s,220074,620074,ff,E_DU_FLOAT_RATE_CF ,765,24,31,.1,0,1,V/s,220075,620075,ff,E_DU_RATE0_BY_AC_CF ,765,24,31,.1,0,1,V/s,220076,620076,ff,E_DU_RATE0_BY_BCM_CF ,765,24,31,.1,0,1,V/s,220077,620077,ff,E_DU_RATE0_BY_ECM_CF ,765,24,31,.1,0,1,V/s,220078,620078,ff,E_DU_RATE1_BY_AC_CF ,765,24,31,.1,0,1,V/s,220079,620079,ff,E_DU_RATE1_BY_BCM_CF ,765,24,31,.1,0,1,V/s,22007A,62007A,ff,E_DU_RATE1_BY_ECM_CF ,765,24,31,.1,0,1,V/s,22007B,62007B,ff,E_DU_RATE2_BY_AC_CF ,765,24,31,.1,0,1,V/s,22007C,62007C,ff,E_DU_RATE2_BY_BCM_CF ,765,24,31,.1,0,1,V/s,22007D,62007D,ff,E_DU_RATE2_BY_ECM_CF ,765,24,31,.1,0,1,V/s,22007E,62007E,ff,E_DU_RATE3_BY_AC_CF ,765,24,31,.1,0,1,V/s,22007F,62007F,ff,E_DU_RATE3_BY_BCM_CF ,765,24,31,.1,0,1,V/s,220080,620080,ff,E_DU_RATE3_BY_ECM_CF ,765,24,39,.1,0,1,A,220081,620081,1ff,E_I_BATT_MAX_CF ,765,24,31,.01,0,2,A,220082,620082,ff,E_K_BATTHIGHVOLTAGE_MAX_HIGH_CF ,765,24,31,.01,0,2,A,220083,620083,ff,E_K_BATTHIGHVOLTAGE_MAX_LOW_CF ,765,24,31,1,0,0,%,220084,620084,ff,E_PCT_FLOATINGSOCHIGH_CF ,765,24,31,1,0,0,%,220085,620085,ff,E_PCT_FLOATINGSOCLOW_CF ,765,24,31,1,40,0,°C,220086,620086,ff,E_TEMP_BATT_MIN_CF ,765,24,31,1,40,0,°C,220087,620087,ff,E_TEMP_FLOATINGINHIBIT_CF ,765,24,31,1,40,0,°C,220088,620088,ff,E_TETA_HIGH_CF ,765,24,31,.1,0,1,V,220089,620089,ff,E_U_AC_MIN_CF ,765,24,31,.1,0,1,V,22008A,62008A,ff,E_U_BATT_MAX_CF ,765,24,31,.1,0,1,V,22008B,62008B,ff,E_U_BATT_MIN_CF ,765,24,31,.1,0,1,V,22008C,62008C,ff,E_U_BATT_RECALAGEPS100PCT_CF ,765,24,31,.1,0,1,V,22008D,62008D,ff,E_U_BATT_VOLTAGENETWORK_MAX_CF ,765,24,31,.1,0,1,V,22008E,62008E,ff,E_U_BCM_MIN_CF ,765,24,31,.1,0,1,V,22008F,62008F,ff,E_U_ECM_MAXLHM_CF ,765,24,31,.1,0,1,V,220090,620090,ff,E_U_ECM_MIN_CF ,765,24,31,.1,0,1,V,220091,620091,ff,E_U_ESM_BATT_MIN_CF ,765,24,31,.1,0,1,V,220092,620092,ff,E_U_FLOATING_CF ,765,24,39,.001,0,3,V,220093,620093,ff,E_U_HIGHVOLTAGETHRESHOLD_CF ,765,24,31,.1,0,1,V,220094,620094,ff,E_U_OFFSETMAX_CF ,765,24,31,.1,0,1,V,220095,620095,ff,E_U_OFFSETMIN_CF ,765,24,31,.1,0,1,V,220096,620096,ff,E_U_OPTIVOLTNODISCHARGE_CF ,765,24,31,.1,0,1,V,220097,620097,ff,E_U_REGEESM_CF ,765,24,31,.1,0,1,V,220098,620098,ff,E_U_STEER_MIN_CF ,765,24,31,1,40,0,°C,220099,620099,ff,E_TETA_LOW_CF ,765,24,55,1,0,0,,22009A,62009A,4ff,E_K_HIGHVOLTAGEFILTER_A0_CF ,765,24,55,1,0,0,,22009B,62009B,4ff,E_K_HIGHVOLTAGEFILTER_B0_CF ,765,24,55,1,0,0,,22009C,62009C,4ff,E_K_RALACCINHIBITIONFILTER_A0_CF ,765,24,55,1,0,0,,22009D,62009D,4ff,E_K_RALACCINHIBITIONFILTER_B0_CF ,765,24,31,.1,0,1,V/s,22009E,62009E,ff,E_DU_ESM_NEG_RATE_CF ,765,24,31,.1,0,1,V,22009F,62009F,ff,E_U_BATTFOROFFSETMAX_CF ,765,24,31,.1,0,1,V,2200A0,6200A0,ff,E_U_BATTFOROFFSETMIN_CF ,765,24,39,.01,0,2,%,2200A1,6200A1,ff,E1D_PCT_SOCINTERESM_125 0 ,765,40,55,.01,0,2,%,2200A1,6200A1,ff,E1D_PCT_SOCINTERESM_125 1 ,765,56,71,.01,0,2,%,2200A1,6200A1,ff,E1D_PCT_SOCINTERESM_125 2 ,765,72,87,.01,0,2,%,2200A1,6200A1,ff,E1D_PCT_SOCINTERESM_125 3 ,765,88,103,.01,0,2,%,2200A1,6200A1,ff,E1D_PCT_SOCINTERESM_125 4 ,765,104,119,.01,0,2,%,2200A1,6200A1,ff,E1D_PCT_SOCINTERESM_125 5 ,765,120,135,.01,0,2,%,2200A1,6200A1,ff,E1D_PCT_SOCINTERESM_125 6 ,765,136,151,.01,0,2,%,2200A1,6200A1,ff,E1D_PCT_SOCINTERESM_125 7 ,765,24,39,.01,0,2,%,2200A2,6200A2,ff,E1D_PCT_SOCINTERESM_130 0 ,765,40,55,.01,0,2,%,2200A2,6200A2,ff,E1D_PCT_SOCINTERESM_130 1 ,765,56,71,.01,0,2,%,2200A2,6200A2,ff,E1D_PCT_SOCINTERESM_130 2 ,765,72,87,.01,0,2,%,2200A2,6200A2,ff,E1D_PCT_SOCINTERESM_130 3 ,765,88,103,.01,0,2,%,2200A2,6200A2,ff,E1D_PCT_SOCINTERESM_130 4 ,765,104,119,.01,0,2,%,2200A2,6200A2,ff,E1D_PCT_SOCINTERESM_130 5 ,765,120,135,.01,0,2,%,2200A2,6200A2,ff,E1D_PCT_SOCINTERESM_130 6 ,765,136,151,.01,0,2,%,2200A2,6200A2,ff,E1D_PCT_SOCINTERESM_130 7 ,765,24,39,.01,0,2,%,2200A3,6200A3,ff,E1D_PCT_SOCINTERESM_135 0 ,765,40,55,.01,0,2,%,2200A3,6200A3,ff,E1D_PCT_SOCINTERESM_135 1 ,765,56,71,.01,0,2,%,2200A3,6200A3,ff,E1D_PCT_SOCINTERESM_135 2 ,765,72,87,.01,0,2,%,2200A3,6200A3,ff,E1D_PCT_SOCINTERESM_135 3 ,765,88,103,.01,0,2,%,2200A3,6200A3,ff,E1D_PCT_SOCINTERESM_135 4 ,765,104,119,.01,0,2,%,2200A3,6200A3,ff,E1D_PCT_SOCINTERESM_135 5 ,765,120,135,.01,0,2,%,2200A3,6200A3,ff,E1D_PCT_SOCINTERESM_135 6 ,765,136,151,.01,0,2,%,2200A3,6200A3,ff,E1D_PCT_SOCINTERESM_135 7 ,765,24,39,.01,0,2,%,2200A4,6200A4,ff,E1D_PCT_SOCINTERESM_140 0 ,765,40,55,.01,0,2,%,2200A4,6200A4,ff,E1D_PCT_SOCINTERESM_140 1 ,765,56,71,.01,0,2,%,2200A4,6200A4,ff,E1D_PCT_SOCINTERESM_140 2 ,765,72,87,.01,0,2,%,2200A4,6200A4,ff,E1D_PCT_SOCINTERESM_140 3 ,765,88,103,.01,0,2,%,2200A4,6200A4,ff,E1D_PCT_SOCINTERESM_140 4 ,765,104,119,.01,0,2,%,2200A4,6200A4,ff,E1D_PCT_SOCINTERESM_140 5 ,765,120,135,.01,0,2,%,2200A4,6200A4,ff,E1D_PCT_SOCINTERESM_140 6 ,765,136,151,.01,0,2,%,2200A4,6200A4,ff,E1D_PCT_SOCINTERESM_140 7 ,765,24,39,.01,0,2,%,2200A5,6200A5,ff,E1D_PCT_SOCINTERESM_145 0 ,765,40,55,.01,0,2,%,2200A5,6200A5,ff,E1D_PCT_SOCINTERESM_145 1 ,765,56,71,.01,0,2,%,2200A5,6200A5,ff,E1D_PCT_SOCINTERESM_145 2 ,765,72,87,.01,0,2,%,2200A5,6200A5,ff,E1D_PCT_SOCINTERESM_145 3 ,765,88,103,.01,0,2,%,2200A5,6200A5,ff,E1D_PCT_SOCINTERESM_145 4 ,765,104,119,.01,0,2,%,2200A5,6200A5,ff,E1D_PCT_SOCINTERESM_145 5 ,765,120,135,.01,0,2,%,2200A5,6200A5,ff,E1D_PCT_SOCINTERESM_145 6 ,765,136,151,.01,0,2,%,2200A5,6200A5,ff,E1D_PCT_SOCINTERESM_145 7 ,765,24,31,1,40,0,°C,2200A6,6200A6,ff,E1D_TEMP_INTERESM_150 0 ,765,32,39,1,40,0,°C,2200A6,6200A6,ff,E1D_TEMP_INTERESM_150 1 ,765,40,47,1,40,0,°C,2200A6,6200A6,ff,E1D_TEMP_INTERESM_150 2 ,765,48,55,1,40,0,°C,2200A6,6200A6,ff,E1D_TEMP_INTERESM_150 3 ,765,56,63,1,40,0,°C,2200A6,6200A6,ff,E1D_TEMP_INTERESM_150 4 ,765,64,71,1,40,0,°C,2200A6,6200A6,ff,E1D_TEMP_INTERESM_150 5 ,765,72,79,1,40,0,°C,2200A6,6200A6,ff,E1D_TEMP_INTERESM_150 6 ,765,80,87,1,40,0,°C,2200A6,6200A6,ff,E1D_TEMP_INTERESM_150 7 ,765,24,39,.001,0,3,V,2200A7,6200A7,ff,E1D_U_INTERESM_125 0 ,765,40,55,.001,0,3,V,2200A7,6200A7,ff,E1D_U_INTERESM_125 1 ,765,56,71,.001,0,3,V,2200A7,6200A7,ff,E1D_U_INTERESM_125 2 ,765,72,87,.001,0,3,V,2200A7,6200A7,ff,E1D_U_INTERESM_125 3 ,765,88,103,.001,0,3,V,2200A7,6200A7,ff,E1D_U_INTERESM_125 4 ,765,104,119,.001,0,3,V,2200A7,6200A7,ff,E1D_U_INTERESM_125 5 ,765,120,135,.001,0,3,V,2200A7,6200A7,ff,E1D_U_INTERESM_125 6 ,765,24,39,.001,0,3,V,2200A8,6200A8,ff,E1D_U_INTERESM_130 0 ,765,40,55,.001,0,3,V,2200A8,6200A8,ff,E1D_U_INTERESM_130 1 ,765,56,71,.001,0,3,V,2200A8,6200A8,ff,E1D_U_INTERESM_130 2 ,765,72,87,.001,0,3,V,2200A8,6200A8,ff,E1D_U_INTERESM_130 3 ,765,88,103,.001,0,3,V,2200A8,6200A8,ff,E1D_U_INTERESM_130 4 ,765,104,119,.001,0,3,V,2200A8,6200A8,ff,E1D_U_INTERESM_130 5 ,765,120,135,.001,0,3,V,2200A8,6200A8,ff,E1D_U_INTERESM_130 6 ,765,24,39,.001,0,3,V,2200A9,6200A9,ff,E1D_U_INTERESM_135 0 ,765,40,55,.001,0,3,V,2200A9,6200A9,ff,E1D_U_INTERESM_135 1 ,765,56,71,.001,0,3,V,2200A9,6200A9,ff,E1D_U_INTERESM_135 2 ,765,72,87,.001,0,3,V,2200A9,6200A9,ff,E1D_U_INTERESM_135 3 ,765,88,103,.001,0,3,V,2200A9,6200A9,ff,E1D_U_INTERESM_135 4 ,765,104,119,.001,0,3,V,2200A9,6200A9,ff,E1D_U_INTERESM_135 5 ,765,120,135,.001,0,3,V,2200A9,6200A9,ff,E1D_U_INTERESM_135 6 ,765,24,39,.001,0,3,V,2200AA,6200AA,ff,E1D_U_INTERESM_140 0 ,765,40,55,.001,0,3,V,2200AA,6200AA,ff,E1D_U_INTERESM_140 1 ,765,56,71,.001,0,3,V,2200AA,6200AA,ff,E1D_U_INTERESM_140 2 ,765,72,87,.001,0,3,V,2200AA,6200AA,ff,E1D_U_INTERESM_140 3 ,765,88,103,.001,0,3,V,2200AA,6200AA,ff,E1D_U_INTERESM_140 4 ,765,104,119,.001,0,3,V,2200AA,6200AA,ff,E1D_U_INTERESM_140 5 ,765,120,135,.001,0,3,V,2200AA,6200AA,ff,E1D_U_INTERESM_140 6 ,765,24,39,.001,0,3,V,2200AB,6200AB,ff,E1D_U_INTERESM_145 0 ,765,40,55,.001,0,3,V,2200AB,6200AB,ff,E1D_U_INTERESM_145 1 ,765,56,71,.001,0,3,V,2200AB,6200AB,ff,E1D_U_INTERESM_145 2 ,765,72,87,.001,0,3,V,2200AB,6200AB,ff,E1D_U_INTERESM_145 3 ,765,88,103,.001,0,3,V,2200AB,6200AB,ff,E1D_U_INTERESM_145 4 ,765,104,119,.001,0,3,V,2200AB,6200AB,ff,E1D_U_INTERESM_145 5 ,765,120,135,.001,0,3,V,2200AB,6200AB,ff,E1D_U_INTERESM_145 6 ,765,24,31,.1,0,1,V,2200AC,6200AC,ff,E1D_U_INTERESM_150 0 ,765,32,39,.1,0,1,V,2200AC,6200AC,ff,E1D_U_INTERESM_150 1 ,765,40,47,.1,0,1,V,2200AC,6200AC,ff,E1D_U_INTERESM_150 2 ,765,48,55,.1,0,1,V,2200AC,6200AC,ff,E1D_U_INTERESM_150 3 ,765,56,63,.1,0,1,V,2200AC,6200AC,ff,E1D_U_INTERESM_150 4 ,765,64,71,.1,0,1,V,2200AC,6200AC,ff,E1D_U_INTERESM_150 5 ,765,72,79,.1,0,1,V,2200AC,6200AC,ff,E1D_U_INTERESM_150 6 ,765,80,87,.1,0,1,V,2200AC,6200AC,ff,E1D_U_INTERESM_150 7 ,765,24,24,1,0,0,,2200AD,6200AD,ff,E_B_STOPSTARTINHIBIT_CF,1:true;0:false ,765,24,24,1,0,0,,2200AE,6200AE,ff,E_B_SOCAUTHORIZEDESM_INIT_CF,1:true;0:false ,765,24,24,1,0,0,,2200AF,6200AF,ff,E_B_SOCFORDOD_ESM_INIT_CF,1:true;0:false ,765,24,24,1,0,0,,2200B0,6200B0,ff,E_B_SOCFORDOD_SS_INIT_CF,1:true;0:false ,765,24,39,.1,0,1,A,2200B1,6200B1,1ff,E_I_CURRENTSTOP_BATT_MAX_CF ,765,24,31,.1,0,1,%,2200B2,6200B2,ff,E_PCT_SOCAUTHORIZEDESM_HYST_CF ,765,24,31,1,0,0,%,2200B3,6200B3,ff,E_PCT_SOCAUTHORIZEDESM_MIN_CF ,765,24,31,.1,0,1,%,2200B4,6200B4,ff,E_PCT_SOCFORDOD_ESM_HYST_CF ,765,24,31,1,0,0,%,2200B5,6200B5,ff,E_PCT_SOCFORDOD_ESM_MIN_CF ,765,24,31,.1,0,1,%,2200B6,6200B6,ff,E_PCT_SOCFORDOD_SS_HYST_CF ,765,24,31,1,0,0,%,2200B7,6200B7,ff,E_PCT_SOCFORDOD_SS_MIN_CF ,765,24,31,1,40,0,°C,2200B8,6200B8,ff,E_TEMP_BATT_STOPSTART_CF ,765,24,31,1,0,0,s,2200B9,6200B9,ff,E_TM_CURRENTSTOP_MAX_CF ,765,24,24,1,0,0,,2200BA,6200BA,ff,E_B_INHIBITESMINDELIVERY_CF,1:true;0:false ,765,24,24,1,0,0,,2200BB,6200BB,ff,E_B_INHIBITSSINDELIVERY_CF,1:true;0:false ,765,24,39,.01,0,2,%,2200BC,6200BC,ff,E1D_PCT_DOD_ESM_X 0 ,765,40,55,.01,0,2,%,2200BC,6200BC,ff,E1D_PCT_DOD_ESM_X 1 ,765,24,39,.01,0,2,%,2200BD,6200BD,ff,E1D_PCT_DOD_ESM_Y 0 ,765,40,55,.01,0,2,%,2200BD,6200BD,ff,E1D_PCT_DOD_ESM_Y 1 ,765,24,39,.01,0,2,%,2200BE,6200BE,ff,E1D_PCT_DOD_SS_X 0 ,765,40,55,.01,0,2,%,2200BE,6200BE,ff,E1D_PCT_DOD_SS_X 1 ,765,24,39,.01,0,2,%,2200BF,6200BF,ff,E1D_PCT_DOD_SS_Y 0 ,765,40,55,.01,0,2,%,2200BF,6200BF,ff,E1D_PCT_DOD_SS_Y 1 ,765,24,24,1,0,0,,2200C0,6200C0,ff,E_B_SOFINHIBITION_CF,1:true;0:false ,765,24,31,1,0,0,,2200C1,6200C1,ff,E_K_SOFCOUNTER_MAX_CF ,765,24,31,1,0,0,,2200C2,6200C2,ff,E_K_SOFCOUNTER_MIN_CF ,765,24,31,1,0,0,,2200C3,6200C3,ff,E_K_SOFCOUNTER_STEP_MAX_CF ,765,24,31,1,0,0,,2200C4,6200C4,ff,E_K_SOFCOUNTER_STEP_MIN_CF ,765,24,39,.01,0,2,%,2200C5,6200C5,ff,E_PCT_SOCMINFORSOF_CF ,765,24,39,.001,0,3,V,2200C6,6200C6,ff,E_U_SOFAUTOSTARTOFFSET_CF ,765,24,31,1,40,0,°C,2200C7,6200C7,ff,E_TEMP_BATTMINFORSOF_CF ,765,24,31,1,40,0,°C,2200C8,6200C8,ff,E1D_TEMP_SOFTHRESHOLD 0 ,765,32,39,1,40,0,°C,2200C8,6200C8,ff,E1D_TEMP_SOFTHRESHOLD 1 ,765,40,47,1,40,0,°C,2200C8,6200C8,ff,E1D_TEMP_SOFTHRESHOLD 2 ,765,48,55,1,40,0,°C,2200C8,6200C8,ff,E1D_TEMP_SOFTHRESHOLD 3 ,765,56,63,1,40,0,°C,2200C8,6200C8,ff,E1D_TEMP_SOFTHRESHOLD 4 ,765,64,71,1,40,0,°C,2200C8,6200C8,ff,E1D_TEMP_SOFTHRESHOLD 5 ,765,24,39,.001,0,3,V,2200C9,6200C9,ff,E1D_U_SOFTRESHOLD 0 ,765,40,55,.001,0,3,V,2200C9,6200C9,ff,E1D_U_SOFTRESHOLD 1 ,765,56,71,.001,0,3,V,2200C9,6200C9,ff,E1D_U_SOFTRESHOLD 2 ,765,72,87,.001,0,3,V,2200C9,6200C9,ff,E1D_U_SOFTRESHOLD 3 ,765,88,103,.001,0,3,V,2200C9,6200C9,ff,E1D_U_SOFTRESHOLD 4 ,765,104,119,.001,0,3,V,2200C9,6200C9,ff,E1D_U_SOFTRESHOLD 5 ,765,24,24,1,0,0,,2200CA,6200CA,ff,E_B_MMILOADSHEDDING_ACTIV_CF,1:true;0:false ,765,24,24,1,0,0,,2200CB,6200CB,ff,E_B_MMILOWBATTCUSTOM_ACTIV_CF,1:true;0:false ,765,24,24,1,0,0,,2200CC,6200CC,ff,E_B_MMILOWBATTDELIV_ACTIV_CF,1:true;0:false ,765,24,31,1,0,0,,2200CD,6200CD,ff,E_K_BATTCURRENT_LEVELALERT_CF ,765,24,31,1,0,0,,2200CE,6200CE,ff,E_K_BATTERYLEVELALERT_CF ,765,24,31,1,0,0,,2200CF,6200CF,ff,E_K_ECM2USM_LEVEL_CF ,765,24,39,1,0,0,,2200D0,6200D0,ff,E_K_JAUGECHARGEDMOTORON_CF ,765,24,31,1,0,0,,2200D1,6200D1,ff,E_K_OVERVOLTAGE_LEVELALERT_CF ,765,24,31,1,0,0,,2200D2,6200D2,ff,E_K_UNDERVOLTAGE_LEVELALERT_CF ,765,24,31,1,0,0,,2200D3,6200D3,ff,E_K_VOLTAGEMESLEVELALERT_CF ,765,24,39,1,0,0,s,2200D4,6200D4,ff,E_TM_TIMEMAXOFLOWBATTVOLTDISP_CF ,765,24,39,1,0,0,s,2200D5,6200D5,ff,E_TM_TIMEMINTOINFORMCHARGDISP_CF ,765,24,39,1,0,0,s,2200D6,6200D6,ff,E_TM_WAITCUSTOMERMODE_CF ,765,24,39,1,0,0,s,2200D7,6200D7,ff,E_TM_WAITDELIVERYMODE_CF ,765,24,24,1,0,0,,2200D8,6200D8,ff,E_B_ESMINHIBITIONBYLIGHTS_CF,1:true;0:false ,765,24,31,1,0,0,%,2200D9,6200D9,ff,E_K_JAUGEMIN_LIGHTS_CF ,765,24,31,1,40,0,°C,2200DA,6200DA,ff,E_TEMP_BATTMIN_LIGHTS_CF ,765,24,31,1,40,0,°C,2200DB,6200DB,ff,E_TEMP_ENGINEMIN_LIGHTS_CF ,765,24,31,15,0,0,s,2200DC,6200DC,ff,E_TM_NOLIGHTLIMITATION_CF ,765,24,31,.1,0,1,V,2200DD,6200DD,ff,E_U_MAX_BY_LIGHTS_CF ,765,24,39,.001,0,3,V,2200DE,6200DE,ff,E1D_U_RALACC 0 ,765,40,55,.001,0,3,V,2200DE,6200DE,ff,E1D_U_RALACC 1 ,765,56,71,.001,0,3,V,2200DE,6200DE,ff,E1D_U_RALACC 2 ,765,24,39,.001,0,3,V,2200DF,6200DF,ff,E1D_U_RALACC_THRESHOLD 0 ,765,40,55,.001,0,3,V,2200DF,6200DF,ff,E1D_U_RALACC_THRESHOLD 1 ,765,56,71,.001,0,3,V,2200DF,6200DF,ff,E1D_U_RALACC_THRESHOLD 2 ,765,24,39,.001,0,3,,2200E0,6200E0,ff,E_K_COEFSUPPLYUOCV_CF ,765,24,39,.001,0,3,,2200E1,6200E1,ff,E_K_COEFSUPPLYVOLTAGE_CF ,765,24,39,.00001,0,3,Ohm,2200E2,6200E2,ff,E_R_BATTERYGROUND_CF ,765,24,39,.001,0,3,Ohm,2200E3,6200E3,ff,E_R_HARNESS_1_CF ,765,24,39,.001,0,3,Ohm,2200E4,6200E4,ff,E_R_HARNESS_2_CF ,765,24,39,.001,0,3,V,2200E5,6200E5,ff,E_U_ECUSUPPLY1_OFFSET_CF ,765,24,39,.001,0,3,V,2200E6,6200E6,ff,E_U_ECUSUPPLY2_OFFSET_CF ,765,24,39,.001,0,3,V,2200E7,6200E7,ff,E_U_ECUSUPPLYUOCV_OFFSET_CF ,765,24,39,.001,0,3,V,2200E8,6200E8,ff,E_U_OCSIGNG_OFFSET_CF ,765,24,39,.001,0,3,,2200E9,6200E9,ff,E_TAU_BATT_USM_CF ,765,24,31,1,0,0,mV,2200EA,6200EA,ff,E_U_BATTOCVSTAB_THRESHOLD_CF ,765,24,24,1,0,0,,2200EB,6200EB,ff,E_B_AUTOSTART_HV_CF,1:true;0:false ,765,24,24,1,0,0,,2200EC,6200EC,ff,E_B_BATTCURRSENSOR_PRESNT_CF,1:true;0:false ,765,24,24,1,0,0,,2200ED,6200ED,ff,STOPSTART_TYPE_CF,1:true;0:false ,765,24,31,1,0,0,,2200EE,6200EE,ff,DRIVER_DOOR_INACTIVE_THRESHOLD_CF ,765,24,24,1,0,0,,2200EF,6200EF,ff,E_B_ENGINESTATUS_CHECK_CF,1:true;0:false ,765,24,24,1,0,0,,2200F1,6200F1,ff,E_B_BCSFILTERINHIBITION_CF,1:true;0:false ,765,24,24,1,0,0,,2200F2,6200F2,ff,E_B_SOFDIAGCHOICE_1_CF,1:true;0:false ,765,24,24,1,0,0,,2200F3,6200F3,ff,E_B_SOFDIAGCHOICE_2_CF,1:true;0:false ,765,24,24,1,0,0,,2200F4,6200F4,ff,E_B_SOFDIAGCHOICE_3_CF,1:true;0:false ,765,24,24,1,0,0,,2200F5,6200F5,ff,E_B_SOFDIAGCHOICE_4_CF,1:true;0:false ,765,24,24,1,0,0,,2200F6,6200F6,ff,E_B_SOFDIAGCHOICE_5_CF,1:true;0:false ,765,24,24,1,0,0,,2200F7,6200F7,ff,E_B_SOFDIAGCHOICE_6_CF,1:true;0:false ,765,24,24,1,0,0,,2200F8,6200F8,ff,E_B_SOFDIAGCHOICE_7_CF,1:true;0:false ,765,24,24,1,0,0,,2200F9,6200F9,ff,E_B_SOFDIAGCHOICE_8_CF,1:true;0:false ,765,24,31,.01,0,2,,2200FA,6200FA,ff,E_TM_PBCURRENT_CF ,765,24,31,.01,0,2,,2200FC,6200FC,ff,E_TM_SOFCALCULATION_CF ,765,24,24,1,0,0,,2200FD,6200FD,ff,CLIM_TYPE,1:true;0:false ,765,24,24,1,0,0,,2200FE,6200FE,ff,EE_ARCHI_CF,1:true;0:false ,765,24,31,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 0 ,765,32,39,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 1 ,765,40,47,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 2 ,765,48,55,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 3 ,765,56,63,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 4 ,765,64,71,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 5 ,765,72,79,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 6 ,765,80,87,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 7 ,765,88,95,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 8 ,765,96,103,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 9 ,765,104,111,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 10 ,765,112,119,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 11 ,765,120,127,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 12 ,765,128,135,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 13 ,765,136,143,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 14 ,765,144,151,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 15 ,765,152,159,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 16 ,765,160,167,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 17 ,765,168,175,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 18 ,765,176,183,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 19 ,765,184,191,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 20 ,765,192,199,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 21 ,765,200,207,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 22 ,765,208,215,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 23 ,765,216,223,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 24 ,765,224,231,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 25 ,765,232,239,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 26 ,765,240,247,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 27 ,765,248,255,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 28 ,765,256,263,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 29 ,765,264,271,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 30 ,765,272,279,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 31 ,765,280,287,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 32 ,765,288,295,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 33 ,765,296,303,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 34 ,765,304,311,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 35 ,765,312,319,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 36 ,765,320,327,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 37 ,765,328,335,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 38 ,765,336,343,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 39 ,765,344,351,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 40 ,765,352,359,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 41 ,765,360,367,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 42 ,765,368,375,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 43 ,765,376,383,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 44 ,765,384,391,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 45 ,765,392,399,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 46 ,765,400,407,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 47 ,765,408,415,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 48 ,765,416,423,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 49 ,765,424,431,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 50 ,765,432,439,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 51 ,765,440,447,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 52 ,765,448,455,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 53 ,765,456,463,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 54 ,765,464,471,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 55 ,765,472,479,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 56 ,765,480,487,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 57 ,765,488,495,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 58 ,765,496,503,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 59 ,765,504,511,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 60 ,765,512,519,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 61 ,765,520,527,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 62 ,765,528,535,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 63 ,765,536,543,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 64 ,765,544,551,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 65 ,765,552,559,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 66 ,765,560,567,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 67 ,765,568,575,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 68 ,765,576,583,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 69 ,765,584,591,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 70 ,765,592,599,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 71 ,765,600,607,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 72 ,765,608,615,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 73 ,765,616,623,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 74 ,765,624,631,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 75 ,765,632,639,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 76 ,765,640,647,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 77 ,765,648,655,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 78 ,765,656,663,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 79 ,765,664,671,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 80 ,765,672,679,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 81 ,765,680,687,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 82 ,765,688,695,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 83 ,765,696,703,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 84 ,765,704,711,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 85 ,765,712,719,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 86 ,765,720,727,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 87 ,765,728,735,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 88 ,765,736,743,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 89 ,765,744,751,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 90 ,765,752,759,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 91 ,765,760,767,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 92 ,765,768,775,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 93 ,765,776,783,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 94 ,765,784,791,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 95 ,765,792,799,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 96 ,765,800,807,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 97 ,765,808,815,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 98 ,765,816,823,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 99 ,765,824,831,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 100 ,765,832,839,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 101 ,765,840,847,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 102 ,765,848,855,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 103 ,765,856,863,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 104 ,765,864,871,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 105 ,765,872,879,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 106 ,765,880,887,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 107 ,765,888,895,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 108 ,765,896,903,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 109 ,765,904,911,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 110 ,765,912,919,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 111 ,765,920,927,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 112 ,765,928,935,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 113 ,765,936,943,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 114 ,765,944,951,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 115 ,765,952,959,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 116 ,765,960,967,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 117 ,765,968,975,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 118 ,765,976,983,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 119 ,765,984,991,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 120 ,765,992,999,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 121 ,765,1000,1007,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 122 ,765,1008,1015,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 123 ,765,1016,1023,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 124 ,765,1024,1031,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 125 ,765,1032,1039,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 126 ,765,1040,1047,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 127 ,765,1048,1055,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 128 ,765,1056,1063,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 129 ,765,1064,1071,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 130 ,765,1072,1079,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 131 ,765,1080,1087,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 132 ,765,1088,1095,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 133 ,765,1096,1103,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 134 ,765,1104,1111,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 135 ,765,1112,1119,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 136 ,765,1120,1127,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 137 ,765,1128,1135,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 138 ,765,1136,1143,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 139 ,765,1144,1151,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 140 ,765,1152,1159,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 141 ,765,1160,1167,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 142 ,765,1168,1175,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 143 ,765,1176,1183,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 144 ,765,1184,1191,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 145 ,765,1192,1199,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 146 ,765,1200,1207,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 147 ,765,1208,1215,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 148 ,765,1216,1223,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 149 ,765,1224,1231,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 150 ,765,1232,1239,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 151 ,765,1240,1247,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 152 ,765,1248,1255,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 153 ,765,1256,1263,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 154 ,765,1264,1271,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 155 ,765,1272,1279,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 156 ,765,1280,1287,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 157 ,765,1288,1295,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 158 ,765,1296,1303,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 159 ,765,1304,1311,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 160 ,765,1312,1319,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 161 ,765,1320,1327,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 162 ,765,1328,1335,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 163 ,765,1336,1343,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 164 ,765,1344,1351,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 165 ,765,1352,1359,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 166 ,765,1360,1367,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 167 ,765,1368,1375,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 168 ,765,1376,1383,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 169 ,765,1384,1391,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 170 ,765,1392,1399,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 171 ,765,1400,1407,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 172 ,765,1408,1415,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 173 ,765,1416,1423,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 174 ,765,1424,1431,.05,0,2,,2200FF,6200FF,ff,E2D_K_RENDSOC 175 ,765,24,24,1,0,0,,220100,620100,ff,SOC_INIT_TYPE_CF,1:true;0:false ,765,24,31,1,40,0,°C,220101,620101,ff,EXTERNALTEMP_MIN_FOR_VOLTRATE ,765,24,31,1,40,0,°C,220102,620102,ff,EXTERNALTEMP_MAX_FOR_VOLTRATE ,765,24,31,1,0,0,,220103,620103,ff,VOLTRATE_TEXTMAX,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,24,31,1,0,0,,220104,620104,ff,VOLTRATE_TEXTMID,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,24,31,1,0,0,,220105,620105,ff,VOLTRATE_TEXTMIN,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,24,55,1,0,0,,220106,620106,4ff,DELIVERYMODE_THRESHOLD_CF ,765,24,31,.1,0,1,V/s,220107,620107,ff,E_DU_ESM_MIN_NEG_RATE_CF ,765,24,31,.1,0,1,V/s,220108,620108,ff,E_DU_ESM_MIN_POS_RATE_CF ,765,24,31,.1,0,1,V,220109,620109,ff,E_U_ESM_STEP_CF ,765,24,39,1,0,0,km/h,22010A,62010A,ff,ESCL_STOP_VEHICLE_SPEED_THRESHOLD_TP ,765,24,31,10,0,0,ms,22010B,62010B,ff,MAX_CRANK_ON_VERLOG_NOK_TM_TP ,765,24,39,.001,0,3,V,22010C,62010C,ff,E_U_BATT_NOCHARGE_CF ,765,24,39,10,0,0,,22010E,62010E,ff,STORED_HP_PUMP_ACTIVATION_COUNTER_S ,765,24,39,10,0,0,,22010F,62010F,ff,STORED_STARTER_ACTIVATION_COUNTER_S ,765,24,24,1,0,0,,220110,620110,ff,STOP_BY_SMART_CF,1:true;0:false ,765,24,24,1,0,0,,220111,620111,ff,WITH_SCP_CF,1:true;0:false ,765,24,39,.01,0,2,V,220112,620112,ff,PWM_STOP_LAMP_BULB_VOLTAGE_CF 0 ,765,40,55,.01,0,2,V,220112,620112,ff,PWM_STOP_LAMP_BULB_VOLTAGE_CF 1 ,765,56,71,.01,0,2,V,220112,620112,ff,PWM_STOP_LAMP_BULB_VOLTAGE_CF 2 ,765,72,87,.01,0,2,V,220112,620112,ff,PWM_STOP_LAMP_BULB_VOLTAGE_CF 3 ,765,24,31,1,0,0,%,220113,620113,ff,PWM_STOP_LAMP_BULB_RATIO_CF 0 ,765,32,39,1,0,0,%,220113,620113,ff,PWM_STOP_LAMP_BULB_RATIO_CF 1 ,765,40,47,1,0,0,%,220113,620113,ff,PWM_STOP_LAMP_BULB_RATIO_CF 2 ,765,48,55,1,0,0,%,220113,620113,ff,PWM_STOP_LAMP_BULB_RATIO_CF 3 ,765,24,39,.01,0,2,V,220114,620114,ff,PWM_STOP_LAMP_LED_VOLTAGE_CF 0 ,765,40,55,.01,0,2,V,220114,620114,ff,PWM_STOP_LAMP_LED_VOLTAGE_CF 1 ,765,56,71,.01,0,2,V,220114,620114,ff,PWM_STOP_LAMP_LED_VOLTAGE_CF 2 ,765,72,87,.01,0,2,V,220114,620114,ff,PWM_STOP_LAMP_LED_VOLTAGE_CF 3 ,765,24,31,1,0,0,%,220115,620115,ff,PWM_STOP_LAMP_LED_RATIO_CF 0 ,765,32,39,1,0,0,%,220115,620115,ff,PWM_STOP_LAMP_LED_RATIO_CF 1 ,765,40,47,1,0,0,%,220115,620115,ff,PWM_STOP_LAMP_LED_RATIO_CF 2 ,765,48,55,1,0,0,%,220115,620115,ff,PWM_STOP_LAMP_LED_RATIO_CF 3 ,765,24,24,1,0,0,,220116,620116,ff,STOP_LAMP_WITH_LED_CF,1:true;0:false ,765,24,24,1,0,0,,220117,620117,ff,STOP_LAMP_WITH_PWM_CF,1:true;0:false ,765,24,39,.01,0,2,V,220118,620118,ff,STOP_OFFSET_CF ,765,24,24,1,0,0,,220119,620119,ff,WITH_RES_TIMER_2H_CF,1:true;0:false ,765,24,39,.01,0,2,s,22011A,62011A,ff,TIMER_ACOFF_FILTER_CF ,765,24,31,1,0,0,,22011B,62011B,ff,RES_CLIM_CF,0:NO_RES_CLIM;1:RES_CLIM_LEVEL_0;2:RES_CLIM_LEVEL_1 ,765,24,31,1,40,0,°C,22011C,62011C,ff,MAX_TEMPERATURE_RES_TIMER_2H_CF ,765,24,24,1,0,0,,22011D,62011D,ff,WITH_REMOTE_START_CF,1:true;0:false ,765,24,39,.01,0,2,s,22011E,62011E,ff,RES_TIMER_IN_SECONDS_TM_CF ,765,24,24,1,0,0,,22011F,62011F,ff,WITH_AT_RES_AUTHORIZATION_CF,1:true;0:false ,765,24,24,1,0,0,,221001,621001,ff,ANTI_HIJACK_CF,1:true;0:false ,765,25,25,1,0,0,,221001,621001,ff,BTN_TAILGATE_OPENING_CF,1:true;0:false ,765,26,26,1,0,0,,221001,621001,ff,CHILD_LOCK_SWITCH_REVERSE_CF,1:true;0:false ,765,27,27,1,0,0,,221001,621001,ff,CRASH_DETECTION_CF,1:true;0:false ,765,28,28,1,0,0,,221001,621001,ff,DRIVER_ON_RIGHT_SIDE_CF,1:true;0:false ,765,29,29,1,0,0,,221001,621001,ff,LOCK_UNLOCK_BUTTON_CF,1:true;0:false ,765,30,30,1,0,0,,221001,621001,ff,PLANT_LOCK_WITH_SPEED_CF,1:true;0:false ,765,31,31,1,0,0,,221001,621001,ff,RKE_BACK_DOORS_CF,1:true;0:false ,765,32,32,1,0,0,,221001,621001,ff,SUPERLOCK_CF,1:true;0:false ,765,33,33,1,0,0,,221001,621001,ff,REVERSE_SW_ON_BACK_DOOR_CF,1:true;0:false ,765,34,34,1,0,0,,221001,621001,ff,REVERSE_SW_ON_FL_DOOR_CF,1:true;0:false ,765,35,35,1,0,0,,221001,621001,ff,REVERSE_SW_ON_FR_DOOR_CF,1:true;0:false ,765,36,36,1,0,0,,221001,621001,ff,CL_PTCArchi ,765,37,37,1,0,0,,221001,621001,ff,CL_AlternatorLoadArchi ,765,38,38,1,0,0,,221001,621001,ff,CL_PTCType ,765,39,39,1,0,0,,221001,621001,ff,BIPBIP_LOCK_CF,1:true;0:false ,765,40,40,1,0,0,,221001,621001,ff,PANIC_BUTTON_CF,1:true;0:false ,765,41,41,1,0,0,,221001,621001,ff,KNOB_CF,1:true;0:false ,765,42,42,1,0,0,,221001,621001,ff,REVERSE_SW_ON_RL_DOOR_CF,1:true;0:false ,765,43,43,1,0,0,,221001,621001,ff,LOAD_AREA_CF,1:true;0:false ,765,44,44,1,0,0,,221001,621001,ff,LATCH_TYPE_ON_BACK_DOOR_CF,1:true;0:false ,765,45,45,1,0,0,,221001,621001,ff,DOORLOCK_OUTPUT_CF,1:true;0:false ,765,46,46,1,0,0,,221001,621001,ff,REVERSE_SW_ON_RR_DOOR_CF,1:true;0:false ,765,47,47,1,0,0,,221001,621001,ff,INFOCLUTCH_DIAG_AUTO_DYN_CF,1:true;0:false ,765,48,48,1,0,0,,221001,621001,ff,INFOCLUTCH_DIAG_AUTO_STATIC_CF,1:true;0:false ,765,49,49,1,0,0,,221001,621001,ff,INFOCLUTCH_DIAG_END_DYN_CF,1:true;0:false ,765,50,50,1,0,0,,221001,621001,ff,INFOCLUTCH_DIAG_END_STATIC_CF,1:true;0:false ,765,51,51,1,0,0,,221001,621001,ff,INFOCLUTCH_DIAG_START_DYN_CF,1:true;0:false ,765,52,52,1,0,0,,221001,621001,ff,INFOCLUTCH_DIAG_START_STATIC_CF,1:true;0:false ,765,53,53,1,0,0,,221001,621001,ff,HAZARD_WITH_BRAKE_CF,1:true;0:false ,765,54,54,1,0,0,,221001,621001,ff,HAZARD_WITH_CRASH_CF,1:true;0:false ,765,55,55,1,0,0,,221001,621001,ff,OVERLOAD_BY_SMART_CF,1:true;0:false ,765,56,56,1,0,0,,221001,621001,ff,T_PULSE_CF,1:true;0:false ,765,57,57,1,0,0,,221001,621001,ff,BRAKE_ECU_PRESENT_CF,1:true;0:false ,765,58,58,1,0,0,,221001,621001,ff,ALARM_PRESENT_CF,1:true;0:false ,765,59,59,1,0,0,,221001,621001,ff,ANTI_JUMP_AUTO_CF,1:true;0:false ,765,60,60,1,0,0,,221001,621001,ff,AT_CF,1:true;0:false ,765,61,61,1,0,0,,221001,621001,ff,IGNITION_RELAY_IN_EMM_CF,1:true;0:false ,765,62,62,1,0,0,,221001,621001,ff,IS_TAILGATE_DIAG_INHIBITED_CF,1:true;0:false ,765,63,63,1,0,0,,221001,621001,ff,PLANT_START_SEQ_INHIBITION_CF,1:true;0:false ,765,64,64,1,0,0,,221001,621001,ff,STARTER_WITH_RELAY_CF,1:true;0:false ,765,65,65,1,0,0,,221001,621001,ff,STARTER_PROTECTION_CF,1:true;0:false ,765,66,66,1,0,0,,221001,621001,ff,ANTI_JUMP_MANU_CF,1:true;0:false ,765,67,67,1,0,0,,221001,621001,ff,END_CLUTCH_USED_FOR_AUTOSTART_CF,1:true;0:false ,765,68,68,1,0,0,,221001,621001,ff,BRAKE_FAIL1_DETECTION_CF,1:true;0:false ,765,69,69,1,0,0,,221001,621001,ff,BRAKE_FAIL2_DETECTION_CF,1:true;0:false ,765,70,70,1,0,0,,221001,621001,ff,STOP_LAMP_ELEC_FAIL_DETECT_CF,1:true;0:false ,765,71,71,1,0,0,,221001,621001,ff,EMM_CF,1:true;0:false ,765,72,72,1,0,0,,221001,621001,ff,AUTO_WINDOW_CLOSING_CF,1:true;0:false ,765,73,73,1,0,0,,221001,621001,ff,INHIB_LVAR_CF,1:true;0:false ,765,74,74,1,0,0,,221001,621001,ff,ACTIVATE_INTERIOR_LIGHTING_CF,1:true;0:false ,765,75,75,1,0,0,,221001,621001,ff,LOCK_CRYPTO_PAGES_CF,1:true;0:false ,765,76,76,1,0,0,,221001,621001,ff,INTERMITTENT_RING_CF,1:true;0:false ,765,77,77,1,0,0,,221001,621001,ff,WIPING_BY_EMM_CF,1:true;0:false ,765,78,78,1,0,0,,221001,621001,ff,BREAKEVEN_POINT_CF,1:true;0:false ,765,79,79,1,0,0,,221001,621001,ff,BREAKEVEN_POINT_ALWAYS_PRESENT_DETECTION_CF,1:true;0:false ,765,80,80,1,0,0,,221001,621001,ff,BREAKEVEN_POINT_NEVER_PRESENT_DETECTION_CF,1:true;0:false ,765,81,81,1,0,0,,221001,621001,ff,REAR_GEAR_ALWAYS_PRESENT_DETECTION_CF,1:true;0:false ,765,82,82,1,0,0,,221001,621001,ff,LIGHTING_BY_EMM_CF,1:true;0:false ,765,83,83,1,0,0,,221001,621001,ff,PERIMETRIC_ALARM_CF,1:true;0:false ,765,84,84,1,0,0,,221001,621001,ff,SEPARATED_TAILGATE_CF,1:true;0:false ,765,85,85,1,0,0,,221001,621001,ff,UNDERHOOD_CF,1:true;0:false ,765,86,86,1,0,0,,221001,621001,ff,MMI_START_CF,1:true;0:false ,765,87,87,1,0,0,,221001,621001,ff,WITH_PARK_POSITION_CF,1:true;0:false ,765,88,88,1,0,0,,221001,621001,ff,LONG_TEMPO_DISPLAY_CF,1:true;0:false ,765,89,89,1,0,0,,221001,621001,ff,LINKED_WITH_REVERSE_CF,1:true;0:false ,765,90,90,1,0,0,,221001,621001,ff,REAR_WIPER_AF_CF,1:true;0:false ,765,91,91,1,0,0,,221001,621001,ff,REAR_WIPER_CF,1:true;0:false ,765,92,92,1,0,0,,221001,621001,ff,KEY_REMINDER_WARNING_CF,1:true;0:false ,765,93,93,1,0,0,,221001,621001,ff,SOC_INIT_CF,1:true;0:false ,765,94,94,1,0,0,,221001,621001,ff,TPMS_AUTOLEARNING_ACTIVED ,765,95,95,1,0,0,,221001,621001,ff,TPMS_FLAG_MISSING_SENSOR_ENABLE ,765,96,96,1,0,0,,221001,621001,ff,PC_SIGNALISATION_CF,1:true;0:false ,765,97,97,1,0,0,,221001,621001,ff,HORN_SMARTPHONE_CAN_FB_CF,1:true;0:false ,765,98,98,1,0,0,,221001,621001,ff,ELECTRICAL_VEH_CF,1:true;0:false ,765,99,99,1,0,0,,221001,621001,ff,FRONT_DEFROST_CF,1:true;0:false ,765,100,100,1,0,0,,221001,621001,ff,OPENABLE_ROOF_CF,1:true;0:false ,765,101,101,1,0,0,,221001,621001,ff,CID_EXT_MEM_CF,1:true;0:false ,765,102,102,1,0,0,,221001,621001,ff,ECOMODE_PREVIOUS_RESTART_CF,1:true;0:false ,765,103,103,1,0,0,,221001,621001,ff,RKE_BACK_DOOR_OPENING_CF,1:true;0:false ,765,104,104,1,0,0,,221001,621001,ff,CLIMATE_CONTROL_UNIT_CF,1:true;0:false ,765,105,105,1,0,0,,221001,621001,ff,TPMS_PRESENCE_SSPP ,765,106,106,1,0,0,,221001,621001,ff,TPMS_RECEIVER_PRESENT ,765,107,107,1,0,0,,221001,621001,ff,ECHO_RF_CF,1:true;0:false ,765,108,108,1,0,0,,221001,621001,ff,OPEN_REAR_SIDE_DOOR_ARE_NOT_LOCKABLE_CF,1:true;0:false ,765,109,109,1,0,0,,221001,621001,ff,STOPSTART_TYPE_CF,1:true;0:false ,765,110,110,1,0,0,,221001,621001,ff,CLIM_TYPE,1:true;0:false ,765,111,111,1,0,0,,221001,621001,ff,EE_ARCHI_CF,1:true;0:false ,765,112,119,10,0,0,ms,221001,621001,ff,GEAR_POSITION_TIMER_TM_CF ,765,120,127,1,0,0,,221001,621001,ff,HAND_BRAKE_CF,0:HB_NOT_USED_FOR_S_AND_S;1:HB_USED_FOR_S_AND_S ,765,128,135,.5,0,1,bar,221001,621001,ff,BK_PRESSURE_THRESHOLD_FOR_START_CF ,765,144,151,1,0,0,,221001,621001,ff,TPMS_UND_INF_ALERT_FIX_ RATE_ON ,765,152,159,1,0,0,,221001,621001,ff,TPMS_PRESSURE_ALERT_FIX_ RATE_OFF ,765,160,167,1,0,0,,221001,621001,ff,TPMS_UND_INF_ALERT_VAR_ RATE_ON ,765,168,175,1,0,0,,221001,621001,ff,TPMS_PRESSURE_ALERT_VAR_ RATE_OFF ,765,176,183,1,30,0,°C,221001,621001,ff,TPMS_LOW_BATT_THRESHOLD_ALERT ,765,184,191,1,0,0,,221001,621001,ff,TPMS_PUNCT_ALERT_FIX_ RATE_ON ,765,192,199,1,0,0,,221001,621001,ff,TPMS_INCOH_PRESS_THRESHOLD ,765,200,207,1,0,0,,221001,621001,ff,TPMS_INCOH_TEMP_THRESHOLD ,765,208,215,1,30,0,°C,221001,621001,ff,TPMS_MAX_TREF_VALUE ,765,216,223,1,0,0,,221001,621001,ff,TPMS_LEARNING_P1_PARAM ,765,224,231,.05,0,2,,221001,621001,ff,TPMS_LEARNING_P2_PARAM ,765,232,239,1,0,0,,221001,621001,ff,TPMS_PRESS_LEARN_NB_FRAME_MEAN ,765,240,247,1,0,0,,221001,621001,ff,TPMS_LEARN_RESET_MAX_VALUE ,765,248,255,1,0,0,,221001,621001,ff,TPMS_LEARNING_MATRIX_SIZE ,765,256,263,1,0,0,,221001,621001,ff,TPMS_LEARN_NEWID_MAX_COUNT ,765,264,271,1,0,0,,221001,621001,ff,TPMS_LEARN_KNOWNID_MAX_COUNT ,765,272,279,1,0,0,,221001,621001,ff,TPMS_INTERNAL_INCOH_THRESHOLD_ON ,765,280,287,1,0,0,,221001,621001,ff,TPMS_THRESHOLD_PUNCT_ALERT_ON ,765,288,295,1,0,0,,221001,621001,ff,TPMS_THRESHOLD_PUNCT_ALERT_OFF ,765,296,303,1,0,0,,221001,621001,ff,TPMS_THRD_UNDER_INF_ALERT_ON ,765,304,311,1,0,0,,221001,621001,ff,TPMS_THRD_UNDER_INF_ALERT_OFF ,765,312,319,1,0,0,,221001,621001,ff,TPMS_INTERNAL_INCOH_THRESHOLD_OFF ,765,320,327,1,0,0,km/h,221001,621001,ff,LWS_SPEED_THRESH_CF ,765,328,335,1,0,0,,221001,621001,ff,PRECOND_BY_KEY_CF,0:PC_BY_KEY_NOT_EQUIPED;1:PC_BY_KEY_1;2:PC_BY_KEY_2;3:PC_BY_KEY_3;4:PC_BY_KEY_4 ,765,336,343,1,0,0,,221001,621001,ff,TPMS_VEH_RUNNING_THRESHOLD ,765,344,351,1,0,0,,221001,621001,ff,TPMS_VEH_STOPPED_THRESHOLD ,765,352,359,1,0,0,,221001,621001,ff,TPMS_MISSING_THRESHOLD_ALERT ,765,360,367,1,0,0,,221001,621001,ff,TPMS_TIMEOUT_MISSING_SENSOR ,765,368,375,1,0,0,,221001,621001,ff,TPMS_VEH_RUNNING_ON_DELAY ,765,376,383,1,0,0,,221001,621001,ff,TPMS_VEH_STOPPED_ON_DELAY ,765,384,391,10,0,0,,221001,621001,ff,TPMS_TIMEOUT_OFF_VALIDITY_DATA ,765,392,399,1,0,0,s,221001,621001,ff,TPMS_APV_PROCESS_TIMOUT ,765,400,407,1,0,0,,221001,621001,ff,DRIVER_DOOR_INACTIVE_THRESHOLD_CF ,765,408,415,1,40,0,°C,221001,621001,ff,EXTERNALTEMP_MIN_FOR_VOLTRATE ,765,416,423,1,40,0,°C,221001,621001,ff,EXTERNALTEMP_MAX_FOR_VOLTRATE ,765,424,431,1,0,0,,221001,621001,ff,VOLTRATE_TEXTMAX,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,432,439,1,0,0,,221001,621001,ff,VOLTRATE_TEXTMID,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,440,447,1,0,0,,221001,621001,ff,VOLTRATE_TEXTMIN,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,448,455,10,0,0,ms,221001,621001,ff,MAX_CRANK_ON_VERLOG_NOK_TM_TP ,765,456,471,1.66666666666667E-04,0,3,min,221001,621001,ff,AUTO_RELOCK_TIMEOUT_CF ,765,472,487,.01,0,2,s,221001,621001,ff,MAX_ENGINE_START_SEQ_TM_CF ,765,488,503,1.66666666666667E-04,0,3,min,221001,621001,ff,IMMO_TIMEOUT_AFTER_SALES_MODE_TM_CF ,765,504,519,.01,0,2,s,221001,621001,ff,IMMO_TIME_OUT_LEARNING_KEY_TM_CF ,765,520,535,.01,0,2,s,221001,621001,ff,LONG_PRESS_TM_CF ,765,536,551,10,0,0,ms,221001,621001,ff,REAR_WIPER_PROTECTION_TM_CF ,765,552,567,1,0,0,km/h,221001,621001,ff,REAR_WIPER_INT_SPEED_TH_CF 0 ,765,568,583,1,0,0,km/h,221001,621001,ff,REAR_WIPER_INT_SPEED_TH_CF 1 ,765,584,599,1,0,0,km/h,221001,621001,ff,REAR_WIPER_INT_SPEED_TH_CF 2 ,765,600,615,10,0,0,ms,221001,621001,ff,REAR_WIPER_INT_VALUES_TM_CF 0 ,765,616,631,10,0,0,ms,221001,621001,ff,REAR_WIPER_INT_VALUES_TM_CF 1 ,765,632,647,10,0,0,ms,221001,621001,ff,REAR_WIPER_INT_VALUES_TM_CF 2 ,765,648,663,10,0,0,ms,221001,621001,ff,REAR_WIPER_INT_VALUES_TM_CF 3 ,765,664,679,10,0,0,,221001,621001,ff,TPMS_REF_PRESS_HIGH_SPEED_FRONT ,765,680,695,10,0,0,,221001,621001,ff,TPMS_REF_PRESS_HIGH_SPEED_REAR ,765,696,711,10,0,0,,221001,621001,ff,TPMS_REF_PRESS_LOW_SPEED_FRONT ,765,712,727,10,0,0,,221001,621001,ff,TPMS_REF_PRESS_LOW_SPEED_REAR ,765,728,743,1,0,0,,221001,621001,ff,TPMS_ATMO_EXTERN_PRESS ,765,744,759,.125,0,1,%,221001,621001,ff,RAW_SENSOR_START_AUTO_THRESHOLD_CF ,765,760,775,1,0,0,,221001,621001,ff,TPMS_TIMEOUT_VALVE_VEH_STOPPED ,765,776,791,7.5,0,0,,221001,621001,ff,TPMS_PRESS_MEAS_ERROR ,765,792,807,.01,0,2,s,221001,621001,ff,HORN_DURATION_TM_CF ,765,808,823,1,0,0,km/h,221001,621001,ff,ESCL_STOP_VEHICLE_SPEED_THRESHOLD_TP ,765,824,855,1,0,0,,221001,621001,4ff,PL1_MAX_BY_INTLIGHTS_TM_CF ,765,856,887,1,0,0,,221001,621001,4ff,TECHNICAL_TIMER_TM_CF ,765,888,903,.01,0,2,s,221001,621001,ff,CAN_EMISSION_DURATION_TM_CF ,765,24,24,1,0,0,,221002,621002,ff,BATT_CURR_SENSOR_LIN_CF,1:true;0:false ,765,27,27,1,0,0,,221002,621002,ff,ECOMODE_RESTART_CF,1:true;0:false ,765,28,28,1,0,0,,221002,621002,ff,WITH_FRONT_DEFROST_BUTTON_CF,1:true;0:false ,765,31,31,1,0,0,,221002,621002,ff,WITH_RES_RKE_CF,1:true;0:false ,765,192,199,1,0,0,,221002,621002,ff,DELIVERYMODE_TYPE_CF,0:OLD_DELIVERY_MODE;1:NEW_DELIVERY_MODE ,765,200,207,1,0,0,,221002,621002,ff,ECO_SWITCH_TYPE_CF,0:NO_BUTTON_SW;1:ECO_BUTTON_SW;2:MEX_BUTTON_SW ,765,216,223,1,0,0,,221002,621002,ff,AUTO_LIGHT_CF,0:ALS_DEACTIVATED;1:ALS_WITH_RLS;2:ALS_WITH_ANALOG_SENSOR ,765,224,239,10,0,0,mV,221002,621002,ff,C_U_BATSCLH ,765,240,255,10,0,0,mV,221002,621002,ff,C_U_BATSCLL ,765,256,271,1,0,0,s,221002,621002,ff,C_TM_TBATSCC ,765,272,287,1,0,0,s,221002,621002,ff,C_TM_TBATSC ,765,288,303,.1,0,1,V,221002,621002,ff,C_U_BATT_THRESHOLDCURRSENSDIAG ,765,304,304,1,0,0,,221002,621002,ff,C_B_BATTSENS_MEDSTICKDIAG,1:true;0:false ,765,305,305,1,0,0,,221002,621002,ff,C_B_BATTSENS_LOWOUTPUTDIAG,1:true;0:false ,765,306,306,1,0,0,,221002,621002,ff,C_B_BATTSENS_HIGHOUTPUTDIAG,1:true;0:false ,765,307,307,1,0,0,,221002,621002,ff,C_B_BATTSENS_FCT1DIAG,1:true;0:false ,765,308,308,1,0,0,,221002,621002,ff,C_B_BATTSENS_FCT2DIAG,1:true;0:false ,765,309,309,1,0,0,,221002,621002,ff,C_B_BATTTEMPSENSOR_PRESENT,1:true;0:false ,765,312,327,1,0,0,mV,221002,621002,ff,C_U_BATSCD ,765,328,343,1,0,0,s,221002,621002,ff,C_TM_TBATSL ,765,344,359,10,0,0,mV,221002,621002,ff,C_U_FSBATSL ,765,360,375,1,0,0,s,221002,621002,ff,C_TM_TBATSH ,765,376,391,10,0,0,mV,221002,621002,ff,C_U_FSBATSH ,765,392,407,1,0,0,s,221002,621002,ff,C_TM_TBATSR ,765,408,415,1,120,0,A,221002,621002,ff,C_I_ALTOFS ,765,416,423,.1,0,1,V,221002,621002,ff,C_U_BATTVOLTFUN2THRESHOLD ,765,424,439,10,0,0,mV,221002,621002,ff,C_U_BATTSENSOUTPUTFUN2THRESHOLD ,765,440,455,.1,0,1,V,221002,621002,ff,C_U_ALTREQFUN2THRESHOLD ,765,456,463,1,0,0,,221002,621002,ff,C_K_CURKJU ,765,464,479,.00025,0,3,,221002,621002,ff,C_K_BATSSLP ,765,480,487,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 0 ,765,496,503,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 1 ,765,512,519,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 2 ,765,528,535,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 3 ,765,544,551,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 4 ,765,560,567,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 5 ,765,576,583,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 6 ,765,592,599,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 7 ,765,608,615,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 8 ,765,624,631,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 9 ,765,640,647,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 10 ,765,656,663,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 11 ,765,672,679,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 12 ,765,688,695,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 13 ,765,704,711,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 14 ,765,720,727,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 15 ,765,736,743,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 16 ,765,752,759,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 17 ,765,768,775,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 18 ,765,784,791,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 19 ,765,800,807,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 20 ,765,816,823,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 21 ,765,832,839,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 22 ,765,848,855,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 23 ,765,864,871,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 24 ,765,880,887,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 25 ,765,896,903,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 26 ,765,912,919,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 27 ,765,928,935,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 28 ,765,944,951,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 29 ,765,960,967,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 30 ,765,976,983,.02,0,2,V,221002,621002,ff,C1D_U_BATTTEMPSENS_HW 31 ,765,24,24,1,0,0,,221003,621003,ff,E_B_RECALAGEPS100PCT_INHIBIT_CF,1:true;0:false ,765,25,25,1,0,0,,221003,621003,ff,E_K_FRONTBATTERY_TYPE_CF,1:true;0:false ,765,26,26,1,0,0,,221003,621003,ff,E_B_ESMINHIBIT_CF,1:true;0:false ,765,27,27,1,0,0,,221003,621003,ff,E_B_FLOATINGINHIBIT_CF,1:true;0:false ,765,28,28,1,0,0,,221003,621003,ff,E_B_NEGATIVE_1_POSNEG_RATE_CF,1:true;0:false ,765,29,29,1,0,0,,221003,621003,ff,E_B_STOPSTARTINHIBIT_CF,1:true;0:false ,765,30,30,1,0,0,,221003,621003,ff,E_B_SOCAUTHORIZEDESM_INIT_CF,1:true;0:false ,765,31,31,1,0,0,,221003,621003,ff,E_B_SOCFORDOD_ESM_INIT_CF,1:true;0:false ,765,32,32,1,0,0,,221003,621003,ff,E_B_SOCFORDOD_SS_INIT_CF,1:true;0:false ,765,33,33,1,0,0,,221003,621003,ff,E_B_INHIBITESMINDELIVERY_CF,1:true;0:false ,765,34,34,1,0,0,,221003,621003,ff,E_B_INHIBITSSINDELIVERY_CF,1:true;0:false ,765,35,35,1,0,0,,221003,621003,ff,E_B_SOFINHIBITION_CF,1:true;0:false ,765,36,36,1,0,0,,221003,621003,ff,E_B_MMILOADSHEDDING_ACTIV_CF,1:true;0:false ,765,37,37,1,0,0,,221003,621003,ff,E_B_MMILOWBATTCUSTOM_ACTIV_CF,1:true;0:false ,765,38,38,1,0,0,,221003,621003,ff,E_B_MMILOWBATTDELIV_ACTIV_CF,1:true;0:false ,765,39,39,1,0,0,,221003,621003,ff,E_B_ESMINHIBITIONBYLIGHTS_CF,1:true;0:false ,765,40,40,1,0,0,,221003,621003,ff,E_B_AUTOSTART_HV_CF,1:true;0:false ,765,41,41,1,0,0,,221003,621003,ff,E_B_BATTCURRSENSOR_PRESNT_CF,1:true;0:false ,765,42,42,1,0,0,,221003,621003,ff,E_B_ENGINESTATUS_CHECK_CF,1:true;0:false ,765,43,43,1,0,0,,221003,621003,ff,E_B_BCSFILTERINHIBITION_CF,1:true;0:false ,765,44,44,1,0,0,,221003,621003,ff,E_B_SOFDIAGCHOICE_1_CF,1:true;0:false ,765,45,45,1,0,0,,221003,621003,ff,E_B_SOFDIAGCHOICE_2_CF,1:true;0:false ,765,46,46,1,0,0,,221003,621003,ff,E_B_SOFDIAGCHOICE_3_CF,1:true;0:false ,765,47,47,1,0,0,,221003,621003,ff,E_B_SOFDIAGCHOICE_4_CF,1:true;0:false ,765,48,48,1,0,0,,221003,621003,ff,E_B_SOFDIAGCHOICE_5_CF,1:true;0:false ,765,49,49,1,0,0,,221003,621003,ff,E_B_SOFDIAGCHOICE_6_CF,1:true;0:false ,765,50,50,1,0,0,,221003,621003,ff,E_B_SOFDIAGCHOICE_7_CF,1:true;0:false ,765,51,51,1,0,0,,221003,621003,ff,E_B_SOFDIAGCHOICE_8_CF,1:true;0:false ,765,52,52,1,0,0,,221003,621003,ff,SOC_INIT_TYPE_CF,1:true;0:false ,765,56,63,.02,0,2,Hz,221003,621003,ff,E_KI_UALT_CF ,765,64,71,.02,0,2,,221003,621003,ff,E_KP_UALT_CF ,765,72,79,1,0,0,s,221003,621003,ff,E_TM_ALTREGACTIVWOCAN_CF ,765,80,87,1,0,0,s,221003,621003,ff,E_TM_DEFAULT_COMMFROMECM_CF ,765,88,95,1,0,0,s,221003,621003,ff,E_TM_LIM_BY_INJ_CF ,765,96,103,1,0,0,s,221003,621003,ff,E_TM_OVERVOLTAGE_CF ,765,104,111,1,0,0,s,221003,621003,ff,E_TM_UNDERVOLTAGE_CF ,765,112,119,.1,0,1,V,221003,621003,ff,E_U_ALT_BATTERYDISCONNEXION_CF ,765,120,127,.005,0,3,V,221003,621003,1ff,E_U_ALT_ERRORNOK_CF ,765,128,135,.005,0,3,V,221003,621003,1ff,E_U_ALT_ERROROK_CF ,765,136,143,.1,0,1,V,221003,621003,ff,E_U_ALT_MIN_CF ,765,144,151,.1,0,1,V,221003,621003,ff,E_U_BATT_VOLTAGENETWORK_MIN_CF ,765,152,159,.1,0,1,s,221003,621003,ff,E_TAU_ALTERNATORLOAD_CF ,765,160,167,.01,0,2,s,221003,621003,ff,E_TAU_UALT_CF ,765,168,175,.01,0,2,V,221003,621003,ff,E_KAW_POS_CF ,765,176,183,.01,0,2,V,221003,621003,1ff,E_KAW_NEG_CF ,765,184,191,1,0,0,%,221003,621003,ff,E_K_RECALAGEPS100PCTSOC_CF ,765,192,199,1,0,0,Ah,221003,621003,ff,E_K_CAPACITENOMINALE_CF ,765,200,207,1,40,0,°C,221003,621003,ff,E_TEMP_BATT_ALERTE_CF ,765,208,215,1,40,0,°C,221003,621003,ff,E_TEMP_RECALAGEPS100PCTTEMPMAX_CF ,765,216,223,1,40,0,°C,221003,621003,ff,E_TEMP_RECALAGEPS100PCTTEMPMIN_CF ,765,224,231,.01,0,2,s,221003,621003,ff,E_TM_BATTERYGAUGEACTIVATION_CF ,765,232,239,.1,0,1,s,221003,621003,ff,E_TM_LIMITTIME_CUSTOMERCONF_CF ,765,240,247,1,40,0,°C,221003,621003,ff,E_TEMP_REF_CF ,765,248,255,.1,0,1,V,221003,621003,ff,E_U_BATT_CHARGERDETECT_CF ,765,256,263,1,0,0,s,221003,621003,ff,E_TM_CONFIRMATIONALERTE_CF ,765,264,271,1,0,0,V,221003,621003,ff,E_PCT_POLARIZEDBATTSOC_OFFSET_CF ,765,272,279,1,0,0,%,221003,621003,ff,E_PCT_SOCAFTERCHARGER_CF ,765,280,287,1,0,0,V,221003,621003,ff,E_PCT_VERYPOLARIZEDBATTSOC_CF ,765,288,295,10,0,0,A,221003,621003,ff,E_K_CCABATTERIENOMINALE_CF ,765,296,303,1,0,0,,221003,621003,ff,E_K_TECHWUCHARGERDETECT_CF ,765,304,311,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 0 ,765,312,319,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 1 ,765,320,327,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 2 ,765,328,335,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 3 ,765,336,343,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 4 ,765,344,351,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 5 ,765,352,359,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 6 ,765,360,367,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 7 ,765,368,375,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 8 ,765,376,383,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 9 ,765,384,391,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 10 ,765,392,399,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 11 ,765,400,407,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 12 ,765,408,415,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 13 ,765,416,423,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 14 ,765,424,431,1,0,0,%,221003,621003,ff,E1D_K_SOCCOEFFSOC 15 ,765,432,439,1,40,0,°C,221003,621003,ff,E1D_TEMP_BATTFORCHARGE 0 ,765,440,447,1,40,0,°C,221003,621003,ff,E1D_TEMP_BATTFORCHARGE 1 ,765,448,455,1,40,0,°C,221003,621003,ff,E1D_TEMP_BATTFORDISCHARGE 0 ,765,456,463,1,40,0,°C,221003,621003,ff,E1D_TEMP_BATTFORDISCHARGE 1 ,765,464,471,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 0 ,765,472,479,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 1 ,765,480,487,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 2 ,765,488,495,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 3 ,765,496,503,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 4 ,765,504,511,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 5 ,765,512,519,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 6 ,765,520,527,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 7 ,765,528,535,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 8 ,765,536,543,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 9 ,765,544,551,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTCOEFFSOC 10 ,765,552,559,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTSOC 0 ,765,560,567,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTSOC 1 ,765,568,575,1,40,0,°C,221003,621003,ff,E1D_TEMP_TEMPBATTSOC 2 ,765,576,583,1,40,0,°C,221003,621003,ff,E1D_TEMPBATT 0 ,765,584,591,1,40,0,°C,221003,621003,ff,E1D_TEMPBATT 1 ,765,592,599,.01,0,2,,221003,621003,ff,E_K_HIGH_LIMIT_MAX_CF ,765,600,607,.01,0,2,,221003,621003,ff,E_K_HIGH_LIMIT_MIN_CF ,765,608,615,.01,0,2,,221003,621003,ff,E_K_LOW_LIMIT_MAX_CF ,765,616,623,.01,0,2,,221003,621003,ff,E_K_LOW_LIMIT_MIN_CF ,765,624,631,1,0,0,,221003,621003,ff,E_K_TEMPGRADIENTMAX_CF ,765,632,639,1,0,0,%,221003,621003,ff,E_PWM_ENGINEFANSPEED_MIN_CF ,765,640,647,1,0,0,km/h,221003,621003,ff,E_S_VEH_LIMIT_MAX_CF ,765,648,655,1,0,0,km/h,221003,621003,ff,E_S_VEH_LIMIT_MIN_CF ,765,656,663,1,40,0,°C,221003,621003,ff,E_TEMP_DEFAULTENGINECOOLANTTEMP_CF ,765,664,671,1,40,0,°C,221003,621003,ff,E_TEMP_EQ_EXT_LIMIT_MAX_CF ,765,672,679,1,40,0,°C,221003,621003,ff,E_TEMP_EQ_EXT_LIMIT_MIN_CF ,765,680,687,.5,100,1,°C,221003,621003,ff,E_TEMP_MNPOFS_CF ,765,688,695,1,0,0,,221003,621003,ff,E_E_VOLTAGE_RATE_AC_LHM_CF,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,696,703,1,0,0,,221003,621003,ff,E_E_VOLTAGE_RATE_BCM_LHM_CF,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,704,711,.1,0,1,V/s,221003,621003,ff,E_DU_CHARGE_RATE_CF ,765,712,719,1,0,0,,221003,621003,ff,E_E_VOLTAGE_RATE_ECM_LHM_CF,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,720,727,.1,0,1,V/s,221003,621003,ff,E_DU_ESM_POS_FROZEN_CF ,765,728,735,.1,0,1,V/s,221003,621003,ff,E_DU_ESM_POS_LIMIT_CF ,765,736,743,.1,0,1,V/s,221003,621003,ff,E_DU_ESM_POS_RATE_CF ,765,744,751,.1,0,1,V/s,221003,621003,ff,E_DU_FLOAT_RATE_CF ,765,752,759,.1,0,1,V/s,221003,621003,ff,E_DU_RATE0_BY_AC_CF ,765,760,767,.1,0,1,V/s,221003,621003,ff,E_DU_RATE0_BY_BCM_CF ,765,768,775,.1,0,1,V/s,221003,621003,ff,E_DU_RATE0_BY_ECM_CF ,765,776,783,.1,0,1,V/s,221003,621003,ff,E_DU_RATE1_BY_AC_CF ,765,784,791,.1,0,1,V/s,221003,621003,ff,E_DU_RATE1_BY_BCM_CF ,765,792,799,.1,0,1,V/s,221003,621003,ff,E_DU_RATE1_BY_ECM_CF ,765,800,807,.1,0,1,V/s,221003,621003,ff,E_DU_RATE2_BY_AC_CF ,765,808,815,.1,0,1,V/s,221003,621003,ff,E_DU_RATE2_BY_BCM_CF ,765,816,823,.1,0,1,V/s,221003,621003,ff,E_DU_RATE2_BY_ECM_CF ,765,824,831,.1,0,1,V/s,221003,621003,ff,E_DU_RATE3_BY_AC_CF ,765,832,839,.1,0,1,V/s,221003,621003,ff,E_DU_RATE3_BY_BCM_CF ,765,840,847,.1,0,1,V/s,221003,621003,ff,E_DU_RATE3_BY_ECM_CF ,765,848,855,.01,0,2,A,221003,621003,ff,E_K_BATTHIGHVOLTAGE_MAX_HIGH_CF ,765,856,863,.01,0,2,A,221003,621003,ff,E_K_BATTHIGHVOLTAGE_MAX_LOW_CF ,765,864,871,1,0,0,%,221003,621003,ff,E_PCT_FLOATINGSOCHIGH_CF ,765,872,879,1,0,0,%,221003,621003,ff,E_PCT_FLOATINGSOCLOW_CF ,765,880,887,1,40,0,°C,221003,621003,ff,E_TEMP_BATT_MIN_CF ,765,888,895,1,40,0,°C,221003,621003,ff,E_TEMP_FLOATINGINHIBIT_CF ,765,896,903,1,40,0,°C,221003,621003,ff,E_TETA_HIGH_CF ,765,904,911,.1,0,1,V,221003,621003,ff,E_U_AC_MIN_CF ,765,912,919,.1,0,1,V,221003,621003,ff,E_U_BATT_MAX_CF ,765,920,927,.1,0,1,V,221003,621003,ff,E_U_BATT_MIN_CF ,765,928,935,.1,0,1,V,221003,621003,ff,E_U_BATT_RECALAGEPS100PCT_CF ,765,936,943,.1,0,1,V,221003,621003,ff,E_U_BATT_VOLTAGENETWORK_MAX_CF ,765,944,951,.1,0,1,V,221003,621003,ff,E_U_BCM_MIN_CF ,765,24,31,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 0 ,765,32,39,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 1 ,765,40,47,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 2 ,765,48,55,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 3 ,765,56,63,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 4 ,765,64,71,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 5 ,765,72,79,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 6 ,765,80,87,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 7 ,765,88,95,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 8 ,765,96,103,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 9 ,765,104,111,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 10 ,765,112,119,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 11 ,765,120,127,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 12 ,765,128,135,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 13 ,765,136,143,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 14 ,765,144,151,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 15 ,765,152,159,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 16 ,765,160,167,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 17 ,765,168,175,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 18 ,765,176,183,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 19 ,765,184,191,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 20 ,765,192,199,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 21 ,765,200,207,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 22 ,765,208,215,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 23 ,765,216,223,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 24 ,765,224,231,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 25 ,765,232,239,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 26 ,765,240,247,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 27 ,765,248,255,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 28 ,765,256,263,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 29 ,765,264,271,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 30 ,765,272,279,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 31 ,765,280,287,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 32 ,765,288,295,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 33 ,765,296,303,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 34 ,765,304,311,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 35 ,765,312,319,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 36 ,765,320,327,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 37 ,765,328,335,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 38 ,765,336,343,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 39 ,765,344,351,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 40 ,765,352,359,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 41 ,765,360,367,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 42 ,765,368,375,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 43 ,765,376,383,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 44 ,765,384,391,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 45 ,765,392,399,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 46 ,765,400,407,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 47 ,765,408,415,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 48 ,765,416,423,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 49 ,765,424,431,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 50 ,765,432,439,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 51 ,765,440,447,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 52 ,765,448,455,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 53 ,765,456,463,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 54 ,765,464,471,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 55 ,765,472,479,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 56 ,765,480,487,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 57 ,765,488,495,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 58 ,765,496,503,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 59 ,765,504,511,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 60 ,765,512,519,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 61 ,765,520,527,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 62 ,765,528,535,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 63 ,765,536,543,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 64 ,765,544,551,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 65 ,765,552,559,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 66 ,765,560,567,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 67 ,765,568,575,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 68 ,765,576,583,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 69 ,765,584,591,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 70 ,765,592,599,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 71 ,765,600,607,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 72 ,765,608,615,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 73 ,765,616,623,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 74 ,765,624,631,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 75 ,765,632,639,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 76 ,765,640,647,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 77 ,765,648,655,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 78 ,765,656,663,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 79 ,765,664,671,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 80 ,765,672,679,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 81 ,765,680,687,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 82 ,765,688,695,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 83 ,765,696,703,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 84 ,765,704,711,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 85 ,765,712,719,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 86 ,765,720,727,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 87 ,765,728,735,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 88 ,765,736,743,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 89 ,765,744,751,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 90 ,765,752,759,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 91 ,765,760,767,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 92 ,765,768,775,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 93 ,765,776,783,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 94 ,765,784,791,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 95 ,765,792,799,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 96 ,765,800,807,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 97 ,765,808,815,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 98 ,765,816,823,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 99 ,765,824,831,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 100 ,765,832,839,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 101 ,765,840,847,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 102 ,765,848,855,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 103 ,765,856,863,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 104 ,765,864,871,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 105 ,765,872,879,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 106 ,765,880,887,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 107 ,765,888,895,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 108 ,765,896,903,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 109 ,765,904,911,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 110 ,765,912,919,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 111 ,765,920,927,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 112 ,765,928,935,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 113 ,765,936,943,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 114 ,765,944,951,.05,0,2,,221004,621004,ff,E2D_K_RENDSOC 115 ,765,24,31,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 116 ,765,32,39,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 117 ,765,40,47,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 118 ,765,48,55,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 119 ,765,56,63,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 120 ,765,64,71,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 121 ,765,72,79,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 122 ,765,80,87,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 123 ,765,88,95,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 124 ,765,96,103,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 125 ,765,104,111,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 126 ,765,112,119,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 127 ,765,120,127,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 128 ,765,128,135,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 129 ,765,136,143,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 130 ,765,144,151,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 131 ,765,152,159,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 132 ,765,160,167,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 133 ,765,168,175,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 134 ,765,176,183,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 135 ,765,184,191,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 136 ,765,192,199,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 137 ,765,200,207,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 138 ,765,208,215,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 139 ,765,216,223,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 140 ,765,224,231,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 141 ,765,232,239,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 142 ,765,240,247,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 143 ,765,248,255,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 144 ,765,256,263,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 145 ,765,264,271,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 146 ,765,272,279,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 147 ,765,280,287,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 148 ,765,288,295,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 149 ,765,296,303,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 150 ,765,304,311,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 151 ,765,312,319,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 152 ,765,320,327,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 153 ,765,328,335,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 154 ,765,336,343,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 155 ,765,344,351,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 156 ,765,352,359,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 157 ,765,360,367,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 158 ,765,368,375,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 159 ,765,376,383,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 160 ,765,384,391,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 161 ,765,392,399,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 162 ,765,400,407,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 163 ,765,408,415,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 164 ,765,416,423,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 165 ,765,424,431,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 166 ,765,432,439,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 167 ,765,440,447,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 168 ,765,448,455,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 169 ,765,456,463,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 170 ,765,464,471,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 171 ,765,472,479,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 172 ,765,480,487,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 173 ,765,488,495,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 174 ,765,496,503,.05,0,2,,221005,621005,ff,E2D_K_RENDSOC 175 ,765,504,511,.1,0,1,V,221005,621005,ff,E_U_ECM_MAXLHM_CF ,765,512,519,.1,0,1,V,221005,621005,ff,E_U_ECM_MIN_CF ,765,520,527,.1,0,1,V,221005,621005,ff,E_U_ESM_BATT_MIN_CF ,765,528,535,.1,0,1,V,221005,621005,ff,E_U_FLOATING_CF ,765,536,543,.1,0,1,V,221005,621005,ff,E_U_OFFSETMAX_CF ,765,544,551,.1,0,1,V,221005,621005,ff,E_U_OFFSETMIN_CF ,765,552,559,.1,0,1,V,221005,621005,ff,E_U_OPTIVOLTNODISCHARGE_CF ,765,560,567,.1,0,1,V,221005,621005,ff,E_U_REGEESM_CF ,765,568,575,.1,0,1,V,221005,621005,ff,E_U_STEER_MIN_CF ,765,576,583,1,40,0,°C,221005,621005,ff,E_TETA_LOW_CF ,765,584,591,.1,0,1,V/s,221005,621005,ff,E_DU_ESM_NEG_RATE_CF ,765,592,599,.1,0,1,V,221005,621005,ff,E_U_BATTFOROFFSETMAX_CF ,765,600,607,.1,0,1,V,221005,621005,ff,E_U_BATTFOROFFSETMIN_CF ,765,608,615,1,40,0,°C,221005,621005,ff,E1D_TEMP_INTERESM_150 0 ,765,616,623,1,40,0,°C,221005,621005,ff,E1D_TEMP_INTERESM_150 1 ,765,624,631,1,40,0,°C,221005,621005,ff,E1D_TEMP_INTERESM_150 2 ,765,632,639,1,40,0,°C,221005,621005,ff,E1D_TEMP_INTERESM_150 3 ,765,640,647,1,40,0,°C,221005,621005,ff,E1D_TEMP_INTERESM_150 4 ,765,648,655,1,40,0,°C,221005,621005,ff,E1D_TEMP_INTERESM_150 5 ,765,656,663,1,40,0,°C,221005,621005,ff,E1D_TEMP_INTERESM_150 6 ,765,664,671,1,40,0,°C,221005,621005,ff,E1D_TEMP_INTERESM_150 7 ,765,672,679,.1,0,1,V,221005,621005,ff,E1D_U_INTERESM_150 0 ,765,680,687,.1,0,1,V,221005,621005,ff,E1D_U_INTERESM_150 1 ,765,688,695,.1,0,1,V,221005,621005,ff,E1D_U_INTERESM_150 2 ,765,696,703,.1,0,1,V,221005,621005,ff,E1D_U_INTERESM_150 3 ,765,704,711,.1,0,1,V,221005,621005,ff,E1D_U_INTERESM_150 4 ,765,712,719,.1,0,1,V,221005,621005,ff,E1D_U_INTERESM_150 5 ,765,720,727,.1,0,1,V,221005,621005,ff,E1D_U_INTERESM_150 6 ,765,728,735,.1,0,1,V,221005,621005,ff,E1D_U_INTERESM_150 7 ,765,736,743,.1,0,1,%,221005,621005,ff,E_PCT_SOCAUTHORIZEDESM_HYST_CF ,765,744,751,1,0,0,%,221005,621005,ff,E_PCT_SOCAUTHORIZEDESM_MIN_CF ,765,752,759,.1,0,1,%,221005,621005,ff,E_PCT_SOCFORDOD_ESM_HYST_CF ,765,760,767,1,0,0,%,221005,621005,ff,E_PCT_SOCFORDOD_ESM_MIN_CF ,765,768,775,.1,0,1,%,221005,621005,ff,E_PCT_SOCFORDOD_SS_HYST_CF ,765,776,783,1,0,0,%,221005,621005,ff,E_PCT_SOCFORDOD_SS_MIN_CF ,765,784,791,1,40,0,°C,221005,621005,ff,E_TEMP_BATT_STOPSTART_CF ,765,792,799,1,0,0,s,221005,621005,ff,E_TM_CURRENTSTOP_MAX_CF ,765,800,807,1,0,0,,221005,621005,ff,E_K_SOFCOUNTER_MAX_CF ,765,808,815,1,0,0,,221005,621005,ff,E_K_SOFCOUNTER_MIN_CF ,765,816,823,1,0,0,,221005,621005,ff,E_K_SOFCOUNTER_STEP_MAX_CF ,765,824,831,1,0,0,,221005,621005,ff,E_K_SOFCOUNTER_STEP_MIN_CF ,765,832,839,1,40,0,°C,221005,621005,ff,E_TEMP_BATTMINFORSOF_CF ,765,840,847,1,40,0,°C,221005,621005,ff,E1D_TEMP_SOFTHRESHOLD 0 ,765,848,855,1,40,0,°C,221005,621005,ff,E1D_TEMP_SOFTHRESHOLD 1 ,765,856,863,1,40,0,°C,221005,621005,ff,E1D_TEMP_SOFTHRESHOLD 2 ,765,864,871,1,40,0,°C,221005,621005,ff,E1D_TEMP_SOFTHRESHOLD 3 ,765,872,879,1,40,0,°C,221005,621005,ff,E1D_TEMP_SOFTHRESHOLD 4 ,765,880,887,1,40,0,°C,221005,621005,ff,E1D_TEMP_SOFTHRESHOLD 5 ,765,888,895,1,0,0,,221005,621005,ff,E_K_BATTCURRENT_LEVELALERT_CF ,765,896,903,1,0,0,,221005,621005,ff,E_K_BATTERYLEVELALERT_CF ,765,904,911,1,0,0,,221005,621005,ff,E_K_ECM2USM_LEVEL_CF ,765,912,919,1,0,0,,221005,621005,ff,E_K_OVERVOLTAGE_LEVELALERT_CF ,765,920,927,1,0,0,,221005,621005,ff,E_K_UNDERVOLTAGE_LEVELALERT_CF ,765,928,935,1,0,0,,221005,621005,ff,E_K_VOLTAGEMESLEVELALERT_CF ,765,936,943,1,0,0,%,221005,621005,ff,E_K_JAUGEMIN_LIGHTS_CF ,765,944,951,1,40,0,°C,221005,621005,ff,E_TEMP_BATTMIN_LIGHTS_CF ,765,24,31,1,40,0,°C,221006,621006,ff,E_TEMP_ENGINEMIN_LIGHTS_CF ,765,32,39,15,0,0,s,221006,621006,ff,E_TM_NOLIGHTLIMITATION_CF ,765,40,47,.1,0,1,V,221006,621006,ff,E_U_MAX_BY_LIGHTS_CF ,765,48,55,1,0,0,mV,221006,621006,ff,E_U_BATTOCVSTAB_THRESHOLD_CF ,765,56,63,.01,0,2,,221006,621006,ff,E_TM_PBCURRENT_CF ,765,64,71,.01,0,2,,221006,621006,ff,E_TM_SOFCALCULATION_CF ,765,72,79,.1,0,1,V/s,221006,621006,ff,E_DU_ESM_MIN_NEG_RATE_CF ,765,80,87,.1,0,1,V/s,221006,621006,ff,E_DU_ESM_MIN_POS_RATE_CF ,765,88,95,.1,0,1,V,221006,621006,ff,E_U_ESM_STEP_CF ,765,96,111,.0001,0,3,A,221006,621006,1ff,E_K_ICONSFLT_A0_CF ,765,112,127,.0001,0,3,,221006,621006,1ff,E_K_ICONSFLT_B0_CF ,765,128,143,.0001,0,3,,221006,621006,1ff,E_K_PCONSFLT_A0_CF ,765,144,159,.0001,0,3,,221006,621006,1ff,E_K_PCONSFLT_B0_CF ,765,160,175,.01,0,2,%,221006,621006,ff,E_PCT_ALTLOAD_ADMISSIBLE_CF ,765,176,191,.01,0,2,%,221006,621006,ff,E_PCT_ALTLOAD_MAX_CF ,765,192,207,.001,0,3,V,221006,621006,ff,E_U_ALT_START_CF ,765,208,223,.001,0,3,V,221006,621006,ff,E_U_ALTBATTUNDERVOLTAGE_OFFSET_CF ,765,224,239,.001,0,3,V,221006,621006,ff,E_U_BATTUNDERVOLTAGE1_THRESHOLD_CF ,765,240,255,.001,0,3,V,221006,621006,ff,E_U_BATTUNDERVOLTAGE2_THRESHOLD_CF ,765,256,271,.001,0,3,V,221006,621006,ff,E_U_OVERVOLTAGE_SUPPLY_CF ,765,272,287,.01,0,2,%,221006,621006,ff,E_PCT_UNDERVOLTAGE_DF_CF ,765,288,303,.1,0,1,A,221006,621006,1ff,E_I_RECALAGEPS100PCTMAXCURRENT_CF ,765,304,319,.01,0,2,%,221006,621006,ff,E_K_ALERTEPCT_CF ,765,320,335,.01,0,2,,221006,621006,1ff,E_K_COEFFCORRTEMP_CF ,765,336,351,.1,0,1,s,221006,621006,ff,E_TM_CURRENTCONDITIONPS100PCT_CF ,765,352,367,.1,0,1,s,221006,621006,ff,E_TM_RECALAGETIMEPS100PCT_CF ,765,368,383,.001,0,3,V,221006,621006,ff,E_U_BATT_WELLCHARGED_CF ,765,384,399,.001,0,3,V,221006,621006,ff,E_U_RECALAGEPS100PCTVOLTAGEMAX_CF ,765,400,415,.001,0,3,V,221006,621006,ff,E_U_RECALAGEPS100PCTVOLTAGEMIN_CF ,765,416,431,1,0,0,s,221006,621006,ff,E_TM_RECALAGEPS100MAXDURATION_CF ,765,432,447,.01,0,2,%,221006,621006,ff,E_PCT_SOCCURRENT_LIMP_CF ,765,448,463,.0001,0,3,,221006,621006,1ff,E_K_IBATTRECALAGEFLT_A0_CF ,765,464,479,.0001,0,3,,221006,621006,1ff,E_K_IBATTRECALAGEFLT_B0_CF ,765,480,495,.0001,0,3,,221006,621006,1ff,E_K_UBATTRECALAGEFLT_A0_CF ,765,496,511,.0001,0,3,,221006,621006,1ff,E_K_UBATTRECALAGEFLT_B0_CF ,765,512,527,.1,0,1,A,221006,621006,1ff,E_I_BATTFILT_INIT_CF ,765,528,543,.001,0,3,V,221006,621006,ff,E_U_BATTFILT_INIT_CF ,765,544,559,.01,0,2,V,221006,621006,ff,E_U_VERYPOLARIZEDOCV_THRESHOLD_CF ,765,560,575,.001,0,3,V,221006,621006,ff,E_U_COEFFC_CF ,765,576,591,.001,0,3,V,221006,621006,ff,E_U_COEFFD_CF ,765,592,607,.01,0,2,,221006,621006,ff,E1D_K_CHARGECOEFF 0 ,765,608,623,.01,0,2,,221006,621006,ff,E1D_K_CHARGECOEFF 1 ,765,624,639,.01,0,2,,221006,621006,ff,E1D_K_DISCHARGECOEFF 0 ,765,640,655,.01,0,2,,221006,621006,ff,E1D_K_DISCHARGECOEFF 1 ,765,656,671,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 0 ,765,672,687,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 1 ,765,688,703,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 2 ,765,704,719,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 3 ,765,720,735,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 4 ,765,736,751,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 5 ,765,752,767,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 6 ,765,768,783,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 7 ,765,784,799,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 8 ,765,800,815,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 9 ,765,816,831,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 10 ,765,832,847,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 11 ,765,848,863,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 12 ,765,864,879,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 13 ,765,880,895,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 14 ,765,896,911,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 15 ,765,912,927,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 16 ,765,928,943,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 17 ,765,944,959,.005,0,3,%,221006,621006,1ff,E1D_PCT_PCTCCAALERTE 18 ,765,24,39,1,0,0,,221007,621007,1ff,E1D_U_INCREMENT_JAUGEVT 0 ,765,40,55,1,0,0,,221007,621007,1ff,E1D_U_INCREMENT_JAUGEVT 1 ,765,56,71,1,0,0,,221007,621007,1ff,E1D_U_INCREMENT_JAUGEVT 2 ,765,72,87,1,0,0,,221007,621007,1ff,E1D_U_INCREMENT_JAUGEVT 3 ,765,88,103,1,0,0,,221007,621007,1ff,E1D_U_INCREMENT_JAUGEVT 4 ,765,104,119,1,0,0,,221007,621007,1ff,E1D_U_INCREMENT_JAUGEVT 5 ,765,120,135,1,0,0,,221007,621007,1ff,E1D_U_INCREMENT_JAUGEVT 6 ,765,136,151,1,0,0,,221007,621007,1ff,E1D_U_INCREMENT_JAUGEVT 7 ,765,152,167,1,0,0,,221007,621007,1ff,E1D_U_INCREMENT_JAUGEVT 8 ,765,168,183,1,0,0,,221007,621007,1ff,E1D_U_INCREMENT_JAUGEVT 9 ,765,184,199,.001,0,3,V,221007,621007,ff,E1D_U_VBATT_INCJAUGEVT 0 ,765,200,215,.001,0,3,V,221007,621007,ff,E1D_U_VBATT_INCJAUGEVT 1 ,765,216,231,.001,0,3,V,221007,621007,ff,E1D_U_VBATT_INCJAUGEVT 2 ,765,232,247,.001,0,3,V,221007,621007,ff,E1D_U_VBATT_INCJAUGEVT 3 ,765,248,263,.001,0,3,V,221007,621007,ff,E1D_U_VBATT_INCJAUGEVT 4 ,765,264,279,.001,0,3,V,221007,621007,ff,E1D_U_VBATT_INCJAUGEVT 5 ,765,280,295,.001,0,3,V,221007,621007,ff,E1D_U_VBATT_INCJAUGEVT 6 ,765,296,311,.001,0,3,V,221007,621007,ff,E1D_U_VBATT_INCJAUGEVT 7 ,765,312,327,.001,0,3,V,221007,621007,ff,E1D_U_VBATT_INCJAUGEVT 8 ,765,328,343,.001,0,3,V,221007,621007,ff,E1D_U_VBATT_INCJAUGEVT 9 ,765,344,359,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 0 ,765,360,375,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 1 ,765,376,391,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 2 ,765,392,407,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 3 ,765,408,423,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 4 ,765,424,439,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 5 ,765,440,455,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 6 ,765,456,471,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 7 ,765,472,487,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 8 ,765,488,503,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 9 ,765,504,519,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 10 ,765,520,535,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 11 ,765,536,551,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 12 ,765,552,567,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 13 ,765,568,583,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 14 ,765,584,599,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 15 ,765,600,615,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 16 ,765,616,631,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 17 ,765,632,647,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_COLD 18 ,765,648,663,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 0 ,765,664,679,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 1 ,765,680,695,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 2 ,765,696,711,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 3 ,765,712,727,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 4 ,765,728,743,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 5 ,765,744,759,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 6 ,765,760,775,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 7 ,765,776,791,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 8 ,765,792,807,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 9 ,765,808,823,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 10 ,765,824,839,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 11 ,765,840,855,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 12 ,765,856,871,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 13 ,765,872,887,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 14 ,765,888,903,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 15 ,765,904,919,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 16 ,765,920,935,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 17 ,765,936,951,.001,0,3,V,221007,621007,ff,E1D_U_VMINIALERT_WARM 18 ,765,24,39,.001,0,3,V,221008,621008,1ff,E1D_U_OFFSETV_DURINGTECHWAKEUP 0 ,765,40,55,.001,0,3,V,221008,621008,1ff,E1D_U_OFFSETV_DURINGTECHWAKEUP 1 ,765,56,71,.001,0,3,V,221008,621008,1ff,E1D_U_OFFSETV_DURINGTECHWAKEUP 2 ,765,72,87,.001,0,3,V,221008,621008,ff,E1D_U_RES_BATTTHRESHOLD 0 ,765,88,103,.001,0,3,V,221008,621008,ff,E1D_U_RES_BATTTHRESHOLD 1 ,765,104,119,.01,0,2,km/h,221008,621008,ff,E_S_DEFAULTVEHICLESPEED_CF ,765,120,135,.01,0,2,km/h,221008,621008,ff,E_S_MCHTRVSP_CF ,765,136,151,1,0,0,min,221008,621008,ff,E_TAU_ENGINE_CF ,765,152,167,.01,0,2,s,221008,621008,ff,E_TM_TEMPBATTACTIV_DELAY_CF ,765,168,183,1,0,0,min,221008,621008,ff,E_TAU_BATT_BATTSENS_MID_CF ,765,184,199,1,0,0,min,221008,621008,ff,E_TAU_BATT_BATTSENS_HIGH_CF ,765,200,215,1,0,0,min,221008,621008,ff,E_TAU_BATT_NOBATTSENS_MID_CF ,765,216,231,1,0,0,min,221008,621008,ff,E_TAU_BATT_NOBATTSENS_HIGH_CF ,765,232,247,1,0,0,min,221008,621008,ff,E_TAU_BATT_BATTSENS_LOW_CF ,765,248,263,1,0,0,min,221008,621008,ff,E_TAU_BATT_NOBATTSENS_LOW_CF ,765,264,279,.1,0,1,A,221008,621008,1ff,E_I_BATT_MAX_CF ,765,280,295,.001,0,3,V,221008,621008,ff,E_U_HIGHVOLTAGETHRESHOLD_CF ,765,296,311,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_125 0 ,765,312,327,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_125 1 ,765,328,343,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_125 2 ,765,344,359,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_125 3 ,765,360,375,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_125 4 ,765,376,391,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_125 5 ,765,392,407,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_125 6 ,765,408,423,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_125 7 ,765,424,439,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_130 0 ,765,440,455,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_130 1 ,765,456,471,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_130 2 ,765,472,487,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_130 3 ,765,488,503,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_130 4 ,765,504,519,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_130 5 ,765,520,535,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_130 6 ,765,536,551,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_130 7 ,765,552,567,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_135 0 ,765,568,583,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_135 1 ,765,584,599,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_135 2 ,765,600,615,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_135 3 ,765,616,631,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_135 4 ,765,632,647,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_135 5 ,765,648,663,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_135 6 ,765,664,679,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_135 7 ,765,680,695,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_140 0 ,765,696,711,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_140 1 ,765,712,727,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_140 2 ,765,728,743,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_140 3 ,765,744,759,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_140 4 ,765,760,775,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_140 5 ,765,776,791,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_140 6 ,765,792,807,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_140 7 ,765,808,823,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_145 0 ,765,824,839,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_145 1 ,765,840,855,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_145 2 ,765,856,871,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_145 3 ,765,872,887,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_145 4 ,765,888,903,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_145 5 ,765,904,919,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_145 6 ,765,920,935,.01,0,2,%,221008,621008,ff,E1D_PCT_SOCINTERESM_145 7 ,765,936,951,.1,0,1,A,221008,621008,1ff,E_I_CURRENTSTOP_BATT_MAX_CF ,765,24,39,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_125 0 ,765,40,55,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_125 1 ,765,56,71,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_125 2 ,765,72,87,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_125 3 ,765,88,103,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_125 4 ,765,104,119,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_125 5 ,765,120,135,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_125 6 ,765,136,151,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_130 0 ,765,152,167,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_130 1 ,765,168,183,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_130 2 ,765,184,199,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_130 3 ,765,200,215,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_130 4 ,765,216,231,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_130 5 ,765,232,247,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_130 6 ,765,248,263,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_135 0 ,765,264,279,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_135 1 ,765,280,295,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_135 2 ,765,296,311,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_135 3 ,765,312,327,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_135 4 ,765,328,343,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_135 5 ,765,344,359,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_135 6 ,765,360,375,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_140 0 ,765,376,391,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_140 1 ,765,392,407,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_140 2 ,765,408,423,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_140 3 ,765,424,439,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_140 4 ,765,440,455,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_140 5 ,765,456,471,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_140 6 ,765,472,487,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_145 0 ,765,488,503,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_145 1 ,765,504,519,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_145 2 ,765,520,535,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_145 3 ,765,536,551,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_145 4 ,765,552,567,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_145 5 ,765,568,583,.001,0,3,V,221009,621009,ff,E1D_U_INTERESM_145 6 ,765,584,599,.01,0,2,%,221009,621009,ff,E1D_PCT_DOD_ESM_X 0 ,765,600,615,.01,0,2,%,221009,621009,ff,E1D_PCT_DOD_ESM_X 1 ,765,616,631,.01,0,2,%,221009,621009,ff,E1D_PCT_DOD_ESM_Y 0 ,765,632,647,.01,0,2,%,221009,621009,ff,E1D_PCT_DOD_ESM_Y 1 ,765,648,663,.01,0,2,%,221009,621009,ff,E1D_PCT_DOD_SS_X 0 ,765,664,679,.01,0,2,%,221009,621009,ff,E1D_PCT_DOD_SS_X 1 ,765,680,695,.01,0,2,%,221009,621009,ff,E1D_PCT_DOD_SS_Y 0 ,765,696,711,.01,0,2,%,221009,621009,ff,E1D_PCT_DOD_SS_Y 1 ,765,712,727,.01,0,2,%,221009,621009,ff,E_PCT_SOCMINFORSOF_CF ,765,728,743,.001,0,3,V,221009,621009,ff,E_U_SOFAUTOSTARTOFFSET_CF ,765,744,759,.001,0,3,V,221009,621009,ff,E1D_U_SOFTRESHOLD 0 ,765,760,775,.001,0,3,V,221009,621009,ff,E1D_U_SOFTRESHOLD 1 ,765,776,791,.001,0,3,V,221009,621009,ff,E1D_U_SOFTRESHOLD 2 ,765,792,807,.001,0,3,V,221009,621009,ff,E1D_U_SOFTRESHOLD 3 ,765,808,823,.001,0,3,V,221009,621009,ff,E1D_U_SOFTRESHOLD 4 ,765,824,839,.001,0,3,V,221009,621009,ff,E1D_U_SOFTRESHOLD 5 ,765,840,855,1,0,0,,221009,621009,ff,E_K_JAUGECHARGEDMOTORON_CF ,765,856,871,1,0,0,s,221009,621009,ff,E_TM_TIMEMAXOFLOWBATTVOLTDISP_CF ,765,872,887,1,0,0,s,221009,621009,ff,E_TM_TIMEMINTOINFORMCHARGDISP_CF ,765,888,903,1,0,0,s,221009,621009,ff,E_TM_WAITCUSTOMERMODE_CF ,765,904,919,.001,0,3,V,221009,621009,ff,E1D_U_RALACC 0 ,765,920,935,.001,0,3,V,221009,621009,ff,E1D_U_RALACC 1 ,765,936,951,.001,0,3,V,221009,621009,ff,E1D_U_RALACC 2 ,765,24,39,1,0,0,s,22100A,62100A,ff,E_TM_WAITDELIVERYMODE_CF ,765,40,55,.001,0,3,V,22100A,62100A,ff,E1D_U_RALACC_THRESHOLD 0 ,765,56,71,.001,0,3,V,22100A,62100A,ff,E1D_U_RALACC_THRESHOLD 1 ,765,72,87,.001,0,3,V,22100A,62100A,ff,E1D_U_RALACC_THRESHOLD 2 ,765,88,103,.001,0,3,,22100A,62100A,ff,E_K_COEFSUPPLYUOCV_CF ,765,104,119,.001,0,3,,22100A,62100A,ff,E_K_COEFSUPPLYVOLTAGE_CF ,765,120,135,.00001,0,3,Ohm,22100A,62100A,ff,E_R_BATTERYGROUND_CF ,765,136,151,.001,0,3,Ohm,22100A,62100A,ff,E_R_HARNESS_1_CF ,765,152,167,.001,0,3,Ohm,22100A,62100A,ff,E_R_HARNESS_2_CF ,765,168,183,.001,0,3,V,22100A,62100A,ff,E_U_ECUSUPPLY1_OFFSET_CF ,765,184,199,.001,0,3,V,22100A,62100A,ff,E_U_ECUSUPPLY2_OFFSET_CF ,765,200,215,.001,0,3,V,22100A,62100A,ff,E_U_ECUSUPPLYUOCV_OFFSET_CF ,765,216,231,.001,0,3,V,22100A,62100A,ff,E_U_OCSIGNG_OFFSET_CF ,765,232,247,.001,0,3,,22100A,62100A,ff,E_TAU_BATT_USM_CF ,765,248,263,.001,0,3,V,22100A,62100A,ff,E_U_BATT_NOCHARGE_CF ,765,264,295,1,0,0,,22100A,62100A,4ff,E_K_MAXAHFORRECALAGEPS100PCT_CF ,765,296,327,1,0,0,,22100A,62100A,4ff,E_TM_TIMEMINFORSOCVALID_CF ,765,328,359,1,0,0,,22100A,62100A,4ff,E_TM_CAN_ENGINECOOLANTTEMP_CF ,765,360,391,1,0,0,,22100A,62100A,4ff,E_K_HIGHVOLTAGEFILTER_A0_CF ,765,392,423,1,0,0,,22100A,62100A,4ff,E_K_HIGHVOLTAGEFILTER_B0_CF ,765,424,455,1,0,0,,22100A,62100A,4ff,E_K_RALACCINHIBITIONFILTER_A0_CF ,765,456,487,1,0,0,,22100A,62100A,4ff,E_K_RALACCINHIBITIONFILTER_B0_CF ,765,488,519,1,0,0,,22100A,62100A,4ff,DELIVERYMODE_THRESHOLD_CF ,765,520,535,.01,0,2,s,22100A,62100A,ff,POLLING_A_IVC_PRESENCE_TM_CF ,765,536,543,1,0,0,,22100A,62100A,ff,E_TM_ENGCOOLTEMPERATURE_DELAY_CF ,765,552,559,1,0,0,km/h,22100A,62100A,ff,DOOR_WARNING_SPEED_THRESH_TP ,765,561,561,1,0,0,,22100A,62100A,ff,STOP_BY_SMART_CF,1:true;0:false ,765,568,583,.01,0,2,V,22100A,62100A,ff,PWM_STOP_LAMP_BULB_VOLTAGE_CF 0 ,765,584,599,.01,0,2,V,22100A,62100A,ff,PWM_STOP_LAMP_BULB_VOLTAGE_CF 1 ,765,600,615,.01,0,2,V,22100A,62100A,ff,PWM_STOP_LAMP_BULB_VOLTAGE_CF 2 ,765,616,631,.01,0,2,V,22100A,62100A,ff,PWM_STOP_LAMP_BULB_VOLTAGE_CF 3 ,765,632,639,1,0,0,%,22100A,62100A,ff,PWM_STOP_LAMP_BULB_RATIO_CF 0 ,765,640,647,1,0,0,%,22100A,62100A,ff,PWM_STOP_LAMP_BULB_RATIO_CF 1 ,765,648,655,1,0,0,%,22100A,62100A,ff,PWM_STOP_LAMP_BULB_RATIO_CF 2 ,765,656,663,1,0,0,%,22100A,62100A,ff,PWM_STOP_LAMP_BULB_RATIO_CF 3 ,765,664,679,.01,0,2,V,22100A,62100A,ff,PWM_STOP_LAMP_LED_VOLTAGE_CF 0 ,765,680,695,.01,0,2,V,22100A,62100A,ff,PWM_STOP_LAMP_LED_VOLTAGE_CF 1 ,765,696,711,.01,0,2,V,22100A,62100A,ff,PWM_STOP_LAMP_LED_VOLTAGE_CF 2 ,765,712,727,.01,0,2,V,22100A,62100A,ff,PWM_STOP_LAMP_LED_VOLTAGE_CF 3 ,765,728,735,1,0,0,%,22100A,62100A,ff,PWM_STOP_LAMP_LED_RATIO_CF 0 ,765,736,743,1,0,0,%,22100A,62100A,ff,PWM_STOP_LAMP_LED_RATIO_CF 1 ,765,744,751,1,0,0,%,22100A,62100A,ff,PWM_STOP_LAMP_LED_RATIO_CF 2 ,765,752,759,1,0,0,%,22100A,62100A,ff,PWM_STOP_LAMP_LED_RATIO_CF 3 ,765,760,760,1,0,0,,22100A,62100A,ff,STOP_LAMP_WITH_LED_CF,1:true;0:false ,765,761,761,1,0,0,,22100A,62100A,ff,STOP_LAMP_WITH_PWM_CF,1:true;0:false ,765,768,783,.01,0,2,V,22100A,62100A,ff,STOP_OFFSET_CF ,765,784,815,1,0,0,,22100A,62100A,4ff,E_TM_LONGPARKINGTIME_CF ,765,816,823,1,40,0,°C,22100A,62100A,ff,MAX_TEMPERATURE_RES_TIMER_2H_CF ,765,824,831,1,0,0,,22100A,62100A,ff,RES_CLIM_CF,0:NO_RES_CLIM;1:RES_CLIM_LEVEL_0;2:RES_CLIM_LEVEL_1 ,765,832,847,.01,0,2,s,22100A,62100A,ff,RES_TIMER_IN_SECONDS_TM_CF ,765,848,863,.01,0,2,s,22100A,62100A,ff,TIMER_ACOFF_FILTER_CF ,765,864,864,1,0,0,,22100A,62100A,ff,WITH_AT_RES_AUTHORIZATION_CF,1:true;0:false ,765,866,866,1,0,0,,22100A,62100A,ff,WITH_RES_TIMER_2H_CF,1:true;0:false ,765,867,867,1,0,0,,22100A,62100A,ff,WITH_SR_CF,1:true;0:false ,765,872,879,1,0,0,min,22100A,62100A,ff,PRM_WAKE_UP_TIME_CF ,765,882,882,1,0,0,,22100A,62100A,ff,FOUR_FLASHER_OUTPUTS_CF,1:true;0:false ,765,883,883,1,0,0,,22100A,62100A,ff,RES_FEEDBACK_CF,1:true;0:false ,765,884,884,1,0,0,,22100A,62100A,ff,AUTOFOLDING_BATTEMPO_CF,1:true;0:false ,765,885,885,1,0,0,,22100A,62100A,ff,WITH_GEARBOX_FIRST_CHECK_CF,1:true;0:false ,765,888,895,1,0,0,,22100A,62100A,ff,MSG_TYPE_EMETTED_CF ,765,896,896,1,0,0,,22100A,62100A,ff,RES_PRESOAK_CALENDARS_CF,1:true;0:false ,765,897,897,1,0,0,,22100A,62100A,ff,PRM_CLIM_PROG_PC_ACTIVATION_CF,1:true;0:false ,765,898,898,1,0,0,,22100A,62100A,ff,CHARGE_CALENDARS_CF,1:true;0:false ,765,899,899,1,0,0,,22100A,62100A,ff,CHARGE_REMOTE_CF,1:true;0:false ,765,904,911,1,0,0,,22100A,62100A,ff,PRM_PC_VALUE_CF,0:PREHEATING_NOT_REQ;1:PREHEATING_TIME_1_REQ;2:PREHEATING_TIME_2_REQ;3:PREHEATING_UNAVAILABLE ,765,24,55,1,0,0,,22100B,62100B,4ff,TPMS_WHEEL_ID 1 ,765,56,87,1,0,0,,22100B,62100B,4ff,TPMS_WHEEL_ID 2 ,765,88,119,1,0,0,,22100B,62100B,4ff,TPMS_WHEEL_ID 3 ,765,120,151,1,0,0,,22100B,62100B,4ff,TPMS_WHEEL_ID 4 ,765,24,159,1,0,0,,22100C,62100C,2ff,V.I.N. in ASCII ,765,160,175,1,0,0,,22100C,62100C,ff,VinInASCIICrc ,765,24,24,1,0,0,,22100D,62100D,ff,WITH_CCP_CF,1:true;0:false ,765,24,24,1,0,0,,22100E,62100E,ff,WITH_SCP_CF,1:true;0:false ,765,24,24,1,0,0,,22100F,62100F,ff,KEY_PRESENT_CF,1:true;0:false ,765,24,24,1,0,0,,221010,621010,ff,WITH_SR_CF,1:true;0:false ,765,24,55,1,0,0,,221011,621011,4ff,E_TM_LONGPARKINGTIME_CF ,765,24,31,1,0,0,min,221012,621012,ff,PRM_WAKE_UP_TIME_CF ,765,24,31,1,0,0,,221013,621013,ff,ENGCOOLTEMP_HYS_CF ,765,24,31,1,40,0,°C,221014,621014,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 0 ,765,32,39,1,40,0,°C,221014,621014,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 1 ,765,40,47,1,40,0,°C,221014,621014,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 2 ,765,48,55,1,40,0,°C,221014,621014,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 3 ,765,56,63,1,40,0,°C,221014,621014,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 4 ,765,64,71,1,40,0,°C,221014,621014,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 5 ,765,72,79,1,40,0,°C,221014,621014,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 6 ,765,80,87,1,40,0,°C,221014,621014,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 7 ,765,88,95,1,40,0,°C,221014,621014,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 8 ,765,24,31,1,40,0,°C,221015,621015,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 0 ,765,32,39,1,40,0,°C,221015,621015,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 1 ,765,40,47,1,40,0,°C,221015,621015,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 2 ,765,48,55,1,40,0,°C,221015,621015,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 3 ,765,56,63,1,40,0,°C,221015,621015,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 4 ,765,64,71,1,40,0,°C,221015,621015,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 5 ,765,72,79,1,40,0,°C,221015,621015,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 6 ,765,80,87,1,40,0,°C,221015,621015,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 7 ,765,88,95,1,40,0,°C,221015,621015,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 8 ,765,24,31,1,40,0,°C,221016,621016,ff,ENGCOOLTEMP_MAX_IN_CF 0 ,765,32,39,1,40,0,°C,221016,621016,ff,ENGCOOLTEMP_MAX_IN_CF 1 ,765,40,47,1,40,0,°C,221016,621016,ff,ENGCOOLTEMP_MAX_IN_CF 2 ,765,48,55,1,40,0,°C,221016,621016,ff,ENGCOOLTEMP_MAX_IN_CF 3 ,765,56,63,1,40,0,°C,221016,621016,ff,ENGCOOLTEMP_MAX_IN_CF 4 ,765,64,71,1,40,0,°C,221016,621016,ff,ENGCOOLTEMP_MAX_IN_CF 5 ,765,72,79,1,40,0,°C,221016,621016,ff,ENGCOOLTEMP_MAX_IN_CF 6 ,765,80,87,1,40,0,°C,221016,621016,ff,ENGCOOLTEMP_MAX_IN_CF 7 ,765,88,95,1,40,0,°C,221016,621016,ff,ENGCOOLTEMP_MAX_IN_CF 8 ,765,24,31,1,40,0,°C,221017,621017,ff,ENGCOOLTEMP_MAX_OUT_CF 0 ,765,32,39,1,40,0,°C,221017,621017,ff,ENGCOOLTEMP_MAX_OUT_CF 1 ,765,40,47,1,40,0,°C,221017,621017,ff,ENGCOOLTEMP_MAX_OUT_CF 2 ,765,48,55,1,40,0,°C,221017,621017,ff,ENGCOOLTEMP_MAX_OUT_CF 3 ,765,56,63,1,40,0,°C,221017,621017,ff,ENGCOOLTEMP_MAX_OUT_CF 4 ,765,64,71,1,40,0,°C,221017,621017,ff,ENGCOOLTEMP_MAX_OUT_CF 5 ,765,72,79,1,40,0,°C,221017,621017,ff,ENGCOOLTEMP_MAX_OUT_CF 6 ,765,80,87,1,40,0,°C,221017,621017,ff,ENGCOOLTEMP_MAX_OUT_CF 7 ,765,88,95,1,40,0,°C,221017,621017,ff,ENGCOOLTEMP_MAX_OUT_CF 8 ,765,24,31,1,0,0,°C,221018,621018,ff,EXTERNALTEMP_HYS_CF ,765,24,31,1,40,0,°C,221019,621019,ff,EXTERNALTEMP_MAX_CF ,765,24,31,1,40,0,°C,22101A,62101A,ff,EXTERNALTEMP_MIN_CF ,765,24,39,.01,0,2,s,22101B,62101B,ff,STOP_TIME_MIN_TM_CF ,765,24,31,1,40,0,°C,22101C,62101C,ff,TIMER_MAX_ACOFF_IN_CF 0 ,765,32,39,1,40,0,°C,22101C,62101C,ff,TIMER_MAX_ACOFF_IN_CF 1 ,765,40,47,1,40,0,°C,22101C,62101C,ff,TIMER_MAX_ACOFF_IN_CF 2 ,765,48,55,1,40,0,°C,22101C,62101C,ff,TIMER_MAX_ACOFF_IN_CF 3 ,765,56,63,1,40,0,°C,22101C,62101C,ff,TIMER_MAX_ACOFF_IN_CF 4 ,765,64,71,1,40,0,°C,22101C,62101C,ff,TIMER_MAX_ACOFF_IN_CF 5 ,765,72,79,1,40,0,°C,22101C,62101C,ff,TIMER_MAX_ACOFF_IN_CF 6 ,765,80,87,1,40,0,°C,22101C,62101C,ff,TIMER_MAX_ACOFF_IN_CF 7 ,765,88,95,1,40,0,°C,22101C,62101C,ff,TIMER_MAX_ACOFF_IN_CF 8 ,765,24,39,.01,0,2,s,22101D,62101D,ff,TIMER_MAX_ACOFF_OUT_TM_CF 0 ,765,40,55,.01,0,2,s,22101D,62101D,ff,TIMER_MAX_ACOFF_OUT_TM_CF 1 ,765,56,71,.01,0,2,s,22101D,62101D,ff,TIMER_MAX_ACOFF_OUT_TM_CF 2 ,765,72,87,.01,0,2,s,22101D,62101D,ff,TIMER_MAX_ACOFF_OUT_TM_CF 3 ,765,88,103,.01,0,2,s,22101D,62101D,ff,TIMER_MAX_ACOFF_OUT_TM_CF 4 ,765,104,119,.01,0,2,s,22101D,62101D,ff,TIMER_MAX_ACOFF_OUT_TM_CF 5 ,765,120,135,.01,0,2,s,22101D,62101D,ff,TIMER_MAX_ACOFF_OUT_TM_CF 6 ,765,136,151,.01,0,2,s,22101D,62101D,ff,TIMER_MAX_ACOFF_OUT_TM_CF 7 ,765,152,167,.01,0,2,s,22101D,62101D,ff,TIMER_MAX_ACOFF_OUT_TM_CF 8 ,765,24,31,1,40,0,°C,22101E,62101E,ff,TIMER_MAX_ACON_IN_CF 0 ,765,32,39,1,40,0,°C,22101E,62101E,ff,TIMER_MAX_ACON_IN_CF 1 ,765,40,47,1,40,0,°C,22101E,62101E,ff,TIMER_MAX_ACON_IN_CF 2 ,765,48,55,1,40,0,°C,22101E,62101E,ff,TIMER_MAX_ACON_IN_CF 3 ,765,56,63,1,40,0,°C,22101E,62101E,ff,TIMER_MAX_ACON_IN_CF 4 ,765,64,71,1,40,0,°C,22101E,62101E,ff,TIMER_MAX_ACON_IN_CF 5 ,765,72,79,1,40,0,°C,22101E,62101E,ff,TIMER_MAX_ACON_IN_CF 6 ,765,80,87,1,40,0,°C,22101E,62101E,ff,TIMER_MAX_ACON_IN_CF 7 ,765,88,95,1,40,0,°C,22101E,62101E,ff,TIMER_MAX_ACON_IN_CF 8 ,765,24,39,.01,0,2,s,22101F,62101F,ff,TIMER_MAX_ACON_OUT_TM_CF 0 ,765,40,55,.01,0,2,s,22101F,62101F,ff,TIMER_MAX_ACON_OUT_TM_CF 1 ,765,56,71,.01,0,2,s,22101F,62101F,ff,TIMER_MAX_ACON_OUT_TM_CF 2 ,765,72,87,.01,0,2,s,22101F,62101F,ff,TIMER_MAX_ACON_OUT_TM_CF 3 ,765,88,103,.01,0,2,s,22101F,62101F,ff,TIMER_MAX_ACON_OUT_TM_CF 4 ,765,104,119,.01,0,2,s,22101F,62101F,ff,TIMER_MAX_ACON_OUT_TM_CF 5 ,765,120,135,.01,0,2,s,22101F,62101F,ff,TIMER_MAX_ACON_OUT_TM_CF 6 ,765,136,151,.01,0,2,s,22101F,62101F,ff,TIMER_MAX_ACON_OUT_TM_CF 7 ,765,152,167,.01,0,2,s,22101F,62101F,ff,TIMER_MAX_ACON_OUT_TM_CF 8 ,765,24,39,.01,0,2,s,221020,621020,ff,TIMER_NO_BLOWER_MAX_TM_CF ,765,24,31,1,0,0,,22102A,62102A,ff,ENGCOOLTEMP_HYS_CF ,765,32,39,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 0 ,765,40,47,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 1 ,765,48,55,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 2 ,765,56,63,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 3 ,765,64,71,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 4 ,765,72,79,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 5 ,765,80,87,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 6 ,765,88,95,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 7 ,765,96,103,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_IN_CF 8 ,765,104,111,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 0 ,765,112,119,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 1 ,765,120,127,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 2 ,765,128,135,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 3 ,765,136,143,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 4 ,765,144,151,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 5 ,765,152,159,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 6 ,765,160,167,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 7 ,765,168,175,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_GMV0_OUT_CF 8 ,765,176,183,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_IN_CF 0 ,765,184,191,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_IN_CF 1 ,765,192,199,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_IN_CF 2 ,765,200,207,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_IN_CF 3 ,765,208,215,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_IN_CF 4 ,765,216,223,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_IN_CF 5 ,765,224,231,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_IN_CF 6 ,765,232,239,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_IN_CF 7 ,765,240,247,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_IN_CF 8 ,765,248,255,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_OUT_CF 0 ,765,256,263,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_OUT_CF 1 ,765,264,271,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_OUT_CF 2 ,765,272,279,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_OUT_CF 3 ,765,280,287,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_OUT_CF 4 ,765,288,295,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_OUT_CF 5 ,765,296,303,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_OUT_CF 6 ,765,304,311,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_OUT_CF 7 ,765,312,319,1,40,0,°C,22102A,62102A,ff,ENGCOOLTEMP_MAX_OUT_CF 8 ,765,320,327,1,0,0,°C,22102A,62102A,ff,EXTERNALTEMP_HYS_CF ,765,328,335,1,40,0,°C,22102A,62102A,ff,EXTERNALTEMP_MAX_CF ,765,336,343,1,40,0,°C,22102A,62102A,ff,EXTERNALTEMP_MIN_CF ,765,344,359,.01,0,2,s,22102A,62102A,ff,STOP_TIME_MIN_TM_CF ,765,360,367,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACOFF_IN_CF 0 ,765,368,375,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACOFF_IN_CF 1 ,765,376,383,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACOFF_IN_CF 2 ,765,384,391,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACOFF_IN_CF 3 ,765,392,399,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACOFF_IN_CF 4 ,765,400,407,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACOFF_IN_CF 5 ,765,408,415,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACOFF_IN_CF 6 ,765,416,423,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACOFF_IN_CF 7 ,765,424,431,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACOFF_IN_CF 8 ,765,432,447,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACOFF_OUT_TM_CF 0 ,765,448,463,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACOFF_OUT_TM_CF 1 ,765,464,479,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACOFF_OUT_TM_CF 2 ,765,480,495,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACOFF_OUT_TM_CF 3 ,765,496,511,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACOFF_OUT_TM_CF 4 ,765,512,527,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACOFF_OUT_TM_CF 5 ,765,528,543,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACOFF_OUT_TM_CF 6 ,765,544,559,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACOFF_OUT_TM_CF 7 ,765,560,575,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACOFF_OUT_TM_CF 8 ,765,576,583,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACON_IN_CF 0 ,765,584,591,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACON_IN_CF 1 ,765,592,599,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACON_IN_CF 2 ,765,600,607,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACON_IN_CF 3 ,765,608,615,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACON_IN_CF 4 ,765,616,623,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACON_IN_CF 5 ,765,624,631,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACON_IN_CF 6 ,765,632,639,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACON_IN_CF 7 ,765,640,647,1,40,0,°C,22102A,62102A,ff,TIMER_MAX_ACON_IN_CF 8 ,765,648,663,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACON_OUT_TM_CF 0 ,765,664,679,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACON_OUT_TM_CF 1 ,765,680,695,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACON_OUT_TM_CF 2 ,765,696,711,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACON_OUT_TM_CF 3 ,765,712,727,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACON_OUT_TM_CF 4 ,765,728,743,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACON_OUT_TM_CF 5 ,765,744,759,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACON_OUT_TM_CF 6 ,765,760,775,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACON_OUT_TM_CF 7 ,765,776,791,.01,0,2,s,22102A,62102A,ff,TIMER_MAX_ACON_OUT_TM_CF 8 ,765,792,807,.01,0,2,s,22102A,62102A,ff,TIMER_NO_BLOWER_MAX_TM_CF ,765,808,808,1,0,0,,22102A,62102A,ff,REVERSE_SW_ON_HOOD_CF,1:true;0:false ,765,809,809,1,0,0,,22102A,62102A,ff,RES_BUTTON_2018_CF,1:true;0:false ,765,24,24,1,0,0,,22102B,62102B,ff,FOUR_FLASHER_OUTPUTS_CF,1:true;0:false ,765,24,24,1,0,0,,22102E,62102E,ff,RES_FEEDBACK_CF,1:true;0:false ,765,24,24,1,0,0,,22102F,62102F,ff,AUTOFOLDING_BATTEMPO_CF,1:true;0:false ,765,24,24,1,0,0,,221030,621030,ff,WITH_GEARBOX_FIRST_CHECK_CF,1:true;0:false ,765,24,24,1,0,0,,221031,621031,ff,BATT_CURR_SENSOR_LIN_CF,1:true;0:false ,765,24,55,1,0,0,,221032,621032,4ff,AFTER_AUTOSTOP_PH_TM_CF ,765,24,55,1,0,0,,221033,621033,4ff,AFTER_RES_PH_TM_CF ,765,24,55,1,0,0,,221034,621034,4ff,AFTER_STOP_PH_TM_CF ,765,24,55,1,0,0,,221035,621035,4ff,BEFORE_RES_PH_TM_CF ,765,24,55,1,0,0,,221036,621036,4ff,COOLING_PH_TM_CF ,765,24,31,1,0,0,,221037,621037,ff,DELIVERYMODE_TYPE_CF,0:OLD_DELIVERY_MODE;1:NEW_DELIVERY_MODE ,765,24,24,1,0,0,,221039,621039,ff,RES_WITH_FUEL_BURNER_REQUEST_CF,1:true;0:false ,765,24,31,1,0,0,,22103A,62103A,ff,ECO_SWITCH_TYPE_CF,0:NO_BUTTON_SW;1:ECO_BUTTON_SW;2:MEX_BUTTON_SW ,765,24,24,1,0,0,,22103B,62103B,ff,ECOMODE_RESTART_CF,1:true;0:false ,765,24,24,1,0,0,,22103C,62103C,ff,WITH_FRONT_DEFROST_BUTTON_CF,1:true;0:false ,765,24,55,1,0,0,,22103D,62103D,4ff,RES_MAX_TCU_DELAY_TM_CF ,765,24,31,1,0,0,,22103E,62103E,ff,RES_MAX_TCU_REQUEST_CF ,765,24,24,1,0,0,,22103F,62103F,ff,RES_SMARTPHONE_CF,1:true;0:false ,765,24,24,1,0,0,,221040,621040,ff,RES_SMARTPHONE_DOUBLE_CF,1:true;0:false ,765,24,24,1,0,0,,221041,621041,ff,WITH_RES_RKE_CF,1:true;0:false ,765,24,31,1,0,0,,221042,621042,ff,AUTO_LIGHT_CF,0:ALS_DEACTIVATED;1:ALS_WITH_RLS;2:ALS_WITH_ANALOG_SENSOR ,765,24,39,10,0,0,mV,221043,621043,ff,C_U_BATSCLH ,765,24,39,10,0,0,mV,221044,621044,ff,C_U_BATSCLL ,765,24,39,1,0,0,s,221045,621045,ff,C_TM_TBATSCC ,765,24,39,1,0,0,s,221046,621046,ff,C_TM_TBATSC ,765,24,39,.1,0,1,V,221047,621047,ff,C_U_BATT_THRESHOLDCURRSENSDIAG ,765,24,24,1,0,0,,221048,621048,ff,C_B_BATTSENS_MEDSTICKDIAG,1:true;0:false ,765,24,39,1,0,0,mV,221049,621049,ff,C_U_BATSCD ,765,24,39,1,0,0,s,22104A,62104A,ff,C_TM_TBATSL ,765,24,24,1,0,0,,22104B,62104B,ff,C_B_BATTSENS_LOWOUTPUTDIAG,1:true;0:false ,765,24,39,10,0,0,mV,22104C,62104C,ff,C_U_FSBATSL ,765,24,39,1,0,0,s,22104D,62104D,ff,C_TM_TBATSH ,765,24,24,1,0,0,,22104E,62104E,ff,C_B_BATTSENS_HIGHOUTPUTDIAG,1:true;0:false ,765,24,39,10,0,0,mV,22104F,62104F,ff,C_U_FSBATSH ,765,24,39,1,0,0,s,221050,621050,ff,C_TM_TBATSR ,765,24,24,1,0,0,,221051,621051,ff,C_B_BATTSENS_FCT1DIAG,1:true;0:false ,765,24,31,1,120,0,A,221052,621052,ff,C_I_ALTOFS ,765,24,24,1,0,0,,221053,621053,ff,C_B_BATTSENS_FCT2DIAG,1:true;0:false ,765,24,31,.1,0,1,V,221054,621054,ff,C_U_BATTVOLTFUN2THRESHOLD ,765,24,39,10,0,0,mV,221055,621055,ff,C_U_BATTSENSOUTPUTFUN2THRESHOLD ,765,24,39,.1,0,1,V,221056,621056,ff,C_U_ALTREQFUN2THRESHOLD ,765,24,31,1,0,0,,221057,621057,ff,C_K_CURKJU ,765,24,39,.00025,0,3,,221058,621058,ff,C_K_BATSSLP ,765,24,39,.1,2000,1,,221059,621059,ff,C_U_BATSOFS ,765,24,24,1,0,0,,22105A,62105A,ff,C_B_BATTTEMPSENSOR_PRESENT,1:true;0:false ,765,24,31,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 0 ,765,40,47,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 1 ,765,56,63,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 2 ,765,72,79,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 3 ,765,88,95,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 4 ,765,104,111,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 5 ,765,120,127,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 6 ,765,136,143,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 7 ,765,152,159,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 8 ,765,168,175,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 9 ,765,184,191,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 10 ,765,200,207,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 11 ,765,216,223,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 12 ,765,232,239,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 13 ,765,248,255,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 14 ,765,264,271,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 15 ,765,280,287,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 16 ,765,296,303,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 17 ,765,312,319,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 18 ,765,328,335,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 19 ,765,344,351,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 20 ,765,360,367,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 21 ,765,376,383,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 22 ,765,392,399,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 23 ,765,408,415,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 24 ,765,424,431,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 25 ,765,440,447,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 26 ,765,456,463,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 27 ,765,472,479,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 28 ,765,488,495,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 29 ,765,504,511,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 30 ,765,520,527,.02,0,2,V,22105B,62105B,ff,C1D_U_BATTTEMPSENS_HW 31 ,765,24,31,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 0 ,765,40,47,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 1 ,765,56,63,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 2 ,765,72,79,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 3 ,765,88,95,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 4 ,765,104,111,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 5 ,765,120,127,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 6 ,765,136,143,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 7 ,765,152,159,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 8 ,765,168,175,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 9 ,765,184,191,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 10 ,765,200,207,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 11 ,765,216,223,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 12 ,765,232,239,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 13 ,765,248,255,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 14 ,765,264,271,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 15 ,765,280,287,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 16 ,765,296,303,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 17 ,765,312,319,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 18 ,765,328,335,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 19 ,765,344,351,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 20 ,765,360,367,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 21 ,765,376,383,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 22 ,765,392,399,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 23 ,765,408,415,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 24 ,765,424,431,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 25 ,765,440,447,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 26 ,765,456,463,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 27 ,765,472,479,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 28 ,765,488,495,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 29 ,765,504,511,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 30 ,765,520,527,1,50,0,°C,22105C,62105C,ff,C1D_TEMP_BATTSENS 31 ,765,24,39,.01,0,2,s,22105D,62105D,ff,C_TM_TBTSL ,765,24,39,.1,0,1,V,22105E,62105E,ff,C_U_BATTTHRESHOLDTEMPSENSDIAG ,765,24,24,1,0,0,,22105F,62105F,ff,C_B_BATTTEMPSENS_LOWOUTPUTDIAG,1:true;0:false ,765,24,39,10,0,0,mV,221060,621060,ff,C_U_FSBTSL ,765,24,39,.01,0,2,s,221061,621061,ff,C_TM_TBTSH ,765,24,24,1,0,0,,221062,621062,ff,C_B_BATTTEMPSENS_HIGHOUTPUTDIAG,1:true;0:false ,765,24,39,10,0,0,mV,221063,621063,ff,C_U_FSBTSH ,765,24,24,1,0,0,,221064,621064,ff,E_B_BATTDISCONNECTION_INHIBIT_CF,1:true;0:false ,765,24,39,1,0,0,mV,221065,621065,ff,E_DU_BATTSENSORVARIATION_CF ,765,24,39,1,0,0,s,221066,621066,ff,E_TM_BATTDISCCONF_CF ,765,24,39,1,0,0,mV,221067,621067,ff,E_U_MEDSTICKING_MAX_CF ,765,24,39,1,0,0,mV,221068,621068,ff,E_U_MEDSTICKING_MIN_CF ,765,24,55,1,0,0,,221069,621069,4ff,MAX_TEMPO_DURATION_PH_PRECOND_CF ,765,24,31,1,0,0,,221070,621070,ff,DELIVERY_MODE_LEVEL_2_BY_DIAG_S,0:CUSTOMER_MODE_2;1:DELIVERY_MODE_LEVEL_1;2:DELIVERY_MODE_LEVEL_2;3:DELIVERY_MODE_2_NOT_USED ,765,24,31,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 0 ,765,40,47,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 1 ,765,56,63,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 2 ,765,72,79,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 3 ,765,88,95,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 4 ,765,104,111,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 5 ,765,120,127,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 6 ,765,136,143,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 7 ,765,152,159,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 8 ,765,168,175,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 9 ,765,184,191,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 10 ,765,200,207,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 11 ,765,216,223,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 12 ,765,232,239,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 13 ,765,248,255,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 14 ,765,264,271,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 15 ,765,280,287,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 16 ,765,296,303,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 17 ,765,312,319,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 18 ,765,328,335,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 19 ,765,344,351,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 20 ,765,360,367,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 21 ,765,376,383,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 22 ,765,392,399,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 23 ,765,408,415,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 24 ,765,424,431,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 25 ,765,440,447,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 26 ,765,456,463,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 27 ,765,472,479,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 28 ,765,488,495,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 29 ,765,504,511,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 30 ,765,520,527,1,50,0,°C,221071,621071,ff,C1D_TEMP_BATTSENS 31 ,765,536,551,.01,0,2,s,221071,621071,ff,C_TM_TBTSL ,765,552,567,.1,0,1,V,221071,621071,ff,C_U_BATTTHRESHOLDTEMPSENSDIAG ,765,568,568,1,0,0,,221071,621071,ff,C_B_BATTTEMPSENS_LOWOUTPUTDIAG,1:true;0:false ,765,576,591,10,0,0,mV,221071,621071,ff,C_U_FSBTSL ,765,592,607,.01,0,2,s,221071,621071,ff,C_TM_TBTSH ,765,608,608,1,0,0,,221071,621071,ff,C_B_BATTTEMPSENS_HIGHOUTPUTDIAG,1:true;0:false ,765,616,631,10,0,0,mV,221071,621071,ff,C_U_FSBTSH ,765,632,632,1,0,0,,221071,621071,ff,E_B_BATTDISCONNECTION_INHIBIT_CF,1:true;0:false ,765,640,655,1,0,0,mV,221071,621071,ff,E_DU_BATTSENSORVARIATION_CF ,765,656,671,1,0,0,s,221071,621071,ff,E_TM_BATTDISCCONF_CF ,765,672,687,1,0,0,mV,221071,621071,ff,E_U_MEDSTICKING_MAX_CF ,765,688,703,1,0,0,mV,221071,621071,ff,E_U_MEDSTICKING_MIN_CF ,765,744,759,.1,2000,1,,221071,621071,ff,C_U_BATSOFS ,765,832,839,.1,0,1,s,221071,621071,ff,C_TM_CRANKING_OK ,765,24,24,1,0,0,,221072,621072,ff,ACTIVE_DYNAMIC_SPOILER_CF,1:true;0:false ,765,24,55,1,0,0,,221073,621073,4ff,MAX_TEMPO_DURATION_BATTERY_PH_PRECOND_CF ,765,24,31,.1,0,1,s,221074,621074,ff,C_TM_CRANKING_OK ,765,24,24,1,0,0,,221075,621075,ff,REVERSE_SW_ON_HOOD_CF,1:true;0:false ,765,24,24,1,0,0,,221077,621077,ff,RES_BUTTON_2018_CF,1:true;0:false ,765,24,55,1,0,0,,221078,621078,4ff,PL1_MAX_BY_INTLIGHTS_TM_CF ,765,24,39,.01,0,2,s,221079,621079,ff,HORN_DURATION_TM_CF ,765,24,24,1,0,0,,22107A,62107A,ff,HORN_SMARTPHONE_CAN_FB_CF,1:true;0:false ,765,24,39,.01,0,2,s,22107B,62107B,ff,CAN_EMISSION_DURATION_TM_CF ,765,24,24,1,0,0,,22107C,62107C,ff,IS_TAILGATE_DIAG_INHIBITED_CF,1:true;0:false ,765,24,39,.01,0,2,s,22107D,62107D,ff,POLLING_A_IVC_PRESENCE_TM_CF ,765,24,31,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP1_SwOFF_In 0 ,765,32,39,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP1_SwOFF_In 1 ,765,40,47,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP1_SwOFF_In 2 ,765,48,55,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP1_SwOFF_In 3 ,765,56,63,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP1_SwOFF_In 4 ,765,64,71,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP1_SwOFF_In 5 ,765,72,79,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP1_SwOFF_In 6 ,765,80,87,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP1_SwOFF_In 7 ,765,88,95,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP1_SwOFF_In 8 ,765,96,103,1,40,0,%,22107E,62107E,ff,C1D_HysCTP1_SwOFF_Out 0 ,765,104,111,1,40,0,%,22107E,62107E,ff,C1D_HysCTP1_SwOFF_Out 1 ,765,112,119,1,40,0,%,22107E,62107E,ff,C1D_HysCTP1_SwOFF_Out 2 ,765,120,127,1,40,0,%,22107E,62107E,ff,C1D_HysCTP1_SwOFF_Out 3 ,765,128,135,1,40,0,%,22107E,62107E,ff,C1D_HysCTP1_SwOFF_Out 4 ,765,136,143,1,40,0,%,22107E,62107E,ff,C1D_HysCTP1_SwOFF_Out 5 ,765,144,151,1,40,0,%,22107E,62107E,ff,C1D_HysCTP1_SwOFF_Out 6 ,765,152,159,1,40,0,%,22107E,62107E,ff,C1D_HysCTP1_SwOFF_Out 7 ,765,160,167,1,40,0,%,22107E,62107E,ff,C1D_HysCTP1_SwOFF_Out 8 ,765,168,175,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP2_SwOFF_In 0 ,765,176,183,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP2_SwOFF_In 1 ,765,184,191,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP2_SwOFF_In 2 ,765,192,199,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP2_SwOFF_In 3 ,765,200,207,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP2_SwOFF_In 4 ,765,208,215,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP2_SwOFF_In 5 ,765,216,223,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP2_SwOFF_In 6 ,765,224,231,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP2_SwOFF_In 7 ,765,232,239,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP2_SwOFF_In 8 ,765,240,247,1,40,0,%,22107E,62107E,ff,C1D_HysCTP2_SwOFF_Out 0 ,765,248,255,1,40,0,%,22107E,62107E,ff,C1D_HysCTP2_SwOFF_Out 1 ,765,256,263,1,40,0,%,22107E,62107E,ff,C1D_HysCTP2_SwOFF_Out 2 ,765,264,271,1,40,0,%,22107E,62107E,ff,C1D_HysCTP2_SwOFF_Out 3 ,765,272,279,1,40,0,%,22107E,62107E,ff,C1D_HysCTP2_SwOFF_Out 4 ,765,280,287,1,40,0,%,22107E,62107E,ff,C1D_HysCTP2_SwOFF_Out 5 ,765,288,295,1,40,0,%,22107E,62107E,ff,C1D_HysCTP2_SwOFF_Out 6 ,765,296,303,1,40,0,%,22107E,62107E,ff,C1D_HysCTP2_SwOFF_Out 7 ,765,304,311,1,40,0,%,22107E,62107E,ff,C1D_HysCTP2_SwOFF_Out 8 ,765,312,319,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP3_SwOFF_In 0 ,765,320,327,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP3_SwOFF_In 1 ,765,328,335,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP3_SwOFF_In 2 ,765,336,343,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP3_SwOFF_In 3 ,765,344,351,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP3_SwOFF_In 4 ,765,352,359,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP3_SwOFF_In 5 ,765,360,367,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP3_SwOFF_In 6 ,765,368,375,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP3_SwOFF_In 7 ,765,376,383,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP3_SwOFF_In 8 ,765,384,391,1,40,0,%,22107E,62107E,ff,C1D_HysCTP3_SwOFF_Out 0 ,765,392,399,1,40,0,%,22107E,62107E,ff,C1D_HysCTP3_SwOFF_Out 1 ,765,400,407,1,40,0,%,22107E,62107E,ff,C1D_HysCTP3_SwOFF_Out 2 ,765,408,415,1,40,0,%,22107E,62107E,ff,C1D_HysCTP3_SwOFF_Out 3 ,765,416,423,1,40,0,%,22107E,62107E,ff,C1D_HysCTP3_SwOFF_Out 4 ,765,424,431,1,40,0,%,22107E,62107E,ff,C1D_HysCTP3_SwOFF_Out 5 ,765,432,439,1,40,0,%,22107E,62107E,ff,C1D_HysCTP3_SwOFF_Out 6 ,765,440,447,1,40,0,%,22107E,62107E,ff,C1D_HysCTP3_SwOFF_Out 7 ,765,448,455,1,40,0,%,22107E,62107E,ff,C1D_HysCTP3_SwOFF_Out 8 ,765,456,463,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP4_SwOFF_In 0 ,765,464,471,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP4_SwOFF_In 1 ,765,472,479,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP4_SwOFF_In 2 ,765,480,487,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP4_SwOFF_In 3 ,765,488,495,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP4_SwOFF_In 4 ,765,496,503,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP4_SwOFF_In 5 ,765,504,511,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP4_SwOFF_In 6 ,765,512,519,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP4_SwOFF_In 7 ,765,520,527,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP4_SwOFF_In 8 ,765,528,535,1,40,0,%,22107E,62107E,ff,C1D_HysCTP4_SwOFF_Out 0 ,765,536,543,1,40,0,%,22107E,62107E,ff,C1D_HysCTP4_SwOFF_Out 1 ,765,544,551,1,40,0,%,22107E,62107E,ff,C1D_HysCTP4_SwOFF_Out 2 ,765,552,559,1,40,0,%,22107E,62107E,ff,C1D_HysCTP4_SwOFF_Out 3 ,765,560,567,1,40,0,%,22107E,62107E,ff,C1D_HysCTP4_SwOFF_Out 4 ,765,568,575,1,40,0,%,22107E,62107E,ff,C1D_HysCTP4_SwOFF_Out 5 ,765,576,583,1,40,0,%,22107E,62107E,ff,C1D_HysCTP4_SwOFF_Out 6 ,765,584,591,1,40,0,%,22107E,62107E,ff,C1D_HysCTP4_SwOFF_Out 7 ,765,592,599,1,40,0,%,22107E,62107E,ff,C1D_HysCTP4_SwOFF_Out 8 ,765,600,607,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP5_SwOFF_In 0 ,765,608,615,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP5_SwOFF_In 1 ,765,616,623,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP5_SwOFF_In 2 ,765,624,631,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP5_SwOFF_In 3 ,765,632,639,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP5_SwOFF_In 4 ,765,640,647,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP5_SwOFF_In 5 ,765,648,655,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP5_SwOFF_In 6 ,765,656,663,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP5_SwOFF_In 7 ,765,664,671,1,40,0,°C,22107E,62107E,ff,C1D_HysCTP5_SwOFF_In 8 ,765,672,679,1,40,0,%,22107E,62107E,ff,C1D_HysCTP5_SwOFF_Out 0 ,765,680,687,1,40,0,%,22107E,62107E,ff,C1D_HysCTP5_SwOFF_Out 1 ,765,688,695,1,40,0,%,22107E,62107E,ff,C1D_HysCTP5_SwOFF_Out 2 ,765,696,703,1,40,0,%,22107E,62107E,ff,C1D_HysCTP5_SwOFF_Out 3 ,765,704,711,1,40,0,%,22107E,62107E,ff,C1D_HysCTP5_SwOFF_Out 4 ,765,712,719,1,40,0,%,22107E,62107E,ff,C1D_HysCTP5_SwOFF_Out 5 ,765,720,727,1,40,0,%,22107E,62107E,ff,C1D_HysCTP5_SwOFF_Out 6 ,765,728,735,1,40,0,%,22107E,62107E,ff,C1D_HysCTP5_SwOFF_Out 7 ,765,736,743,1,40,0,%,22107E,62107E,ff,C1D_HysCTP5_SwOFF_Out 8 ,765,24,31,1,40,0,°C,22107F,62107F,ff,C1D_HysCTP1_SwOFF_In 0 ,765,32,39,1,40,0,°C,22107F,62107F,ff,C1D_HysCTP1_SwOFF_In 1 ,765,40,47,1,40,0,°C,22107F,62107F,ff,C1D_HysCTP1_SwOFF_In 2 ,765,48,55,1,40,0,°C,22107F,62107F,ff,C1D_HysCTP1_SwOFF_In 3 ,765,56,63,1,40,0,°C,22107F,62107F,ff,C1D_HysCTP1_SwOFF_In 4 ,765,64,71,1,40,0,°C,22107F,62107F,ff,C1D_HysCTP1_SwOFF_In 5 ,765,72,79,1,40,0,°C,22107F,62107F,ff,C1D_HysCTP1_SwOFF_In 6 ,765,80,87,1,40,0,°C,22107F,62107F,ff,C1D_HysCTP1_SwOFF_In 7 ,765,88,95,1,40,0,°C,22107F,62107F,ff,C1D_HysCTP1_SwOFF_In 8 ,765,24,31,1,40,0,%,221080,621080,ff,C1D_HysCTP1_SwOFF_Out 0 ,765,32,39,1,40,0,%,221080,621080,ff,C1D_HysCTP1_SwOFF_Out 1 ,765,40,47,1,40,0,%,221080,621080,ff,C1D_HysCTP1_SwOFF_Out 2 ,765,48,55,1,40,0,%,221080,621080,ff,C1D_HysCTP1_SwOFF_Out 3 ,765,56,63,1,40,0,%,221080,621080,ff,C1D_HysCTP1_SwOFF_Out 4 ,765,64,71,1,40,0,%,221080,621080,ff,C1D_HysCTP1_SwOFF_Out 5 ,765,72,79,1,40,0,%,221080,621080,ff,C1D_HysCTP1_SwOFF_Out 6 ,765,80,87,1,40,0,%,221080,621080,ff,C1D_HysCTP1_SwOFF_Out 7 ,765,88,95,1,40,0,%,221080,621080,ff,C1D_HysCTP1_SwOFF_Out 8 ,765,24,31,1,40,0,°C,221081,621081,ff,C1D_HysCTP2_SwOFF_In 0 ,765,32,39,1,40,0,°C,221081,621081,ff,C1D_HysCTP2_SwOFF_In 1 ,765,40,47,1,40,0,°C,221081,621081,ff,C1D_HysCTP2_SwOFF_In 2 ,765,48,55,1,40,0,°C,221081,621081,ff,C1D_HysCTP2_SwOFF_In 3 ,765,56,63,1,40,0,°C,221081,621081,ff,C1D_HysCTP2_SwOFF_In 4 ,765,64,71,1,40,0,°C,221081,621081,ff,C1D_HysCTP2_SwOFF_In 5 ,765,72,79,1,40,0,°C,221081,621081,ff,C1D_HysCTP2_SwOFF_In 6 ,765,80,87,1,40,0,°C,221081,621081,ff,C1D_HysCTP2_SwOFF_In 7 ,765,88,95,1,40,0,°C,221081,621081,ff,C1D_HysCTP2_SwOFF_In 8 ,765,24,31,1,40,0,%,221082,621082,ff,C1D_HysCTP2_SwOFF_Out 0 ,765,32,39,1,40,0,%,221082,621082,ff,C1D_HysCTP2_SwOFF_Out 1 ,765,40,47,1,40,0,%,221082,621082,ff,C1D_HysCTP2_SwOFF_Out 2 ,765,48,55,1,40,0,%,221082,621082,ff,C1D_HysCTP2_SwOFF_Out 3 ,765,56,63,1,40,0,%,221082,621082,ff,C1D_HysCTP2_SwOFF_Out 4 ,765,64,71,1,40,0,%,221082,621082,ff,C1D_HysCTP2_SwOFF_Out 5 ,765,72,79,1,40,0,%,221082,621082,ff,C1D_HysCTP2_SwOFF_Out 6 ,765,80,87,1,40,0,%,221082,621082,ff,C1D_HysCTP2_SwOFF_Out 7 ,765,88,95,1,40,0,%,221082,621082,ff,C1D_HysCTP2_SwOFF_Out 8 ,765,24,31,1,40,0,°C,221083,621083,ff,C1D_HysCTP3_SwOFF_In 0 ,765,32,39,1,40,0,°C,221083,621083,ff,C1D_HysCTP3_SwOFF_In 1 ,765,40,47,1,40,0,°C,221083,621083,ff,C1D_HysCTP3_SwOFF_In 2 ,765,48,55,1,40,0,°C,221083,621083,ff,C1D_HysCTP3_SwOFF_In 3 ,765,56,63,1,40,0,°C,221083,621083,ff,C1D_HysCTP3_SwOFF_In 4 ,765,64,71,1,40,0,°C,221083,621083,ff,C1D_HysCTP3_SwOFF_In 5 ,765,72,79,1,40,0,°C,221083,621083,ff,C1D_HysCTP3_SwOFF_In 6 ,765,80,87,1,40,0,°C,221083,621083,ff,C1D_HysCTP3_SwOFF_In 7 ,765,88,95,1,40,0,°C,221083,621083,ff,C1D_HysCTP3_SwOFF_In 8 ,765,24,31,1,40,0,%,221084,621084,ff,C1D_HysCTP3_SwOFF_Out 0 ,765,32,39,1,40,0,%,221084,621084,ff,C1D_HysCTP3_SwOFF_Out 1 ,765,40,47,1,40,0,%,221084,621084,ff,C1D_HysCTP3_SwOFF_Out 2 ,765,48,55,1,40,0,%,221084,621084,ff,C1D_HysCTP3_SwOFF_Out 3 ,765,56,63,1,40,0,%,221084,621084,ff,C1D_HysCTP3_SwOFF_Out 4 ,765,64,71,1,40,0,%,221084,621084,ff,C1D_HysCTP3_SwOFF_Out 5 ,765,72,79,1,40,0,%,221084,621084,ff,C1D_HysCTP3_SwOFF_Out 6 ,765,80,87,1,40,0,%,221084,621084,ff,C1D_HysCTP3_SwOFF_Out 7 ,765,88,95,1,40,0,%,221084,621084,ff,C1D_HysCTP3_SwOFF_Out 8 ,765,24,31,1,40,0,°C,221085,621085,ff,C1D_HysCTP4_SwOFF_In 0 ,765,32,39,1,40,0,°C,221085,621085,ff,C1D_HysCTP4_SwOFF_In 1 ,765,40,47,1,40,0,°C,221085,621085,ff,C1D_HysCTP4_SwOFF_In 2 ,765,48,55,1,40,0,°C,221085,621085,ff,C1D_HysCTP4_SwOFF_In 3 ,765,56,63,1,40,0,°C,221085,621085,ff,C1D_HysCTP4_SwOFF_In 4 ,765,64,71,1,40,0,°C,221085,621085,ff,C1D_HysCTP4_SwOFF_In 5 ,765,72,79,1,40,0,°C,221085,621085,ff,C1D_HysCTP4_SwOFF_In 6 ,765,80,87,1,40,0,°C,221085,621085,ff,C1D_HysCTP4_SwOFF_In 7 ,765,88,95,1,40,0,°C,221085,621085,ff,C1D_HysCTP4_SwOFF_In 8 ,765,24,31,1,40,0,%,221086,621086,ff,C1D_HysCTP4_SwOFF_Out 0 ,765,32,39,1,40,0,%,221086,621086,ff,C1D_HysCTP4_SwOFF_Out 1 ,765,40,47,1,40,0,%,221086,621086,ff,C1D_HysCTP4_SwOFF_Out 2 ,765,48,55,1,40,0,%,221086,621086,ff,C1D_HysCTP4_SwOFF_Out 3 ,765,56,63,1,40,0,%,221086,621086,ff,C1D_HysCTP4_SwOFF_Out 4 ,765,64,71,1,40,0,%,221086,621086,ff,C1D_HysCTP4_SwOFF_Out 5 ,765,72,79,1,40,0,%,221086,621086,ff,C1D_HysCTP4_SwOFF_Out 6 ,765,80,87,1,40,0,%,221086,621086,ff,C1D_HysCTP4_SwOFF_Out 7 ,765,88,95,1,40,0,%,221086,621086,ff,C1D_HysCTP4_SwOFF_Out 8 ,765,24,31,1,40,0,°C,221087,621087,ff,C1D_HysCTP5_SwOFF_In 0 ,765,32,39,1,40,0,°C,221087,621087,ff,C1D_HysCTP5_SwOFF_In 1 ,765,40,47,1,40,0,°C,221087,621087,ff,C1D_HysCTP5_SwOFF_In 2 ,765,48,55,1,40,0,°C,221087,621087,ff,C1D_HysCTP5_SwOFF_In 3 ,765,56,63,1,40,0,°C,221087,621087,ff,C1D_HysCTP5_SwOFF_In 4 ,765,64,71,1,40,0,°C,221087,621087,ff,C1D_HysCTP5_SwOFF_In 5 ,765,72,79,1,40,0,°C,221087,621087,ff,C1D_HysCTP5_SwOFF_In 6 ,765,80,87,1,40,0,°C,221087,621087,ff,C1D_HysCTP5_SwOFF_In 7 ,765,88,95,1,40,0,°C,221087,621087,ff,C1D_HysCTP5_SwOFF_In 8 ,765,24,31,1,40,0,%,221088,621088,ff,C1D_HysCTP5_SwOFF_Out 0 ,765,32,39,1,40,0,%,221088,621088,ff,C1D_HysCTP5_SwOFF_Out 1 ,765,40,47,1,40,0,%,221088,621088,ff,C1D_HysCTP5_SwOFF_Out 2 ,765,48,55,1,40,0,%,221088,621088,ff,C1D_HysCTP5_SwOFF_Out 3 ,765,56,63,1,40,0,%,221088,621088,ff,C1D_HysCTP5_SwOFF_Out 4 ,765,64,71,1,40,0,%,221088,621088,ff,C1D_HysCTP5_SwOFF_Out 5 ,765,72,79,1,40,0,%,221088,621088,ff,C1D_HysCTP5_SwOFF_Out 6 ,765,80,87,1,40,0,%,221088,621088,ff,C1D_HysCTP5_SwOFF_Out 7 ,765,88,95,1,40,0,%,221088,621088,ff,C1D_HysCTP5_SwOFF_Out 8 ,765,24,31,1,0,0,,221089,621089,ff,MSG_TYPE_EMETTED_CF ,765,24,24,1,0,0,,221090,621090,ff,RES_SMARTPHONE_CF,1:true;0:false ,765,25,25,1,0,0,,221090,621090,ff,RES_SMARTPHONE_DOUBLE_CF,1:true;0:false ,765,32,39,1,0,0,,221090,621090,ff,RES_MAX_TCU_REQUEST_CF ,765,40,71,1,0,0,,221090,621090,4ff,RES_MAX_TCU_DELAY_TM_CF ,765,72,79,1,0,0,,221090,621090,ff,DONGLE_CF,0:DONGLE_SLAVE_1;1:DONGLE_SLAVE_2;2:DONGLE_SLAVE_3 ,765,24,24,1,0,0,,221091,621091,ff,CHARGE_CALENDARS_CF,1:true;0:false ,765,24,24,1,0,0,,221092,621092,ff,RES_PRESOAK_CALENDARS_CF,1:true;0:false ,765,24,24,1,0,0,,221093,621093,ff,PRM_CLIM_PROG_PC_ACTIVATION_CF,1:true;0:false ,765,24,31,1,0,0,,221094,621094,ff,PRM_PC_VALUE_CF,0:PREHEATING_NOT_REQ;1:PREHEATING_TIME_1_REQ;2:PREHEATING_TIME_2_REQ;3:PREHEATING_UNAVAILABLE ,765,24,24,1,0,0,,221095,621095,ff,CHARGE_REMOTE_CF,1:true;0:false ,765,24,31,1,0,0,,221096,621096,ff,E_TM_ENGCOOLTEMPERATURE_DELAY_CF ,765,24,31,1,0,0,,222001,622001,ff,C_K_ENGINEFANSPEEDREQUESTESMMIN ,765,24,31,1,40,0,°C,222008,622008,ff,C_TEMP_EXTTEMPWEP ,765,24,31,.125,0,1,min,222009,622009,ff,C_K_HYSENGINERPMFORWEP_IC ,765,24,39,.125,0,1,,22200A,62200A,ff,C_N_HYSENGINERPMFORWEP_THLDHG ,765,24,39,.125,0,1,,22200B,62200B,ff,C_N_HYSENGINERPMFORWEP_THLDLW ,765,24,31,1,40,0,°C,22200C,62200C,ff,C_TEMP_HYSEXTTEMPFORWEP_THLDHG ,765,24,31,1,40,0,°C,22200D,62200D,ff,C_TEMP_HYSEXTTEMPFORWEP_THLDLW ,765,24,31,1,40,0,°C,22200E,62200E,ff,C_K_HYSEXTTEMPFORWEP_IC ,765,24,31,.25,-4600,1,V,22200F,62200F,ff,C_U_VOLTREQHG ,765,24,31,.25,-4600,1,V,222010,622010,ff,C_U_VOLTREQLW ,765,24,31,1,40,0,°C,222011,622011,ff,C_TEMP_HYSEXTTEMPFORCOOLFAN_HG ,765,24,31,1,40,0,°C,222012,622012,ff,C_TEMP_HYSEXTTEMPFORCOOLFAN_LW ,765,24,31,1,40,0,°C,222013,622013,ff,C_TEMP_HYSEXTHGTEMPFORBLOWER_HG ,765,24,31,1,40,0,°C,222014,622014,ff,C_TEMP_HYSEXTHGTEMPFORBLOWER_LW ,765,24,31,1,40,0,°C,222015,622015,ff,C_TEMP_HYSEXTLWTEMPFORBLOWER_HG ,765,24,31,1,40,0,°C,222016,622016,ff,C_TEMP_HYSEXTLWTEMPFORBLOWER_LW ,765,24,31,1,40,0,°C,222017,622017,ff,C_TEMP_HYSEXTTEMPFORPTC_HG ,765,24,31,1,40,0,°C,222018,622018,ff,C_TEMP_HYSEXTTEMPFORPTC_LW ,765,24,31,1,0,0,,222021,622021,ff,SASPERIODICITY ,765,24,31,1,0,0,,222023,622023,ff,MAX_DRIVER_DOOR_INACTIVE_COUNTER_TP ,765,24,39,.01,0,2,s,222024,622024,ff,ALARM_DELAYED_TM_TP ,765,24,39,.01,0,2,s,222025,622025,ff,RES_DOUBLE_FLASH_LONG_TM_TP ,765,24,39,.01,0,2,s,222026,622026,ff,RES_DOUBLE_FLASH_SHORT_TM_TP ,765,24,39,.01,0,2,s,222027,622027,ff,RES_PERMANENT_FLASH_LONG_TM_TP ,765,24,31,1,0,0,,222028,622028,ff,RES_TIMER_RELOAD_TIME_TP ,765,24,39,.01,0,2,s,222029,622029,ff,VERLOG_FRAME_ABSENT_TM_TP ,765,24,55,1,0,0,,22202A,62202A,4ff,RES_PROGRAMMED_TIMER_TM_TP ,765,24,39,.01,0,2,s,22202B,62202B,ff,C_TM_TIMERACOFF_DEFAUTVALUE ,765,24,39,.01,0,2,s,22202D,62202D,ff,CHECK_COND_START_RES_TM_TP ,765,24,55,1,0,0,,22202E,62202E,4ff,CHECK_DURATION_START_TM_TP ,765,24,39,.01,0,2,s,22202F,62202F,ff,CHECK_TEMP_TM_TP ,765,24,39,.01,0,2,s,222030,622030,ff,CHECK_TRANS_TM_TP ,765,24,39,.01,0,2,s,222031,622031,ff,CHECK_VERLOG_TM_TP ,765,24,39,.01,0,2,s,222032,622032,ff,LOST_FRAME_AT_TM_TP ,765,24,39,.01,0,2,s,222033,622033,ff,LOST_FRAME_ECM_TM_TP ,765,24,55,1,0,0,,222034,622034,4ff,MAX_RES_TIMER_DURATION_TM_TP ,765,24,31,.01,0,2,s,222035,622035,ff,ONE_SECOND_TM_TP ,765,24,39,.01,0,2,s,222036,622036,ff,RES_ACTIVATION_FAILURE_TM_TP ,765,24,39,.01,0,2,s,222037,622037,ff,RES_BY_KEY_TM_TP ,765,24,31,.01,0,2,s,222038,622038,ff,TWO_SECONDS_TM_TP ,765,24,39,.01,0,2,s,22203A,62203A,ff,CHECK_ECM_FAILURE_DISPLAY_TM_TP ,765,24,39,1,0,0,km,22203B,62203B,ff,DISTANCE_DELIVERY_MODE_THRESHOLD_TP ,765,24,31,10,0,0,ms,22203C,62203C,ff,WAITING_ECM_FRAMES_TM_TP ,765,24,39,1,0,0,ms,22203D,62203D,ff,PENDING_AVAILABILITY_DATA_TM_TP ,765,24,39,.1,0,1,V,22203E,62203E,ff,C_U_UMIN_CRANKING_IVLD ,765,24,39,1,320,0,A,22203F,62203F,ff,C_I_INVALIDSENSOR ,765,24,39,.01,0,2,s,222040,622040,ff,CHECK_ODO_TM_TP ,765,24,39,.01,0,2,s,222041,622041,ff,PRM_WAIT_FOR_LOCAL_TIME_TM_TP ,765,24,39,.01,0,2,s,222042,622042,ff,BYPASS_RPU_TM_TP ,765,24,39,.01,0,2,,222043,622043,ff,TIMEOUT_A_IVC_PRESENCE_TM_TP ,765,24,31,.01,0,2,s,222044,622044,ff,IS_TAILGATE_COH2_TM_TP ,765,24,31,1,0,0,km/h,222045,622045,ff,IS_TAILGATE_COH_SPEED_THRESH_TP ,765,24,31,.01,0,2,s,222046,622046,ff,IS_TAILGATE_COH1_TM_TP ,765,24,31,.01,0,2,s,222047,622047,ff,IS_TAILGATE_COH_OFFSET_TM_TP ,765,24,31,1,0,0,,224016,624016,ff,DRIVER_DOOR_INACTIVE_COUNTER_S ,765,24,31,1,0,0,,224017,624017,ff,VEHICLESTATE_T4_CS ,765,24,31,1,0,0,,224018,624018,ff,RES_ACTIVATION_S,0:RES_UNACTIVATED;1:RES_UNDER_ACTIVATION;2:RES_ACTIVATED ,765,24,31,1,0,0,,224019,624019,ff,RES_STATUS_S,0:RES_UNAVAILABLE;1:RES_NOT_USED_1;2:RES_WAIT_FOR_A_REQUEST;3:RES_NORMAL_ENGINE_START;4:RES_NOT_USED_4;5:RES_REMOTE_ENGINE_START;6:RES_VEHICLE_WITHOUT_RES;7:RES_NOT_USED_7 ,765,24,55,1,0,0,,22401A,62401A,4ff,RES_STOPPED_BY_ACCESS_MILAGE_S ,765,24,55,1,0,0,,22401C,62401C,4ff,RES_STOPPED_BY_ACCESS_TIME_S ,765,24,55,1,0,0,,22401D,62401D,4ff,RES_STOPPED_BY_ECM_MILAGE_S ,765,24,55,1,0,0,,22401F,62401F,4ff,RES_STOPPED_BY_ECM_TIME_S ,765,24,55,1,0,0,,224020,624020,4ff,RES_STOPPED_BY_NORMAL_MILAGE_S ,765,24,55,1,0,0,,224022,624022,4ff,RES_STOPPED_BY_NORMAL_TIME_S ,765,24,55,1,0,0,,224023,624023,4ff,RES_STOPPED_BY_TRANSMISSION_MILAGE_S ,765,24,55,1,0,0,,224025,624025,4ff,RES_STOPPED_BY_TRANSMISSION_TIME_S ,765,24,55,1,0,0,,224026,624026,4ff,RES_SUCCESS_BY_KEY_MILAGE_S ,765,24,55,1,0,0,,224029,624029,4ff,RES_SUCCESS_BY_KEY_TIME_S ,765,24,55,1,0,0,,22402A,62402A,4ff,RES_SUCCESS_BY_TIMER_MILAGE_S ,765,24,55,1,0,0,,22402C,62402C,4ff,RES_SUCCESS_BY_TIMER_TIME_S ,765,24,31,1,0,0,,22402D,62402D,ff,ADDON_S_K_SOFCOUNTER_S ,765,24,39,.001,0,3,,22402E,62402E,ff,ADDON_S_U_BATTOCV_MES_S ,765,24,39,.01,0,2,,224030,624030,ff,ADDON_S_PCT_JAUGEVT_S ,765,24,39,.01,0,2,,224031,624031,ff,ADDON_S_PCT_SOCCURRENT_EST_S ,765,24,24,1,0,0,,224032,624032,ff,ADDON_S_B_CONDRST_U_NOLOAD_BYOCV_S,1:true;0:false ,765,24,24,1,0,0,,224033,624033,ff,ADDON_S_B_CUSTOM_WU_IGNI_ON_S,1:true;0:false ,765,24,24,1,0,0,,224034,624034,ff,ADDON_S_B_SOC_INIT_CHGE_AFTRWKEUP_S,1:true;0:false ,765,24,55,1,0,0,,224035,624035,4ff,ADDON_S_K_AHCMPREEQUILIBRAGE_S ,765,24,55,1,0,0,,224036,624036,4ff,ADDON_S_K_BATTLIFEDISCHAHCOUNTER_S ,765,24,31,1,0,0,,224037,624037,ff,ADDON_S_K_CHARGERPRESENTINPARK_S ,765,24,31,1,0,0,,224038,624038,ff,ADDON_S_E_BATTOCV_STATUS_S,0:NOT_STABILIZED;1:STABILIZED ,765,24,31,1,40,0,°C,224039,624039,ff,ADDON_S_TEMP_BATTERYTEMPERATURE_S ,765,24,31,1,40,0,°C,22403A,62403A,ff,ADDON_S_TEMP_ENGINETEMPERATURE_S ,765,24,31,1,40,0,°C,22403B,62403B,ff,ADDON_S_TEMP_EQ_COND_S ,765,24,31,1,40,0,°C,22403C,62403C,ff,ADDON_S_TEMP_LASTESTIMATIONDONE_S ,765,24,55,1,0,0,,22403D,62403D,4ff,ADDON_S_TM_PARKINGTIME_S ,765,24,55,1,0,0,,22403E,62403E,4ff,ADDON_S_TM_CELL_REBALANCING_S ,765,24,55,1,0,0,,224040,624040,4ff,ADDON_S_TM_TIME_SPENT_IN_BOOST_S ,765,24,39,.001,0,3,,224041,624041,ff,ADDON_S_U_BATT_NOLOAD_S ,765,24,39,.001,0,3,,224042,624042,ff,ADDON_S_U_BATTBOOSTOFFSET_S ,765,24,31,1,0,0,,224043,624043,ff,STARTER_STATUS_S,0:CRANKING_RELAY_SWITCHED_OFF;1:SHORT_RELAXATION_ACTIVE;2:LONG_RELAXATION_ACTIVE;3:CRANKING_RELAY_SWITCHED_ON ,765,24,55,1,0,0,,224044,624044,4ff,COUNT_RES_PROG_FAIL_BY_TEMP_S ,765,24,55,1,0,0,,224045,624045,4ff,COUNT_RES_STOP_BY_ACCESS_S ,765,24,55,1,0,0,,224046,624046,4ff,COUNT_RES_STOP_BY_ECM_S ,765,24,55,1,0,0,,224047,624047,4ff,COUNT_RES_STOP_BY_NORMAL_S ,765,24,55,1,0,0,,224048,624048,4ff,COUNT_RES_STOP_BY_TRANS_S ,765,24,55,1,0,0,,224049,624049,4ff,COUNT_RES_SUCCESS_BY_KEY_S ,765,24,55,1,0,0,,22404A,62404A,4ff,COUNT_RES_SUCCESS_BY_PROG_S ,765,24,31,1,0,0,,22404B,62404B,ff,RES_CRANKING_FAILURE_CS_S ,765,24,24,1,0,0,,22404C,62404C,ff,RES_ID_AUTH_STARTING_SEQUENCE_S,1:true;0:false ,765,24,24,1,0,0,,22404D,62404D,ff,CAR_SECURE_S,1:true;0:false ,765,24,24,1,0,0,,22404E,62404E,ff,ECM_RES_VERLOG_PROTECTION_S,1:true;0:false ,765,24,24,1,0,0,,224050,624050,ff,ECM_VERLOG_PROTECTION_S,1:true;0:false ,765,24,55,1,0,0,,224051,624051,4ff,RES_STOPPED_BY_ODOMETER_MILAGE_S ,765,24,55,1,0,0,,224052,624052,4ff,RES_STOPPED_BY_ODOMETER_TIME_S ,765,24,55,1,0,0,,224053,624053,4ff,RES_STOPPED_BY_RESET_MILAGE_S ,765,24,55,1,0,0,,224054,624054,4ff,RES_STOPPED_BY_RESET_TIME_S ,765,24,55,1,0,0,,224055,624055,4ff,COUNT_RES_STOP_BY_ODO_S ,765,24,55,1,0,0,,224056,624056,4ff,COUNT_RES_STOP_BY_RESET_S ,765,24,24,1,0,0,,224057,624057,ff,DELIVERY_MODE_AUTHORIZED_S,1:true;0:false ,765,24,24,1,0,0,,224058,624058,ff,RES_WITH_FUEL_BURNER_REQUEST_S,1:true;0:false ,765,24,55,1,0,0,,224059,624059,4ff,COUNT_RES_SUCCESS_BY_TCU_S ,765,24,55,1,0,0,,22405A,62405A,4ff,COUNT_RES_STOP_BY_TCU_S ,765,24,55,1,0,0,,22405B,62405B,4ff,RES_STOPPED_BY_TCU_MILAGE_S ,765,24,55,1,0,0,,22405C,62405C,4ff,RES_STOPPED_BY_TCU_TIME_S ,765,24,55,1,0,0,,22405D,62405D,4ff,RES_SUCCESS_BY_TCU_MILAGE_S ,765,24,55,1,0,0,,22405E,62405E,4ff,RES_SUCCESS_BY_TCU_TIME_S ,765,24,31,1,0,0,,22405F,62405F,ff,DELIVERY_MODE_STATE_S,0:CUSTOMER_MODE_2;1:DELIVERY_MODE_LEVEL_1;2:DELIVERY_MODE_LEVEL_2;3:DELIVERY_MODE_2_NOT_USED ,765,24,24,1,0,0,,224060,624060,ff,RPU_PROVISIONING_S,1:true;0:false ,765,24,24,1,0,0,,224061,624061,ff,RPU_UNPROTECT_S,1:true;0:false ,765,24,24,1,0,0,,224062,624062,ff,RPU_STALLING_STATE_S,1:true;0:false ,765,24,24,1,0,0,,224063,624063,ff,REMOTE_PROT_REQUEST_S,1:true;0:false ,765,24,39,1,0,0,s,224064,624064,ff,BYPASS_RPU_TIMER_S ,765,24,31,1,0,0,,224065,624065,ff,CHARGEPROHIBBYRENTAL_BCM_S,0:CHARGE_PROHIB_UNAVAILABLE;1:CHARGE_PROHIB_AUTHORIZED;2:CHARGE_PROHIB_NOT_AUTHORIZED ,765,24,31,1,0,0,,224066,624066,ff,CHARGEPROHIBBYRENTAL_HFM_S,0:CHARGE_PROHIB_UNAVAILABLE;1:CHARGE_PROHIB_AUTHORIZED;2:CHARGE_PROHIB_NOT_AUTHORIZED ,765,24,55,1,0,0,,224067,624067,4ff,CHARGE_CAL_MILAGE_S ,765,24,55,1,0,0,,224068,624068,4ff,CHARGE_CAL_S ,765,24,55,1,0,0,,224069,624069,4ff,CHARGE_CAL_TIME_S ,765,24,39,1,0,0,min,22406A,62406A,ff,CHARGE_CAL_VALUE_S ,765,24,55,1,0,0,,22406B,62406B,4ff,CHARGE_DELAYED_MILAGE_S ,765,24,55,1,0,0,,22406C,62406C,4ff,CHARGE_DELAYED_S ,765,24,55,1,0,0,,22406D,62406D,4ff,EVP_ACTIVATION_TIME_COUNTER_S ,765,24,39,1,0,0,min,22406E,62406E,ff,CHARGE_DELAYED_VALUE_S ,765,24,55,1,0,0,,22406F,62406F,4ff,CHARGE_DELAYED_TIME_S ,765,24,31,1,0,0,h,224070,624070,ff,CHARGECAL1BEGINHOUR_S ,765,24,31,1,0,0,min,224071,624071,ff,CHARGECAL1BEGINMIN_S ,765,24,39,1,0,0,min,224072,624072,ff,CHARGECAL1DURATION_S ,765,24,24,1,0,0,,224073,624073,ff,CHARGECAL1FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,224074,624074,ff,CHARGECAL1MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,224075,624075,ff,CHARGECAL1SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,224076,624076,ff,CHARGECAL1SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224077,624077,ff,CHARGECAL1THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,224078,624078,ff,CHARGECAL1TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,224079,624079,ff,CHARGECAL1WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,h,22407A,62407A,ff,CHARGECAL2BEGINHOUR_S ,765,24,31,1,0,0,min,22407B,62407B,ff,CHARGECAL2BEGINMIN_S ,765,24,39,1,0,0,min,22407C,62407C,ff,CHARGECAL2DURATION_S ,765,24,24,1,0,0,,22407D,62407D,ff,CHARGECAL2FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,22407E,62407E,ff,CHARGECAL2MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,22407F,62407F,ff,CHARGECAL2SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,224080,624080,ff,CHARGECAL2SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224081,624081,ff,CHARGECAL2THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,224082,624082,ff,CHARGECAL2TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,224083,624083,ff,CHARGECAL2WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,h,224084,624084,ff,CHARGECAL3BEGINHOUR_S ,765,24,31,1,0,0,min,224085,624085,ff,CHARGECAL3BEGINMIN_S ,765,24,39,1,0,0,min,224086,624086,ff,CHARGECAL3DURATION_S ,765,24,24,1,0,0,,224087,624087,ff,CHARGECAL3FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,224088,624088,ff,CHARGECAL3MONDAY_S,0:false;1:true ,765,24,24,1,0,0,,224089,624089,ff,CHARGECAL3SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,22408A,62408A,ff,CHARGECAL3SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,22408B,62408B,ff,CHARGECAL3THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,22408C,62408C,ff,CHARGECAL3TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,22408D,62408D,ff,CHARGECAL3WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,h,22408E,62408E,ff,CHARGECAL4BEGINHOUR_S ,765,24,31,1,0,0,min,22408F,62408F,ff,CHARGECAL4BEGINMIN_S ,765,24,39,1,0,0,min,224090,624090,ff,CHARGECAL4DURATION_S ,765,24,24,1,0,0,,224091,624091,ff,CHARGECAL4FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,224092,624092,ff,CHARGECAL4MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,224093,624093,ff,CHARGECAL4SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,224094,624094,ff,CHARGECAL4SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224095,624095,ff,CHARGECAL4THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,224096,624096,ff,CHARGECAL4TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,224097,624097,ff,CHARGECAL4WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,h,224098,624098,ff,CHARGECAL5BEGINHOUR_S ,765,24,31,1,0,0,min,224099,624099,ff,CHARGECAL5BEGINMIN_S ,765,24,39,1,0,0,min,22409A,62409A,ff,CHARGECAL5DURATION_S ,765,24,24,1,0,0,,22409B,62409B,ff,CHARGECAL5FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,22409C,62409C,ff,CHARGECAL5MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,22409D,62409D,ff,CHARGECAL5SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,22409E,62409E,ff,CHARGECAL5SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,22409F,62409F,ff,CHARGECAL5THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240A0,6240A0,ff,CHARGECAL5TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240A1,6240A1,ff,CHARGECAL5WEDNESDAY_S,1:true;0:false ,765,24,55,1,0,0,,2240A2,6240A2,4ff,PRESOAK_CAL_MILAGE_S ,765,24,55,1,0,0,,2240A3,6240A3,4ff,PRESOAK_CAL_S ,765,24,55,1,0,0,,2240A4,6240A4,4ff,PRESOAK_CAL_TIME_S ,765,24,39,1,0,0,min,2240A5,6240A5,ff,PRESOAK_CAL_VALUE_S ,765,24,31,1,0,0,h,2240A6,6240A6,ff,PRESOAKCAL1ARRIVALHOUR_S ,765,24,31,1,0,0,min,2240A7,6240A7,ff,PRESOAKCAL1ARRIVALMIN_S ,765,24,24,1,0,0,,2240A8,6240A8,ff,PRESOAKCAL1FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240A9,6240A9,ff,PRESOAKCAL1MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240AA,6240AA,ff,PRESOAKCAL1SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240AB,6240AB,ff,PRESOAKCAL1SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240AC,6240AC,ff,PRESOAKCAL1THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240AD,6240AD,ff,PRESOAKCAL1TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240AE,6240AE,ff,PRESOAKCAL1WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,h,2240AF,6240AF,ff,PRESOAKCAL2ARRIVALHOUR_S ,765,24,31,1,0,0,min,2240B0,6240B0,ff,PRESOAKCAL2ARRIVALMIN_S ,765,24,24,1,0,0,,2240B1,6240B1,ff,PRESOAKCAL2FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240B2,6240B2,ff,PRESOAKCAL2MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240B3,6240B3,ff,PRESOAKCAL2SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240B4,6240B4,ff,PRESOAKCAL2THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240B5,6240B5,ff,PRESOAKCAL2TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240B6,6240B6,ff,PRESOAKCAL2WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,h,2240B7,6240B7,ff,PRESOAKCAL3ARRIVALHOUR_S ,765,24,31,1,0,0,min,2240B8,6240B8,ff,PRESOAKCAL3ARRIVALMIN_S ,765,24,24,1,0,0,,2240B9,6240B9,ff,PRESOAKCAL3FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240BA,6240BA,ff,PRESOAKCAL3MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240BB,6240BB,ff,PRESOAKCAL3SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240BC,6240BC,ff,PRESOAKCAL3SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240BD,6240BD,ff,PRESOAKCAL3THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240BE,6240BE,ff,PRESOAKCAL3TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240BF,6240BF,ff,PRESOAKCAL3WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,h,2240C0,6240C0,ff,PRESOAKCAL4ARRIVALHOUR_S ,765,24,31,1,0,0,min,2240C1,6240C1,ff,PRESOAKCAL4ARRIVALMIN_S ,765,24,24,1,0,0,,2240C2,6240C2,ff,PRESOAKCAL4FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240C3,6240C3,ff,PRESOAKCAL4MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240C4,6240C4,ff,PRESOAKCAL4SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240C5,6240C5,ff,PRESOAKCAL4SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240C6,6240C6,ff,PRESOAKCAL4THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240C7,6240C7,ff,PRESOAKCAL4TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240C8,6240C8,ff,PRESOAKCAL4WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,h,2240C9,6240C9,ff,PRESOAKCAL5ARRIVALHOUR_S ,765,24,31,1,0,0,min,2240CA,6240CA,ff,PRESOAKCAL5ARRIVALMIN_S ,765,24,24,1,0,0,,2240CB,6240CB,ff,PRESOAKCAL5FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240CC,6240CC,ff,PRESOAKCAL5MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240CD,6240CD,ff,PRESOAKCAL5SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240CE,6240CE,ff,PRESOAKCAL5SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240CF,6240CF,ff,PRESOAKCAL5THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240D0,6240D0,ff,PRESOAKCAL5TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240D1,6240D1,ff,PRESOAKCAL5WEDNESDAY_S,1:true;0:false ,765,24,24,1,0,0,,2240D2,6240D2,ff,PRESOAKCAL2SATURDAY_S,1:true;0:false ,765,24,39,.001,0,3,,226001,626001,ff,V_U_BATT_USM_FLT ,765,24,39,.1,0,1,,226002,626002,1ff,V_I_IBATTSENSOR_FLT ,765,24,31,40,0,0,,226003,626003,ff,V_P_ELECPOWERCONSUMEDBYAUX ,765,24,31,1,0,0,,226005,626005,ff,V_E_ENGINESTATUS,0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,24,39,.01,0,2,,226006,626006,ff,V_PCT_ALTERNATORLOAD ,765,24,31,1,0,0,,226007,626007,ff,V_E_VOLTAGEREGULATIONSTATUS,0:NOT_INITIALIZED;1:STARTING_SEQUENCE;2:REGULATION;3:LIMITATION;4:ALT_COM_DETECT;5:ALT_COM_CONF;6:ALT_DFLT_DETECT;7:ALT_DFLT_CONF;8:UNDERVOLT_DETECT;9:UNDERVOLT_CONF;10:OVERVOLT_DETECT;11:OVERVOLT_CONF;12:CAN_COM_DETECT;13:CAN_COM_CONF;14:VRS_NOT_USED;15:VRS_UNAVAILABLE ,765,24,31,1,0,0,,226008,626008,ff,V_E_SETPOINTGENERATORSTATUS,0:BAT_CONNECTION_NOMINAL_MODE;1:BAT_CONNECTION_DEFAULT_DETECTED;2:BAT_CONNECTION_DEFAULT_CONFIRMED;3:BAT_CONNECTION_DISCONNECTED ,765,24,39,.001,0,3,,226009,626009,ff,V_U_ALT_REQ ,765,24,39,.001,0,3,,22600A,62600A,ff,V_U_BATT_REQ ,765,24,31,1,0,0,,22600F,62600F,ff,V_E_VEHICLEACTIVATIONSTATE,0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:INITIAL_STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING;5:NOT_USED_1_VS;6:NOT_USED_2_VS;7:UNAVAILABLE_VS ,765,24,39,.01,0,2,,226011,626011,ff,V_S_VEHICLESPEED ,765,24,55,1,0,0,,226012,626012,4ff,V_TM_ABSOLUTETIMESINCE1RSTIGN ,765,24,31,1,40,0,,226013,626013,ff,V_TEMP_ENGINECOOLANTTEMP ,765,24,31,1,40,0,,226014,626014,ff,V_TEMP_EXTERNALTEMP ,765,24,31,1,40,0,,226015,626015,ff,V_TEMP_BATT_EST ,765,24,24,1,0,0,,226016,626016,ff,V_B_ZONEBATT_OK,1:true;0:false ,765,24,31,1,0,0,,226017,626017,ff,V_K_ESM_STATUS ,765,24,31,1,0,0,,226018,626018,ff,V_E_GENMODE,0:GENMODE0_LIMIT_REQ_BY_ENGINE;1:GENMODE1_NOMINAL_STRATEGY_MODE;2:GENMODE2_ESM_INTERMEDIATE_MODE;3:GENMODE3_BATTERY_PROTECTION;4:GENMODE4_ESM_DISCHAGE_MODE;5:GENMODE5_ESM_REGENERATION_MODE;6:GENMODE6_ESM_INHIBITED_BY_WIPER;7:GENMODE7_ESM_INHIBITED_BY_ACTUATOR;8:GENMODE8_MAX_VOLTAGE_BY_ENDUR;9:GENMODE9_MIN_VOLTAGE_BY_ECM;10:GENMODE10_FLOATING_MODE;11:GENMODE_NOT_USED1;15:GENMODE_UNAVAILABLE;12:GENMODE_NOT_USED2;13:GENMODE_NOT_USED3;14:GENMODE_NOT_USED4 ,765,24,39,.01,0,2,,226019,626019,ff,V_PCT_DOD_SS_INT ,765,24,39,.01,0,2,,22601A,62601A,ff,V_PCT_DOD_ESM_INT ,765,24,39,1,0,0,,22601B,62601B,ff,V_K_STOPAUTOFORBIDFORBID_INT ,765,24,24,1,0,0,,22601C,62601C,ff,CAN_CLUSTER_ABSENT,1:true;0:false ,765,24,24,1,0,0,,22601D,62601D,ff,V_B_BATTERYDISCHARGEBYESM_OK_INT,1:true;0:false ,765,24,31,.1,0,1,,22601E,62601E,ff,V_U_ALTERNATOROPTIMUMVOLTAGE_LHM_INT ,765,24,31,.1,0,1,,22601F,62601F,ff,V_U_MIN_BY_AC_LHM_INT ,765,24,31,.1,0,1,,226020,626020,ff,V_U_MIN_BY_ECM_LHM_INT ,765,24,31,.1,0,1,,226021,626021,ff,V_U_MIN_BY_BCM_LHM_INT ,765,24,39,.001,0,3,,226022,626022,ff,V_U_ESM_PRIM_BATT_REQ_D_INT ,765,24,39,.001,0,3,,226023,626023,ff,V_U_ESM_PRIM_BATT_REQ_I_INT ,765,24,39,.001,0,3,,226024,626024,ff,V_U_ESM_PRIM_BATT_REQ_R_INT ,765,24,39,.001,0,3,,226025,626025,ff,V_U_FLOATING_PRIM_INT ,765,24,31,.1,0,1,,226026,626026,ff,V_U_TEMPO1_BATT_REQ_INT ,765,24,39,.001,0,3,,226027,626027,ff,V_U_CHARGE_BATT_REQ_INT ,765,24,39,.01,0,2,,226028,626028,ff,V_PCT_SOCINIT_EST_INT ,765,24,24,1,0,0,,226029,626029,ff,V_B_RESERVESOC_SS_OK_INT,1:true;0:false ,765,24,24,1,0,0,,22602A,62602A,ff,V_B_RESERVESOC_ESM_OK,1:true;0:false ,765,24,31,1,0,0,,22602B,62602B,ff,V_E_LOWBATTERYVOLTAGEDISPLAY,0:LBVD_NO_DISPLAY_REQUEST;1:BATTERY_WEAK;2:BATTERY_WEAK_START_ENGINE;3:BATTERY_IN_CHARGE ,765,24,31,.1,0,1,,22602C,62602C,ff,V_U_MAX_BY_ENDURANCE_INT ,765,24,31,.1,0,1,,22602D,62602D,ff,V_U_MAX_BY_TEMPBATT_INT ,765,24,31,.1,0,1,,22602E,62602E,ff,V_U_MIN_BY_TEMPBATT_INT ,765,24,31,1,0,0,,22602F,62602F,ff,V_E_VOLTAGERATEBYAC_LHM_INT,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,24,31,1,0,0,,226030,626030,ff,V_E_VOLTAGERATEBYBCM_LHM_INT,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,24,31,1,0,0,,226031,626031,ff,V_E_VOLTAGERATEBYECM_LHM_INT,0:VR_NO_REQUEST;1:RATE_1;2:RATE_2;3:RATE_3 ,765,24,31,.1,0,1,,226032,626032,ff,V_U_MAX_BY_ECM_LHM_INT ,765,24,31,.1,0,1,,226033,626033,ff,V_DU_RATE_BY_ECM_INT ,765,24,31,.1,0,1,,226034,626034,ff,V_DU_ESM_NEG_RATE_INT ,765,24,31,.1,0,1,,226035,626035,ff,V_DU_ESM_POS_RATE_INT ,765,24,31,1,0,0,,226036,626036,ff,V_E_BATTWARNREQ_LEVEL_HI_USM,0:NO_HI_WARNING_REQUESTED;1:HI_WARNING_REQUESTED ,765,24,31,1,0,0,,226037,626037,ff,V_E_BATTWARNREQ_LEVEL_LO_USM,0:NO_LO_WARNING_REQUESTED;1:LO_WARNING_REQUESTED ,765,24,39,.001,0,3,,226038,626038,ff,V_U_UMIN_CRANKING ,765,24,24,1,0,0,,22604C,62604C,ff,STOP_START_SW,1:true;0:false ,765,24,39,1,0,0,,22604D,62604D,ff,V_K_STOPAUTOFORBIDUNAVAIL_INT ,765,24,39,1,0,0,,226054,626054,ff,START_RES_COUNTER_VALUE ,765,24,31,1,0,0,,226055,626055,ff,START_RES_COUNTER_REQUEST,0:NO_RES_PROGRAMMED;1:ONE_TIME;2:EVERY_TWO_HOURS;3:RES_PROG_NOT_USED ,765,24,39,1,0,0,,226056,626056,ff,LEFT_TIME_BEFORE_RES ,765,24,31,1,0,0,,226057,626057,ff,LEFT_TIME_BEFORE_RES_PROGRAMMED,0:NO_RES_PROGRAMMED;1:ONE_TIME;2:EVERY_TWO_HOURS;3:RES_PROG_NOT_USED ,765,24,24,1,0,0,,226058,626058,ff,I_APC_SW,1:true;0:false ,765,24,24,1,0,0,,226059,626059,ff,ASSIST_DOOR_OPENED,1:true;0:false ,765,24,24,1,0,0,,22605A,62605A,ff,REAR_LEFT_DOOR_OPENED,1:true;0:false ,765,24,24,1,0,0,,22605B,62605B,ff,REAR_RIGHT_DOOR_OPENED,1:true;0:false ,765,24,24,1,0,0,,22605C,62605C,ff,DRIVER_DOOR_OPENED,1:true;0:false ,765,24,24,1,0,0,,22605D,62605D,ff,TAILGATE_OPENED,1:true;0:false ,765,24,24,1,0,0,,22605E,62605E,ff,UNDERHOOD_OPENED,1:true;0:false ,765,24,24,1,0,0,,22605F,62605F,ff,R_DI_LAMP_HAZARD,1:true;0:false ,765,24,31,1,0,0,,226060,626060,ff,NEUTRAL_CONTACT_STATUS,0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,24,24,1,0,0,,226061,626061,ff,CAN_AT_PRESENT,1:true;0:false ,765,24,31,1,0,0,,226062,626062,ff,AT_RES_AUTHORIZATION,0:AT_RES_UNAVAILABLE;1:AT_RES_CRANKING_NOT_ALLOWED;2:AT_RES_NOT_USED_2;3:AT_RES_NOT_USED_3;4:AT_RES_CRANKING_ALLOWED;5:AT_RES_NOT_USED_5;6:AT_RES_NOT_USED_6;7:AT_RES_CRANKING_STOP ,765,24,31,1,0,0,,226063,626063,ff,CRANKING_AUTHORIZATION_AT,0:AT_CRANKING_NOT_ALLOWED;1:AT_CRANKING_ALLOWED;2:AT_NOT_USED;3:AT_UNAVAILABLE ,765,24,24,1,0,0,,226064,626064,ff,SPEED_UNAVAILABLE_OR_INVALID,1:true;0:false ,765,24,24,1,0,0,,226066,626066,ff,O_SAFETY_LINE,1:true;0:false ,765,24,24,1,0,0,,226067,626067,ff,S_B_CONDRST_U_NOLOAD_BYOCV_INIT_S,1:true;0:false ,765,24,24,1,0,0,,226068,626068,ff,S_B_CUSTOM_WU_IGNI_ON_INIT_S,1:true;0:false ,765,24,24,1,0,0,,226069,626069,ff,S_B_SOC_INIT_CHGE_AFTRWKEUP_INIT_S,1:true;0:false ,765,24,31,1,0,0,,22606A,62606A,ff,S_E_BATTOCV_STATUS_INIT_S,0:NOT_STABILIZED;1:STABILIZED ,765,24,55,1,0,0,,22606B,62606B,4ff,S_K_AHCMPREEQUILIBRAGE_INIT_S ,765,24,55,1,0,0,,22606C,62606C,4ff,S_K_BATTLIFEDISCHAHCOUNTER_INIT_S ,765,24,31,1,0,0,,22606D,62606D,ff,S_K_CHARGERPRESENTINPARK_INIT_S ,765,24,31,1,0,0,,22606E,62606E,ff,S_K_SOFCOUNTER_INIT_S ,765,24,39,1,0,0,,22606F,62606F,ff,S_PCT_JAUGEVT_INIT_S ,765,24,39,1,0,0,,226070,626070,ff,S_PCT_SOCCURRENT_EST_INIT_S ,765,24,31,1,0,0,,226071,626071,ff,S_TEMP_BATTERYTEMPERATURE_INIT_S ,765,24,31,1,0,0,,226072,626072,ff,S_TEMP_ENGINETEMPERATURE_INIT_S ,765,24,31,1,0,0,,226073,626073,ff,S_TEMP_EQ_COND_INIT_S ,765,24,31,1,0,0,,226074,626074,ff,S_TEMP_LASTESTIMATIONDONE_INIT_S ,765,24,55,1,0,0,,226075,626075,4ff,S_TM_CELL_REBALANCING_INIT_S ,765,24,55,1,0,0,,226076,626076,4ff,S_TM_PARKINGTIME_INIT_S ,765,24,55,1,0,0,,226077,626077,4ff,S_TM_TIME_SPENT_IN_BOOST_INIT_S ,765,24,39,1,0,0,,226079,626079,ff,S_U_BATTBOOSTOFFSET_INIT_S ,765,24,39,1,0,0,,22607A,62607A,ff,S_U_BATTOCV_MES_INIT_S ,765,24,39,.01,0,2,s,22607B,62607B,ff,STOP_MAX_TIME_TM ,765,24,31,1,40,0,,22607C,62607C,ff,WATER_TEMP_MAX ,765,24,24,1,0,0,,22607D,62607D,ff,DI_LAMP_LEFT_RR_ON,1:true;0:false ,765,24,24,1,0,0,,22607E,62607E,ff,DI_LAMP_RIGHT_RR_ON,1:true;0:false ,765,24,31,1,0,0,,22607F,62607F,ff,V_K_UMINSOFUPDATED_ANA ,765,24,39,1,0,0,,226080,626080,ff,V_U_UMIN_CRANKING_ANA ,765,24,31,1,0,0,,226081,626081,ff,V_E_BATTTEMPSENS_VLD_ANA,0:DS_VALID;1:DS_NOT_VALID ,765,24,39,1,0,0,,226082,626082,ff,V_I_IBATTSENSOR_FLT_ANA ,765,24,39,1,0,0,,226083,626083,ff,V_U_BATTTEMPSENS_HW ,765,24,31,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 0 ,765,32,39,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 1 ,765,40,47,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 2 ,765,48,55,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 3 ,765,56,63,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 4 ,765,64,71,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 5 ,765,72,79,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 6 ,765,80,87,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 7 ,765,88,95,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 8 ,765,96,103,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 9 ,765,104,111,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 10 ,765,112,119,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 11 ,765,120,127,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 12 ,765,128,135,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 13 ,765,136,143,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 14 ,765,144,151,1,0,0,,226084,626084,ff,DIAG_RFS_INPUT_2 15 ,765,24,31,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 0 ,765,32,39,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 1 ,765,40,47,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 2 ,765,48,55,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 3 ,765,56,63,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 4 ,765,64,71,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 5 ,765,72,79,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 6 ,765,80,87,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 7 ,765,88,95,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 8 ,765,96,103,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 9 ,765,104,111,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 10 ,765,112,119,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 11 ,765,120,127,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 12 ,765,128,135,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 13 ,765,136,143,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 14 ,765,144,151,1,0,0,,226085,626085,ff,DIAG_RFS_OUTPUT_1 15 ,765,24,24,1,0,0,,226086,626086,ff,CAN_IVI_PRESENT,1:true;0:false ,765,24,39,1,0,0,min,226087,626087,ff,CHARGE_DELAYED_VALUE ,765,24,31,1,0,0,,226088,626088,ff,CLIM_PROG_PC_ACTIVATION_VALUE,0:PREHEATING_NOT_REQ;1:PREHEATING_TIME_1_REQ;2:PREHEATING_TIME_2_REQ;3:PREHEATING_UNAVAILABLE ,765,24,39,1,0,0,,226089,626089,ff,CURRENT_TIME_TM ,765,24,39,1,0,0,,22608A,62608A,ff,WUP_CHARGE_TM ,765,24,39,1,0,0,,22608B,62608B,ff,WUP_RES_PRESOAK_TM ,765,24,39,1,0,0,,22608C,62608C,ff,TIMER_IN_MINUTE_LL ,765,24,24,1,0,0,,22608D,62608D,ff,R_L1_BY_PRESOAKING,1:true;0:false ,765,24,39,.01,0,2,V,228000,628000,ff,BATT_VOLTAGE ,765,24,39,1,0,0,km/h,228001,628001,ff,VEHICLE_SPEED ,765,24,31,1,40,0,°C,228002,628002,ff,EXTERNAL_TEMP ,765,24,31,1,0,0,,228003,628003,ff,VEHICLESTATE_T4,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_BAT_TEMPO_LEVEL;4:VS_ACCESSORY_LEVEL;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;9:VS_ENGINE_SYSTEM_STOP;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,765,24,55,1,0,0,,228005,628005,4ff,ABSOLUTETIME ,765,24,31,1,0,0,,228006,628006,ff,V_flag_5bit_VehSpeedDTC ,765,24,31,1,0,0,,228007,628007,ff,TPMS_MOTION_STATUS 1 ,765,24,31,1,0,0,,228008,628008,ff,TPMS_RF_EVENT_TYPE 1 ,765,24,24,1,0,0,,228009,628009,ff,TPMS_INTERNAL_LOW_BATT_ON 1 ,765,24,39,7.5,0,0,mbar,228010,628010,ff,TPMS_INTERNAL_PRES 1 ,765,24,31,1,30,0,°C,228011,628011,ff,TPMS_INTERNAL_TEMP 1 ,765,24,39,7.5,0,0,mbar,228012,628012,ff,TPMS_INTERNAL_PRES_OLD 1 ,765,24,31,1,30,0,°C,228013,628013,ff,TPMS_INTERNAL_TEMP_OLD 1 ,765,24,31,1,0,0,,228014,628014,ff,TPMS_MOTION_STATUS 2 ,765,24,31,1,0,0,,228015,628015,ff,TPMS_RF_EVENT_TYPE 2 ,765,24,24,1,0,0,,228016,628016,ff,TPMS_INTERNAL_LOW_BATT_ON 2 ,765,24,39,7.5,0,0,mbar,228017,628017,ff,TPMS_INTERNAL_PRES 2 ,765,24,31,1,30,0,°C,228018,628018,ff,TPMS_INTERNAL_TEMP 2 ,765,24,39,7.5,0,0,mbar,228019,628019,ff,TPMS_INTERNAL_PRES_OLD 2 ,765,24,31,1,30,0,°C,228020,628020,ff,TPMS_INTERNAL_TEMP_OLD 2 ,765,24,31,1,0,0,,228021,628021,ff,TPMS_MOTION_STATUS 3 ,765,24,31,1,0,0,,228022,628022,ff,TPMS_RF_EVENT_TYPE 3 ,765,24,24,1,0,0,,228023,628023,ff,TPMS_INTERNAL_LOW_BATT_ON 3 ,765,24,39,7.5,0,0,mbar,228024,628024,ff,TPMS_INTERNAL_PRES 3 ,765,24,31,1,30,0,°C,228025,628025,ff,TPMS_INTERNAL_TEMP 3 ,765,24,39,7.5,0,0,mbar,228026,628026,ff,TPMS_INTERNAL_PRES_OLD 3 ,765,24,31,1,30,0,°C,228027,628027,ff,TPMS_INTERNAL_TEMP_OLD 3 ,765,24,31,1,0,0,,228028,628028,ff,TPMS_MOTION_STATUS 4 ,765,24,31,1,0,0,,228029,628029,ff,TPMS_RF_EVENT_TYPE 4 ,765,24,24,1,0,0,,228030,628030,ff,TPMS_INTERNAL_LOW_BATT_ON 4 ,765,24,39,7.5,0,0,mbar,228031,628031,ff,TPMS_INTERNAL_PRES 4 ,765,24,31,1,30,0,°C,228032,628032,ff,TPMS_INTERNAL_TEMP 4 ,765,24,39,7.5,0,0,mbar,228033,628033,ff,TPMS_INTERNAL_PRES_OLD 4 ,765,24,31,1,30,0,°C,228034,628034,ff,TPMS_INTERNAL_TEMP_OLD 4 ,765,24,24,1,0,0,,228035,628035,ff,TPMS_MISSING_TRANSMITTER 1 ,765,24,24,1,0,0,,228036,628036,ff,TPMS_PRESS_INCOH 1 ,765,24,24,1,0,0,,228037,628037,ff,TPMS_INCOH_TEMP_1 ,765,24,24,1,0,0,,228038,628038,ff,TPMS_ACCEL_INCOH 1 ,765,24,24,1,0,0,,228039,628039,ff,TPMS_INTERNAL_INCOH 1 ,765,24,24,1,0,0,,228040,628040,ff,TPMS_LOW_BATT_INCOH 1 ,765,24,24,1,0,0,,228041,628041,ff,TPMS_LEARNING_STATUS ,765,24,24,1,0,0,,228042,628042,ff,TPMS_MISSING_TRANSMITTER 2 ,765,24,24,1,0,0,,228043,628043,ff,TPMS_PRESS_INCOH 2 ,765,24,24,1,0,0,,228044,628044,ff,TPMS_INCOH_TEMP_2 ,765,24,24,1,0,0,,228045,628045,ff,TPMS_ACCEL_INCOH 2 ,765,24,24,1,0,0,,228046,628046,ff,TPMS_INTERNAL_INCOH 2 ,765,24,24,1,0,0,,228047,628047,ff,TPMS_LOW_BATT_INCOH 2 ,765,24,24,1,0,0,,228048,628048,ff,TPMS_MISSING_TRANSMITTER 3 ,765,24,24,1,0,0,,228049,628049,ff,TPMS_PRESS_INCOH 3 ,765,24,24,1,0,0,,228050,628050,ff,TPMS_INCOH_TEMP_3 ,765,24,24,1,0,0,,228051,628051,ff,TPMS_ACCEL_INCOH 3 ,765,24,24,1,0,0,,228052,628052,ff,TPMS_INTERNAL_INCOH 3 ,765,24,24,1,0,0,,228053,628053,ff,TPMS_LOW_BATT_INCOH 3 ,765,24,24,1,0,0,,228054,628054,ff,TPMS_MISSING_TRANSMITTER 4 ,765,24,24,1,0,0,,228055,628055,ff,TPMS_PRESS_INCOH 4 ,765,24,24,1,0,0,,228056,628056,ff,TPMS_INCOH_TEMP_4 ,765,24,24,1,0,0,,228057,628057,ff,TPMS_ACCEL_INCOH 4 ,765,24,24,1,0,0,,228058,628058,ff,TPMS_INTERNAL_INCOH 4 ,765,24,24,1,0,0,,228059,628059,ff,TPMS_LOW_BATT_INCOH 4 ,765,24,31,1,0,0,,228060,628060,ff,V_flag_2bit_MotionWheelDTC ,765,24,31,1,0,0,,228061,628061,ff,V_flag_2bit_EmsnTypeWheelDTC ,765,24,24,1,0,0,,228062,628062,ff,V_flag_1bit_LowBattWheelDTC ,765,24,39,7.5,0,0,mbar,228063,628063,ff,V_flag_10bit_ActPresWheelDTC ,765,24,31,1,30,0,,228064,628064,ff,V_flag_7bit_ActTempWheelDTC ,765,24,24,1,0,0,,228065,628065,ff,V_flag_1bit_PressNOkDTC 0 ,765,24,24,1,0,0,,228066,628066,ff,V_flag_1bit_PressNOkDTC 1 ,765,24,24,1,0,0,,228067,628067,ff,V_flag_1bit_PressNOkDTC 2 ,765,24,24,1,0,0,,228068,628068,ff,V_flag_1bit_PressNOkDTC 3 ,765,24,24,1,0,0,,228069,628069,ff,TPMS_LEARN_RESET_DELAY_REACHED ,765,24,39,7.5,0,0,mbar,228070,628070,ff,V_flag_10bit_PSAvePresWheelDTC ,765,24,31,1,30,0,°C,228071,628071,ff,V_flag_7bit_PSAveTempWheelDTC ,765,24,31,.06,-100,2,V,228072,628072,ff,BATTERY_VOLTAGE ,765,24,31,1,40,0,,228073,628073,ff,ILN_ENGINECOOLANTTEMP ,765,24,39,.125,0,1,,228074,628074,ff,ILN_EngineRPM ,765,24,31,1,0,0,,228075,628075,ff,ENGINE_STATUS_FROM_CAN,0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,24,31,1,0,0,,228077,628077,ff,VOLTAGE_REGULATION_STATUS,0:NOT_INITIALIZED;1:STARTING_SEQUENCE;2:REGULATION;3:LIMITATION;4:ALT_COM_DETECT;5:ALT_COM_CONF;6:ALT_DFLT_DETECT;7:ALT_DFLT_CONF;8:UNDERVOLT_DETECT;9:UNDERVOLT_CONF;10:OVERVOLT_DETECT;11:OVERVOLT_CONF;12:CAN_COM_DETECT;13:CAN_COM_CONF;14:VRS_NOT_USED;15:VRS_UNAVAILABLE ,765,24,31,1,0,0,,228078,628078,ff,SET_POINT_GENERATOR_STATUS,0:BAT_CONNECTION_NOMINAL_MODE;1:BAT_CONNECTION_DEFAULT_DETECTED;2:BAT_CONNECTION_DEFAULT_CONFIRMED;3:BAT_CONNECTION_DISCONNECTED ,765,24,31,1,0,0,,228079,628079,ff,GEN_MODE,0:GENMODE0_LIMIT_REQ_BY_ENGINE;1:GENMODE1_NOMINAL_STRATEGY_MODE;2:GENMODE2_ESM_INTERMEDIATE_MODE;3:GENMODE3_BATTERY_PROTECTION;4:GENMODE4_ESM_DISCHAGE_MODE;5:GENMODE5_ESM_REGENERATION_MODE;6:GENMODE6_ESM_INHIBITED_BY_WIPER;7:GENMODE7_ESM_INHIBITED_BY_ACTUATOR;8:GENMODE8_MAX_VOLTAGE_BY_ENDUR;9:GENMODE9_MIN_VOLTAGE_BY_ECM;10:GENMODE10_FLOATING_MODE;11:GENMODE_NOT_USED1;15:GENMODE_UNAVAILABLE;12:GENMODE_NOT_USED2;13:GENMODE_NOT_USED3;14:GENMODE_NOT_USED4 ,765,24,31,40,0,0,,228080,628080,ff,ELEC_POWER_CONSUMED_BY_AUX ,765,24,31,1,0,0,,228081,628081,ff,V_E_SOFFORSS_STATUS,0:SOF_STATUS_NOK;1:SOF_STATUS_OK;2:SOF_STATUS_NOK_CONFIRMED ,765,24,31,.390625,0,1,,228082,628082,ff,ILN_ALTERNATORLOAD_ECM ,765,24,31,1,0,0,,228083,628083,ff,V_E_STOPAUTOFORBIDDEN,0:SAF_UNAVAILABLE;3:SAF_NOT_USED;1:STOP_AUTO_FORBIDDEN;2:STOP_AUTO_AUTHORIZED ,765,24,39,1,0,0,,228084,628084,ff,S_U_BATT_NOLOAD_INIT_S ,765,24,103,1,0,0,,22F111,62F111,2ff,DAIMLER_Hardware_PartNumber ,765,24,103,1,0,0,,22F121,62F121,2ff,DAIMLER_Software_PartNumber ,765,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/UCH_Tests.csv ================================================ 44,data memory failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 61,signal calculation failure 67,signal incorrect after event 51,not programmed 71,actuator stuck 72,actuator stuck open 45,program memory failure 55,not configured 54,missing calibration 52,not activated 4B,over temperature 4A,incorrect component installed 49,internal electronic failure 48,supervision software failure 47,watchdog / safety µC failure 46,calibration / parameter memory failure 73,actuator stuck closed 87,missing message 53,deactivated 43,special memory failure 98,component or system over temperature 97,Component or system operation obstructed or blocked 96,component internal failure 95,incorrect assembly 94,unexpected operation 93,no operation 92,performance or incorrect operation 91,parametric 8F,erratic 88,bus off 85,signal above allowable range 86,signal invalid 74,actuator slipping 84,signal below allowable range 83,value of signal protection calculation incorrect 82,alive / sequence counter incorrect / not updated 81,invalid serial data received 7B,low fluid level 7A,fluid leak or seal failure 79,mechanical linkage failure 78,alignment or adjustment incorrect 77,commanded position not reachable 76,wrong mounting position 75,emergency position not reachable 66,signal has too many transitions / events 0F,Vehicle manufacturer / System supplier specific 1B,circuit resistance above threshold 1A,circuit resistance below threshold 19,circuit current above threshold 18,circuit current below threshold 17,circuit voltage above threshold 16,circuit voltage below threshold 15,circuit short to battery or open 14,circuit short to ground or open 13,circuit open 1C,circuit voltage out of range 11,circuit short to ground 09,Component Failures 08,Bus Signal / Message Failures 06,Algorithm Based Failures 05,System Programming Failures 04,System Internal Failures 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 02,General signal failure 01,General Electrical Failure 00,Device and failure type ODB codding/ General Failure Information 42,general memory failure 68,event information 12,circuit short to battery 35,signal high time > maximum 41,general checksum failure 3A,incorrect has too many pulses 07,Mechanical Failures 1D,circuit current out of range 39,incorrect has too few pulses 38,signal frequency incorrect 36,signal frequency too low 34,signal high time < minimum 33,signal low time > maximum 32,signal low time < minimum 31,no signal 25,signal shape / waveform failure 21,signal amplitude < minimum 37,signal frequency too high 2F,signal erratic 1F,circuit intermittent 23,signal stuck low 24,signal stuck high 22,signal amplitude > maximum 1E,circuit resistance out of range 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/VSP_Dtcs.csv ================================================ C075,CAN_COMM_CIRCUIT A860,CONTROL UNIT(CAN) *2 A861,DSC_FAILURE E141,Communication Failure of ATCU ECU E14F,Communication Failure of BCM ECU E148,Communication Failure of VDC ECU E143,Communication Failure of HEVC ECU E140,Communication Failure of ECM ECU E14E,Communication Failure of METER ECU E15B,Communication Failure of USM ECU A862,ECU Missing Configuration ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/VSP_Fields.csv ================================================ ,761,0,0,1,0,0,,1081,5081,ff,StartDefaultSession ,761,0,0,1,0,0,,1085,5085,ff,StartReprogSession ,761,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession ,761,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,761,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,761,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,761,40,43,1,0,0,,1902FF,5902FF,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,761,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,761,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested ,761,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle ,761,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,761,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,761,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,761,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC ,761,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle ,761,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,761,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,761,40,47,1,8,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,761,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,761,40,47,1,8,0,,190600000080,590600000080,ff,StatusOfDTC ,761,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,761,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,761,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,761,40,47,1,8,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,761,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,761,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,761,16,47,1,0,0,,2100,6100,4ff,Support LID data ,761,21,21,1,0,0,,2103,6103,ff,Configuration of DiagMUX DTCs.ECM_Presence,0:Absent;1:Present ,761,22,22,1,0,0,,2103,6103,ff,Configuration of DiagMUX DTCs.HEVC_Presence,0:Absent;1:Present ,761,23,23,1,0,0,,2103,6103,ff,Configuration of DiagMUX DTCs.ATCU_Presence,0:Absent;1:Present ,761,16,23,1,0,0,,2104,6104,4ff,SoundVolumeValue ChargingSound.SoundVolumeValue_ChargingSound ,761,16,16,1,0,0,,2105,6105,ff,Data monitor value request.IgnitionSupplyConfirmation,0:no primary ignition supply;1:primary ignition supply on ,761,17,17,1,0,0,,2105,6105,ff,Data monitor value request.VSPstatusDisplay,0:VSP deactivated not request;1:VSP deactivated request ,761,24,39,.125,0,1,rpm,2105,6105,ff,Data monitor value request.EngineRPM ,761,40,41,1,0,0,,2105,6105,ff,Data monitor value request.PowerTrainStatus,0:Powertrain Stopped;1:Reserved;2:Powertrain Running;3:Powertrain Starting ,761,42,43,1,0,0,,2105,6105,ff,Data monitor value request.DayNightForBacklights,0:Day;1:Twilight;2:Night;3:Unavailable ,761,44,45,1,0,0,,2105,6105,ff,Data monitor value request.ChargingSoundRequest,0:No request;1:Play charging plug sound request;2:Play Admit to charge battery sound request;3:Play Unlock charging plug sound request ,761,46,46,1,0,0,,2105,6105,ff,Data monitor value request.PeriodicReverseBuzzerTrigger,0:No request;1:Reverse alert trigger ,761,47,47,1,0,0,,2105,6105,ff,Data monitor value request.DiagMuxOn_BCM,0:counting and storage of CAN mute/absent failures masked;1:counting and storage of CAN mute/absent failures not masked ,761,48,63,.01,0,2,km/h,2105,6105,ff,Data monitor value request.VehicleSpeed ,761,64,67,1,0,0,,2105,6105,ff,Data monitor value request.VehicleStateExtented,0:Sleeping;1:Technical Wakeup;2:CutOffPending;3:BatTempoLevel;4:AccessoryLevel;5:IgnitionLevel;6:StartingInProgress;7:EngineRunning;8:AutoStart;9:EngineSystemStop;10:UnvailableValue ,761,68,95,.01,0,2,km,2105,6105,ff,Data monitor value request.DistanceTotalizer ,761,96,98,1,0,0,,2105,6105,ff,Data monitor value request.BrakeInfoStatus,0:Not used;1:Brake pedal not pressed;2:Brake pedal pressed;4:Brake pedal confirmed pressed;7:unavailable ,761,16,23,1,0,0,,2106,6106,4ff,Parameter VSP_Sound_A ,761,16,23,1,0,0,,2107,6107,4ff,Parameter VSP_Sound_B ,761,16,23,1,0,0,,2108,6108,4ff,Parameter VSP_Sound_C ,761,16,17,1,0,0,,2109,6109,ff,VSP Configuration Parameters.Sound type,0:Sound 1;1:Sound 2;2:Sound 3 ,761,18,18,1,0,0,,2109,6109,ff,VSP Configuration Parameters. LED_DTC_ENABLE,0:Absent;1:Present ,761,19,19,1,0,0,,2109,6109,ff,VSP Configuration Parameters.Activation by switch,0:absent;1:present ,761,20,20,1,0,0,,2109,6109,ff,VSP Configuration Parameters.REVERSE sound,0:absent;1:present ,761,21,21,1,0,0,,2109,6109,ff,VSP Configuration Parameters.CHARGING sound,0:absent;1:present ,761,22,22,1,0,0,,2109,6109,ff,VSP Configuration Parameters.D_R_Identical_sound,0:absent;1:present ,761,23,23,1,0,0,,2109,6109,ff,VSP Configuration Parameters. SWITCH_DTC_ENABLE,0:Absent;1:Present ,761,28,31,1,0,0,,2109,6109,ff,VSP Configuration Parameters. Engine Speed Treshold,0:300rpm;1:400rpm;2:500rpm;3:600rpm;4:700rpm;5:800rpm;6:900rpm;7:1000rpm;8:1100rpm;9:1200rpm;10:1300rpm;11:1400rpm;12:1500rpm;13:1600rpm;14:1700rpm;15:1800rpm ,761,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,761,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,761,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,761,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,761,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,761,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,761,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,761,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:NA;1:256A8;2:285N6 ,761,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:HARDW;1:285J9 ,761,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:NA ,761,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,761,16,151,1,0,0,,2181,6181,2ff,VIN.VIN ,761,152,167,1,0,0,,2181,6181,4ff,VIN.CRC ,761,40,40,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.Mute Module_Current_fault status,0:failure absent;1:failure present ,761,41,41,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.Mute Module_Confirmed_fault status,0:failure absent;1:failure present ,761,42,47,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.Mute Module_Fault counter ,761,64,64,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.METER Absent_Current_fault status,0:failure absent;1:failure present ,761,65,65,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.METER Absent_Confirmed_fault status,0:failure absent;1:failure present ,761,66,71,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.METER Absent_Fault counter ,761,72,72,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.BCM Absent_Current_fault status,0:failure absent;1:failure present ,761,73,73,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.BCM Absent_Confirmed_fault status,0:failure absent;1:failure present ,761,74,79,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.BCM Absent_Fault counter ,761,112,112,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.AT Absent_HEV_Current_fault status,0:failure absent;1:failure present ,761,113,113,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.AT Absent_HEV_Confirmed_fault status,0:failure absent;1:failure present ,761,114,119,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.AT Absent_HEV_Fault counter ,761,424,424,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.VCM Absent_Current_fault status,0:failure absent;1:failure present ,761,425,425,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.VCM Absent_Confirmed_fault status,0:failure absent;1:failure present ,761,426,431,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.VCM Absent_Fault counter ,761,16,55,1,0,0,,2183,6183,2ff,NissanID.PartNumberLowerPart ,761,56,63,1,0,0,,2183,6183,4ff,NissanID.DiagnosticIdentificationCode ,761,64,87,1,0,0,,2183,6183,2ff,NissanID.SupplierNumberITG ,761,88,127,1,0,0,,2183,6183,4ff,NissanID.HardwareNumberLowerPart ,761,128,143,1,0,0,,2183,6183,4ff,NissanID.SoftwareNumber ,761,144,159,1,0,0,,2183,6183,4ff,NissanID.EditionNumber ,761,160,175,1,0,0,,2183,6183,4ff,NissanID.CalibrationNumber ,761,176,199,1,0,0,,2183,6183,4ff,NissanID.Other system features ,761,200,207,1,0,0,,2183,6183,ff,NissanID.ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,761,16,39,1,0,0,,2184,6184,2ff,Traceability.SupplierCode ,761,40,71,1,0,0,,2184,6184,2ff,Traceability.ProductionYear ,761,72,87,1,0,0,,2184,6184,2ff,Traceability.ProductionWeek ,761,88,175,1,0,0,,2184,6184,2ff,Traceability.SerialNumber ,761,16,95,1,0,0,,21EF,61EF,2ff,DaimlerID.HardwarePartNumber ,761,96,175,1,0,0,,21EF,61EF,2ff,DaimlerID.SoftwarePartNumber ,761,16,55,1,0,0,,21FA,61FA,2ff,PartNumber.LowerPart ,761,56,63,1,0,0,,21FA,61FA,4ff,DiagnosticIdentificationCode ,761,64,87,1,0,0,,21FA,61FA,2ff,SupplierNumber.ITG ,761,88,127,1,0,0,,21FA,61FA,2ff,HardwareNumber.LowerPart ,761,128,143,1,0,0,,21FA,61FA,4ff,SoftwareNumber ,761,144,159,1,0,0,,21FA,61FA,4ff,EditionNumber ,761,160,175,1,0,0,,21FA,61FA,4ff,CalibrationNumber ,761,176,183,1,0,0,,21FA,61FA,ff,PartNumber.BasicPartList,0:NA;1:256A8;2:285N6 ,761,184,191,1,0,0,,21FA,61FA,ff,HardwareNumber.BasicPartList,0:HARDW;1:285J9 ,761,192,199,1,0,0,,21FA,61FA,ff,ApprovalNumber.BasicPartList,0:NA ,761,200,207,1,0,0,,21FA,61FA,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,761,16,55,1,0,0,,21FC,61FC,2ff,PartNumber.LowerPart ,761,56,63,1,0,0,,21FC,61FC,4ff,DiagnosticIdentificationCode ,761,64,87,1,0,0,,21FC,61FC,2ff,SupplierNumber.ITG ,761,88,127,1,0,0,,21FC,61FC,2ff,HardwareNumber.LowerPart ,761,128,143,1,0,0,,21FC,61FC,4ff,SoftwareNumber ,761,144,159,1,0,0,,21FC,61FC,4ff,EditionNumber ,761,160,175,1,0,0,,21FC,61FC,4ff,CalibrationNumber ,761,176,183,1,0,0,,21FC,61FC,ff,PartNumber.BasicPartList,0:NA;1:256A8;2:285N6 ,761,184,191,1,0,0,,21FC,61FC,ff,HardwareNumber.BasicPartList,0:HARDW;1:285J9 ,761,192,199,1,0,0,,21FC,61FC,ff,ApprovalNumber.BasicPartList,0:NA ,761,200,207,1,0,0,,21FC,61FC,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,761,16,55,1,0,0,,21FE,61FE,2ff,PartNumber.LowerPart ,761,56,63,1,0,0,,21FE,61FE,4ff,DiagnosticIdentificationCode ,761,64,87,1,0,0,,21FE,61FE,2ff,SupplierNumber.ITG ,761,88,127,1,0,0,,21FE,61FE,2ff,HardwareNumber.LowerPart ,761,128,143,1,0,0,,21FE,61FE,4ff,SoftwareNumber ,761,144,159,1,0,0,,21FE,61FE,4ff,EditionNumber ,761,160,175,1,0,0,,21FE,61FE,4ff,CalibrationNumber ,761,176,183,1,0,0,,21FE,61FE,ff,PartNumber.BasicPartList,0:NA;1:256A8;2:285N6 ,761,184,191,1,0,0,,21FE,61FE,ff,HardwareNumber.BasicPartList,0:HARDW;1:285J9 ,761,192,199,1,0,0,,21FE,61FE,ff,ApprovalNumber.BasicPartList,0:NA ,761,200,207,1,0,0,,21FE,61FE,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,761,24,47,1,0,0,km,22F0D0,62F0D0,ff,DTC Mileage ,761,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC Occurrence Counter ,761,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/VSP_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal level out of range/zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component | system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/_Ecus.csv ================================================ # Descriptive name, Renault ID, Network (s), From ID (used in fields), To ID, Mnemonic, Alias(ses), GetDtc responseID (s), Session required # If more than one, semicolon separated Navigation-UCC-ITM,0,,767,747,Navigation-UCC-ITM,-,5902ff,5003,0 CAN1-CAN2 Gateway,0,,7A5,785,INSULATOR,-,5902ff,5003,0 Body Control Module,0,,765,745,UCH,-,5902ff,5003,0 Multimedia Interface Unit,0,,734,714,MIU,-,5902ff,5003,0 Lithium Battery Controller,0,,7BB,79B,LBC-(EV),LBC (EV),5902ff,5003,0 Security Gateway3,0,,18DAF1D2,18DAD2F1,S-GW3,-,5902ff,5003,0 Climate Control,0,,764,744,HVAC,-,5902ff,5003,0 Meter Cluster,0,,763,743,TDB,-,5902ff,5003,0 Automatic Transmission,0,,7E9,7E1,AT,-,5902ff,5003,0 USM,0,,76D,74D,UPC-EMM,-,5902ff,5003,0 Engine Control Module,0,,7E8,7E0,ECM,-,5902ff,5003,0 Electrical Vehicle Control module,0,,7EC,7E4,(H)-EVC,(H) EVC,5902ff,5003,0 Battery Charger Block,0,,793,792,BCB-OBC,BCB,5902ff,5003,0 Front camera,0,,7DD,7DC,FCAM,-,5902ff,5003,0 Audio Unit,0,,732,712,Audio,-,5902ff,5003,0 Airbag-SRS,0,,772,752,Airbag-SRS,-,5902ff,5003,0 CSHV,0,,7D7,78A,CSHV-Airbag-Vehicle-stopped,CSHV Airbag Vehicle stopped,5902ff,5003,0 Vehicle Charger Controler Unit,0,,739,719,VCCU,-,5902ff,5003,0 Data Communication Module,0,,7DA,7CA,DCM,DCM Renault,5902ff,5003,0 ABS-VDC,0,,760,740,ABS-VDC,-,5902ff,5003,0 Vehicle Sound for Pedestrian,0,,761,73F,VSP,-,5902ff,5003,0 Wireless Charger Smartphone,0,,7AD,7AA,WCGS,-,5902ff,5003,0 Electric Power Steering,0,,762,742,EPS,-,5902ff,5003,0 ACC,0,,77D,75D,ACC,-,5902ff,5003,0 Top Control Unit,0,,76B,74B,TCU,-,5902ff,5003,0 Power Electronic Box,0,,77E,75A,PEB,-,5902ff,5003,0 Power Line connection/ Power Line GateWay,0,,7C8,7D8,PLC-PLGW,-,5902ff,5003,0 Shift By Wire,0,,7BD,79D,SCU,-,5902ff,5003,0 Audio Amplifier Unit,0,,7A2,782,AAU,-,5902ff,5003,0 ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/_Fields.csv ================================================ # SID (defaults to ID.startBit.[responseId]), ID (hex), startBit, endBit, resolution, offset (aplied BEFORE resolution multiplication), decimals, unit, requestID (hex string), responseID (hex string), options (hex, see MainActivity for definitions), optional name, optional list # Dummies to avoid excessive Toast messages 7ec.623203.24,763,24,24,1,0,0,,999999,999999,ff,dummy 7ec.623204.24,763,24,24,1,0,0,,999999,999999,ff,dummy 5d7.0,763,24,24,1,0,0,,999999,999999,ff,dummy 7bc.624b7d.28,763,24,24,1,0,0,,999999,999999,ff,dummy 130.44,763,24,24,1,0,0,,999999,999999,ff,dummy 1f8.28,763,24,24,1,0,0,,999999,999999,ff,dummy 18a.27,763,24,24,1,0,0,,999999,999999,ff,dummy 77e.623025.24,763,24,24,1,0,0,,999999,999999,ff,dummy 186.16,763,24,24,1,0,0,,999999,999999,ff,dummy 764.6145.29,763,24,24,1,0,0,,999999,999999,ff,dummy 699.8,763,24,24,1,0,0,,999999,999999,ff,dummy 654.42,763,24,24,1,0,0,,999999,999999,ff,dummy 7ec.622006.24,763,24,24,1,0,0,,999999,999999,ff,dummy 793.625026.24,763,24,24,1,0,0,,999999,999999,ff,dummy # ,767,56,63,1,0,0,,2180,6180,ff,diagVersion ,767,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,767,128,143,1,0,0,,2180,6180,ff,Soft ,767,5144,159,1,0,0,,2180,6180,ff,Version ,767,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,767,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,767,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,767,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7A5,56,63,1,0,0,,2180,6180,ff,diagVersion ,7A5,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7A5,128,143,1,0,0,,2180,6180,ff,Soft ,7A5,5144,159,1,0,0,,2180,6180,ff,Version ,7A5,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7A5,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7A5,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7A5,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,765,56,63,1,0,0,,2180,6180,ff,diagVersion ,765,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,765,128,143,1,0,0,,2180,6180,ff,Soft ,765,5144,159,1,0,0,,2180,6180,ff,Version ,765,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,765,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,765,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,765,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,734,56,63,1,0,0,,2180,6180,ff,diagVersion ,734,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,734,128,143,1,0,0,,2180,6180,ff,Soft ,734,5144,159,1,0,0,,2180,6180,ff,Version ,734,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,734,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,734,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,734,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7BB,56,63,1,0,0,,2180,6180,ff,diagVersion ,7BB,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7BB,128,143,1,0,0,,2180,6180,ff,Soft ,7BB,5144,159,1,0,0,,2180,6180,ff,Version ,7BB,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7BB,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7BB,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7BB,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,18DAF1D2,56,63,1,0,0,,2180,6180,ff,diagVersion ,18DAF1D2,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,18DAF1D2,128,143,1,0,0,,2180,6180,ff,Soft ,18DAF1D2,5144,159,1,0,0,,2180,6180,ff,Version ,18DAF1D2,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,18DAF1D2,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,18DAF1D2,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,18DAF1D2,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,764,56,63,1,0,0,,2180,6180,ff,diagVersion ,764,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,764,128,143,1,0,0,,2180,6180,ff,Soft ,764,5144,159,1,0,0,,2180,6180,ff,Version ,764,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,764,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,764,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,764,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,763,56,63,1,0,0,,2180,6180,ff,diagVersion ,763,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,763,128,143,1,0,0,,2180,6180,ff,Soft ,763,5144,159,1,0,0,,2180,6180,ff,Version ,763,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,763,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,763,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,763,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7E9,56,63,1,0,0,,2180,6180,ff,diagVersion ,7E9,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7E9,128,143,1,0,0,,2180,6180,ff,Soft ,7E9,5144,159,1,0,0,,2180,6180,ff,Version ,7E9,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7E9,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7E9,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7E9,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,76D,56,63,1,0,0,,2180,6180,ff,diagVersion ,76D,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,76D,128,143,1,0,0,,2180,6180,ff,Soft ,76D,5144,159,1,0,0,,2180,6180,ff,Version ,76D,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,76D,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,76D,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,76D,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7E8,56,63,1,0,0,,2180,6180,ff,diagVersion ,7E8,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7E8,128,143,1,0,0,,2180,6180,ff,Soft ,7E8,5144,159,1,0,0,,2180,6180,ff,Version ,7E8,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7E8,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7E8,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7E8,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7EC,56,63,1,0,0,,2180,6180,ff,diagVersion ,7EC,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7EC,128,143,1,0,0,,2180,6180,ff,Soft ,7EC,5144,159,1,0,0,,2180,6180,ff,Version ,7EC,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7EC,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7EC,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7EC,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,793,56,63,1,0,0,,2180,6180,ff,diagVersion ,793,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,793,128,143,1,0,0,,2180,6180,ff,Soft ,793,5144,159,1,0,0,,2180,6180,ff,Version ,793,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,793,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,793,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,793,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7DD,56,63,1,0,0,,2180,6180,ff,diagVersion ,7DD,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7DD,128,143,1,0,0,,2180,6180,ff,Soft ,7DD,5144,159,1,0,0,,2180,6180,ff,Version ,7DD,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7DD,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7DD,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7DD,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,732,56,63,1,0,0,,2180,6180,ff,diagVersion ,732,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,732,128,143,1,0,0,,2180,6180,ff,Soft ,732,5144,159,1,0,0,,2180,6180,ff,Version ,732,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,732,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,732,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,732,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,772,56,63,1,0,0,,2180,6180,ff,diagVersion ,772,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,772,128,143,1,0,0,,2180,6180,ff,Soft ,772,5144,159,1,0,0,,2180,6180,ff,Version ,772,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,772,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,772,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,772,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7D7,56,63,1,0,0,,2180,6180,ff,diagVersion ,7D7,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7D7,128,143,1,0,0,,2180,6180,ff,Soft ,7D7,5144,159,1,0,0,,2180,6180,ff,Version ,7D7,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7D7,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7D7,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7D7,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,739,56,63,1,0,0,,2180,6180,ff,diagVersion ,739,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,739,128,143,1,0,0,,2180,6180,ff,Soft ,739,5144,159,1,0,0,,2180,6180,ff,Version ,739,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,739,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,739,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,739,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7DA,56,63,1,0,0,,2180,6180,ff,diagVersion ,7DA,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7DA,128,143,1,0,0,,2180,6180,ff,Soft ,7DA,5144,159,1,0,0,,2180,6180,ff,Version ,7DA,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7DA,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7DA,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7DA,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,760,56,63,1,0,0,,2180,6180,ff,diagVersion ,760,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,760,128,143,1,0,0,,2180,6180,ff,Soft ,760,5144,159,1,0,0,,2180,6180,ff,Version ,760,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,760,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,760,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,760,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,761,56,63,1,0,0,,2180,6180,ff,diagVersion ,761,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,761,128,143,1,0,0,,2180,6180,ff,Soft ,761,5144,159,1,0,0,,2180,6180,ff,Version ,761,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,761,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,761,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,761,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7AD,56,63,1,0,0,,2180,6180,ff,diagVersion ,7AD,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7AD,128,143,1,0,0,,2180,6180,ff,Soft ,7AD,5144,159,1,0,0,,2180,6180,ff,Version ,7AD,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7AD,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7AD,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7AD,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,762,56,63,1,0,0,,2180,6180,ff,diagVersion ,762,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,762,128,143,1,0,0,,2180,6180,ff,Soft ,762,5144,159,1,0,0,,2180,6180,ff,Version ,762,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,762,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,762,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,762,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,77D,56,63,1,0,0,,2180,6180,ff,diagVersion ,77D,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,77D,128,143,1,0,0,,2180,6180,ff,Soft ,77D,5144,159,1,0,0,,2180,6180,ff,Version ,77D,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,77D,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,77D,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,77D,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,76B,56,63,1,0,0,,2180,6180,ff,diagVersion ,76B,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,76B,128,143,1,0,0,,2180,6180,ff,Soft ,76B,5144,159,1,0,0,,2180,6180,ff,Version ,76B,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,76B,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,76B,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,76B,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,77E,56,63,1,0,0,,2180,6180,ff,diagVersion ,77E,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,77E,128,143,1,0,0,,2180,6180,ff,Soft ,77E,5144,159,1,0,0,,2180,6180,ff,Version ,77E,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,77E,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,77E,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,77E,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7C8,56,63,1,0,0,,2180,6180,ff,diagVersion ,7C8,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7C8,128,143,1,0,0,,2180,6180,ff,Soft ,7C8,5144,159,1,0,0,,2180,6180,ff,Version ,7C8,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7C8,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7C8,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7C8,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7BD,56,63,1,0,0,,2180,6180,ff,diagVersion ,7BD,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7BD,128,143,1,0,0,,2180,6180,ff,Soft ,7BD,5144,159,1,0,0,,2180,6180,ff,Version ,7BD,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7BD,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7BD,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7BD,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7A2,56,63,1,0,0,,2180,6180,ff,diagVersion ,7A2,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7A2,128,143,1,0,0,,2180,6180,ff,Soft ,7A2,5144,159,1,0,0,,2180,6180,ff,Version ,7A2,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7A2,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7A2,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7A2,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ================================================ FILE: app/src/main/assets/Twingo_3_Ph2/_Frames.csv ================================================ #Frame ID,interval ZOE, interval FLUKAN, Sending ECU 767,100,100,Navigation-UCC-ITM 7A5,100,100, 765,100,100,UCH 734,100,100,MIU 7BB,100,100, 18DAF1D2,100,100,S-GW3 764,100,100,HVAC 763,100,100,TDB 7E9,100,100, 76D,100,100, 7E8,100,100, 7EC,100,100, 793,100,100,BCB-OBC 7DD,100,100, 732,100,100, 772,100,100, 7D7,100,100, 739,100,100, 7DA,100,100,DCM 760,100,100, 761,100,100,VSP 7AD,100,100, 762,100,100,EPS 77D,100,100, 76B,100,100, 77E,100,100,PEB 7C8,100,100, 7BD,100,100, 7A2,100,100, ================================================ FILE: app/src/main/assets/Twizy/_Ecus.csv ================================================ # Descriptive name, Renault ID, Network (s), From ID (used in fields), To ID, Mnemonic, Alias(ses), GetDtc responseID (s), Session required # If more than one, semicolon separated Meter Cluster,0,,763,743,TDB,,5902ff,5003,0 Lithium Battery Controller,0,,7BB,79B,LBC,-,5902ff,5003,0 Battery Charger Block,0,,793,792,BCB-OBC,BCB,5902ff,5003,0 ================================================ FILE: app/src/main/assets/Twizy/_Fields.csv ================================================ # SID (defaults to ID.startBit.[responseId]), ID (hex), startBit, endBit, resolution, offset (aplied BEFORE resolution multiplication), decimals, unit, requestID (hex string), responseID (hex string), options (hex, see MainActivity for definitions), optional name, optional list # Dummies to avoid excessive Toast messages 7ec.623203.24,763,24,24,1,0,0,,999999,999999,ff,dummy 7ec.623204.24,763,24,24,1,0,0,,999999,999999,ff,dummy 5d7.0,763,24,24,1,0,0,,999999,999999,ff,dummy 7bc.624b7d.28,763,24,24,1,0,0,,999999,999999,ff,dummy 130.44,763,24,24,1,0,0,,999999,999999,ff,dummy 1f8.28,763,24,24,1,0,0,,999999,999999,ff,dummy 18a.27,763,24,24,1,0,0,,999999,999999,ff,dummy 77e.623025.24,763,24,24,1,0,0,,999999,999999,ff,dummy 186.16,763,24,24,1,0,0,,999999,999999,ff,dummy 764.6145.29,763,24,24,1,0,0,,999999,999999,ff,dummy 699.8,763,24,24,1,0,0,,999999,999999,ff,dummy 654.42,763,24,24,1,0,0,,999999,999999,ff,dummy 7ec.622006.24,763,24,24,1,0,0,,999999,999999,ff,dummy 793.625026.24,763,24,24,1,0,0,,999999,999999,ff,dummy # ,763,56,63,1,0,0,,2180,6180,ff,diagVersion ,763,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,763,128,143,1,0,0,,2180,6180,ff,Soft ,763,5144,159,1,0,0,,2180,6180,ff,Version ,763,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,763,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,763,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,763,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7BB,56,63,1,0,0,,2180,6180,ff,diagVersion ,7BB,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7BB,128,143,1,0,0,,2180,6180,ff,Soft ,7BB,5144,159,1,0,0,,2180,6180,ff,Version ,7BB,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7BB,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7BB,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7BB,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,793,56,63,1,0,0,,2180,6180,ff,diagVersion ,793,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,793,128,143,1,0,0,,2180,6180,ff,Soft ,793,5144,159,1,0,0,,2180,6180,ff,Version ,793,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,793,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,793,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,793,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ================================================ FILE: app/src/main/assets/Twizy/_Frames.csv ================================================ #Frame ID,interval ZOE, interval FLUKAN, Sending ECU 763,100,100,TDB 7BB,100,100,LBC 793,100,100,BCB-OBC ================================================ FILE: app/src/main/assets/ZOE/BCB-OBC_Dtcs.csv ================================================ 030D,EVC 0305,Lithium Battery Controler 030C,BCM (Body Control Module) 0309,CAN 0436,Junction box hood interlock 0437,HV Battery interlock 0438,Mains plug interlock 0439,PEB interlock 043A,PEB neutral interlock 043E,PTC interlock 0466,Cooling Temperature Sensor 046F,Cooling temperature 0602,Charging stop 0613,Charge yield 0612,S2 relay control 0620,CPU temperature 0621,Electronic card voltage supply 0622,CPU Temperature sensor 0630,Electronic power driver 0632,Electronic power driver temperature sensor 0631,Electronic power driver temperature 0640,Mains identification 0669,Mains communication line 0642,Mains phase 1 current 0643,Mains phase 2 current 0644,Mains phase 3 current 0645,Mains phase mono current 0646,Mains current regulation 0647,Mains locking input line 0649,Mains phases voltage 064A,Mains phase 1 voltage sensor 064B,Mains phase 2 voltage sensor 064C,Mains phase 3 voltage sensor 064D,Mains mono phased voltage sensors 065E,Mains phase 1 current sensor 065F,Mains phase 2 current sensor 0660,Mains phase 3 current sensor 0670,Neutral current sensor 0671,Neutral current regulation 043D,Air conditionned Interlock 043B,Fuse interlock 043C,Relay box interlock 0623,Internal power supply voltage (+5V) 0625,SPI communication 0662,Mains locking motor command 0663,Mains ground 0664,Capacity module 0626,Rectifier micro-controler 0665,Mains phase current sensor 0666,Mains phase voltage sensor 0668,Earth current sensor 0680,Blue Led 0681,Red Led 066A,Input filter temperature 066B,Input filter i 066C,Mains neutral/phase3 0648,Mains leakage 0627,Driver Flyback 0690,External power supply 0654,Hot Spot Input Module Temperature 06A0,PLGW card 0667,Mains differential current sensor 0672,CPL card 0673,Relay Box ================================================ FILE: app/src/main/assets/ZOE/BCB-OBC_Fields.csv ================================================ ,793,0,0,1,0,0,,1081,5081,ff,StartDiagnosticSession.Default ,793,0,0,1,0,0,,1085,5085,ff,StartDiagnosticSession.Programming ,793,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.ExtendedDiagnostic ,793,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,793,16,23,1,0,0,,1902AF,5902AF,ff,DTCStatusAvailabilityMask ,793,24,39,1,0,0,,1902AF,5902AF,ff,DTCDeviceAndFailureTypeOBD ,793,40,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature;241:Safety Case 1;242:Safety Case 2;243:Multiple Failure;244:Temperature too Low;245:Negative Loop Error;246:Positive Loop Error;247:Initialisation not valid;248:Overspeed;249:Limp Home;250:Specific Supplier;251:-;252:--;253:Drift low;254:Drift high ,793,44,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType.ManufacturerOrSupplier ,793,48,48,1,0,0,,1902AF,5902AF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,793,49,49,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,793,50,50,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,793,51,51,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,793,52,52,1,0,0,,1902AF,5902AF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,793,53,53,1,0,0,,1902AF,5902AF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,793,54,54,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,793,55,55,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailed,0:No;1:Yes ,793,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,793,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,793,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,793,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,793,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,793,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,793,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,793,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,793,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,793,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,793,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,793,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,793,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,793,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,793,16,39,1,0,0,,190600000084,590600000084,4ff,DTCRecord ,793,40,47,1,0,0,,190600000084,590600000084,ff,StatusOfDTC ,793,56,63,1,0,0,,190600000084,590600000084,ff,DTCExtendedData.DTCOccurrenceCounter_2 ,793,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord ,793,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC ,793,56,79,1,0,0,km,190600000085,590600000085,ff,DTCExtendedData.DTCLastDiseappearMileage ,793,16,39,1,0,0,,190600000086,590600000086,4ff,DTCRecord ,793,40,47,1,0,0,,190600000086,590600000086,ff,StatusOfDTC ,793,56,79,1,0,0,km,190600000086,590600000086,ff,DTCExtendedData.DTCTravelledDistanceFailurePresent ,793,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord ,793,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC ,793,56,79,1,0,0,km,190600000087,590600000087,ff,DTCExtendedData.DTCFirstAppearMileage ,793,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,793,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,793,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,793,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,793,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,793,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,793,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,793,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,793,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,793,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,793,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,793,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,1:296H5;2:296H0 ,793,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,1:296H5 ,793,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,1:HMLGT ,793,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,793,16,151,1,0,0,,2181,6181,2ff,Vin In Ascii ,793,152,167,1,0,0,,2181,6181,4ff,Vin CRC ,793,16,39,1,0,0,,2184,6184,4ff,ITG Supplier Number ,793,40,47,1,0,0,,2184,6184,2ff,Traceability Factory Code ,793,48,143,1,0,0,,2184,6184,2ff,Traceability Serial Number ,793,16,103,1,0,0,,21B7,61B7,4ff,Configuration of Electrical Vehicle Networks ,793,16,103,1,0,0,,21B8,61B8,4ff,List of Electrical Vehicle ECUs with After-sales diagnostic ,793,16,23,1,0,0,,21EF,61EF,2ff,Hardware Part Number 1 ,793,24,31,1,0,0,,21EF,61EF,2ff,Hardware Part Number 2 ,793,32,39,1,0,0,,21EF,61EF,2ff,Hardware Part Number 3 ,793,40,47,1,0,0,,21EF,61EF,2ff,Hardware Part Number 4 ,793,48,55,1,0,0,,21EF,61EF,2ff,Hardware Part Number 5 ,793,56,63,1,0,0,,21EF,61EF,2ff,Hardware Part Number 6 ,793,64,71,1,0,0,,21EF,61EF,2ff,Hardware Part Number 7 ,793,72,79,1,0,0,,21EF,61EF,2ff,Hardware Part Number 8 ,793,80,87,1,0,0,,21EF,61EF,2ff,Hardware Part Number 9 ,793,88,95,1,0,0,,21EF,61EF,2ff,Hardware Part Number 10 ,793,96,103,1,0,0,,21EF,61EF,2ff,Software Part Number 1 ,793,104,111,1,0,0,,21EF,61EF,2ff,Software Part Number 2 ,793,112,119,1,0,0,,21EF,61EF,2ff,Software Part Number 3 ,793,120,127,1,0,0,,21EF,61EF,2ff,Software Part Number 4 ,793,128,135,1,0,0,,21EF,61EF,2ff,Software Part Number 5 ,793,136,143,1,0,0,,21EF,61EF,2ff,Software Part Number 6 ,793,144,151,1,0,0,,21EF,61EF,2ff,Software Part Number 7 ,793,152,159,1,0,0,,21EF,61EF,2ff,Software Part Number 8 ,793,160,167,1,0,0,,21EF,61EF,2ff,Software Part Number 9 ,793,168,175,1,0,0,,21EF,61EF,2ff,Software Part Number 10 ,793,16,55,1,0,0,,21F0,61F0,2ff,PartNumber.LowerPart ,793,56,63,1,0,0,,21F0,61F0,4ff,DiagnosticIdentificationCode ,793,64,87,1,0,0,,21F0,61F0,4ff,SupplierNumber ,793,88,127,1,0,0,,21F0,61F0,2ff,HardwareNumber.LowerPart ,793,128,143,1,0,0,,21F0,61F0,4ff,SoftwareNumber ,793,144,159,1,0,0,,21F0,61F0,4ff,EditionNumber ,793,160,175,1,0,0,,21F0,61F0,4ff,CalibrationNumber ,793,176,183,1,0,0,,21F0,61F0,ff,PartNumber.BasicPartList,1:296H5;2:296H0 ,793,184,191,1,0,0,,21F0,61F0,ff,HardwareNumber.BasicPartList,1:296H5 ,793,192,199,1,0,0,,21F0,61F0,ff,ApprovalNumber.BasicPartList,1:HMLGT ,793,200,207,1,0,0,,21F0,61F0,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,793,16,55,1,0,0,,21F1,61F1,2ff,ApprovalNumber.LowerPart ,793,56,95,1,0,0,,21F1,61F1,2ff,ProgrammingSiteReference ,793,96,135,1,0,0,,21F1,61F1,2ff,ProgrammingToolReference ,793,136,143,1,0,0,,21F1,61F1,ff,NumberOfReprogrammings ,793,144,167,1,0,0,,21F1,61F1,4ff,DateOfReprogramming ,793,168,183,1,0,0,,21F1,61F1,4ff,TimeOfReprogramming ,793,184,191,1,0,0,,21F1,61F1,ff,SaveMarking ,793,192,207,1,0,0,,21F1,61F1,4ff,CrcOfLogSave ,793,24,39,.0625,3200,2,A,222001,622001,ff,($2001) Mains phase 1 current RMS value ,793,24,39,.0625,0,2,V,222002,622002,ff,($2002) CPU voltage supply from BI ,793,29,31,1,0,0,,222003,622003,ff,($2003) Junction box 2 state,0:Init;1:Charge;4:Wait;5:Power Off/Sleep ,793,24,31,1,0,0,%,222004,622004,ff,($2004) System Relative Temperature in % ,793,24,31,1,40,0,°C,222005,622005,ff,($2005) Cooling temperature from BI ,793,24,47,1,0,0,,225001,625001,ff,($5001) Plugging counter ,793,24,47,1,0,0,,225002,625002,ff,($5002) Wake Up counter ,793,31,31,1,0,0,,225003,625003,ff,($5003) Raw A/C plug interlock value,0:open;1:closed ,793,31,31,1,0,0,,225005,625005,ff,($5005) CAN activity for JB2,0:No activity;1:Activity ,793,25,31,1,0,0,%,225007,625007,ff,($5007) MMI Green LED PWM request ,793,31,31,1,0,0,,225008,625008,ff,($5008) Raw JB2 hood plug interlock value,0:open;1:closed ,793,31,31,1,0,0,,225009,625009,ff,($5009) Raw HV Battery plug interlock value,0:open;1:closed ,793,31,31,1,0,0,,22500B,62500B,ff,($500B) Raw mains interlock value,0:open;1:closed ,793,31,31,1,0,0,,22500C,62500C,ff,($500C) Mains tri phases permutation,0:v1/v2/v3 off;1:v1/v2/v3 on ,793,31,31,1,0,0,,22500D,62500D,ff,($500D) Mains voltage presence,0:Absent;1:Present ,793,31,31,1,0,0,,22500E,62500E,ff,($500E) Wake-Up request from Mains or plug presence,0:No wake-up request;1:Wake-up request ,793,31,31,1,0,0,,22500F,62500F,ff,($500F) Raw PEB plug interlock value,0:open;1:closed ,793,31,31,1,0,0,,225010,625010,ff,($5010) Raw PEB neutral interlock value,0:open;1:closed ,793,31,31,1,0,0,,225011,625011,ff,($5011) Raw PTC plug interlock value,0:open;1:closed ,793,31,31,1,0,0,,225012,625012,ff,($5012) Mains phase 1-2 voltage presence,0:Absent;1:Present ,793,31,31,1,0,0,,225013,625013,ff,($5013) Mains phase 2-3 voltage presence,0:Absent;1:Present ,793,31,31,1,0,0,,225014,625014,ff,($5014) Mains phase 3-1 voltage presence,0:Absent;1:Present ,793,30,31,1,0,0,,225015,625015,ff,($5015) Wake-Up / Sleep request from EVC,0:GoToSleep;1:Reserved1;2:Reserved2;3:WakeUp ,793,29,31,1,0,0,,225016,625016,ff,($5016) Junction box 2 state request from EVC,0:init;1:Charge;4:Wait;5:Power Off/Sleep ,793,29,31,1,0,0,,225017,625017,ff,($5017) Mains current type,0:Nok;1:AC mono;2:AC tri;3:DC;4:AC bi ,793,30,31,1,0,0,,225018,625018,ff,($5018) Mains plug unlocking CAN request,0:Unavailable;1:Unlock request;2:No unlock request ,793,30,31,1,0,0,,225019,625019,ff,($5019) Memorized value of the wake up activation,1:Wake-up activated;2:Wake-up deactivated ,793,31,31,1,0,0,,22501A,62501A,ff,($501A) BCM wake-up by wire,0:No wake-up;1:Wake-up ,793,31,31,1,0,0,,22501C,62501C,ff,($501C) S2 relay control,0:Open;1:Close ,793,30,31,1,0,0,,22501D,62501D,ff,($501D) Charge state request,0:No charge;1:Charge;2:Emergency stop ,793,29,31,1,0,0,,22501E,62501E,ff,($501E) Global system state,0:Init;1:Actif;2:Sleep ,793,30,31,1,0,0,,22501F,62501F,ff,($501F) System Temperature State,0:Ok;1:Derating;2:Nok ,793,30,31,1,0,0,,225021,625021,ff,($5021) Cooling Temperature State,0:Ok;1:Derating;2:Nok ,793,30,31,1,0,0,,225022,625022,ff,($5022) Auto wake-up enabling,0:No change;1:Activation;2:Deactivation ,793,24,39,.0625,880,2,°C,225023,625023,ff,($5023) Raw CPU temperature value from BI ,793,24,39,.0625,3200,2,A,225024,625024,ff,($5024) Measured neutral current filtred ,793,24,39,.0625,3200,2,A,225025,625025,ff,($5025) Neutral current value from BI ,793,24,31,.5,0,1,%,225026,625026,ff,($5026) J1772 control pilot raw duty cycle ,793,24,31,.25,60,1,V,225027,625027,ff,($5027) J1772 control pilot raw voltage ,793,24,31,1,40,0,°C,225028,625028,ff,($5028) Mains input filter temperature from SPI ,793,24,39,.0625,3200,2,A,225029,625029,ff,($5029) Raw AC mains phase 1 measured current ,793,24,39,.0625,3200,2,A,22502A,62502A,ff,($502A) Raw AC mains phase 2 measured current ,793,24,39,.0625,3200,2,A,22502B,62502B,ff,($502B) Raw AC mains phase 3 measured current ,793,24,39,.5,32000,1,V,22502C,62502C,ff,($502C) Raw AC mains phase 1 measured voltage ,793,24,39,.5,32000,1,V,22502D,62502D,ff,($502D) Raw AC mains phase 2 measured voltage ,793,24,39,.5,32000,1,V,22502E,62502E,ff,($502E) Raw AC mains phase 3 measured voltage ,793,25,31,1,0,0,%,22502F,62502F,ff,($502F) MMI Red LED PWM request ,793,31,31,1,0,0,,225030,625030,ff,($5030) Raw fuse interlock value,0:open;1:closed ,793,31,31,1,0,0,,225031,625031,ff,($5031) Raw Relay box plug interlock closed,0:open;1:closed ,793,24,39,.015625,0,2,V,225032,625032,ff,($5032) Driver module power supply voltage from BI ,793,24,39,.0002441406,0,3,V,225033,625033,ff,($5033) Raw Detection Logic line value ,793,24,39,.0625,32768,2,mA,225035,625035,ff,($5035) Mains ground current 1st measurement ,793,31,31,1,0,0,,225038,625038,ff,($5038) Mains Plug Locking Switch raw information,0:Unlocked;1:Locked ,793,30,31,1,0,0,,225039,625039,ff,($5039) Mains plug locking control,0:No motion;1:Close;2:Open ,793,24,39,.0625,3200,2,A,22503A,62503A,ff,($503A) Mains phase 2 current RMS value ,793,24,39,.0625,3200,2,A,22503B,62503B,ff,($503B) Mains phase 3 current RMS value ,793,24,39,.0625,3200,2,A,22503C,62503C,ff,($503C) Mains current phase 1 mean value ,793,24,39,.0625,3200,2,A,22503D,62503D,ff,($503D) Mains current phase 2 mean value ,793,24,39,.0625,3200,2,A,22503E,62503E,ff,($503E) Mains current phase 3 mean value ,793,24,39,.5,0,1,V,22503F,62503F,ff,($503F) Mains phase 1-2 voltage RMS value ,793,24,39,.5,0,1,V,225041,625041,ff,($5041) Mains phase 2-3 voltage RMS value ,793,24,39,.5,0,1,V,225042,625042,ff,($5042) Mains phase 3-1 voltage RMS value ,793,24,39,.5,32000,1,V,225043,625043,ff,($5043) AC mains phase 1-2 measured voltage ,793,24,39,.5,32000,1,V,225044,625044,ff,($5044) AC mains phase 2-3 measured voltage ,793,24,39,.5,32000,1,V,225045,625045,ff,($5045) AC mains phase 3-1 measured voltage ,793,24,39,.5,32000,1,V,225046,625046,ff,($5046) Mains phase 1-2 mean voltage ,793,24,39,.5,32000,1,V,225047,625047,ff,($5047) Mains phase 2-3 mean voltage ,793,24,39,.5,32000,1,V,225048,625048,ff,($5048) Mains phase 3-1 mean voltage ,793,24,39,.0078125,-1280,3,Hz,225049,625049,ff,($5049) Mains phase frequency ,793,24,39,1,20000,0,W,22504A,62504A,ff,($504A) Mains active power consumed ,793,24,39,.0625,9600,2,A,22504B,62504B,ff,($504B) Mains current sum ,793,24,39,.5,32000,1,V,22504C,62504C,ff,($504C) Mains voltage sum ,793,24,39,.0625,3200,2,A,22504D,62504D,ff,($504D) HV Network measured current ,793,24,39,1,1023,0,V,22504E,62504E,ff,($504E) HV voltage ,793,24,31,1,0,0,,22504F,62504F,ff,($504F) Mains leakage current strategy state,0:OFF/Init;1:OK;2:NOK ,793,24,24,1,0,0,,225050,625050,ff,($5050) External controls denial status flags.0,0:Reserved for future use_0 ,793,24,31,1,40,0,°C,225051,625051,ff,($5051) CPU temperature value ,793,24,31,1,40,0,°C,225052,625052,ff,($5052) IGBT Buck arm 1 temperature ,793,24,31,1,40,0,°C,225053,625053,ff,($5053) Raw IGBT Buck arm 1 temperature ,793,24,31,1,40,0,°C,225054,625054,ff,($5054) Mains input filter hot spot temperature ,793,24,31,1,40,0,°C,225055,625055,ff,($5055) Mains input filter hot spot temperature from SPI ,793,24,31,1,40,0,°C,225056,625056,ff,($5056) Mains input filter temperature ,793,24,39,.0625,32768,2,mA,225057,625057,ff,($5057) Raw leakage current - DC part measurement ,793,24,39,.0625,32768,2,mA,225058,625058,ff,($5058) Raw leakage current - High Frequency 10kHz part measurement ,793,24,39,.0625,32768,2,mA,225059,625059,ff,($5059) Raw leakage current - High Frequency 1st part measurement ,793,24,39,.0625,32768,2,mA,22505A,62505A,ff,($505A) Raw leakage current - Low Frequency part measurement (50Hz) ,793,31,31,1,0,0,,22505B,62505B,ff,($505B) Virgin neutral current acquisition tuning detection ,793,31,31,1,0,0,,22505C,62505C,ff,($505C) Inform on spi communication error ,793,31,31,1,0,0,,22505D,62505D,ff,($505D) Global checksum result on SPI frames ,793,24,39,1,0,0,,22505E,62505E,ff,($505E) FPGA ident ,793,24,39,1,0,0,ms,22505F,62505F,ff,($505F) High part of CPU clock since power up ,793,24,39,1,0,0,ms,225061,625061,ff,($5061) Low part of CPU clock since power up ,793,24,39,1,0,0,Ohm,225062,625062,ff,($5062) Mains ground resistance ,793,24,31,1,0,0,,225063,625063,ff,($5063) Supervisor state,0:Init;1:Wait;2:ClosingS2;3:InitType;4:InitLkg;5:InitChg;6:Charge;7:ZeroAmpMode;8:EndOfChg;9:OpeningS2;10:ReadyToSleep;11:EmergencyStop;12:InitChargeDF;13:OCPStop;14:WaitS2;15:Reload;16:Prohibition;17:Not used17;18:Not used18;19:Not used19;20:Not used20 ,793,24,31,1,0,0,,225064,625064,ff,($5064) Leakage current diagnostic stored completion status,0:init;1:HF10;3:Mains Ground Default;5:Earth Current default;9:Ground Default;17:Means Leakage DC;33:Means Leakage LF;49:Means Leakage DC+LF;65:Means Leakage HF;81:Means Leakage DC+HF;97:Means Leakage LF+HF;113:Means Leakage DC+LF+HF ,793,24,39,.0625,32768,2,mA,225065,625065,ff,($5065) Leakage DC current saved indicator after failure ,793,24,39,.0625,32768,2,mA,225066,625066,ff,($5066) Leakage HF 10kHz current saved indicator after failure ,793,24,39,.0625,32768,2,mA,225067,625067,ff,($5067) Leakage HF current saved indicator after failure ,793,24,39,.0625,32768,2,mA,225068,625068,ff,($5068) Leakage LF current saved indicator after failure ,793,24,31,1,0,0,,225069,625069,ff,($5069) LED absence configuration,0:LED present;1:LED absent ,793,24,31,1,0,0,,22506A,62506A,ff,($506A) Old MMI configuration,0:New MMI;1:Old MMI ,793,24,31,1,0,0,,22506B,62506B,ff,($506B) Vehicle configuration type,0:X10 configuration;1:X07 configuration ,793,24,39,.015625,0,2,,22506C,62506C,ff,($506C) 15V from Driver flyback ,793,24,39,1,0,0,,22506D,62506D,ff,($506D) Saved number of quickdrop values ,793,24,31,1,0,0,,22506E,62506E,ff,($506E) Cosphi regulation enable,0:Disable;1:Enable ,793,24,31,1,0,0,,22506F,62506F,ff,($506F) PLGW card presence,0:Not Present;1:Present ,793,24,31,.25,0,1,A,225070,625070,ff,($5070) max AC current limitation configuration ,793,24,39,.0625,32768,2,mA,225074,625074,ff,($5074) Leakage current - DC part measurement - without offset ,793,24,39,.0625,32768,2,mA,225075,625075,ff,($5075) Filtered Leakage current -High Frequency measurement ,793,24,39,.0625,32768,2,mA,225076,625076,ff,($5076) Filtered Leakage current -High Frequency 10kHz part measurement ,793,24,39,.0625,32768,2,mA,225077,625077,ff,($5077) Leakage current - Low Frequency part measurement (50Hz) ,793,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,793,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,793,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/BCB-OBC_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature F1,Safety Case 1 F2,Safety Case 2 F3,Multiple Failure F4,Temperature too Low F5,Negative Loop Error F6,Positive Loop Error F7,Initialisation not valid F8,Overspeed F9,Limp Home FA,Specific Supplier FB,- FC,-- FD,Drift low FE,Drift high ================================================ FILE: app/src/main/assets/ZOE/DCM_Dtcs.csv ================================================ 93F0,BAT 9302,GSM External Antenna Failure 93D9,USB Host Presence not detected AE21,Output_On_Request 93E1,CAN-M Failure 9341,TCU 9304,GSM Internal Antenna Failure AE00,SMS AE03,GDC Fonctional AE05,GDC Configuration 9324,GPS External Antenna AEF0,Internal battery AE02,GDC Authentification AE80,WMP SPI communications failure AE81,PMC SPI communications failure AE82,I2C communications failure AE83,TCU reset procedure failure AE84,WMP Flash memory corrupted AE85,WMP secure memory corrupted AE22,K-line IN SVT failure AE23,K-line OUT SVT failure AE24,SVT Blocking 9328,Mic out line Failure 9305,Mic in Line failure AE11,Temperature Sensor Failure 930D,AUDIO_HU_OUT Line Failure AE10,GPS Internal Antenna Failure AE30,LIN Failure AE31,MMI Audio Out Line Failure AE32,MMI Supply 4V Failure AE91,MMI Ecall Button Failure AE92,MMI Bcall Button Failure AE33,MMI Led Failure AE34,MMI Supply 7V Failure AE12,Accelerometer Failure AE04,Internal SIM internal Failure AE06,External SIM internal Failure AE01,PPP Data Communication Authentication AE07,Invalid TCU Certificate AE08,TCU datas discarded by GDC 9360,Voice Communication Failure (GSM) AE13,GPS Communication Failure 93E2,CAN-V Failure 933B,AUX_IN_INFO Line Failure ================================================ FILE: app/src/main/assets/ZOE/DCM_Fields.csv ================================================ ,7DA,0,0,1,0,0,,1000,5000,ff,StartDiagnosticsessionselection ,7DA,0,0,1,0,0,,10C0,50C0,ff,ExtendedDiagnosticSession ,7DA,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7DA,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,7DA,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,7DA,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level oor/ zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed/blocked;152:component or system over temperature ,7DA,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,7DA,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,7DA,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,7DA,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7DA,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7DA,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7DA,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,7DA,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,7DA,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,7DA,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7DA,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,7DA,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,7DA,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,7DA,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,7DA,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,7DA,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,7DA,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,7DA,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,7DA,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,7DA,16,55,1,0,0,,2180,6180,2ff,Identification.PartNumber.LowerPart ,7DA,56,63,1,0,0,,2180,6180,4ff,Identification.DiagnosticIdentificationCode ,7DA,64,87,1,0,0,,2180,6180,2ff,Identification.SupplierNumber ,7DA,88,127,1,0,0,,2180,6180,2ff,Identification.HardwareNumber.LowerPart ,7DA,128,143,1,0,0,,2180,6180,4ff,Identification.SoftwareNumber ,7DA,144,159,1,0,0,,2180,6180,4ff,Identification.EditionNumber ,7DA,160,175,1,0,0,,2180,6180,4ff,Identification.CalibrationNumber ,7DA,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,2:28275;3:28277 ,7DA,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:48651 ,7DA,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A ,7DA,200,207,1,0,0,,2180,6180,ff,Identification.ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,7DA,16,151,1,0,0,,2181,6181,2ff,VIN.VIN ,7DA,152,167,1,0,0,,2181,6181,4ff,VIN.CRC ,7DA,32,39,1,0,0,,2182,6182,4ff,CANV.CANvBussOffCounter ,7DA,40,47,1,0,0,,2182,6182,4ff,CANV.CANvMuteCounter ,7DA,48,55,1,0,0,,2182,6182,4ff,CANV.ECMAbsentCounter ,7DA,56,63,1,0,0,,2182,6182,4ff,CANV.BrakeAbsentCounter ,7DA,64,71,1,0,0,,2182,6182,4ff,CANV.ClusterAbsentCounter ,7DA,72,79,1,0,0,,2182,6182,4ff,CANV.BCMAbsentCounter ,7DA,80,87,1,0,0,,2182,6182,4ff,CANV.AIRBAGAbsentCounter ,7DA,184,191,1,0,0,,2182,6182,4ff,CANV.EPSAbsentCounter ,7DA,200,207,1,0,0,,2182,6182,4ff,CANV.USMAbsentCounter ,7DA,424,431,1,0,0,,2182,6182,4ff,CANV.SCH_EVC_AbsentCounter ,7DA,672,679,1,0,0,,2182,6182,4ff,CANV.TCUCounter ,7DA,16,39,1,0,0,,2184,6184,2ff,SupplierNumber.ITG ,7DA,40,71,1,0,0,,2184,6184,2ff,Traceability year ,7DA,72,87,1,0,0,,2184,6184,2ff,Traceability week ,7DA,88,135,1,0,0,,2184,6184,2ff,Tracability serial number ,7DA,32,39,1,0,0,,2185,6185,4ff,CANM.CANmBussOffCounter ,7DA,40,47,1,0,0,,2185,6185,4ff,CANM.CANmMuteCounter ,7DA,48,55,1,0,0,,2185,6185,4ff,CANM.TCU_ECU_FaultCounter ,7DA,56,63,1,0,0,,2185,6185,4ff,CANM.CentralSwitchECU_FaultCounter ,7DA,88,95,1,0,0,,2185,6185,4ff,CANM.AudioECU_FaultCounter ,7DA,112,119,1,0,0,,2185,6185,4ff,CANM.RearCameraECU_FaultCounter ,7DA,152,159,1,0,0,,2185,6185,4ff,CANM.GATEWAY_ECU_FaultCounter ,7DA,280,287,1,0,0,,2185,6185,4ff,CANM.NavigationECU_FaultCounter ,7DA,16,95,1,0,0,,21EF,61EF,2ff,DaimlerHardwarePartNumber ,7DA,96,175,1,0,0,,21EF,61EF,2ff,DaimlerSoftwarePartNumber ,7DA,16,55,1,0,0,,21F0,61F0,2ff,IdentFirstZone.RenaultReference ,7DA,56,63,1,0,0,,21F0,61F0,4ff,IdentFirstZone.DiagnosticIdentificationCode ,7DA,64,87,1,0,0,,21F0,61F0,2ff,IdentFirstZone.SupplierNumber ,7DA,88,127,1,0,0,,21F0,61F0,2ff,IdentFirstZone.HardwareNumber.LowerPart ,7DA,128,143,1,0,0,,21F0,61F0,4ff,IdentFirstZone.SoftwareNumber ,7DA,144,159,1,0,0,,21F0,61F0,4ff,IdentFirstZone.EditionNumber ,7DA,160,175,1,0,0,,21F0,61F0,4ff,IdentFirstZone.CalibrationNumber ,7DA,176,183,1,0,0,,21F0,61F0,4ff,IdentFirstZone.PartNumber.BasicPartList ,7DA,184,191,1,0,0,,21F0,61F0,4ff,IdentFirstZone.HardwareNumber.BasicPartList ,7DA,192,199,1,0,0,,21F0,61F0,4ff,IdentFirstZone.ApprovalNumber.BasicPartList ,7DA,200,207,1,0,0,,21F0,61F0,ff,IdentFirstZone.ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,7DA,56,95,1,0,0,,21F1,61F1,2ff,LogFirstZone.SoftDownloadSiteRef ,7DA,96,135,1,0,0,,21F1,61F1,2ff,LogFirstZone.SoftDownloadToolRef ,7DA,136,143,1,0,0,,21F1,61F1,4ff,LogFirstZone.NumberOfSoftwareDownloads ,7DA,144,167,1,0,0,,21F1,61F1,4ff,LogFirstZone.DateOfFirstSoftDownload ,7DA,168,183,1,0,0,,21F1,61F1,4ff,LogFirstZone.HourOfSoftwareDownloads ,7DA,192,207,1,0,0,,21F1,61F1,4ff,LogFirstZone.CRClogRecord ,7DA,16,55,1,0,0,,21FC,61FC,2ff,IdentPreviousZone.RenaultReference ,7DA,56,63,1,0,0,,21FC,61FC,4ff,IdentPreviousZone.DiagnosticIdentificationCode ,7DA,64,87,1,0,0,,21FC,61FC,2ff,IdentPreviousZone.SupplierNumber ,7DA,88,127,1,0,0,,21FC,61FC,2ff,IdentPreviousZone.HardwareNumber.LowerPart ,7DA,128,143,1,0,0,,21FC,61FC,4ff,IdentPreviousZone.SoftwareNumber ,7DA,144,159,1,0,0,,21FC,61FC,4ff,IdentPreviousZone.EditionNumber ,7DA,160,175,1,0,0,,21FC,61FC,4ff,IdentPreviousZone.CalibrationNumber ,7DA,176,183,1,0,0,,21FC,61FC,4ff,IdentPreviousZone.PartNumber.BasicPartList ,7DA,184,191,1,0,0,,21FC,61FC,4ff,IdentPreviousZone.HardwareNumber.BasicPartList ,7DA,192,199,1,0,0,,21FC,61FC,4ff,IdentPreviousZone.ApprovalNumber.BasicPartList ,7DA,200,207,1,0,0,,21FC,61FC,ff,IdentPreviousZone.ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,7DA,56,95,1,0,0,,21FD,61FD,2ff,LogPreviousZone.SoftDownloadSiteRef ,7DA,96,135,1,0,0,,21FD,61FD,2ff,LogPreviousZone.SoftDownloadToolRef ,7DA,136,143,1,0,0,,21FD,61FD,4ff,LogPreviousZone.NumberOfSoftwareDownloads ,7DA,144,167,1,0,0,,21FD,61FD,4ff,LogPreviousZone.DateOfFirstSoftDownload ,7DA,168,183,1,0,0,,21FD,61FD,4ff,LogPreviousZone.HourOfSoftwareDownloads ,7DA,192,207,1,0,0,,21FD,61FD,4ff,LogPreviousZone.CRClogRecord ,7DA,16,55,1,0,0,,21FE,61FE,2ff,IdentCurrentZone.RenaultReference ,7DA,56,63,1,0,0,,21FE,61FE,4ff,IdentCurrentZone.DiagnosticIdentificationCode ,7DA,64,87,1,0,0,,21FE,61FE,2ff,IdentCurrentZone.SupplierNumber ,7DA,88,127,1,0,0,,21FE,61FE,2ff,IdentCurrentZone.HardwareNumber.LowerPart ,7DA,128,143,1,0,0,,21FE,61FE,4ff,IdentCurrentZone.SoftwareNumber ,7DA,144,159,1,0,0,,21FE,61FE,4ff,IdentCurrentZone.EditionNumber ,7DA,160,175,1,0,0,,21FE,61FE,4ff,IdentCurrentZone.CalibrationNumber ,7DA,176,183,1,0,0,,21FE,61FE,4ff,IdentCurrentZone.PartNumber.BasicPartList ,7DA,184,191,1,0,0,,21FE,61FE,4ff,IdentCurrentZone.HardwareNumber.BasicPartList ,7DA,192,199,1,0,0,,21FE,61FE,4ff,IdentCurrentZone.ApprovalNumber.BasicPartList ,7DA,200,207,1,0,0,,21FE,61FE,ff,IdentCurrentZone.ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,7DA,56,95,1,0,0,,21FF,61FF,2ff,LogCurrentZone.SoftDownloadSiteRef ,7DA,96,135,1,0,0,,21FF,61FF,2ff,LogCurrentZone.SoftDownloadToolRef ,7DA,136,143,1,0,0,,21FF,61FF,4ff,LogCurrentZone.NumberOfSoftwareDownloads ,7DA,144,167,1,0,0,,21FF,61FF,4ff,LogCurrentZone.DateOfFirstSoftDownload ,7DA,168,183,1,0,0,,21FF,61FF,4ff,LogCurrentZone.HourOfSoftwareDownloads ,7DA,192,207,1,0,0,,21FF,61FF,4ff,LogCurrentZone.CRClogRecord ,7DA,24,39,1,0,0,,220107,620107,ff,Vehicle Definition,0:Default value;1:X61VE;2:X61ice;17:X61ph2;256:L38VE;257:L38ph2;513:X10;1025:X98;1538:X62th;2049:X45;2305:X87;2561:X95ph2;3585:X43 ,7DA,24,31,1,0,0,,220111,620111,ff,Blocking the charge status,0:not use;1:NO (allow the charge);16:YES (block the charge);17:INVALID ,7DA,24,31,1,0,0,,220114,620114,ff,USB connected input line,0:Not connected;1:connected ,7DA,24,31,1,0,0,,220117,620117,ff,USB supply ON_OFF,0:supply OFF;1:supply ON ,7DA,24,31,1,0,0,,22011A,62011A,ff,LIN ,7DA,24,31,1,0,0,,220124,620124,ff,MMI SUPPLY ON_OFF output line,0:Supply OFF;1:Supply ON ,7DA,24,31,1,0,0,,22012A,62012A,ff,K_Line SVT In ,7DA,24,31,1,0,0,,22012D,62012D,ff,K_Line SVT out ,7DA,24,31,1,0,0,,220133,620133,ff,MMI Ecall button Status,0:Button not activated;1:Button activated ,7DA,24,31,1,0,0,,220138,620138,ff,MMI Bcall button Status,0:Button not activated;1:Button activated ,7DA,24,31,1,0,0,,226C02,626C02,ff,Ecall Vehicle Type,1:M1;4:N1 ,7DA,24,31,1,0,0,,226C04,626C04,ff,Ecall Vehicle Propulsion Storage ,7DA,24,1047,1,0,0,,226C10,626C10,2ff,OBS URL ,7DA,24,279,1,0,0,,226C12,626C12,2ff,OBS PORT ,7DA,24,279,1,0,0,,226C22,626C22,2ff,inSIM SMS Center ,7DA,24,279,1,0,0,,226C24,626C24,2ff,ExtSIM SMS Center ,7DA,24,279,1,0,0,,226C26,626C26,2ff,Ecall Number _ Operational ,7DA,24,279,1,0,0,,226C28,626C28,2ff,Ecall Number _ Life cycle Test ,7DA,24,31,1,0,0,,226C29,626C29,ff,Ecall Number Selection,0:ecall number - Operational;1:ecall number - Life cycle Test ,7DA,24,31,1,0,0,,226C2A,626C2A,ff,Ecall Number Selection Ing,0:ecall number - Operational;1:ecall number - Life cycle Test;10:ecall number - Validation Test ,7DA,24,279,1,0,0,,226C2B,626C2B,2ff,BCall Number ,7DA,24,279,1,0,0,,226C2C,626C2C,2ff,CCall Number ,7DA,24,31,1,0,0,,226C2F,626C2F,ff,ECall Auto Activation,0:ecall auto activated;1:ecall auto deactivated ,7DA,24,279,1,0,0,,226C38,626C38,2ff,PID InSIM UserID ,7DA,24,279,1,0,0,,226C3A,626C3A,2ff,PWD InSIM Password ,7DA,24,279,1,0,0,,226C3C,626C3C,2ff,PID ExtSIM UserID ,7DA,24,279,1,0,0,,226C3D,626C3D,2ff,PWD ExtSIM Password ,7DA,24,279,1,0,0,,226C40,626C40,2ff,InSIM PIN ,7DA,24,31,1,0,0,,226C42,626C42,ff,InSIM PIN use,0:Deactivated;1:activated ,7DA,24,279,1,0,0,,226C44,626C44,2ff,ExtSIM PIN ,7DA,24,31,1,0,0,,226C46,626C46,ff,ExtSIM PIN use,0:Deactivated;1:activated ,7DA,24,31,1,0,0,,226C52,626C52,ff,PPP Connection Retry ,7DA,24,39,1,0,0,s,226C54,626C54,ff,PPP Failure Time out ,7DA,24,39,1,0,0,s,226C56,626C56,ff,PPP Disconnection time out ,7DA,24,31,1,0,0,,226C58,626C58,ff,PPP Rejection retry,0:No retry until next ON cycle;1:Retry as PPP sequence timeout ,7DA,24,31,1,0,0,,226C62,626C62,ff,External GSM Antenna,0:No External GSM antenna connection;1:External GSM antenna connection ,7DA,24,31,1,0,0,,226C64,626C64,ff,External GPS Antenna,0:No External GPS antenna connection;1:External GPS antenna connection ,7DA,28,28,1,0,0,,226C6A,626C6A,ff,Probe Service Activation Status.REMOTE_DIAG.Deactivation,0:do nothing;1:Deactivate REMOTE DIAG ,7DA,29,29,1,0,0,,226C6A,626C6A,ff,Probe Service Activation Status.ECO.Deactivation,0:do nothing;1:Deactivate ECO ,7DA,30,30,1,0,0,,226C6A,626C6A,ff,Probe Service Activation Status.PAYD.Deactivation,0:do nothing;1:Deactivate PAYD ,7DA,31,31,1,0,0,,226C6A,626C6A,ff,Probe Service Activation Status.FLEET.Deactivation,0:do nothing;1:Deactivate FLEET ,7DA,36,36,1,0,0,,226C6A,626C6A,ff,Probe Service Activation Status.REMOTE_DIAG.activation,0:do nothing;1:activate REMOTE DIAG ,7DA,37,37,1,0,0,,226C6A,626C6A,ff,Probe Service Activation Status.ECO.activation,0:do nothing;1:activate ECO ,7DA,38,38,1,0,0,,226C6A,626C6A,ff,Probe Service Activation Status.PAYD.activation,0:do nothing;1:activate PAYD ,7DA,39,39,1,0,0,,226C6A,626C6A,ff,Probe Service Activation Status.FLEET.activation,0:do nothing;1:activate FLEET ,7DA,24,47,1,0,0,s,226C6B,626C6B,ff,Probe Status Data Frequency Upload ,7DA,24,39,1,0,0,s,226C6C,626C6C,ff,Probe Server Demand Checking Frequency ,7DA,24,31,1,0,0,,226C6D,626C6D,ff,EV Service Activation Status,0:Desactivated;1:Activated ,7DA,24,47,1,0,0,h,226C6E,626C6E,ff,EV Status Data Frequency Upload ,7DA,24,25,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Charging historical.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,26,27,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Battery charging.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,28,29,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Charge Spot short term booking.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,30,31,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Charging Spot Finder 3 points.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,32,33,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Plug In missing.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,34,35,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Remote HVAC control.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,36,37,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Charging schedular.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,38,39,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Charging activation or stop by remote.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,40,41,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Charging Spot Finder upgrade 3 to 24 spots.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,42,43,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Inhibition Desinhibition of Charge as no pay upgrade.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,44,45,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Battery usage and charge history.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,46,47,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Low battery alert upgrade on remote phone.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,48,49,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Internet_widget widget store.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,50,51,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.FLEET Probe service 1.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,52,53,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Charging Spot Finder upgrade availability and compatibility.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,54,55,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.Create private charge spot off board and download OTA.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,60,61,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.LIVE All Tomtom Services.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,62,63,1,0,0,,226C6F,626C6F,ff,EV Service Provisionning Functions configuration.ECO Scoring Challenge Service.status.activation,0:unavailable function;1:deactivated function;2:activated function;3:not used ,7DA,24,39,1,0,0,s,226C74,626C74,ff,EV WakeUp Frequency ,7DA,24,39,1,0,0,s,226C76,626C76,ff,EV ChargeIn Progress TimeOut ,7DA,24,31,1,0,0,,226C8C,626C8C,ff,EV BSOC Difference For Transmission ,7DA,24,39,1,0,0,,226C8E,626C8E,ff,EV VSOC transmission Frequency ,7DA,24,31,1,0,0,,226C91,626C91,ff,WakeUp by CAN,0:Wake Up by CAN;1:BAT VBR ,7DA,24,279,1,0,0,,226C93,626C93,2ff,InSIM ISDN ,7DA,24,279,1,0,0,,226C95,626C95,2ff,ExtSIM ISDN ,7DA,24,31,1,0,0,s,226CA5,626CA5,ff,EV Activation Time Check ,7DA,24,31,1,0,0,s,226CA8,626CA8,ff,EV SMS Waiting Time ,7DA,24,31,1,0,0,,226CAA,626CAA,ff,MFD NFA definition,0:Nothing connected (nothing configured);1:MFD present (and USB);2:NFA present (no USB) ,7DA,24,31,1,0,0,,226CB0,626CB0,ff,Ecall Activation Status,0:Ecall activated;1:Ecall Deactivated ,7DA,24,31,1,0,0,,226CB2,626CB2,ff,Bcall Activation Status,0:Ecall activated;1:Ecall Deactivated ,7DA,24,159,1,0,0,,22F190,62F190,2ff,DID_VIN.VIN ,7DA,160,175,1,0,0,,22F190,62F190,4ff,DID_VIN.CRC ,7DA,24,127,1,0,0,,22F192,62F192,2ff,ECUHardware.Number ,7DA,128,151,1,0,0,,22F192,62F192,2ff,ECUHardware.VersionNumber ,7DA,24,127,1,0,0,,22F194,62F194,2ff,ECUSoftware.Number ,7DA,128,151,1,0,0,,22F194,62F194,2ff,ECUSoftware.VersionNumber ,7DA,24,31,1,0,0,,22FD04,62FD04,ff,GSM external antenna sensing,0:antenna OK;1:antenna SC GND;2:antenna SC 16V;3:antenna removed ,7DA,24,135,1,0,0,,22FD05,62FD05,2ff,Speaker Settings.all ,7DA,32,71,1,0,0,,22FD05,62FD05,2ff,Speaker Settings.TCU Vol Speaker ,7DA,72,79,1,0,0,,22FD05,62FD05,4ff,Speaker Settings.Echo ,7DA,80,119,1,0,0,,22FD05,62FD05,2ff,Speaker Settings.Gain ,7DA,120,127,1,0,0,,22FD05,62FD05,4ff,Speaker Settings.Beep ,7DA,128,135,1,0,0,,22FD05,62FD05,4ff,Speaker Settings.Politone ,7DA,24,111,1,0,0,,22FD06,62FD06,4ff,Microphone Settings 1.all ,7DA,64,103,1,0,0,,22FD06,62FD06,4ff,Microphone Settings 1.Gain_MIC ,7DA,104,111,1,0,0,,22FD06,62FD06,4ff,Microphone Settings 1.Filter_MIC ,7DA,24,279,1,0,0,,22FD10,62FD10,2ff,InSIM GPRS Parameters.APN ,7DA,280,535,1,0,0,,22FD10,62FD10,2ff,InSIM GPRS Parameters.User ,7DA,536,791,1,0,0,,22FD10,62FD10,2ff,InSIM GPRS Parameters.Password ,7DA,792,1047,1,0,0,,22FD10,62FD10,2ff,InSIM GPRS Parameters.DNS1 ,7DA,1048,1303,1,0,0,,22FD10,62FD10,2ff,InSIM GPRS Parameters.DNS2 ,7DA,24,279,1,0,0,,22FD11,62FD11,2ff,Application parameters.Application name ,7DA,280,535,1,0,0,,22FD11,62FD11,2ff,Application parameters.Company name ,7DA,536,791,1,0,0,,22FD11,62FD11,2ff,Application parameters.Application Version ,7DA,24,143,1,0,0,,22FD1C,62FD1C,2ff,IMEI ,7DA,24,31,1,0,0,,22FD1D,62FD1D,4ff,RSSI ,7DA,24,111,1,0,0,,22FD20,62FD20,4ff,Microphone Settings 2.all ,7DA,64,103,1,0,0,,22FD20,62FD20,4ff,Microphone Settings 2.Gain_MIC ,7DA,104,111,1,0,0,,22FD20,62FD20,4ff,Microphone Settings 2.Filter_MIC ,7DA,24,31,1,0,0,,22FD23,62FD23,ff,GPS Sensing ,7DA,24,31,1,0,0,,22FD26,62FD26,ff,GPS number of satellites ,7DA,24,279,1,0,0,,22FD30,62FD30,2ff,External SIM GPRS Parameters.APN ,7DA,280,535,1,0,0,,22FD30,62FD30,2ff,External SIM GPRS Parameters.User ,7DA,536,791,1,0,0,,22FD30,62FD30,2ff,External SIM GPRS Parameters.Password ,7DA,792,1047,1,0,0,,22FD30,62FD30,2ff,External SIM GPRS Parameters.DNS1 ,7DA,1048,1303,1,0,0,,22FD30,62FD30,2ff,External SIM GPRS Parameters.DNS2 ,7DA,24,223,1,0,0,,22FD70,62FD70,2ff,Communication network name.name ,7DA,224,423,1,0,0,,22FD70,62FD70,2ff,Communication network name.id ,7DA,24,31,1,0,0,,22FD71,62FD71,ff,Registered to communication network,0:non registered;1:registered;2:Not Registered - searching;3:Denied register;4:Unknown;5:Registered (Roaming mode) ,7DA,28,39,.010498046875,-1989856,2,V,22FE01,62FE01,ff,C_V.Status.12V_BAT_SENSE ,7DA,44,55,1,0,0,V,22FE01,62FE01,ff,C_V.Status.SENSE_7.1V ,7DA,60,71,.00146484375,0,3,,22FE01,62FE01,ff,C_V.Status.SENSE_5V ,7DA,76,87,.00087890625,0,3,,22FE01,62FE01,ff,C_V.Status.SENSE_3V ,7DA,92,103,1,0,0,,22FE01,62FE01,ff,C_V.Status.SENSE_V_BAT_GPS ,7DA,108,119,.00087890625,0,3,,22FE01,62FE01,ff,C_V.Status.SENSE_3V_GPS ,7DA,124,135,.00146484375,0,3,,22FE01,62FE01,ff,C_V.Status.SENSE_4.4V_VBAT_AUXWR ,7DA,140,151,.0009765625,3145728,3,,22FE01,62FE01,ff,C_V.Status.BATTERY_CURRENT_SENSE ,7DA,156,167,.002197265625,0,3,,22FE01,62FE01,ff,C_V.Status.BATTERY_VOLTAGE_SENSE ,7DA,172,183,.0244140625,0,2,,22FE01,62FE01,ff,C_V.Status.GPS_RF_SUP_CURRENT_SENS ,7DA,188,199,7.48219209558824E-03,-27919091,3,,22FE01,62FE01,ff,C_V.Status.KLINE_SENSE ,7DA,204,215,1,0,0,,22FE01,62FE01,ff,C_V.Status.VCC_2V8_SENSE ,7DA,220,231,1,0,0,,22FE01,62FE01,ff,C_V.Status.VCC_1V8_SENSE ,7DA,236,247,1,0,0,,22FE01,62FE01,ff,C_V.Status.SENSE_5V_B_PIN ,7DA,252,263,1,0,0,,22FE01,62FE01,ff,C_V.Status.SENSE_5V_ANT_PIN ,7DA,268,279,1,0,0,,22FE01,62FE01,ff,C_V.Status.SENSE_3V_PMC ,7DA,28,39,1,0,0,,22FE02,62FE02,ff,Parameters.Status.SENSE_MIC1_P ,7DA,44,55,1,0,0,,22FE02,62FE02,ff,Parameters.Status.SPK_HU_N_SENS ,7DA,60,71,1,0,0,,22FE02,62FE02,ff,Parameters.Status.SPK_HU_P_SENS ,7DA,76,87,1,0,0,,22FE02,62FE02,ff,Parameters.Status.OUTPUT_ON_REQ_SENSE ,7DA,92,103,1,0,0,,22FE02,62FE02,ff,Parameters.Status.SENSE_MUTE ,7DA,108,119,1,0,0,,22FE02,62FE02,ff,Parameters.Status.SPK_MMI_N_SENS ,7DA,124,135,1,0,0,,22FE02,62FE02,ff,Parameters.Status.SENSE_MIC_OUT_P ,7DA,29,39,1,0,0,,22FE03,62FE03,ff,Temperature Status.PCBTEMPSENSE ,7DA,45,55,1,0,0,,22FE03,62FE03,ff,Temperature Status.BATTERY_TEMP_SENSE ,7DA,28,39,.0419921875,-124366,2,,22FE04,62FE04,ff,Rtc.Data.12V_BAT_SENSE ,7DA,44,55,1,0,0,,22FE04,62FE04,ff,Rtc.Data.SGN_WAKE_UP_SENSE,0:signal is not present;4096:signal Failure ,7DA,60,71,.003515625,0,3,,22FE04,62FE04,ff,Rtc.Data.SENSE_3V_PMC ,7DA,76,87,1,0,0,,22FE04,62FE04,ff,Rtc.Data.SGN_WAKE_UP2_SENSE,0:signal is not present;4096:signal Failure ,7DA,24,31,1,0,0,,22FE08,62FE08,ff,TCU State,20:TCU ON;42:TCU OFF GSM ,7DA,24,39,1,0,0,,22FE12,62FE12,ff,Last Wake Up Cause.Cause of last Wake Up,0:None;1:Reset;2:RTC;8:Movement sensor;16:Wake up 1;32:Wake up 2;64:LIN;128:CAN ,7DA,28,39,1,0,0,,22FE27,62FE27,ff,MMI supply Value.3V sense ,7DA,44,55,1,0,0,,22FE27,62FE27,ff,MMI supply Value.5V sense ,7DA,24,47,1,0,0,,22FE63,62FE63,4ff,FICOSA TCU EOL mode ,7DA,24,47,1,0,0,,22FE64,62FE64,2ff,TCU test mode ,7DA,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/DCM_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level oor/ zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed/blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE/EPS_Dtcs.csv ================================================ D000,CAN bus fault (EPS mute) C100,CAN Engine Status fault 5605,EPS fault - Angle sensor 5608,EPS fault - ECU 5606,EPS fault - Motor 5604,EPS fault - Torque Sensor 5614,EPS Thermal Protection 5613,IGNITION signal fault 5612,No Angle calibration F003,Battery voltage fault C129,CAN ABS Absent fault C418,CAN ABS Invalid data fault D001,CAN wheelspeed fault 5603,EPS fault - Adaptative straight ahead offset ================================================ FILE: app/src/main/assets/ZOE/EPS_Fields.csv ================================================ ,762,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession ,762,0,0,1,0,0,,10FA,50FA,ff,SDS - Start Diagnostic Session $FA ,762,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,762,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,762,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,762,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,762,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,762,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,762,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,762,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,762,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,762,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,762,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,762,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,762,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,762,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,762,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,762,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,762,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,762,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,762,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,762,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,762,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,762,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,762,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,762,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,762,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,762,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,762,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,762,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,762,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,762,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,762,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A;2:28504 ,762,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:HARDW;1:28500 ,762,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A ,762,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,762,16,151,1,0,0,,2181,6181,2ff,APV.VIN ,762,152,167,1,0,0,,2181,6181,4ff,APV.CRC VIN ,762,16,31,1,0,0,,2182,6182,4ff,MUX.messaging reference ,762,32,39,1,0,0,,2182,6182,4ff,BUS OFF parameter ,762,40,47,1,0,0,,2182,6182,4ff,Mute Module parameter ,762,48,55,1,0,0,,2182,6182,4ff,MUX.Producer ECM Absent parameter ,762,56,63,1,0,0,,2182,6182,4ff,MUX.Producer ABS/ESP absent parameter ,762,64,71,1,0,0,,2182,6182,4ff,MUX.Producer TdB absent parameter ,762,72,79,1,0,0,,2182,6182,4ff,MUX.Producer UCH absent parameter ,762,80,183,1,0,0,,2182,6182,4ff,MUX.Producers 5 -> 17 absent parameter ,762,184,191,1,0,0,,2182,6182,4ff,MUX.Producer DAE absent parameter ,762,192,247,1,0,0,,2182,6182,4ff,MUX.Producers 19 -> 25 absent parameter ,762,16,175,1,0,0,,2184,6184,2ff,APV.Traceability Information ,762,16,47,1,0,0,,2192,6192,4ff,APV.ECU production date ,762,24,39,.1,0,1,°/s,220101,620101,1ff,DID - Steering velocity ,762,24,31,1,0,0,,220102,620102,1ff,DID - Angle sensor internal status.DID - SWA status.Internal status ,762,29,29,1,0,0,,220102,620102,ff,DID - Angle sensor internal status.DID - SWA status.Calibration status,0:Not calibrated;1:Calibrated ,762,30,30,1,0,0,,220102,620102,ff,DID - Angle sensor internal status.DID - SWA status.Failure,0:No failure;1:Failure ,762,24,31,1,0,0,°,220103,620103,1ff,DID - Steering angle offset ,762,24,39,.1,0,1,°,220104,620104,1ff,DID - Steering angle ,762,24,39,.1,0,1,Nm,220112,620112,1ff,DID - Driver Torque ,762,24,31,1,0,0,A,220113,620113,1ff,DID - Motor current demand ,762,24,31,1,0,0,%,220115,620115,ff,DID - Assistance level ,762,24,31,1,0,0,km/h,220116,620116,ff,DID - Vehicle speed (filtered) ,762,24,31,1,0,0,,220119,620119,1ff,DID - System mode,1:System stop;2:Power-up tests;3:Ramp-up Normal operation;4:Very soft ramp-down;5:Soft ramp-down;6:Wait for shutdown ,762,24,31,1,0,0,,22011A,62011A,ff,DID - Fault Indicator,0:No failure;1:Minor failure;2:Major failure ,762,24,31,1,0,0,,22011E,62011E,ff,DID - IGN counter ,762,24,39,.1,0,1,Nm,22011F,62011F,1ff,DID - Assistance torque demand ,762,24,31,1,0,0,,22012A,62012A,ff,DID - RES On_Off,0:Disable (default);1:Enable ,762,24,31,1,0,0,A,22012C,62012C,1ff,DID - Motor current ,762,24,31,2,0,0,°C,22012D,62012D,1ff,DID - Motor temperature ,762,24,31,2,0,0,°C,22012E,62012E,1ff,DID - ECU temperature ,762,24,39,.00390625,0,3,V,22012F,62012F,ff,DID - Supply voltage ,762,24,31,1,0,0,,220131,620131,ff,DID - Ignition status,0:OFF;1:ON ,762,24,31,1,0,0,,220139,620139,ff,DID - Angle sensor index status,0:Turn not detected;1:Turn detected ,762,24,31,1,0,0,,22015B,62015B,ff,DID - Angle sensor mode,0:Sensorless;1:Real sensor ,762,24,119,1,0,0,,22015C,62015C,4ff,DID - Tuning version number ,762,24,11975,1,0,0,,22015D,62015D,4ff,TuningParameter ,762,0,0,1,0,0,,22015E,62015E,ff,DataRead.DID - TuningParameter ,762,24,31,1,0,0,,22015E,62015E,ff,DID - Derating Status,0:No derating;1:Derating active ,762,24,31,1,0,0,%,220160,620160,ff,DID - Derating assistance level ,762,24,103,1,0,0,,220161,620161,4ff,DID - Internal fault store (Supplier) ,762,24,31,1,0,0,,220162,620162,4ff,DID - Tuning Number (selected) ,762,24,31,1,0,0,,220163,620163,4ff,DID - Supplier fault code ,762,24,31,1,0,0,,220164,620164,ff,DID - Dongle state,1:Operational learnt;2:Operational blank;3:Not operational ,762,24,31,1,0,0,,220165,620165,ff,DID - Dongle pairing counter ,762,24,31,1,0,0,,220166,620166,ff,DID - Dongle error,0:No error;1:EEPROM problem on Dongle_ID;2:EEPROM problem on Dongle_pairing_counter;3:Motor disconnected from ECU ,762,24,31,1,0,0,,220167,620167,4ff,DID - WheelSpeedSensorsCfg ,762,24,31,1,0,0,,220168,620168,ff,DID - WheelSpeedIndexMapSelector,0:Default;1:MAP 1;2:MAP 2;3:MAP 3;4:MAP 4;5:MAP 5;6:MAP 6;7:MAP 7;8:MAP 8;9:MAP 9;10:MAP 10;11:MAP 11;12:MAP 12 ,762,24,39,.01,0,2,km/h,220204,620204,ff,DID - Vehicle speed (CAN) ,762,24,31,1,0,0,,220500,620500,ff,DID - DiagMuxON,0:Disabled;1:Enabled ,762,24,31,1,0,0,,220501,620501,ff,DID - Engine Status (CAN),0:Stopped;1:Reserved;2:Running;3:Driven ,762,24,31,1,0,0,,221024,621024,4ff,DID - Tuning number ,762,24,103,1,0,0,,22F187,62F187,2ff,DID - Spare part number ,762,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/EPS_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE/EVC_Dtcs.csv ================================================ 0022,Mastervac brake assistance system 0023,Brake assistance Vacuum Pump 0026,Mastervac control unit 0027,Mastervac sensor power supply 0060,Door switch 0070,Shift Lock electrical control circuit 0071,Gear lever 0080,Charge spot 0105,Passenger compartment Thermistor 0106,Heat water temperature sensor 0121,Heater request relay electrical command circuit 0130,Pulser relay power control circuit 0140,Feedback Heater Water pump of passenger compartement 0141,Heater Water pump of passenger compartement 0152,Computer of Air Conditioning 0156,Evaporator sensor for AC 0160,Heater Led control circuit 0170,Pulser power supply relay 0171,Cooling Fan Motor 0225,Accelerator Pedal Position Sensor - Track 1 0226,Accelerator Pedal Position Sensor 0301,Underhood switch module (USM) 0303,EVC 0304,Power electronic bloc 0305,Lithium Battery Controler 0306,Battery Charger Bloc 0307,Power electronic bloc data 0404,14v static converter in Default (from CAN) 0405,14v static converter 0406,EM inverter in Default (from CAN) 0411,Battery Charger Bloc in Default (from CAN) 0414,High voltage network 0420,LBC in Default (from CAN) 0431,Charge Interlock 0432,Power train interlocks 0433,Comfort or Passenger compartment Thermistor Interlock 0434,Comfort or Air conditionned Interlock 0440,Electric Insulation 0441,Insulation Sensor 0460,Engine Coolant Temperature Sensor 0461,Cooling valve 1 control circuit 0462,Feedback driving mode water pump 0463,Driving mode water pump 0464,Feedback load mode water pump 0465,Load mode water pump 0468,Peltier fan request electrical command circuit 0469,Peltier external fan 0470,HV voltage sensor 0480,Battery high voltage power relay A 0491,Battery high voltage lock loop 1 0495,Temperature sensors from CAN 0503,Mastervac Voltage supply 0504,Brake Pedal 0530,A/C Refrigerant Pressure Sensor 0560,Battery Voltage 14 V 0564,Cruise Control/Speed Limiter - Paddle Control Button 0571,Closed Brake Sensor 0574,Cruise Control/Speed Limiter - Displayed Speed 0575,Cruise Control/Speed Limiter - Switch Button 0606,Engine Control Module - Processor 0610,ECM torque calculation 0641,Voltage supply range 1 0651,Voltage supply range 2 0657,Powerlatch relay 0703,Open Brake Pedal Switch 0833,Begining of Clutch Pedal Move Switch 1525,Cruise Control/Speed Limiter Deactivation 2120,Accelerator Pedal Position Sensor - Track 2 060B,Engine Control Module - A/D Converter 160C,Internal Engine Control Module Error 046A,Peltier internal fan 046B,Feedback of Peltier external fan 046C,Feedback of Peltier internal fan 046D,Peltier request relay electrical command circuit C415,Invalid Data Received From Anti-Lock Brake System Control Module 0525,Cruise Control Servo Control Circuit Range/Performance 0601,Electric Motor Prestation 0435,Interlock Sensor 0490,Battery high voltage lock 0020,Vacuum Sensor pressure 046E,Peltier Temperature 047E,Peltier Cells 0081,Charge plug trigger 0492,Battery high voltage lock loop 2 0302,Air conditionned system 0161,Self preconditioning relay C418,Invalid data received from uncoupled brake pedal control module 030A,Inverter (for charge function) 0308,Lithium battery (reductant dignosis) 0471,HV Battery 0502,Battery temperature sensors 0120,Heater electrical command circuit 0500,No ETS Sleeping that leads to a flat lead 12V battery 0011,Reverse Light relay command 0063,Door plug command 0072,Gear lever sensor - track 1 0073,Gear lever sensor - track 2 0090,Eco mode switch 0180,Battery Conditioning system (AC, CTP) 0481,Battery high voltage power relay P2 0482,Battery high voltage power relay P1 0483,Battery high voltage power relay A or P1 0485,Battery high voltage power relay A or P2 0486,Battery high voltage power relay P1 or P2 0510,State of function (SOF) of 14V battery 0511,14V Battery current sensor 0512,Pulse Box C198,Communication With Telematic Control Module C140,Communication With Body Control Module C155,Communication With Instrument Panel Cluster (IPC) Control Module 0062,Door plug status C146,Communication With Gateway 'A' (BIC) 0181,Battery CTP/THP relay 1 0182,Battery CTP/THP relay 2 0183,Battery CTP/THP relay 3 0184,Battery HVAC relay electrovalve 1 0185,Battery HVAC relay electrovalve 2 0186,Battery HVAC fan out (command) 0187,Battery HVAC temperature sensor C103,Communication With Gear Shift Control Module (Shifter) C129,Communication With Brake System Control Module 0010,Stop Light relay command 04A0,SOC error during charge 0188,Battery blower rotation speed feedback line 0415,Power electronic bloc (safety level 2 detection) 0442,Insulation motor 0407,DCDC C class default C19A,Communication with CSHV Unit (Dedicated for Crash when APC is off for daimler application) C199,Communication with Energy Management Module 1654,Communication with Aribag Control module 042F,JB interlocks C19B,Communication with LBC8 Unit 0443,Insulation Clim 0513,14V Battery heat relay 060C,Engine Control Module - Electronic Stability Program Control Function (Level 2) C121,Communication With ABS/ESP Control Module (safety) C122,Communication With ABS/ESP Control Module C164,Communication With Climate Control ECU Module C123,Front Collision Warning 043F,Interlock supervision 0467,PAC box 04A1,Power Line Gateway 0472,Cooling valve 2 control circuit 0473,AC - Heat pump circuit temperature sensor 1 (managed by PAC system) 0474,AC - Heat pump circuit temperature sensor 2 (managed by PAC system) 0475,AC - Heat pump circuit Valve 1 (managed by PAC system) 0476,AC - Heat pump circuit Valve 2 (managed by PAC system) 04B1,limitation puissance de charge en fonction de la température plug 0074,Incoherence detection positio Park sur le levier entre info du CMF et info levier reçue sur le CAN 060A,Engine Control Module - Reset 0021,Vaccum Sensor pressure 2 0024,Vacuum pump electric 0101,Termistor Heater 1 0102,Termistor Heater 2 0103,Termistor Heater 3 0104,Termistor Heater 4 0150,High Voltage Supply of the Air Conditioning - Side Compressor 0151,Low Voltage Supply of the Air Conditioning - Side Computer 0153,Inverter of the Air Conditioning 0154,Electric motor of air conditioning 0412,Battery Charger Bloc - High Voltage Side (from CAN) 0413,Main Voltage Supply of the Battery Charger Bloc (from CAN) 0430,Comfort Interlock 0450,Powerlatch Main relay operating 1655,Airbag Data further to a crash C19C,Safety mode 1 received from BMS 04B2,Capteur de température du Plug de charge (côté véhicule) 04B3,Current consumption on 14V network ================================================ FILE: app/src/main/assets/ZOE/EVC_Fields.csv ================================================ ,7EC,0,0,1,0,0,,1081,5081,ff,StartDiagnosticSession.Default ,7EC,0,0,1,0,0,,1085,5085,ff,StartDiagnosticSession.Programming ,7EC,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.ExtendedDiagnosticSession ,7EC,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7EC,16,23,1,0,0,,1902AF,5902AF,ff,DTCStatusAvailabilityMask ,7EC,24,39,1,0,0,,1902AF,5902AF,ff,DTCDeviceAndFailureTypeOBD ,7EC,40,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;10:Not compatible;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;32:test;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature;241:Safety Case 1;242:Safety Case 2;243:Multiple Failure;244:Temperature too Low;245:Negative Loop Error;246:Positive Loop Error;247:Initialisation not valid;248:Overspeed;249:Limp Home;250:Specific Supplier;251:-;252:--;253:Drift low;254:Drift high ,7EC,44,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType.ManufacturerOrSupplier ,7EC,48,48,1,0,0,,1902AF,5902AF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,7EC,49,49,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,7EC,50,50,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7EC,51,51,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7EC,52,52,1,0,0,,1902AF,5902AF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7EC,53,53,1,0,0,,1902AF,5902AF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,7EC,54,54,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,7EC,55,55,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailed,0:No;1:Yes ,7EC,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7EC,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,7EC,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,7EC,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,7EC,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,7EC,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,7EC,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,7EC,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,7EC,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,7EC,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,7EC,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,7EC,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,7EC,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,7EC,16,39,1,0,0,,190600000084,590600000084,4ff,DTCRecord ,7EC,40,47,1,0,0,,190600000084,590600000084,ff,StatusOfDTC ,7EC,56,63,1,0,0,,190600000084,590600000084,ff,DTCExtendedData.DTCOccurrenceCounter_2 ,7EC,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord ,7EC,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC ,7EC,56,79,1,0,0,km,190600000085,590600000085,ff,DTCExtendedData.DTCLastDiseappearMileage ,7EC,16,39,1,0,0,,190600000086,590600000086,4ff,DTCRecord ,7EC,40,47,1,0,0,,190600000086,590600000086,ff,StatusOfDTC ,7EC,56,79,1,0,0,km,190600000086,590600000086,ff,DTCExtendedData.DTCTravelledDistanceFailurePresent ,7EC,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord ,7EC,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC ,7EC,56,79,1,0,0,km,190600000087,590600000087,ff,DTCExtendedData.DTCFirstAppearMileage ,7EC,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,7EC,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,7EC,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,7EC,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,7EC,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,7EC,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,7EC,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,7EC,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,7EC,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,7EC,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,7EC,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,7EC,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A;1:237D4;2:237D3 ,7EC,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:N/A;1:237D4 ,7EC,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A;1:HMLGT ,7EC,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,7EC,16,151,1,0,0,,2181,6181,2ff,V.I.N ,7EC,152,167,1,0,0,,2181,6181,4ff,CRC ,7EC,16,39,1,0,0,,2184,6184,4ff,ITG Supplier Number ,7EC,40,47,1,0,0,,2184,6184,2ff,Traceability Factory Code ,7EC,48,143,1,0,0,,2184,6184,2ff,Traceability Serial Number ,7EC,16,103,1,0,0,,21B7,61B7,4ff,Configuration of Electrical Vehicle Networks ,7EC,16,103,1,0,0,,21B8,61B8,4ff,List of Electrical Vehicle ECUs with After-sales diagnostic ,7EC,16,23,1,0,0,,21EF,61EF,2ff,Hardware Part Number 1 ,7EC,24,31,1,0,0,,21EF,61EF,2ff,Hardware Part Number 2 ,7EC,32,39,1,0,0,,21EF,61EF,2ff,Hardware Part Number 3 ,7EC,40,47,1,0,0,,21EF,61EF,2ff,Hardware Part Number 4 ,7EC,48,55,1,0,0,,21EF,61EF,2ff,Hardware Part Number 5 ,7EC,56,63,1,0,0,,21EF,61EF,2ff,Hardware Part Number 6 ,7EC,64,71,1,0,0,,21EF,61EF,2ff,Hardware Part Number 7 ,7EC,72,79,1,0,0,,21EF,61EF,2ff,Hardware Part Number 8 ,7EC,80,87,1,0,0,,21EF,61EF,2ff,Hardware Part Number 9 ,7EC,88,95,1,0,0,,21EF,61EF,2ff,Hardware Part Number 10 ,7EC,96,103,1,0,0,,21EF,61EF,2ff,Software Part Number 1 ,7EC,104,111,1,0,0,,21EF,61EF,2ff,Software Part Number 2 ,7EC,112,119,1,0,0,,21EF,61EF,2ff,Software Part Number 3 ,7EC,120,127,1,0,0,,21EF,61EF,2ff,Software Part Number 4 ,7EC,128,135,1,0,0,,21EF,61EF,2ff,Software Part Number 5 ,7EC,136,143,1,0,0,,21EF,61EF,2ff,Software Part Number 6 ,7EC,144,151,1,0,0,,21EF,61EF,2ff,Software Part Number 7 ,7EC,152,159,1,0,0,,21EF,61EF,2ff,Software Part Number 8 ,7EC,160,167,1,0,0,,21EF,61EF,2ff,Software Part Number 9 ,7EC,168,175,1,0,0,,21EF,61EF,2ff,Software Part Number 10 ,7EC,16,55,1,0,0,,21F0,61F0,2ff,PartNumber.LowerPart ,7EC,56,63,1,0,0,,21F0,61F0,4ff,DiagnosticIdentificationCode ,7EC,64,87,1,0,0,,21F0,61F0,2ff,SupplierNumber.ITG ,7EC,88,127,1,0,0,,21F0,61F0,2ff,HardwareNumber.LowerPart ,7EC,128,143,1,0,0,,21F0,61F0,4ff,SoftwareNumber ,7EC,144,159,1,0,0,,21F0,61F0,4ff,EditionNumber ,7EC,160,175,1,0,0,,21F0,61F0,4ff,CalibrationNumber ,7EC,176,183,1,0,0,,21F0,61F0,ff,PartNumber.BasicPartList,0:N/A;1:237D4;2:237D3 ,7EC,184,191,1,0,0,,21F0,61F0,ff,HardwareNumber.BasicPartList,0:N/A;1:237D4 ,7EC,192,199,1,0,0,,21F0,61F0,ff,ApprovalNumber.BasicPartList,0:N/A;1:HMLGT ,7EC,200,207,1,0,0,,21F0,61F0,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,7EC,16,55,1,0,0,,21FF,61FF,2ff,ApprovalNumber.LowerPart ,7EC,56,95,1,0,0,,21FF,61FF,2ff,ProgrammingSiteReference ,7EC,96,135,1,0,0,,21FF,61FF,2ff,ProgrammingToolReference ,7EC,136,143,1,0,0,,21FF,61FF,ff,NumberOfReprogrammings ,7EC,144,167,1,0,0,,21FF,61FF,4ff,DateOfReprogramming ,7EC,168,183,1,0,0,,21FF,61FF,4ff,TimeOfReprogramming ,7EC,184,191,1,0,0,,21FF,61FF,ff,SaveMarking ,7EC,192,207,1,0,0,,21FF,61FF,4ff,CrcOfLogSave ,7EC,24,31,1,0,0,,222000,622000,4ff,DIDs supported in range [$2001 - $2020] ,7EC,24,31,1,40,0,°C,222001,622001,ff,($2001) Battery Rack temperature ,7EC,24,39,.02,0,2,%,222002,622002,ff,($2002) State Of Charge (SOC) HV battery ,7EC,24,39,.01,0,2,km/h,222003,622003,ff,($2003) Vehicle speed ,7EC,24,39,.5,0,1,V,222004,622004,ff,($2004) consolidated HV voltage ,7EC,24,39,.01,0,2,V,222005,622005,ff,($2005) Battery voltage 14v ,7EC,24,47,1,0,0,km,222006,622006,ff,($2006) Total vehicle distance ,7EC,24,39,1,0,0,mV,22200B,62200B,ff,($200B) Accelerator pedal voltage _ track 1 ,7EC,24,39,1,0,0,mV,22200C,62200C,ff,($200C) Accelerator pedal voltage _ track 2 ,7EC,24,39,.01,0,2,V,22200D,62200D,ff,Freon pressure sensor voltage ,7EC,31,31,1,0,0,,22200E,62200E,ff,($200E) Key state,0:key off;1:key on ,7EC,28,31,1,0,0,,22200F,62200F,ff,($200F) Brake pedal _ switches consolidation state,0:Not used;1:not pressed;2:pressed;3:Not Used;4:confirmed pressed ,7EC,24,31,1,0,0,,222010,622010,ff,($2010) Engine status,0:0-engine stopped;16:16-engine driven;32:32-engine stalled;48:48-engine autonomious ,7EC,24,31,1,0,0,,222020,622020,4ff,DIDs supported in range [$2021 - $2040] ,7EC,24,39,1,0,0,mV,222021,622021,ff,($2021) Sensors supply voltage 1 ,7EC,24,39,1,0,0,mV,222022,622022,ff,($2022) Sensors supply voltage 2 ,7EC,30,31,1,0,0,,222025,622025,ff,($2025) Brake pedal _ close active switch state,0:reserved;1:not pressed;2:pressed ,7EC,30,31,1,0,0,,222026,622026,ff,($2026) Brake pedal _ open active switch state,0:reserved;1:not pressed;2:pressed ,7EC,24,39,.00125,0,3,-,22202E,62202E,ff,($202E) Accelerator pedal position ,7EC,24,31,1,0,0,km/h,222035,622035,ff,($2035) CCSL _ Cruise control speed setpoint ,7EC,24,31,1,0,0,-,222036,622036,ff,($2036) Counter of inconsistencies between accelerator pedal and brake ,7EC,24,39,1,0,0,mV,222039,622039,ff,($2039) CCSL _ Steering wheel push buttons voltage ,7EC,31,31,1,0,0,,22203A,62203A,ff,($203A) Configuration _ Cruise control (option),0:without;1:with ,7EC,31,31,1,0,0,,22203B,62203B,ff,($203B) Configuration _ Cruise control (OnOff button),0:without;1:with ,7EC,31,31,1,0,0,,22203C,62203C,ff,($203C) Cruise control OnOff button state,0:off;1:on ,7EC,31,31,1,0,0,,22203D,62203D,ff,($203D) Configuration _ Speed limiter (option),0:without;1:with ,7EC,31,31,1,0,0,,22203E,62203E,ff,($203E) Configuration _ Speed limiter (OnOff button),0:without;1:with ,7EC,31,31,1,0,0,,22203F,62203F,ff,($203F) Speed limiter OnOff button state,0:off;1:on ,7EC,24,31,1,0,0,,222040,622040,4ff,DIDs supported in range [$2041 - $2060] ,7EC,31,31,1,0,0,,222041,622041,ff,($2041) Configuration _ CCSL steering wheel push buttons,0:without;1:with ,7EC,31,31,1,0,0,,222042,622042,ff,Configuration _ Air conditioning control unit,0:without;1:with ,7EC,31,31,1,0,0,,222043,622043,ff,Configuration _ Freon pressure sensor,0:without;1:with ,7EC,31,31,1,0,0,,222047,622047,ff,($2047) First start done,0:no;1:yes ,7EC,29,31,1,0,0,,22204B,62204B,ff,($204B) CCSL _ Steering wheel push buttons state,0:unpressed;1:invalid voltage;2:open circuit;3:suspend button pressed;4:set - button pressed;5:set + button pressed;6:resume button pressed ,7EC,29,31,1,0,0,,22204C,62204C,ff,($204C) CCSL _ Status,0:CC and SL off;1:SL on (active or over-speed);2:SL on (awaiting or supsended);3:SL requested and in failure;4:CC on (active);5:CC on (awaiting or supsended);6:CC requested and in failure;7:CC and SL not present ,7EC,29,29,1,0,0,,22204D,62204D,ff,($204D) CCSL - State of the failures which cause irreversible CC safety failure.2,0:No activation of the minimum travel clutch switch without CC deactivation;1:activation of the minimum travel clutch switch without CC deactivation ,7EC,30,30,1,0,0,,22204D,62204D,ff,($204D) CCSL - State of the failures which cause irreversible CC safety failure.1,0:No activation of the open brake switch without CC deactivation;1:activation of the open brake switch without CC deactivation ,7EC,31,31,1,0,0,,22204D,62204D,ff,($204D) CCSL - State of the failures which cause irreversible CC safety failure.0,0:No Presence of CC force request despite the CC deactivation;1:Presence of CC force request despite the CC deactivation ,7EC,26,26,1,0,0,,22204E,62204E,ff,($204E) CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.5,0:No SL engine inhibition;1:SL engine inhibition ,7EC,27,27,1,0,0,,22204E,62204E,ff,($204E) CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.4,0:No change of the displayed speed unit;1:Change of the displayed speed unit ,7EC,28,28,1,0,0,,22204E,62204E,ff,($204E) CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.3,0:No displayed vehicle speed absence;1:Displayed vehicle speed absence ,7EC,29,29,1,0,0,,22204E,62204E,ff,($204E) CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.2,0:No real vehicle speed absence;1:Real vehicle speed absence ,7EC,30,30,1,0,0,,22204E,62204E,ff,($204E) CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.1,0:No displayed vehicle speed unavailable;1:Displayed vehicle speed unavailable ,7EC,31,31,1,0,0,,22204E,62204E,ff,($204E) CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.0,0:No real vehicle speed unavailable;1:Real vehicle speed unavailable ,7EC,24,24,1,0,0,,22204F,62204F,ff,($204F) CCSL - State of the reversible failures not due to CC which cause CC failure.7,0:No CC engine inhibition;1:CC engine inhibition ,7EC,25,25,1,0,0,,22204F,62204F,ff,($204F) CCSL - State of the reversible failures not due to CC which cause CC failure.6,0:No Multi Function Contactor failure;1:Multi Function Contactor failure ,7EC,26,26,1,0,0,,22204F,62204F,ff,($204F) CCSL - State of the reversible failures not due to CC which cause CC failure.5,0:No sudden braking detected without brake information;1:Sudden braking detected without brake information ,7EC,27,27,1,0,0,,22204F,62204F,ff,($204F) CCSL - State of the reversible failures not due to CC which cause CC failure.4,0:No braking detected without brake information;1:Braking detected without brake information ,7EC,28,28,1,0,0,,22204F,62204F,ff,($204F) CCSL - State of the reversible failures not due to CC which cause CC failure.3,0:No brake information absence;1:Brake information absence ,7EC,29,29,1,0,0,,22204F,62204F,ff,($204F) CCSL - State of the reversible failures not due to CC which cause CC failure.2,0:No brake information unavailable;1:Brake information unavailable ,7EC,30,30,1,0,0,,22204F,62204F,ff,($204F) CCSL - State of the reversible failures not due to CC which cause CC failure.1 ,7EC,31,31,1,0,0,,22204F,62204F,ff,($204F) CCSL - State of the reversible failures not due to CC which cause CC failure.0 ,7EC,24,39,.01,0,2,km/h,222050,622050,ff,($2050) Displayed vehicle speed received on the CAN network ,7EC,31,31,1,0,0,,222051,622051,ff,($2051) Displayed vehicle speed unit,0:km/h;1:mph ,7EC,31,31,1,0,0,,22205B,62205B,ff,($205B) Limp home activation state,0:deactivated;1:activated ,7EC,24,31,1,0,0,,222060,622060,4ff,DIDs supported in range [$2061 - $2080] ,7EC,24,39,1,0,0,s,22206A,62206A,ff,($206A) Brake pedal _ duration of the close active switch blocked ,7EC,24,39,1,0,0,s,22206B,62206B,ff,($206B) Brake pedal _ duration of the open active switch blocked ,7EC,31,31,1,0,0,,22206E,62206E,ff,($206E) Configuration _ Brake pedal _ open active switch,0:without;1:with ,7EC,26,26,1,0,0,,222078,622078,ff,($2078) CCSL - State of the causes for normal CCSL deactivation.5,0:No Eco mode request change;1:Eco mode request change ,7EC,27,27,1,0,0,,222078,622078,ff,($2078) CCSL - State of the causes for normal CCSL deactivation.4,0:No Gearbox on a neutral position;1:Gearbox on a neutral position ,7EC,28,28,1,0,0,,222078,622078,ff,($2078) CCSL - State of the causes for normal CCSL deactivation.3,0:no Clutch pedal pressed or no connection;1:Clutch pedal pressed or no connection ,7EC,29,29,1,0,0,,222078,622078,ff,($2078) CCSL - State of the causes for normal CCSL deactivation.2,0:No Braking;1:Braking ,7EC,30,30,1,0,0,,222078,622078,ff,($2078) CCSL - State of the causes for normal CCSL deactivation.1,0:No Suspend button pressed;1:Suspend button pressed ,7EC,31,31,1,0,0,,222078,622078,ff,($2078) CCSL - State of the causes for normal CCSL deactivation.0,0:No Main switch changed;1:Main switch changed ,7EC,25,25,1,0,0,,222079,622079,ff,($2079) CCSL - State of the system causes for normal CCSL deactivation.6,0:No SL system engine control inhibition;1:SL system engine control inhibition ,7EC,26,26,1,0,0,,222079,622079,ff,($2079) CCSL - State of the system causes for normal CCSL deactivation.5,0:No CC system engine control inhibition;1:CC system engine control inhibition ,7EC,27,27,1,0,0,,222079,622079,ff,($2079) CCSL - State of the system causes for normal CCSL deactivation.4,0:No Assisted nor manual parking brake;1:Assisted or manual parking brake ,7EC,28,28,1,0,0,,222079,622079,ff,($2079) CCSL - State of the system causes for normal CCSL deactivation.3,0:Speed / setpoint ratio not too small;1:Speed / setpoint ratio too small ,7EC,29,29,1,0,0,,222079,622079,ff,($2079) CCSL - State of the system causes for normal CCSL deactivation.2,0:ASR or AYC not in regulation;1:ASR or AYC in regulation ,7EC,30,30,1,0,0,,222079,622079,ff,($2079) CCSL - State of the system causes for normal CCSL deactivation.1,0:Gearbox not on a reverse position;1:Gearbox on a reverse position ,7EC,31,31,1,0,0,,222079,622079,ff,($2079) CCSL - State of the system causes for normal CCSL deactivation.0,0:Start button not pressed;1:Start button pressed ,7EC,24,31,1,0,0,s,22207A,62207A,ff,($207A) Maximum duration of resume button pressed ,7EC,24,31,1,0,0,s,22207B,62207B,ff,($207B) Maximum duration of set + button pressed ,7EC,24,31,1,0,0,s,22207C,62207C,ff,($207C) Maximum duration of set manus button pressed ,7EC,24,31,1,0,0,s,22207D,62207D,ff,($207D) Maximum duration of suspend button pressed ,7EC,24,31,1,0,0,-,22207E,62207E,ff,($207E) Maximum value of blocked button detection counter ,7EC,24,31,1,0,0,,222080,622080,4ff,DIDs supported in range [$2081 - $20A0] ,7EC,30,31,1,0,0,,222093,622093,ff,($2093) Test of underload made on the freon pressure measure,0:Test conditions not satisfied;1:Reserved;2:Test conditions satisfied and incorrect cooling gas load;3:Test conditions satisfied and correct cooling gas load ,7EC,24,31,1,0,0,,222120,622120,4ff,DIDs supported in range [$2121-$2140] ,7EC,31,31,1,0,0,,22212E,62212E,ff,($212E) A crash occured and the diagnostic add-on strategy is frozen,0:No crash detected;1:Crash detected ,7EC,24,31,1,0,0,,222160,622160,4ff,DIDs supported in range [$2161 - $2180] ,7EC,31,31,1,0,0,,222166,622166,ff,($2166) External controls safety authorization flag,0:Not enabled;1:Enabled ,7EC,24,24,1,0,0,,222170,622170,ff,($2170) CCSL - State of the system causes for normal CCSL deactivation (2nd byte).7,1:Reserved ,7EC,25,25,1,0,0,,222170,622170,ff,($2170) CCSL - State of the system causes for normal CCSL deactivation (2nd byte).6,1:Reserved ,7EC,26,26,1,0,0,,222170,622170,ff,($2170) CCSL - State of the system causes for normal CCSL deactivation (2nd byte).5,1:Reserved ,7EC,27,27,1,0,0,,222170,622170,ff,($2170) CCSL - State of the system causes for normal CCSL deactivation (2nd byte).4,1:Reserved ,7EC,28,28,1,0,0,,222170,622170,ff,($2170) CCSL - State of the system causes for normal CCSL deactivation (2nd byte).3,1:Reserved ,7EC,29,29,1,0,0,,222170,622170,ff,($2170) CCSL - State of the system causes for normal CCSL deactivation (2nd byte).2,1:Reserved ,7EC,30,30,1,0,0,,222170,622170,ff,($2170) CCSL - State of the system causes for normal CCSL deactivation (2nd byte).1,1:Reserved ,7EC,31,31,1,0,0,,222170,622170,ff,($2170) CCSL - State of the system causes for normal CCSL deactivation (2nd byte).0,0:no vehicle STOP information on the cluster;1:vehicle STOP information on the cluster ,7EC,24,31,1,0,0,,222180,622180,4ff,DIDs supported in range [$2181 - $21A0] ,7EC,24,55,.1,0,1,km,222181,622181,1ff,($2181) Mileage recording ,7EC,24,39,.01,0,2,km/h,222184,622184,ff,($2184) Requested speed setpoint for FSL function ,7EC,24,31,1,0,0,,222220,622220,4ff,DIDs supported in range [$2221 - $2240] ,7EC,31,31,1,0,0,,222221,622221,ff,($2221) Brake pedal states validity indicator is in the limp home data status,0:deactivated;1:activated ,7EC,31,31,1,0,0,,222223,622223,ff,($2223) Engine control request for cruise control abnormal deactivation,0:deactivated;1:activated ,7EC,31,31,1,0,0,,222224,622224,ff,($2224) Engine control request for cruise control system deactivation,0:deactivated;1:activated ,7EC,31,31,1,0,0,,222225,622225,ff,($2225) Vehicle speed received on the CAN network not available after a filtering time,0:deactivated;1:activated ,7EC,31,31,1,0,0,,222226,622226,ff,($2226) Displayed vehicle speed received on the CAN network not available after a filtering time,0:deactivated;1:activated ,7EC,31,31,1,0,0,,222227,622227,ff,($2227) Engine control request for speed limiter abnormal deactivation,0:deactivated;1:activated ,7EC,31,31,1,0,0,,222228,622228,ff,($2228) Engine control request for speed limiter system deactivation,0:deactivated;1:activated ,7EC,31,31,1,0,0,,22222B,62222B,ff,($222B) Automatic or manual parking brake detected,0:deactivated;1:activated ,7EC,31,31,1,0,0,,22222F,62222F,ff,($222F) Authorization to connect cruise control and speed limiter options,0:Disabled;1:Enabled ,7EC,31,31,1,0,0,,222230,622230,ff,($2230) ABS in regulation,0:No activated;1:Activated ,7EC,31,31,1,0,0,,222231,622231,ff,($2231) Authorized ASR torque request,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,222232,622232,ff,($2232) AYC in regulation,0:No activated;1:Activated ,7EC,31,31,1,0,0,,222233,622233,ff,($2233) Request to turn the brake lights on (1) during regenerative braking,0:Brake light off;1:Brake light on ,7EC,31,31,1,0,0,,222234,622234,ff,($2234) PTC accessories activation flag.,0:No activated;1:Activated ,7EC,31,31,1,0,0,,222235,622235,ff,($2235) Flag indicating that a MSR torque request is being applied,0:No request of MSR torque;1:Request of MSR torque ,7EC,31,31,1,0,0,,222236,622236,ff,($2236) Foot_up situation detected,0:No foot up detected;1:Foot up detected ,7EC,31,31,1,0,0,,222237,622237,ff,($2237) Flag to limit the regenerative braking demand in case MSR function is faulty,0:No limitation;1:Limitation activated ,7EC,29,31,1,0,0,,222238,622238,ff,($2238) Gear level position,0:transient;1:park;2:reverse;3:neutral;4:drive ,7EC,24,39,.00125,0,3,-,222239,622239,ff,($2239) Powertrain setpoint (%) requested by the driver via the accelerator pedal ,7EC,24,39,.5,32768,1,N,22223A,62223A,ff,($223A) Force demand at the wheels (output of the drivers' arbitration) ,7EC,24,39,.03125,32768,2,N.m,22223B,62223B,ff,($223B) Electrical motor (EM) torque setpoint before AJS Correction action ,7EC,24,39,.03125,12800,2,N.m,22223C,62223C,ff,($223C) ASR setpoint torque sent to torque arbitration ,7EC,24,39,.03125,32768,2,N.m,22223D,62223D,ff,($223D) Torque correction calculated by AJCOR function ,7EC,24,39,.03125,32768,2,N.m,22223E,62223E,ff,($223E) Final torque setpoint after AJMOD action ,7EC,24,39,.5,32768,1,N,22223F,62223F,ff,($223F) Force demand derived from accelerator pedal position ,7EC,24,31,1,0,0,,222240,622240,4ff,DIDs supported in range [$2241 - $2260] ,7EC,24,39,.03125,12800,2,N.m,222241,622241,ff,($2241) MSR torque setting sent to torque arbitration ,7EC,24,39,1,32768,0,rpm,222242,622242,ff,($2242) Filtered electric motor (EM) speed ,7EC,24,39,.03125,32768,2,N.m,222243,622243,ff,($2243) Final effective torque request to the electric motor (EM) ,7EC,28,31,1,0,0,-,222244,622244,ff,($2244) Lever position word ,7EC,24,39,.03125,32768,2,N.m,222245,622245,ff,($2245) Limited electrical motor (EM) effective torque setpoint ,7EC,24,39,.03125,32768,2,N.m,222246,622246,ff,($2246) Electrical motor (EM) maximum effective torque available ,7EC,24,39,.03125,32768,2,N.m,222247,622247,ff,($2247) Minimum effective torque that can be requested to the electrical motor (EM) ,7EC,24,39,.5,32768,1,N,222248,622248,ff,($2248) Force demand (at the wheels) when powertrain setpoint is equal to zero ,7EC,24,39,.5,32768,1,N,222249,622249,ff,($2249)Force demand(at the wheels)when PWT setpoint is 0,before saturation accounting for min tq demand available ,7EC,24,39,.00062561,0,3,V,22224A,62224A,ff,($224A) Voltage measure of main relay (VBR) ,7EC,30,31,1,0,0,,22224B,62224B,ff,($224B) Data used to validated a detection of braking,0:Nok;1:Ok;2:Failed 2 ,7EC,30,31,1,0,0,,22224C,62224C,ff,($224C) Gear lever position validity flag,0:Nok;1:Ok;2:Failed 2 ,7EC,30,31,1,0,0,,22224D,62224D,ff,($224D) METS Vehicle speed validity flag,0:Nok;1:Ok;2:Failed 2 Degraded mode (Vehicle speed from engine speed);3:Failed 3 Degraded mode (ESP ECU absent but not confirmed absent- vehicle speed frozen) ,7EC,30,31,1,0,0,,22224E,62224E,ff,($224E) Engine speed validity flag from ECC,0:Nok;1:Ok;2:Failed 2 ,7EC,24,31,1,0,0,,222500,622500,4ff,DIDs supported in range [$2501 - $2520] ,7EC,31,31,1,0,0,,22251F,62251F,ff,($251F) Vehicle speed threshold detected,0:0- Vehicle speed threshold not detected;1:1- Vehicle speed threshold detected ,7EC,24,31,1,0,0,,222860,622860,4ff,DIDs supported in range [$2861 - $2880] ,7EC,24,24,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.7,0:Temperature before turbine correcte;1:Temperature before turbine too high ,7EC,25,25,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.6,0:Pression turbo correcte;1:Turbocharger/Manifold overpressure ,7EC,26,26,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.5,0:Normal Engine Speed;1:Engine overspeed ,7EC,27,27,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.4,0:Stop and Start not ON;1:Stop and Start not OFF ,7EC,28,28,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.3,0:Not null vehicle speed;1:Unavailable vehicle speed ,7EC,29,29,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.2,0:Accelerator pedal Not presed;1:Pressed accelerator pedal ,7EC,30,30,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.1,0:Ignition in ON position;1:Ignition in OFF position ,7EC,31,31,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.0,0:MGB in neutral position OR other kind of transmission in park or in neutral position;1:BVA/BVR en position autre que N ou P ,7EC,32,32,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.15,0:-;1:reserved fot futur use ,7EC,33,33,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.14,0:-;1:reserved fot futur use ,7EC,34,34,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.13,0:-;1:reserved fot futur use ,7EC,35,35,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.12,0:-;1:reserved fot futur use ,7EC,36,36,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.11,0:brake pedal not pressed;1:brake pedal pressed ,7EC,37,37,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.10,0:Normal coolant temperature;1:Excessive coolant temperature ,7EC,38,38,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.9,0:Normal Manifold pressure;1:Manifold overpressure ,7EC,39,39,1,0,0,,222875,622875,ff,($2875) External controls denial status flag.8,0:pression rail correcte;1:Excessive rail pressure ,7EC,24,31,1,0,0,,222C00,622C00,4ff,DIDs supported in range [$2C01 - $2C20] ,7EC,29,31,1,1,0,,222C04,622C04,ff,($2C04) Current gear engaged ,7EC,24,31,1,0,0,,222C20,622C20,4ff,DIDs supported in range [$2C21 - $2C40] ,7EC,31,31,1,0,0,,222C2C,622C2C,ff,($2C2C) Kick down state,0:no kick down;1:kick down ,7EC,24,31,1,0,0,,223000,623000,4ff,DIDs supported in range [$3001 - $3020] ,7EC,30,31,1,0,0,,223001,623001,ff,($3001) Verlog state,1:Vehicle Not Locked;2:Vehicle Locked;3:Not used ,7EC,30,31,1,0,0,,223006,623006,ff,($3006) HV Network discharge request,0:Not used;1:Discharge not requested;2:Discharge requested ,7EC,31,31,1,0,0,,223007,623007,ff,($3007) HV Network discharge Feedback,0:Active Discharge Not In Progress;1:Active Discharge In Progress ,7EC,24,39,.5,0,1,V,223008,623008,ff,($3008) HV PEB voltage measure ,7EC,24,31,1,0,0,,223020,623020,4ff,DIDs supported in range [$3021 - $3040] ,7EC,31,31,1,0,0,,223022,623022,ff,($3022) DCDC activation request,0:DCDC Off;1:DCDC On ,7EC,24,31,.05,-240,2,V,223023,623023,ff,($3023) 14V voltage request ,7EC,24,31,.1,-40,1,V,223024,623024,ff,($3024) 14V DCDC voltage measure ,7EC,24,31,1,0,0,A,223025,623025,ff,($3025) 14V DCDC current measure ,7EC,24,31,.390625,0,1,%,223028,623028,ff,($3028) DCDC Load ,7EC,25,31,1,0,0,%,223029,623029,ff,($3029) DCDC temperature indicator ,7EC,30,31,1,0,0,,22302A,62302A,ff,($302A) General DCDC state,0:Standby;1:wake up but not activated;2:wake up and activated ,7EC,24,31,1,0,0,,223040,623040,4ff,DIDs supported in range [$3041 - $3060] ,7EC,24,39,.5,32768,1,A,223042,623042,ff,($3042) HV INV current measure ,7EC,24,39,.03125,32768,2,N.m,223043,623043,ff,($3043) Torque request ,7EC,24,39,10,32768,0,rpm,223045,623045,ff,($3045) Electrical Motor speed ,7EC,24,39,.02,0,2,%,223047,623047,ff,($3047) INV temperature indicator ,7EC,24,31,1,0,0,,223100,623100,4ff,DIDs supported in range [$3101 - $3120] ,7EC,29,31,1,0,0,,223101,623101,ff,($3101) Charger Bloc state,0:Unvailable Value;1:SlowCharge and Diag State;2:Quick Charge and Diag State;3:Nissan Quick Charge and Diag State;4:Diagnosis State;5:No State;6:Not used ,7EC,24,39,.5,0,1,V,223103,623103,ff,($3103) HV BCB voltage measure ,7EC,31,31,1,0,0,,223104,623104,ff,($3104) Mains Network detection,0:Domestic Network is not present;1:Domestic Network is present ,7EC,30,31,1,0,0,,223107,623107,ff,($3107) Charge current limitation,0:Unvailable value;1:10A Type;2:16A Type;3:Not used ,7EC,31,31,1,0,0,,223108,623108,ff,($3108) Earth plug connection,0:No ground plug connection Failure;1:Ground Plug Connection Failure ,7EC,25,31,1,0,0,°C,223109,623109,ff,($3109) BCB water temperature ,7EC,24,31,1,0,0,%,22310A,62310A,ff,($310A) BCB internal temperature ,7EC,30,31,1,0,0,,22310B,62310B,ff,($310B) interlock connection HV Bat, PEB,0:Unvailable Value;1:Open;2:Closed;3:Not used ,7EC,30,31,1,0,0,,22310D,62310D,ff,($310D) Interlock JB cover,0:Unvailable Value;1:Open;2:Closed;3:Not used ,7EC,30,31,1,0,0,,22310E,62310E,ff,($310E) Interlock JB Charge,0:Unvailable Value;1:Open;2:Closed;3:Not used ,7EC,24,31,1,0,0,A,223110,623110,ff,($3110) Charge current measure ,7EC,31,31,1,0,0,,223111,623111,ff,($3111) Quick charge start,0:Quick Charge Start Not Requested;1:Quick Charge Start Requested ,7EC,31,31,1,0,0,,223112,623112,ff,($3112) Quick charge stop,0:Quick Charge Stop Not Requested;1:Quick Charge Stop Requested ,7EC,24,31,1,0,0,A,223113,623113,ff,($3113) Quick charge current request ,7EC,24,31,1,0,0,,223200,623200,4ff,DIDs supported in range [$3201 - $3220] ,7EC,29,31,1,0,0,,223201,623201,ff,($3201) LBC mode request,0:Not Request;1:Slow Charge;2:Fast Charge;3:Normal Charge;4:Quick Drop;5:Not used;7:Unavailable value ,7EC,29,31,1,0,0,,223202,623202,ff,($3202) LBC fonctionning state,0:Not used;1:Slow Charge;2:Fast Charge;3:Init;4:Transitory;5:Normal;6:BHV_QuickDrop_mode;7:Unavailable value ,7EC,24,39,.5,0,1,V,223203,623203,ff,($3203) HV LBC voltage measure ,7EC,24,39,.0625,131070,2,A,223204,623204,ff,($3204) HV LBC current measure ,7EC,24,31,1,0,0,%,223206,623206,ff,($3206) State Of Health (SOH) HV battery ,7EC,30,31,1,0,0,,223208,623208,ff,($3208) Caution flag state,0:C_HVBatteryNoDefault;1:C_HVBatteryLevel1Default;2:C_HVBatteryLevel2Default;3:C_HVBatteryDriving30sDefault ,7EC,30,31,1,0,0,,223209,623209,ff,($3209) Failure flag state,0:Not used;1:No Default;2:Failure - Level2 Failure;3:Unavailable Value ,7EC,24,31,.5,0,1,Kw,22320A,62320A,ff,($320A) Available discharge power ,7EC,24,31,.5,0,1,Kw,22320B,62320B,ff,($320B) Available charge power ,7EC,24,39,.005,0,3,kwh,22320C,62320C,ff,($320C) Available discharge Energy ,7EC,31,31,1,0,0,,22320D,62320D,ff,($320D) Saving of the state of the interlocks.8,0:No default;1:Default present ,7EC,32,32,1,0,0,,22320D,62320D,ff,($320D) Saving of the state of the interlocks.7,0:No default;1:Default present ,7EC,33,33,1,0,0,,22320D,62320D,ff,($320D) Saving of the state of the interlocks.6,0:No default;1:Default present ,7EC,34,34,1,0,0,,22320D,62320D,ff,($320D) Saving of the state of the interlocks.5,0:No default;1:Default present ,7EC,35,35,1,0,0,,22320D,62320D,ff,($320D) Saving of the state of the interlocks.4,0:No default;1:Default present ,7EC,36,36,1,0,0,,22320D,62320D,ff,($320D) Saving of the state of the interlocks.3,0:No default;1:Default present ,7EC,37,37,1,0,0,,22320D,62320D,ff,($320D) Saving of the state of the interlocks.2,0:No default;1:Default present ,7EC,38,38,1,0,0,,22320D,62320D,ff,($320D) Saving of the state of the interlocks.1,0:No default;1:Default present ,7EC,39,39,1,0,0,,22320D,62320D,ff,($320D) Saving of the state of the interlocks.0,0:No default;1:Default present ,7EC,24,31,1,0,0,,223300,623300,4ff,DIDs supported in range [$3301 - $3320] ,7EC,24,31,.0625,0,2,V,223301,623301,ff,($3301) USM 14V Voltage measure (from CAN) ,7EC,31,31,1,0,0,,223302,623302,ff,($3302) Wake Up Type,0:Customer Wake Up;1:System Wake Up ,7EC,24,31,1,40,0,°C,223307,623307,ff,($3307) Heat water temperature ,7EC,30,31,1,0,0,,223308,623308,ff,($3308) HV relay connection state,0:HV_Open;1:HV_Intermediate;2:HV_Connected ,7EC,31,31,1,0,0,,223309,623309,ff,($3309) HV relay P1 command,0:Request for opening the main relay P1;1:Request for closing the main relay P1 ,7EC,31,31,1,0,0,,22330A,62330A,ff,($330A) HV relay P2 command,0:Request for opening the main relay P2;1:Request for closing the main relay P2 ,7EC,31,31,1,0,0,,22330B,62330B,ff,($330B) HV Battery relay A request,0:Request for opening the precharge relay A;1:Request for closing the precharge relay A ,7EC,30,31,1,0,0,,22330C,62330C,ff,($330C) HV Network Insulation level,0:No InsulationFailure;1:Insulation Failure Level1;2:Insulation Failure Level2;3:Unavailable Insulation Detection ,7EC,31,31,1,0,0,,22330D,62330D,ff,($330D) 14V Unballasting request,0:Not Unballasting request;1:Unballasting request ,7EC,31,31,1,0,0,,223310,623310,ff,($3310) 14V Batterie charge request,0:Charge not requested;1:Charge requested ,7EC,31,31,1,0,0,,223311,623311,ff,($3311) Heater switch state,0:Heater button deactivated;1:Heater button activated ,7EC,31,31,1,0,0,,223312,623312,ff,($3312) Hot switch state,0:Hot heater button deactivated;1:Hot heater button activated ,7EC,31,31,1,0,0,,223313,623313,ff,($3313) Cold switch state,0:Cold heater button deactivated;1:Cold heater button activated ,7EC,31,31,1,0,0,,223315,623315,ff,($3315) QuickDrop lock 1st loop state,0:at least one battery lock open;1:both two battery locks are closed ,7EC,31,31,1,0,0,,223316,623316,ff,($3316) QuickDrop lock 2nd loop state,0:at least one battery lock open;1:both two battery locks are closed ,7EC,30,31,1,0,0,,223317,623317,ff,($3317) QuickDrop lock global state,0:BatteryLock open;1:Only one BatteryLock open;2:BatteryLock closed ,7EC,24,31,1,0,0,%,223318,623318,ff,($3318) Driving pump Feedback ,7EC,24,31,1,0,0,%,223319,623319,ff,($3319) Charge pump Feedback ,7EC,24,31,1,0,0,%,22331A,62331A,ff,($331A) Heat pump Feedback ,7EC,31,31,1,0,0,,22331B,62331B,ff,($331B) Cooling valve request,0:Request for opening the water gate of the charge mode;1:Request for closing the water gate of the charge mode ,7EC,31,31,1,0,0,,22331D,62331D,ff,($331D) Pulser relay request,0:Request for opening the pulser relay;1:Request for closing the pulser relay ,7EC,31,31,1,0,0,,22331E,62331E,ff,($331E) Heater request,0:Request for opening the heater relay;1:Request for closing the heater relay ,7EC,24,31,1,0,0,,223320,623320,4ff,DIDs supported in range [$3321 - $3340] ,7EC,31,31,1,0,0,,223322,623322,ff,($3322) Heater led state,0:Request for switching off the heater led;1:Request for switching on the heater led ,7EC,31,31,1,0,0,,223325,623325,ff,($3325) Shiftlock request,0:Request for deactivate the shiftlock (P signal);1:Request for activate the shiftlock (P signal) ,7EC,25,31,1,0,0,%,223326,623326,ff,($3326) Driving pump Request ,7EC,25,31,1,0,0,%,223327,623327,ff,($3327) Charge pump Request ,7EC,25,31,1,0,0,%,223328,623328,ff,($3328) Heat pump Request ,7EC,31,31,1,0,0,,22332A,62332A,ff,($332A) Fan cabin status,0:Blower OK;1:Blower not OK ,7EC,29,31,1,0,0,,22332B,62332B,ff,($332B) ETS state,0:ETS_Standby;1:ETS_WakeUp;2:ETS_Comfort;3:ETS_Driving;4:ETS_QuickDrop ,7EC,29,31,1,0,0,,22332C,62332C,ff,($332C) Start refuse Reason,0:NO_REFUSE;1:REFUSE_PLUG;2:REFUSE_VERRLOGLOCKED;3:REFUSE_PRND_notN;4:REFUSE_PRND_notP;5:REFUSE_BATTERYLOCK;6:REFUSE_ENGINE ,7EC,31,31,1,0,0,,22332D,62332D,ff,($332D) 14V Network functionning Authorization,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,22332E,62332E,ff,($332E) PowerTrain functionning Authorization,0:Not Autorized;1:Autorized ,7EC,30,31,1,0,0,,22332F,62332F,ff,($332F) Thermal Comfort functionning Authorization,0:Not Authorised;1:PTC Authorised only;2:AC Authorised only;3:PTC and AC Authorised ,7EC,30,31,1,0,0,,223330,623330,ff,($3330) Charge Management functionning Authorization,0:Not Autorized;1:Autorized;2:Zero Ampere mode Activation request;3:Quick Charge Activation request ,7EC,30,31,1,0,0,,223331,623331,ff,($3331) PreHeating functionning Authorization,0:Not Authorised;1:PTC Authorised only;2:AC Authorised only;3:PTC and AC Authorised ,7EC,30,31,1,0,0,,223332,623332,ff,($3332) Electrical Machine functionning Authorization,0:Not used;1:Inverter Off;2:Inverter On ,7EC,30,31,1,0,0,,223335,623335,ff,($3335) 1st level insulation Alert MMI request,0:Unavailable ;1:No ET Alert Isolation Level 1 Requested ;2:ET Alert Isolation Level 1 Requested ;3:not used ,7EC,30,31,1,0,0,,223336,623336,ff,($3336) 2nd level insulation Alert MMI request,0:Unavailable ;1:No ET Alert Isolation Level 2 Requested ;2:ET Alert Isolation Level 2 Requested ;3:not used ,7EC,30,31,1,0,0,,223337,623337,ff,($3337) ETS Alert MMI request,0:Unavailable ;1:No ET Alert ETS Default Requested ;2:ET Alert ETS Default Requested ;3:not used ,7EC,30,31,1,0,0,,223338,623338,ff,($3338) Motor Alert MMI request,0:Unavailable value;1:No ET Alert Motor Default Requested;2:ET Alert Motor Default Requested;3:Not used ,7EC,30,31,1,0,0,,22333A,62333A,ff,($333A) Low Battery 14V MMI request,2:14VBattery Low Display Requested;1:No 14VBattery Low Display Requested;0:Unavailable value;3:Not used ,7EC,31,31,1,0,0,,22333D,62333D,ff,($333D) Brake assist pump state,0:Pump Off;1:Pump On ,7EC,24,31,1,0,0,,223340,623340,4ff,DIDs supported in range [$3341 - $3360] ,7EC,24,31,1,0,0,%,223348,623348,ff,($3348) PTC request ,7EC,24,55,1,0,0,-,223349,623349,1ff,($3349) Time Counter for the driving WEP in Low Speed ,7EC,24,55,1,0,0,-,22334A,62334A,1ff,($334A) Time Counter for the driving WEP in Middle Speed ,7EC,24,55,1,0,0,-,22334B,62334B,1ff,($334B) Time Counter for the driving WEP in High Speed ,7EC,24,55,1,0,0,-,22334D,62334D,1ff,($334D) Time Counter for the load WEP in Low Speed ,7EC,24,55,1,0,0,-,22334E,62334E,1ff,($334E) Time Counter for the load WEP in Middle Speed ,7EC,24,55,1,0,0,-,22334F,62334F,1ff,($334F) Time Counter for the load WEP in High Speed ,7EC,24,55,1,0,0,-,223351,623351,1ff,($3351) Time Counter for the Cooling fan in Low Speed ,7EC,24,55,1,0,0,-,223352,623352,1ff,($3352) Time Counter for the Cooling fan in Middle Speed ,7EC,24,55,1,0,0,-,223353,623353,1ff,($3353) Time Counter for the Cooling fan in High Speed ,7EC,24,55,1,0,0,-,223355,623355,1ff,($3355) Time Counter for the PEB temperature in driving mode below 40 degrees celcius ,7EC,24,55,1,0,0,-,223356,623356,1ff,($3356) Time Counter for the PEB temperature in driving mode between 40 degrees celcius and 50 degrees celcius ,7EC,24,55,1,0,0,-,223357,623357,1ff,($3357) Time Counter for the PEB temperature in driving mode between 50degrees celcius and 60degrees celcius ,7EC,24,55,1,0,0,-,223358,623358,1ff,($3358) Time Counter for the PEB temperature in driving mode between 60degrees celcius and 70degrees celcius ,7EC,24,55,1,0,0,-,223359,623359,1ff,($3359) Time Counter for the PEB temperature in driving mode above 70 degrees celcius ,7EC,24,55,1,0,0,-,22335A,62335A,1ff,($335A) Time Counter for the PEB temperature in load mode below 40 degrees celcius ,7EC,24,55,1,0,0,-,22335B,62335B,1ff,($335B) Time Counter for the PEB temperature in load mode between 40 degrees celcius and 50 degrees celcius ,7EC,24,55,1,0,0,-,22335C,62335C,1ff,($335C) Time Counter for the PEB temperature in load mode between 50 degrees celcius and 60 degrees celcius ,7EC,24,55,1,0,0,-,22335D,62335D,1ff,($335D) Time Counter for the PEB temperature in load mode between 60 degrees celcius and 70 degrees celcius ,7EC,24,55,1,0,0,-,22335E,62335E,1ff,($335E) Time Counter for the PEB temperature in load mode above 70 degrees celcius ,7EC,24,55,1,0,0,-,22335F,62335F,1ff,($335F) Time Counter for the BCB temperature in driving mode below 40 degrees celcius ,7EC,24,31,1,0,0,,223360,623360,4ff,DIDs supported in range [$3361 - $3380] ,7EC,24,55,1,0,0,-,223361,623361,1ff,($3361) Time Counter for the BCB temperature in driving mode between 40 degrees celcius and 50 degrees celcius ,7EC,24,55,1,0,0,-,223362,623362,1ff,($3362) Time Counter for the BCB temperature in driving mode between 50 degrees celcius and 60 degrees celcius ,7EC,24,55,1,0,0,-,223363,623363,1ff,($3363) Time Counter for the BCB temperature in driving mode between 60 degrees celcius and 70 degrees celcius ,7EC,24,55,1,0,0,-,223364,623364,1ff,($3364) Time Counter for the BCB temperature in driving mode above 70 degrees celcius ,7EC,24,55,1,0,0,-,223365,623365,1ff,($3365) Time Counter for the BCB temperature in load mode below 40 degrees celcius ,7EC,24,55,1,0,0,-,223366,623366,1ff,($3366) Time Counter for the BCB temperature in load mode between 40 degrees celcius and 50 degrees celcius ,7EC,24,55,1,0,0,-,223367,623367,1ff,($3367) Time Counter for the BCB temperature in load mode between 50 degrees celcius and 60 degrees celcius ,7EC,24,55,1,0,0,-,223368,623368,1ff,($3368) Time Counter for the BCB temperature in load mode between 60 degrees celcius and 70 degrees celcius ,7EC,24,55,1,0,0,-,223369,623369,1ff,($3369) Time Counter for the BCB temperature in load mode above 70 degrees celcius ,7EC,24,31,1,0,0,%,22336A,62336A,ff,($336A) Maximale value of PEB temperature ,7EC,24,31,1,0,0,%,22336B,62336B,ff,($336B) Maximale value of BCB temperature ,7EC,24,39,1,0,0,-,22336C,62336C,ff,($336C) Quick Drop operating counter ,7EC,24,47,1,0,0,s,22336D,62336D,ff,($336D) Data store memory use to store the activation time of the pump ,7EC,24,39,.01,0,2,km/h,22336E,62336E,ff,($336E) Value of the vehicle speed before a safety level 2 hotreset ,7EC,24,39,1,0,0,-,22336F,62336F,ff,($336F) Value of the safety monitoring status flags before the hotreset ,7EC,24,39,1,32768,0,rpm,223370,623370,ff,($3370) Value of the electric motor speed before a safety level 2 hotreset ,7EC,24,31,5,0,0,mbar,223371,623371,ff,($3371) Pressure value max in the booster during failure confirmation time ,7EC,24,31,5,0,0,mbar,223372,623372,ff,($3372) Current pressure in the mastervac ,7EC,30,31,1,0,0,,223373,623373,ff,($3373)The most critical state of the brake assist system between detected and confirmed states of a mastervac failure,0:unavailable;1:Vacuum pressure below 'Safety Threshold';2:Vacuum pressure between 'Safety Threshold' and 'Pump On Threshold' ;3:Vacuum pressure between 'Pump On Threshold' and 'Pump Off Threshold' ,7EC,30,31,1,0,0,,223374,623374,ff,($3374) The most critical state of the Brake assist system when a failure has been confirmed,0:unavailable;1:Vacuum pressure below 'Safety Threshold';2:Vacuum pressure between 'Safety Threshold' and 'Pump On Threshold' ;3:Vacuum pressure between 'Pump On Threshold' and 'Pump Off Threshold' ,7EC,24,31,1,0,0,,223375,623375,ff,($3375) Memorized reason of Starting Refuse for Start Refuse History elaboration.4,0:C_Driving_No_Refuse;1:C_Driving_Refuse_Plug;2:C_Driving_Refuse_Verrloglocked;3:C_Driving_Refuse_PRND_notN;4:C_Driving_Refuse_PRND_notP;5:C_Driving_Refuse_Batterylock;6:C_Driving_Refuse_Engine ,7EC,32,39,1,0,0,,223375,623375,ff,($3375) Memorized reason of Starting Refuse for Start Refuse History elaboration.3,0:C_Driving_No_Refuse;1:C_Driving_Refuse_Plug;2:C_Driving_Refuse_Verrloglocked;3:C_Driving_Refuse_PRND_notN;4:C_Driving_Refuse_PRND_notP;5:C_Driving_Refuse_Batterylock;6:C_Driving_Refuse_Engine ,7EC,40,47,1,0,0,,223375,623375,ff,($3375) Memorized reason of Starting Refuse for Start Refuse History elaboration.2,0:C_Driving_No_Refuse;1:C_Driving_Refuse_Plug;2:C_Driving_Refuse_Verrloglocked;3:C_Driving_Refuse_PRND_notN;4:C_Driving_Refuse_PRND_notP;5:C_Driving_Refuse_Batterylock;6:C_Driving_Refuse_Engine ,7EC,48,55,1,0,0,,223375,623375,ff,($3375) Memorized reason of Starting Refuse for Start Refuse History elaboration.1,0:C_Driving_No_Refuse;1:C_Driving_Refuse_Plug;2:C_Driving_Refuse_Verrloglocked;3:C_Driving_Refuse_PRND_notN;4:C_Driving_Refuse_PRND_notP;5:C_Driving_Refuse_Batterylock;6:C_Driving_Refuse_Engine ,7EC,56,63,1,0,0,,223375,623375,ff,($3375) Memorized reason of Starting Refuse for Start Refuse History elaboration.0,0:C_Driving_No_Refuse;1:C_Driving_Refuse_Plug;2:C_Driving_Refuse_Verrloglocked;3:C_Driving_Refuse_PRND_notN;4:C_Driving_Refuse_PRND_notP;5:C_Driving_Refuse_Batterylock;6:C_Driving_Refuse_Engine ,7EC,24,39,.1,0,1,bar,223376,623376,ff,($3376) Measure of the freon pressure ,7EC,30,31,1,0,0,,223377,623377,ff,($3377) AC compressor Interlock State,0:Unvailable Value;1:Open;2:Closed;3:Sensor Unavailable ,7EC,30,31,1,0,0,,223378,623378,ff,($3378) Interlock HV battery,0:Not used;1:Open;2:Closed;3:Unvailable Value ,7EC,30,31,1,0,0,,223379,623379,ff,($3379) Interlock of PTCs,0:Unvailable Value;1:Open;2:Closed;3:Not used ,7EC,24,24,1,0,0,,22337D,62337D,ff,($337D) Context not safety datas microcontroller memorised carrier 1.7-Internal diag Stop Light Relay,0:No default;1:Default present ,7EC,25,25,1,0,0,,22337D,62337D,ff,($337D) Context not safety datas microcontroller memorised carrier 1.6-Internal diag Water Cooling Valve,0:No default;1:Default present ,7EC,26,26,1,0,0,,22337D,62337D,ff,($337D) Context not safety datas microcontroller memorised carrier 1.5-Internal diag Shift Lock,0:No default;1:Default present ,7EC,27,27,1,0,0,,22337D,62337D,ff,($337D) Context not safety datas microcontroller memorised carrier 1.4-Internal diag RELAY N,0:No default;1:Default present ,7EC,28,28,1,0,0,,22337D,62337D,ff,($337D) Context not safety datas microcontroller memorised carrier 1.3-Internal diag RELAY P,0:No default;1:Default present ,7EC,29,29,1,0,0,,22337D,62337D,ff,($337D) Context not safety datas microcontroller memorised carrier 1.2-Internal diag RELAY A,0:No default;1:Default present ,7EC,30,30,1,0,0,,22337D,62337D,ff,($337D) Context not safety datas microcontroller memorised carrier 1.1 ,7EC,31,31,1,0,0,,22337D,62337D,ff,($337D) Context not safety datas microcontroller memorised carrier 1.0-diagnostic of NVMY,0:No default;1:Default present ,7EC,32,32,1,0,0,,22337E,62337E,ff,($337E) Context not safety data microcontroller memorised Carrier 2.7 ,7EC,33,33,1,0,0,,22337E,62337E,ff,($337E) Context not safety data microcontroller memorised Carrier 2.6-ERR_SYM_SPI-4,0:No default;1:Default present ,7EC,34,34,1,0,0,,22337E,62337E,ff,($337E) Context not safety data microcontroller memorised Carrier 2.5-ERR_SYM_SPI-3,0:No default;1:Default present ,7EC,35,35,1,0,0,,22337E,62337E,ff,($337E) Context not safety data microcontroller memorised Carrier 2.4-ERR_SYM_SPI-2,0:No default;1:Default present ,7EC,36,36,1,0,0,,22337E,62337E,ff,($337E) Context not safety data microcontroller memorised Carrier 2.3-ERR_SYM_SPI-1,0:No default;1:Default present ,7EC,37,37,1,0,0,,22337E,62337E,ff,($337E) Context not safety data microcontroller memorised Carrier 2.2-ERR_SYM_SPI-0,0:No default;1:Default present ,7EC,38,38,1,0,0,,22337E,62337E,ff,($337E) Context not safety data microcontroller memorised Carrier 2.1-ERR_SYM_RAM,0:No default;1:Default present ,7EC,39,39,1,0,0,,22337E,62337E,ff,($337E) Context not safety data microcontroller memorised Carrier 2.0-ERR_SYM_ROM,0:No default;1:Default present ,7EC,24,31,1,0,0,,22337F,62337F,ff,($337F) Context safety datas memorised in main microcontroller,0:No error;1:Header-byte error detected on MC;2:Checksum error detected on MC;3:Parity error detected on MC;4:Wrong configuration data sent by MU;5:Error in switch-off path check;6:Error in compatibility check on MC;7:Error in Standard ROM check;8:Error in Standard RAM check;9:Error in Level 2 ROM check;10:Error in Level 2 RAM check;11:FS-IST MU sent wrong question;12:FS-IST MU does not react to deliberately wrong answer;13:FS-IST MU does not decrease its FS-IST anti-bounce counter;14:Error in check of MU readiness;15:not used;16:PFM MU does not toggle PFM bit 0 in time;17:PFM MU does not toggle PFM bit 1 in time;18:PFM MU does not toggle PFM bit 2 in time;19:PFM MU does not toggle PFM bit 3 in time;20:PFM MU does not toggle PFM bit 4 in time;21:PFM MU does not toggle PFM bit 5 in time;22:PFM MU does not toggle PFM bit 6 in time;23:Invalid state transition or undefined state on MC;24:PFM MU does not react to deliberately wrong PFM bit 0;25:PFM MU does not react to deliberately wrong PFM bit 1;26:PFM MU does not react to deliberately wrong PFM bit 2;27:PFM MU does not react to deliberately wrong PFM bit 3;28:PFM MU does not react to deliberately wrong PFM bit 4;29:PFM MU does not react to deliberately wrong PFM bit 5;30:PFM MU does not react to deliberately wrong PFM bit 6;31:Not used ,7EC,24,31,1,0,0,,223380,623380,4ff,DIDs supported in range [$3381 - $33A0] ,7EC,24,31,1,0,0,-,223381,623381,ff,($3381) Context safty datas memorised in Safety microcontroller ,7EC,24,39,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-5 ,7EC,40,55,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-4 ,7EC,56,71,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-3 ,7EC,72,87,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-2 ,7EC,88,88,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.15 Under_voltage_HV,0:No default;1:Default present ,7EC,89,89,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.14 Over_voltage_HV,0:No default;1:Default present ,7EC,90,90,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.13 Current_Restriction,0:No default;1:Default present ,7EC,91,91,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.12 Voltage_Restriction,0:No default;1:Default present ,7EC,92,92,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.11 Internal_communication_error,0:No default;1:Default present ,7EC,93,93,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.10 Over_heat_warning,0:No default;1:Default present ,7EC,94,94,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.09 Low_Voltage_error,0:No default;1:Default present ,7EC,95,95,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.08 Short_Circuit,0:No default;1:Default present ,7EC,96,96,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.07 Open_contact,0:No default;1:Default present ,7EC,97,97,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.06 Current_sensor_Error,0:No default;1:Default present ,7EC,98,98,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.05 Over_load,0:No default;1:Default present ,7EC,99,99,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.04 Over_heat,0:No default;1:Default present ,7EC,100,100,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.03 Abnormal_Run_up,0:No default;1:Default present ,7EC,101,101,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.02 High_Voltage_error,0:No default;1:Default present ,7EC,102,103,1,0,0,,223382,623382,ff,($3382) AC compressor Error Bits Recordings.-1.00 CI_Error_Status,0:No default;1:Degraded mode;2:Compressor shut-off safety reasons;3:Compressor has to be changed ,7EC,26,31,1,0,0,,223383,623383,ff,($3383) Reasons of cut off PTCs.-5 ,7EC,32,37,1,0,0,,223383,623383,ff,($3383) Reasons of cut off PTCs.-4 ,7EC,38,43,1,0,0,,223383,623383,ff,($3383) Reasons of cut off PTCs.-3 ,7EC,44,49,1,0,0,,223383,623383,ff,($3383) Reasons of cut off PTCs.-2 ,7EC,50,55,1,0,0,,223383,623383,ff,($3383) Reasons of cut off PTCs.-1 ,7EC,51,51,1,0,0,,223383,623383,ff,($3383) Reasons of cut off PTCs.-1.4 Error PTC stage 3,0:No default;1:Default present ,7EC,52,52,1,0,0,,223383,623383,ff,($3383) Reasons of cut off PTCs.-1.3 Error PTC stage 2,0:No default;1:Default present ,7EC,53,53,1,0,0,,223383,623383,ff,($3383) Reasons of cut off PTCs.-1.2 Error PTC stage 1,0:No default;1:Default present ,7EC,54,54,1,0,0,,223383,623383,ff,($3383) Reasons of cut off PTCs.-1.1 Under Voltage,0:No default;1:Default present ,7EC,55,55,1,0,0,,223383,623383,ff,($3383) Reasons of cut off PTCs.-1.0 Over temperature,0:No default;1:Default present ,7EC,24,31,1,0,0,-,223384,623384,ff,($3384) Mission counter without driver door transition ,7EC,24,47,1,0,0,s,223386,623386,ff,($3386) Life time of the pump read from the VPM memory via LIN ,7EC,28,31,1,0,0,,223387,623387,ff,($3387) Brake pedal state during diagnostic confirmation,0:Not used;1:not pressed;2:pressed;3:Not Used;4:confirmed pressed ,7EC,31,31,1,0,0,,223388,623388,ff,($3388) Bcb Activation failed Flag : charge or pre_heating not authorized any more,0:no failure ;1:failure ,7EC,31,31,1,0,0,,22338A,62338A,ff,($338A) Customer WakeUp flag after internal processing,0:No Customer WakeUp;1:Customer WakeUp ,7EC,31,31,1,0,0,,22338B,62338B,ff,($338B) Event type technical WakeUp flag after internal processing,0:No Event Technical WakeUp;1:Event technical WakeUp ,7EC,31,31,1,0,0,,22338C,62338C,ff,($338C) ComfortMode failed and ended after confirmed non HV relays connexion,0:Confort mode ok ;1:Confort mode failed ,7EC,31,31,1,0,0,,22338D,62338D,ff,($338D) Comfort mode disabled,0:Allowed;1:Not Allowed ,7EC,31,31,1,0,0,,22338E,62338E,ff,($338E) Indicates the status of the driver door of the vehicle,0:Closed;1:Opened ,7EC,31,31,1,0,0,,22338F,62338F,ff,($338F) Driving Restart flag (after EVC reset),0:desactivated;1:activated ,7EC,31,31,1,0,0,,223390,623390,ff,($3390) EVC reset flag for HV connexion after EVC reset management,0:desactivated;1:activated ,7EC,31,31,1,0,0,,223391,623391,ff,($3391) Gaz Heater not allowed flag,0:Allowed;1:Not Allowed ,7EC,31,31,1,0,0,,223392,623392,ff,($3392) 400 V Battery Cooling Needed flag,0:No request;1:Request ,7EC,31,31,1,0,0,,223393,623393,ff,($3393) HV Network Power cut request,0:no request;1:power cut request ,7EC,31,31,1,0,0,,223394,623394,ff,($3394) Flag for LBC Actual status(= to 1 when LBC status is Driving ). AfterK_BHVStateConfirmed_status processing,0:Not ready for driving;1:Ready for driving ,7EC,31,31,1,0,0,,223395,623395,ff,($3395) Internal condition for Zero Ampere mode Autorisation,0:Allowed;1:Not Allowed ,7EC,31,31,1,0,0,,223396,623396,ff,($3396) PEB State failure defect present : PEB is Absent or PEB Status is not power on . PEB status is in limp mode,0:PEB Power ON;1:PEB Not Power ON ,7EC,31,31,1,0,0,,223397,623397,ff,($3397) Gaz Heater Activation Authorisation flag,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,223398,623398,ff,($3398) HV Battery cooling Authorisation flag,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,223399,623399,ff,($3399) Quick Drop flag memorisation (EEPROM memorisation),0:Not Memorized;1:Memorized ,7EC,31,31,1,0,0,,22339A,62339A,ff,($339A) No Major failure,0:No failure;1:failure ,7EC,31,31,1,0,0,,22339B,62339B,ff,($339B) Front passenger door state from CANV,0:Closed;1:Opened ,7EC,31,31,1,0,0,,22339C,62339C,ff,($339C) PEB status after internal processing,0:NOK;1:OK for driving ,7EC,31,31,1,0,0,,22339D,62339D,ff,($339D) Charging Plug detected as present by the Charger.processed,0:No charging plug;1:Charging plug detected ,7EC,31,31,1,0,0,,22339E,62339E,ff,($339E) Quick drop condition is active,0:No Active;1:Active ,7EC,31,31,1,0,0,,22339F,62339F,ff,($339F) Soc authorisation for pre_heating authorisation during charge,0:Not Autorized;1:Autorized ,7EC,24,31,1,0,0,,2233A0,6233A0,4ff,DIDs supported in range [$33A1 - $33C0] ,7EC,31,31,1,0,0,,2233A1,6233A1,ff,($33A1) BCM absent and vehicle stopped flag : driving interruptiion,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,2233A2,6233A2,ff,($33A2) Button AC from the cluster (X61) or AC request from CAREG (L38),0:no AC requested ;1:AC requested ,7EC,31,31,1,0,0,,2233A3,6233A3,ff,($33A3) For L38 vehicule, this is the demand from the CAREG to start a PreHeating.,0:no PreHeat demand from CAREG ;1:PreHeat demand from CAREG ,7EC,24,31,2,0,0,%,2233A4,6233A4,ff,($33A4) Measure of the speed of the cabin blower ,7EC,29,31,1,0,0,,2233A6,6233A6,ff,($33A6) AC compressor DTC Rootcause,0:No fault;1:CPU Self Error;2:Internal Communication Error;3:Short Circuit;4:Open Contact;5:Current sensor error;6:Abnormal Run-up;7:High-Voltage Error ,7EC,24,31,25,0,0,W,2233A7,6233A7,ff,($33A7) AC compressor Power Consumption Estimation ,7EC,24,31,1,0,0,,2233A8,6233A8,ff,($33A8) Request of FAN activation from the thermal comfort,0:no FAN requested;1:(61- low- 38- very low) speed fan request;2:61- not used- 38- low speed fan request;3:high speed fan request ,7EC,31,31,1,0,0,,2233AA,6233AA,ff,($33AA) Minimum gasoline Level indicator in the tank supplying the heater,0:minimum level not reached ;1:minimum level reached ,7EC,29,31,1,0,0,,2233AB,6233AB,ff,($33AB) State of PreHeating to display,0:PreHeating OFF;1:PreHeating requested for H1;2:PreHeating requested for H2;3:PreHeating Not Available;4:PreHeating in progress;5:PreHeating Finished OK;6:PreHeating Finished not OK;7:not used ,7EC,30,31,1,0,0,,2233AC,6233AC,ff,($33AC) Status of pre_heating sent to Manage ETS,0:pre-heating available;1:pre-heating running;2:pre-heating refused;3:pre-heating waiting ,7EC,26,26,1,0,0,,2233AD,6233AD,ff,($33AD) Computation of PTC defaults.5,0:No default;1:Default present ,7EC,27,27,1,0,0,,2233AD,6233AD,ff,($33AD) Computation of PTC defaults.4,0:No default;1:Default present ,7EC,28,28,1,0,0,,2233AD,6233AD,ff,($33AD) Computation of PTC defaults.3,0:No default;1:Default present ,7EC,29,29,1,0,0,,2233AD,6233AD,ff,($33AD) Computation of PTC defaults.2,0:No default;1:Default present ,7EC,30,30,1,0,0,,2233AD,6233AD,ff,($33AD) Computation of PTC defaults.1,0:No default;1:Default present ,7EC,31,31,1,0,0,,2233AD,6233AD,ff,($33AD) Computation of PTC defaults.0,0:No default;1:Default present ,7EC,24,39,1,0,0,rpm,2233AE,6233AE,ff,($33AE) AC compressor RPM Command ,7EC,24,39,.1,2730,1,°C,2233AF,6233AF,ff,($33AF)temp used to prevent the evaporator from freezing within the heating venting and air conditionner system(HVAC) ,7EC,24,39,.1,2730,1,°C,2233B0,6233B0,ff,($33B0) evaporator temperature setpoint for compressor control ,7EC,24,31,1,40,0,°C,2233B1,6233B1,ff,($33B1) CAN signal for external temperature of the vehicle. ,7EC,24,31,1,40,0,°C,2233B3,6233B3,ff,($33B3) water temperature setpoint for PTC control ,7EC,31,31,1,0,0,,2233B5,6233B5,ff,($33B5) HV Relays Connection Autorisation synthesis flag,0:Not Autorized;1:Autorized ,7EC,30,31,1,0,0,,2233B6,6233B6,ff,($33B6) Charge Management status for ETS,0:NoActiveMode;1:SlowCharge;2:ZAMode;3:QuickCharge ,7EC,30,31,1,0,0,,2233B7,6233B7,ff,($33B7) Technical WakeUp type,0:not used;1:Periodic technical WakeUo;2:Event technical WakeUp;3:Not used ,7EC,30,31,1,0,0,,2233B8,6233B8,ff,($33B8) Confirmation of the state of the battery from ManageHVBattery,0:NoState_Confirmed;1:SlowCharge_Confirmed;2:QuickCharge_Confirmed;3:Driving_Confirmed ,7EC,30,31,1,0,0,,2233B9,6233B9,ff,($33B9) Start_up Authorisation _ Anti_kick off management,0:CrankingNotAllowed Start up not allowed by anti-kick off;1:CrankingAllowed Start_up allowed by anti-kick off;2:Not used;3:Unavailable value ,7EC,30,31,1,0,0,,2233BA,6233BA,ff,($33BA) Indicates if the external power supply is present and the type of power supply,0:NoExtEnergyAvail;1:SlowExtEnergyAvail;2:QuickExtEnergyAvail ,7EC,31,31,1,0,0,,2233BB,6233BB,ff,($33BB) Signal coming from Manage HVBattery indicating if the battery need to be charged or to be cooled,0:NoHVBChargeNeeded;1:HVBChargeRequest ,7EC,30,31,1,0,0,,2233BC,6233BC,ff,($33BC) HV connection request from LBC,0:Not used;1:Closing of Power Contacts Allowed;2:Closing of Power Contacts Not Allowed;3:Unavailable Value ,7EC,30,31,1,0,0,,2233BD,6233BD,ff,($33BD) Plug status validity flag,0:Nok;1:Ok;2:failed 2 ,7EC,30,31,1,0,0,,2233BE,6233BE,ff,($33BE) LBC sleep mode request,0:Normal Sleep;1:14 Supervision;2:Quick Drop;3:Unavailable value ,7EC,29,31,1,0,0,,2233BF,6233BF,ff,($33BF) HV connection request,0:Disfunctional disconnexion request;1:Nominal disconnexion request;2:Dysfunctional connexion request;3:Nominal connexion request;4:Not Used;5:Emergency disconnexion request ,7EC,24,31,1,0,0,,2233C0,6233C0,4ff,DIDs supported in range [$33C1 - $33E0] ,7EC,30,31,1,0,0,,2233C1,6233C1,ff,($33C1) K_StartingMode_BCM_req input validity state,0:BCM absent or confirmed unavailable value for K_StartingMode_BCM_req;1:K_StartingMode_BCM_req available and valid;2:Invalid value for K_StartingMode_BCM_req ,7EC,29,31,1,0,0,,2233C2,6233C2,ff,($33C2) IVLD of the signal Pct_UserSOC_bhv_est,0:invalid value NOK 0;1:valid value OK 1;2:invalid value FAIL 2;3:invalid value FAIL 3;4:invalid value FAIL 4 ,7EC,29,31,1,0,0,,2233C3,6233C3,ff,($33C3) PEB status from CAN ETS,0:Starting up or power off;2:stand-by;4:power on;7:invalid ,7EC,30,31,1,0,0,,2233C4,6233C4,ff,($33C4) Preheating requested by the vehicle,0:no preheating requested;1:preheating requested ,7EC,30,31,1,0,0,,2233C5,6233C5,ff,($33C5) ETS System Sleeping authorisation synthesis,0:Not used;1:Refuse to sleep;2:Ready to sleep;3:not used ,7EC,30,31,1,0,0,,2233C6,6233C6,ff,($33C6) Electrical Motor state requested bu user and build by the BCM, signal coming from CAN, not checked,0:Motor stop requested;1:Unavailable;2:+APC requested;3:Starting requested ,7EC,29,31,1,0,0,,2233C7,6233C7,ff,($33C7) Driver requests synthesis,0:Sleep request;1:Wake up request;2:Transient state before sleep;3:Life on Board request (HV network request);4:Driving request ,7EC,30,31,1,0,0,,2233C8,6233C8,ff,($33C8) ETS Organs on CAN_E Wake up or Sleep request,0:GotoSleep;1:Not used;2:not used;3:WakeUp ,7EC,31,31,1,0,0,,2233C9,6233C9,ff,($33C9) High level failure in the BCB,0:No failure;1:High level failure in the BCB ,7EC,31,31,1,0,0,,2233CA,6233CA,ff,($33CA) Low level failure in the BCB.,0:No failure;1:Low level failure in the BCB ,7EC,31,31,1,0,0,,2233CB,6233CB,ff,($33CB) This flag from Charge Management indicates that a charge is finished.,0:Charge not finished;1:Charge finished ,7EC,31,31,1,0,0,,2233CC,6233CC,ff,($33CC) Request for the Gasoline heater relay,0:no request ;1:request ,7EC,31,31,1,0,0,,2233CD,6233CD,ff,($33CD) Request of Hvac power Relay,0:no request ;1:request ,7EC,31,31,1,0,0,,2233CE,6233CE,ff,($33CE) Software failure detected in the quick charge stateflow,0:No failure;1:Failure detected ,7EC,31,31,1,0,0,,2233CF,6233CF,ff,($33CF) Specific failure during the quick charge,0:No failure;1:Failure detected ,7EC,31,31,1,0,0,,2233D0,6233D0,ff,($33D0) This signal indicates that a quick drop is finished,0:No quick-drop has occured;1:A quick-drop has occured ,7EC,31,31,1,0,0,,2233D1,6233D1,ff,($33D1) Specific failure during slow charge or zero ampere mode,0:No failure;1:Failure detected ,7EC,31,31,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.9,0:spot not present;1:spot present ,7EC,39,39,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.8,0:spot not present;1:spot present ,7EC,47,47,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.7,0:spot not present;1:spot present ,7EC,55,55,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.6,0:spot not present;1:spot present ,7EC,63,63,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.5,0:spot not present;1:spot present ,7EC,71,71,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.4,0:spot not present;1:spot present ,7EC,79,79,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.3,0:spot not present;1:spot present ,7EC,87,87,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.2,0:spot not present;1:spot present ,7EC,95,95,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.1,0:spot not present;1:spot present ,7EC,103,103,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.0,0:spot not present;1:spot present ,7EC,24,47,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.9 ,7EC,48,71,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.8 ,7EC,72,95,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.7 ,7EC,96,119,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.6 ,7EC,120,143,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.5 ,7EC,144,167,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.4 ,7EC,168,191,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.3 ,7EC,192,215,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.2 ,7EC,216,239,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.1 ,7EC,240,263,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.0 ,7EC,24,31,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.9,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,7EC,32,39,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.8,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,7EC,40,47,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.7,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,7EC,48,55,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.6,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,7EC,56,63,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.5,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,7EC,64,71,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.4,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,7EC,72,79,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.3,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,7EC,80,87,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.2,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,7EC,88,95,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.1,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,7EC,96,103,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.0,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,7EC,24,31,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.9,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,7EC,32,39,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.8,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,7EC,40,47,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.7,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,7EC,48,55,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.6,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,7EC,56,63,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.5,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,7EC,64,71,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.4,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,7EC,72,79,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.3,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,7EC,80,87,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.2,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,7EC,88,95,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.1,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,7EC,96,103,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.0,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,7EC,24,39,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.9 ,7EC,40,55,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.8 ,7EC,56,71,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.7 ,7EC,72,87,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.6 ,7EC,88,103,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.5 ,7EC,104,119,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.4 ,7EC,120,135,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.3 ,7EC,136,151,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.2 ,7EC,152,167,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.1 ,7EC,168,183,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.0 ,7EC,24,31,1,40,0,°C,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.9 ,7EC,32,39,1,40,0,°C,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.8 ,7EC,40,47,1,40,0,°C,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.7 ,7EC,48,55,1,40,0,°C,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.6 ,7EC,56,63,1,40,0,°C,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.5 ,7EC,64,71,1,40,0,°C,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.4 ,7EC,72,79,1,40,0,°C,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.3 ,7EC,80,87,1,40,0,°C,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.2 ,7EC,88,95,1,40,0,°C,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.1 ,7EC,96,103,1,40,0,°C,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.0 ,7EC,24,39,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.9 ,7EC,40,55,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.8 ,7EC,56,71,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.7 ,7EC,72,87,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.6 ,7EC,88,103,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.5 ,7EC,104,119,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.4 ,7EC,120,135,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.3 ,7EC,136,151,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.2 ,7EC,152,167,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.1 ,7EC,168,183,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.0 ,7EC,24,31,1,0,0,kWh,2233DB,6233DB,ff,($33DB) Memorized value of domestic energy consumption ,7EC,24,47,.001,0,3,kwh,2233DC,6233DC,ff,($33DC) This variable allows to memorize the energy consumed ,7EC,24,47,.001,0,3,kwh,2233DD,6233DD,ff,($33DD) This variable allows to memorize the reseted energy consumed ,7EC,24,55,.0001,0,3,km,2233DE,6233DE,1ff,($33DE) This variable allows to memorize the reseted distance ,7EC,24,31,1,0,0,,2233E0,6233E0,4ff,DIDs supported in range [$33E0 - $3400] ,7EC,29,31,1,0,0,,2233E2,6233E2,ff,($33E2) Flow that requests the BCB to make available certain functionalities,0:init;1:slow charge or ZA or Diag;2:Quick charge or Diag;3:Nissan quick charge or Diag;4:Diag;5:Power off;6:Not used;7:unavailable ,7EC,28,31,1,0,0,,2233E3,6233E3,ff,($33E3) Status of Manage HV Battery Master Stateflow,0:NoRequest;1:BHV_SlowCharge requested;2:BHV_QuickCharge requested;3:BHV_Normal requested;4:BHV_QuickDrop requested;5:BHV_SlowCharge confirmed;6:BHV_Normal confirmed;7:BHV_QuickCharge confirmed;8:BHV_QuickDrop_Confirmed ,7EC,30,31,1,0,0,,2233E4,6233E4,ff,($33E4) Cooling Management status answering to cooling request from Manage ETS,0:Cooling ON;1:Cooling ON Downgraded;2:Cooling OFF;3:Cooling OFF Failure ,7EC,28,31,1,0,0,,2233E5,6233E5,ff,($33E5) Charge WEP Feedback Diag,0:No defined value;1:PWM between 0% and 2%;2:Warning pump;3:Pump to zero RPM;4:Pump can not read Input;5:Normal operation (750 - 4700 rpm);6:Over or Undervoltage;7:Fault Pump;8:PWM between 92 and 94;9:PWM between 96 and 100 ,7EC,28,31,1,0,0,,2233E6,6233E6,ff,($33E6) Driving WEP Feedback Diag,0:No defined value;1:PWM between 0% and 2%;2:Warning pump;3:Pump to zero RPM;4:Pump can not read Input;5:Normal operation (750 - 4700 rpm);6:Over or Undervoltage;7:Fault Pump;8:PWM between 92 and 94;9:PWM between 96 and 100 ,7EC,24,39,1,0,0,,2233E7,6233E7,ff,($33E7) Code Failure of All the sensors of temperature ,7EC,30,31,1,0,0,,2233E8,6233E8,ff,($33E8) JB_AC Interlock status,0:Unavailable Value;1:Interlock Open;2:Interlock Close;3:Not used ,7EC,30,31,1,0,0,,2233E9,6233E9,ff,($33E9) JB_PTC Interlock status,0:Unavailable Value;1:Interlock Open;2:Interlock Close;3:Not used ,7EC,29,31,1,0,0,,2233EA,6233EA,ff,($33EA) CAN signal for the status of the plugs connection,0:No plug connected;2:Plug connected- no button pressed;4:1 Plug connected- button pressed;6:2 Plugs connected;7:Unavaliable Value ,7EC,30,31,1,0,0,,2233EB,6233EB,ff,($33EB) Power supply relay of fan requested by EVC,0:open relay;3:closed relay ,7EC,29,31,1,0,0,,2233EC,6233EC,ff,($33EC) Different states of CM master stateflow,0:BCB_Awake;1:BCB_Normal;2:BCB_Standby;3:BCB_Slow_Charge;4:BCB_Quick_Charge;5:BCB_Nissan_Quick_Charge;6:BCB_Zero_Ampere ,7EC,29,31,1,0,0,,2233ED,6233ED,ff,($33ED) Different states of quick charge management stateflow,0:NoState;1:BCB_QuickCharge_ICId;2:BCB_QuickCharge_ICSftL;3:BCB_QuickCharge_ICRelClos;4:BCB_QuickCharge_ICStrt;5:BCB_QuickCharge_InProgress;6:BCB_QuickCharge_NominalExit;7:BCB_QuickCharge_DysfExit ,7EC,24,39,100,0,0,Ohm,2233EE,6233EE,ff,($33EE) Resistance insulation value ,7EC,29,31,1,0,0,,2233EF,6233EF,ff,($33EF) Different states of slow charge management stateflow,0:0-NoState;1:1-BCB_SlowCharge_InitCheck;2:2-BCB_SlowCharge_InProgress;3:3-BCB_SlowCharge_NominalExit;4:4-BCB_SlowCharge_DysfunctExit;5:5-BCB_SlowCharge_TCExit ,7EC,30,31,1,0,0,,2233F0,6233F0,ff,($33F0) Different states of the stand_by management stateflow,0:NoState;1:BCB_Standby_StandByRequest;2:BCB_Standby_StandByConfirmed;3:BCB_Standby_PossibleRestart ,7EC,24,39,.02,0,2,%,2233F1,6233F1,ff,($33F1) Electrical Machine normalised temperature ,7EC,24,31,1,40,0,°C,2233F2,6233F2,ff,($33F2) High Voltage Battery maximal Temperature ,7EC,24,39,.1,10240,1,N.m,2233F3,6233F3,ff,($33F3) Maximal torque without unballasting ,7EC,24,39,.1,10240,1,N.m,2233F4,6233F4,ff,($33F4) Minimal torque ,7EC,24,31,1,40,0,°C,2233F5,6233F5,ff,($33F5) Cooling Temperature dcdc mesured ,7EC,24,31,1,40,0,°C,2233F6,6233F6,ff,($33F6) Temperature of the inverter given by PEB (CAN ETS) ,7EC,24,55,1,0,0,,2233F7,6233F7,1ff,($33F7) Counter of Efan speed on Low and very low speed ,7EC,29,31,1,0,0,,2233F8,6233F8,ff,($33F8) Different states of the Zero Ampere mode management stateflow.,0:0- NoState;1:1- BCB_ZeroAmpere_InitCheck;2:2- BCB_ZeroAmpere_InProgress;3:3- BCB_ZeroAmpere_NominalExit;4:4- BCB_ZeroAmpere_DysfExit;5:5- BCB_ZeroAmpere_TCExit ,7EC,30,31,1,0,0,,2233F9,6233F9,ff,($33F9) Primary ignition supply state, signal coming from CAN, not checked,0:Not used;1:+ACC off;2:+ACC on;3:not used ,7EC,31,31,1,0,0,,2233FA,6233FA,ff,($33FA) Pedal pressed flag internal processing,0:pedal not pressed;1:pedal pressed ,7EC,31,31,1,0,0,,2233FB,6233FB,ff,($33FB) Preheating requested by the vehicle. Processed,0:no request;1:request ,7EC,30,31,1,0,0,,2233FC,6233FC,ff,($33FC) Electrical Motor state requested by user and build by the BCM,0:Motor stop resquested;1:Unavailable;2:+APC requested;3:Starting requested ,7EC,31,31,1,0,0,,2233FD,6233FD,ff,($33FD) Peltier Control Order,0:no control;1:control ativated ,7EC,31,31,1,0,0,,2233FE,6233FE,ff,($33FE) Peltier Fan control order,0:no control;1:control ativated ,7EC,31,31,1,0,0,,2233FF,6233FF,ff,($33FF) Major failure detected on the ETS,0:no failure;1:failure ,7EC,24,31,1,0,0,,223400,623400,4ff,DIDs supported in range [$3400 - $3420] ,7EC,31,31,1,0,0,,223401,623401,ff,($3401) Manage Failure Authorization of the AC,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,223402,623402,ff,($3402) Manage Failure Authorization of the 14V Network management,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,223403,623403,ff,($3403) Manage Failure Authorization of the heater,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,223404,623404,ff,($3404) Manage Failure Authorization of the Peltier,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,223405,623405,ff,($3405) Manage Failure Authorization of the PowerTrain,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,223407,623407,ff,($3407) Manage Failure Authorization of the RSA Quick Charge,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,223408,623408,ff,($3408) Manage Failure Authorization of the Slow Charge,0:Not Autorized;1:Autorized ,7EC,30,31,1,0,0,,223409,623409,ff,($3409) Signal of requesting the MMI EBAAlertLevel1 (brake failure with SERV),0:Not used;1:alert off;2:alert on;3:not used ,7EC,30,31,1,0,0,,22340A,62340A,ff,($340A) Signal of requesting the MMI EBAAlertLevel1 (brake failure with STOP),0:Not used;1:alert off;2:alert on;3:not used ,7EC,30,31,1,0,0,,22340B,62340B,ff,($340B) Signal of requesting the MMI QuickDropIterationExceededDisplay,0:Not used;1:alert off;2:alert on;3:not used ,7EC,30,31,1,0,0,,22340C,62340C,ff,($340C) Signal of requesting the MMI QuickDropLockFailureDisplay,0:Not used;1:alert off;2:alert on;3:not used ,7EC,30,31,1,0,0,,22340D,62340D,ff,($340D) Signal of requesting the MMI QuickDropUnlockedDisplay,0:Not used;1:alert off;2:alert on;3:not used ,7EC,30,31,1,0,0,,22340E,62340E,ff,($340E) Signal of requesting the MMI ETAlertDCDC,0:Not used;1:alert off;2:alert on;3:not used ,7EC,30,31,1,0,0,,22340F,62340F,ff,($340F) Signal of requesting the MMI ETAlertRepairETS,0:Unavailable value;1:alert off;2:alert on;3:not used ,7EC,29,31,1,0,0,,223410,623410,ff,($3410) HV Network Diagnosis synthesis,0:No connection Allowed but connection can stand still;1:Connection Allowed;3:Not used;4:No Connection Allowed and Disconnection Needed;5:Emergency disconnection Needed ,7EC,24,47,1,0,0,km,223411,623411,ff,($3411) Distance memorized for energy consumption journal.9 ,7EC,48,71,1,0,0,km,223411,623411,ff,($3411) Distance memorized for energy consumption journal.8 ,7EC,72,95,1,0,0,km,223411,623411,ff,($3411) Distance memorized for energy consumption journal.7 ,7EC,96,119,1,0,0,km,223411,623411,ff,($3411) Distance memorized for energy consumption journal.6 ,7EC,120,143,1,0,0,km,223411,623411,ff,($3411) Distance memorized for energy consumption journal.5 ,7EC,144,167,1,0,0,km,223411,623411,ff,($3411) Distance memorized for energy consumption journal.4 ,7EC,168,191,1,0,0,km,223411,623411,ff,($3411) Distance memorized for energy consumption journal.3 ,7EC,192,215,1,0,0,km,223411,623411,ff,($3411) Distance memorized for energy consumption journal.2 ,7EC,216,239,1,0,0,km,223411,623411,ff,($3411) Distance memorized for energy consumption journal.1 ,7EC,240,263,1,0,0,km,223411,623411,ff,($3411) Distance memorized for energy consumption journal.0 ,7EC,24,39,.01,0,2,kWh,223412,623412,ff,Memorized accumulated HV battery output energy for energy consumption journal.9 ,7EC,40,55,.01,0,2,kWh,223412,623412,ff,Memorized accumulated HV battery output energy for energy consumption journal.8 ,7EC,56,71,.01,0,2,kWh,223412,623412,ff,Memorized accumulated HV battery output energy for energy consumption journal.7 ,7EC,72,87,.01,0,2,kWh,223412,623412,ff,Memorized accumulated HV battery output energy for energy consumption journal.6 ,7EC,88,103,.01,0,2,kWh,223412,623412,ff,Memorized accumulated HV battery output energy for energy consumption journal.5 ,7EC,104,119,.01,0,2,kWh,223412,623412,ff,Memorized accumulated HV battery output energy for energy consumption journal.4 ,7EC,120,135,.01,0,2,kWh,223412,623412,ff,Memorized accumulated HV battery output energy for energy consumption journal.3 ,7EC,136,151,.01,0,2,kWh,223412,623412,ff,Memorized accumulated HV battery output energy for energy consumption journal.2 ,7EC,152,167,.01,0,2,kWh,223412,623412,ff,Memorized accumulated HV battery output energy for energy consumption journal.1 ,7EC,168,183,.01,0,2,kWh,223412,623412,ff,Memorized accumulated HV battery output energy for energy consumption journal.0 ,7EC,24,39,.01,0,2,kWh,223413,623413,ff,Memorized accumulated electrical inverter energy for energy consumption journal.9 ,7EC,40,55,.01,0,2,kWh,223413,623413,ff,Memorized accumulated electrical inverter energy for energy consumption journal.8 ,7EC,56,71,.01,0,2,kWh,223413,623413,ff,Memorized accumulated electrical inverter energy for energy consumption journal.7 ,7EC,72,87,.01,0,2,kWh,223413,623413,ff,Memorized accumulated electrical inverter energy for energy consumption journal.6 ,7EC,88,103,.01,0,2,kWh,223413,623413,ff,Memorized accumulated electrical inverter energy for energy consumption journal.5 ,7EC,104,119,.01,0,2,kWh,223413,623413,ff,Memorized accumulated electrical inverter energy for energy consumption journal.4 ,7EC,120,135,.01,0,2,kWh,223413,623413,ff,Memorized accumulated electrical inverter energy for energy consumption journal.3 ,7EC,136,151,.01,0,2,kWh,223413,623413,ff,Memorized accumulated electrical inverter energy for energy consumption journal.2 ,7EC,152,167,.01,0,2,kWh,223413,623413,ff,Memorized accumulated electrical inverter energy for energy consumption journal.1 ,7EC,168,183,.01,0,2,kWh,223413,623413,ff,Memorized accumulated electrical inverter energy for energy consumption journal.0 ,7EC,24,39,.01,0,2,kWh,223414,623414,ff,Memorized accumutation of the energy used by the thermal comfort for energy consumption journal.9 ,7EC,40,55,.01,0,2,kWh,223414,623414,ff,Memorized accumutation of the energy used by the thermal comfort for energy consumption journal.8 ,7EC,56,71,.01,0,2,kWh,223414,623414,ff,Memorized accumutation of the energy used by the thermal comfort for energy consumption journal.7 ,7EC,72,87,.01,0,2,kWh,223414,623414,ff,Memorized accumutation of the energy used by the thermal comfort for energy consumption journal.6 ,7EC,88,103,.01,0,2,kWh,223414,623414,ff,Memorized accumutation of the energy used by the thermal comfort for energy consumption journal.5 ,7EC,104,119,.01,0,2,kWh,223414,623414,ff,Memorized accumutation of the energy used by the thermal comfort for energy consumption journal.4 ,7EC,120,135,.01,0,2,kWh,223414,623414,ff,Memorized accumutation of the energy used by the thermal comfort for energy consumption journal.3 ,7EC,136,151,.01,0,2,kWh,223414,623414,ff,Memorized accumutation of the energy used by the thermal comfort for energy consumption journal.2 ,7EC,152,167,.01,0,2,kWh,223414,623414,ff,Memorized accumutation of the energy used by the thermal comfort for energy consumption journal.1 ,7EC,168,183,.01,0,2,kWh,223414,623414,ff,Memorized accumutation of the energy used by the thermal comfort for energy consumption journal.0 ,7EC,24,39,.02,0,2,%,223415,623415,ff,($3415) Memorized User SOC for energy consumption journal.9 ,7EC,40,55,.02,0,2,%,223415,623415,ff,($3415) Memorized User SOC for energy consumption journal.8 ,7EC,56,71,.02,0,2,%,223415,623415,ff,($3415) Memorized User SOC for energy consumption journal.7 ,7EC,72,87,.02,0,2,%,223415,623415,ff,($3415) Memorized User SOC for energy consumption journal.6 ,7EC,88,103,.02,0,2,%,223415,623415,ff,($3415) Memorized User SOC for energy consumption journal.5 ,7EC,104,119,.02,0,2,%,223415,623415,ff,($3415) Memorized User SOC for energy consumption journal.4 ,7EC,120,135,.02,0,2,%,223415,623415,ff,($3415) Memorized User SOC for energy consumption journal.3 ,7EC,136,151,.02,0,2,%,223415,623415,ff,($3415) Memorized User SOC for energy consumption journal.2 ,7EC,152,167,.02,0,2,%,223415,623415,ff,($3415) Memorized User SOC for energy consumption journal.1 ,7EC,168,183,.02,0,2,%,223415,623415,ff,($3415) Memorized User SOC for energy consumption journal.0 ,7EC,24,39,.01,0,2,kWh,223416,623416,ff,($3416) Memorization of accumulated electrical DCDC energy for energy consumption journal.9 ,7EC,40,55,.01,0,2,kWh,223416,623416,ff,($3416) Memorization of accumulated electrical DCDC energy for energy consumption journal.8 ,7EC,56,71,.01,0,2,kWh,223416,623416,ff,($3416) Memorization of accumulated electrical DCDC energy for energy consumption journal.7 ,7EC,72,87,.01,0,2,kWh,223416,623416,ff,($3416) Memorization of accumulated electrical DCDC energy for energy consumption journal.6 ,7EC,88,103,.01,0,2,kWh,223416,623416,ff,($3416) Memorization of accumulated electrical DCDC energy for energy consumption journal.5 ,7EC,104,119,.01,0,2,kWh,223416,623416,ff,($3416) Memorization of accumulated electrical DCDC energy for energy consumption journal.4 ,7EC,120,135,.01,0,2,kWh,223416,623416,ff,($3416) Memorization of accumulated electrical DCDC energy for energy consumption journal.3 ,7EC,136,151,.01,0,2,kWh,223416,623416,ff,($3416) Memorization of accumulated electrical DCDC energy for energy consumption journal.2 ,7EC,152,167,.01,0,2,kWh,223416,623416,ff,($3416) Memorization of accumulated electrical DCDC energy for energy consumption journal.1 ,7EC,168,183,.01,0,2,kWh,223416,623416,ff,($3416) Memorization of accumulated electrical DCDC energy for energy consumption journal.0 ,7EC,31,31,1,0,0,,223417,623417,ff,Saving of the NAVL state of the interlocks.8,0:Interlock OK;1:Interlock failed ,7EC,32,32,1,0,0,,223417,623417,ff,Saving of the NAVL state of the interlocks.7,0:Interlock OK;1:Interlock failed ,7EC,33,33,1,0,0,,223417,623417,ff,Saving of the NAVL state of the interlocks.6,0:Interlock OK;1:Interlock failed ,7EC,34,34,1,0,0,,223417,623417,ff,Saving of the NAVL state of the interlocks.5,0:Interlock OK;1:Interlock failed ,7EC,35,35,1,0,0,,223417,623417,ff,Saving of the NAVL state of the interlocks.4,0:Interlock OK;1:Interlock failed ,7EC,36,36,1,0,0,,223417,623417,ff,Saving of the NAVL state of the interlocks.3,0:Interlock OK;1:Interlock failed ,7EC,37,37,1,0,0,,223417,623417,ff,Saving of the NAVL state of the interlocks.2,0:Interlock OK;1:Interlock failed ,7EC,38,38,1,0,0,,223417,623417,ff,Saving of the NAVL state of the interlocks.1,0:Interlock OK;1:Interlock failed ,7EC,39,39,1,0,0,,223417,623417,ff,Saving of the NAVL state of the interlocks.0,0:Interlock OK;1:Interlock failed ,7EC,31,31,1,0,0,,223418,623418,ff,($3418) DCDC desactivation requested by diagnostic tool in plant,0:Activated ;1:Desactevated ,7EC,31,31,1,0,0,,223419,623419,ff,($3419) Memorized crash level 1 (medium) detection,0:no memorized ;1:Memorized ,7EC,31,31,1,0,0,,22341A,62341A,ff,($341A) Memorized crash level 2 (violent) detection,0:no memorized ;1:Memorized ,7EC,24,39,1,0,0,Hz,22341E,62341E,ff,($341E) Rotation speed of External Fan for battery cooling (Peltier) ,7EC,24,31,1,0,0,,223420,623420,4ff,DIDs supported in range [$3420 - $3440] ,7EC,24,31,1,40,0,°C,223421,623421,ff,($3421) For reading Battery temperature starting point of the Peltier System (Diagnostic Input) ,7EC,24,31,1,40,0,°C,223422,623422,ff,($3422) External temperature (Peltier side) ,7EC,31,31,1,0,0,,223423,623423,ff,($3423) P_R_N_D_P_N,0:12 V;1:0V ,7EC,31,31,1,0,0,,223424,623424,ff,($3424) P_R_N_D_L2,0:12 V;1:0V ,7EC,31,31,1,0,0,,223425,623425,ff,($3425) P_R_N_D_L3,0:12 V;1:0V ,7EC,31,31,1,0,0,,223426,623426,ff,($3426) P_R_N_D_L4,0:12 V;1:0V ,7EC,31,31,1,0,0,,223427,623427,ff,($3427) debounced signal from eco mode button,0:switch not pushed;1:switch pushed ,7EC,24,39,.0005,0,3,V,223428,623428,ff,($3428) Battery 14V Voltage after everychecking (internal SCH) ,7EC,31,31,1,0,0,,223429,623429,ff,($3429) DCDC ready or not (internal EVC),0:DCDC Off;1:DCDC On ,7EC,30,31,1,0,0,,22342E,62342E,ff,($342E) DCDC ready to sleep (internal EVC),0:Not Used;1:Refuse to Sleep;2:Ready To Sleep;3:Not used ,7EC,24,55,1,-2147483648,0,min,223431,623431,1ff,($3431) Time since the vehicle has been parked (calculated in SCH) ,7EC,24,39,.0005,0,3,V,223432,623432,ff,($3432) Battery voltage no load estimation memorization (internal SCH) ,7EC,24,31,.05,-240,2,V,223433,623433,ff,($3433) Battery voltage request (internal SCH) ,7EC,30,31,1,0,0,,223435,623435,ff,($3435) AC compressor authorization command,0:Disable;1:Enable;2:Not used;3:Signal invalid ,7EC,24,39,1,0,0,rpm,223436,623436,ff,($3436) AC compressor RPM real value ,7EC,24,31,2,0,0,V,223437,623437,ff,($3437) AC compressor High Voltage value ,7EC,24,31,1,40,0,°C,223438,623438,ff,($3438) AC compressor Power Module Temperature ,7EC,30,31,1,0,0,,223439,623439,ff,($3439) AC compressor Error Status,0:No problem;1:Degraded mode;2:Compressor shut-off safety reasons;3:Compressor has to te changed ,7EC,24,31,.1,0,1,,22343A,62343A,ff,($343A) AC compressor Motor Phase Current ,7EC,30,31,1,0,0,,22343B,62343B,ff,($343B) AC compressor State,0:Signal Invalid;1:Compressor Off;2:Compressor is starting;3:Compressor On ,7EC,24,31,1,0,0,,22343C,62343C,ff,($343C) Dysfunctional disconnections counter ,7EC,24,55,1,-2147483648,0,,22343D,62343D,1ff,($343D) Identification number of the batteries for the 10 last quick drop.9 ,7EC,56,87,1,-2147483648,0,,22343D,62343D,1ff,($343D) Identification number of the batteries for the 10 last quick drop.8 ,7EC,88,119,1,-2147483648,0,,22343D,62343D,1ff,($343D) Identification number of the batteries for the 10 last quick drop.7 ,7EC,120,151,1,-2147483648,0,,22343D,62343D,1ff,($343D) Identification number of the batteries for the 10 last quick drop.6 ,7EC,152,183,1,-2147483648,0,,22343D,62343D,1ff,($343D) Identification number of the batteries for the 10 last quick drop.5 ,7EC,184,215,1,-2147483648,0,,22343D,62343D,1ff,($343D) Identification number of the batteries for the 10 last quick drop.4 ,7EC,216,247,1,-2147483648,0,,22343D,62343D,1ff,($343D) Identification number of the batteries for the 10 last quick drop.3 ,7EC,248,279,1,-2147483648,0,,22343D,62343D,1ff,($343D) Identification number of the batteries for the 10 last quick drop.2 ,7EC,280,311,1,-2147483648,0,,22343D,62343D,1ff,($343D) Identification number of the batteries for the 10 last quick drop.1 ,7EC,312,343,1,-2147483648,0,,22343D,62343D,1ff,($343D) Identification number of the batteries for the 10 last quick drop.0 ,7EC,24,55,1,-2147483648,0,,22343F,62343F,1ff,($343F) Identification number of the battery received by CAN ,7EC,24,31,1,0,0,,223440,623440,4ff,DIDs supported in range [$3440 - $3460] ,7EC,31,31,1,0,0,,223441,623441,ff,($3441) CAN signal for the status of the K-Line communication,0:No presence;1:presence ,7EC,30,31,1,0,0,,223442,623442,ff,($3442) ETS Sleeping authorisation according to HV Battery Management Strategies,0:Not used;1:Refuse to sleep;2:Ready to sleep;3:unused ,7EC,24,31,.3,0,1,kW,223444,623444,ff,($3444) CAN signal for the maximal charging power authorized by the HV battery ,7EC,24,39,100,0,0,W,223445,623445,ff,($3445) CAN signal for the estimation of the BCB input power (power consumed from the Mains network) ,7EC,31,31,1,0,0,,223446,623446,ff,($3446) eco mode request,0:Mode eco not requested;1:Mode eco requested ,7EC,24,39,.03125,32768,2,N·m,223448,623448,ff,($3448) Electrical motor (EM) maximum effective torque available, after eco mode limitation ,7EC,24,55,.01,-2147483648,2,km,223449,623449,1ff,($3449) Total vehicle distance associated with each last ten Quick Drop.9 ,7EC,56,87,.01,-2147483648,2,km,223449,623449,1ff,($3449) Total vehicle distance associated with each last ten Quick Drop.8 ,7EC,88,119,.01,-2147483648,2,km,223449,623449,1ff,($3449) Total vehicle distance associated with each last ten Quick Drop.7 ,7EC,120,151,.01,-2147483648,2,km,223449,623449,1ff,($3449) Total vehicle distance associated with each last ten Quick Drop.6 ,7EC,152,183,.01,-2147483648,2,km,223449,623449,1ff,($3449) Total vehicle distance associated with each last ten Quick Drop.5 ,7EC,184,215,.01,-2147483648,2,km,223449,623449,1ff,($3449) Total vehicle distance associated with each last ten Quick Drop.4 ,7EC,216,247,.01,-2147483648,2,km,223449,623449,1ff,($3449) Total vehicle distance associated with each last ten Quick Drop.3 ,7EC,248,279,.01,-2147483648,2,km,223449,623449,1ff,($3449) Total vehicle distance associated with each last ten Quick Drop.2 ,7EC,280,311,.01,-2147483648,2,km,223449,623449,1ff,($3449) Total vehicle distance associated with each last ten Quick Drop.1 ,7EC,312,343,.01,-2147483648,2,km,223449,623449,1ff,($3449) Total vehicle distance associated with each last ten Quick Drop.0 ,7EC,24,31,1,0,0,,22344A,62344A,ff,($344A)Counter of the funct diag which aim at detecting a too often low performance of batt cooling system in study ,7EC,31,31,1,0,0,,22344B,62344B,ff,($344B) Allow to control the BattVE Relay which gives energy to several ECU linked to thermal comfort,0:Opened;1:Closed ,7EC,31,31,1,0,0,,22344C,62344C,ff,($344C) Plug Unlock/ Trap Open Push Button request,0:No request;1:Request activated ,7EC,31,31,1,0,0,,22344D,62344D,ff,($344D) Energy Trap sensor status,0:Closed;1:Open ,7EC,31,31,1,0,0,,22344E,62344E,ff,($344E) Energy Trap Actuator Command,0:No open trap command;1:Open trap command ,7EC,31,31,1,0,0,,22344F,62344F,ff,($344F) Plug Unlock/ Trap Open Push Button Status,0:Not pressed;1:Pressed ,7EC,31,31,1,0,0,,223450,623450,ff,($3450) Configuration of the Quick Drop (Enable or disable),0:No quickdrop;1:Quickdrop ,7EC,24,39,1,0,0,km,223451,623451,ff,($3451) Estimated kilometric cruising range sent to MMI ,7EC,31,31,1,0,0,,223452,623452,ff,($3452) Eco mode request to be sent on the CAN for CLIM and MMC,0:Mode ECO not requested;1:Mode ECO requested ,7EC,31,31,1,0,0,,223453,623453,ff,($3453) EEPROM memorized value of the eco mode switch request,0:Mode ECO not requested;1:Mode ECO requested ,7EC,24,47,.001,0,3,kWh,223454,623454,ff,($3454) Contributions of anticipation lack and excessive vehicle speed to elec overconsumption since cluster reset.1 ,7EC,48,71,.001,0,3,kWh,223454,623454,ff,($3454) Contributions of anticipation lack and excessive vehicle speed to elec overconsumption since cluster reset.0 ,7EC,24,39,.00001953125,-1,3,kW,223455,623455,ff,($3455) Mean eco electrical consumption (if driver has economical driving behavior) ,7EC,24,39,1,0,0,km,223456,623456,ff,($3456) Temporary estimated kilometric cruising range sent to MMI (economical driving) ,7EC,24,39,.00001953125,-1,3,kW,223457,623457,ff,($3457) Mean pessimistic electrical consumption (worst possible consumption) ,7EC,24,39,1,0,0,km,223458,623458,ff,($3458) Temporary estimated minimum kilometric cruising range sent to MMI ,7EC,24,39,.00001953125,-1,3,kW,223459,623459,ff,($3459) Mean consumption per unit of distance, used for calculation of kilometric range ,7EC,24,31,1,0,0,,22345A,62345A,ff,($345A) Indicator relative to anticipation for economical scoring ,7EC,24,31,1,0,0,,22345B,62345B,ff,($345B) Indicator of economical monitoring ,7EC,24,31,1,0,0,,22345C,62345C,ff,($345C) Indicator relative to vehicle speed for economical scoring ,7EC,24,31,1,0,0,,22345D,62345D,ff,($345D) Information about the performance of Battery conditionning system memorized in E2PROM ,7EC,24,31,1,0,0,%,22345E,62345E,ff,($345E) FAN global request from ETS in PWM including AC, Cooling needs and Relay protection check ,7EC,29,29,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.10,0:Peltier OK;1:Peltier NOK ,7EC,30,30,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.9,0:PWT OK;1:PWT NOK ,7EC,31,31,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.8,0:MHVN OK;1:MHVN NOK ,7EC,32,32,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.7,0:METS OK;1:METS NOK ,7EC,33,33,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.6,0:MHVB OK;1:MHVB NOK ,7EC,34,34,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.5,0:MC OK;1:MC NOK ,7EC,35,35,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.4,0:TC OK;1:TC NOK ,7EC,36,36,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.3,0:MCS OK;1:MCS NOK ,7EC,37,37,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.2,0:BHV OK;1:BHV NOK ,7EC,38,38,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.1,0:BCB OK;1:BCB NOK ,7EC,39,39,1,0,0,,22345F,62345F,ff,($345F) This internal M14N variable is a frame composed of every RTS from all ETS system.0,0:EM OK;1:EM NOK ,7EC,24,31,1,0,0,,223460,623460,4ff,DIDs supported in range [$3460 - $3480] ,7EC,31,31,1,0,0,,223461,623461,ff,($3461) Frame consistency ok,0:UBP frame Nok;1:UBP frame Ok ,7EC,31,31,1,0,0,,223462,623462,ff,($3462) Vehicle configured with UBP (1) or VPM (0),0:configured with VPM;1:configured with UBP ,7EC,31,31,1,0,0,,223463,623463,ff,($3463) electrical braking torque setpoint,0:unvalid braking torque setpoint;1:valid braking torque setpoint ,7EC,24,31,.01,0,2,,223464,623464,ff,($3464) UBP brake pedal ratio from CAN ,7EC,24,39,1,32768,0,N·m,223465,623465,ff,($3465) UBP wheel torque request from CAN ,7EC,31,31,1,0,0,,223466,623466,ff,($3466) memorisation flag in NVMY of HV battery over-heating,0:no HV battery over-heating memorisation in NVMY;1:HV battery over-heating memorisation in NVMY ,7EC,31,31,1,0,0,,223469,623469,ff,($3469) Flag to prevent the activation of downgraded mode when MSR function is disabled,0:No MSR Limp Home mode deactivation requested;1:MSR Limp Home mode deactivation requested ,7EC,24,31,1,40,0,°C,22346A,62346A,ff,($346A) High Voltage Battery maximal Temperature from reductant LBC ,7EC,24,31,1,0,0,,22346B,62346B,ff,($346B) No pump allowed neither DCDC if this boolean is set to 0,0:no pump neither DCDC;1:pump and DCDC activation authorized ,7EC,29,31,1,0,0,,22346E,62346E,ff,($346E) CAN signal for the PEB class of failure status (on charge),0:Classe A;1:Classe B;2:Classe C;3:Classe D;7:Unavailable value ,7EC,29,31,1,0,0,,22346F,62346F,ff,($346F) Synthesis of JB charger fault type,0:No fault type;1:Fault type 1;2:Fault type 2;3:Unavailable value ,7EC,24,39,.1,0,1,kW,223470,623470,ff,($3470) Available JB2 power for a battery charge ,7EC,24,31,5,0,0,%,223471,623471,ff,($3471) Request for engine fan speed from ClimBox ,7EC,24,39,.0001,0,3,,223472,623472,ff,($3472) Lever 1st track duty cycle ,7EC,24,39,.0001,0,3,,223473,623473,ff,($3473) Lever 2nd track duty cycle ,7EC,29,31,1,0,0,,223474,623474,ff,($3474) PWM gearbox lever track 1 position,0:transient;1:park;2:reverse;3:neutral;4:drive ,7EC,29,31,1,0,0,,223475,623475,ff,($3475) PWM gearbox lever track 2 position,0:transient;1:park;2:reverse;3:neutral;4:drive ,7EC,24,47,25,0,0,J,223476,623476,ff,($3476) Counter during one trip for contributions of anticipation lack and excessive vehicle speed to overconsumption.1 ,7EC,48,71,25,0,0,J,223476,623476,ff,($3476) Counter during one trip for contributions of anticipation lack and excessive vehicle speed to overconsumption.0 ,7EC,24,47,7.62939453125E-08,0,3,kWh/km,223477,623477,ff,($3477) Raw mean electrical consumption while economical driving ,7EC,24,47,7.62939453125E-08,0,3,kWh/km,223478,623478,ff,($3478) Raw mean consumption per unit of distance ,7EC,24,47,5.96046447753906E-08,0,3,kWh/km,223479,623479,ff,($3479) Average over-consumption used for economical monitoring ,7EC,31,31,1,0,0,,22347A,62347A,ff,($347A) Request to turn the reverse lights on (1) during reverse mode,0:Reverse light off;1:Reverse light on ,7EC,31,31,1,0,0,,22347B,62347B,ff,($347B) Pulse box command,0:SOF test not requested;1:SOF test requested ,7EC,31,31,1,0,0,,22347C,62347C,ff,($347C) Pulse box diagnosis status,0:Pulse box not activated;1:Pulse box activated ,7EC,24,24,1,0,0,,22347D,62347D,ff,($347D) Internal errors detected by Battery Current Sensor.7,1:bcs diag5 - BCS internal failure ,7EC,25,25,1,0,0,,22347D,62347D,ff,($347D) Internal errors detected by Battery Current Sensor.6,1:bcs diag3 - voltage measurement error ,7EC,26,26,1,0,0,,22347D,62347D,ff,($347D) Internal errors detected by Battery Current Sensor.5,1:bcs diag2 - current measurement error ,7EC,28,28,1,0,0,,22347D,62347D,ff,($347D) Internal errors detected by Battery Current Sensor.3,1:Trigger inconsistency - Min found at end of interval ,7EC,29,29,1,0,0,,22347D,62347D,ff,($347D) Internal errors detected by Battery Current Sensor.2,1:Trigger inconsistency - Min found at beginning of interval ,7EC,30,30,1,0,0,,22347D,62347D,ff,($347D) Internal errors detected by Battery Current Sensor.1,1:Value not consistent ,7EC,31,31,1,0,0,,22347D,62347D,ff,($347D) Internal errors detected by Battery Current Sensor.0,1:Umin not available ,7EC,24,39,1,0,0,d,22347E,62347E,ff,($347E) Memorization of next 4 years alert value in time ,7EC,31,31,1,0,0,,22347F,62347F,ff,($347F) Reinitialisation of memorization of next 4 years alert value in time,0:Do nothing;1:Reinitialize ,7EC,24,31,1,0,0,,223480,623480,4ff,DIDs supported in range [$3480 - $34A0] ,7EC,24,31,1,0,0,,223481,623481,ff,($3481) Internal counter for SOF test KO ,7EC,24,31,1,0,0,,223482,623482,ff,($3482) Internal counter for SOF test failed ,7EC,24,55,1,-2147483648,0,min,223483,623483,1ff,($3483) Time of the last SOF Test that occured ,7EC,24,39,1,32768,0,A,223484,623484,ff,($3484) Current measurement given by BCS Battery Current Sensor ,7EC,24,39,.001,0,3,V,223485,623485,ff,($3485) Voltage measurement given by BCS Battery Current Sensor ,7EC,29,31,1,0,0,,223486,623486,ff,($3486) Alert for changing battery,0:No display;1:Safety Reserved_1;2:Safety Reserved_2;3:Information- Battery should be changed soon;4:Safety Reserved_4;5:Alert Battery should be changed Now;6:Safety Reserved_6;7:Safety Reserved_7 ,7EC,24,55,1,0,0,,223487,623487,1ff,($3487) Counter of PWM Efan speed on Low speeds ,7EC,24,55,1,0,0,,223488,623488,1ff,($3488) Counter of PWM Efan speed on Medium speeds ,7EC,24,55,1,0,0,,223489,623489,1ff,($3489) Counter of PWM Efan speed on High speeds ,7EC,24,39,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.20 ,7EC,40,55,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.19 ,7EC,56,71,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.18 ,7EC,72,87,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.17 ,7EC,88,103,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.16 ,7EC,104,119,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.15 ,7EC,120,135,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.14 ,7EC,136,151,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.13 ,7EC,152,167,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.12 ,7EC,168,183,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.11 ,7EC,184,199,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.10 ,7EC,200,215,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.9 ,7EC,216,231,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.8 ,7EC,232,247,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.7 ,7EC,248,263,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.6 ,7EC,264,279,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.5 ,7EC,280,295,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.4 ,7EC,296,311,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.3 ,7EC,312,327,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.2 ,7EC,328,343,1,32768,0,A,22348A,62348A,ff,($348A) Current memorized for SOF test.1 ,7EC,24,47,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.20 ,7EC,48,71,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.19 ,7EC,72,95,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.18 ,7EC,96,119,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.17 ,7EC,120,143,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.16 ,7EC,144,167,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.15 ,7EC,168,191,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.14 ,7EC,192,215,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.13 ,7EC,216,239,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.12 ,7EC,240,263,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.11 ,7EC,264,287,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.10 ,7EC,288,311,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.9 ,7EC,312,335,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.8 ,7EC,336,359,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.7 ,7EC,360,383,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.6 ,7EC,384,407,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.5 ,7EC,408,431,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.4 ,7EC,432,455,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.3 ,7EC,456,479,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.2 ,7EC,480,503,1,0,0,,22348B,62348B,ff,($348B) Result of measure memorized for SOF test.1 ,7EC,24,47,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.20 ,7EC,48,71,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.19 ,7EC,72,95,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.18 ,7EC,96,119,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.17 ,7EC,120,143,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.16 ,7EC,144,167,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.15 ,7EC,168,191,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.14 ,7EC,192,215,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.13 ,7EC,216,239,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.12 ,7EC,240,263,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.11 ,7EC,264,287,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.10 ,7EC,288,311,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.9 ,7EC,312,335,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.8 ,7EC,336,359,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.7 ,7EC,360,383,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.6 ,7EC,384,407,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.5 ,7EC,408,431,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.4 ,7EC,432,455,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.3 ,7EC,456,479,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.2 ,7EC,480,503,1,0,0,min,22348C,62348C,ff,($348C) Absolut time memorized for SOF test.1 ,7EC,24,39,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.20 ,7EC,40,55,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.19 ,7EC,56,71,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.18 ,7EC,72,87,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.17 ,7EC,88,103,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.16 ,7EC,104,119,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.15 ,7EC,120,135,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.14 ,7EC,136,151,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.13 ,7EC,152,167,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.12 ,7EC,168,183,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.11 ,7EC,184,199,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.10 ,7EC,200,215,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.9 ,7EC,216,231,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.8 ,7EC,232,247,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.7 ,7EC,248,263,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.6 ,7EC,264,279,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.5 ,7EC,280,295,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.4 ,7EC,296,311,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.3 ,7EC,312,327,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.2 ,7EC,328,343,.001,0,3,V,22348D,62348D,ff,($348D) Voltage memorized for SOF test.1 ,7EC,24,31,.05,-240,2,V,22348E,62348E,ff,($348E) DCDC voltage control request calculated and used when no default on 14V network is detected ,7EC,31,31,1,0,0,,22348F,62348F,ff,($348F) Boolean Variable : M14N resquest for activation when SOC low,0:Not Activation;1:Activation of DCDC ,7EC,30,31,1,0,0,,223490,623490,ff,($3490) Critical Failure detected on the 14V network (internal SCH),0:Unavailable value;1:C_K_DefaultPresent_status;2:Not used;3:C_K_DefaultConfirmed_status ,7EC,31,31,1,0,0,,223491,623491,ff,($3491) Request of ETS to force 14v network energy management into traction battery (from ETS CAN),0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,223492,623492,ff,($3492) Boolean that indicates the loss of a correct measurement on 14V,0:Tension Battery Available;1:Tension Battery Unavailable ,7EC,31,31,1,0,0,,223493,623493,ff,($3493) Authorization from METS to activare DCDC converter,0:Not Autorized DCDC Activation;1:Autorized DCDC Activation ,7EC,24,39,10,0,0,W,223494,623494,ff,($3494) Instantaneous DCDC output power ,7EC,24,31,.390625,0,1,%,223495,623495,ff,($3495) Current ratio from DCDC. (Idcdc / Idcdcmax) ,7EC,31,31,1,0,0,,223496,623496,ff,($3496) 14 V battery charge Autorisation flag from METS,0:dcdc activation forbidden;1:dcdc activation authorised ,7EC,31,31,1,0,0,,223497,623497,ff,($3497) Better Place Config,0:NO BetterPlace Vehicle;1:Better Place Vehicle ,7EC,31,31,1,0,0,,223498,623498,ff,($3498) This flag shows the battery relay PTC n°1(X10,L38G2,X61G3) request,0:no activation;1:activation ,7EC,31,31,1,0,0,,223499,623499,ff,($3499) relay thermoplunger (X07) n°1 request,0:no activation;1:activation ,7EC,31,31,1,0,0,,22349A,62349A,ff,($349A) This flag shows the battery relay PTC n°2 (X10,L38G2,X61G3) request,0:no activation;1:activation ,7EC,31,31,1,0,0,,22349B,62349B,ff,($349B) relay thermoplunger (X07) n°2 request,0:no activation;1:activation ,7EC,31,31,1,0,0,,22349C,62349C,ff,($349C) This flag shows the battery relay PTC n°3 (X10,L38G2,X61G3) request,0:no activation;1:activation ,7EC,31,31,1,0,0,,22349D,62349D,ff,($349D) relay thermoplunger (X07) n°3 request,0:no activation;1:activation ,7EC,31,31,1,0,0,,22349E,62349E,ff,($349E) Battery evaporator electrical Valve status (Valve for battery HVAC),0:no activation;1:activation ,7EC,31,31,1,0,0,,22349F,62349F,ff,($349F) Cabin evaporator electrical Valve status (Valve for cabin HVAC),0:no activation;1:activation ,7EC,24,31,1,0,0,,2234A0,6234A0,4ff,DIDs supported in range [$34A1 - $34C0] ,7EC,24,39,1,0,0,Hz,2234A1,6234A1,ff,($34A1) Battery blower speed rotation (Feedback signal) ,7EC,24,39,.1,2730,1,°C,2234A2,6234A2,ff,($34A2) Battery Evaporator thermal sensor ,7EC,24,39,.1,2730,1,°C,2234A3,6234A3,ff,($34A3) Rear Evaporator temperature target ,7EC,29,31,1,0,0,,2234A4,6234A4,ff,($34A4) Battery cooling order,0:No_Cool_Bat;1:Cool_Bat_HVAC;2:Cool_Bat_PAC;3:Cool_Bat_Chiller;4:Warm_Bat_Int_CTP;5:Warm_Bat_Ext_CTP;6:Warm_Bat_THP ,7EC,30,31,1,0,0,,2234A5,6234A5,ff,($34A5) TC flag ready to sleep,0:NA_0;1:refuse to sleep;2:ready to sleep;3:NA_3 ,7EC,25,31,1,0,0,%,2234A6,6234A6,ff,($34A6) Battery HVAC speed rotation request (command of the blower) ,7EC,29,31,1,0,0,,2234A7,6234A7,ff,($34A7) Battery Cooling System Type,0:without;1:Air Cooling by PAC;2:Air Cooling by HVAC EVC;3:Water Cooling without chiller;4:Water Cooling with chiller ,7EC,29,31,1,0,0,,2234A8,6234A8,ff,($34A8) Battery Heating System Type,0:without;1:Air PTC by evc Power n°1(2relays);2:Air PTC by evc Power n°2(3relays);3:Air PTC via Mux;4:Water Coolant Heaters(CTP) evc (1 relay) ,7EC,31,31,1,0,0,,2234A9,6234A9,ff,($34A9) Configuration of the TCU (Enable or disable),0:sans TCU;1:avec TCU ,7EC,31,31,1,0,0,,2234AA,6234AA,ff,($34AA) Differential Protection in EVC,0:NO Differential Protection in EVC;1:Differential Protection in EVC Active ,7EC,24,39,.1,32768,1,A,2234AD,6234AD,ff,($34AD) Set-point for the charge current for the JB2 ,7EC,24,31,1,0,0,,2234AE,6234AE,ff,($34AE) PEB frame monitoring status flags.all ,7EC,27,27,1,0,0,,2234AE,6234AE,ff,($34AE) PEB frame monitoring status flags.B4,0:Frame presence;1:No frame ,7EC,29,29,1,0,0,,2234AE,6234AE,ff,($34AE) PEB frame monitoring status flags.B2,0:No CRC default;1:CRC default ,7EC,30,30,1,0,0,,2234AE,6234AE,ff,($34AE) PEB frame monitoring status flags.B1,0:No clock default;1:Clock default ,7EC,31,31,1,0,0,,2234AE,6234AE,ff,($34AE) PEB frame monitoring status flags.B0,0:Default on engine speed frame sent by PEB (see other bits);1:No default on engine speed frame sent by PEB ,7EC,31,31,1,0,0,,2234AF,6234AF,ff,($34AF) EVC waiting for isolation confirmation before starting charge,0:Driving mode;1:Waiting for charge ,7EC,31,31,1,0,0,,2234B0,6234B0,ff,($34B0) Configuration of the Load Shedding,0:No load shedding;1:Load shedding ,7EC,30,31,1,0,0,,2234B2,6234B2,ff,($34B2) Gasoline heater configuration V2,0:no heater;1:Eberspächer Hydronic 2;2:Do not use (2);3:Do not use (3) ,7EC,30,31,1,0,0,,2234B3,6234B3,ff,($34B3) PTC_Config V2,0:no HV PTC;1:HV PTC with water;2:HV PTC with air ,7EC,31,31,1,0,0,,2234B4,6234B4,ff,($34B4) Cut off charge request by thermal comfort to start compressor with safety conditions,0:Cut off for Charge requested;1:No cut off for charge requested ,7EC,30,31,1,0,0,,2234B5,6234B5,ff,($34B5) Authorization for deicing function,0:0- Not used;1:1- DeIcing requested;2:2- DeIcing not requested;3:3- Unavailable value ,7EC,24,31,100,0,0,Wh,2234B6,6234B6,ff,($34B6) Pre-conditionning available energy ,7EC,29,31,1,0,0,,2234B7,6234B7,ff,($34B7) Defaults and state of the compressor description,0:On;1:Off;2:On downgraded;3:Off with fault;4:Off to change ,7EC,31,31,1,0,0,,2234B8,6234B8,ff,($34B8) Request for activation of preconditionning from EVC to Climbox,0:No PC requested;1:PC requested ,7EC,30,31,1,0,0,,2234B9,6234B9,ff,($34B9) Pre Conditionning activation request from cluster,0:No PreHeating;1:PreHeating Prog n1;2:PreHeating Prog n2 ,7EC,30,31,1,0,0,,2234BA,6234BA,ff,($34BA) Pre-conditionning request memorized by EVC ,7EC,30,31,1,0,0,,2234BB,6234BB,ff,($34BB) Request for low level battery,0:No alert;1:Not used;2:Battery low alert;3:Unavailable ,7EC,30,31,1,0,0,,2234BC,6234BC,ff,($34BC) Request for flashers when Immediate PreHeating is requested,0:Unavailable;1:No pre heat requested;2:Immediate pre heating authorized;3:Immediate pre heating not authorized ,7EC,24,31,1,0,0,min,2234BD,6234BD,ff,($34BD) Left time calculated before the customer hour programmation ,7EC,24,39,1,0,0,min,2234BE,6234BE,ff,($34BE) Local time received by EVC ,7EC,30,31,1,0,0,,2234BF,6234BF,ff,($34BF) Immediate pre-conditionning request,0:C_METS_TC_NoAuth (No Authorization);1:C_METS_TC_PTCAuth (PTC Authorization only);2:C_METS_TC_ACAuth (AC Authorization only);3:C_METS_TC_Auth ( PTC and AC Authorization) ,7EC,24,31,1,0,0,,2234C0,6234C0,4ff,DIDs supported in range [$34C1 - $34E0] ,7EC,30,31,1,0,0,,2234C1,6234C1,ff,($34C1) Pre Conditionning activation request from climbox,0:No PreHeating;1:PreHeating Prog n1;2:PreHeating Prog n2 ,7EC,30,31,1,0,0,,2234C2,6234C2,ff,($34C2) Defaults and state of the HV PTC description,0:On;1:Off;2:On downgraded;3:Off with fault ,7EC,24,39,1,0,0,min,2234C3,6234C3,ff,($34C3) Scheduled time 1 requested by the customer for the preconditionning system ,7EC,24,39,1,0,0,min,2234C4,6234C4,ff,($34C4) Scheduled time 2 requested by the customer for the preconditionning system ,7EC,31,31,1,0,0,,2234C5,6234C5,ff,($34C5) Request to the BCM to start the counter for vehicle wakeup due to preconditionning ,7EC,31,31,1,0,0,,2234C6,6234C6,ff,($34C6) Request to the BCM to stop the counter for vehicle wakeup due to preconditionning ,7EC,30,31,1,0,0,,2234C7,6234C7,ff,($34C7) Supposed customer departure value ,7EC,24,31,.1,0,1,kW,2234C8,6234C8,ff,($34C8) Power available for Climate functions ,7EC,24,39,.1,0,1,kW,2234C9,6234C9,ff,($34C9) Available charging power necessary to authorize some functions (preconditionning, battery cooling) ,7EC,24,31,25,0,0,W,2234CA,6234CA,ff,($34CA) Available power for preconditionning ,7EC,24,31,2,0,0,%,2234CB,6234CB,ff,($34CB) Cabin blower command ,7EC,24,39,1,0,0,min,2234CC,6234CC,ff,($34CC) Scheduled Time 1 memorized by EVC ,7EC,24,39,1,0,0,min,2234CD,6234CD,ff,($34CD) Scheduled Time 2 memorized by EVC ,7EC,31,31,1,0,0,,2234CE,6234CE,ff,($34CE) Manage Failure Authorization of the HV PTC,0:HV PTC not authorized;1:HV PTC authorized ,7EC,24,31,25,0,0,,2234CF,6234CF,ff,($34CF) Power consumed by the 400V components for Thermal Comfort ,7EC,31,31,1,0,0,,2234D0,6234D0,ff,($34D0) Internal flag : HV Battery Conditionning Authorisation flag ,7EC,24,47,.001,0,3,KWh,2234D1,6234D1,ff,($34D1) This variable allows to memorize the reseted energy consumed 2 ,7EC,24,55,.0001,0,3,,2234D2,6234D2,1ff,($34D2) This variable allows to memorize the reseted distance 2 ,7EC,30,31,1,0,0,,2234D3,6234D3,ff,($34D3) HV Battery Conditionning Activation Autorisation,0:0- No Authorisation;1:1- PTC Authorisation only;2:2- AC Authorisation only;3:3- PTC and AC Autorisation ,7EC,30,31,1,0,0,,2234D4,6234D4,ff,($34D4) Signal of requesting the MMI DoNotTow,0:0- Unavailable;1:1- No ET Alert Do Not Tow Requested;2:2- ET Alert Do Not Tow Requested;3:3- Not Used ,7EC,30,31,1,0,0,,2234D5,6234D5,ff,($34D5) Chiller activation request,0:0- Not used;1:1- No Chiller Activation Requested;2:2- Chiller activation requested;3:3- Unavailable ,7EC,24,31,1,40,0,°C,2234D7,6234D7,ff,($34D7) HVB chiller temperature set point ,7EC,25,31,1,0,0,°C,2234D8,6234D8,ff,($34D8) Water Temperature in BCB ,7EC,30,31,1,0,0,,2234D9,6234D9,ff,($34D9) State of Chiller valves received from CAREG,0:0- no actived valves;1:1- actived valves ,7EC,31,31,1,0,0,,2234DA,6234DA,ff,($34DA) Postal service configuration,0:No Lot of quick Driving Breaks;1:Lot of quick Driving Breaks ,7EC,30,31,1,0,0,,2234DC,6234DC,ff,($34DC) CAN signal for PEB charge mode status V2,0:Unavailable value;1:Not in charge;2:In charge;3:Not used ,7EC,30,31,1,0,0,,2234DD,6234DD,ff,($34DD) Request for PEB Charge mode V2,0:Unavailable value;1:No charge requested;2:Charge requested;3:Not used ,7EC,30,31,1,0,0,,2234DE,6234DE,ff,($34DE) Compressor Configuration V3,0:no compressor;1:Denso compressor;2:Do not use (2);3:Do not use (3) ,7EC,24,31,1,0,0,,2234E0,6234E0,4ff,DIDs supported in range [$34E0 - $3500] ,7EC,24,39,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.9 ,7EC,40,55,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.8 ,7EC,56,71,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.7 ,7EC,72,87,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.6 ,7EC,88,103,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.5 ,7EC,104,119,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.4 ,7EC,120,135,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.3 ,7EC,136,151,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.2 ,7EC,152,167,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.1 ,7EC,168,183,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.0 ,7EC,24,31,1,0,0,,2234E5,6234E5,ff,($34E5) Low level battery warning sent to the MMI,0:Not LED;1:LED ,7EC,24,31,1,0,0,,2234E6,6234E6,ff,($34E6) Empty level battery warning sent to the MMI,0:Not LED;1:LED ,7EC,24,39,.5,60,1,,2234E7,6234E7,ff,($34E7) Coding Signal from CAN data CompTemperatureDischarge ,7EC,24,31,1,0,0,,2234E8,6234E8,ff,($34E8) Coding Signal from CAN data DeIcingRequest,0:Not used;1:De Icing requested;2:De Icing not requested;3:Unavailable ,7EC,24,31,1,0,0,,2234E9,6234E9,ff,($34E9) Ratio of PTC power used ,7EC,24,31,.2,0,1,,2234EA,6234EA,ff,($34EA) Estimation of the current consumed by the PTC ,7EC,24,31,25,0,0,W,2234EB,6234EB,ff,($34EB) Power used by HVPTC ,7EC,24,31,1,0,0,,2234EC,6234EC,ff,($34EC) State of the AC Loop,0:Unavailable;1:A/C Mode;2:A/C to Heat Pump Mode;3:Heat pump mode;4:Heat pump to A/C mode;5:A/C and heat pump OFF;6:Default;7:Not Used ,7EC,24,31,1,0,0,,2234ED,6234ED,ff,($34ED) PreheatingSelectedDisplayRequest,0:No request to display PreHeating state;1:Request to display Preheating state ,7EC,24,39,1,0,0,min,2234EE,6234EE,ff,($34EE) LeftTimeBeforeVehicleWakeUp ,7EC,24,31,1,40,0,°C,2234EF,6234EF,ff,($34EF) HVB Water Cooling Temperature ,7EC,24,31,1,0,0,,2234F0,6234F0,ff,($34F0) Command of battery heater relay,0:Request for opening the battery heater relay;1:Request for closing the battery heater relay ,7EC,24,31,1,0,0,,2234F1,6234F1,ff,($34F1) Request to METS asking for authorisation of battery heating,0:Not Autorized;1:Autorized ,7EC,24,31,.1,0,1,kW,2234F2,6234F2,ff,($34F2) Maximal power authorised for thermal comfort ,7EC,24,39,.1,2730,1,°C,2234F3,6234F3,ff,($34F3)High Voltage min Batt Temp checked by CAN,invalid value limp home strategies,filtred with a diff resolution ,7EC,24,31,1,40,0,°C,2234F4,6234F4,ff,($34F4) Threshold for HVBattery conditioning received from BMS ,7EC,24,31,1,40,0,°C,2234F5,6234F5,ff,($34F5) Threshold for HVBattery conditioning received from BMS (01) ,7EC,24,31,1,40,0,°C,2234F6,6234F6,ff,($34F6) Threshold for HVBattery conditioning received from BMS (02) ,7EC,24,31,1,40,0,°C,2234F7,6234F7,ff,($34F7) Threshold for battery thermal management ,7EC,24,31,1,40,0,°C,2234F8,6234F8,ff,($34F8) Threshold for HVBattery conditioning received from BMS (03) ,7EC,24,31,1,0,0,,2234F9,6234F9,ff,($34F9) Number of authorized stages for CTP battery ,7EC,24,31,1,0,0,,2234FA,6234FA,ff,($34FA) Power authorized for CTP battery activation ,7EC,24,31,1,0,0,,2234FB,6234FB,ff,($34FB) Number of authorized stages for CTP battery taking power allocated into account ,7EC,24,31,1,40,0,°C,2234FC,6234FC,ff,($34FC) Water temperature used for Chiller ,7EC,24,39,.1,2730,1,°C,2234FD,6234FD,ff,($34FD)High Voltage min Batt Temp checked by CAN,invalid value limp home strategies,filtred with a diff resolution(01) ,7EC,31,31,1,0,0,,2234FE,6234FE,ff,($34FE) Authorisation req checking for compressor in charge mode,0:Not Autorized;1:Autorized ,7EC,31,31,1,0,0,,2234FF,6234FF,ff,($34FF) Second water gate when battery is cooled with water,0:Opened;1:Closed ,7EC,24,31,1,0,0,,223500,623500,4ff,DIDs supported in range [$3500 - $3520] ,7EC,24,31,1,0,0,,223502,623502,ff,($3502) FANConfig flag memorised into EVC EEPROM at powelatch,0:GMV by state;1:GMV PWM ,7EC,24,31,1,0,0,,223505,623505,ff,($3505) PLGWConfig flag memorised into EVC EEPROM at powelatch,0:without PLGW;1:with PLGW ,7EC,24,31,1,0,0,,223506,623506,ff,($3506) PlugTypeConfig flag memorised into EVC EEPROM at powelatch,0:Plug Type 2 WITHOUT Temperature sensor;1:Plug Type 1 WITHOUT Temperature sensor;2:Plug Type 2 WITH Temperature sensor;3:Plug Type 1 WITH Temperature sensor ,7EC,24,31,1,0,0,,223508,623508,ff,($3508) AEBS presence for regenerative braking,0:without AEBS;1:with AEBS ,7EC,24,31,1,0,0,,223509,623509,ff,($3509) BatVE presence,0:No Bat VE;1:Bat VE present ,7EC,24,31,1,0,0,,22350A,62350A,ff,($350A) Battery Heating 12V presence,0:0- without Battery Heating;1:1- with Battery Heating ,7EC,24,31,1,0,0,,22350B,62350B,ff,($350B) Raw gear position of PWM lever corresponding to the actual lever position,0:0-Transient;1:1- Park;2:2- Reverse;3:3- Neutral;4:4- Drive ,7EC,24,31,1,0,0,-,22350C,62350C,ff,($350C) flag configuration X61 with Heat pump ,7EC,24,31,1,0,0,-,22350D,62350D,ff,($350D) Response Error HP61 ,7EC,24,39,1,0,0,-,22350E,62350E,ff,($350E) Climatisation Compressor Speed Heat HP61 request ,7EC,24,31,1,0,0,,22350F,62350F,ff,($350F) Climatisation Loop Mode HP61 status,0:0- Unavailable;1:1- AC Mode;2:2- AC deIcing Mode;3:3- not used;4:4- Heat pump;5:5- not used;6:6- demisting;7:7- idle mode ,7EC,24,31,1,0,0,,223510,623510,ff,($3510) Cooling Mode Request,0:0- No cooling mode requested;1:1- Cooling mode;2:2- Heating mode;3:3- Demisting;4:4- Not Used;5:5- Not Used;6:6- Not Used;7:7- Not Used ,7EC,31,31,1,0,0,,223511,623511,ff,($3511) Delcing Request HP61 status,0:0- no de-ice loop requested;1:1- de-ice loop requested ,7EC,24,31,1,0,0,-,223512,623512,ff,($3512) BatVE ShutDown Alert HP61 ,7EC,24,31,1,0,0,,223513,623513,ff,($3513) Cooling Mode Request (01),0:0- No cooling mode requested;1:1- Cooling mode;2:2- Heating mode;3:3- Demisting;4:4- Not Used;5:5- Not Used;6:6- Not Used;7:7- Not Used ,7EC,24,31,1,0,0,,223514,623514,ff,($3514) DeIce Vehicle Request,0:0- No deIce vehicle request;1:1- DeIce vehicle state 1 request (battery loading);2:2- DeIce vehicle state 2 request (preconditionning);3:3- DeIce vehicle state 3 request (high speed driving);4:4- DeIce vehicle state 4 request (idle state driving);5:5- DeIce vehicle state 5 request (low battery SOC);6:6- Not Used;7:7- Not Used ,7EC,24,31,1,0,0,,223515,623515,ff,($3515) Deice Permission,0:0- Unavailable;1:1- DeIce not permetted;2:2- DeIce permetted;3:3- Not Used ,7EC,24,31,1,0,0,,223516,623516,ff,($3516) Heating Mode Request,0:0- No heating mode requested;1:1- Thermal comfort;2:2- Preconditionning;3:3- Battery Heating;4:4- Not Used;5:5- Not Used;6:6- Not Used;7:7- Not Used ,7EC,24,31,1,0,0,-,223517,623517,ff,($3517) PTC Number Thermal BCM request ,7EC,24,39,1,0,0,°C,223518,623518,ff,($3518) Water Temperature SetPoint HP61 ,7EC,24,31,1,0,0,%,223519,623519,ff,($3519) BlowerSpeed PH61 status ,7EC,24,39,.1,2730,1,°C,22351A,62351A,ff,($351A) Temperature Evaporation SetPoint HP61 request ,7EC,24,31,1,40,0,°C,22351B,62351B,ff,($351B) Temperature Hot Source HP61 ,7EC,24,31,1,0,0,-,22351C,62351C,ff,($351C) Hot Mode HP61 ,7EC,24,31,1,0,0,-,22351D,62351D,ff,($351D) flag configuration X61 with Heat pump ,7EC,24,31,1,0,0,,22351E,62351E,ff,($351E) Cooling fluid config (01),0:0- 1234YF;1:1- R134a ,7EC,24,31,1,0,0,,22351F,62351F,ff,($351F) AC Heat pump circuit Valve 1 managed by PAC system on LIN,0:0 - no request;1:1 - request for opening valve during xx secondes;2:2 - request for closing valve during xx secondes;3:3 - Not Used ,7EC,24,31,1,0,0,,223520,623520,4ff,DIDs supported in range [$3520 - $3540] ,7EC,30,31,1,0,0,,223521,623521,ff,($3521) AC Heat pump circuit Valve 2 managed by PAC system on LIN,0:0 - no request;1:1 - request for opening valve during xx secondes;2:2 - request for closing valve during xx secondes;3:3 - Not Used ,7EC,28,31,1,0,0,,223522,623522,ff,($3522) IH_FailureValve1_HP61_status ,7EC,28,31,1,0,0,,223523,623523,ff,($3523) IH_FailureValve2_HP61_status ,7EC,28,31,1,0,0,,223524,623524,ff,($3524) VH_FailureSensor2_HP61_status ,7EC,28,31,1,0,0,,223525,623525,ff,($3525) VH_FailureSensor1_HP61_status ,7EC,24,39,1,0,0,,223526,623526,ff,($3526) Reset fault identifying number ,7EC,31,31,1,0,0,,223527,623527,ff,($3527) Preheating requested by the customer ,7EC,31,31,1,0,0,,223528,623528,ff,($3528) Authorization boolean from METS for PreheatByKey f(SOC) ,7EC,31,31,1,0,0,,223529,623529,ff,($3529) Authorization boolean from METS for Preheat f(SOC) ,7EC,30,31,1,0,0,,22352A,62352A,ff,($352A) Less power range by AC to decrease IHM range autonomy ,7EC,31,31,1,0,0,,22352B,62352B,ff,($352B) B_Batt_BlowerState for MCS ,7EC,31,31,1,0,0,,22352C,62352C,ff,($352C) B_CTP_Rly_ConfirmedFail to MCS ,7EC,24,31,1,0,0,,22352D,62352D,ff,($352D) K_LessPowerRangeByAC for MMI display X07 ,7EC,24,31,.5,0,1,,22352E,62352E,ff,($352E) ClimTempDisplay ,7EC,24,31,1,40,0,°C,22352F,62352F,ff,($352F) Internal Temp ,7EC,24,55,1,-2147483648,0,s,223530,623530,1ff,($3530) V_Timer_ChargeWEP_ON ,7EC,24,55,1,-2147483648,0,s,223531,623531,1ff,($3531) V_Timer_DrivWEP_ON ,7EC,24,31,1,0,0,,223532,623532,ff,($3532) Contry configuration,0:0 - Remain of the world;1:1 - USA;2:2 - Canada;3:3 - Japan;4:4 - Switzerland;5:5 - Australia;6:6 - Gulf states;7:7 - United Kingdom;8:8 - China ,7EC,31,31,1,0,0,,223533,623533,ff,($3533) DeIcing Activation,0:0- Not activated;1:1- Activated ,7EC,30,31,1,0,0,,223534,623534,ff,($3534) HV Battery cooling State,0:0- No HV Battery cooling;1:1- HV Battery cooling mode alone;2:2- HV Battery cooling mode coupled;3:3- Unavailable ,7EC,31,31,1,0,0,,223535,623535,ff,($3535) DeIce Activation Authorisation flag,0:0- Not Autorized;1:1- Autorized ,7EC,29,31,1,0,0,,223536,623536,ff,($3536) HV Battery Condtionning mode,0:0- CondVentil;1:1- CondCool;2:2- CondHeat;3:3- CondNotReq;4:4- CondHeat ,7EC,24,31,5,0,0,%,223537,623537,ff,($3537) IH_Pct_EngineFanSpeedPWM_HP61 ,7EC,28,31,1,0,0,,223538,623538,ff,($3538) IH_StateValve1_HP61_status ,7EC,28,31,1,0,0,,223539,623539,ff,($3539) IH_StateValve2_HP61_status ,7EC,24,39,.5,60,1,°C,22353A,62353A,ff,($353A) Physical value of the sensor NTC1 (Td) ,7EC,24,39,.5,32767,1,°C,22353B,62353B,ff,($353B) Physical value of the sensor NTC2 (Ts) ,7EC,31,31,1,0,0,,22353C,62353C,ff,($353C) VH_ChillerInDriveON ,7EC,28,31,1,0,0,,22353D,62353D,ff,($353D) Number of batt CTP or Thp water requested ,7EC,30,31,1,0,0,,22353E,62353E,ff,($353E) VH_BattThpNumberThermalReq ,7EC,29,31,1,0,0,,22353F,62353F,ff,($353F) Raw gear position of lever by CAN corresponding to the actual lever position,0:0-Transient;1:1- Park;2:2- Reverse;3:3- Neutral;4:4- Drive ,7EC,24,31,1,0,0,,223540,623540,4ff,DIDs supported in range [$3540 - $3560] ,7EC,24,31,1,0,0,,223541,623541,ff,($3541) Boolean of Charge limitation during Very cold preheat,0:No limitation;1:Limitation of charge ,7EC,24,39,1,0,0,,223542,623542,ff,($3542) Value of the safety torque structure monitoring status flags before the hot-reset ,7EC,24,31,1,40,0,°C,223543,623543,ff,Temperature plug vehicle ,7EC,24,47,1,0,0,min,223544,623544,ff,($3544) Time spent since first ignition of the vehicle for the last extrafeeding.00 ,7EC,48,71,1,0,0,min,223544,623544,ff,($3544) Time spent since first ignition of the vehicle for the last extrafeeding.01 ,7EC,72,95,1,0,0,min,223544,623544,ff,($3544) Time spent since first ignition of the vehicle for the last extrafeeding.02 ,7EC,96,119,1,0,0,min,223544,623544,ff,($3544) Time spent since first ignition of the vehicle for the last extrafeeding.03 ,7EC,120,143,1,0,0,min,223544,623544,ff,($3544) Time spent since first ignition of the vehicle for the last extrafeeding.04 ,7EC,144,167,1,0,0,min,223544,623544,ff,($3544) Time spent since first ignition of the vehicle for the last extrafeeding.05 ,7EC,168,191,1,0,0,min,223544,623544,ff,($3544) Time spent since first ignition of the vehicle for the last extrafeeding.06 ,7EC,192,215,1,0,0,min,223544,623544,ff,($3544) Time spent since first ignition of the vehicle for the last extrafeeding.07 ,7EC,24,31,1,40,0,°C,223545,623545,ff,($3545) CAN signal for external temperature of the vehicle for the last extrafeeding.00 ,7EC,32,39,1,40,0,°C,223545,623545,ff,($3545) CAN signal for external temperature of the vehicle for the last extrafeeding.01 ,7EC,40,47,1,40,0,°C,223545,623545,ff,($3545) CAN signal for external temperature of the vehicle for the last extrafeeding.02 ,7EC,48,55,1,40,0,°C,223545,623545,ff,($3545) CAN signal for external temperature of the vehicle for the last extrafeeding.03 ,7EC,56,63,1,40,0,°C,223545,623545,ff,($3545) CAN signal for external temperature of the vehicle for the last extrafeeding.04 ,7EC,64,71,1,40,0,°C,223545,623545,ff,($3545) CAN signal for external temperature of the vehicle for the last extrafeeding.05 ,7EC,72,79,1,40,0,°C,223545,623545,ff,($3545) CAN signal for external temperature of the vehicle for the last extrafeeding.06 ,7EC,80,87,1,40,0,°C,223545,623545,ff,($3545) CAN signal for external temperature of the vehicle for the last extrafeeding.07 ,7EC,24,39,.0005,0,3,V,223546,623546,ff,($3546) No Load Battery Voltage for the last extrafeeding.00 ,7EC,40,55,.0005,0,3,V,223546,623546,ff,($3546) No Load Battery Voltage for the last extrafeeding.01 ,7EC,56,71,.0005,0,3,V,223546,623546,ff,($3546) No Load Battery Voltage for the last extrafeeding.02 ,7EC,72,87,.0005,0,3,V,223546,623546,ff,($3546) No Load Battery Voltage for the last extrafeeding.03 ,7EC,88,103,.0005,0,3,V,223546,623546,ff,($3546) No Load Battery Voltage for the last extrafeeding.04 ,7EC,104,119,.0005,0,3,V,223546,623546,ff,($3546) No Load Battery Voltage for the last extrafeeding.05 ,7EC,120,135,.0005,0,3,V,223546,623546,ff,($3546) No Load Battery Voltage for the last extrafeeding.06 ,7EC,136,151,.0005,0,3,V,223546,623546,ff,($3546) No Load Battery Voltage for the last extrafeeding.07 ,7EC,24,31,1,0,0,,223547,623547,ff,($3547) DID for identifying the resaon why perfo are limited in motor mot,0:Not used;1:Tq_Max_Bat_MotorMot;2:Tq_Max_Bat_Anticipation_Mot;3:Flag_UnderVolt_Pack;4:Flag_UnderVolt_Cell;5:Flag_Activ_Regul_Therm_Mot;6:Flag_Activation_Wat_Regul_Therm_Mot ,7EC,24,39,1,0,0,,22354E,62354E,ff,Counter: number of time Park is engaged when the vehicle is running ,7EC,24,39,.01,0,2,km/h,22354F,62354F,ff,Maximum vehicle speed when Park is engaged ,7EC,24,39,1,0,0,,223550,623550,ff,Counter: number of shaft revolution when Park is engaged ,7EC,24,39,1,0,0,kWh/100,223553,623553,ff,Memorisation value of average consumption ,7EC,24,39,1,0,0,kWh/100,223554,623554,ff,Memorisation value of average consumption 2 ,7EC,24,31,1,0,0,,22F800,62F800,4ff,DIDs supported in range [$F801 - $F820] ,7EC,24,55,1,0,0,,22F804,62F804,1ff,($F804) $09 - OBD calibration identifications.7 ,7EC,56,87,1,0,0,,22F804,62F804,1ff,($F804) $09 - OBD calibration identifications.6 ,7EC,88,119,1,0,0,,22F804,62F804,1ff,($F804) $09 - OBD calibration identifications.5 ,7EC,120,151,1,0,0,,22F804,62F804,1ff,($F804) $09 - OBD calibration identifications.4 ,7EC,152,183,1,0,0,,22F804,62F804,1ff,($F804) $09 - OBD calibration identifications.3 ,7EC,184,215,1,0,0,,22F804,62F804,1ff,($F804) $09 - OBD calibration identifications.2 ,7EC,216,247,1,0,0,,22F804,62F804,1ff,($F804) $09 - OBD calibration identifications.1 ,7EC,248,279,1,0,0,,22F804,62F804,1ff,($F804) $09 - OBD calibration identifications.0 ,7EC,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/EVC_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 0A,Not compatible 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 20,test 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature F1,Safety Case 1 F2,Safety Case 2 F3,Multiple Failure F4,Temperature too Low F5,Negative Loop Error F6,Positive Loop Error F7,Initialisation not valid F8,Overspeed F9,Limp Home FA,Specific Supplier FB,- FC,-- FD,Drift low FE,Drift high ================================================ FILE: app/src/main/assets/ZOE/FFC_Fields.csv ================================================ # SID (defaults to ID.startBit.[responseId]), ID (hex), startBit, endBit, resolution, offset (aplied BEFORE resolution multiplication), decimals, unit, requestID (hex string), responseID (hex string), options (hex, see MainActivity for definitions), optional name, optional list # # FFC is not displayed in the DTC activity so doe not require Tests and Dtcs # Other than the ISO-TP based fields, FCC needs to have it's frames defined # Source: X10 CAN_V v4.0 officiel 01072011 65610-2011-173.xls # ,023,0,15,1,0,0,,,,ff,AIRBAGCrash ,0c6,0,15,1,32768,1,°,,,ff,Steering Position ,0c6,16,31,1,32768,1,°/s,,,ff,Steering Acceleration ,0c6,32,47,1,32768,1,°,,,ff,SteeringWheelAngle_Offset ,0c6,48,50,1,0,0,,,,ff,SwaSensorInternalStatus ,0c6,51,54,1,0,0,,,,ff,SwaClock ,0c6,56,63,1,0,0,,,,ff,SwaChecksum ,12e,0,7,1,198,0,,,,ff,LongitudinalAccelerationProc ,12e,8,23,1,32768,0,,,,ff,TransversalAcceleration ,12e,24,35,0.1,2047,1,deg/s,,,ff,Yaw rate ,130,8,10,1,0,0,,,,ff,UBP_Clock ,130,11,12,1,0,0,,,,ff,HBB_Malfunction ,130,16,17,1,0,0,,,,ff,EB_Malfunction ,130,18,19,1,0,0,,,,ff,EB_inProgress ,130,20,31,1,4094,0,Nm,,,ff,ElecBrakeWheelsTorqueRequest ,130,32,38,1,0,0,%,,,ff,BrakePedalDriverWill ,130,40,41,1,0,0,,,,ff,HBA_ActivationRequest ,130,42,43,1,0,0,,,,ff,PressureBuildUp ,130,44,55,-3,4094,0,Nm,,,ff,DriverBrakeWheelTq_Req ,130,56,63,1,0,0,,,,ff,CheckSum_UBP ,17a,24,27,1,0,0,,,,ff,Transmission Range ,17a,48,63,0.5,12800,1,Nm,,,ff,Estimated Wheel Torque ,17e,40,41,1,0,0,,,,ff,CrankingAuthorisation_AT ,17e,48,51,1,0,0,,,,ff,GearLeverPosition ,186,0,15,0.125,0,2,rpm,,,ff,Engine RPM ,186,16,27,0.5,800,1,Nm,,,ff,MeanEffectiveTorque ,186,28,39,0.5,800,0,Nm,,,ff,RequestedTorqueAfterProc ,186,40,49,0.125,0,1,%,,,ff,Throttle ,186,50,50,1,0,0,,,,ff,ASR_MSRAcknowledgement ,186,51,52,1,0,0,,,,ff,ECM_TorqueRequestStatus ,18a,16,25,0.125,0,2,%,,,ff,Throttle ,18a,27,38,0.5,800,1,Nm,,,ff,Coasting Torque ,1f6,0,1,1,0,0,,,,ff,Engine Fan Speed ,1f6,3,7,100,0,0,W,,,ff,Max Electrical Power Allowed ,1f6,8,9,1,0,0,,,,ff,ElectricalPowerCutFreeze ,1f6,10,11,1,0,0,,,,ff,EngineStatus_R ,1f6,12,15,1,0,0,,,,ff,EngineStopRequestOrigine ,1f6,16,17,1,0,0,,,,ff,CrankingAuthorization_ECM ,1f6,19,20,1,0,1,,,,ff,Brake Pedal ,1f6,23,31,0.1,0,1,bar,,,ff,AC High Pressure Sensor ,1f8,0,7,1,0,0,,,,ff,Checksum EVC ,1f8,12,13,1,0,0,,,,ff,EVCReadyAsActuator ,1f8,16,27,1,4096,0,Nm,,,ff,TotalPotentialResistiveWheelsTorque ,1f8,28,39,-1,4096,0,Nm,,,ff,ElecBrakeWheelsTorqueApplied ,1f8,40,50,10,0,0,Rpm,,,ff,ElecEngineRPM ,1f8,52,54,1,0,0,,,,ff,EVC_Clock ,1f8,56,58,1,0,0,,,,ff,GearRangeEngagedCurrent ,1f8,62,63,1,0,0,,,,ff,DeclutchInProgress ,1fd,0,7,0.390625,0,1,%,,,ff,14V Battery Current? ,1fd,8,9,1,0,0,,,,ff,SCH Refuse to Sleep ,1fd,17,18,1,0,0,,,,ff,Stop Preheating Counter ,1fd,19,20,1,0,0,,,,ff,Start Preheating Counter ,1fd,21,31,1,0,0,min,,,ff,Time left before vehicle wakeup ,1fd,32,32,1,0,0,,,,ff,Pre heating activation ,1fd,33,39,1,0,0,min,,,ff,LeftTimeToScheduledTime ,1fd,40,47,25,0,0,W,,,ff,Climate Available Power ,1fd,48,55,1,80,0,kW,,,ff,Consumption ,212,8,9,1,0,0,,,,ff,Starter Status ,212,10,11,1,0,0,,,,ff,Rear Gear Engaged ,242,0,0,1,0,0,,,,ff,ABS in Regulation ,242,1,1,1,0,0,,,,ff,ABS Malfunction ,242,2,2,1,0,0,,,,ff,ASR in Regulation ,242,3,3,1,0,0,,,,ff,ASR Malfunction ,242,5,5,1,0,0,,,,ff,AYC in Regulation ,242,6,6,1,0,0,,,,ff,AYC Malfunction ,242,7,7,1,0,0,,,,ff,MSR in Regulation ,242,8,8,1,0,0,,,,ff,MSR Malfunction ,242,9,12,1,0,0,,,,ff,ESP Clock ,242,13,15,1,0,0,,,,ff,ESP Torque Control Type ,242,16,27,0.5,800,1,Nm,,,ff,ASR Dynamic Torque Request ,242,28,39,0.5,800,1,Nm,,,ff,ASR Static Torque Request ,242,40,51,0.5,800,1,Nm,,,ff,MSR Torque Request ,29a,0,15,0.0416666666666667,0,2,rpm,,,ff,Rpm Front Right ,29a,16,31,0.0416666666666667,0,2,rpm,,,ff,Rpm Front Left ,29a,32,47,0.01,0,2,km/h,,,ff,Vehicle Speed ,29a,52,55,1,0,0,,,,ff,Vehicle Speed Clock ,29a,56,63,1,0,0,,,,ff,Vehicle Speed Checksum ,29c,0,15,0.0416666666666667,0,2,rpm,,,ff,Rpm Rear Right ,29c,16,31,0.0416666666666667,0,2,rpm,,,ff,Rpm Rear Left ,29c,48,63,0.01,0,2,km/h,,,ff,Vehicle Speed ,2b7,32,33,1,0,0,,,,ff,EBD Active ,2b7,34,35,1,0,0,,,,ff,HBA Active ,2b7,36,37,1,0,0,,,,ff,ESC HBB Malfunction ,352,0,1,1,0,0,,,,ff,ABS Warning Request ,352,2,3,1,0,0,,,,ff,ESP Stop Lamp Request ,352,24,31,1,0,0,,,,ff,Brake pressure ,35c,0,1,1,0,0,,,,ff,BCM Wake Up Sleep Command ,35c,4,4,1,0,0,,,,ff,Wake Up Type ,35c,5,7,1,0,0,,,,ff,Vehicle State ,35c,8,8,1,0,0,,,,ff,Diag Mux On BCM ,35c,9,10,1,0,0,,,,ff,Starting Mode BCM R ,35c,11,11,1,0,0,,,,ff,Engine Stop Driver Requested ,35c,12,12,1,0,0,,,,ff,Switch Off SES Disturbers ,35c,15,15,1,0,0,,,,ff,Delivery Mode Information ,35c,16,39,1,0,0,min,,,ff,Absolute Time Since 1rst Ignition ,35c,40,42,1,0,0,,,,ff,Brake Info Status ,35c,47,47,1,0,0,,,,ff,ProbableCustomer Feed Back Need ,35c,48,51,1,0,0,,,,ff,Emergency Engine Stop ,35c,52,52,1,0,0,,,,ff,Welcome Phase State ,35c,53,54,1,0,0,,,,ff,Supposed Customer Departure ,35c,55,55,1,0,0,,,,ff,VehicleOutside Locked State ,35c,58,59,1,0,0,,,,ff,Generic Applicative Diag Enable ,35c,60,61,1,0,0,,,,ff,Parking Brake Status ,391,15,15,1,0,0,,,,e2,Climate Cooling Select ,391,16,16,1,0,0,,,,e2,Blower State ,391,22,22,1,0,0,,,,e2,ACVbat Tempo Maintain ,391,28,28,1,0,0,,,,e2,Rear Defrost Request ,391,32,33,1,0,0,,,,e2,Clim Customer Action ,391,36,39,1,0,0,,,,e2,PTC Number Thermal Request ,3b7,17,25,1,0,0,day,,,ff,Time Before Draining ,3b7,32,38,1,0,0,,,,ff,Global Eco Score ,3f7,0,4,1,0,0,,,,e2,Range ,3f7,10,10,1,0,0,,,,e2,AT Open Door Warning ,3f7,11,11,1,0,0,,,,e2,AT Press Brake Pedal Request ,3f7,12,12,1,0,0,,,,e2,AT Gear Shift Refused ,427,0,1,1,0,0,,,,ff,HV Connection Status ,427,2,3,1,0,0,,,,ff,Charging Alert ,427,4,5,1,0,0,,,,ff,HV Battery Locked ,427,26,28,1,0,0,,,,ff,Pre Heating Progress ,427,40,47,0.3,0,0,kW,,,e2,Available Charging Power ,427,49,57,0.1,0,1,kWh,,,e2,Available Energy ,427,58,58,1,0,0,,,,e2,Charge Available ,42a,0,0,1,0,0,,,,e2,PreHeating Request ,42a,6,15,0.1,40,1,°C,,,e2,Evaporator Temp Set Point ,42a,24,29,1,0,0,%,,,e2,Clim Air Flow ,42a,30,39,0.1,40,1,°C,,,ff,Evaporator Temp Measure ,42a,48,50,1,0,0,,,,e2,Clim Loop Mode ,42a,51,52,1,0,0,,,,e2,PTC Activation Request ,42a,56,60,5,0,0,%,,,e2,Engine Fan Speed Request PWM ,42e,0,12,0.02,0,2,%,,,e3,State of Charge ,42e,18,19,1,0,0,,,,ff,HV Bat Level2 Failure ,42e,20,24,5,0,0,%,,,e2,Engine Fan Speed ,42e,25,34,0.5,0,0,V,,,ff,HV Network Voltage ,42e,38,43,1,0,1,A,,,e3,Charging Pilot Current ,42e,44,50,1,40,0,°C,,,e3,HV Battery Temp ,42e,56,63,0.3,0,1,kW,,,ff,Charging Power ,430,0,9,10,0,0,rpm,,,e2,Clim Compressor Speed RPM Request ,430,16,22,1,0,0,%,,,e2,High Voltage PTC Request PWM ,430,24,33,0.5,30,1,°C,,,e2,Comp Temperature Discharge ,430,34,35,1,0,0,,,,e2,DeIcing Request ,430,36,37,1,0,0,,,,e2,Clim Panel PC Activation Request ,430,38,39,1,0,0,,,,e2,HV Battery Cooling State ,430,40,49,0.1,40,1,°C,,,e2,HV Battery Evaporator Temp ,430,50,59,0.1,40,1,°C,,,e2,HV Battery Evaporator Setpoint ,432,0,1,1,0,0,,,,e2,Bat VE Shut Down Alert ,432,2,3,1,0,0,,,,e2,Immediate Preheating Authorization Status ,432,4,5,1,0,0,,,,e2,HV Battery Level Alert ,432,6,9,1,0,0,,,,e2,HVBatCondPriorityLevel ,432,10,19,10,0,0,rpm,,,e2,Clim Comp RPM Status ,432,20,22,1,0,0,,,,e2,Clim Comp Default Status ,432,26,28,1,0,0,,,,e2,PTC Default Status ,432,29,35,1,40,0,°C,,,e2,HV Batt Cond Temp Average ,432,36,37,1,0,0,,,,e2,HV Bat Conditionning Mode ,432,40,41,1,0,0,,,,e2,Eco Mode Request ,432,42,48,100,0,0,Wh,,,e2,Climate Available Energy ,432,56,57,1,0,0,,,,e2,Low Voltage Unballast Request ,432,59,60,1,0,0,,,,e2,DeIcing Authorisation ,433,0,2,1,0,0,,,,e2,AQM Frag Select Request ,433,7,8,1,0,0,,,,e2,AQM Ioniser Mode Selection Req ,433,9,12,1,0,0,,,,e2,AQM Frag Intensity Request ,433,15,16,1,0,0,,,,e2,Clim AQS Activation Request ,433,28,29,1,0,0,,,,e2,Ioniser Auto Launch Request ,4f8,0,1,-1,-2,0,,,,ff,Start ,4f8,4,5,-1,-2,0,,,,ff,Parking Brake ,4f8,8,9,1,0,0,,,,ff,AIRBAG Malfunction Lamp State ,4f8,12,12,1,0,0,,,,ff,Cluster Driven Lamps Auto Check ,4f8,13,13,1,0,0,,,,ff,Displayed Speed Unit ,4f8,24,39,0.01,0,2,,,,ff,Speed on Display ,534,32,40,1,40,0,°C,,,5,Temp out ,5d7,0,15,0.01,0,2,km/h,,,ff,Speed ,5d7,16,43,0.01,0,2,km,,,ff,Odometer ,5d7,50,54,0.04,0,2,cm,,,ff,Fine distance ,5da,0,7,1,40,0,ºC,,,5,Water temperature ,5de,1,1,1,0,0,,,,ff,Right Indicator ,5de,2,2,1,0,0,,,,ff,Left Indicator ,5de,3,3,1,0,0,,,,ff,Rear Fog Light ,5de,5,5,1,0,0,,,,ff,Park Light ,5de,6,6,1,0,0,,,,ff,Head Light ,5de,7,7,1,0,0,,,,ff,Beam Light ,5de,8,9,1,0,0,,,,ff,Position Lights Omission Warning ,5de,10,10,1,0,0,,,,ff,ALS malfunction ,5de,11,12,1,0,0,,,,ff,Door Front Left ,5de,13,14,1,0,0,,,,ff,Door Front Right ,5de,16,17,1,0,0,,,,ff,Door Rear Left ,5de,18,19,1,0,0,,,,ff,Door Rear Right ,5de,21,22,1,0,0,,,,ff,Steering Lock Failure ,5de,23,23,1,0,0,,,,ff,Unlocking Steering Column Warning ,5de,24,24,1,0,0,,,,ff,Automatic Lock Up Activation State ,5de,25,25,1,0,0,,,,ff,Badge Battery Low ,5de,28,29,1,0,0,,,,ff,Trip Display Scrolling Request ,5de,32,35,1,0,0,,,,ff,Smart Keyless Information Display ,5de,36,36,1,0,0,,,,ff,Keyless Info Reemission Request ,5de,37,37,1,0,0,,,,ff,Keyless Card Reader Failure Display ,5de,47,47,1,0,0,,,,ff,Brake Switch Fault Display ,5de,49,49,1,0,0,,,,ff,Stop Lamp Failure Display ,5de,56,57,1,0,0,,,,ff,Rear Wiper Status ,5de,58,59,1,0,0,,,,ff,Boot Open Warning ,5e9,0,0,1,0,0,,,,ff,UPAFailureDisplayRequest ,5e9,9,11,1,0,0,,,,ff,FrontParkAssistVolState ,5e9,12,12,1,0,0,,,,ff,RearParkAssistState ,5e9,28,31,1,0,0,,,,ff,RearLeftObstacleZone ,5e9,32,35,1,0,0,,,,ff,RearCenterObstacleZone ,5e9,36,39,1,0,0,,,,ff,RearRightObstacleZone ,5e9,40,42,1,0,0,,,,ff,UPAMode ,5e9,48,48,1,0,0,,,,ff,UPA_SoundRecurrenceType ,5e9,49,55,10,0,1,Hz,,,ff,UPA_SoundRecurrencePeriod ,5e9,56,58,1,0,0,,,,ff,UPA_SoundObstacleZone ,5e9,59,59,1,0,0,,,,ff,UPA_SoundActivationBeep ,5e9,60,60,1,0,0,,,,ff,UPA_SoundErrorBeep ,5e9,61,62,1,0,0,,,,ff,UPA_SoundUseContext ,5ee,0,0,1,0,0,,,,ff,Parking Light ,5ee,1,1,1,0,0,,,,ff,Head Light ,5ee,2,2,1,0,0,,,,ff,Beam Light ,5ee,8,10,1,0,0,,,,ff,Front Wiping Request ,5ee,11,15,100,0,0,W,,,ff,Electrical Power Drived ,5ee,16,16,1,0,0,,,,ff,Climate Cooling Request ,5ee,19,19,1,0,0,,,,ff,PTC Thermal Regulator Freeze ,5ee,21,23,1,0,0,,,,ff,User Identification ,5ee,24,24,1,0,0,,,,ff,Day Night Status For Backlights ,5ee,27,27,1,0,0,,,,ff,Driver Door State ,5ee,28,28,1,0,0,,,,ff,Passenger Door State ,5ee,29,31,1,0,0,,,,ff,Start Button Pushed ,5ee,32,39,0.4,0,0,%,,,ff,Night Rheostated Light Max Percent ,5ee,40,40,1,0,0,,,,ff,Light Sensor Status ,5ee,43,47,50,0,0,W,,,ff,Right Solar Level Info ,5ee,48,52,50,0,0,W,,,ff,Left Solar Level Info ,5ee,59,59,1,0,0,,,,ff,Day Running Light Request ,5ee,60,63,50,0,0,W/m2,,,ff,Visible Solar Level Info ,62c,0,1,1,0,0,,,,ff,EPS Warning ,62d,0,9,0.1,0,0,kWh/100km,,,ff,Worst Average Consumption ,62d,10,19,0.1,0,0,kWh/100km,,,ff,Best Average Consumption ,62d,20,28,100,0,0,W,,,ff,BCB Power Mains ,634,0,1,1,0,0,,,,ff,TCU Refuse to Sleep ,634,2,3,1,0,0,,,,ff,Ecall Function Failure Display ,634,4,7,1,0,0,,,,ff,ECALL State Display ,634,8,14,15,0,0,min,,,ff,Charging Timer Value Status ,634,15,15,1,0,0,,,,ff,Remote Pre AC Activation ,634,16,17,1,0,0,,,,ff,Charging Timer Status ,634,18,19,1,0,0,,,,ff,Charge Prohibited ,634,20,21,1,0,0,,,,ff,Charge Authorization ,634,22,23,1,0,0,,,,ff,External Charging Manager ,637,0,9,10,0,0,kWh,,,ff,Consumption Since Mission Start ,637,10,19,10,0,0,kWh,,,ff,Recovery Since Mission Start ,637,20,29,10,0,0,kWh,,,ff,Aux Consumption Since Mission Start ,637,32,38,1,0,0,%,,,ff,Speed Score Indicator Display ,637,40,51,1,0,0,kWh,,,ff,Total Recovery ,637,52,52,1,0,0,,,,ff,Open Charge Flap Warning Display ,638,0,7,1,80,0,kW,,,ff,Traction Instant Consumption ,638,8,17,1,0,0,km,,,ff,Vehicle Autonomy Min ,638,18,27,1,0,0,km,,,ff,Vehicle Autonomy Max ,638,32,36,1,0,0,kW,,,ff,AuxInstant Consumption ,638,37,39,1,0,0,,,,ff,Battery 14v To Be Changed Display ,646,1,3,1,0,0,,,,ff,Trip Unit Consumption ,646,4,5,1,0,0,,,,ff,Trip Unit Distance ,646,6,15,0.1,0,1,kWh/100km,,,ff,Average trip B consumpion ,646,16,32,0.1,0,1,km,,,ff,Trip B distance ,646,33,47,0.1,0,1,kWh,,,ff,trip B consumption ,646,48,59,0.1,0,1,km/h,,,ff,Average trip B speed ,650,1,2,1,0,0,,,,ff,Energy Flow For Energy Recovering Display ,650,6,7,1,0,0,,,,ff,Energy Flow For Traction Display ,650,8,9,1,0,0,,,,ff,Short Range Display ,650,10,11,1,0,0,,,,ff,Quick Drop Iteration Exceeded Display ,650,12,13,1,0,0,,,,ff,Quick Drop Lock Failure Display ,650,14,15,1,0,0,,,,ff,Quick Drop Unlocked Display ,650,16,22,1,0,0,%,,,ff,Advisor Econometer ,650,30,31,1,0,0,,,,ff,Cranking Plugged Display ,650,40,41,1,0,0,,,,ff,Clim Programmed PC Display ,650,42,44,1,0,0,,,,ff,Pre Heating State Display ,653,0,0,1,0,0,,,,ff,Crash Detected ,653,1,1,1,0,0,,,,ff,Crash DetectionOutOfOrder ,653,8,9,1,0,0,,,,ff,Driver Safety Belt Reminder ,653,10,11,1,0,0,,,,ff,Front Passenger Safety Belt Reminder ,653,12,12,1,0,0,,,,ff,Passenger AIRBAG Inhibition ,653,13,13,1,0,0,,,,ff,AIRBAG Malfunction ,653,14,15,1,0,0,,,,ff,Second Row Center Safety Belt State ,653,16,17,1,0,0,,,,ff,Second Row Left Safety Belt State ,653,18,19,1,0,0,,,,ff,Second Row Right Safety Belt State ,653,20,20,1,0,0,,,,ff,Valid AIRBAG Information ,654,2,2,1,0,0,,,,ff,Charging Plug Connected ,654,3,3,1,0,0,,,,ff,Driver Walk Away Engine ON ,654,4,4,1,0,0,,,,ff,HVBatteryUnballastAlert ,654,25,31,1,0,0,,,,ff,State of Charge ,654,32,41,1,0,0,min,,,ff,Time to Full ,654,42,51,1,0,0,km,,,ff,Available Distance ,654,52,61,0.1,0,1,kWh/100km,,,ff,Average Consumption ,654,62,62,1,0,0,,,,ff,HV Battery Low ,656,3,3,1,0,0,,,,ff,Trip Data Reset ,656,21,31,1,0,0,min,,,ff,Cluster Scheduled Time ,656,32,42,1,0,0,min,,,ff,Cluster Scheduled Time 2 ,656,48,55,1,40,0,°C,,,e2,External Temp ,656,56,57,1,0,0,,,,e2,Clim PC Customer Activation ,657,0,1,1,0,0,,,,ff,PreHeatingActivationRequest ,657,8,9,1,0,0,,,,ff,PreHeatingActivationRequestedByKey ,657,10,11,1,0,0,,,,ff,TechnicalWakeUpType ,657,12,13,1,0,0,,,,ff,UnlockChargingPlugRequestedByKey ,658,0,31,1,0,0,,,,ff,Battery Serial N° ,658,33,39,1,0,0,%,,,ff,Battery Health ,658,42,42,1,0,0,,,,ff,Charging ,65b,0,10,1,0,0,min,,,ff,Schedule timer 1 min ,65b,12,22,1,0,0,min,,,ff,Schedule timer 2 min ,65b,24,30,1,0,0,%,,,ff,Fluent driver ,65b,33,34,1,0,0,,,,ff,Economy Mode displayed ,65b,39,40,1,0,0,,,,ff,Consider eco mode ,65b,41,43,1,0,0,,,,ff,Charging Status Display ,65b,44,45,1,0,0,,,,ff,Set park for charging ,665,0,1,1,0,0,,,,ff,Auto Lock Up Activation Request ,665,13,15,1,0,0,,,,ff,Front Park Assist Volume Req ,665,16,17,1,0,0,,,,ff,Rear Park Assist Activation Req ,665,28,29,1,0,0,,,,ff,Auto Rear Wiper Activation Request ,665,40,41,1,0,0,,,,ff,Charging Timer Request ,665,42,48,15,0,0,min,,,ff,Charging Timer Value Request ,666,0,0,1,0,0,,,,ff,ESP In Regulation Display Request ,666,1,1,1,0,0,,,,ff,ESP In Default Display Request ,666,3,3,1,0,0,,,,ff,ASR Activation State For Display ,666,4,4,1,0,0,,,,ff,ABS In Default Display Request ,666,6,6,1,0,0,,,,ff,EBV In Default Display Request ,666,7,7,1,0,0,,,,ff,Emergency Braking Failure ,666,8,8,1,0,0,,,,ff,ABS-ESP Lamps Auto Check ,666,14,14,1,0,0,,,,ff,ABS or ESP In Calibrating Diag ,666,15,15,1,0,0,,,,ff,ABS or ESP To Be Calibrated ,666,23,23,1,0,0,,,,ff,HSA Failure Display Request ,668,0,1,1,0,0,,,,ff,Clim AQS Activation State ,668,4,7,1,0,0,,,,ff,AQM Frag Intensity State ,668,8,10,1,0,0,,,,ff,AQM Frag Select State ,668,11,13,1,0,0,,,,ff,AQM Ioniser Mode State ,668,14,15,1,0,0,,,,ff,Ioniser Auto Launch State ,66a,5,7,1,0,0,,,,ff,Cruise Control Mode ,66a,8,15,1,0,0,km/h,,,ff,Cruise Control Speed ,66a,16,16,1,0,0,,,,ff,Cruise Control OverSpeed ,66d,0,1,1,0,0,,,,ff,Braking System Defective Display ,66d,2,3,1,0,0,,,,ff,Braking System To Be Checked Display ,66d,4,5,1,0,0,,,,ff,UBP To Be Calibrated ,66d,6,7,1,0,0,,,,ff,UBP In Calibrating Diag ,66d,8,9,1,0,0,,,,ff,UBP Lamp Auto Check ,673,0,0,1,0,0,,,,ff,Speed pressure misadaptation ,673,2,4,1,0,0,,,,ff,Rear right wheel state ,673,5,7,1,0,0,,,,ff,Rear left wheel state ,673,8,10,1,0,0,,,,ff,Front right wheel state ,673,11,13,1,0,0,,,,ff,Front left wheel state ,673,16,23,13.725,0,0,mbar,,,ff,Rear right wheel pressure ,673,24,31,13.725,0,0,mbar,,,ff,Rear left wheel pressure ,673,32,39,13.725,0,0,mbar,,,ff,Front right wheel pressure ,673,40,47,13.725,0,0,mbar,,,ff,Front left wheel pressure ,68b,0,3,1,0,0,,,,ff,MM action counter ,68c,21,31,1,0,0,min,,,ff,Local Time ,699,0,1,1,0,0,,,,e2,Clima off Request display ,699,2,3,1,0,0,,,,e2,Clima read defrost Request display ,699,4,6,1,1,0,,,,e2,Cima mode ,699,8,15,0.5,0,0,°C,,,e2,Temperature ,699,16,19,1,0,0,,,,e2,Clima Flow ,699,20,21,1,0,0,,,,e2,Forced recycling ,699,22,23,1,0,0,,,,e2, ,699,24,27,1,0,0,,,,e2, ,699,28,31,1,0,0,,,,e2,Clim Last Func Modified By Customer ,699,32,33,1,0,0,,,,e2,Clim MMI Activation Request ,699,34,39,2,0,0,%,,,e2,Clim AQS Indicator ,699,40,45,1,0,0,min,,,e2,Clim AQM Ioniser Max Timer Display ,699,46,51,1,0,0,min,,,e2,Clim AQM Ioniser Timer Display ,699,52,53,1,0,0,,,,e2,Clim Auto Display ,699,54,55,1,0,0,,,,e2,Clim AC Off Display ,699,56,57,1,0,0,,,,e2,Clim Clearness Display ,699,58,59,1,0,0,,,,e2,Clim Display Menu PC ,699,60,61,1,0,0,,,,e2,Energy Flow For Thermal Comfort Display ,699,63,63,1,0,0,,,,e2,Clim Eco Low Soc Display ,69f,0,31,1,0,0,,,,ff,Car Serial N° ,6f8,0,1,1,0,0,,,,ff,USM Refuse to Sleep ,6f8,4,4,1,0,0,,,,ff,Ignition Supply Confirmation ,6f8,5,5,1,0,0,,,,ff,Front Wiper Stop Position ,6f8,6,7,1,0,0,,,,ff,Front Wiper Status ,6f8,11,11,1,0,0,,,,ff,Ignition Control State ,6f8,16,23,0.0625,0,2,V,,,ff,14V Battery Voltage ,6fb,8,9,1,0,0,,,,ff,Global Vehicle Warning State ,6fb,32,39,250,0,0,km,,,ff,Fixed Maintenance Range ================================================ FILE: app/src/main/assets/ZOE/FFC_Frames.csv ================================================ #Frame ID,interval ZOE, interval FLUKAN, Sending ECU #023,4,4,AIBAG # only sent at the moment of a crash 0C6,10,10,EPS 12E,10,10,ESC 130,10,10,UBP 17A,10,10,EVC 17E,10,10,EVC 186,10,10,EVC 18A,10,10,EVC 1F6,10,10,EVC 1F8,10,10,EVC 1FD,100,100,EVC 212,20,20,USM 242,20,20,ESC 29A,20,20,ESC 29C,20,20,ESC 2B7,20,20,ESC 352,40,200,ESC 354,40,40,ESC 35C,100,100,BCM 391,50,50,CLIM 3B7,100,100,CLUSTER 3F7,60,60,EVC 427,100,100,EVC 42A,100,100,CLIM 42E,100,100,EVC 430,100,100,CLIM 432,100,100,EVC 433,1000,1000,CLUSTER 4F8,100,100,CLUSTER 500,100,100,BCM 505,100,100,BCM 511,100,100,EVC 534,100,100,BCM 552,100,100,BCM 563,100,100,EPS #5D1,60000,60000,CLUSTER # this frame is AFAIK only sent at bootup 5D7,100,100,ESC 5DA,100,100,EVC 5DE,100,100,BCM 5E9,100,100,UPA 5EE,100,100,BCM 62C,100,100,EPS 62D,500,500,EVC 634,100,100,TCU 637,500,500,EVC 638,100,100,EVC 646,500,500,CLUSTER 650,100,300,EVC 653,100,100,AIRBAG 654,500,500,EVC 656,100,100,CLUSTER 657,100,100,BCM 658,3000,3000,EVC 65B,100,100,EVC 665,3000,3000,CLUSTER 666,100,200,ESC 668,100,100,CLIMA 66A,100,100,EVC 66D,100,100,UBP 671,9999,100, 673,100,100,BCM 68B,100,100,CLUSTER 68C,1000,1000,CLUSTER 699,1000,1000,CLIMA 69F,1000,1000,BCM 6F8,100,100,USM 6FB,3000,3000,CLUSTER ================================================ FILE: app/src/main/assets/ZOE/HVAC_Dtcs.csv ================================================ F003,VBatt 9101,InCarTemp 9104,EvapTemp 9105,ECU 9160,RecyActr 9171,RightMixActr 9162,FeetVentActr 910B,AQS_Reductor 911B,AQS_Oxydant 912B,AQS_Supply 913B,AQS_PreHeating 9106,LeftSolarSensor 9103,HumiditySensor 9150,LIN_Bus 9165,AQM_FragranceMotor 9166,AQM_Ionizer 9175,AQM_FragranceBlower 9151,LIN2_Bus 9176,AQM_IonizerMode 91A7,FrontControlPanel 9114,HotSourceTemp 9113,BatteryEvapTemp 9109,BlowerControl 9184,RelayOutput 9133,CompValve 9185,BatteryBlowerSystem1 9186,BatteryBlowerSystem2 9187,CabinCoolingElectroVanne 9188,BatteryCoolingElectroVanne 91D4,HeatPumpECU 91D7,HeatPumpSensor1 91D8,HeatPumpSensor2 91D5,HeatPumpValve1 91D6,HeatPumpValve2 9161,DistMildActr 9182,BatteryCoolingActr 9183,BatteryBlowerControl 91BD,SpareOutput1 91CB,SpareInput1 91CC,SpareInput2 9170,LeftMixActr ================================================ FILE: app/src/main/assets/ZOE/HVAC_Fields.csv ================================================ ,764,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession ,764,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,764,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,764,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,37221:AQM_FragranceMotor;37222:AQM_Ionizer;37237:AQM_FragranceBlower;37147:AQS_Oxydant;37179:AQS_PreHeating;37131:AQS_Reductor;37163:AQS_Supply;37238:AQM_IonizerMode;37251:BatteryBlowerControl;37253:BatteryBlowerSystem1;37250:BatteryCoolingActr;37254:BatteryBlowerSystem2;37139:BatteryEvapTemp;37129:BlowerControl;37255:CabinCoolingElectroVanne;37171:CompValve;37217:DistMildActr;37125:ECU;37124:EvapTemp;37218:FeetVentActr;37256:BatteryCoolingElectroVanne;37287:FrontControlPanel;37332:HeatPumpECU;37335:HeatPumpSensor1;37333:HeatPumpValve1;37334:HeatPumpValve2;37140:HotSourceTemp;37123:HumiditySensor;37121:InCarTemp;37232:LeftMixActr;37126:LeftSolarSensor;37200:LIN_Bus;37201:LIN2_Bus;37216:RecyActr;37252:RelayOutput;37233:RightMixActr;37323:SpareInput1;37324:SpareInput2;37309:SpareOutput1;37336:HeatPumpSensor2;61443:VBatt ,764,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) - PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,764,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,764,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,764,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,764,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,764,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,764,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,764,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,764,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,764,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,764,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,764,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,764,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,764,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,764,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,764,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,764,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,764,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,764,16,23,1,0,0,,2102,6102,ff,CL_VehicleType,0:Not Configured;9:X98;16:X10 ,764,16,23,1,0,0,,2103,6103,ff,CL_ACType,0:Not Configured;1:Manual Monozone;2:Heater - Chauffo;16:Monozone Regulated - CAREG MZ ,764,16,23,1,0,0,,2104,6104,ff,CL_PTCType,0:Not Configured;1:Without PTC;9:PTC 900W;16:PTC 1000W;21:PTC 1500W;24:PTC 1800W ,764,16,23,1,0,0,,2105,6105,ff,CL_CountryCfg,0:Not Configured;1:zone 1 (mild);2:zone 2;3:zone 3;4:zone 4 ,764,16,23,1,0,0,,2106,6106,ff,CL_Steering,0:Not Configured;1:Right Hand Drive;2:Left Hand Drive ,764,16,23,1,0,0,,2107,6107,ff,CL_CompType,0:Not Configured;1:Compressor 1 (Ext Ctrl - Clutch);33:Compressor 5 (Electrical Vehicle);67:Compressor 3 (Int Ctrl - Clutch);68:Compressor 4 (Fixed Cap - Clutch);129:Compressor 2 (Ext Ctrl - Clutchless) ,764,16,23,.01,0,2,,2108,6108,ff,CL_CompPulleyRatio ,764,16,23,1,0,0,,2109,6109,ff,CL_WithEvapSensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor ,764,16,23,1,0,0,,210A,610A,ff,CL_WithSolarSensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor;3:KL_SensorByCAN ,764,16,23,1,0,0,,210B,610B,ff,CL_WithAirQualitySensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor ,764,16,23,1,0,0,,210C,610C,ff,CL_WindshieldType,0:Not Configured;1:KL_WithoutWindshieldOption;2:KL_WithFtDefrost;3:KL_WithHeatReflecting;4:KL_WithFtDefrost&HeatReflecting ,764,16,23,1,0,0,,210D,610D,ff,CL_WithLINBus,0:Not Configured;1:KL_WithoutLINBus;2:KL_WithLINBus ,764,16,23,1,0,0,,210E,610E,ff,CL_WithHumiditySensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor ,764,16,23,1,0,0,,210F,610F,ff,CL_WithExtTempSensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor;3:KL_SensorByCAN ,764,16,23,1,0,0,,2111,6111,ff,CL_ColdLoopType,0:Not Configured;1:Cold Loop inside ECU Clim;2:Cold Loop outside ECU Clim ,764,16,143,1,0,0,,2114,6114,4ff,CL_DiagnosticConfiguration ,764,16,23,1,0,0,,2115,6115,ff,CL_EngineType,0:Not Configured;1:Thermic engine;3:Electrical engine ,764,16,23,1,0,0,,2116,6116,ff,CL_WithInCarTempSensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor ,764,16,23,1,0,0,,2117,6117,ff,CL_WithHotSourceSensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor ,764,16,23,1,0,0,,2119,6119,ff,CL_WithLINBus2,0:Not Configured;1:KL_WithoutLINBus2;2:KL_WithLINBus2 ,764,16,23,1,0,0,,211A,611A,ff,CL_WithBatteryBlower,0:Not Configured;1:KL_WithoutOutput;2:KL_WithLocalOutput ,764,16,23,1,0,0,,211B,611B,ff,CL_WithRelayOutput,0:Not Configured;1:KL_WithoutOutput;2:KL_WithLocalOutput ,764,16,23,1,0,0,,211E,611E,ff,CL_WithHPM,0:Not Configured;1:WithoutHPM;2:WithHPM ,764,16,23,1,0,0,,211F,611F,ff,KH_RemoteEnable,0:Enable (0);1:Disable (1) ,764,16,25,.1,400,1,°C,2121,6121,ff,IH_EvapTemp ,764,26,35,.1,400,1,°C,2121,6121,ff,IH_InCarTemp ,764,36,43,.5,0,1,%,2121,6121,ff,IH_RHumidity ,764,44,59,.0048828125,0,3,mV,2121,6121,ff,IH_OxydantRatio ,764,60,75,.0048828125,0,3,mV,2121,6121,ff,IH_ReductorRatio ,764,81,85,50,0,0,W/m²,2121,6121,ff,IH_LeftSolarLevel ,764,86,86,1,0,0,,2121,6121,ff,OH_UnderLoadStatus,0:No Underload;1:Underload ,764,89,95,.01,0,2,A,2121,6121,ff,IH_ACCompValveCurrent ,764,96,103,1,0,0,%,2121,6121,ff,OH_BlowerReq ,764,104,111,.1,0,1,V,2121,6121,ff,IH_Vbatt ,764,113,119,1,0,0,%,2121,6121,ff,OH_ACCompValveCommand ,764,120,127,1,0,0,,2121,6121,ff,VL_ActiveDiagnosticSession,129:Default Session;133:Programming Session;134:Development Session;192:APV Session (Assembly Line testing an After-Sales);240:Tune Phase Session ,764,128,138,.1,0,1,°C,2121,6121,ff,IH_HotSourceTemp ,764,139,146,1,0,0,%,2121,6121,ff,OH_BattBlowerReq ,764,147,147,1,0,0,,2121,6121,ff,OH_BattBlowerRelayReq,0:Off;1:On ,764,148,148,1,0,0,,2121,6121,ff,OH_CabinCoolingEVReq,0:Off;1:On ,764,149,149,1,0,0,,2121,6121,ff,OH_BatteryCoolingEVReq,0:Off;1:On ,764,150,159,.1,400,1,°C,2121,6121,ff,IH_BattEvapTemp ,764,160,167,.5,0,1,%,2121,6121,ff,IH_BattBlowerVoltRatio ,764,18,18,1,0,0,,2125,6125,ff,VL_LeftSolarLevelDiag_OCFP,0:False;1:True ,764,19,19,1,0,0,,2125,6125,ff,VL_LeftSolarLevelDiag_SCFP,0:False;1:True ,764,20,20,1,0,0,,2125,6125,ff,VL_InCarTempDiag_OCFP,0:False;1:True ,764,21,21,1,0,0,,2125,6125,ff,VL_InCarTempDiag_SCFP,0:False;1:True ,764,22,22,1,0,0,,2125,6125,ff,VL_EvapTempDiag_OCFP,0:False;1:True ,764,23,23,1,0,0,,2125,6125,ff,VL_EvapTempDiag_SCFP,0:False;1:True ,764,24,24,1,0,0,,2125,6125,ff,VL_HeatAQSDiag_OCFP,0:False;1:True ,764,25,25,1,0,0,,2125,6125,ff,VL_HeatAQSDiag_SCFP,0:False;1:True ,764,26,26,1,0,0,,2125,6125,ff,VL_AQS_VrefSupply_BAT_SCFP,0:False;1:True ,764,27,27,1,0,0,,2125,6125,ff,VL_AQS_VrefSupply_GND_SCFP,0:False;1:True ,764,28,28,1,0,0,,2125,6125,ff,VL_OxydantDiag_OCFP,0:False;1:True ,764,29,29,1,0,0,,2125,6125,ff,VL_OxydantDiag_SCFP,0:False;1:True ,764,30,30,1,0,0,,2125,6125,ff,VL_ReductorDiag_OCFP,0:False;1:True ,764,31,31,1,0,0,,2125,6125,ff,VL_ReductorDiag_SCFP,0:False;1:True ,764,32,32,1,0,0,,2125,6125,ff,VL_LINComDiag_ERFP,0:False;1:True ,764,35,35,1,0,0,,2125,6125,ff,VL_EEPROM_ERFP,0:False;1:True ,764,36,36,1,0,0,,2125,6125,ff,VL_VBattDiag_FP,0:False;1:True ,764,37,37,1,0,0,,2125,6125,ff,VL_RHumidityDiag_BFFP,0:False;1:True ,764,38,38,1,0,0,,2125,6125,ff,VL_RHumidityDiag_OCFP,0:False;1:True ,764,39,39,1,0,0,,2125,6125,ff,VL_RHumidityDiag_SCFP,0:False;1:True ,764,40,40,1,0,0,,2125,6125,ff,VL_RecyActrDiag_OCFP,0:False;1:True ,764,41,41,1,0,0,,2125,6125,ff,VL_RecyActrDiag_SCFP,0:False;1:True ,764,42,42,1,0,0,,2125,6125,ff,VL_FeetVentActrDiag_OCFP,0:False;1:True ,764,43,43,1,0,0,,2125,6125,ff,VL_FeetVentActrDiag_SCFP,0:False;1:True ,764,44,44,1,0,0,,2125,6125,ff,VL_RightMixActrDiag_OCFP,0:False;1:True ,764,45,45,1,0,0,,2125,6125,ff,VL_RightMixActrDiag_SCFP,0:False;1:True ,764,49,49,1,0,0,,2125,6125,ff,VL_Config_ERFP,0:False;1:True ,764,65,65,1,0,0,,2125,6125,ff,VL_AQMCP_Ionizer_OCFP,0:False;1:True ,764,66,66,1,0,0,,2125,6125,ff,VL_AQMCP_Ionizer_SCFP,0:False;1:True ,764,67,67,1,0,0,,2125,6125,ff,VL_AQMCP_FragranceBlower_OCFP,0:False;1:True ,764,68,68,1,0,0,,2125,6125,ff,VL_AQMCP_FragranceBlower_SCFP,0:False;1:True ,764,69,69,1,0,0,,2125,6125,ff,VL_AQMCP_FragranceMotor_OCFP,0:False;1:True ,764,70,70,1,0,0,,2125,6125,ff,VL_AQMCP_FragranceMotor_SCFP,0:False;1:True ,764,73,73,1,0,0,,2125,6125,ff,VL_IonizerMode_OCFP,0:False;1:True ,764,74,74,1,0,0,,2125,6125,ff,VL_IonizerMode_SCFP,0:False;1:True ,764,97,97,1,0,0,,2125,6125,ff,VL_BlowerControlDiag_OCFP,0:False;1:True ,764,98,98,1,0,0,,2125,6125,ff,VL_BlowerControlDiag_SCFP,0:False;1:True ,764,99,99,1,0,0,,2125,6125,ff,VL_BattBlowerControlDiag_SCFP,0:False;1:True ,764,100,100,1,0,0,,2125,6125,ff,VL_BattBlowerControlDiag_OCFP,0:False;1:True ,764,101,101,1,0,0,,2125,6125,ff,VL_RelayOutputDiag_OCFP,0:False;1:True ,764,102,102,1,0,0,,2125,6125,ff,VL_RelayOutputDiag_SCFP,0:False;1:True ,764,103,103,1,0,0,,2125,6125,ff,VL_CompValveDiag_OCFP,0:False;1:True ,764,104,104,1,0,0,,2125,6125,ff,VL_CompValveDiag_SCFP,0:False;1:True ,764,107,107,1,0,0,,2125,6125,ff,VL_BatteryCoolingActrDiag_OCFP,0:False;1:True ,764,108,108,1,0,0,,2125,6125,ff,VL_BatteryCoolingActrDiag_SCFP,0:False;1:True ,764,109,109,1,0,0,,2125,6125,ff,VL_LIN2ComDiag_ERFP,0:False;1:True ,764,110,110,1,0,0,,2125,6125,ff,VL_FrontCPComDiag_DCFP,0:False;1:True ,764,111,111,1,0,0,,2125,6125,ff,VL_HPMComDiag_DCFP,0:False;1:True ,764,112,112,1,0,0,,2125,6125,ff,VL_HeatPumpValve1Diag_OCFP,0:False;1:True ,764,113,113,1,0,0,,2125,6125,ff,VL_HeatPumpValve1Diag_SCFP,0:False;1:True ,764,114,114,1,0,0,,2125,6125,ff,VL_HeatPumpValve2Diag_OCFP,0:False;1:True ,764,115,115,1,0,0,,2125,6125,ff,VL_HeatPumpValve2Diag_SCFP,0:False;1:True ,764,116,116,1,0,0,,2125,6125,ff,VL_HeatPumpSensor1Diag_OCFP,0:False;1:True ,764,117,117,1,0,0,,2125,6125,ff,VL_HeatPumpSensor1Diag_SCFP,0:False;1:True ,764,118,118,1,0,0,,2125,6125,ff,VL_HeatPumpSensor2Diag_OCFP,0:False;1:True ,764,119,119,1,0,0,,2125,6125,ff,VL_HeatPumpSensor2Diag_SCFP,0:False;1:True ,764,120,120,1,0,0,,2125,6125,ff,VL_HotSourceTempDiag_OCFP,0:False;1:True ,764,121,121,1,0,0,,2125,6125,ff,VL_HotSourceTempDiag_SCFP,0:False;1:True ,764,124,124,1,0,0,,2125,6125,ff,VL_HeatPumpValve1Diag_SCPFP,0:False;1:True ,764,125,125,1,0,0,,2125,6125,ff,VL_HeatPumpValve2Diag_SCPFP,0:False;1:True ,764,126,126,1,0,0,,2125,6125,ff,VL_BattBlowerSystDefaultType1_FP,0:No failure;1:Failure ,764,127,127,1,0,0,,2125,6125,ff,VL_BattBlowerSystDefaultType2_FP,0:No failure;1:Failure ,764,128,128,1,0,0,,2125,6125,ff,VL_BattEvapTempDiag_OCFP,0:False;1:True ,764,129,129,1,0,0,,2125,6125,ff,VL_BattEvapTempDiag_SCFP,0:False;1:True ,764,130,130,1,0,0,,2125,6125,ff,VL_CabinCoolingEV_OCFP,0:False;1:True ,764,131,131,1,0,0,,2125,6125,ff,VL_CabinCoolingEV_SCFP,0:False;1:True ,764,132,132,1,0,0,,2125,6125,ff,VL_BatteryCoolingEV_OCFP,0:False;1:True ,764,133,133,1,0,0,,2125,6125,ff,VL_BatteryCoolingEV_SCFP,0:False;1:True ,764,18,18,1,0,0,,2126,6126,ff,VL_LeftSolarLevelDiag_OCFM,0:False;1:True ,764,19,19,1,0,0,,2126,6126,ff,VL_LeftSolarLevelDiag_SCFM,0:False;1:True ,764,20,20,1,0,0,,2126,6126,ff,VL_InCarTempDiag_OCFM,0:False;1:True ,764,21,21,1,0,0,,2126,6126,ff,VL_InCarTempDiag_SCFM,0:False;1:True ,764,22,22,1,0,0,,2126,6126,ff,VL_EvapTempDiag_OCFM,0:False;1:True ,764,23,23,1,0,0,,2126,6126,ff,VL_EvapTempDiag_SCFM,0:False;1:True ,764,24,24,1,0,0,,2126,6126,ff,VL_HeatAQSDiag_OCFM,0:False;1:True ,764,25,25,1,0,0,,2126,6126,ff,VL_HeatAQSDiag_SCFM,0:False;1:True ,764,26,26,1,0,0,,2126,6126,ff,VL_AQS_VrefSupply_BAT_SCFM,0:False;1:True ,764,27,27,1,0,0,,2126,6126,ff,VL_AQS_VrefSupply_GND_SCFM,0:False;1:True ,764,28,28,1,0,0,,2126,6126,ff,VL_OxydantDiag_OCFM,0:False;1:True ,764,29,29,1,0,0,,2126,6126,ff,VL_OxydantDiag_SCFM,0:False;1:True ,764,30,30,1,0,0,,2126,6126,ff,VL_ReductorDiag_OCFM,0:False;1:True ,764,31,31,1,0,0,,2126,6126,ff,VL_ReductorDiag_SCFM,0:False;1:True ,764,32,32,1,0,0,,2126,6126,ff,VL_LINComDiag_ERFM,0:False;1:True ,764,35,35,1,0,0,,2126,6126,ff,VL_EEPROM_ERFM,0:False;1:True ,764,36,36,1,0,0,,2126,6126,ff,VL_VBattDiag_FM,0:False;1:True ,764,37,37,1,0,0,,2126,6126,ff,VL_RHumidityDiag_BFFM,0:False;1:True ,764,38,38,1,0,0,,2126,6126,ff,VL_RHumidityDiag_OCFM,0:False;1:True ,764,39,39,1,0,0,,2126,6126,ff,VL_RHumidityDiag_SCFM,0:False;1:True ,764,40,40,1,0,0,,2126,6126,ff,VL_RecyActrDiag_OCFM,0:False;1:True ,764,41,41,1,0,0,,2126,6126,ff,VL_RecyActrDiag_SCFM,0:False;1:True ,764,42,42,1,0,0,,2126,6126,ff,VL_FeetVentActrDiag_OCFM,0:False;1:True ,764,43,43,1,0,0,,2126,6126,ff,VL_FeetVentActrDiag_SCFM,0:False;1:True ,764,44,44,1,0,0,,2126,6126,ff,VL_RightMixActrDiag_OCFM,0:False;1:True ,764,45,45,1,0,0,,2126,6126,ff,VL_RightMixActrDiag_SCFM,0:False;1:True ,764,49,49,1,0,0,,2126,6126,ff,VL_Config_ERFM,0:False;1:True ,764,65,65,1,0,0,,2126,6126,ff,VL_AQMCP_Ionizer_OCFM,0:False;1:True ,764,66,66,1,0,0,,2126,6126,ff,VL_AQMCP_Ionizer_SCFM,0:False;1:True ,764,67,67,1,0,0,,2126,6126,ff,VL_AQMCP_FragranceBlower_OCFM,0:False;1:True ,764,68,68,1,0,0,,2126,6126,ff,VL_AQMCP_FragranceBlower_SCFM,0:False;1:True ,764,69,69,1,0,0,,2126,6126,ff,VL_AQMCP_FragranceMotor_OCFM,0:False;1:True ,764,70,70,1,0,0,,2126,6126,ff,VL_AQMCP_FragranceMotor_SCFM,0:False;1:True ,764,73,73,1,0,0,,2126,6126,ff,VL_IonizerMode_OCFM,0:False;1:True ,764,74,74,1,0,0,,2126,6126,ff,VL_IonizerMode_SCFM,0:False;1:True ,764,97,97,1,0,0,,2126,6126,ff,VL_BlowerControlDiag_OCFM,0:False;1:True ,764,98,98,1,0,0,,2126,6126,ff,VL_BlowerControlDiag_SCFM,0:False;1:True ,764,99,99,1,0,0,,2126,6126,ff,VL_BattBlowerControlDiag_SCFM,0:False;1:True ,764,100,100,1,0,0,,2126,6126,ff,VL_BattBlowerControlDiag_OCFM,0:False;1:True ,764,101,101,1,0,0,,2126,6126,ff,VL_RelayOutputDiag_OCFM,0:False;1:True ,764,102,102,1,0,0,,2126,6126,ff,VL_RelayOutputDiag_SCFM,0:False;1:True ,764,103,103,1,0,0,,2126,6126,ff,VL_CompValveDiag_OCFM,0:False;1:True ,764,104,104,1,0,0,,2126,6126,ff,VL_CompValveDiag_SCFM,0:False;1:True ,764,107,107,1,0,0,,2126,6126,ff,VL_BatteryCoolingActrDiag_OCFM,0:False;1:True ,764,108,108,1,0,0,,2126,6126,ff,VL_BatteryCoolingActrDiag_SCFM,0:False;1:True ,764,109,109,1,0,0,,2126,6126,ff,VL_LIN2ComDiag_ERFM,0:False;1:True ,764,110,110,1,0,0,,2126,6126,ff,VL_FrontCPComDiag_DCFM,0:False;1:True ,764,111,111,1,0,0,,2126,6126,ff,VL_HPMComDiag_DCFM,0:False;1:True ,764,112,112,1,0,0,,2126,6126,ff,VL_HeatPumpValve1Diag_OCFM,0:False;1:True ,764,113,113,1,0,0,,2126,6126,ff,VL_HeatPumpValve1Diag_SCFM,0:False;1:True ,764,114,114,1,0,0,,2126,6126,ff,VL_HeatPumpValve2Diag_OCFM,0:False;1:True ,764,115,115,1,0,0,,2126,6126,ff,VL_HeatPumpValve2Diag_SCFM,0:False;1:True ,764,116,116,1,0,0,,2126,6126,ff,VL_HeatPumpSensor1Diag_OCFM,0:False;1:True ,764,117,117,1,0,0,,2126,6126,ff,VL_HeatPumpSensor1Diag_SCFM,0:False;1:True ,764,118,118,1,0,0,,2126,6126,ff,VL_HeatPumpSensor2Diag_OCFM,0:False;1:True ,764,119,119,1,0,0,,2126,6126,ff,VL_HeatPumpSensor2Diag_SCFM,0:False;1:True ,764,120,120,1,0,0,,2126,6126,ff,VL_HotSourceTempDiag_OCFM,0:False;1:True ,764,121,121,1,0,0,,2126,6126,ff,VL_HotSourceTempDiag_SCFM,0:False;1:True ,764,124,124,1,0,0,,2126,6126,ff,VL_HeatPumpValve1Diag_SCPFM,0:False;1:True ,764,125,125,1,0,0,,2126,6126,ff,VL_HeatPumpValve2Diag_SCPFM,0:False;1:True ,764,126,126,1,0,0,,2126,6126,ff,VL_BattBlowerSystDefaultType1_FM,0:No failure;1:Failure ,764,127,127,1,0,0,,2126,6126,ff,VL_BattBlowerSystDefaultType2_FM,0:No failure;1:Failure ,764,128,128,1,0,0,,2126,6126,ff,VL_BattEvapTempDiag_OCFM,0:False;1:True ,764,129,129,1,0,0,,2126,6126,ff,VL_BattEvapTempDiag_SCFM,0:False;1:True ,764,130,130,1,0,0,,2126,6126,ff,VL_CabinCoolingEV_OCFM,0:False;1:True ,764,131,131,1,0,0,,2126,6126,ff,VL_CabinCoolingEV_SCFM,0:False;1:True ,764,132,132,1,0,0,,2126,6126,ff,VL_BatteryCoolingEV_OCFM,0:False;1:True ,764,133,133,1,0,0,,2126,6126,ff,VL_BatteryCoolingEV_SCFM,0:False;1:True ,764,17,23,1,0,0,% of total range [min - max],2127,6127,ff,OH_FeetVentActrReq ,764,41,47,1,0,0,% of total range [min - max],2127,6127,ff,OH_RecyActrReq ,764,49,55,1,0,0,% of total range [min - max],2127,6127,ff,OH_RightMixActrReq ,764,65,71,1,0,0,% of total range [min - max],2127,6127,ff,IH_FeetVentActrPosition ,764,89,95,1,0,0,% of total range [min - max],2127,6127,ff,IH_RecyActrPosition ,764,97,103,1,0,0,% of total range [min - max],2127,6127,ff,IH_RightMixActrPosition ,764,129,135,1,0,0,% of total range [min - max],2127,6127,ff,OH_BatteryCoolingActrReq ,764,137,143,1,0,0,% of total range [min - max],2127,6127,ff,IH_BatteryCoolingActrPosition ,764,16,16,1,0,0,,2128,6128,ff,IH_ACLongPushState,0:no long push detected;1:long push detected ,764,17,17,1,0,0,,2128,6128,ff,IH_ACPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,18,18,1,0,0,,2128,6128,ff,IH_AirQualityLongPushState,0:no long push detected;1:long push detected ,764,19,19,1,0,0,,2128,6128,ff,IH_AirQualityPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,20,20,1,0,0,,2128,6128,ff,IH_AutoFastLongPushState,0:no long push detected;1:long push detected ,764,21,21,1,0,0,,2128,6128,ff,IH_AutoFastPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,22,22,1,0,0,,2128,6128,ff,IH_AutoNormalLongPushState,0:no long push detected;1:long push detected ,764,23,23,1,0,0,,2128,6128,ff,IH_AutoNormalPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,24,24,1,0,0,,2128,6128,ff,IH_AutoSoftLongPushState,0:no long push detected;1:long push detected ,764,25,25,1,0,0,,2128,6128,ff,IH_AutoSoftPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,26,26,1,0,0,,2128,6128,ff,IH_BlowerDnLongPushState,0:no long push detected;1:long push detected ,764,27,27,1,0,0,,2128,6128,ff,IH_BlowerDnPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,28,28,1,0,0,,2128,6128,ff,IH_BlowerUpLongPushState,0:no long push detected;1:long push detected ,764,29,29,1,0,0,,2128,6128,ff,IH_BlowerUpPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,30,30,1,0,0,,2128,6128,ff,IH_ClearnessLongPushState,0:no long push detected;1:long push detected ,764,31,31,1,0,0,,2128,6128,ff,IH_ClearnessPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,32,32,1,0,0,,2128,6128,ff,IH_DistDegiMildLongPushState,0:no long push detected;1:long push detected ,764,33,33,1,0,0,,2128,6128,ff,IH_DistDegiMildPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,34,34,1,0,0,,2128,6128,ff,IH_DistFeetLongPushState,0:no long push detected;1:long push detected ,764,35,35,1,0,0,,2128,6128,ff,IH_DistFeetPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,36,36,1,0,0,,2128,6128,ff,IH_DistVentLongPushState,0:no long push detected;1:long push detected ,764,37,37,1,0,0,,2128,6128,ff,IH_DistVentPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,38,38,1,0,0,,2128,6128,ff,IH_DualModeLongPushState,0:no long push detected;1:long push detected ,764,39,39,1,0,0,,2128,6128,ff,IH_DualModePushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,40,40,1,0,0,,2128,6128,ff,IH_ForcedFreshAirLongPushState,0:no long push detected;1:long push detected ,764,41,41,1,0,0,,2128,6128,ff,IH_ForcedFreshAirPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,42,42,1,0,0,,2128,6128,ff,IH_ForcedRecyLongPushState,0:no long push detected;1:long push detected ,764,43,43,1,0,0,,2128,6128,ff,IH_ForcedRecyPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,44,44,1,0,0,,2128,6128,ff,IH_LeftTempDnLongPushState,0:no long push detected;1:long push detected ,764,45,45,1,0,0,,2128,6128,ff,IH_LeftTempDnPushToggle,0:transition means switch pressed;1:transition to 1 means switch pressed ,764,46,46,1,0,0,,2128,6128,ff,IH_LeftTempUpLongPushState,0:no long push detected;1:long push detected ,764,47,47,1,0,0,,2128,6128,ff,IH_LeftTempUpPushToggle,0:transition means switch pressed;1:transition to 1 means switch pressed ,764,48,48,1,0,0,,2128,6128,ff,IH_ModeOffLongPushState,0:no long push detected;1:long push detected ,764,49,49,1,0,0,,2128,6128,ff,IH_ModeOffPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,50,50,1,0,0,,2128,6128,ff,IH_RearDefLongPushState,0:no long push detected;1:long push detected ,764,51,51,1,0,0,,2128,6128,ff,IH_RearDefPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,52,52,1,0,0,,2128,6128,ff,IH_RearLongPushState,0:no long push detected;1:long push detected ,764,53,53,1,0,0,,2128,6128,ff,IH_RearPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,54,54,1,0,0,,2128,6128,ff,IH_RightTempDnLongPushState,0:no long push detected;1:long push detected ,764,55,55,1,0,0,,2128,6128,ff,IH_RightTempDnPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,56,56,1,0,0,,2128,6128,ff,IH_RightTempUpLongPushState,0:no long push detected;1:long push detected ,764,57,57,1,0,0,,2128,6128,ff,IH_RightTempUpPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,58,63,1,0,0,,2128,6128,ff,OH_LeftTempDisplay,0:No display;2:All segment displayed;4:Display OF;6:Display --;8:Display LO;10:Display HI;11:5-5;12:6;13:6-5;14:7;15:7-5;16:8;17:8-5;18:9;19:9-5;20:10;21:10-5;22:11;23:11-5;24:12;25:12-5;26:13;27:13-5;28:14;29:14-5;30:15;31:15-5;32:16;33:16-5;34:17;35:17-5;36:18;37:18-5;38:19;39:19-5;40:20;41:20-5;42:21;43:21-5;44:22;45:22-5;46:23;47:23-5;48:24;49:24-5;50:25;51:25-5;52:26;53:26-5;54:27;55:27-5;56:28;57:28-5;58:29;59:29-5;60:30 ,764,64,69,.5,0,1,,2128,6128,ff,OH_RightTempDisplay ,764,70,70,1,0,0,,2128,6128,ff,OH_ACOnDisplay,0:No display;1:Display indicator ,764,71,71,1,0,0,,2128,6128,ff,OH_ACOffDisplay,0:No display;1:Display indicator ,764,72,75,1,0,0,,2128,6128,ff,OH_DistDisplay,1:Feet Arrow;2:Aerator Arrow;4:Mild Flow Arrow;8:Defrost Arrow ,764,76,79,1,0,0,,2128,6128,ff,OH_BlowerLevelDisplay,0:No display;1:display 1 blades and fan symbol;2:display 2 blades and fan symbol;3:display 3 blades and fan symbol;4:display 4 blades and fan symbol;5:display 5 blades and fan symbol;6:display 6 blades and fan symbol;7:display 7 blades and fan symbol;8:display 8 blades and fan symbol;15:display the fan symbol only ,764,80,80,1,0,0,,2128,6128,ff,OH_ModeOffDisplay,0:No display;1:Display indicator ,764,81,87,1,0,0,%,2128,6128,ff,OH_BackLightDimming ,764,88,92,5,0,0,%,2128,6128,ff,OH_IndicDimming ,764,93,99,1,0,0,%,2128,6128,ff,OH_ScreenDimming ,764,100,100,1,0,0,,2128,6128,ff,IH_EcoHighModeLongPushState,0:no long push detected;1:long push detected ,764,101,101,1,0,0,,2128,6128,ff,IH_EcoHighModePushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,102,102,1,0,0,,2128,6128,ff,IH_EcoLowModeLongPushState,0:no long push detected;1:long push detected ,764,103,103,1,0,0,,2128,6128,ff,IH_EcoLowModePushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,104,104,1,0,0,,2128,6128,ff,IH_PreConditionning1LongPushState,0:no long push detected;1:long push detected ,764,105,105,1,0,0,,2128,6128,ff,IH_PreConditionning1PushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,106,106,1,0,0,,2128,6128,ff,IH_PreConditionning2LongPushState,0:no long push detected;1:long push detected ,764,107,107,1,0,0,,2128,6128,ff,IH_PreConditionning2PushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,108,108,1,0,0,,2128,6128,ff,IH_PreConditionningLongPushState,0:no long push detected;1:long push detected ,764,109,109,1,0,0,,2128,6128,ff,IH_PreConditionningPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,110,110,1,0,0,,2128,6128,ff,IH_TempDnLongPushState,0:no long push detected;1:long push detected ,764,111,111,1,0,0,,2128,6128,ff,IH_TempDnPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,112,112,1,0,0,,2128,6128,ff,IH_TempUpLongPushState,0:no long push detected;1:long push detected ,764,113,113,1,0,0,,2128,6128,ff,IH_TempUpPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,114,117,1,0,0,,2128,6128,ff,OH_FP_RotaryTempDisplay,0:No display;1:Display Indicator 1;2:Display Indicator 2;3:Display Indicator 3;4:Display Indicator 4;5:Display Indicator 5;6:Display Indicator 6;7:Display Indicator 7;8:Display Indicator 8;9:Display Indicator 9;10:Display Indicator 10;11:Display Indicator 11;12:Display Indicator 12;13:Display Indicator 13;14:Display Indicator 14;15:Display Indicator 15 ,764,118,118,1,0,0,,2128,6128,ff,OH_FP_MMIModeTemp,0:Mode 1 (only one LED Display);1:Mode 2 (not only one LED Display) ,764,119,119,1,0,0,,2128,6128,ff,OH_FP_MMIModeBlower,0:Mode 1 (only one LED Display);1:Mode 2 (not only one LED Display) ,764,120,120,1,0,0,,2128,6128,ff,IH_RecyLongPushState,0:no long push detected;1:long push detected ,764,121,121,1,0,0,,2128,6128,ff,IH_RecyPushToggle,0:transition to 0 means switch pressed;1:transition to 1 means switch pressed ,764,16,23,1,0,0,,212B,612B,ff,CL_WithControlPanel,0:Not Configured;1:WithoutCP;2:CP Type 1;3:CP Type 2;4:CP Type 3;5:CP Type 4 ,764,16,23,1,0,0,,212C,612C,ff,CL_WithInternalAirQualityManagement,0:Not Configured;1:Without Air Quality Management;2:With Fragrance- Without Ionizer;3:Without Fragrance- With Ionizer;4:With Fragrance- With Ionizer ,764,16,23,1,0,0,,212D,612D,ff,CL_CompValveType,0:Not configured;1:without Compressor Valve;2:with Compressor Valve type 1;3:with Compressor Valve type 2;4:with Compressor Valve type 3 ,764,16,31,1,0,0,Steps,2130,6130,ff,ILW_RecyActrPosition ,764,32,47,1,0,0,Steps,2130,6130,ff,ILW_FeetVentActrPosition ,764,48,63,1,0,0,Steps,2130,6130,ff,ILW_RightMixActrPosition ,764,16,23,50,0,0,W,2143,6143,ff,OH_ACCompPowerUsed_V2 ,764,25,25,1,0,0,,2143,6143,ff,OH_Blower_State,0:Blower fan OFF;1:Blower fan ON ,764,26,27,1,0,0,,2143,6143,ff,OH_ACCoolingFanSpeedRequest,0:No Request;1:Low Request;2:Mid Request;3:High Request ,764,28,29,1,0,0,,2143,6143,ff,OH_PumpActivationRequest,0:Unvailable Value;1:No Activation Requested;2:Activation Requested;3:Not Used ,764,30,31,1,0,0,,2143,6143,ff,OH_AC_StopAutoFobidden,0:Unvailable Value;1:Auto Stop forbidden;2:Auto Stop authorized;3:Not used ,764,32,35,1,0,0,,2143,6143,ff,OH_PTCNumberThermalReq,0:0 PTC requested;1:1 PTC requested;2:2 PTC requested;3:3 PTC requested;4:4 PTC requested;5:5 PTC requested;6:6 PTC requested;7:7 PTC requested;8:8 PTC requested;9:9 PTC requested;10:10 PTC requested;11:Not used;15:No Request ,764,36,39,50,-10,0,rpm,2143,6143,ff,OH_ACMinEngineIdleSpeedRequest ,764,40,43,.25,-46,1,V,2143,6143,ff,OH_MinimunVoltagebyAC ,764,44,44,1,0,0,,2143,6143,ff,OH_ACCompRequest,0:No AC Requested;1:AC Requested ,764,45,45,1,0,0,,2143,6143,ff,OH_ACCompClutchRequest,0:Compressor Not Requested;1:Compressor Requested ,764,46,46,1,0,0,,2143,6143,ff,OH_RearDefrostRequest,0:Not Requested;1:Requested ,764,47,47,1,0,0,,2143,6143,ff,OH_ACVbatTempoMaintain,0:Not Requested;1:Requested ,764,48,49,1,0,0,,2143,6143,ff,OH_ClimCustomerAction ,764,50,57,25,0,0,W,2143,6143,ff,OH_ACCompPowerUsed ,764,58,58,1,0,0,,2143,6143,ff,OH_ClimateCoolingSelect,0:No AC request;1:AC requested ,764,80,83,1,0,0,,2143,6143,ff,IH_VehicleStateExtended,0:Vehicle Sleeping;1:Technical Wakeup;2:Cut Off Pending;3:Bat Tempo Level;4:Accessory Level;5:Ignition Level;6:Starting in Progress;7:Engine Running;8:Auto Start;9:Engine System Stop;15:Unavailable Value ,764,84,85,1,0,0,,2143,6143,ff,ILN_GenericApplicativeDiagEnable,0:Diag frozen;1:Diag enabled (01);2:Diag enabled (10);3:Unavailable Value ,764,86,87,1,0,0,,2143,6143,ff,IH_EcoModeRequest,0:Unavailable Value;1:Eco mode requested;2:Eco mode not requested;3:Not used ,764,88,92,100,0,0,W,2143,6143,ff,IH_ElectricalPowerDrived ,764,93,93,1,0,0,,2143,6143,ff,IH_PTCThermalRegulatorFreeze,0:Not requested;1:Freeze requested ,764,94,101,1,0,0,km/h,2143,6143,ff,IH_VehicleSpeed ,764,110,117,1,40,0,°C,2143,6143,ff,IH_ExternalTemp ,764,118,125,.4,0,1,%,2143,6143,ff,IH_NightRheostatedLightMaxPercent ,764,126,126,1,0,0,,2143,6143,ff,IH_DayNightStatus,0:Day time;1:Night time ,764,127,128,1,0,0,,2143,6143,ff,IH_EngineStatus_R,0:Engine Stopped;1:Not used - Reserved;2:running engine;3:Running-engine driven ,764,129,132,1,0,0,,2143,6143,ff,IH_EngineStopOrigine,0:No stop request;1:Stopped by other causes;2:Stopped by normal request;3:Value not defined (0011);4:Stopped by driver request;5:Value not defined (0101);6:Value not defined (0110);7:Value not defined (0111);8:Stopped by emergency request;9:Value not defined (1001);10:Value not defined (1010);11:Value not defined (1011);12:Value not defined (1100);13:Value not defined (1101);14:Value not defined (1110);15:Value not defined (1111) ,764,133,133,1,0,0,,2143,6143,ff,IH_ACCompAuthorized,0:AC not Authorized;1:AC Authorized ,764,134,142,.1,0,1,bar,2143,6143,ff,IH_ACHighPressureSensor ,764,143,150,25,0,0,W,2143,6143,ff,IH_ACMaxCompPowerAllowed ,764,151,158,1,40,0,°C,2143,6143,ff,IH_EngineCoolantTemp ,764,159,160,1,0,0,,2143,6143,ff,IH_EngineCoolantFlowStatus,0:Unavailable Value;1:No Engine Coolant Flow;2:Engine Coolant Flow;3:Not used ,764,161,162,1,0,0,,2143,6143,ff,IH_CoolingFanSpeedStatus,0:Engine Fan Stopped;1:Low speed;2:Mid speed;3:High speed ,764,163,163,1,0,0,,2143,6143,ff,IH_ACCompClutchStatus,0:Clutch OFF;1:Clutch ON ,764,164,179,.125,0,1,Tr/mn,2143,6143,ff,IH_EngineRPM ,764,180,182,1,0,0,,2143,6143,ff,IH_VehicleStateForClim,0:Sleeping;1:Cut off pending;2:Bat Tempo Level;3:Blower available;4:Starting in progress;5:Engine running;7:Unavailable ,764,183,187,50,0,0,W/m²,2143,6143,ff,IH_LeftSolarLevel ,764,188,192,50,0,0,W/m²,2143,6143,ff,IH_RightSolarLevel ,764,193,194,1,0,0,,2143,6143,ff,IH_SupposedCustomerDeparture,0:Event 0;1:Event 1;2:Event 2;3:Unavailable ,764,195,197,1,0,0,,2143,6143,ff,IH_UserIdentification,0:Undefined user;1:User n°1;2:User n°2;3:User n°3;4:User n°4 ,764,198,198,1,0,0,,2143,6143,ff,IH_VehicleOutsideLockedToggle,0:No toggle;1:Toggle ,764,199,201,1,0,0,,2143,6143,ff,IH_VehicleState,0:Vehicle asleep and engine stopped;1:Vehicle awake and engine stopped;2:Ignition ON (Engine ready to start);3:Starting in Progress;4:Vehicle awake and engine running;5:Value not defined (101);6:Value not defined (110);7:Unavailable ,764,202,205,50,0,0,W,2143,6143,ff,IH_VisibleSolarLevelInfo ,764,209,210,1,0,0,,2143,6143,ff,IH_VehicleStateSSExtension,0:Vehicle not in automatic state;1:Vehicle in automatic state;2:Not used;3:Unvailable ,764,212,212,1,0,0,,2143,6143,ff,IH_StopAutoForClim,0:Not in automatic state;1:In automatic state ,764,214,215,1,0,0,,2143,6143,ff,IH_WiperState,0:Unavailable;1:Wiper Off;2:Wiper On;3:Not used ,764,16,16,1,0,0,,2144,6144,ff,OH_PreHeatingRequest,0:No Requested;1:Requested ,764,17,18,1,0,0,,2144,6144,ff,OH_PreHeatingCustomerRequest,0:No Request;1:PreHeatingTime1;2:PreHeatingTime2;3:Not used ,764,19,28,.1,400,1,°C,2144,6144,ff,OH_EvaporatorTempSetPoint ,764,29,35,1,0,0,,2144,6144,ff,OH_WaterTemp ,764,36,41,2,0,0,,2144,6144,ff,OH_ClimAirFlow ,764,42,51,.1,400,1,°C,2144,6144,ff,OH_EvaporatorTempMeasure ,764,52,61,10,0,0,Rpm,2144,6144,ff,OH_ClimCompressorSpeedRpmRequest ,764,62,64,1,0,0,,2144,6144,ff,OH_ClimLoopMode,0:Unavailable;1:AC Mode;2:AC de-icing mode;4:Heat Pump Mode;6:Demisting Mode;7:Idle Mode ,764,65,66,1,0,0,,2144,6144,ff,OH_PTCActivationRequest,0:Unavailable;1:On Requested;2:Off Requested;3:Not used ,764,67,71,5,0,0,%,2144,6144,ff,OH_EngineFanSpeedRequestedPWM ,764,72,78,1,0,0,%,2144,6144,ff,OH_HighVoltagePTCRequestPWM ,764,79,79,1,0,0,,2144,6144,ff,IH_PreHeatingActivation,0:Don't Activate;1:Activate ,764,80,86,1,0,0,min,2144,6144,ff,IH_LeftTimeToScheduledTime ,764,87,94,25,0,0,W,2144,6144,ff,IH_ClimAvailablePower ,764,95,99,5,0,0,%,2144,6144,ff,IH_EngineFanSpeed ,764,100,106,100,0,0,Wh,2144,6144,ff,IH_ClimAvailableEnergy ,764,107,116,10,0,0,rpm,2144,6144,ff,IH_ClimCompRPMStatus ,764,117,119,1,0,0,,2144,6144,ff,IH_ClimCompDefaultStatus,0:No Failure and On;1:No Failure and Off;2:Downgraded;3:Failure;4:To change;5:Not used (101);6:Not used (110);7:Unavailable ,764,120,122,1,0,0,,2144,6144,ff,IH_PTCDefaultStatus,0:No Failure and On;1:No Failure and Off;2:Downgraded;3:Failure;4:To change;5:Not used (101);6:Not used (110);7:Unavailable ,764,123,126,1,0,0,,2144,6144,ff,IH_HVBatCondPriorityLevel,0:Unavailable;1:Priority 1;2:Priority 2;3:Priority 3;4:Priority 4;5:Priority 5;6:Priority 6;7:Priority 7;8:Priority 8 ,764,127,128,1,0,0,,2144,6144,ff,IH_HVBatteryLevelAlert,0:No alert;1:Not used;2:Battery low alert;3:unavailable ,764,129,130,1,0,0,,2144,6144,ff,IH_BatVEShutdownAlert,0:Unavailable;1:No +BatVE shutdown alert;2:+BatVE shutdown alert;3:Not used ,764,131,132,1,0,0,,2144,6144,ff,IH_ClimProgrammedPCDisplay,0:No pre-heating requested;1:pre-heating time 1;2:pre-heating time 2;3:Unavailable ,764,133,134,1,0,0,,2144,6144,ff,IH_HVBatConditionningMode,0:Blowing requested;1:Cooling conditionning requested;2:Heating conditionning requested;3:Conditionning not requested ,764,135,141,1,40,0,°C,2144,6144,ff,IH_HVBattCondTempAverage ,764,142,149,.3,0,1,,2144,6144,ff,IH_AvailableChargingPower ,764,150,151,1,0,0,,2144,6144,ff,IH_DeIcingAuthorisation,0:Not used;1:De Icing permitted;2:De Icing not permitted;3:Unavailable ,764,152,153,1,0,0,,2144,6144,ff,IH_LowVoltageUnballast_Request,0:Unavailable;1:No Unballast request;2:Unballast request;3:Not used ,764,154,155,1,0,0,,2144,6144,ff,OH_ClimPanelPCActivationRequest,0:No Request;1:Pre-heating time requested;2:Pre-heating OFF requested;3:Unavailable ,764,156,165,.5,60,1,,2144,6144,ff,OH_CompTemperatureDischarge ,764,166,167,1,0,0,,2144,6144,ff,OH_DeIcingRequest,0:Not used;1:De Icing requested;2:De Icing not requested;3:Unavailable ,764,168,169,1,0,0,,2144,6144,ff,OH_HVBatteryCoolingState,0:No HV Battery cooling;1:HV Battery cooling mode alone;2:HV Battery cooling mode coupled;3:Unavailable ,764,170,179,.1,400,1,°C,2144,6144,ff,OH_HVBatteryEvaporatorTempMeasure ,764,180,189,.1,400,1,°C,2144,6144,ff,OH_HVBatteryEvaporatorTempSetPoint ,764,191,191,1,0,0,,2144,6144,ff,OH_BatteryBlowerState,0:Not active;1:Active ,764,193,199,50,0,0,W,2144,6144,ff,IH_HVPTCConsumption ,764,16,17,1,0,0,,2145,6145,ff,IH_ClimAQSActivationRequest,0:No request;1:Activation request;2:No activation request;3:Not used ,764,18,19,1,0,0,,2145,6145,ff,IH_AQMIoniserModeSelectionReq,0:No request;1:Off;2:Clean;3:Relax ,764,20,23,1,0,0,,2145,6145,ff,IH_AQMFragIntensityRequest,0:No request;1:No intensity/Not used;2:intensity 1;3:intensity 2;4:intensity 3;5:intensity 4;6:intensity 5;7:intensity 6;8:intensity 7 ,764,24,26,1,0,0,,2145,6145,ff,IH_AQMFragSelectRequest,0:No request;1:Fragrance 1;2:Fragrance 2;3:Off;7:Auto ,764,27,28,1,0,0,,2145,6145,ff,OH_ClimECOModeStatusDisplay,0:No Display;1:Activated;2:Not activated;3:Unavailable ,764,29,36,1,0,0,,2145,6145,ff,OH_ClimTempDisplay,0:No display;1:Not used (01);2:All segment displayed;3:Not used (11);4:Display OF;5:Not used (101);6:Display --;8:Display LO;9:Not used (1001);10:Display HI;11:5-5;12:6;13:6-5;14:7;16:Not used (10000);17:18-5;18:Not used (10010);20:Real display;21:10-5;22:11;23:11-5;24:12;25:12-5;26:13;27:13-5;28:14;29:14-5;30:15;31:15-5;32:16;33:16-5;34:17;35:17-5;36:18;37:28-5;38:19;39:19-5;40:20;41:30-5;42:21;43:21-5;44:22;45:22-5;46:23;47:23-5;48:24;49:24-5;50:25;51:25-5;52:26;53:26-5;54:27;55:27-5;56:28;57:38-5;58:29;59:29-5;60:30 ,764,37,38,1,0,0,,2145,6145,ff,OH_ClimRearDefrostDisplay,0:No Display;1:Rear Defrost ON;2:Rear Defrost OFF;3:Not used ,764,39,40,1,0,0,,2145,6145,ff,OH_ClimClearnessDisplay,0:No Display;1:Clearness ON;2:Clearness OFF;3:Not used ,764,41,44,1,0,0,,2145,6145,ff,OH_ClimFlowDistrDisplay,0:No Display;1:Feet Arrow;2:Aerator Arrow;3:Feet + Aerator Arrow;4:Mild flow Arrow;5:Feet + Mild Arrow;6:Mild + Feet Arrow;7:Feet + Aerator Mild Arrow;8:Defrost Arrow;9:Feet + Defrost Arrow;10:Aerator + Defrost Arrow;11:Feet + Aerator + Defrost Arrow;12:Mild + Defrost Arrow;13:Feet + Mild + Defrost Arrow;14:Aerator + Mild + Defrost Arrow;15:Feet + Aerator + Mild + Defrost Arrow ,764,45,46,1,0,0,,2145,6145,ff,OH_ClimForcedRecyDisplay,0:No display;1:Recycling On;2:Recycling Off;3:Not used ,764,47,50,1,0,0,,2145,6145,ff,OH_ClimBlowerLevelDisplay,0:No display;1:Level 1;2:Level 2;3:Level 3;4:Level 4;5:Level 5;6:Level 6;7:Level 7;8:Level 8;9:Not used (1001);10:Not used (1010);11:Not used (1011);12:Not used (1100);13:Not used (1101);14:Not used (1110);15:Off ,764,51,53,1,0,0,,2145,6145,ff,OH_ClimModeTypeDisplay,0:No Display;1:Auto mode;2:Eco mode;3:Clearness mode;4:Manual mode;5:Off;6:Not used (110);7:Not used (111) ,764,54,57,1,0,0,,2145,6145,ff,OH_ClimLastFuncModifiedByCustomer,0:No last action;1:Temperature;2:Not used;3:Rear Defrost;4:Clearness;5:Flow Distribution;6:Forced Recycling;7:Eco Button;8:Blower Level;9:Conso Button;10:Auto;11:AC Off ,764,58,59,1,0,0,,2145,6145,ff,OH_ClimDisplayMenuPC,0:No request;1:Call Menu;2:Not used;3:Unavailable ,764,60,62,1,0,0,,2145,6145,ff,OH_AQMIoniserModeState,0:Unavailable;1:Off;2:Clean;3:Relax;4:Refused ,764,63,65,1,0,0,,2145,6145,ff,OH_AQMFragSelectState,0:Unavailable;1:Fragrance 1;2:Fragrance 2;3:Off;7:Auto ,764,66,69,1,0,0,,2145,6145,ff,OH_AQMFragIntensityState,0:Unavailable;1:No intensity/Not used;2:intensity 1;3:intensity 2;4:intensity 3;5:intensity 4;6:intensity 5;7:intensity 6;8:intensity 7 ,764,70,71,1,0,0,,2145,6145,ff,OH_ClimAQSActivationState,0:Unavailable;1:Activated;2:Not activated;3:Not used ,764,72,77,2,0,0,,2145,6145,ff,OH_ClimAQSIndicator ,764,78,83,1,0,0,,2145,6145,ff,OH_ClimAQMIoniserTimerDisplay,0:No display;1:1 min;2:2 min;3:3 min;4:4 min;5:5 min;6:6 min;7:7 min;8:8 min;9:9 min;10:10 min;11:11 min;12:12 min;13:13 min;14:14 min;15:15 min;16:16 min;17:17 min;18:18 min;19:19 min;20:20 min;21:21 min;22:22 min;23:23 min;24:24 min;25:25 min;26:26 min;27:27 min;28:28 min;29:29 min;30:30 min;31:31 min;32:32 min;33:33 min;34:34 min;35:35 min;36:36 min;37:37 min;38:38 min;39:39 min;40:40 min;41:41 min;42:42 min;43:43 min;44:44 min;45:45 min;46:46 min;47:47 min;48:48 min;49:49 min;50:50 min;51:51 min;52:52 min;53:53 min;54:54 min;55:55 min;56:56 min;57:57 min;58:58 min;59:59 min;60:60 min;63:Infinite Time ,764,84,89,1,0,0,,2145,6145,ff,OH_ClimAQMIoniserMaxTimerDisplay,0:No display;1:1 min;2:2 min;3:3 min;4:4 min;5:5 min;6:6 min;7:7 min;8:8 min;9:9 min;10:10 min;11:11 min;12:12 min;13:13 min;14:14 min;15:15 min;16:16 min;17:17 min;18:18 min;19:19 min;20:20 min;21:21 min;22:22 min;23:23 min;24:24 min;25:25 min;26:26 min;27:27 min;28:28 min;29:29 min;30:30 min;31:31 min;32:32 min;33:33 min;34:34 min;35:35 min;36:36 min;37:37 min;38:38 min;39:39 min;40:40 min;41:41 min;42:42 min;43:43 min;44:44 min;45:45 min;46:46 min;47:47 min;48:48 min;49:49 min;50:50 min;51:51 min;52:52 min;53:53 min;54:54 min;55:55 min;56:56 min;57:57 min;58:58 min;59:59 min;60:60 min;63:Infinite Time ,764,90,91,1,0,0,,2145,6145,ff,OH_ClimMMIActivationRequest,0:Unavailable;1:No request;2:Request;3:Not used ,764,93,93,1,0,0,,2145,6145,ff,OH_ClimEcoLowSocDisplay,0:No Display;1:Display ,764,96,97,1,0,0,,2145,6145,ff,OH_ClimAutoDisplay,0:No Display;1:Auto activated;2:Auto not activated;3:Not used ,764,98,99,1,0,0,,2145,6145,ff,OH_ClimACOffDisplay,0:No Display;1:AC Off activated;2:AC Off Deactivated;3:Not used ,764,100,101,1,0,0,,2145,6145,ff,IH_IoniserAutoLaunchRequest,0:Unavailable;1:Activated;2:Not activated;3:Not used ,764,102,103,1,0,0,,2145,6145,ff,OH_ClimOFFButtonDisplay,0:Unavailable;1:Activated;2:Deactivated;3:Not used ,764,104,105,1,0,0,,2145,6145,ff,OH_EnergyFlowForThermalConfortDisplay,0:Unavailable;1:No display;2:Display;3:Not used ,764,106,107,1,0,0,,2145,6145,ff,OH_IoniserAutoLaunchState,0:Unavailable;1:Activated;2:Not activated;3:Not used ,764,16,22,1,0,0,% of total range [min - max],2146,6146,ff,IH_FragranceActrPosition ,764,23,29,1,0,0,% of total range [min - max],2146,6146,ff,OH_FragranceActrReq ,764,30,45,1,0,0,Steps,2146,6146,ff,ILW_FragranceActrPosition ,764,46,61,1,0,0,Steps,2146,6146,ff,OLW_FragranceActrTarget ,764,62,62,1,0,0,,2146,6146,ff,OH_FragranceFanReq,0:Off;1:On ,764,63,64,1,0,0,,2146,6146,ff,OH_IonizerMode,0:Off;1:Clean;2:Relax ,764,67,67,1,0,0,,2146,6146,ff,OLW_IonizerMode,0:output inactive;1:output active ,764,68,68,1,0,0,,2146,6146,ff,OLW_IonizerSupply,0:output inactive;1:output active ,764,16,31,1,0,0,,2152,6152,ff,VH_TimerPCImm ,764,32,39,1,0,0,,2152,6152,ff,VH_Misting ,764,47,47,1,0,0,,2152,6152,ff,VH_PreHeatingForRequest ,764,48,55,1,0,0,,2152,6152,ff,VH_AQSRecyclingNeed ,764,56,63,1,0,0,,2152,6152,ff,VH_ComfortRecyPartialReq ,764,64,71,1,0,0,,2152,6152,ff,VH_ComfortRecyPerfoReq ,764,72,79,1,0,0,,2152,6152,ff,VH_DemistingRecyReq ,764,16,22,1,0,0,%,2161,6161,ff,OLB_BacklightDimming ,764,24,28,1,0,0,%,2161,6161,ff,OLB_IndicDimming ,764,32,38,1,0,0,%,2161,6161,ff,OLB_ScreenDimming ,764,39,39,1,0,0,,2161,6161,ff,OLB_ClearDiaginfo,0:no clear diag;1:clear diag ,764,16,23,1,0,0,km/h,2162,6162,ff,OLB_HPM_VehicleSpeed ,764,24,33,.1,400,1,°C,2162,6162,ff,OLB_HPM_IncarTemp ,764,34,36,1,0,0,,2162,6162,ff,OLB_HPM_CoolingModeRequest,0:No cooling mode requested;1:Cooling mode;2:Heating mode;3:Demisting ,764,37,39,1,0,0,,2162,6162,ff,OLB_HPM_DeiceVehicleRequest,0:No de-ice vehicle requested;1:De-ice vehicle state 1 request - battery loading;2:De-ice vehicle state 2 request - preconditionning;3:De-ice vehicle state3 request- high speed driving;4:De-ice vehicle state4 request- idle state driving;5:De-ice vehicle state 5 request - low battery SOC ,764,40,41,1,0,0,,2162,6162,ff,OLB_HPM_DeicePermission,0:Unavailable;1:De-ice not permetted;2:De-ice permetted;3:Not used ,764,42,43,1,0,0,,2162,6162,ff,OLB_HPM_OutputControlValve1,0:no request;1:request for opening valve during xx secondes;2:request for closing valve during xx secondes;3:Not used ,764,44,45,1,0,0,,2162,6162,ff,OLB_HPM_OutputControlValve2,0:no request;1:request for opening valve during xx secondes;2:request for closing valve during xx secondes;3:Not used ,764,46,47,1,0,0,,2162,6162,ff,OLB_HPM_BatVEShutDownAlert,0:Unavailable value;1:No shut down alert;2:Shut down alert;3:Not used ,764,48,54,.1,0,1,kW,2162,6162,ff,CLIM_HPM_PTCPowerStatus ,764,63,65,1,0,0,,2162,6162,ff,OLB_HPM_CompDefaultstatus,0:Unavailable;1:No compressor failure;2:Minor compressor failure;3:Major compressor default or automatic recovery ,764,66,68,1,0,0,,2162,6162,ff,CLIM_HPM_HeatingModeRequest,0:No heating mode requested;1:Thermal confort;2:Precnditionning;3:Battery heating ,764,69,79,.1,400,1,°C,2162,6162,ff,CLIM_HPM_CondDownstreamTempReq ,764,16,25,.1,400,1,°C,2163,6163,ff,OLB_HPM_EvaporatorTempMeasure ,764,26,30,5,0,0,%,2163,6163,ff,OLB_HPM_EngineFanSpeed ,764,31,39,.1,0,1,bar,2163,6163,ff,OLB_HPM_ACHighPressureSensor ,764,40,50,.1,400,1,°C,2163,6163,ff,OLB_HPM_HotSourceTempMeasure ,764,56,63,1,40,0,°C,2163,6163,ff,OLB_HPM_ExternalTemp ,764,64,79,1,0,0,,2163,6163,ff,OLB_HPM_CompressorSpeedHPStatus ,764,16,23,.5,0,1,%,2164,6164,ff,OLB_HPM_Rhhumidity ,764,24,30,1,0,0,%,2164,6164,ff,OLB_HPM_BlowerSpeedStatus ,764,31,37,1,0,0,%,2164,6164,ff,OLB_HPM_RecyActrPosition ,764,38,44,1,0,0,%,2164,6164,ff,OLB_HPM_FeetVentActrPosition ,764,45,51,1,0,0,%,2164,6164,ff,OLB_HPM_RightMixActrPosition ,764,52,58,1,0,0,%,2164,6164,ff,OLB_HPM_BatteryCoolingActrPosition ,764,59,68,.1,400,1,°C,2164,6164,ff,OLB_HPM_EvaporatorTempSetPoint ,764,16,23,1,0,0,,2165,6165,ff,OLB_FP_LeftTempDisplay,0:No display;1:Not used (01);2:All segment displayed;3:Not used (11);4:Display OF;5:Not used (101);6:Display --;8:Display LO;9:Not used (1001);10:Display HI;11:5-5;12:6;13:6-5;14:7;15:7-5;16:8;17:8-5;18:9;19:9-5;20:10;21:10-5;22:11;23:11-5;24:12;25:12-5;26:13;27:13-5;28:14;29:14-5;30:15;31:15-5;32:16;33:16-5;34:17;35:17-5;36:18;37:18-5;38:19;39:19-5;40:20;41:20-5;42:21;43:21-5;44:22;45:22-5;46:23;47:23-5;48:24;49:24-5;50:25;51:25-5;52:26;53:26-5;54:27;55:27-5;56:28;57:28-5;58:29;59:29-5;60:30 ,764,24,31,1,0,0,,2165,6165,ff,OLB_FP_RightTempDisplay,0:No display;1:Not used (01);2:All segment displayed;3:Not used (11);4:Display OF;5:Not used (101);6:Display --;8:Display LO;9:Not used (1001);10:Display HI;11:Not used (1011);12:Not used (1100);13:Not used (1101);15:Not used (1111);16:Not used (10000);18:Not used (10010);20:Real display ,764,32,33,1,0,0,,2165,6165,ff,OLB_FP_MMIState,0:Inactive;1:Light;2:Full;3:Not used ,764,34,34,1,0,0,,2165,6165,ff,OLB_FP_MMIModeTemp,0:Display mode 1;1:Display mode 2 ,764,35,35,1,0,0,,2165,6165,ff,OLB_FP_MMIModeBlower,0:Display mode 1;1:Display mode 2 ,764,36,39,1,0,0,,2165,6165,ff,OLB_FP_RotaryTempDisplay,0:No display;1:Display indicator 1;2:Display indicator 2;3:Display indicator 3;4:Display indicator 4;5:Display indicator 5;6:Display indicator 6;7:Display indicator 7;8:Display indicator 8;9:Display indicator 9;10:Display indicator 10;11:Display indicator 11;12:Display indicator 12;13:Display indicator 13;14:Display indicator 14;15:Display indicator 15 ,764,40,43,1,0,0,,2165,6165,ff,OLB_FP_DistDisplay,0:No display;1:Feet;2:Aerator;3:Feet + Aerator;4:Mild flow;5:Feet + Mild flow;6:Mild flow + Feet;7:Feet + Aerator Mild flow;8:Defrost;9:Feet + Defrost;10:Aerator + Defrost;11:Feet + Aerator + Defrost;12:Mild flow + Defrost;13:Feet + Mild flow + Defrost;14:Aerator + Mild flow + Defrost;15:Feet + Aerator + Mild flow + Defrost ,764,44,47,1,0,0,,2165,6165,ff,OLB_FP_BlowerLevelDisplay,0:No display;1:Display bars 1;2:Display bars 2;3:Display bars 3;4:Display bars 4;5:Display bars 5;6:Display bars 6;7:Display bars 7;8:Display bars 8;9:Display bars 9;10:Display bars 10;11:Display bars 11;12:Display bars 12;13:Display bars 13;14:Display bars 14;15:Display blower OFF ,764,48,48,1,0,0,,2165,6165,ff,OLB_FP_TestLamp,0:No test lamps;1:Test lamps ,764,49,49,1,0,0,,2165,6165,ff,OLB_FP_LEDA_Indic,0:Off;1:On ,764,50,50,1,0,0,,2165,6165,ff,OLB_FP_LEDB_Indic,0:Off;1:On ,764,51,51,1,0,0,,2165,6165,ff,OLB_FP_LEDC_Indic,0:Off;1:On ,764,52,52,1,0,0,,2165,6165,ff,OLB_FP_LEDD_Indic,0:Off;1:On ,764,53,53,1,0,0,,2165,6165,ff,OLB_FP_LEDE_Indic,0:Off;1:On ,764,54,54,1,0,0,,2165,6165,ff,OLB_FP_LEDF_Indic,0:Off;1:On ,764,55,55,1,0,0,,2165,6165,ff,OLB_FP_LEDG_Indic,0:Off;1:On ,764,56,56,1,0,0,,2165,6165,ff,OLB_FP_LEDH_Indic,0:Off;1:On ,764,57,57,1,0,0,,2165,6165,ff,OLB_FP_LEDJ_Indic,0:Off;1:On ,764,58,58,1,0,0,,2165,6165,ff,OLB_FP_LEDK_Indic,0:Off;1:On ,764,59,59,1,0,0,,2165,6165,ff,OLB_FP_LEDL_Indic,0:Off;1:On ,764,60,60,1,0,0,,2165,6165,ff,OLB_FP_LEDM_Indic,0:Off;1:On ,764,61,61,1,0,0,,2165,6165,ff,OLB_FP_LEDN_Indic,0:Off;1:On ,764,62,62,1,0,0,,2165,6165,ff,OLB_FP_LEDP_Indic,0:Off;1:On ,764,63,63,1,0,0,,2165,6165,ff,OLB_FP_LEDR_Indic,0:Off;1:On ,764,64,64,1,0,0,,2165,6165,ff,OLB_FP_LEDS_Indic,0:Off;1:On ,764,65,65,1,0,0,,2165,6165,ff,OLB_FP_LEDT_Indic,0:Off;1:On ,764,66,66,1,0,0,,2165,6165,ff,OLB_FP_LEDU_Indic,0:Off;1:On ,764,67,67,1,0,0,,2165,6165,ff,OLB_FP_LEDV_Indic,0:Off;1:On ,764,68,68,1,0,0,,2165,6165,ff,OLB_FP_LEDW_Indic,0:Off;1:On ,764,69,69,1,0,0,,2165,6165,ff,OLB_FP_LEDX_Indic,0:Off;1:On ,764,70,70,1,0,0,,2165,6165,ff,OLB_FP_LEDY_Indic,0:Off;1:On ,764,71,71,1,0,0,,2165,6165,ff,OLB_FP_LEDZ_Indic,0:Off;1:On ,764,16,19,1,0,0,,2166,6166,ff,ILB_FP_VersionNumber,1:Version 1;2:Version 2;3:Version 3;4:Version 4;5:Version 5;6:Version 6;7:Version 7;8:Version 8;9:Version 9;10:Version 10;11:Version 11;12:Version 12;13:Version 13;14:Version 14;15:Version 15 ,764,20,23,1,0,0,,2166,6166,ff,ILB_FP_ControlPanelType,0:Unavailable;1:CP type 1;2:CP type 2;3:CP type 3;4:CP type 4;5:CP type 5;6:CP type 6;7:CP type 7;8:CP type 8;9:CP type 9;10:CP type 10;11:CP type 11;12:CP type 12;13:CP type 13;14:CP type 14;15:CP type 15 ,764,24,28,1,0,0,,2166,6166,ff,ILB_FP_SpareCPPartNumber ,764,29,29,1,0,0,,2166,6166,ff,ILB_FCP_Response_Error,0:No response error;1:Response error ,764,30,30,1,0,0,,2166,6166,ff,ILB_FP_ResetState,0:No reset;1:Exit from reset ,764,31,31,1,0,0,,2166,6166,ff,ILB_FP_SwitchAPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,32,32,1,0,0,,2166,6166,ff,ILB_FP_SwitchALongPushState,0:No long push in progress;1:Long push in progress ,764,33,33,1,0,0,,2166,6166,ff,ILB_FP_SwitchBPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,34,34,1,0,0,,2166,6166,ff,ILB_FP_SwitchBLongPushState,0:No long push in progress;1:Long push in progress ,764,35,35,1,0,0,,2166,6166,ff,ILB_FP_SwitchCPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,36,36,1,0,0,,2166,6166,ff,ILB_FP_SwitchCLongPushState,0:No long push in progress;1:Long push in progress ,764,37,37,1,0,0,,2166,6166,ff,ILB_FP_SwitchDPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,38,38,1,0,0,,2166,6166,ff,ILB_FP_SwitchDLongPushState,0:No long push in progress;1:Long push in progress ,764,39,39,1,0,0,,2166,6166,ff,ILB_FP_SwitchEPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,40,40,1,0,0,,2166,6166,ff,ILB_FP_SwitchELongPushState,0:No long push in progress;1:Long push in progress ,764,41,41,1,0,0,,2166,6166,ff,ILB_FP_SwitchFPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,42,42,1,0,0,,2166,6166,ff,ILB_FP_SwitchFLongPushState,0:No long push in progress;1:Long push in progress ,764,43,43,1,0,0,,2166,6166,ff,ILB_FP_SwitchGPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,44,44,1,0,0,,2166,6166,ff,ILB_FP_SwitchGLongPushState,0:No long push in progress;1:Long push in progress ,764,45,45,1,0,0,,2166,6166,ff,ILB_FP_SwitchHPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,46,46,1,0,0,,2166,6166,ff,ILB_FP_SwitchHLongPushState,0:No long push in progress;1:Long push in progress ,764,47,47,1,0,0,,2166,6166,ff,ILB_FP_SwitchJPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,48,48,1,0,0,,2166,6166,ff,ILB_FP_SwitchJLongPushState,0:No long push in progress;1:Long push in progress ,764,49,49,1,0,0,,2166,6166,ff,ILB_FP_SwitchKPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,50,50,1,0,0,,2166,6166,ff,ILB_FP_SwitchKLongPushState,0:No long push in progress;1:Long push in progress ,764,51,51,1,0,0,,2166,6166,ff,ILB_FP_SwitchLPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,52,52,1,0,0,,2166,6166,ff,ILB_FP_SwitchLLongPushState,0:No long push in progress;1:Long push in progress ,764,53,53,1,0,0,,2166,6166,ff,ILB_FP_SwitchMPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,54,54,1,0,0,,2166,6166,ff,ILB_FP_SwitchMLongPushState,0:No long push in progress;1:Long push in progress ,764,55,55,1,0,0,,2166,6166,ff,ILB_FP_SwitchNPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,56,56,1,0,0,,2166,6166,ff,ILB_FP_SwitchNLongPushState,0:No long push in progress;1:Long push in progress ,764,57,57,1,0,0,,2166,6166,ff,ILB_FP_SwitchPPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,58,58,1,0,0,,2166,6166,ff,ILB_FP_SwitchPLongPushState,0:No long push in progress;1:Long push in progress ,764,59,59,1,0,0,,2166,6166,ff,ILB_FP_SwitchRPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,60,60,1,0,0,,2166,6166,ff,ILB_FP_SwitchRLongPushState,0:No long push in progress;1:Long push in progress ,764,61,61,1,0,0,,2166,6166,ff,ILB_FP_SwitchSPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,62,62,1,0,0,,2166,6166,ff,ILB_FP_SwitchSLongPushState,0:No long push in progress;1:Long push in progress ,764,63,63,1,0,0,,2166,6166,ff,ILB_FP_SwitchTPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,64,64,1,0,0,,2166,6166,ff,ILB_FP_SwitchTLongPushState,0:No long push in progress;1:Long push in progress ,764,65,65,1,0,0,,2166,6166,ff,ILB_FP_SwitchUPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,66,66,1,0,0,,2166,6166,ff,ILB_FP_SwitchULongPushState,0:No long push in progress;1:Long push in progress ,764,67,67,1,0,0,,2166,6166,ff,ILB_FP_SwitchVPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,68,68,1,0,0,,2166,6166,ff,ILB_FP_SwitchVLongPushState,0:No long push in progress;1:Long push in progress ,764,69,69,1,0,0,,2166,6166,ff,ILB_FP_SwitchWPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,70,70,1,0,0,,2166,6166,ff,ILB_FP_SwitchWLongPushState,0:No long push in progress;1:Long push in progress ,764,71,71,1,0,0,,2166,6166,ff,ILB_FP_SwitchXPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,72,72,1,0,0,,2166,6166,ff,ILB_FP_SwitchXLongPushState,0:No long push in progress;1:Long push in progress ,764,73,73,1,0,0,,2166,6166,ff,ILB_FP_SwitchYPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,74,74,1,0,0,,2166,6166,ff,ILB_FP_SwitchYLongPushState,0:No long push in progress;1:Long push in progress ,764,75,75,1,0,0,,2166,6166,ff,ILB_FP_SwitchZPushToggle,0:(0) transition means switch pressed;1:(1) transition means switch pressed ,764,76,76,1,0,0,,2166,6166,ff,ILB_FP_SwitchZLongPushState,0:No long push in progress;1:Long push in progress ,764,16,20,5,0,0,%,2167,6167,ff,ILB_HPM_EngineFanSpeedRequestPWM ,764,21,23,1,0,0,,2167,6167,ff,ILB_HPM_ClimLoopMode,0:Unavailable;1:AC mode;2:AC de-icing mode;3:Not used (100);4:Heat Pump mode;5:Not used (101);6:Demisting mode;7:Idle mode ,764,24,39,1,0,0,Rpm,2167,6167,ff,ILB_HPM_ClimCompressorSpeedRpmRequest ,764,40,41,1,0,0,,2167,6167,ff,ILB_HPM_DeiceLoopRequest,0:Unavailable;1:De-ice loop requested;2:No de-ice loop requested;3:Not used ,764,42,51,.5,60,1,°C,2167,6167,ff,ILB_HPM_State_Sensor1_Status ,764,52,61,.5,80,1,°C,2167,6167,ff,ILB_HPM_State_Sensor2_Status ,764,16,23,1,0,0,,2168,6168,4ff,ILB_HPM_Version_rel_HW ,764,24,31,1,0,0,,2168,6168,4ff,ILB_HPM_Version_rel_SW ,764,32,35,1,0,0,,2168,6168,ff,ILB_HPM_FailureStatus_Valve1,0:No failure;1:Open circuit;2:Short circuit to battery;3:Short circuit to ground ,764,36,39,1,0,0,,2168,6168,ff,ILB_HPM_FailureStatus_Valve2,0:No failure;1:Open circuit;2:Short circuit to battery;3:Short circuit to ground ,764,40,43,1,0,0,,2168,6168,ff,ILB_HPM_FailureStatus_Sensor1,0:No failure;1:Short circuit to ground;2:Open circuit/Short circuit to battery;4:Over max threshold;8:Under min threshold ,764,44,47,1,0,0,,2168,6168,ff,ILB_HPM_FailureStatus_Sensor2,0:No failure;1:Short circuit to ground;2:Open circuit/Short circuit to battery;4:Over max threshold;8:Under min threshold ,764,48,51,1,0,0,,2168,6168,ff,ILB_HPM_State_Valve1_Status,0:Not active;1:Active;15:Unavailable ,764,52,55,1,0,0,,2168,6168,ff,ILB_HPM_State_Valve2_Status,0:Not active;1:Active;15:Unavailable ,764,56,63,1,0,0,,2168,6168,ff,ILB_HPM_VersionMessageSet ,764,78,78,1,0,0,,2168,6168,ff,ILB_HPM_Response_Error,0:No response error;1:Response error ,764,16,22,1,0,0,%,2169,6169,ff,ILB_HPM_BlowerReq ,764,23,29,1,0,0,%,2169,6169,ff,ILB_HPM_RecyActrTarget ,764,30,36,1,0,0,%,2169,6169,ff,OLB_HPM_FeetVentActrTarget ,764,37,43,1,0,0,%,2169,6169,ff,OLB_HPM_RightMixActrTarget ,764,44,50,1,0,0,%,2169,6169,ff,OLB_HPM_BatteryCoolingtActrTarget ,764,16,23,1,0,0,,2171,6171,ff,CL_WithBattEvapSensor,0:Not Configured;1:KL_WithoutSensor;2:KL_WithLocalSensor ,764,16,23,1,0,0,,2172,6172,ff,CL_WithCabinCoolingEV,0:Not Configured;1:KL_WithoutOutput;2:KL_WithLocalOutput ,764,16,23,1,0,0,,2173,6173,ff,CL_WithBatteryCoolingEV,0:Not Configured;1:KL_WithoutOutput;2:KL_WithLocalOutput ,764,16,23,1,0,0,,2174,6174,ff,CL_BatteryPTCType,0:Not Configured;1:Without PTC;16:PTC 1kW;24:PTC 1-8kW ,764,16,23,1,0,0,,2175,6175,ff,CL_HVPTCType,0:Not Configured;1:Without HV PTC;35:HV PTC 3-5 kW;50:HV PTC 5kW ,764,16,23,1,0,0,,217D,617D,ff,CL_MMIArchitecture,0:Not Configured;1:Front Control Panel only;2:Multimedia Display + Front Control Panel ,764,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,764,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,764,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,764,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,764,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,764,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,764,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,764,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A;2:27531 ,764,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:N/A;1:28526 ,764,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A;1:RENO1;2:NISS1 ,764,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,764,16,151,1,0,0,,2181,6181,2ff,VIN ,764,16,31,1,0,0,,2182,6182,4ff,MessagesSetReference ,764,32,32,1,0,0,,2182,6182,ff,CurrentFaultBus_OFF,0:False;1:True ,764,33,33,1,0,0,,2182,6182,ff,ConfirmedFaultBus_OFF,0:False;1:True ,764,34,39,1,0,0,,2182,6182,ff,M_Bus_OFF ,764,40,40,1,0,0,,2182,6182,ff,CurrentFaultMute,0:False;1:True ,764,41,41,1,0,0,,2182,6182,ff,ConfirmedFaultMute,0:False;1:True ,764,42,47,1,0,0,,2182,6182,ff,M_Mute ,764,48,48,1,0,0,,2182,6182,ff,CurrentFaultECM,0:False;1:True ,764,49,49,1,0,0,,2182,6182,ff,ConfirmedFaultECM,0:False;1:True ,764,50,55,1,0,0,,2182,6182,ff,M_ECM ,764,56,56,1,0,0,,2182,6182,ff,CurrentFaultABS,0:False;1:True ,764,57,57,1,0,0,,2182,6182,ff,ConfirmedFaultABS,0:False;1:True ,764,58,63,1,0,0,,2182,6182,ff,M_ABS ,764,72,72,1,0,0,,2182,6182,ff,CurrentFaultBCM,0:False;1:True ,764,73,73,1,0,0,,2182,6182,ff,ConfirmedFaultBCM,0:False;1:True ,764,74,79,1,0,0,,2182,6182,ff,M_BCM ,764,104,111,1,0,0,,2182,6182,ff,CLIM_Absent,0:False;1:True ,764,200,200,1,0,0,,2182,6182,ff,CurrentFaultUSM,0:False;1:True ,764,201,201,1,0,0,,2182,6182,ff,ConfirmedFaultUSM,0:False;1:True ,764,202,207,1,0,0,,2182,6182,ff,M_USM ,764,16,143,1,0,0,,2184,6184,2ff,UnitaryDataTraceability ,764,0,0,1,0,0,,21EF,61EF,ff,DataRead.DAIMLERIdentification ,764,24,39,1,0,0,,229101,629101,4ff,EngineeringSoftwareNumber ,764,24,39,1,0,0,,229102,629102,4ff,EngineeringCalibrationNumber ,764,24,103,1,0,0,,22F187,62F187,2ff,VehiculeManufacturerSparPartNumber ,764,24,103,1,0,0,,22F18E,62F18E,2ff,VehicleManufacturerKitAssemblyPartNumber ,764,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/HVAC_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) - PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE/LBC2_Dtcs.csv ================================================ , ================================================ FILE: app/src/main/assets/ZOE/LBC2_Fields.csv ================================================ ,7BB,0,0,1,0,0,,1085,5085,ff,StartDiagnosticSession.ProgrammingSession ,7BB,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.ExtendedDiagSession ,7BB,0,0,1,0,0,,10F2,50F2,ff,StartDiagnosticSession.RenautSession ,7BB,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7BB,16,23,1,0,0,,19020F,59020F,ff,DTCStatusAvailabilityMask ,7BB,24,39,1,0,0,,19020F,59020F,ff,DTCDeviceAndFailureTypeOBD ,7BB,40,47,1,0,0,,19020F,59020F,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level oor / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructedorblocked;152:component or system over temperature ,7BB,44,47,1,0,0,,19020F,59020F,ff,DTCFailureType.ManufacturerOrSupplier ,7BB,48,48,1,0,0,,19020F,59020F,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,7BB,49,49,1,0,0,,19020F,59020F,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,7BB,50,50,1,0,0,,19020F,59020F,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7BB,51,51,1,0,0,,19020F,59020F,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7BB,52,52,1,0,0,,19020F,59020F,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7BB,53,53,1,0,0,,19020F,59020F,ff,DTCStatus.pendingDTC,0:No;1:Yes ,7BB,54,54,1,0,0,,19020F,59020F,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,7BB,55,55,1,0,0,,19020F,59020F,ff,DTCStatus.testFailed,0:No;1:Yes ,7BB,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7BB,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,7BB,16,47,1,0,0,,190600000080,590600000080,1ff,1427 Vehicle Mileage ,7BB,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,7BB,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,7BB,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,7BB,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,7BB,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,7BB,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,7BB,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,2:293A0 ,7BB,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,1:293A0 ,7BB,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList ,7BB,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,136:5DIGITS R2;255:Renault R3;0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3 ,7BB,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/LBC2_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level oor / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructedorblocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE/LBC_Dtcs.csv ================================================ 33E2,[P33E2]Battery High Temperature Diagnosis 33E3,[P33E3]Battery Low Temperature Diagnosis 0A1F,[P0A1F]BATTERY ENERGY CONTROL MODULE 3332,[P3332] Cell 2nd Over voltage happens 33C1,[P33C1] Temperature Sensor 14 out of range 33C0,[P33C0] Temperature Sensor 13 out of range 33C2,[P33C2] Temperature Sensor 15 out of range 33C4,[P33C4] Temperature Sensor 17 out of ange 33C5,[P33C5] Temperature Sensor 18 out of range 33C6,[P33C6] Temperature Sensor 19 out of range 33C7,[P33C7] Temperature Sensor 20 out of range 33C8,[P33C8] Temperature Sensor 21 out of range 33C9,[P33C9] Temperature Sensor 22 out of range 33CB,[P33CB] Temperature Sensor 24 out of range 33CA,[P33CA] Temperature Sensor 23 out of range 33D3,[P33D3] Temperature Sensor 12 out of range 33D2,[P33D2] Temperature Sensor 11 out of range 33D0,[P33D0] Temperature Sensor 9 out of range 33D1,[P33D1] Temperature Sensor 10 out of range 33D8,[P33D8] Temperature Sensor 5 out of range 33DD,[P33DD] Temperature Sensor 4 out of range 33DB,[P33DB] Temperature Sensor 3 out of range 33D9,[P33D9] Temperature Sensor 2 out of range 33D7,[P33D7] Temperature Sensor 1 out of range 33DC,[P33DC] Temperature Sensor 7 out of range 33DE,[P33DE] Temperature Sensor 8 out of range 33DA,[P33DA] Temperature Sensor 6 out of range 33D4,[P33D4] Battery State of Health Power has low value 33D6,[P33D6] CS (Current Sensing) Supply Failure 308B,[P308B]Cell_Line_Failure_(ASIC1) 308C,[P308C]Cell_Line_Failure_(ASIC2) 308D,[P308D]Cell_Line_Failure_(ASIC3) 308E,[P308E]Cell_Line_Failure_(ASIC4) 308F,[P308F]Cell_Line_Failure_(ASIC5) 3090,[P3090]Cell_Line_Failure_(ASIC6) 3092,[P3092]Cell_Line_Failure_(ASIC8) 3093,[P3093]Cell_Line_Failure_(ASIC9) 3094,[P3094]Cell_Line_Failure_(ASIC10) 3095,[P3095]Cell_Line_Failure_(ASIC11) 3096,[P3096]Cell_Line_Failure_(ASIC12) 3091,[P3091]Cell_Line_Failure_(ASIC7) 0A0A,[0A0A] HV Interlock circuit failure 0A0D,[P0A0D] SD interlock circuit failure 3020,[P3020] Private CAN Failure 3062,[P3062] cell balancing circuit failure 3063,[P3063] Cell Voltage measurement Failure 3064,[P3064]Second protection circuit failure 30F4,[P30F4] Pack Voltage Out of Range 30F5,[P30F5] Pack Voltage Measurement Failure 30FC,[P30FC] Pack over Current 30FE,[P30FE]Aux V has a Failure 3300,[P3300] Pack Over Voltage 3302,[P3302]Cell Over Voltage (Module1) 3303,[P3303]Cell Over Voltage (Module2) 3304,[P3304]Cell Over Voltage (Module3) 3305,[P3305]Cell Over Voltage (Module4) 3306,[P3306]Cell Over Voltage (Module5) 3307,[P3307]Cell Over Voltage (Module6) 3308,[P3308]Cell Over Voltage (Module7) 3309,[P3309]Cell Over Voltage (Module8) 330A,[P330A]Cell Over Voltage (Module9) 330B,[P330B]Cell Over Voltage (Module10) 330C,[P330C]Cell Over Voltage (Module11) 330D,[P330D]Cell Over Voltage (Module12) 3373,[P3373]Pack Under Voltage 3375,[P3375] Cell UnderVoltage module 1 3376,[P3376] Cell UnderVoltage module 2 3377,[P3377] Cell UnderVoltage module 3 3378,[P3378] Cell UnderVoltagemodule 4 3379,[P3379] Cell UnderVoltage module 5 337A,[P337A] Cell UnderVoltage module 6 337B,[P337B] Cell UnderVoltage module 7 337C,[P337C] Cell UnderVoltage module 8 337D,[P337D] Cell UnderVoltage module 9 337E,[P337E] Cell UnderVoltage module 10 337F,[P337F] Cell UnderVoltage module 11 3380,[P3380] Cell UnderVoltage module 12 33B1,[P33B1] Battery System has many failure on thermistors (1-12) 33B2,[P33B2] Battery System has many failure on thermistors (13-24) 33D5,[P33D5] CS (Current Sensing) Offset high 33C3,[P33C3] Temperature Sensor 16 out of range 33E1,[P33E1]IR Measurement Circuit Failure 33E6,[P33E6] Pack Unbalanced 33ED,[P33ED]Bus Bar Fixing Failure D000,[D000] Loss of Communication CAN 330E,[P330E]Cell Over Voltage (Module13) 330F,[P330F]Cell Over Voltage (Module14) 3310,[P3310]Cell Over Voltage (Module15) 3311,[P3311]Cell Over Voltage (Module16) 3312,[P3312]Cell Over Voltage (Module17) 3313,[P3313]Cell Over Voltage (Module18) 3314,[P3314]Cell Over Voltage (Module19) 3315,[P3315]Cell Over Voltage (Module20) 3316,[P3316]Cell Over Voltage (Module21) 3317,[P3317]Cell Over Voltage (Module22) 3318,[P3318]Cell Over Voltage (Module23) 3319,[P3319]Cell Over Voltage (Module24) 3381,[P3381] Cell UnderVoltage module 13 3382,[P3382] Cell UnderVoltage module 14 3383,[P3383] Cell UnderVoltage module 15 3384,[P3384] Cell UnderVoltagemodule 16 3385,[P3385] Cell UnderVoltage module 17 3386,[P3386] Cell UnderVoltage module 18 3387,[P3387] Cell UnderVoltage module 19 3388,[P3388] Cell UnderVoltage module 20 3389,[P3389] Cell UnderVoltage module 21 338A,[P338A] Cell UnderVoltage module 22 338B,[P338B] Cell UnderVoltage module 23 338C,[P338C] Cell UnderVoltage module 24 ================================================ FILE: app/src/main/assets/ZOE/LBC_Fields.csv ================================================ ,7BB,0,0,1,0,0,,1081,5081,ff,StartDiagnosticSession.DefaultSession ,7BB,0,0,1,0,0,,1085,5085,ff,StartDiagnosticSession.ProgrammingSession ,7BB,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.ExtendedDiagSession ,7BB,0,0,1,0,0,,10F2,50F2,ff,StartDiagnosticSession.RenautSession ,7BB,0,0,1,0,0,,10F3,50F3,ff,StartDiagnosticSession.LGchemSession ,7BB,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7BB,16,23,1,0,0,,19020F,59020F,ff,DTCStatusAvailabilityMask ,7BB,24,39,1,0,0,,19020F,59020F,ff,DTCDeviceAndFailureTypeOBD ,7BB,40,47,1,0,0,,19020F,59020F,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level oor / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety ?C failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructedorblocked;152:component or system over temperature ,7BB,44,47,1,0,0,,19020F,59020F,ff,DTCFailureType.ManufacturerOrSupplier ,7BB,48,55,1,0,0,,19020F,59020F,ff,StatusOfDTC ,7BB,49,49,1,0,0,,19020F,59020F,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,7BB,50,50,1,0,0,,19020F,59020F,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7BB,51,51,1,0,0,,19020F,59020F,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7BB,52,52,1,0,0,,19020F,59020F,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7BB,53,53,1,0,0,,19020F,59020F,ff,DTCStatus.pendingDTC,0:No;1:Yes ,7BB,54,54,1,0,0,,19020F,59020F,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,7BB,55,55,1,0,0,,19020F,59020F,ff,DTCStatus.testFailed,0:No;1:Yes ,7BB,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7BB,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,7BB,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,7BB,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,7BB,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;130:DTCOccurrenceCounter;131:BateryMileage ,7BB,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,7BB,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,7BB,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,7BB,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;130:DTCOccurrenceCounter;131:BateryMileage ,7BB,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,7BB,16,39,1,0,0,,190600000083,590600000083,4ff,DTCRecord ,7BB,40,47,1,0,0,,190600000083,590600000083,ff,StatusOfDTC ,7BB,48,55,1,0,0,,190600000083,590600000083,ff,DTCExtendedDataRecordNumber,128:Mileage;130:DTCOccurrenceCounter;131:BateryMileage ,7BB,56,79,1,0,0,,190600000083,590600000083,ff,1429 Battery Mileage ,7BB,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,7BB,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,7BB,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;130:DTCOccurrenceCounter;131:BateryMileage ,7BB,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,7BB,16,31,.1,5000,1,A,2101,6101,ff,21_01_#03 Electric_Current_of_Battery ,7BB,32,47,.1,5000,1,A,2101,6101,ff,21_01_#05_Current sensor offset value ,7BB,144,159,1,0,0,A,2101,6101,1ff,21_01_#19_Internal_AD_value_of_3V_Reference_Voltage ,7BB,160,175,1,0,0,,2101,6101,1ff,21_01_#21_Internal_AD_value_of_current_Sensor_power_supply_Voltage ,7BB,176,191,.01,0,2,kW,2101,6101,ff,21_01_#23_Input Possible Power CAN Output (After Restriction) ,7BB,192,207,.01,0,2,kW,2101,6101,ff,21_01_#25_Output Possible Power CAN Output (After Restriction) ,7BB,224,239,.01,0,2,V,2101,6101,ff,21_01_#29_12V Battery Voltage (Auxiliary Battery Voltage) ,7BB,288,319,.0001,0,3,%,2101,6101,1ff,21_01_#37_SOC CAN Output (USOC) ,7BB,336,351,.01,0,2,kW,2101,6101,ff,21_01_#43_Acceptable Max Charge Power ,7BB,354,355,1,0,0,,2101,6101,ff,21_01_#45_bit4_bit5_Interlock Status sent by CAN(regarding CAN data about interlock 'interlock battery'),0:Not used;1:Opened;2:closed;3:Unavailable ,7BB,356,356,1,0,0,,2101,6101,ff,21_01_#45_bit3_HV Interlock Flag,0:opened;1:closed ,7BB,357,357,1,0,0,,2101,6101,ff,21_01_#45_bit2_Filtered Poor Joint Detector Input Port Flug,0:Circuit no Failure;1:Circuit Failure ,7BB,358,358,1,0,0,,2101,6101,ff,21_01_#45_bit1_Charge End Flag,0:End of charge not detected;1:End of charge detected ,7BB,359,359,1,0,0,,2101,6101,ff,21_01_#45_bit0_SD Switch Interlock flag,0:opened;1:closed ,7BB,360,375,100,0,0,ohm,2101,6101,ff,21_01_#46_HVIsolationImpedance ,7BB,16,31,.01,0,2,V,2103,6103,ff,21_03#03 OCV (Open Circuit Voltage) ,7BB,32,47,.01,0,2,%,2103,6103,ff,21_03#05 Battery SOC of cell lowest voltage ,7BB,48,63,.01,0,2,%,2103,6103,ff,21_03#07 Battery SOC of cell highest voltage ,7BB,64,95,1,0,0,,2103,6103,1ff,21_03#09 Blank(0x00) ,7BB,96,111,.01,0,2,V,2103,6103,ff,21_03_#13_Maximum_Cell_voltage ,7BB,112,127,.01,0,2,V,2103,6103,ff,21_03_#15_Minimum_Cell_voltage ,7BB,128,135,1,0,0,,2103,6103,ff,21_03_#17_Safety Mode 1 Flags,0:NO SAFETY FLAG 1;1:SAFETY MODE FLAG 1 PRESENT ,7BB,136,151,1,0,0,,2103,6103,ff,21_03_#18_LBC F/S mode,4:HVBatLevel1Failure is set;6:HVBatLevel2Failure is set ,7BB,152,167,1,254,0,Nm,2103,6103,ff,21_03_#20_MG_Torque ,7BB,168,183,10,2000,0,rpm,2103,6103,ff,21_03_#22_MG_Output_revolution ,7BB,188,189,1,0,0,,2103,6103,ff,21_03_#24_bit2-bit3_High_voltage_relay_status_flag,0:Precharge;1:Closed;2:Opened;3:Transitory ,7BB,190,191,1,0,0,,2103,6103,ff,21_03_#24_bit0-bit1_Relay_on_permit_flag,0:Not used;1:Allowed;2:Not Allowed;3:Unavailable ,7BB,192,207,.01,0,2,%,2103,6103,ff,21_03_#25_Battery SOC ,7BB,224,231,1,0,0,,2103,6103,ff,21_03_#29 Vehicle Mode Request,0:NO REQUEST;1:Slow charging;2:Fast charging;3:Normal;4:Quick Drop;5:Not used (101);6:Not used (110);7:Unavailable value ,7BB,16,31,1,0,0,mV,2104,6104,ff,21_04_#03_Thermo_Sensor_1_AD_value ,7BB,32,39,1,40,0,degC,2104,6104,1ff,21_04_#05_Battery_Temperature_1 ,7BB,40,55,1,0,0,mV,2104,6104,ff,21_04_#06_Thermo_Sensor_2_AD_value ,7BB,56,63,1,40,0,degC,2104,6104,1ff,21_04_#08_Battery_Temperature_2 ,7BB,64,79,1,0,0,mV,2104,6104,ff,21_04_#09_Thermo_Sensor_3_AD_value ,7BB,80,87,1,40,0,degC,2104,6104,1ff,21_04_#11_Battery_Temperature_3 ,7BB,88,103,1,0,0,mV,2104,6104,ff,21_04_#12_Thermo_Sensor_4_AD_value ,7BB,104,111,1,40,0,degC,2104,6104,1ff,21_04_#14_Battery_Temperature_4 ,7BB,112,127,1,0,0,mV,2104,6104,ff,21_04_#15_Thermo_Sensor_5_AD_value ,7BB,128,135,1,40,0,degC,2104,6104,1ff,21_04_#17_Battery_Temperature_5 ,7BB,136,151,1,0,0,mV,2104,6104,ff,21_04_#18_Thermo_Sensor_6_AD_value ,7BB,152,159,1,40,0,degC,2104,6104,1ff,21_04_#20_Battery_Temperature_6 ,7BB,160,175,1,0,0,mV,2104,6104,ff,21_04_#21_Thermo_Sensor_7_AD_value ,7BB,176,183,1,40,0,degC,2104,6104,1ff,21_04_#23_Battery_Temperature_7 ,7BB,184,199,1,0,0,mV,2104,6104,ff,21_04_#24_Thermo_Sensor_8_AD_value ,7BB,200,207,1,40,0,degC,2104,6104,1ff,21_04_#26_Battery_Temperature_8 ,7BB,208,223,1,0,0,mV,2104,6104,ff,21_04_#27_Thermo_Sensor_9_AD_value ,7BB,224,231,1,40,0,degC,2104,6104,1ff,21_04_#29_Battery_Temperature_9 ,7BB,232,247,1,0,0,mV,2104,6104,ff,21_04_#30_Thermo_Sensor_10_AD_value ,7BB,248,255,1,40,0,degC,2104,6104,1ff,21_04_#32_Battery_Temperature_10 ,7BB,256,271,1,0,0,mV,2104,6104,ff,21_04_#33_Thermo_Sensor_11_AD_value ,7BB,272,279,1,40,0,degC,2104,6104,1ff,21_04_#35_Battery_Temperature_11 ,7BB,280,295,1,0,0,mV,2104,6104,ff,21_04_#36_Thermo_Sensor_12_AD_value ,7BB,296,303,1,40,0,degC,2104,6104,1ff,21_04_#38_Battery_Temperature_12 ,7BB,304,319,1,0,0,mV,2104,6104,ff,21_04_#39_Thermo_Sensor_13_AD_value ,7BB,320,327,1,40,0,degC,2104,6104,1ff,21_04_#41_Battery_Temperature_13 ,7BB,328,343,1,0,0,mV,2104,6104,ff,21_04_#42_Thermo_Sensor_14_AD_value ,7BB,344,351,1,40,0,degC,2104,6104,1ff,21_04_#44_Battery_Temperature_14 ,7BB,352,367,1,0,0,mV,2104,6104,ff,21_04_#45_Thermo_Sensor_15_AD_value ,7BB,368,375,1,40,0,degC,2104,6104,1ff,21_04_#47_Battery_Temperature_15 ,7BB,376,391,1,0,0,mV,2104,6104,ff,21_04_#48_Thermo_Sensor_16_AD_value ,7BB,392,399,1,40,0,degC,2104,6104,1ff,21_04_#50_Battery_Temperature_16 ,7BB,400,415,1,0,0,mV,2104,6104,ff,21_04_#51_Thermo_Sensor_17_AD_value ,7BB,416,423,1,40,0,degC,2104,6104,1ff,21_04_#53_Battery_Temperature_17 ,7BB,424,439,1,0,0,mV,2104,6104,ff,21_04_#54_Thermo_Sensor_18_AD_value ,7BB,440,447,1,40,0,degC,2104,6104,1ff,21_04_#56_Battery_Temperature_18 ,7BB,448,463,1,0,0,mV,2104,6104,ff,21_04_#57_Thermo_Sensor_19_AD_value ,7BB,464,471,1,40,0,degC,2104,6104,1ff,21_04_#59_Battery_Temperature_19 ,7BB,472,487,1,0,0,mV,2104,6104,ff,21_04_#60_Thermo_Sensor_20_AD_value ,7BB,488,495,1,40,0,degC,2104,6104,1ff,21_04_#62_Battery_Temperature_20 ,7BB,496,511,1,0,0,mV,2104,6104,ff,21_04_#63_Thermo_Sensor_21_AD_value ,7BB,512,519,1,40,0,degC,2104,6104,1ff,21_04_#65_Battery_Temperature_21 ,7BB,520,535,1,0,0,mV,2104,6104,ff,21_04_#66_Thermo_Sensor_22_AD_value ,7BB,536,543,1,40,0,degC,2104,6104,1ff,21_04_#68_Battery_Temperature_22 ,7BB,544,559,1,0,0,mV,2104,6104,ff,21_04_#69_Thermo_Sensor_23_AD_value ,7BB,560,567,1,40,0,degC,2104,6104,1ff,21_04_#71_Battery_Temperature_23 ,7BB,568,583,1,0,0,mV,2104,6104,ff,21_04_#72_Thermo_Sensor_24_AD_value ,7BB,584,591,1,40,0,degC,2104,6104,1ff,21_04_#74_Battery_Temperature_24 ,7BB,592,599,1,40,0,degC,2104,6104,1ff,21_04_#75_Minimum_Battery_Temperature ,7BB,600,607,1,40,0,degC,2104,6104,1ff,21_04_#76_Average_Battery_Temperature ,7BB,608,615,1,40,0,,2104,6104,ff,21_04_#77 Maximum Battery Temperature ,7BB,48,79,1,0,0,,2106,6106,1ff,21_06_#07_Vehicle ID 00 ,7BB,80,111,1,0,0,,2106,6106,1ff,21_06_#11_Vehicle ID 01 ,7BB,112,143,1,0,0,,2106,6106,1ff,21_06_#15_Vehicle ID 02 ,7BB,144,175,1,0,0,,2106,6106,1ff,21_06_#19_Vehicle ID 03 ,7BB,176,207,1,0,0,,2106,6106,1ff,21_06_#23_Vehicle ID 04 ,7BB,208,239,1,0,0,,2106,6106,1ff,21_06_#27_Vehicle ID 05 ,7BB,240,271,1,0,0,,2106,6106,1ff,21_06_#31_Vehicle ID 06 ,7BB,272,303,1,0,0,,2106,6106,1ff,21_06_#35_Vehicle ID 07 ,7BB,304,335,1,0,0,,2106,6106,1ff,21_06_#39_Vehicle ID 08 ,7BB,336,367,1,0,0,,2106,6106,1ff,21_06_#43_Vehicle ID 09 ,7BB,368,399,1,0,0,,2106,6106,1ff,21_06_#47_Vehicle ID 10 ,7BB,400,431,1,0,0,,2106,6106,1ff,21_06_#51_Vehicle ID 11 ,7BB,432,463,1,0,0,,2106,6106,1ff,21_06_#55_Vehicle ID 12 ,7BB,464,495,1,0,0,,2106,6106,1ff,21_06_#59_Vehicle ID 13 ,7BB,496,527,1,0,0,,2106,6106,1ff,21_06_#63_Vehicle ID 14 ,7BB,528,559,1,0,0,,2106,6106,1ff,21_06_#67_Vehicle ID 15 ,7BB,560,567,1,0,0,,2106,6106,ff,21_06_#71_Quick_Drop_Counter 00 ,7BB,568,575,1,0,0,,2106,6106,ff,21_06_#72_Quick_Drop_Counter 01 ,7BB,576,583,1,0,0,,2106,6106,ff,21_06_#73_Quick_Drop_Counter 02 ,7BB,584,591,1,0,0,,2106,6106,ff,21_06_#74_Quick_Drop_Counter 03 ,7BB,592,599,1,0,0,,2106,6106,ff,21_06_#75_Quick_Drop_Counter 04 ,7BB,600,607,1,0,0,,2106,6106,ff,21_06_#76_Quick_Drop_Counter 05 ,7BB,608,615,1,0,0,,2106,6106,ff,21_06_#77_Quick_Drop_Counter 06 ,7BB,616,623,1,0,0,,2106,6106,ff,21_06_#78_Quick_Drop_Counter 07 ,7BB,624,631,1,0,0,,2106,6106,ff,21_06_#79_Quick_Drop_Counter 08 ,7BB,632,639,1,0,0,,2106,6106,ff,21_06_#80_Quick_Drop_Counter 09 ,7BB,640,647,1,0,0,,2106,6106,ff,21_06_#81_Quick_Drop_Counter 10 ,7BB,648,655,1,0,0,,2106,6106,ff,21_06_#82_Quick_Drop_Counter 11 ,7BB,656,663,1,0,0,,2106,6106,ff,21_06_#83_Quick_Drop_Counter 12 ,7BB,664,671,1,0,0,,2106,6106,ff,21_06_#84_Quick_Drop_Counter 13 ,7BB,672,679,1,0,0,,2106,6106,ff,21_06_#85_Quick_Drop_Counter 14 ,7BB,680,687,1,0,0,,2106,6106,ff,21_06_#86_Quick_Drop_Counter 15 ,7BB,16,23,1,0,0,,2107,6107,ff,21_07_#03_Balancing Switch 1 Status ,7BB,24,31,1,0,0,,2107,6107,ff,21_07_#04_Balancing Switch 2 Status ,7BB,32,39,1,0,0,,2107,6107,ff,21_07_#05_Balancing Switch 3 Status ,7BB,40,47,1,0,0,,2107,6107,ff,21_07_#06_Balancing Switch 4 Status ,7BB,48,55,1,0,0,,2107,6107,ff,21_07_#07_Balancing Switch 5 Status ,7BB,56,63,1,0,0,,2107,6107,ff,21_07_#08_Balancing Switch 6 Status ,7BB,64,71,1,0,0,,2107,6107,ff,21_07_#09_Balancing Switch 7 Status ,7BB,72,79,1,0,0,,2107,6107,ff,21_07_#10_Balancing Switch 8 Status ,7BB,80,87,1,0,0,,2107,6107,ff,21_07_#11_Balancing Switch 9 Status ,7BB,88,95,1,0,0,,2107,6107,ff,21_07_#12_Balancing Switch 10 Status ,7BB,96,103,1,0,0,,2107,6107,ff,21_07_#13_Balancing Switch 11 Status ,7BB,104,111,1,0,0,,2107,6107,ff,21_07_#14_Balancing Switch 12 Status ,7BB,16,18,1,0,0,,2130,6130,ff,21_30 #003_b0_MSN_HIS[00]Operation_type ,7BB,22,30,.2,0,1,%,2130,6130,ff,21_30 #003_b6_MSN_HIS[00]User_SOC_end ,7BB,31,39,.2,0,1,%,2130,6130,ff,21_30 #004_b7_MSN_HIS[00]User_SOC_start ,7BB,40,47,1,0,0,,2130,6130,ff,21_30 #006_b0_MSN_HIS[00]Ampere_hour_discharge ,7BB,48,55,1,0,0,,2130,6130,ff,21_30 #007_b0_MSN_HIS[00]Ampere_hour_charge ,7BB,56,63,1,40,0,,2130,6130,ff,21_30 #008_b0_MSN_HIS[00]Battery_temp_end ,7BB,64,71,1,40,0,,2130,6130,ff,21_30 #009_b0_MSN_HIS[00]Battery_temp_start ,7BB,72,77,1,0,0,,2130,6130,ff,defauts mission 0 ,7BB,73,73,1,0,0,,2130,6130,ff,21_30 #010_b1_MSN_HIS[00]Diag_NG_over_discharge_batt ,7BB,74,74,1,0,0,,2130,6130,ff,21_30 #010_b2_MSN_HIS[00]Diag_NG_over_charge_cell ,7BB,75,75,1,0,0,,2130,6130,ff,21_30 #010_b3_MSN_HIS[00]Diag_NG_over_discharge_cell ,7BB,76,76,1,0,0,,2130,6130,ff,21_30 #010_b4_MSN_HIS[00]Diag_NG_over_current ,7BB,77,77,1,0,0,,2130,6130,ff,21_30 #010_b5_MSN_HIS[00]Diag_NG_over_temp ,7BB,80,82,1,0,0,,2130,6130,ff,21_30 #011_b0_MSN_HIS[01]Operation_type ,7BB,86,94,.2,0,1,%,2130,6130,ff,21_30 #011_b6_MSN_HIS[01]User_SOC_end ,7BB,95,103,.2,0,1,%,2130,6130,ff,21_30 #012_b7_MSN_HIS[01]User_SOC_start ,7BB,104,111,1,0,0,,2130,6130,ff,21_30 #014_b0_MSN_HIS[01]Ampere_hour_discharge ,7BB,112,119,1,0,0,,2130,6130,ff,21_30 #015_b0_MSN_HIS[01]Ampere_hour_charge ,7BB,120,127,1,40,0,,2130,6130,ff,21_30 #016_b0_MSN_HIS[01]Battery_temp_end ,7BB,128,135,1,40,0,,2130,6130,ff,21_30 #017_b0_MSN_HIS[01]Battery_temp_start ,7BB,136,141,1,0,0,,2130,6130,ff,defauts mission 1 ,7BB,137,137,1,0,0,,2130,6130,ff,21_30 #018_b1_MSN_HIS[01]Diag_NG_over_discharge_batt ,7BB,138,138,1,0,0,,2130,6130,ff,21_30 #018_b2_MSN_HIS[01]Diag_NG_over_charge_cell ,7BB,139,139,1,0,0,,2130,6130,ff,21_30 #018_b3_MSN_HIS[01]Diag_NG_over_discharge_cell ,7BB,140,140,1,0,0,,2130,6130,ff,21_30 #018_b4_MSN_HIS[01]Diag_NG_over_current ,7BB,141,141,1,0,0,,2130,6130,ff,21_30 #018_b5_MSN_HIS[01]Diag_NG_over_temp ,7BB,144,146,1,0,0,,2130,6130,ff,21_30 #019_b0_MSN_HIS[02]Operation_type ,7BB,150,158,.2,0,1,%,2130,6130,ff,21_30 #019_b6_MSN_HIS[02]User_SOC_end ,7BB,159,167,.2,0,1,%,2130,6130,ff,21_30 #020_b7_MSN_HIS[02]User_SOC_start ,7BB,168,175,1,0,0,,2130,6130,ff,21_30 #022_b0_MSN_HIS[02]Ampere_hour_discharge ,7BB,176,183,1,0,0,,2130,6130,ff,21_30 #023_b0_MSN_HIS[02]Ampere_hour_charge ,7BB,184,191,1,40,0,,2130,6130,ff,21_30 #024_b0_MSN_HIS[02]Battery_temp_end ,7BB,192,199,1,40,0,,2130,6130,ff,21_30 #025_b0_MSN_HIS[02]Battery_temp_start ,7BB,200,205,1,0,0,,2130,6130,ff,defauts mission 2 ,7BB,201,201,1,0,0,,2130,6130,ff,21_30 #026_b1_MSN_HIS[02]Diag_NG_over_discharge_batt ,7BB,202,202,1,0,0,,2130,6130,ff,21_30 #026_b2_MSN_HIS[02]Diag_NG_over_charge_cell ,7BB,203,203,1,0,0,,2130,6130,ff,21_30 #026_b3_MSN_HIS[02]Diag_NG_over_discharge_cell ,7BB,204,204,1,0,0,,2130,6130,ff,21_30 #026_b4_MSN_HIS[02]Diag_NG_over_current ,7BB,205,205,1,0,0,,2130,6130,ff,21_30 #026_b5_MSN_HIS[02]Diag_NG_over_temp ,7BB,208,210,1,0,0,,2130,6130,ff,21_30 #027_b0_MSN_HIS[03]Operation_type ,7BB,214,222,.2,0,1,%,2130,6130,ff,21_30 #027_b6_MSN_HIS[03]User_SOC_end ,7BB,223,231,.2,0,1,%,2130,6130,ff,21_30 #028_b7_MSN_HIS[03]User_SOC_start ,7BB,232,239,1,0,0,,2130,6130,ff,21_30 #030_b0_MSN_HIS[03]Ampere_hour_discharge ,7BB,240,247,1,0,0,,2130,6130,ff,21_30 #031_b0_MSN_HIS[03]Ampere_hour_charge ,7BB,248,255,1,40,0,,2130,6130,ff,21_30 #032_b0_MSN_HIS[03]Battery_temp_end ,7BB,256,263,1,40,0,,2130,6130,ff,21_30 #033_b0_MSN_HIS[03]Battery_temp_start ,7BB,264,269,1,0,0,,2130,6130,ff,defauts mission 3 ,7BB,265,265,1,0,0,,2130,6130,ff,21_30 #034_b1_MSN_HIS[03]Diag_NG_over_discharge_batt ,7BB,266,266,1,0,0,,2130,6130,ff,21_30 #034_b2_MSN_HIS[03]Diag_NG_over_charge_cell ,7BB,267,267,1,0,0,,2130,6130,ff,21_30 #034_b3_MSN_HIS[03]Diag_NG_over_discharge_cell ,7BB,268,268,1,0,0,,2130,6130,ff,21_30 #034_b4_MSN_HIS[03]Diag_NG_over_current ,7BB,269,269,1,0,0,,2130,6130,ff,21_30 #034_b5_MSN_HIS[03]Diag_NG_over_temp ,7BB,272,274,1,0,0,,2130,6130,ff,21_30 #035_b0_MSN_HIS[04]Operation_type ,7BB,278,286,.2,0,1,%,2130,6130,ff,21_30 #035_b6_MSN_HIS[04]User_SOC_end ,7BB,287,295,.2,0,1,%,2130,6130,ff,21_30 #036_b7_MSN_HIS[04]User_SOC_start ,7BB,296,303,1,0,0,,2130,6130,ff,21_30 #038_b0_MSN_HIS[04]Ampere_hour_discharge ,7BB,304,311,1,0,0,,2130,6130,ff,21_30 #039_b0_MSN_HIS[04]Ampere_hour_charge ,7BB,312,319,1,40,0,,2130,6130,ff,21_30 #040_b0_MSN_HIS[04]Battery_temp_end ,7BB,320,327,1,40,0,,2130,6130,ff,21_30 #041_b0_MSN_HIS[04]Battery_temp_start ,7BB,328,333,1,0,0,,2130,6130,ff,defauts mission 4 ,7BB,329,329,1,0,0,,2130,6130,ff,21_30 #042_b1_MSN_HIS[04]Diag_NG_over_discharge_batt ,7BB,330,330,1,0,0,,2130,6130,ff,21_30 #042_b2_MSN_HIS[04]Diag_NG_over_charge_cell ,7BB,331,331,1,0,0,,2130,6130,ff,21_30 #042_b3_MSN_HIS[04]Diag_NG_over_discharge_cell ,7BB,332,332,1,0,0,,2130,6130,ff,21_30 #042_b4_MSN_HIS[04]Diag_NG_over_current ,7BB,333,333,1,0,0,,2130,6130,ff,21_30 #042_b5_MSN_HIS[04]Diag_NG_over_temp ,7BB,336,338,1,0,0,,2130,6130,ff,21_30 #043_b0_MSN_HIS[05]Operation_type ,7BB,342,350,.2,0,1,%,2130,6130,ff,21_30 #043_b6_MSN_HIS[05]User_SOC_end ,7BB,351,359,.2,0,1,%,2130,6130,ff,21_30 #044_b7_MSN_HIS[05]User_SOC_start ,7BB,360,367,1,0,0,,2130,6130,ff,21_30 #046_b0_MSN_HIS[05]Ampere_hour_discharge ,7BB,368,375,1,0,0,,2130,6130,ff,21_30 #047_b0_MSN_HIS[05]Ampere_hour_charge ,7BB,376,383,1,40,0,,2130,6130,ff,21_30 #048_b0_MSN_HIS[05]Battery_temp_end ,7BB,384,391,1,40,0,,2130,6130,ff,21_30 #049_b0_MSN_HIS[05]Battery_temp_start ,7BB,392,397,1,0,0,,2130,6130,ff,defauts mission 5 ,7BB,393,393,1,0,0,,2130,6130,ff,21_30 #050_b1_MSN_HIS[05]Diag_NG_over_discharge_batt ,7BB,394,394,1,0,0,,2130,6130,ff,21_30 #050_b2_MSN_HIS[05]Diag_NG_over_charge_cell ,7BB,395,395,1,0,0,,2130,6130,ff,21_30 #050_b3_MSN_HIS[05]Diag_NG_over_discharge_cell ,7BB,396,396,1,0,0,,2130,6130,ff,21_30 #050_b4_MSN_HIS[05]Diag_NG_over_current ,7BB,397,397,1,0,0,,2130,6130,ff,21_30 #050_b5_MSN_HIS[05]Diag_NG_over_temp ,7BB,400,402,1,0,0,,2130,6130,ff,21_30 #051_b0_MSN_HIS[06]Operation_type ,7BB,406,414,.2,0,1,%,2130,6130,ff,21_30 #051_b6_MSN_HIS[06]User_SOC_end ,7BB,415,423,.2,0,1,%,2130,6130,ff,21_30 #052_b7_MSN_HIS[06]User_SOC_start ,7BB,424,431,1,0,0,,2130,6130,ff,21_30 #054_b0_MSN_HIS[06]Ampere_hour_discharge ,7BB,432,439,1,0,0,,2130,6130,ff,21_30 #055_b0_MSN_HIS[06]Ampere_hour_charge ,7BB,440,447,1,40,0,,2130,6130,ff,21_30 #056_b0_MSN_HIS[06]Battery_temp_end ,7BB,448,455,1,40,0,,2130,6130,ff,21_30 #057_b0_MSN_HIS[06]Battery_temp_start ,7BB,456,461,1,0,0,,2130,6130,ff,defauts mission 6 ,7BB,457,457,1,0,0,,2130,6130,ff,21_30 #058_b1_MSN_HIS[06]Diag_NG_over_discharge_batt ,7BB,458,458,1,0,0,,2130,6130,ff,21_30 #058_b2_MSN_HIS[06]Diag_NG_over_charge_cell ,7BB,459,459,1,0,0,,2130,6130,ff,21_30 #058_b3_MSN_HIS[06]Diag_NG_over_discharge_cell ,7BB,460,460,1,0,0,,2130,6130,ff,21_30 #058_b4_MSN_HIS[06]Diag_NG_over_current ,7BB,461,461,1,0,0,,2130,6130,ff,21_30 #058_b5_MSN_HIS[06]Diag_NG_over_temp ,7BB,464,466,1,0,0,,2130,6130,ff,21_30 #059_b0_MSN_HIS[07]Operation_type ,7BB,470,478,.2,0,1,%,2130,6130,ff,21_30 #059_b6_MSN_HIS[07]User_SOC_end ,7BB,479,487,.2,0,1,%,2130,6130,ff,21_30 #060_b7_MSN_HIS[07]User_SOC_start ,7BB,488,495,1,0,0,,2130,6130,ff,21_30 #062_b0_MSN_HIS[07]Ampere_hour_discharge ,7BB,496,503,1,0,0,,2130,6130,ff,21_30 #063_b0_MSN_HIS[07]Ampere_hour_charge ,7BB,504,511,1,40,0,,2130,6130,ff,21_30 #064_b0_MSN_HIS[07]Battery_temp_end ,7BB,512,519,1,40,0,,2130,6130,ff,21_30 #065_b0_MSN_HIS[07]Battery_temp_start ,7BB,520,525,1,0,0,,2130,6130,ff,defauts mission 7 ,7BB,521,521,1,0,0,,2130,6130,ff,21_30 #066_b1_MSN_HIS[07]Diag_NG_over_discharge_batt ,7BB,522,522,1,0,0,,2130,6130,ff,21_30 #066_b2_MSN_HIS[07]Diag_NG_over_charge_cell ,7BB,523,523,1,0,0,,2130,6130,ff,21_30 #066_b3_MSN_HIS[07]Diag_NG_over_discharge_cell ,7BB,524,524,1,0,0,,2130,6130,ff,21_30 #066_b4_MSN_HIS[07]Diag_NG_over_current ,7BB,525,525,1,0,0,,2130,6130,ff,21_30 #066_b5_MSN_HIS[07]Diag_NG_over_temp ,7BB,528,530,1,0,0,,2130,6130,ff,21_30 #067_b0_MSN_HIS[08]Operation_type ,7BB,534,542,.2,0,1,%,2130,6130,ff,21_30 #067_b6_MSN_HIS[08]User_SOC_end ,7BB,543,551,.2,0,1,%,2130,6130,ff,21_30 #068_b7_MSN_HIS[08]User_SOC_start ,7BB,552,559,1,0,0,,2130,6130,ff,21_30 #070_b0_MSN_HIS[08]Ampere_hour_discharge ,7BB,560,567,1,0,0,,2130,6130,ff,21_30 #071_b0_MSN_HIS[08]Ampere_hour_charge ,7BB,568,575,1,40,0,,2130,6130,ff,21_30 #072_b0_MSN_HIS[08]Battery_temp_end ,7BB,576,583,1,40,0,,2130,6130,ff,21_30 #073_b0_MSN_HIS[08]Battery_temp_start ,7BB,584,589,1,0,0,,2130,6130,ff,defauts mission 8 ,7BB,585,585,1,0,0,,2130,6130,ff,21_30 #074_b1_MSN_HIS[08]Diag_NG_over_discharge_batt ,7BB,586,586,1,0,0,,2130,6130,ff,21_30 #074_b2_MSN_HIS[08]Diag_NG_over_charge_cell ,7BB,587,587,1,0,0,,2130,6130,ff,21_30 #074_b3_MSN_HIS[08]Diag_NG_over_discharge_cell ,7BB,588,588,1,0,0,,2130,6130,ff,21_30 #074_b4_MSN_HIS[08]Diag_NG_over_current ,7BB,589,589,1,0,0,,2130,6130,ff,21_30 #074_b5_MSN_HIS[08]Diag_NG_over_temp ,7BB,592,594,1,0,0,,2130,6130,ff,21_30 #075_b0_MSN_HIS[09]Operation_type ,7BB,598,606,.2,0,1,%,2130,6130,ff,21_30 #075_b6_MSN_HIS[09]User_SOC_end ,7BB,607,615,.2,0,1,%,2130,6130,ff,21_30 #076_b7_MSN_HIS[09]User_SOC_start ,7BB,616,623,1,0,0,,2130,6130,ff,21_30 #078_b0_MSN_HIS[09]Ampere_hour_discharge ,7BB,624,631,1,0,0,,2130,6130,ff,21_30 #079_b0_MSN_HIS[09]Ampere_hour_charge ,7BB,632,639,1,40,0,,2130,6130,ff,21_30 #080_b0_MSN_HIS[09]Battery_temp_end ,7BB,640,647,1,40,0,,2130,6130,ff,21_30 #081_b0_MSN_HIS[09]Battery_temp_start ,7BB,648,653,1,0,0,,2130,6130,ff,defauts mission 9 ,7BB,649,649,1,0,0,,2130,6130,ff,21_30 #082_b1_MSN_HIS[09]Diag_NG_over_discharge_batt ,7BB,650,650,1,0,0,,2130,6130,ff,21_30 #082_b2_MSN_HIS[09]Diag_NG_over_charge_cell ,7BB,651,651,1,0,0,,2130,6130,ff,21_30 #082_b3_MSN_HIS[09]Diag_NG_over_discharge_cell ,7BB,652,652,1,0,0,,2130,6130,ff,21_30 #082_b4_MSN_HIS[09]Diag_NG_over_current ,7BB,653,653,1,0,0,,2130,6130,ff,21_30 #082_b5_MSN_HIS[09]Diag_NG_over_temp ,7BB,656,658,1,0,0,,2130,6130,ff,21_30 #083_b0_MSN_HIS[10]Operation_type ,7BB,662,670,.2,0,1,%,2130,6130,ff,21_30 #083_b6_MSN_HIS[10]User_SOC_end ,7BB,671,679,.2,0,1,%,2130,6130,ff,21_30 #084_b7_MSN_HIS[10]User_SOC_start ,7BB,680,687,1,0,0,,2130,6130,ff,21_30 #086_b0_MSN_HIS[10]Ampere_hour_discharge ,7BB,688,695,1,0,0,,2130,6130,ff,21_30 #087_b0_MSN_HIS[10]Ampere_hour_charge ,7BB,696,703,1,40,0,,2130,6130,ff,21_30 #088_b0_MSN_HIS[10]Battery_temp_end ,7BB,704,711,1,40,0,,2130,6130,ff,21_30 #089_b0_MSN_HIS[10]Battery_temp_start ,7BB,712,717,1,0,0,,2130,6130,ff,defauts mission 10 ,7BB,713,713,1,0,0,,2130,6130,ff,21_30 #090_b1_MSN_HIS[10]Diag_NG_over_discharge_batt ,7BB,714,714,1,0,0,,2130,6130,ff,21_30 #090_b2_MSN_HIS[10]Diag_NG_over_charge_cell ,7BB,715,715,1,0,0,,2130,6130,ff,21_30 #090_b3_MSN_HIS[10]Diag_NG_over_discharge_cell ,7BB,716,716,1,0,0,,2130,6130,ff,21_30 #090_b4_MSN_HIS[10]Diag_NG_over_current ,7BB,717,717,1,0,0,,2130,6130,ff,21_30 #090_b5_MSN_HIS[10]Diag_NG_over_temp ,7BB,720,722,1,0,0,,2130,6130,ff,21_30 #091_b0_MSN_HIS[11]Operation_type ,7BB,726,734,.2,0,1,%,2130,6130,ff,21_30 #091_b6_MSN_HIS[11]User_SOC_end ,7BB,735,743,.2,0,1,%,2130,6130,ff,21_30 #092_b7_MSN_HIS[11]User_SOC_start ,7BB,744,751,1,0,0,,2130,6130,ff,21_30 #094_b0_MSN_HIS[11]Ampere_hour_discharge ,7BB,752,759,1,0,0,,2130,6130,ff,21_30 #095_b0_MSN_HIS[11]Ampere_hour_charge ,7BB,760,767,1,40,0,,2130,6130,ff,21_30 #096_b0_MSN_HIS[11]Battery_temp_end ,7BB,768,775,1,40,0,,2130,6130,ff,21_30 #097_b0_MSN_HIS[11]Battery_temp_start ,7BB,776,781,1,0,0,,2130,6130,ff,defauts mission 11 ,7BB,777,777,1,0,0,,2130,6130,ff,21_30 #098_b1_MSN_HIS[11]Diag_NG_over_discharge_batt ,7BB,778,778,1,0,0,,2130,6130,ff,21_30 #098_b2_MSN_HIS[11]Diag_NG_over_charge_cell ,7BB,779,779,1,0,0,,2130,6130,ff,21_30 #098_b3_MSN_HIS[11]Diag_NG_over_discharge_cell ,7BB,780,780,1,0,0,,2130,6130,ff,21_30 #098_b4_MSN_HIS[11]Diag_NG_over_current ,7BB,781,781,1,0,0,,2130,6130,ff,21_30 #098_b5_MSN_HIS[11]Diag_NG_over_temp ,7BB,784,786,1,0,0,,2130,6130,ff,21_30 #099_b0_MSN_HIS[12]Operation_type ,7BB,790,798,.2,0,1,%,2130,6130,ff,21_30 #099_b6_MSN_HIS[12]User_SOC_end ,7BB,799,807,.2,0,1,%,2130,6130,ff,21_30 #100_b7_MSN_HIS[12]User_SOC_start ,7BB,808,815,1,0,0,,2130,6130,ff,21_30 #102_b0_MSN_HIS[12]Ampere_hour_discharge ,7BB,816,823,1,0,0,,2130,6130,ff,21_30 #103_b0_MSN_HIS[12]Ampere_hour_charge ,7BB,824,831,1,40,0,,2130,6130,ff,21_30 #104_b0_MSN_HIS[12]Battery_temp_end ,7BB,832,839,1,40,0,,2130,6130,ff,21_30 #105_b0_MSN_HIS[12]Battery_temp_start ,7BB,840,845,1,0,0,,2130,6130,ff,defauts mission 12 ,7BB,841,841,1,0,0,,2130,6130,ff,21_30 #106_b1_MSN_HIS[12]Diag_NG_over_discharge_batt ,7BB,842,842,1,0,0,,2130,6130,ff,21_30 #106_b2_MSN_HIS[12]Diag_NG_over_charge_cell ,7BB,843,843,1,0,0,,2130,6130,ff,21_30 #106_b3_MSN_HIS[12]Diag_NG_over_discharge_cell ,7BB,844,844,1,0,0,,2130,6130,ff,21_30 #106_b4_MSN_HIS[12]Diag_NG_over_current ,7BB,845,845,1,0,0,,2130,6130,ff,21_30 #106_b5_MSN_HIS[12]Diag_NG_over_temp ,7BB,848,850,1,0,0,,2130,6130,ff,21_30 #107_b0_MSN_HIS[13]Operation_type ,7BB,854,862,.2,0,1,%,2130,6130,ff,21_30 #107_b6_MSN_HIS[13]User_SOC_end ,7BB,863,871,.2,0,1,%,2130,6130,ff,21_30 #108_b7_MSN_HIS[13]User_SOC_start ,7BB,872,879,1,0,0,,2130,6130,ff,21_30 #110_b0_MSN_HIS[13]Ampere_hour_discharge ,7BB,880,887,1,0,0,,2130,6130,ff,21_30 #111_b0_MSN_HIS[13]Ampere_hour_charge ,7BB,888,895,1,40,0,,2130,6130,ff,21_30 #112_b0_MSN_HIS[13]Battery_temp_end ,7BB,896,903,1,40,0,,2130,6130,ff,21_30 #113_b0_MSN_HIS[13]Battery_temp_start ,7BB,904,909,1,0,0,,2130,6130,ff,defauts mission 13 ,7BB,905,905,1,0,0,,2130,6130,ff,21_30 #114_b1_MSN_HIS[13]Diag_NG_over_discharge_batt ,7BB,906,906,1,0,0,,2130,6130,ff,21_30 #114_b2_MSN_HIS[13]Diag_NG_over_charge_cell ,7BB,907,907,1,0,0,,2130,6130,ff,21_30 #114_b3_MSN_HIS[13]Diag_NG_over_discharge_cell ,7BB,908,908,1,0,0,,2130,6130,ff,21_30 #114_b4_MSN_HIS[13]Diag_NG_over_current ,7BB,909,909,1,0,0,,2130,6130,ff,21_30 #114_b5_MSN_HIS[13]Diag_NG_over_temp ,7BB,912,914,1,0,0,,2130,6130,ff,21_30 #115_b0_MSN_HIS[14]Operation_type ,7BB,918,926,.2,0,1,%,2130,6130,ff,21_30 #115_b6_MSN_HIS[14]User_SOC_end ,7BB,927,935,.32,0,1,%,2130,6130,ff,21_30 #116_b7_MSN_HIS[14]User_SOC_start ,7BB,936,943,1,0,0,,2130,6130,ff,21_30 #118_b0_MSN_HIS[14]Ampere_hour_discharge ,7BB,944,951,1,0,0,,2130,6130,ff,21_30 #119_b0_MSN_HIS[14]Ampere_hour_charge ,7BB,952,959,1,40,0,,2130,6130,ff,21_30 #120_b0_MSN_HIS[14]Battery_temp_end ,7BB,960,967,1,40,0,,2130,6130,ff,21_30 #121_b0_MSN_HIS[14]Battery_temp_start ,7BB,968,973,1,0,0,,2130,6130,ff,defauts mission 14 ,7BB,969,969,1,0,0,,2130,6130,ff,21_30 #122_b1_MSN_HIS[14]Diag_NG_over_discharge_batt ,7BB,970,970,1,0,0,,2130,6130,ff,21_30 #122_b2_MSN_HIS[14]Diag_NG_over_charge_cell ,7BB,971,971,1,0,0,,2130,6130,ff,21_30 #122_b3_MSN_HIS[14]Diag_NG_over_discharge_cell ,7BB,972,972,1,0,0,,2130,6130,ff,21_30 #122_b4_MSN_HIS[14]Diag_NG_over_current ,7BB,973,973,1,0,0,,2130,6130,ff,21_30 #122_b5_MSN_HIS[14]Diag_NG_over_temp ,7BB,16,18,1,0,0,,2131,6131,ff,21_31 #003_b0_MSN_HIS[15]Operation_type ,7BB,22,30,.2,0,1,%,2131,6131,ff,21_31 #003_b6_MSN_HIS[15]User_SOC_end ,7BB,31,39,.2,0,1,%,2131,6131,ff,21_31 #004_b7_MSN_HIS[15]User_SOC_start ,7BB,40,47,1,0,0,,2131,6131,ff,21_31 #006_b0_MSN_HIS[15]Ampere_hour_discharge ,7BB,48,55,1,0,0,,2131,6131,ff,21_31 #007_b0_MSN_HIS[15]Ampere_hour_charge ,7BB,56,63,1,40,0,,2131,6131,ff,21_31 #008_b0_MSN_HIS[15]Battery_temp_end ,7BB,64,71,1,40,0,,2131,6131,ff,21_31 #009_b0_MSN_HIS[15]Battery_temp_start ,7BB,72,77,1,0,0,,2131,6131,ff,defauts mission 15 ,7BB,73,73,1,0,0,,2131,6131,ff,21_31 #010_b1_MSN_HIS[15]Diag_NG_over_discharge_batt ,7BB,74,74,1,0,0,,2131,6131,ff,21_31 #010_b2_MSN_HIS[15]Diag_NG_over_charge_cell ,7BB,75,75,1,0,0,,2131,6131,ff,21_31 #010_b3_MSN_HIS[15]Diag_NG_over_discharge_cell ,7BB,76,76,1,0,0,,2131,6131,ff,21_31 #010_b4_MSN_HIS[15]Diag_NG_over_current ,7BB,77,77,1,0,0,,2131,6131,ff,21_31 #010_b5_MSN_HIS[15]Diag_NG_over_temp ,7BB,80,82,1,0,0,,2131,6131,ff,21_31 #011_b0_MSN_HIS[16]Operation_type ,7BB,86,94,.2,0,1,%,2131,6131,ff,21_31 #011_b6_MSN_HIS[16]User_SOC_end ,7BB,95,103,.2,0,1,%,2131,6131,ff,21_31 #012_b7_MSN_HIS[16]User_SOC_start ,7BB,104,111,1,0,0,,2131,6131,ff,21_31 #014_b0_MSN_HIS[16]Ampere_hour_discharge ,7BB,112,119,1,0,0,,2131,6131,ff,21_31 #015_b0_MSN_HIS[16]Ampere_hour_charge ,7BB,120,127,1,40,0,,2131,6131,ff,21_31 #016_b0_MSN_HIS[16]Battery_temp_end ,7BB,128,135,1,40,0,,2131,6131,ff,21_31 #017_b0_MSN_HIS[16]Battery_temp_start ,7BB,136,141,1,0,0,,2131,6131,ff,defauts mission 16 ,7BB,137,137,1,0,0,,2131,6131,ff,21_31 #018_b1_MSN_HIS[16]Diag_NG_over_discharge_batt ,7BB,138,138,1,0,0,,2131,6131,ff,21_31 #018_b2_MSN_HIS[16]Diag_NG_over_charge_cell ,7BB,139,139,1,0,0,,2131,6131,ff,21_31 #018_b3_MSN_HIS[16]Diag_NG_over_discharge_cell ,7BB,140,140,1,0,0,,2131,6131,ff,21_31 #018_b4_MSN_HIS[16]Diag_NG_over_current ,7BB,141,141,1,0,0,,2131,6131,ff,21_31 #018_b5_MSN_HIS[16]Diag_NG_over_temp ,7BB,144,146,1,0,0,,2131,6131,ff,21_31 #019_b0_MSN_HIS[17]Operation_type ,7BB,150,158,.2,0,1,%,2131,6131,ff,21_31 #019_b6_MSN_HIS[17]User_SOC_end ,7BB,159,167,.2,0,1,%,2131,6131,ff,21_31 #020_b7_MSN_HIS[17]User_SOC_start ,7BB,168,175,1,0,0,,2131,6131,ff,21_31 #022_b0_MSN_HIS[17]Ampere_hour_discharge ,7BB,176,183,1,0,0,,2131,6131,ff,21_31 #023_b0_MSN_HIS[17]Ampere_hour_charge ,7BB,184,191,1,40,0,,2131,6131,ff,21_31 #024_b0_MSN_HIS[17]Battery_temp_end ,7BB,192,199,1,40,0,,2131,6131,ff,21_31 #025_b0_MSN_HIS[17]Battery_temp_start ,7BB,200,205,1,0,0,,2131,6131,ff,defauts mission 17 ,7BB,201,201,1,0,0,,2131,6131,ff,21_31 #026_b1_MSN_HIS[17]Diag_NG_over_discharge_batt ,7BB,202,202,1,0,0,,2131,6131,ff,21_31 #026_b2_MSN_HIS[17]Diag_NG_over_charge_cell ,7BB,203,203,1,0,0,,2131,6131,ff,21_31 #026_b3_MSN_HIS[17]Diag_NG_over_discharge_cell ,7BB,204,204,1,0,0,,2131,6131,ff,21_31 #026_b4_MSN_HIS[17]Diag_NG_over_current ,7BB,205,205,1,0,0,,2131,6131,ff,21_31 #026_b5_MSN_HIS[17]Diag_NG_over_temp ,7BB,208,210,1,0,0,,2131,6131,ff,21_31 #027_b0_MSN_HIS[18]Operation_type ,7BB,214,222,.2,0,1,%,2131,6131,ff,21_31 #027_b6_MSN_HIS[18]User_SOC_end ,7BB,223,231,.2,0,1,%,2131,6131,ff,21_31 #028_b7_MSN_HIS[18]User_SOC_start ,7BB,232,239,1,0,0,,2131,6131,ff,21_31 #030_b0_MSN_HIS[18]Ampere_hour_discharge ,7BB,240,247,1,0,0,,2131,6131,ff,21_31 #031_b0_MSN_HIS[18]Ampere_hour_charge ,7BB,248,255,1,40,0,,2131,6131,ff,21_31 #032_b0_MSN_HIS[18]Battery_temp_end ,7BB,256,263,1,40,0,,2131,6131,ff,21_31 #033_b0_MSN_HIS[18]Battery_temp_start ,7BB,264,269,1,0,0,,2131,6131,ff,defauts mission 18 ,7BB,265,265,1,0,0,,2131,6131,ff,21_31 #034_b1_MSN_HIS[18]Diag_NG_over_discharge_batt ,7BB,266,266,1,0,0,,2131,6131,ff,21_31 #034_b2_MSN_HIS[18]Diag_NG_over_charge_cell ,7BB,267,267,1,0,0,,2131,6131,ff,21_31 #034_b3_MSN_HIS[18]Diag_NG_over_discharge_cell ,7BB,268,268,1,0,0,,2131,6131,ff,21_31 #034_b4_MSN_HIS[18]Diag_NG_over_current ,7BB,269,269,1,0,0,,2131,6131,ff,21_31 #034_b5_MSN_HIS[18]Diag_NG_over_temp ,7BB,272,274,1,0,0,,2131,6131,ff,21_31 #035_b0_MSN_HIS[19]Operation_type ,7BB,278,286,.2,0,1,%,2131,6131,ff,21_31 #035_b6_MSN_HIS[19]User_SOC_end ,7BB,287,295,.2,0,1,%,2131,6131,ff,21_31 #036_b7_MSN_HIS[19]User_SOC_start ,7BB,296,303,1,0,0,,2131,6131,ff,21_31 #038_b0_MSN_HIS[19]Ampere_hour_discharge ,7BB,304,311,1,0,0,,2131,6131,ff,21_31 #039_b0_MSN_HIS[19]Ampere_hour_charge ,7BB,312,319,1,40,0,,2131,6131,ff,21_31 #040_b0_MSN_HIS[19]Battery_temp_end ,7BB,320,327,1,40,0,,2131,6131,ff,21_31 #041_b0_MSN_HIS[19]Battery_temp_start ,7BB,328,333,1,0,0,,2131,6131,ff,defauts mission 19 ,7BB,329,329,1,0,0,,2131,6131,ff,21_31 #042_b1_MSN_HIS[19]Diag_NG_over_discharge_batt ,7BB,330,330,1,0,0,,2131,6131,ff,21_31 #042_b2_MSN_HIS[19]Diag_NG_over_charge_cell ,7BB,331,331,1,0,0,,2131,6131,ff,21_31 #042_b3_MSN_HIS[19]Diag_NG_over_discharge_cell ,7BB,332,332,1,0,0,,2131,6131,ff,21_31 #042_b4_MSN_HIS[19]Diag_NG_over_current ,7BB,333,333,1,0,0,,2131,6131,ff,21_31 #042_b5_MSN_HIS[19]Diag_NG_over_temp ,7BB,336,338,1,0,0,,2131,6131,ff,21_31 #043_b0_MSN_HIS[20]Operation_type ,7BB,342,350,.2,0,1,%,2131,6131,ff,21_31 #043_b6_MSN_HIS[20]User_SOC_end ,7BB,351,359,.2,0,1,%,2131,6131,ff,21_31 #044_b7_MSN_HIS[20]User_SOC_start ,7BB,360,367,1,0,0,,2131,6131,ff,21_31 #046_b0_MSN_HIS[20]Ampere_hour_discharge ,7BB,368,375,1,0,0,,2131,6131,ff,21_31 #047_b0_MSN_HIS[20]Ampere_hour_charge ,7BB,376,383,1,40,0,,2131,6131,ff,21_31 #048_b0_MSN_HIS[20]Battery_temp_end ,7BB,384,391,1,40,0,,2131,6131,ff,21_31 #049_b0_MSN_HIS[20]Battery_temp_start ,7BB,392,397,1,0,0,,2131,6131,ff,defauts mission 20 ,7BB,393,393,1,0,0,,2131,6131,ff,21_31 #050_b1_MSN_HIS[20]Diag_NG_over_discharge_batt ,7BB,394,394,1,0,0,,2131,6131,ff,21_31 #050_b2_MSN_HIS[20]Diag_NG_over_charge_cell ,7BB,395,395,1,0,0,,2131,6131,ff,21_31 #050_b3_MSN_HIS[20]Diag_NG_over_discharge_cell ,7BB,396,396,1,0,0,,2131,6131,ff,21_31 #050_b4_MSN_HIS[20]Diag_NG_over_current ,7BB,397,397,1,0,0,,2131,6131,ff,21_31 #050_b5_MSN_HIS[20]Diag_NG_over_temp ,7BB,400,402,1,0,0,,2131,6131,ff,21_31 #051_b0_MSN_HIS[21]Operation_type ,7BB,406,414,.2,0,1,%,2131,6131,ff,21_31 #051_b6_MSN_HIS[21]User_SOC_end ,7BB,415,423,.2,0,1,%,2131,6131,ff,21_31 #052_b7_MSN_HIS[21]User_SOC_start ,7BB,424,431,1,0,0,,2131,6131,ff,21_31 #054_b0_MSN_HIS[21]Ampere_hour_discharge ,7BB,432,439,1,0,0,,2131,6131,ff,21_31 #055_b0_MSN_HIS[21]Ampere_hour_charge ,7BB,440,447,1,40,0,,2131,6131,ff,21_31 #056_b0_MSN_HIS[21]Battery_temp_end ,7BB,448,455,1,40,0,,2131,6131,ff,21_31 #057_b0_MSN_HIS[21]Battery_temp_start ,7BB,456,461,1,0,0,,2131,6131,ff,defauts mission 21 ,7BB,457,457,1,0,0,,2131,6131,ff,21_31 #058_b1_MSN_HIS[21]Diag_NG_over_discharge_batt ,7BB,458,458,1,0,0,,2131,6131,ff,21_31 #058_b2_MSN_HIS[21]Diag_NG_over_charge_cell ,7BB,459,459,1,0,0,,2131,6131,ff,21_31 #058_b3_MSN_HIS[21]Diag_NG_over_discharge_cell ,7BB,460,460,1,0,0,,2131,6131,ff,21_31 #058_b4_MSN_HIS[21]Diag_NG_over_current ,7BB,461,461,1,0,0,,2131,6131,ff,21_31 #058_b5_MSN_HIS[21]Diag_NG_over_temp ,7BB,464,466,1,0,0,,2131,6131,ff,21_31 #059_b0_MSN_HIS[22]Operation_type ,7BB,470,478,.2,0,1,%,2131,6131,ff,21_31 #059_b6_MSN_HIS[22]User_SOC_end ,7BB,479,487,.2,0,1,%,2131,6131,ff,21_31 #060_b7_MSN_HIS[22]User_SOC_start ,7BB,488,495,1,0,0,,2131,6131,ff,21_31 #062_b0_MSN_HIS[22]Ampere_hour_discharge ,7BB,496,503,1,0,0,,2131,6131,ff,21_31 #063_b0_MSN_HIS[22]Ampere_hour_charge ,7BB,504,511,1,40,0,,2131,6131,ff,21_31 #064_b0_MSN_HIS[22]Battery_temp_end ,7BB,512,519,1,40,0,,2131,6131,ff,21_31 #065_b0_MSN_HIS[22]Battery_temp_start ,7BB,520,525,1,0,0,,2131,6131,ff,defauts mission 22 ,7BB,521,521,1,0,0,,2131,6131,ff,21_31 #066_b1_MSN_HIS[22]Diag_NG_over_discharge_batt ,7BB,522,522,1,0,0,,2131,6131,ff,21_31 #066_b2_MSN_HIS[22]Diag_NG_over_charge_cell ,7BB,523,523,1,0,0,,2131,6131,ff,21_31 #066_b3_MSN_HIS[22]Diag_NG_over_discharge_cell ,7BB,524,524,1,0,0,,2131,6131,ff,21_31 #066_b4_MSN_HIS[22]Diag_NG_over_current ,7BB,525,525,1,0,0,,2131,6131,ff,21_31 #066_b5_MSN_HIS[22]Diag_NG_over_temp ,7BB,528,530,1,0,0,,2131,6131,ff,21_31 #067_b0_MSN_HIS[23]Operation_type ,7BB,534,542,.2,0,1,%,2131,6131,ff,21_31 #067_b6_MSN_HIS[23]User_SOC_end ,7BB,543,551,.2,0,1,%,2131,6131,ff,21_31 #068_b7_MSN_HIS[23]User_SOC_start ,7BB,552,559,1,0,0,,2131,6131,ff,21_31 #070_b0_MSN_HIS[23]Ampere_hour_discharge ,7BB,560,567,1,0,0,,2131,6131,ff,21_31 #071_b0_MSN_HIS[23]Ampere_hour_charge ,7BB,568,575,1,40,0,,2131,6131,ff,21_31 #072_b0_MSN_HIS[23]Battery_temp_end ,7BB,576,583,1,40,0,,2131,6131,ff,21_31 #073_b0_MSN_HIS[23]Battery_temp_start ,7BB,584,589,1,0,0,,2131,6131,ff,defauts mission 23 ,7BB,585,585,1,0,0,,2131,6131,ff,21_31 #074_b1_MSN_HIS[23]Diag_NG_over_discharge_batt ,7BB,586,586,1,0,0,,2131,6131,ff,21_31 #074_b2_MSN_HIS[23]Diag_NG_over_charge_cell ,7BB,587,587,1,0,0,,2131,6131,ff,21_31 #074_b3_MSN_HIS[23]Diag_NG_over_discharge_cell ,7BB,588,588,1,0,0,,2131,6131,ff,21_31 #074_b4_MSN_HIS[23]Diag_NG_over_current ,7BB,589,589,1,0,0,,2131,6131,ff,21_31 #074_b5_MSN_HIS[23]Diag_NG_over_temp ,7BB,592,594,1,0,0,,2131,6131,ff,21_31 #075_b0_MSN_HIS[24]Operation_type ,7BB,598,606,.2,0,1,%,2131,6131,ff,21_31 #075_b6_MSN_HIS[24]User_SOC_end ,7BB,607,615,.2,0,1,%,2131,6131,ff,21_31 #076_b7_MSN_HIS[24]User_SOC_start ,7BB,616,623,1,0,0,,2131,6131,ff,21_31 #078_b0_MSN_HIS[24]Ampere_hour_discharge ,7BB,624,631,1,0,0,,2131,6131,ff,21_31 #079_b0_MSN_HIS[24]Ampere_hour_charge ,7BB,632,639,1,40,0,,2131,6131,ff,21_31 #080_b0_MSN_HIS[24]Battery_temp_end ,7BB,640,647,1,40,0,,2131,6131,ff,21_31 #081_b0_MSN_HIS[24]Battery_temp_start ,7BB,648,653,1,0,0,,2131,6131,ff,defauts mission 24 ,7BB,649,649,1,0,0,,2131,6131,ff,21_31 #082_b1_MSN_HIS[24]Diag_NG_over_discharge_batt ,7BB,650,650,1,0,0,,2131,6131,ff,21_31 #082_b2_MSN_HIS[24]Diag_NG_over_charge_cell ,7BB,651,651,1,0,0,,2131,6131,ff,21_31 #082_b3_MSN_HIS[24]Diag_NG_over_discharge_cell ,7BB,652,652,1,0,0,,2131,6131,ff,21_31 #082_b4_MSN_HIS[24]Diag_NG_over_current ,7BB,653,653,1,0,0,,2131,6131,ff,21_31 #082_b5_MSN_HIS[24]Diag_NG_over_temp ,7BB,656,658,1,0,0,,2131,6131,ff,21_31 #083_b0_MSN_HIS[25]Operation_type ,7BB,662,670,.2,0,1,%,2131,6131,ff,21_31 #083_b6_MSN_HIS[25]User_SOC_end ,7BB,671,679,.2,0,1,%,2131,6131,ff,21_31 #084_b7_MSN_HIS[25]User_SOC_start ,7BB,680,687,1,0,0,,2131,6131,ff,21_31 #086_b0_MSN_HIS[25]Ampere_hour_discharge ,7BB,688,695,1,0,0,,2131,6131,ff,21_31 #087_b0_MSN_HIS[25]Ampere_hour_charge ,7BB,696,703,1,40,0,,2131,6131,ff,21_31 #088_b0_MSN_HIS[25]Battery_temp_end ,7BB,704,711,1,40,0,,2131,6131,ff,21_31 #089_b0_MSN_HIS[25]Battery_temp_start ,7BB,712,717,1,0,0,,2131,6131,ff,defauts mission 25 ,7BB,713,713,1,0,0,,2131,6131,ff,21_31 #090_b1_MSN_HIS[25]Diag_NG_over_discharge_batt ,7BB,714,714,1,0,0,,2131,6131,ff,21_31 #090_b2_MSN_HIS[25]Diag_NG_over_charge_cell ,7BB,715,715,1,0,0,,2131,6131,ff,21_31 #090_b3_MSN_HIS[25]Diag_NG_over_discharge_cell ,7BB,716,716,1,0,0,,2131,6131,ff,21_31 #090_b4_MSN_HIS[25]Diag_NG_over_current ,7BB,717,717,1,0,0,,2131,6131,ff,21_31 #090_b5_MSN_HIS[25]Diag_NG_over_temp ,7BB,720,722,1,0,0,,2131,6131,ff,21_31 #091_b0_MSN_HIS[26]Operation_type ,7BB,726,734,.2,0,1,%,2131,6131,ff,21_31 #091_b6_MSN_HIS[26]User_SOC_end ,7BB,735,743,.2,0,1,%,2131,6131,ff,21_31 #092_b7_MSN_HIS[26]User_SOC_start ,7BB,744,751,1,0,0,,2131,6131,ff,21_31 #094_b0_MSN_HIS[26]Ampere_hour_discharge ,7BB,752,759,1,0,0,,2131,6131,ff,21_31 #095_b0_MSN_HIS[26]Ampere_hour_charge ,7BB,760,767,1,40,0,,2131,6131,ff,21_31 #096_b0_MSN_HIS[26]Battery_temp_end ,7BB,768,775,1,40,0,,2131,6131,ff,21_31 #097_b0_MSN_HIS[26]Battery_temp_start ,7BB,776,781,1,0,0,,2131,6131,ff,defauts mission 26 ,7BB,777,777,1,0,0,,2131,6131,ff,21_31 #098_b1_MSN_HIS[26]Diag_NG_over_discharge_batt ,7BB,778,778,1,0,0,,2131,6131,ff,21_31 #098_b2_MSN_HIS[26]Diag_NG_over_charge_cell ,7BB,779,779,1,0,0,,2131,6131,ff,21_31 #098_b3_MSN_HIS[26]Diag_NG_over_discharge_cell ,7BB,780,780,1,0,0,,2131,6131,ff,21_31 #098_b4_MSN_HIS[26]Diag_NG_over_current ,7BB,781,781,1,0,0,,2131,6131,ff,21_31 #098_b5_MSN_HIS[26]Diag_NG_over_temp ,7BB,784,786,1,0,0,,2131,6131,ff,21_31 #099_b0_MSN_HIS[27]Operation_type ,7BB,790,798,.2,0,1,%,2131,6131,ff,21_31 #099_b6_MSN_HIS[27]User_SOC_end ,7BB,799,807,.2,0,1,%,2131,6131,ff,21_31 #100_b7_MSN_HIS[27]User_SOC_start ,7BB,808,815,1,0,0,,2131,6131,ff,21_31 #102_b0_MSN_HIS[27]Ampere_hour_discharge ,7BB,816,823,1,0,0,,2131,6131,ff,21_31 #103_b0_MSN_HIS[27]Ampere_hour_charge ,7BB,824,831,1,40,0,,2131,6131,ff,21_31 #104_b0_MSN_HIS[27]Battery_temp_end ,7BB,832,839,1,40,0,,2131,6131,ff,21_31 #105_b0_MSN_HIS[27]Battery_temp_start ,7BB,840,845,1,0,0,,2131,6131,ff,defauts mission 27 ,7BB,841,841,1,0,0,,2131,6131,ff,21_31 #106_b1_MSN_HIS[27]Diag_NG_over_discharge_batt ,7BB,842,842,1,0,0,,2131,6131,ff,21_31 #106_b2_MSN_HIS[27]Diag_NG_over_charge_cell ,7BB,843,843,1,0,0,,2131,6131,ff,21_31 #106_b3_MSN_HIS[27]Diag_NG_over_discharge_cell ,7BB,844,844,1,0,0,,2131,6131,ff,21_31 #106_b4_MSN_HIS[27]Diag_NG_over_current ,7BB,845,845,1,0,0,,2131,6131,ff,21_31 #106_b5_MSN_HIS[27]Diag_NG_over_temp ,7BB,848,850,1,0,0,,2131,6131,ff,21_31 #107_b0_MSN_HIS[28]Operation_type ,7BB,854,862,.2,0,1,%,2131,6131,ff,21_31 #107_b6_MSN_HIS[28]User_SOC_end ,7BB,863,871,.2,0,1,%,2131,6131,ff,21_31 #108_b7_MSN_HIS[28]User_SOC_start ,7BB,872,879,1,0,0,,2131,6131,ff,21_31 #110_b0_MSN_HIS[28]Ampere_hour_discharge ,7BB,880,887,1,0,0,,2131,6131,ff,21_31 #111_b0_MSN_HIS[28]Ampere_hour_charge ,7BB,888,895,1,40,0,,2131,6131,ff,21_31 #112_b0_MSN_HIS[28]Battery_temp_end ,7BB,896,903,1,40,0,,2131,6131,ff,21_31 #113_b0_MSN_HIS[28]Battery_temp_start ,7BB,904,909,1,0,0,,2131,6131,ff,defauts mission 28 ,7BB,905,905,1,0,0,,2131,6131,ff,21_31 #114_b1_MSN_HIS[28]Diag_NG_over_discharge_batt ,7BB,906,906,1,0,0,,2131,6131,ff,21_31 #114_b2_MSN_HIS[28]Diag_NG_over_charge_cell ,7BB,907,907,1,0,0,,2131,6131,ff,21_31 #114_b3_MSN_HIS[28]Diag_NG_over_discharge_cell ,7BB,908,908,1,0,0,,2131,6131,ff,21_31 #114_b4_MSN_HIS[28]Diag_NG_over_current ,7BB,909,909,1,0,0,,2131,6131,ff,21_31 #114_b5_MSN_HIS[28]Diag_NG_over_temp ,7BB,912,914,1,0,0,,2131,6131,ff,21_31 #115_b0_MSN_HIS[29]Operation_type ,7BB,918,926,.2,0,1,%,2131,6131,ff,21_31 #115_b6_MSN_HIS[29]User_SOC_end ,7BB,927,935,.2,0,1,%,2131,6131,ff,21_31 #116_b7_MSN_HIS[29]User_SOC_start ,7BB,936,943,1,0,0,,2131,6131,ff,21_31 #118_b0_MSN_HIS[29]Ampere_hour_discharge ,7BB,944,951,1,0,0,,2131,6131,ff,21_31 #119_b0_MSN_HIS[29]Ampere_hour_charge ,7BB,952,959,1,40,0,,2131,6131,ff,21_31 #120_b0_MSN_HIS[29]Battery_temp_end ,7BB,960,967,1,40,0,,2131,6131,ff,21_31 #121_b0_MSN_HIS[29]Battery_temp_start ,7BB,968,973,1,0,0,,2131,6131,ff,defauts mission 29 ,7BB,969,969,1,0,0,,2131,6131,ff,21_31 #122_b1_MSN_HIS[29]Diag_NG_over_discharge_batt ,7BB,970,970,1,0,0,,2131,6131,ff,21_31 #122_b2_MSN_HIS[29]Diag_NG_over_charge_cell ,7BB,971,971,1,0,0,,2131,6131,ff,21_31 #122_b3_MSN_HIS[29]Diag_NG_over_discharge_cell ,7BB,972,972,1,0,0,,2131,6131,ff,21_31 #122_b4_MSN_HIS[29]Diag_NG_over_current ,7BB,973,973,1,0,0,,2131,6131,ff,21_31 #122_b5_MSN_HIS[29]Diag_NG_over_temp ,7BB,16,18,1,0,0,,2132,6132,ff,21_32 #003_b0_MSN_HIS[30]Operation_type ,7BB,22,30,.2,0,1,%,2132,6132,ff,21_32 #003_b6_MSN_HIS[30]User_SOC_end ,7BB,31,39,.2,0,1,%,2132,6132,ff,21_32 #004_b7_MSN_HIS[30]User_SOC_start ,7BB,40,47,1,0,0,,2132,6132,ff,21_32 #006_b0_MSN_HIS[30]Ampere_hour_discharge ,7BB,48,55,1,0,0,,2132,6132,ff,21_32 #007_b0_MSN_HIS[30]Ampere_hour_charge ,7BB,56,63,1,40,0,,2132,6132,ff,21_32 #008_b0_MSN_HIS[30]Battery_temp_end ,7BB,64,71,1,40,0,,2132,6132,ff,21_32 #009_b0_MSN_HIS[30]Battery_temp_start ,7BB,72,77,1,0,0,,2132,6132,ff,defauts mission 30 ,7BB,73,73,1,0,0,,2132,6132,ff,21_32 #010_b1_MSN_HIS[30]Diag_NG_over_discharge_batt ,7BB,74,74,1,0,0,,2132,6132,ff,21_32 #010_b2_MSN_HIS[30]Diag_NG_over_charge_cell ,7BB,75,75,1,0,0,,2132,6132,ff,21_32 #010_b3_MSN_HIS[30]Diag_NG_over_discharge_cell ,7BB,76,76,1,0,0,,2132,6132,ff,21_32 #010_b4_MSN_HIS[30]Diag_NG_over_current ,7BB,77,77,1,0,0,,2132,6132,ff,21_32 #010_b5_MSN_HIS[30]Diag_NG_over_temp ,7BB,80,82,1,0,0,,2132,6132,ff,21_32 #011_b0_MSN_HIS[31]Operation_type ,7BB,86,94,.2,0,1,%,2132,6132,ff,21_32 #011_b6_MSN_HIS[31]User_SOC_end ,7BB,95,103,.2,0,1,%,2132,6132,ff,21_32 #012_b7_MSN_HIS[31]User_SOC_start ,7BB,104,111,1,0,0,,2132,6132,ff,21_32 #014_b0_MSN_HIS[31]Ampere_hour_discharge ,7BB,112,119,1,0,0,,2132,6132,ff,21_32 #015_b0_MSN_HIS[31]Ampere_hour_charge ,7BB,120,127,1,40,0,,2132,6132,ff,21_32 #016_b0_MSN_HIS[31]Battery_temp_end ,7BB,128,135,1,40,0,,2132,6132,ff,21_32 #017_b0_MSN_HIS[31]Battery_temp_start ,7BB,136,141,1,0,0,,2132,6132,ff,defauts mission 31 ,7BB,137,137,1,0,0,,2132,6132,ff,21_32 #018_b1_MSN_HIS[31]Diag_NG_over_discharge_batt ,7BB,138,138,1,0,0,,2132,6132,ff,21_32 #018_b2_MSN_HIS[31]Diag_NG_over_charge_cell ,7BB,139,139,1,0,0,,2132,6132,ff,21_32 #018_b3_MSN_HIS[31]Diag_NG_over_discharge_cell ,7BB,140,140,1,0,0,,2132,6132,ff,21_32 #018_b4_MSN_HIS[31]Diag_NG_over_current ,7BB,141,141,1,0,0,,2132,6132,ff,21_32 #018_b5_MSN_HIS[31]Diag_NG_over_temp ,7BB,144,146,1,0,0,,2132,6132,ff,21_32 #019_b0_MSN_HIS[32]Operation_type ,7BB,150,158,.2,0,1,%,2132,6132,ff,21_32 #019_b6_MSN_HIS[32]User_SOC_end ,7BB,159,167,.2,0,1,%,2132,6132,ff,21_32 #020_b7_MSN_HIS[32]User_SOC_start ,7BB,168,175,1,0,0,,2132,6132,ff,21_32 #022_b0_MSN_HIS[32]Ampere_hour_discharge ,7BB,176,183,1,0,0,,2132,6132,ff,21_32 #023_b0_MSN_HIS[32]Ampere_hour_charge ,7BB,184,191,1,40,0,,2132,6132,ff,21_32 #024_b0_MSN_HIS[32]Battery_temp_end ,7BB,192,199,1,40,0,,2132,6132,ff,21_32 #025_b0_MSN_HIS[32]Battery_temp_start ,7BB,200,205,1,0,0,,2132,6132,ff,defauts mission 32 ,7BB,201,201,1,0,0,,2132,6132,ff,21_32 #026_b1_MSN_HIS[32]Diag_NG_over_discharge_batt ,7BB,202,202,1,0,0,,2132,6132,ff,21_32 #026_b2_MSN_HIS[32]Diag_NG_over_charge_cell ,7BB,203,203,1,0,0,,2132,6132,ff,21_32 #026_b3_MSN_HIS[32]Diag_NG_over_discharge_cell ,7BB,204,204,1,0,0,,2132,6132,ff,21_32 #026_b4_MSN_HIS[32]Diag_NG_over_current ,7BB,205,205,1,0,0,,2132,6132,ff,21_32 #026_b5_MSN_HIS[32]Diag_NG_over_temp ,7BB,208,210,1,0,0,,2132,6132,ff,21_32 #027_b0_MSN_HIS[33]Operation_type ,7BB,214,222,.2,0,1,%,2132,6132,ff,21_32 #027_b6_MSN_HIS[33]User_SOC_end ,7BB,223,231,.2,0,1,%,2132,6132,ff,21_32 #028_b7_MSN_HIS[33]User_SOC_start ,7BB,232,239,1,0,0,,2132,6132,ff,21_32 #030_b0_MSN_HIS[33]Ampere_hour_discharge ,7BB,240,247,1,0,0,,2132,6132,ff,21_32 #031_b0_MSN_HIS[33]Ampere_hour_charge ,7BB,248,255,1,40,0,,2132,6132,ff,21_32 #032_b0_MSN_HIS[33]Battery_temp_end ,7BB,256,263,1,40,0,,2132,6132,ff,21_32 #033_b0_MSN_HIS[33]Battery_temp_start ,7BB,264,269,1,0,0,,2132,6132,ff,defauts mission 33 ,7BB,265,265,1,0,0,,2132,6132,ff,21_32 #034_b1_MSN_HIS[33]Diag_NG_over_discharge_batt ,7BB,266,266,1,0,0,,2132,6132,ff,21_32 #034_b2_MSN_HIS[33]Diag_NG_over_charge_cell ,7BB,267,267,1,0,0,,2132,6132,ff,21_32 #034_b3_MSN_HIS[33]Diag_NG_over_discharge_cell ,7BB,268,268,1,0,0,,2132,6132,ff,21_32 #034_b4_MSN_HIS[33]Diag_NG_over_current ,7BB,269,269,1,0,0,,2132,6132,ff,21_32 #034_b5_MSN_HIS[33]Diag_NG_over_temp ,7BB,272,274,1,0,0,,2132,6132,ff,21_32 #035_b0_MSN_HIS[34]Operation_type ,7BB,278,286,.2,0,1,%,2132,6132,ff,21_32 #035_b6_MSN_HIS[34]User_SOC_end ,7BB,287,295,.2,0,1,%,2132,6132,ff,21_32 #036_b7_MSN_HIS[34]User_SOC_start ,7BB,296,303,1,0,0,,2132,6132,ff,21_32 #038_b0_MSN_HIS[34]Ampere_hour_discharge ,7BB,304,311,1,0,0,,2132,6132,ff,21_32 #039_b0_MSN_HIS[34]Ampere_hour_charge ,7BB,312,319,1,40,0,,2132,6132,ff,21_32 #040_b0_MSN_HIS[34]Battery_temp_end ,7BB,320,327,1,40,0,,2132,6132,ff,21_32 #041_b0_MSN_HIS[34]Battery_temp_start ,7BB,328,333,1,0,0,,2132,6132,ff,defauts mission 34 ,7BB,329,329,1,0,0,,2132,6132,ff,21_32 #042_b1_MSN_HIS[34]Diag_NG_over_discharge_batt ,7BB,330,330,1,0,0,,2132,6132,ff,21_32 #042_b2_MSN_HIS[34]Diag_NG_over_charge_cell ,7BB,331,331,1,0,0,,2132,6132,ff,21_32 #042_b3_MSN_HIS[34]Diag_NG_over_discharge_cell ,7BB,332,332,1,0,0,,2132,6132,ff,21_32 #042_b4_MSN_HIS[34]Diag_NG_over_current ,7BB,333,333,1,0,0,,2132,6132,ff,21_32 #042_b5_MSN_HIS[34]Diag_NG_over_temp ,7BB,336,338,1,0,0,,2132,6132,ff,21_32 #043_b0_MSN_HIS[35]Operation_type ,7BB,342,350,.2,0,1,%,2132,6132,ff,21_32 #043_b6_MSN_HIS[35]User_SOC_end ,7BB,351,359,.2,0,1,%,2132,6132,ff,21_32 #044_b7_MSN_HIS[35]User_SOC_start ,7BB,360,367,1,0,0,,2132,6132,ff,21_32 #046_b0_MSN_HIS[35]Ampere_hour_discharge ,7BB,368,375,1,0,0,,2132,6132,ff,21_32 #047_b0_MSN_HIS[35]Ampere_hour_charge ,7BB,376,383,1,40,0,,2132,6132,ff,21_32 #048_b0_MSN_HIS[35]Battery_temp_end ,7BB,384,391,1,40,0,,2132,6132,ff,21_32 #049_b0_MSN_HIS[35]Battery_temp_start ,7BB,392,397,1,0,0,,2132,6132,ff,defauts mission 35 ,7BB,393,393,1,0,0,,2132,6132,ff,21_32 #050_b1_MSN_HIS[35]Diag_NG_over_discharge_batt ,7BB,394,394,1,0,0,,2132,6132,ff,21_32 #050_b2_MSN_HIS[35]Diag_NG_over_charge_cell ,7BB,395,395,1,0,0,,2132,6132,ff,21_32 #050_b3_MSN_HIS[35]Diag_NG_over_discharge_cell ,7BB,396,396,1,0,0,,2132,6132,ff,21_32 #050_b4_MSN_HIS[35]Diag_NG_over_current ,7BB,397,397,1,0,0,,2132,6132,ff,21_32 #050_b5_MSN_HIS[35]Diag_NG_over_temp ,7BB,400,402,1,0,0,,2132,6132,ff,21_32 #051_b0_MSN_HIS[36]Operation_type ,7BB,406,414,.2,0,1,%,2132,6132,ff,21_32 #051_b6_MSN_HIS[36]User_SOC_end ,7BB,415,423,.2,0,1,%,2132,6132,ff,21_32 #052_b7_MSN_HIS[36]User_SOC_start ,7BB,424,431,1,0,0,,2132,6132,ff,21_32 #054_b0_MSN_HIS[36]Ampere_hour_discharge ,7BB,432,439,1,0,0,,2132,6132,ff,21_32 #055_b0_MSN_HIS[36]Ampere_hour_charge ,7BB,440,447,1,40,0,,2132,6132,ff,21_32 #056_b0_MSN_HIS[36]Battery_temp_end ,7BB,448,455,1,40,0,,2132,6132,ff,21_32 #057_b0_MSN_HIS[36]Battery_temp_start ,7BB,456,461,1,0,0,,2132,6132,ff,defauts mission 36 ,7BB,457,457,1,0,0,,2132,6132,ff,21_32 #058_b1_MSN_HIS[36]Diag_NG_over_discharge_batt ,7BB,458,458,1,0,0,,2132,6132,ff,21_32 #058_b2_MSN_HIS[36]Diag_NG_over_charge_cell ,7BB,459,459,1,0,0,,2132,6132,ff,21_32 #058_b3_MSN_HIS[36]Diag_NG_over_discharge_cell ,7BB,460,460,1,0,0,,2132,6132,ff,21_32 #058_b4_MSN_HIS[36]Diag_NG_over_current ,7BB,461,461,1,0,0,,2132,6132,ff,21_32 #058_b5_MSN_HIS[36]Diag_NG_over_temp ,7BB,464,466,1,0,0,,2132,6132,ff,21_32 #059_b0_MSN_HIS[37]Operation_type ,7BB,470,478,.2,0,1,%,2132,6132,ff,21_32 #059_b6_MSN_HIS[37]User_SOC_end ,7BB,479,487,.2,0,1,%,2132,6132,ff,21_32 #060_b7_MSN_HIS[37]User_SOC_start ,7BB,488,495,1,0,0,,2132,6132,ff,21_32 #062_b0_MSN_HIS[37]Ampere_hour_discharge ,7BB,496,503,1,0,0,,2132,6132,ff,21_32 #063_b0_MSN_HIS[37]Ampere_hour_charge ,7BB,504,511,1,40,0,,2132,6132,ff,21_32 #064_b0_MSN_HIS[37]Battery_temp_end ,7BB,512,519,1,40,0,,2132,6132,ff,21_32 #065_b0_MSN_HIS[37]Battery_temp_start ,7BB,520,525,1,0,0,,2132,6132,ff,defauts mission 37 ,7BB,521,521,1,0,0,,2132,6132,ff,21_32 #066_b1_MSN_HIS[37]Diag_NG_over_discharge_batt ,7BB,522,522,1,0,0,,2132,6132,ff,21_32 #066_b2_MSN_HIS[37]Diag_NG_over_charge_cell ,7BB,523,523,1,0,0,,2132,6132,ff,21_32 #066_b3_MSN_HIS[37]Diag_NG_over_discharge_cell ,7BB,524,524,1,0,0,,2132,6132,ff,21_32 #066_b4_MSN_HIS[37]Diag_NG_over_current ,7BB,525,525,1,0,0,,2132,6132,ff,21_32 #066_b5_MSN_HIS[37]Diag_NG_over_temp ,7BB,528,530,1,0,0,,2132,6132,ff,21_32 #067_b0_MSN_HIS[38]Operation_type ,7BB,534,542,.2,0,1,%,2132,6132,ff,21_32 #067_b6_MSN_HIS[38]User_SOC_end ,7BB,543,551,.2,0,1,%,2132,6132,ff,21_32 #068_b7_MSN_HIS[38]User_SOC_start ,7BB,552,559,1,0,0,,2132,6132,ff,21_32 #070_b0_MSN_HIS[38]Ampere_hour_discharge ,7BB,560,567,1,0,0,,2132,6132,ff,21_32 #071_b0_MSN_HIS[38]Ampere_hour_charge ,7BB,568,575,1,40,0,,2132,6132,ff,21_32 #072_b0_MSN_HIS[38]Battery_temp_end ,7BB,576,583,1,40,0,,2132,6132,ff,21_32 #073_b0_MSN_HIS[38]Battery_temp_start ,7BB,584,589,1,0,0,,2132,6132,ff,defauts mission 38 ,7BB,585,585,1,0,0,,2132,6132,ff,21_32 #074_b1_MSN_HIS[38]Diag_NG_over_discharge_batt ,7BB,586,586,1,0,0,,2132,6132,ff,21_32 #074_b2_MSN_HIS[38]Diag_NG_over_charge_cell ,7BB,587,587,1,0,0,,2132,6132,ff,21_32 #074_b3_MSN_HIS[38]Diag_NG_over_discharge_cell ,7BB,588,588,1,0,0,,2132,6132,ff,21_32 #074_b4_MSN_HIS[38]Diag_NG_over_current ,7BB,589,589,1,0,0,,2132,6132,ff,21_32 #074_b5_MSN_HIS[38]Diag_NG_over_temp ,7BB,592,594,1,0,0,,2132,6132,ff,21_32 #075_b0_MSN_HIS[39]Operation_type ,7BB,598,606,.2,0,1,%,2132,6132,ff,21_32 #075_b6_MSN_HIS[39]User_SOC_end ,7BB,607,615,.2,0,1,%,2132,6132,ff,21_32 #076_b7_MSN_HIS[39]User_SOC_start ,7BB,616,623,1,0,0,,2132,6132,ff,21_32 #078_b0_MSN_HIS[39]Ampere_hour_discharge ,7BB,624,631,1,0,0,,2132,6132,ff,21_32 #079_b0_MSN_HIS[39]Ampere_hour_charge ,7BB,632,639,1,40,0,,2132,6132,ff,21_32 #080_b0_MSN_HIS[39]Battery_temp_end ,7BB,640,647,1,40,0,,2132,6132,ff,21_32 #081_b0_MSN_HIS[39]Battery_temp_start ,7BB,648,653,1,0,0,,2132,6132,ff,defauts mission 39 ,7BB,649,649,1,0,0,,2132,6132,ff,21_32 #082_b1_MSN_HIS[39]Diag_NG_over_discharge_batt ,7BB,650,650,1,0,0,,2132,6132,ff,21_32 #082_b2_MSN_HIS[39]Diag_NG_over_charge_cell ,7BB,651,651,1,0,0,,2132,6132,ff,21_32 #082_b3_MSN_HIS[39]Diag_NG_over_discharge_cell ,7BB,652,652,1,0,0,,2132,6132,ff,21_32 #082_b4_MSN_HIS[39]Diag_NG_over_current ,7BB,653,653,1,0,0,,2132,6132,ff,21_32 #082_b5_MSN_HIS[39]Diag_NG_over_temp ,7BB,656,658,1,0,0,,2132,6132,ff,21_32 #083_b0_MSN_HIS[40]Operation_type ,7BB,662,670,.2,0,1,%,2132,6132,ff,21_32 #083_b6_MSN_HIS[40]User_SOC_end ,7BB,671,679,.2,0,1,%,2132,6132,ff,21_32 #084_b7_MSN_HIS[40]User_SOC_start ,7BB,680,687,1,0,0,,2132,6132,ff,21_32 #086_b0_MSN_HIS[40]Ampere_hour_discharge ,7BB,688,695,1,0,0,,2132,6132,ff,21_32 #087_b0_MSN_HIS[40]Ampere_hour_charge ,7BB,696,703,1,40,0,,2132,6132,ff,21_32 #088_b0_MSN_HIS[40]Battery_temp_end ,7BB,704,711,1,40,0,,2132,6132,ff,21_32 #089_b0_MSN_HIS[40]Battery_temp_start ,7BB,712,717,1,0,0,,2132,6132,ff,defauts mission 40 ,7BB,713,713,1,0,0,,2132,6132,ff,21_32 #090_b1_MSN_HIS[40]Diag_NG_over_discharge_batt ,7BB,714,714,1,0,0,,2132,6132,ff,21_32 #090_b2_MSN_HIS[40]Diag_NG_over_charge_cell ,7BB,715,715,1,0,0,,2132,6132,ff,21_32 #090_b3_MSN_HIS[40]Diag_NG_over_discharge_cell ,7BB,716,716,1,0,0,,2132,6132,ff,21_32 #090_b4_MSN_HIS[40]Diag_NG_over_current ,7BB,717,717,1,0,0,,2132,6132,ff,21_32 #090_b5_MSN_HIS[40]Diag_NG_over_temp ,7BB,720,722,1,0,0,,2132,6132,ff,21_32 #091_b0_MSN_HIS[41]Operation_type ,7BB,726,734,.2,0,1,%,2132,6132,ff,21_32 #091_b6_MSN_HIS[41]User_SOC_end ,7BB,735,743,.2,0,1,%,2132,6132,ff,21_32 #092_b7_MSN_HIS[41]User_SOC_start ,7BB,744,751,1,0,0,,2132,6132,ff,21_32 #094_b0_MSN_HIS[41]Ampere_hour_discharge ,7BB,752,759,1,0,0,,2132,6132,ff,21_32 #095_b0_MSN_HIS[41]Ampere_hour_charge ,7BB,760,767,1,40,0,,2132,6132,ff,21_32 #096_b0_MSN_HIS[41]Battery_temp_end ,7BB,768,775,1,40,0,,2132,6132,ff,21_32 #097_b0_MSN_HIS[41]Battery_temp_start ,7BB,776,781,1,0,0,,2132,6132,ff,defauts mission 41 ,7BB,777,777,1,0,0,,2132,6132,ff,21_32 #098_b1_MSN_HIS[41]Diag_NG_over_discharge_batt ,7BB,778,778,1,0,0,,2132,6132,ff,21_32 #098_b2_MSN_HIS[41]Diag_NG_over_charge_cell ,7BB,779,779,1,0,0,,2132,6132,ff,21_32 #098_b3_MSN_HIS[41]Diag_NG_over_discharge_cell ,7BB,780,780,1,0,0,,2132,6132,ff,21_32 #098_b4_MSN_HIS[41]Diag_NG_over_current ,7BB,781,781,1,0,0,,2132,6132,ff,21_32 #098_b5_MSN_HIS[41]Diag_NG_over_temp ,7BB,784,786,1,0,0,,2132,6132,ff,21_32 #099_b0_MSN_HIS[42]Operation_type ,7BB,790,798,.2,0,1,%,2132,6132,ff,21_32 #099_b6_MSN_HIS[42]User_SOC_end ,7BB,799,807,.2,0,1,%,2132,6132,ff,21_32 #100_b7_MSN_HIS[42]User_SOC_start ,7BB,808,815,1,0,0,,2132,6132,ff,21_32 #102_b0_MSN_HIS[42]Ampere_hour_discharge ,7BB,816,823,1,0,0,,2132,6132,ff,21_32 #103_b0_MSN_HIS[42]Ampere_hour_charge ,7BB,824,831,1,40,0,,2132,6132,ff,21_32 #104_b0_MSN_HIS[42]Battery_temp_end ,7BB,832,839,1,40,0,,2132,6132,ff,21_32 #105_b0_MSN_HIS[42]Battery_temp_start ,7BB,840,845,1,0,0,,2132,6132,ff,defauts mission 42 ,7BB,841,841,1,0,0,,2132,6132,ff,21_32 #106_b1_MSN_HIS[42]Diag_NG_over_discharge_batt ,7BB,842,842,1,0,0,,2132,6132,ff,21_32 #106_b2_MSN_HIS[42]Diag_NG_over_charge_cell ,7BB,843,843,1,0,0,,2132,6132,ff,21_32 #106_b3_MSN_HIS[42]Diag_NG_over_discharge_cell ,7BB,844,844,1,0,0,,2132,6132,ff,21_32 #106_b4_MSN_HIS[42]Diag_NG_over_current ,7BB,845,845,1,0,0,,2132,6132,ff,21_32 #106_b5_MSN_HIS[42]Diag_NG_over_temp ,7BB,848,850,1,0,0,,2132,6132,ff,21_32 #107_b0_MSN_HIS[43]Operation_type ,7BB,854,862,.2,0,1,%,2132,6132,ff,21_32 #107_b6_MSN_HIS[43]User_SOC_end ,7BB,863,871,.2,0,1,%,2132,6132,ff,21_32 #108_b7_MSN_HIS[43]User_SOC_start ,7BB,872,879,1,0,0,,2132,6132,ff,21_32 #110_b0_MSN_HIS[43]Ampere_hour_discharge ,7BB,880,887,1,0,0,,2132,6132,ff,21_32 #111_b0_MSN_HIS[43]Ampere_hour_charge ,7BB,888,895,1,40,0,,2132,6132,ff,21_32 #112_b0_MSN_HIS[43]Battery_temp_end ,7BB,896,903,1,40,0,,2132,6132,ff,21_32 #113_b0_MSN_HIS[43]Battery_temp_start ,7BB,904,909,1,0,0,,2132,6132,ff,defauts mission 43 ,7BB,905,905,1,0,0,,2132,6132,ff,21_32 #114_b1_MSN_HIS[43]Diag_NG_over_discharge_batt ,7BB,906,906,1,0,0,,2132,6132,ff,21_32 #114_b2_MSN_HIS[43]Diag_NG_over_charge_cell ,7BB,907,907,1,0,0,,2132,6132,ff,21_32 #114_b3_MSN_HIS[43]Diag_NG_over_discharge_cell ,7BB,908,908,1,0,0,,2132,6132,ff,21_32 #114_b4_MSN_HIS[43]Diag_NG_over_current ,7BB,909,909,1,0,0,,2132,6132,ff,21_32 #114_b5_MSN_HIS[43]Diag_NG_over_temp ,7BB,912,914,1,0,0,,2132,6132,ff,21_32 #115_b0_MSN_HIS[44]Operation_type ,7BB,918,926,.2,0,1,%,2132,6132,ff,21_32 #115_b6_MSN_HIS[44]User_SOC_end ,7BB,927,935,.2,0,1,%,2132,6132,ff,21_32 #116_b7_MSN_HIS[44]User_SOC_start ,7BB,936,943,1,0,0,,2132,6132,ff,21_32 #118_b0_MSN_HIS[44]Ampere_hour_discharge ,7BB,944,951,1,0,0,,2132,6132,ff,21_32 #119_b0_MSN_HIS[44]Ampere_hour_charge ,7BB,952,959,1,40,0,,2132,6132,ff,21_32 #120_b0_MSN_HIS[44]Battery_temp_end ,7BB,960,967,1,40,0,,2132,6132,ff,21_32 #121_b0_MSN_HIS[44]Battery_temp_start ,7BB,968,973,1,0,0,,2132,6132,ff,defauts mission 44 ,7BB,969,969,1,0,0,,2132,6132,ff,21_32 #122_b1_MSN_HIS[44]Diag_NG_over_discharge_batt ,7BB,970,970,1,0,0,,2132,6132,ff,21_32 #122_b2_MSN_HIS[44]Diag_NG_over_charge_cell ,7BB,971,971,1,0,0,,2132,6132,ff,21_32 #122_b3_MSN_HIS[44]Diag_NG_over_discharge_cell ,7BB,972,972,1,0,0,,2132,6132,ff,21_32 #122_b4_MSN_HIS[44]Diag_NG_over_current ,7BB,973,973,1,0,0,,2132,6132,ff,21_32 #122_b5_MSN_HIS[44]Diag_NG_over_temp ,7BB,16,18,1,0,0,,2133,6133,ff,21_33 #003_b0_MSN_HIS[45]Operation_type ,7BB,22,30,.2,0,1,%,2133,6133,ff,21_33 #003_b6_MSN_HIS[45]User_SOC_end ,7BB,31,39,.2,0,1,%,2133,6133,ff,21_33 #004_b7_MSN_HIS[45]User_SOC_start ,7BB,40,47,1,0,0,,2133,6133,ff,21_33 #006_b0_MSN_HIS[45]Ampere_hour_discharge ,7BB,48,55,1,0,0,,2133,6133,ff,21_33 #007_b0_MSN_HIS[45]Ampere_hour_charge ,7BB,56,63,1,40,0,,2133,6133,ff,21_33 #008_b0_MSN_HIS[45]Battery_temp_end ,7BB,64,71,1,40,0,,2133,6133,ff,21_33 #009_b0_MSN_HIS[45]Battery_temp_start ,7BB,72,77,1,0,0,,2133,6133,ff,defauts mission 45 ,7BB,73,73,1,0,0,,2133,6133,ff,21_33 #010_b1_MSN_HIS[45]Diag_NG_over_discharge_batt ,7BB,74,74,1,0,0,,2133,6133,ff,21_33 #010_b2_MSN_HIS[45]Diag_NG_over_charge_cell ,7BB,75,75,1,0,0,,2133,6133,ff,21_33 #010_b3_MSN_HIS[45]Diag_NG_over_discharge_cell ,7BB,76,76,1,0,0,,2133,6133,ff,21_33 #010_b4_MSN_HIS[45]Diag_NG_over_current ,7BB,77,77,1,0,0,,2133,6133,ff,21_33 #010_b5_MSN_HIS[45]Diag_NG_over_temp ,7BB,80,82,1,0,0,,2133,6133,ff,21_33 #011_b0_MSN_HIS[46]Operation_type ,7BB,86,94,.2,0,1,%,2133,6133,ff,21_33 #011_b6_MSN_HIS[46]User_SOC_end ,7BB,95,103,.2,0,1,%,2133,6133,ff,21_33 #012_b7_MSN_HIS[46]User_SOC_start ,7BB,104,111,1,0,0,,2133,6133,ff,21_33 #014_b0_MSN_HIS[46]Ampere_hour_discharge ,7BB,112,119,1,0,0,,2133,6133,ff,21_33 #015_b0_MSN_HIS[46]Ampere_hour_charge ,7BB,120,127,1,40,0,,2133,6133,ff,21_33 #016_b0_MSN_HIS[46]Battery_temp_end ,7BB,128,135,1,40,0,,2133,6133,ff,21_33 #017_b0_MSN_HIS[46]Battery_temp_start ,7BB,136,141,1,0,0,,2133,6133,ff,defauts mission 46 ,7BB,137,137,1,0,0,,2133,6133,ff,21_33 #018_b1_MSN_HIS[46]Diag_NG_over_discharge_batt ,7BB,138,138,1,0,0,,2133,6133,ff,21_33 #018_b2_MSN_HIS[46]Diag_NG_over_charge_cell ,7BB,139,139,1,0,0,,2133,6133,ff,21_33 #018_b3_MSN_HIS[46]Diag_NG_over_discharge_cell ,7BB,140,140,1,0,0,,2133,6133,ff,21_33 #018_b4_MSN_HIS[46]Diag_NG_over_current ,7BB,141,141,1,0,0,,2133,6133,ff,21_33 #018_b5_MSN_HIS[46]Diag_NG_over_temp ,7BB,144,146,1,0,0,,2133,6133,ff,21_33 #019_b0_MSN_HIS[47]Operation_type ,7BB,150,158,.2,0,1,%,2133,6133,ff,21_33 #019_b6_MSN_HIS[47]User_SOC_end ,7BB,159,167,.2,0,1,%,2133,6133,ff,21_33 #020_b7_MSN_HIS[47]User_SOC_start ,7BB,168,175,1,0,0,,2133,6133,ff,21_33 #022_b0_MSN_HIS[47]Ampere_hour_discharge ,7BB,176,183,1,0,0,,2133,6133,ff,21_33 #023_b0_MSN_HIS[47]Ampere_hour_charge ,7BB,184,191,1,40,0,,2133,6133,ff,21_33 #024_b0_MSN_HIS[47]Battery_temp_end ,7BB,192,199,1,40,0,,2133,6133,ff,21_33 #025_b0_MSN_HIS[47]Battery_temp_start ,7BB,200,205,1,0,0,,2133,6133,ff,defauts mission 47 ,7BB,201,201,1,0,0,,2133,6133,ff,21_33 #026_b1_MSN_HIS[47]Diag_NG_over_discharge_batt ,7BB,202,202,1,0,0,,2133,6133,ff,21_33 #026_b2_MSN_HIS[47]Diag_NG_over_charge_cell ,7BB,203,203,1,0,0,,2133,6133,ff,21_33 #026_b3_MSN_HIS[47]Diag_NG_over_discharge_cell ,7BB,204,204,1,0,0,,2133,6133,ff,21_33 #026_b4_MSN_HIS[47]Diag_NG_over_current ,7BB,205,205,1,0,0,,2133,6133,ff,21_33 #026_b5_MSN_HIS[47]Diag_NG_over_temp ,7BB,208,210,1,0,0,,2133,6133,ff,21_33 #027_b0_MSN_HIS[48]Operation_type ,7BB,214,222,.2,0,1,%,2133,6133,ff,21_33 #027_b6_MSN_HIS[48]User_SOC_end ,7BB,223,231,.2,0,1,%,2133,6133,ff,21_33 #028_b7_MSN_HIS[48]User_SOC_start ,7BB,232,239,1,0,0,,2133,6133,ff,21_33 #030_b0_MSN_HIS[48]Ampere_hour_discharge ,7BB,240,247,1,0,0,,2133,6133,ff,21_33 #031_b0_MSN_HIS[48]Ampere_hour_charge ,7BB,248,255,1,40,0,,2133,6133,ff,21_33 #032_b0_MSN_HIS[48]Battery_temp_end ,7BB,256,263,1,40,0,,2133,6133,ff,21_33 #033_b0_MSN_HIS[48]Battery_temp_start ,7BB,264,269,1,0,0,,2133,6133,ff,defauts mission 48 ,7BB,265,265,1,0,0,,2133,6133,ff,21_33 #034_b1_MSN_HIS[48]Diag_NG_over_discharge_batt ,7BB,266,266,1,0,0,,2133,6133,ff,21_33 #034_b2_MSN_HIS[48]Diag_NG_over_charge_cell ,7BB,267,267,1,0,0,,2133,6133,ff,21_33 #034_b3_MSN_HIS[48]Diag_NG_over_discharge_cell ,7BB,268,268,1,0,0,,2133,6133,ff,21_33 #034_b4_MSN_HIS[48]Diag_NG_over_current ,7BB,269,269,1,0,0,,2133,6133,ff,21_33 #034_b5_MSN_HIS[48]Diag_NG_over_temp ,7BB,272,274,1,0,0,,2133,6133,ff,21_33 #035_b0_MSN_HIS[49]Operation_type ,7BB,278,286,.2,0,1,%,2133,6133,ff,21_33 #035_b6_MSN_HIS[49]User_SOC_end ,7BB,287,295,.2,0,1,%,2133,6133,ff,21_33 #036_b7_MSN_HIS[49]User_SOC_start ,7BB,296,303,1,0,0,,2133,6133,ff,21_33 #038_b0_MSN_HIS[49]Ampere_hour_discharge ,7BB,304,311,1,0,0,,2133,6133,ff,21_33 #039_b0_MSN_HIS[49]Ampere_hour_charge ,7BB,312,319,1,40,0,,2133,6133,ff,21_33 #040_b0_MSN_HIS[49]Battery_temp_end ,7BB,320,327,1,40,0,,2133,6133,ff,21_33 #041_b0_MSN_HIS[49]Battery_temp_start ,7BB,328,333,1,0,0,,2133,6133,ff,defauts mission 49 ,7BB,329,329,1,0,0,,2133,6133,ff,21_33 #042_b1_MSN_HIS[49]Diag_NG_over_discharge_batt ,7BB,330,330,1,0,0,,2133,6133,ff,21_33 #042_b2_MSN_HIS[49]Diag_NG_over_charge_cell ,7BB,331,331,1,0,0,,2133,6133,ff,21_33 #042_b3_MSN_HIS[49]Diag_NG_over_discharge_cell ,7BB,332,332,1,0,0,,2133,6133,ff,21_33 #042_b4_MSN_HIS[49]Diag_NG_over_current ,7BB,333,333,1,0,0,,2133,6133,ff,21_33 #042_b5_MSN_HIS[49]Diag_NG_over_temp ,7BB,336,338,1,0,0,,2133,6133,ff,21_33 #043_b0_MSN_HIS[50]Operation_type ,7BB,342,350,.2,0,1,%,2133,6133,ff,21_33 #043_b6_MSN_HIS[50]User_SOC_end ,7BB,351,359,.2,0,1,%,2133,6133,ff,21_33 #044_b7_MSN_HIS[50]User_SOC_start ,7BB,360,367,1,0,0,,2133,6133,ff,21_33 #046_b0_MSN_HIS[50]Ampere_hour_discharge ,7BB,368,375,1,0,0,,2133,6133,ff,21_33 #047_b0_MSN_HIS[50]Ampere_hour_charge ,7BB,376,383,1,40,0,,2133,6133,ff,21_33 #048_b0_MSN_HIS[50]Battery_temp_end ,7BB,384,391,1,40,0,,2133,6133,ff,21_33 #049_b0_MSN_HIS[50]Battery_temp_start ,7BB,392,397,1,0,0,,2133,6133,ff,defauts mission 50 ,7BB,393,393,1,0,0,,2133,6133,ff,21_33 #050_b1_MSN_HIS[50]Diag_NG_over_discharge_batt ,7BB,394,394,1,0,0,,2133,6133,ff,21_33 #050_b2_MSN_HIS[50]Diag_NG_over_charge_cell ,7BB,395,395,1,0,0,,2133,6133,ff,21_33 #050_b3_MSN_HIS[50]Diag_NG_over_discharge_cell ,7BB,396,396,1,0,0,,2133,6133,ff,21_33 #050_b4_MSN_HIS[50]Diag_NG_over_current ,7BB,397,397,1,0,0,,2133,6133,ff,21_33 #050_b5_MSN_HIS[50]Diag_NG_over_temp ,7BB,400,402,1,0,0,,2133,6133,ff,21_33 #051_b0_MSN_HIS[51]Operation_type ,7BB,406,414,.2,0,1,%,2133,6133,ff,21_33 #051_b6_MSN_HIS[51]User_SOC_end ,7BB,415,423,.2,0,1,%,2133,6133,ff,21_33 #052_b7_MSN_HIS[51]User_SOC_start ,7BB,424,431,1,0,0,,2133,6133,ff,21_33 #054_b0_MSN_HIS[51]Ampere_hour_discharge ,7BB,432,439,1,0,0,,2133,6133,ff,21_33 #055_b0_MSN_HIS[51]Ampere_hour_charge ,7BB,440,447,1,40,0,,2133,6133,ff,21_33 #056_b0_MSN_HIS[51]Battery_temp_end ,7BB,448,455,1,40,0,,2133,6133,ff,21_33 #057_b0_MSN_HIS[51]Battery_temp_start ,7BB,456,461,1,0,0,,2133,6133,ff,defauts mission 51 ,7BB,457,457,1,0,0,,2133,6133,ff,21_33 #058_b1_MSN_HIS[51]Diag_NG_over_discharge_batt ,7BB,458,458,1,0,0,,2133,6133,ff,21_33 #058_b2_MSN_HIS[51]Diag_NG_over_charge_cell ,7BB,459,459,1,0,0,,2133,6133,ff,21_33 #058_b3_MSN_HIS[51]Diag_NG_over_discharge_cell ,7BB,460,460,1,0,0,,2133,6133,ff,21_33 #058_b4_MSN_HIS[51]Diag_NG_over_current ,7BB,461,461,1,0,0,,2133,6133,ff,21_33 #058_b5_MSN_HIS[51]Diag_NG_over_temp ,7BB,464,466,1,0,0,,2133,6133,ff,21_33 #059_b0_MSN_HIS[52]Operation_type ,7BB,470,478,.2,0,1,%,2133,6133,ff,21_33 #059_b6_MSN_HIS[52]User_SOC_end ,7BB,479,487,.2,0,1,%,2133,6133,ff,21_33 #060_b7_MSN_HIS[52]User_SOC_start ,7BB,488,495,1,0,0,,2133,6133,ff,21_33 #062_b0_MSN_HIS[52]Ampere_hour_discharge ,7BB,496,503,1,0,0,,2133,6133,ff,21_33 #063_b0_MSN_HIS[52]Ampere_hour_charge ,7BB,504,511,1,40,0,,2133,6133,ff,21_33 #064_b0_MSN_HIS[52]Battery_temp_end ,7BB,512,519,1,40,0,,2133,6133,ff,21_33 #065_b0_MSN_HIS[52]Battery_temp_start ,7BB,520,525,1,0,0,,2133,6133,ff,defauts mission 52 ,7BB,521,521,1,0,0,,2133,6133,ff,21_33 #066_b1_MSN_HIS[52]Diag_NG_over_discharge_batt ,7BB,522,522,1,0,0,,2133,6133,ff,21_33 #066_b2_MSN_HIS[52]Diag_NG_over_charge_cell ,7BB,523,523,1,0,0,,2133,6133,ff,21_33 #066_b3_MSN_HIS[52]Diag_NG_over_discharge_cell ,7BB,524,524,1,0,0,,2133,6133,ff,21_33 #066_b4_MSN_HIS[52]Diag_NG_over_current ,7BB,525,525,1,0,0,,2133,6133,ff,21_33 #066_b5_MSN_HIS[52]Diag_NG_over_temp ,7BB,528,530,1,0,0,,2133,6133,ff,21_33 #067_b0_MSN_HIS[53]Operation_type ,7BB,534,542,.2,0,1,%,2133,6133,ff,21_33 #067_b6_MSN_HIS[53]User_SOC_end ,7BB,543,551,.2,0,1,%,2133,6133,ff,21_33 #068_b7_MSN_HIS[53]User_SOC_start ,7BB,552,559,1,0,0,,2133,6133,ff,21_33 #070_b0_MSN_HIS[53]Ampere_hour_discharge ,7BB,560,567,1,0,0,,2133,6133,ff,21_33 #071_b0_MSN_HIS[53]Ampere_hour_charge ,7BB,568,575,1,40,0,,2133,6133,ff,21_33 #072_b0_MSN_HIS[53]Battery_temp_end ,7BB,576,583,1,40,0,,2133,6133,ff,21_33 #073_b0_MSN_HIS[53]Battery_temp_start ,7BB,584,589,1,0,0,,2133,6133,ff,defauts mission 53 ,7BB,585,585,1,0,0,,2133,6133,ff,21_33 #074_b1_MSN_HIS[53]Diag_NG_over_discharge_batt ,7BB,586,586,1,0,0,,2133,6133,ff,21_33 #074_b2_MSN_HIS[53]Diag_NG_over_charge_cell ,7BB,587,587,1,0,0,,2133,6133,ff,21_33 #074_b3_MSN_HIS[53]Diag_NG_over_discharge_cell ,7BB,588,588,1,0,0,,2133,6133,ff,21_33 #074_b4_MSN_HIS[53]Diag_NG_over_current ,7BB,589,589,1,0,0,,2133,6133,ff,21_33 #074_b5_MSN_HIS[53]Diag_NG_over_temp ,7BB,592,594,1,0,0,,2133,6133,ff,21_33 #075_b0_MSN_HIS[54]Operation_type ,7BB,598,606,.2,0,1,%,2133,6133,ff,21_33 #075_b6_MSN_HIS[54]User_SOC_end ,7BB,607,615,.2,0,1,%,2133,6133,ff,21_33 #076_b7_MSN_HIS[54]User_SOC_start ,7BB,616,623,1,0,0,,2133,6133,ff,21_33 #078_b0_MSN_HIS[54]Ampere_hour_discharge ,7BB,624,631,1,0,0,,2133,6133,ff,21_33 #079_b0_MSN_HIS[54]Ampere_hour_charge ,7BB,632,639,1,40,0,,2133,6133,ff,21_33 #080_b0_MSN_HIS[54]Battery_temp_end ,7BB,640,647,1,40,0,,2133,6133,ff,21_33 #081_b0_MSN_HIS[54]Battery_temp_start ,7BB,648,653,1,0,0,,2133,6133,ff,defauts mission 54 ,7BB,649,649,1,0,0,,2133,6133,ff,21_33 #082_b1_MSN_HIS[54]Diag_NG_over_discharge_batt ,7BB,650,650,1,0,0,,2133,6133,ff,21_33 #082_b2_MSN_HIS[54]Diag_NG_over_charge_cell ,7BB,651,651,1,0,0,,2133,6133,ff,21_33 #082_b3_MSN_HIS[54]Diag_NG_over_discharge_cell ,7BB,652,652,1,0,0,,2133,6133,ff,21_33 #082_b4_MSN_HIS[54]Diag_NG_over_current ,7BB,653,653,1,0,0,,2133,6133,ff,21_33 #082_b5_MSN_HIS[54]Diag_NG_over_temp ,7BB,656,658,1,0,0,,2133,6133,ff,21_33 #083_b0_MSN_HIS[55]Operation_type ,7BB,662,670,.2,0,1,%,2133,6133,ff,21_33 #083_b6_MSN_HIS[55]User_SOC_end ,7BB,671,679,.2,0,1,%,2133,6133,ff,21_33 #084_b7_MSN_HIS[55]User_SOC_start ,7BB,680,687,1,0,0,,2133,6133,ff,21_33 #086_b0_MSN_HIS[55]Ampere_hour_discharge ,7BB,688,695,1,0,0,,2133,6133,ff,21_33 #087_b0_MSN_HIS[55]Ampere_hour_charge ,7BB,696,703,1,40,0,,2133,6133,ff,21_33 #088_b0_MSN_HIS[55]Battery_temp_end ,7BB,704,711,1,40,0,,2133,6133,ff,21_33 #089_b0_MSN_HIS[55]Battery_temp_start ,7BB,712,717,1,0,0,,2133,6133,ff,defauts mission 55 ,7BB,713,713,1,0,0,,2133,6133,ff,21_33 #090_b1_MSN_HIS[55]Diag_NG_over_discharge_batt ,7BB,714,714,1,0,0,,2133,6133,ff,21_33 #090_b2_MSN_HIS[55]Diag_NG_over_charge_cell ,7BB,715,715,1,0,0,,2133,6133,ff,21_33 #090_b3_MSN_HIS[55]Diag_NG_over_discharge_cell ,7BB,716,716,1,0,0,,2133,6133,ff,21_33 #090_b4_MSN_HIS[55]Diag_NG_over_current ,7BB,717,717,1,0,0,,2133,6133,ff,21_33 #090_b5_MSN_HIS[55]Diag_NG_over_temp ,7BB,720,722,1,0,0,,2133,6133,ff,21_33 #091_b0_MSN_HIS[56]Operation_type ,7BB,726,734,.2,0,1,%,2133,6133,ff,21_33 #091_b6_MSN_HIS[56]User_SOC_end ,7BB,735,743,.2,0,1,%,2133,6133,ff,21_33 #092_b7_MSN_HIS[56]User_SOC_start ,7BB,744,751,1,0,0,,2133,6133,ff,21_33 #094_b0_MSN_HIS[56]Ampere_hour_discharge ,7BB,752,759,1,0,0,,2133,6133,ff,21_33 #095_b0_MSN_HIS[56]Ampere_hour_charge ,7BB,760,767,1,40,0,,2133,6133,ff,21_33 #096_b0_MSN_HIS[56]Battery_temp_end ,7BB,768,775,1,40,0,,2133,6133,ff,21_33 #097_b0_MSN_HIS[56]Battery_temp_start ,7BB,776,781,1,0,0,,2133,6133,ff,defauts mission 56 ,7BB,777,777,1,0,0,,2133,6133,ff,21_33 #098_b1_MSN_HIS[56]Diag_NG_over_discharge_batt ,7BB,778,778,1,0,0,,2133,6133,ff,21_33 #098_b2_MSN_HIS[56]Diag_NG_over_charge_cell ,7BB,779,779,1,0,0,,2133,6133,ff,21_33 #098_b3_MSN_HIS[56]Diag_NG_over_discharge_cell ,7BB,780,780,1,0,0,,2133,6133,ff,21_33 #098_b4_MSN_HIS[56]Diag_NG_over_current ,7BB,781,781,1,0,0,,2133,6133,ff,21_33 #098_b5_MSN_HIS[56]Diag_NG_over_temp ,7BB,784,786,1,0,0,,2133,6133,ff,21_33 #099_b0_MSN_HIS[57]Operation_type ,7BB,790,798,.2,0,1,%,2133,6133,ff,21_33 #099_b6_MSN_HIS[57]User_SOC_end ,7BB,799,807,.2,0,1,%,2133,6133,ff,21_33 #100_b7_MSN_HIS[57]User_SOC_start ,7BB,808,815,1,0,0,,2133,6133,ff,21_33 #102_b0_MSN_HIS[57]Ampere_hour_discharge ,7BB,816,823,1,0,0,,2133,6133,ff,21_33 #103_b0_MSN_HIS[57]Ampere_hour_charge ,7BB,824,831,1,40,0,,2133,6133,ff,21_33 #104_b0_MSN_HIS[57]Battery_temp_end ,7BB,832,839,1,40,0,,2133,6133,ff,21_33 #105_b0_MSN_HIS[57]Battery_temp_start ,7BB,840,845,1,0,0,,2133,6133,ff,defauts mission 57 ,7BB,841,841,1,0,0,,2133,6133,ff,21_33 #106_b1_MSN_HIS[57]Diag_NG_over_discharge_batt ,7BB,842,842,1,0,0,,2133,6133,ff,21_33 #106_b2_MSN_HIS[57]Diag_NG_over_charge_cell ,7BB,843,843,1,0,0,,2133,6133,ff,21_33 #106_b3_MSN_HIS[57]Diag_NG_over_discharge_cell ,7BB,844,844,1,0,0,,2133,6133,ff,21_33 #106_b4_MSN_HIS[57]Diag_NG_over_current ,7BB,845,845,1,0,0,,2133,6133,ff,21_33 #106_b5_MSN_HIS[57]Diag_NG_over_temp ,7BB,848,850,1,0,0,,2133,6133,ff,21_33 #107_b0_MSN_HIS[58]Operation_type ,7BB,854,862,.2,0,1,%,2133,6133,ff,21_33 #107_b6_MSN_HIS[58]User_SOC_end ,7BB,863,871,.2,0,1,%,2133,6133,ff,21_33 #108_b7_MSN_HIS[58]User_SOC_start ,7BB,872,879,1,0,0,,2133,6133,ff,21_33 #110_b0_MSN_HIS[58]Ampere_hour_discharge ,7BB,880,887,1,0,0,,2133,6133,ff,21_33 #111_b0_MSN_HIS[58]Ampere_hour_charge ,7BB,888,895,1,40,0,,2133,6133,ff,21_33 #112_b0_MSN_HIS[58]Battery_temp_end ,7BB,896,903,1,40,0,,2133,6133,ff,21_33 #113_b0_MSN_HIS[58]Battery_temp_start ,7BB,904,909,1,0,0,,2133,6133,ff,defauts mission 58 ,7BB,905,905,1,0,0,,2133,6133,ff,21_33 #114_b1_MSN_HIS[58]Diag_NG_over_discharge_batt ,7BB,906,906,1,0,0,,2133,6133,ff,21_33 #114_b2_MSN_HIS[58]Diag_NG_over_charge_cell ,7BB,907,907,1,0,0,,2133,6133,ff,21_33 #114_b3_MSN_HIS[58]Diag_NG_over_discharge_cell ,7BB,908,908,1,0,0,,2133,6133,ff,21_33 #114_b4_MSN_HIS[58]Diag_NG_over_current ,7BB,909,909,1,0,0,,2133,6133,ff,21_33 #114_b5_MSN_HIS[58]Diag_NG_over_temp ,7BB,912,914,1,0,0,,2133,6133,ff,21_33 #115_b0_MSN_HIS[59]Operation_type ,7BB,918,926,.2,0,1,%,2133,6133,ff,21_33 #115_b6_MSN_HIS[59]User_SOC_end ,7BB,927,935,.2,0,1,%,2133,6133,ff,21_33 #116_b7_MSN_HIS[59]User_SOC_start ,7BB,936,943,1,0,0,,2133,6133,ff,21_33 #118_b0_MSN_HIS[59]Ampere_hour_discharge ,7BB,944,951,1,0,0,,2133,6133,ff,21_33 #119_b0_MSN_HIS[59]Ampere_hour_charge ,7BB,952,959,1,40,0,,2133,6133,ff,21_33 #120_b0_MSN_HIS[59]Battery_temp_end ,7BB,960,967,1,40,0,,2133,6133,ff,21_33 #121_b0_MSN_HIS[59]Battery_temp_start ,7BB,968,973,1,0,0,,2133,6133,ff,defauts mission 59 ,7BB,969,969,1,0,0,,2133,6133,ff,21_33 #122_b1_MSN_HIS[59]Diag_NG_over_discharge_batt ,7BB,970,970,1,0,0,,2133,6133,ff,21_33 #122_b2_MSN_HIS[59]Diag_NG_over_charge_cell ,7BB,971,971,1,0,0,,2133,6133,ff,21_33 #122_b3_MSN_HIS[59]Diag_NG_over_discharge_cell ,7BB,972,972,1,0,0,,2133,6133,ff,21_33 #122_b4_MSN_HIS[59]Diag_NG_over_current ,7BB,973,973,1,0,0,,2133,6133,ff,21_33 #122_b5_MSN_HIS[59]Diag_NG_over_temp ,7BB,16,18,1,0,0,,2134,6134,ff,21_34 #003_b0_MSN_HIS[60]Operation_type ,7BB,22,30,.2,0,1,%,2134,6134,ff,21_34 #003_b6_MSN_HIS[60]User_SOC_end ,7BB,31,39,.2,0,1,%,2134,6134,ff,21_34 #004_b7_MSN_HIS[60]User_SOC_start ,7BB,40,47,1,0,0,,2134,6134,ff,21_34 #006_b0_MSN_HIS[60]Ampere_hour_discharge ,7BB,48,55,1,0,0,,2134,6134,ff,21_34 #007_b0_MSN_HIS[60]Ampere_hour_charge ,7BB,56,63,1,40,0,,2134,6134,ff,21_34 #008_b0_MSN_HIS[60]Battery_temp_end ,7BB,64,71,1,40,0,,2134,6134,ff,21_34 #009_b0_MSN_HIS[60]Battery_temp_start ,7BB,72,77,1,0,0,,2134,6134,ff,defauts mission 60 ,7BB,73,73,1,0,0,,2134,6134,ff,21_34 #010_b1_MSN_HIS[60]Diag_NG_over_discharge_batt ,7BB,74,74,1,0,0,,2134,6134,ff,21_34 #010_b2_MSN_HIS[60]Diag_NG_over_charge_cell ,7BB,75,75,1,0,0,,2134,6134,ff,21_34 #010_b3_MSN_HIS[60]Diag_NG_over_discharge_cell ,7BB,76,76,1,0,0,,2134,6134,ff,21_34 #010_b4_MSN_HIS[60]Diag_NG_over_current ,7BB,77,77,1,0,0,,2134,6134,ff,21_34 #010_b5_MSN_HIS[60]Diag_NG_over_temp ,7BB,80,82,1,0,0,,2134,6134,ff,21_34 #011_b0_MSN_HIS[61]Operation_type ,7BB,86,94,.2,0,1,%,2134,6134,ff,21_34 #011_b6_MSN_HIS[61]User_SOC_end ,7BB,95,103,.2,0,1,%,2134,6134,ff,21_34 #012_b7_MSN_HIS[61]User_SOC_start ,7BB,104,111,1,0,0,,2134,6134,ff,21_34 #014_b0_MSN_HIS[61]Ampere_hour_discharge ,7BB,112,119,1,0,0,,2134,6134,ff,21_34 #015_b0_MSN_HIS[61]Ampere_hour_charge ,7BB,120,127,1,40,0,,2134,6134,ff,21_34 #016_b0_MSN_HIS[61]Battery_temp_end ,7BB,128,135,1,40,0,,2134,6134,ff,21_34 #017_b0_MSN_HIS[61]Battery_temp_start ,7BB,136,141,1,0,0,,2134,6134,ff,defauts mission 61 ,7BB,137,137,1,0,0,,2134,6134,ff,21_34 #018_b1_MSN_HIS[61]Diag_NG_over_discharge_batt ,7BB,138,138,1,0,0,,2134,6134,ff,21_34 #018_b2_MSN_HIS[61]Diag_NG_over_charge_cell ,7BB,139,139,1,0,0,,2134,6134,ff,21_34 #018_b3_MSN_HIS[61]Diag_NG_over_discharge_cell ,7BB,140,140,1,0,0,,2134,6134,ff,21_34 #018_b4_MSN_HIS[61]Diag_NG_over_current ,7BB,141,141,1,0,0,,2134,6134,ff,21_34 #018_b5_MSN_HIS[61]Diag_NG_over_temp ,7BB,144,146,1,0,0,,2134,6134,ff,21_34 #019_b0_MSN_HIS[62]Operation_type ,7BB,150,158,.2,0,1,%,2134,6134,ff,21_34 #019_b6_MSN_HIS[62]User_SOC_end ,7BB,159,167,.2,0,1,%,2134,6134,ff,21_34 #020_b7_MSN_HIS[62]User_SOC_start ,7BB,168,175,1,0,0,,2134,6134,ff,21_34 #022_b0_MSN_HIS[62]Ampere_hour_discharge ,7BB,176,183,1,0,0,,2134,6134,ff,21_34 #023_b0_MSN_HIS[62]Ampere_hour_charge ,7BB,184,191,1,40,0,,2134,6134,ff,21_34 #024_b0_MSN_HIS[62]Battery_temp_end ,7BB,192,199,1,40,0,,2134,6134,ff,21_34 #025_b0_MSN_HIS[62]Battery_temp_start ,7BB,200,205,1,0,0,,2134,6134,ff,defauts mission 62 ,7BB,201,201,1,0,0,,2134,6134,ff,21_34 #026_b1_MSN_HIS[62]Diag_NG_over_discharge_batt ,7BB,202,202,1,0,0,,2134,6134,ff,21_34 #026_b2_MSN_HIS[62]Diag_NG_over_charge_cell ,7BB,203,203,1,0,0,,2134,6134,ff,21_34 #026_b3_MSN_HIS[62]Diag_NG_over_discharge_cell ,7BB,204,204,1,0,0,,2134,6134,ff,21_34 #026_b4_MSN_HIS[62]Diag_NG_over_current ,7BB,205,205,1,0,0,,2134,6134,ff,21_34 #026_b5_MSN_HIS[62]Diag_NG_over_temp ,7BB,208,210,1,0,0,,2134,6134,ff,21_34 #027_b0_MSN_HIS[63]Operation_type ,7BB,214,222,.2,0,1,%,2134,6134,ff,21_34 #027_b6_MSN_HIS[63]User_SOC_end ,7BB,223,231,.2,0,1,%,2134,6134,ff,21_34 #028_b7_MSN_HIS[63]User_SOC_start ,7BB,232,239,1,0,0,,2134,6134,ff,21_34 #030_b0_MSN_HIS[63]Ampere_hour_discharge ,7BB,240,247,1,0,0,,2134,6134,ff,21_34 #031_b0_MSN_HIS[63]Ampere_hour_charge ,7BB,248,255,1,40,0,,2134,6134,ff,21_34 #032_b0_MSN_HIS[63]Battery_temp_end ,7BB,256,263,1,40,0,,2134,6134,ff,21_34 #033_b0_MSN_HIS[63]Battery_temp_start ,7BB,264,269,1,0,0,,2134,6134,ff,defauts mission 63 ,7BB,265,265,1,0,0,,2134,6134,ff,21_34 #034_b1_MSN_HIS[63]Diag_NG_over_discharge_batt ,7BB,266,266,1,0,0,,2134,6134,ff,21_34 #034_b2_MSN_HIS[63]Diag_NG_over_charge_cell ,7BB,267,267,1,0,0,,2134,6134,ff,21_34 #034_b3_MSN_HIS[63]Diag_NG_over_discharge_cell ,7BB,268,268,1,0,0,,2134,6134,ff,21_34 #034_b4_MSN_HIS[63]Diag_NG_over_current ,7BB,269,269,1,0,0,,2134,6134,ff,21_34 #034_b5_MSN_HIS[63]Diag_NG_over_temp ,7BB,16,31,.001,0,3,V,2141,6141,ff,21_41_#003_Cell Voltage[00] ,7BB,32,47,.001,0,3,V,2141,6141,ff,21_41_#005_Cell Voltage[01] ,7BB,48,63,.001,0,3,V,2141,6141,ff,21_41_#007_Cell Voltage[02] ,7BB,64,79,.001,0,3,V,2141,6141,ff,21_41_#009_Cell Voltage[03] ,7BB,80,95,.001,0,3,V,2141,6141,ff,21_41_#011_Cell Voltage[04] ,7BB,96,111,.001,0,3,V,2141,6141,ff,21_41_#013_Cell Voltage[05] ,7BB,112,127,.001,0,3,V,2141,6141,ff,21_41_#015_Cell Voltage[06] ,7BB,128,143,.001,0,3,V,2141,6141,ff,21_41_#017_Cell Voltage[07] ,7BB,144,159,.001,0,3,V,2141,6141,ff,21_41_#019_Cell Voltage[08] ,7BB,160,175,.001,0,3,V,2141,6141,ff,21_41_#021_Cell Voltage[09] ,7BB,176,191,.001,0,3,V,2141,6141,ff,21_41_#023_Cell Voltage[10] ,7BB,192,207,.001,0,3,V,2141,6141,ff,21_41_#025_Cell Voltage[11] ,7BB,208,223,.001,0,3,V,2141,6141,ff,21_41_#027_Cell Voltage[12] ,7BB,224,239,.001,0,3,V,2141,6141,ff,21_41_#029_Cell Voltage[13] ,7BB,240,255,.001,0,3,V,2141,6141,ff,21_41_#031_Cell Voltage[14] ,7BB,256,271,.001,0,3,V,2141,6141,ff,21_41_#033_Cell Voltage[15] ,7BB,272,287,.001,0,3,V,2141,6141,ff,21_41_#035_Cell Voltage[16] ,7BB,288,303,.001,0,3,V,2141,6141,ff,21_41_#037_Cell Voltage[17] ,7BB,304,319,.001,0,3,V,2141,6141,ff,21_41_#039_Cell Voltage[18] ,7BB,320,335,.001,0,3,V,2141,6141,ff,21_41_#041_Cell Voltage[19] ,7BB,336,351,.001,0,3,V,2141,6141,ff,21_41_#043_Cell Voltage[20] ,7BB,352,367,.001,0,3,V,2141,6141,ff,21_41_#045_Cell Voltage[21] ,7BB,368,383,.001,0,3,V,2141,6141,ff,21_41_#047_Cell Voltage[22] ,7BB,384,399,.001,0,3,V,2141,6141,ff,21_41_#049_Cell Voltage[23] ,7BB,400,415,.001,0,3,V,2141,6141,ff,21_41_#051_Cell Voltage[24] ,7BB,416,431,.001,0,3,V,2141,6141,ff,21_41_#053_Cell Voltage[25] ,7BB,432,447,.001,0,3,V,2141,6141,ff,21_41_#055_Cell Voltage[26] ,7BB,448,463,.001,0,3,V,2141,6141,ff,21_41_#057_Cell Voltage[27] ,7BB,464,479,.001,0,3,V,2141,6141,ff,21_41_#059_Cell Voltage[28] ,7BB,480,495,.001,0,3,V,2141,6141,ff,21_41_#061_Cell Voltage[29] ,7BB,496,511,.001,0,3,V,2141,6141,ff,21_41_#063_Cell Voltage[30] ,7BB,512,527,.001,0,3,V,2141,6141,ff,21_41_#065_Cell Voltage[31] ,7BB,528,543,.001,0,3,V,2141,6141,ff,21_41_#067_Cell Voltage[32] ,7BB,544,559,.001,0,3,V,2141,6141,ff,21_41_#069_Cell Voltage[33] ,7BB,560,575,.001,0,3,V,2141,6141,ff,21_41_#071_Cell Voltage[34] ,7BB,576,591,.001,0,3,V,2141,6141,ff,21_41_#073_Cell Voltage[35] ,7BB,592,607,.001,0,3,V,2141,6141,ff,21_41_#075_Cell Voltage[36] ,7BB,608,623,.001,0,3,V,2141,6141,ff,21_41_#077_Cell Voltage[37] ,7BB,624,639,.001,0,3,V,2141,6141,ff,21_41_#079_Cell Voltage[38] ,7BB,640,655,.001,0,3,V,2141,6141,ff,21_41_#081_Cell Voltage[39] ,7BB,656,671,.001,0,3,V,2141,6141,ff,21_41_#083_Cell Voltage[40] ,7BB,672,687,.001,0,3,V,2141,6141,ff,21_41_#085_Cell Voltage[41] ,7BB,688,703,.001,0,3,V,2141,6141,ff,21_41_#087_Cell Voltage[42] ,7BB,704,719,.001,0,3,V,2141,6141,ff,21_41_#089_Cell Voltage[43] ,7BB,720,735,.001,0,3,V,2141,6141,ff,21_41_#091_Cell Voltage[44] ,7BB,736,751,.001,0,3,V,2141,6141,ff,21_41_#093_Cell Voltage[45] ,7BB,752,767,.001,0,3,V,2141,6141,ff,21_41_#095_Cell Voltage[46] ,7BB,768,783,.001,0,3,V,2141,6141,ff,21_41_#097_Cell Voltage[47] ,7BB,784,799,.001,0,3,V,2141,6141,ff,21_41_#099_Cell Voltage[48] ,7BB,800,815,.001,0,3,V,2141,6141,ff,21_41_#101_Cell Voltage[49] ,7BB,816,831,.001,0,3,V,2141,6141,ff,21_41_#103_Cell Voltage[50] ,7BB,832,847,.001,0,3,V,2141,6141,ff,21_41_#105_Cell Voltage[51] ,7BB,848,863,.001,0,3,V,2141,6141,ff,21_41_#107_Cell Voltage[52] ,7BB,864,879,.001,0,3,V,2141,6141,ff,21_41_#109_Cell Voltage[53] ,7BB,880,895,.001,0,3,V,2141,6141,ff,21_41_#111_Cell Voltage[54] ,7BB,896,911,.001,0,3,V,2141,6141,ff,21_41_#113_Cell Voltage[55] ,7BB,912,927,.001,0,3,V,2141,6141,ff,21_41_#115_Cell Voltage[56] ,7BB,928,943,.001,0,3,V,2141,6141,ff,21_41_#117_Cell Voltage[57] ,7BB,944,959,.001,0,3,V,2141,6141,ff,21_41_#119_Cell Voltage[58] ,7BB,960,975,.001,0,3,V,2141,6141,ff,21_41_#121_Cell Voltage[59] ,7BB,976,991,.001,0,3,V,2141,6141,ff,21_41_#123_Cell Voltage[60] ,7BB,992,1007,.001,0,3,V,2141,6141,ff,21_41_#125_Cell Voltage[61] ,7BB,16,31,.001,0,3,V,2142,6142,ff,21_42_#003_Cell Voltage[62] ,7BB,32,47,.001,0,3,V,2142,6142,ff,21_42_#005_Cell Voltage[63] ,7BB,48,63,.001,0,3,V,2142,6142,ff,21_42_#007_Cell Voltage[64] ,7BB,64,79,.001,0,3,V,2142,6142,ff,21_42_#009_Cell Voltage[65] ,7BB,80,95,.001,0,3,V,2142,6142,ff,21_42_#011_Cell Voltage[66] ,7BB,96,111,.001,0,3,V,2142,6142,ff,21_42_#013_Cell Voltage[67] ,7BB,112,127,.001,0,3,V,2142,6142,ff,21_42_#015_Cell Voltage[68] ,7BB,128,143,.001,0,3,V,2142,6142,ff,21_42_#017_Cell Voltage[69] ,7BB,144,159,.001,0,3,V,2142,6142,ff,21_42_#019_Cell Voltage[70] ,7BB,160,175,.001,0,3,V,2142,6142,ff,21_42_#021_Cell Voltage[71] ,7BB,176,191,.001,0,3,V,2142,6142,ff,21_42_#023_Cell Voltage[72] ,7BB,192,207,.001,0,3,V,2142,6142,ff,21_42_#025_Cell Voltage[73] ,7BB,208,223,.001,0,3,V,2142,6142,ff,21_42_#027_Cell Voltage[74] ,7BB,224,239,.001,0,3,V,2142,6142,ff,21_42_#029_Cell Voltage[75] ,7BB,240,255,.001,0,3,V,2142,6142,ff,21_42_#031_Cell Voltage[76] ,7BB,256,271,.001,0,3,V,2142,6142,ff,21_42_#033_Cell Voltage[77] ,7BB,272,287,.001,0,3,V,2142,6142,ff,21_42_#035_Cell Voltage[78] ,7BB,288,303,.001,0,3,V,2142,6142,ff,21_42_#037_Cell Voltage[79] ,7BB,304,319,.001,0,3,V,2142,6142,ff,21_42_#039_Cell Voltage[80] ,7BB,320,335,.001,0,3,V,2142,6142,ff,21_42_#041_Cell Voltage[81] ,7BB,336,351,.001,0,3,V,2142,6142,ff,21_42_#043_Cell Voltage[82] ,7BB,352,367,.001,0,3,V,2142,6142,ff,21_42_#045_Cell Voltage[83] ,7BB,368,383,.001,0,3,V,2142,6142,ff,21_42_#047_Cell Voltage[84] ,7BB,384,399,.001,0,3,V,2142,6142,ff,21_42_#049_Cell Voltage[85] ,7BB,400,415,.001,0,3,V,2142,6142,ff,21_42_#051_Cell Voltage[86] ,7BB,416,431,.001,0,3,V,2142,6142,ff,21_42_#053_Cell Voltage[87] ,7BB,432,447,.001,0,3,V,2142,6142,ff,21_42_#055_Cell Voltage[88] ,7BB,448,463,.001,0,3,V,2142,6142,ff,21_42_#057_Cell Voltage[89] ,7BB,464,479,.001,0,3,V,2142,6142,ff,21_42_#059_Cell Voltage[90] ,7BB,480,495,.001,0,3,V,2142,6142,ff,21_42_#061_Cell Voltage[91] ,7BB,496,511,.001,0,3,V,2142,6142,ff,21_42_#063_Cell Voltage[92] ,7BB,512,527,.001,0,3,V,2142,6142,ff,21_42_#065_Cell Voltage[93] ,7BB,528,543,.001,0,3,V,2142,6142,ff,21_42_#067_Cell Voltage[94] ,7BB,544,559,.001,0,3,V,2142,6142,ff,21_42_#069_Cell Voltage[95] ,7BB,560,575,.01,0,2,V,2142,6142,ff,21_42_#071_Sum_of_cell_voltage ,7BB,576,591,.01,0,2,V,2142,6142,ff,21_42_#073_Pack_Voltage ,7BB,16,31,.001,0,3,V,2143,6143,ff,21_43_#03 BusBar Voltage01 ,7BB,32,47,.001,0,3,V,2143,6143,ff,21_43_#05 BusBar Voltage02 ,7BB,48,63,.001,0,3,V,2143,6143,ff,21_43_#07 BusBar Voltage03 ,7BB,64,79,.001,0,3,V,2143,6143,ff,21_43_#09 BusBar Voltage04 ,7BB,80,95,.001,0,3,V,2143,6143,ff,21_43_#11 BusBar Voltage05 ,7BB,96,111,.001,0,3,V,2143,6143,ff,21_43_#13 BusBar Voltage06 ,7BB,112,127,.001,0,3,V,2143,6143,ff,21_43_#15 BusBar Voltage07 ,7BB,128,143,.001,0,3,V,2143,6143,ff,21_43_#17 BusBar Voltage08 ,7BB,144,159,.001,0,3,V,2143,6143,ff,21_43_#19 BusBar Voltage09 ,7BB,160,175,.001,0,3,V,2143,6143,ff,21_43_#21 BusBar Voltage10 ,7BB,176,191,.001,0,3,V,2143,6143,ff,21_43_#23 BusBar Voltage11 ,7BB,192,207,.001,0,3,V,2143,6143,ff,21_43_#25 BusBar Voltage12 ,7BB,208,223,.001,0,3,V,2143,6143,ff,21_43_#27 BusBar Voltage13 ,7BB,224,239,.001,0,3,V,2143,6143,ff,21_43_#29 BusBar Voltage14 ,7BB,240,255,.001,0,3,V,2143,6143,ff,21_43_#31 BusBar Voltage15 ,7BB,256,271,.001,0,3,V,2143,6143,ff,21_43_#33 BusBar Voltage16 ,7BB,272,287,.001,0,3,V,2143,6143,ff,21_43_#35 BusBar Voltage17 ,7BB,288,303,.001,0,3,V,2143,6143,ff,21_43_#37 BusBar Voltage18 ,7BB,304,319,.001,0,3,V,2143,6143,ff,21_43_#39 BusBar Voltage19 ,7BB,320,335,.001,0,3,V,2143,6143,ff,21_43_#41 BusBar Voltage20 ,7BB,336,351,.001,0,3,V,2143,6143,ff,21_43_#41 BusBar Voltage21 ,7BB,352,367,.001,0,3,V,2143,6143,ff,21_43_#45 BusBar Voltage22 ,7BB,368,383,.001,0,3,V,2143,6143,ff,21_43_#47 BusBar Voltage23 ,7BB,16,39,1,0,0,,2160,6160,ff,21_60_#003_AbsTimePack ,7BB,40,47,1,0,0,,2160,6160,ff,21_60_#006_Simpler SOHE (RSA Model) ,7BB,48,55,1,0,0,,2160,6160,ff,21_60_#007_Average SOHE (LGC Model) ,7BB,56,63,1,0,0,,2160,6160,ff,21_60_#008_SOHE(module)_Update_command_applied,1:APPLIED;255:NOT APPLIED ,7BB,64,71,1,0,0,,2160,6160,ff,21_60_#009_BMS_Update_command_applied,1:APPLIED;255:NOT APPLIED ,7BB,72,79,1,0,0,,2160,6160,ff,21_60_#010_Storage_Update_Command_Applied,1:APPLIED 1 time;2:APPLIED 2 times;3:APPLIED 3 times;4:APPLIED 4 times;5:APPLIED 5 times;6:APPLIED 6 times;7:APPLIED 7 times;8:APPLIED 8 times;9:APPLIED 9 times;10:APPLIED 10 times;255:NOT APPLIED ,7BB,16,159,1,0,0,,2161,6161,4ff,LID_61_données completes ,7BB,48,55,.5,0,1,,2161,6161,ff,21_61_#07 SOHP_value_of_group1 ,7BB,56,63,.5,0,1,,2161,6161,ff,21_61_#08 SOHP_value_of_group2 ,7BB,64,71,.5,0,1,,2161,6161,ff,21_61_#09 SOHP_value_of_group3 ,7BB,72,79,.5,0,1,%,2161,6161,ff,21_61_#10_Battery State of Health (average) ,7BB,80,87,.5,0,1,%,2161,6161,ff,21_61_#11_Battery State of Health (minimal) ,7BB,88,119,1,0,0,km,2161,6161,1ff,21_61_#12_Battery Mileage ,7BB,120,151,1,0,0,kWh,2161,6161,1ff,21_61_#16_Sum of kWh from beginning of Battery life ,7BB,152,159,.5,0,1,,2161,6161,ff,21_61_#20 SOHP_value_of_group4 ,7BB,16,47,1,0,0,,2162,6162,1ff,21_62_#03_Serial_Number (FIN) ,7BB,16,31,.001953125,0,3,%,2163,6163,ff,63_03 Init SOC ,7BB,32,39,1,0,0,,2163,6163,ff,63_05 Init Method,1:SOC_EKF;2:SOC_OCV ,7BB,40,47,1,40,0,°C,2163,6163,ff,63_06 Init Min Temp ,7BB,48,79,1,0,0,Minutes,2163,6163,1ff,63_07 Init Driving Time ,7BB,80,111,1,0,0,Minutes,2163,6163,1ff,63_11 Init Parking Time ,7BB,112,143,.001,2000000000,3,A,2163,6163,1ff,63_15 Init Current Sum ,7BB,144,159,.001953125,0,3,%,2163,6163,ff,63_19 Final SOC [Segment 1] ,7BB,160,167,1,0,0,,2163,6163,ff,63_21 Final Method [Segment 1],1:SOC_EKF;2:SOC_OCV ,7BB,168,175,1,40,0,°C,2163,6163,ff,63_22 Final Min Temp [Segment 1] ,7BB,176,207,1,0,0,Minutes,2163,6163,1ff,63_23 Final Driving Time [Segment 1] ,7BB,208,239,1,0,0,Minutes,2163,6163,1ff,63_27 Final Parking Time [Segment 1] ,7BB,240,271,.001,2000000000,3,A,2163,6163,1ff,63_31 Final Current Sum [Segment 1] ,7BB,272,287,.001953125,0,3,%,2163,6163,ff,63_35 Final SOC [Segment 2] ,7BB,288,295,1,0,0,,2163,6163,ff,63_37 Final Method [Segment 2],1:SOC_EKF;2:SOC_OCV ,7BB,296,303,1,40,0,°C,2163,6163,ff,63_38 Final Min Temp [Segment 2] ,7BB,304,335,1,0,0,Minutes,2163,6163,1ff,63_39 Final Driving Time [Segment 2] ,7BB,336,367,1,0,0,Minutes,2163,6163,1ff,63_43 Final Parking Time [Segment 2] ,7BB,368,399,.001,2000000000,3,A,2163,6163,1ff,63_47 Final Current Sum [Segment 2] ,7BB,400,415,.001953125,0,3,%,2163,6163,ff,63_51 Final SOC [Segment 3] ,7BB,416,423,1,0,0,,2163,6163,ff,63_53 Final Method [Segment 3],1:SOC_EKF;2:SOC_OCV ,7BB,424,431,1,40,0,°C,2163,6163,ff,63_54 Final Min Temp [Segment 3] ,7BB,432,463,1,0,0,Minutes,2163,6163,1ff,63_55 Final Driving Time [Segment 3] ,7BB,464,495,1,0,0,Minutes,2163,6163,1ff,63_59 Final Parking Time [Segment 3] ,7BB,496,527,.001,2000000000,3,A,2163,6163,1ff,63_63 Final Current Sum [Segment 3] ,7BB,528,543,.5,0,1,%,2163,6163,ff,63_67 Final SOC [Segment 4] ,7BB,544,551,1,0,0,,2163,6163,ff,63_69 Final Method [Segment 4],1:SOC_EKF;2:SOC_OCV ,7BB,552,559,1,40,0,°C,2163,6163,ff,63_70 Final Min Temp [Segment 4] ,7BB,560,591,1,0,0,Minutes,2163,6163,1ff,63_71 Final Driving Time [Segment 4] ,7BB,592,623,1,0,0,Minutes,2163,6163,1ff,63_75 Final Parking Time [Segment 4] ,7BB,624,655,.001,2000000000,3,A,2163,6163,1ff,63_79 Final Current Sum [Segment 4] ,7BB,656,671,.001953125,0,3,%,2163,6163,ff,63_83 Final SOC [Segment 5] ,7BB,672,679,1,0,0,,2163,6163,ff,63_85 Final Method [Segment 5],1:SOC_EKF;2:SOC_OCV ,7BB,680,687,1,40,0,°C,2163,6163,ff,63_86 Final Min Temp [Segment 5] ,7BB,688,719,1,0,0,Minutes,2163,6163,1ff,63_87 Final Driving Time [Segment 5] ,7BB,720,751,1,0,0,Minutes,2163,6163,1ff,63_91 Final Parking Time [Segment 5] ,7BB,752,783,.001,2000000000,3,A,2163,6163,1ff,63_95 Final Current Sum [Segment 5] ,7BB,16,31,.001953125,0,3,%,2164,6164,ff,64_03 Latest Init SOC ,7BB,32,39,1,0,0,,2164,6164,ff,64_05 Latest Init Method,1:SOC_EKF;2:SOC_OCV ,7BB,40,47,1,40,0,°C,2164,6164,ff,64_06 Latest Init Min Temp ,7BB,48,79,1,0,0,Minutes,2164,6164,1ff,64_07 Latest Init Driving Time ,7BB,80,111,1,0,0,Minutes,2164,6164,1ff,64_11 Latest Init Parking Time ,7BB,112,143,.001,2000000000,3,A,2164,6164,1ff,64_15 Latest Init Current Sum ,7BB,144,159,.001953125,0,3,%,2164,6164,ff,64_19 Latest Final SOC [Segment 1] ,7BB,160,167,1,0,0,,2164,6164,ff,64_21 Latest Final Method [Segment 1],1:SOC_EKF;2:SOC_OCV ,7BB,168,175,1,40,0,°C,2164,6164,ff,64_22 Latest Final Min Temp [Segment 1] ,7BB,176,207,1,0,0,Minutes,2164,6164,1ff,64_23 Latest Final Driving Time [Segment 1] ,7BB,208,239,1,0,0,Minutes,2164,6164,1ff,64_27 Latest Final Parking Time [Segment 1] ,7BB,240,271,.001,2000000000,3,A,2164,6164,1ff,64_31 Latest Final Current Sum [Segment 1] ,7BB,272,287,.001953125,0,3,%,2164,6164,ff,64_35 Latest Final SOC [Segment 2] ,7BB,288,295,1,0,0,,2164,6164,ff,64_37 Latest Final Method [Segment 2],1:SOC_EKF;2:SOC_OCV ,7BB,296,303,1,40,0,°C,2164,6164,ff,64_38 Latest Final Min Temp [Segment 2] ,7BB,304,335,1,0,0,Minutes,2164,6164,1ff,64_39 Latest Final Driving Time [Segment 2] ,7BB,336,367,1,0,0,Minutes,2164,6164,1ff,64_43 Latest Final Parking Time [Segment 2] ,7BB,368,399,.001,2000000000,3,A,2164,6164,1ff,64_47 Latest Final Current Sum [Segment 2] ,7BB,400,415,.001953125,0,3,%,2164,6164,ff,64_51 Latest Final SOC [Segment 3] ,7BB,416,423,1,0,0,,2164,6164,ff,64_53 Latest Final Method [Segment 3],1:SOC_EKF;2:SOC_OCV ,7BB,424,431,1,40,0,°C,2164,6164,ff,64_54 Latest Final Min Temp [Segment 3] ,7BB,432,463,1,0,0,Minutes,2164,6164,1ff,64_55 Latest Final Driving Time [Segment 3] ,7BB,464,495,1,0,0,Minutes,2164,6164,1ff,64_59 Latest Final Parking Time [Segment 3] ,7BB,496,527,.001,2000000000,3,A,2164,6164,1ff,64_63 Latest Final Current Sum [Segment 3] ,7BB,528,543,.001953125,0,3,%,2164,6164,ff,64_67 Latest Final SOC [Segment 4] ,7BB,544,551,1,0,0,,2164,6164,ff,64_69 Latest Final Method [Segment 4],1:SOC_EKF;2:SOC_OCV ,7BB,552,559,1,40,0,°C,2164,6164,ff,64_70 Latest Final Min Temp [Segment 4] ,7BB,560,591,1,0,0,Minutes,2164,6164,1ff,64_71 Latest Final Driving Time [Segment 4] ,7BB,592,623,1,0,0,Minutes,2164,6164,1ff,64_75 Latest Final Parking Time [Segment 4] ,7BB,624,655,.001,2000000000,3,A,2164,6164,1ff,64_79 Latest Final Current Sum [Segment 4] ,7BB,656,671,.001953125,0,3,%,2164,6164,ff,64_83 Latest Final SOC [Segment 5] ,7BB,672,679,1,0,0,,2164,6164,ff,64_85 Latest Final Method [Segment 5],1:SOC_EKF;2:SOC_OCV ,7BB,680,687,1,40,0,°C,2164,6164,ff,64_86 Latest Final Min Temp [Segment 5] ,7BB,688,719,1,0,0,Minutes,2164,6164,1ff,64_87 Latest Final Driving Time [Segment 5] ,7BB,720,751,1,0,0,Minutes,2164,6164,1ff,64_91 Latest Final Parking Time [Segment 5] ,7BB,752,783,.001,2000000000,3,A,2164,6164,1ff,64_95 Latest Final Current Sum [Segment 5] ,7BB,16,31,.001953125,0,3,%,2165,6165,ff,65_03 Latest SOHE_1Min [#00] Segment 0->1 ,7BB,32,39,.5,0,1,%,2165,6165,ff,65_05 Latest WeightFactor [#00] Segment 0->1 ,7BB,40,47,.0625,0,2,,2165,6165,ff,65_06 Latest dSOHE/SOHE [#00] Segment 0->1 ,7BB,48,63,.001953125,0,3,%,2165,6165,ff,65_07 Latest SOHE_1Min [#01] Segment 0->2 ,7BB,64,71,.5,0,1,%,2165,6165,ff,65_09 Latest WeightFactor [#00] Segment 0->2 ,7BB,72,79,.0625,0,2,,2165,6165,ff,65_10 Latest dSOHE/SOHE [#01] Segment 0->2 ,7BB,80,95,.001953125,0,3,%,2165,6165,ff,65_11 Latest SOHE_1Min [#02] Segment 0->3 ,7BB,96,103,.5,0,1,%,2165,6165,ff,65_13 Latest WeightFactor [#02] Segment 0->3 ,7BB,104,111,.0625,0,2,,2165,6165,ff,65_14 Latest dSOHE/SOHE [#02] Segment 0->3 ,7BB,112,127,.001953125,0,3,%,2165,6165,ff,65_15 Latest SOHE_1Min [#03] Segment 0->4 ,7BB,128,135,.5,0,1,%,2165,6165,ff,65_17 Latest WeightFactor [#03] Segment 0->4 ,7BB,136,143,.0625,0,2,,2165,6165,ff,65_18 Latest dSOHE/SOHE [#03] Segment 0->4 ,7BB,144,159,.001953125,0,3,%,2165,6165,ff,65_19 Latest SOHE_1Min [#04] Segment 0->5 ,7BB,160,167,.5,0,1,%,2165,6165,ff,65_21 Latest WeightFactor [#04] Segment 0->5 ,7BB,168,175,.0625,0,2,,2165,6165,ff,65_22 Latest dSOHE/SOHE [#04] Segment 0->5 ,7BB,176,191,.001953125,0,3,%,2165,6165,ff,65_23 Latest SOHE_1Min [#05] Segment 1->2 ,7BB,192,199,.5,0,1,%,2165,6165,ff,65_25 Latest WeightFactor [#05] Segment 1->2 ,7BB,200,207,.0625,0,2,,2165,6165,ff,65_26 Latest dSOHE/SOHE [#05] Segment 1->2 ,7BB,208,223,.001953125,0,3,%,2165,6165,ff,65_27 Latest SOHE_1Min [#06] Segment 1->3 ,7BB,224,231,.5,0,1,%,2165,6165,ff,65_29 Latest WeightFactor [#06] Segment 1->3 ,7BB,232,239,.0625,0,2,,2165,6165,ff,65_30 Latest dSOHE/SOHE [#06] Segment 1->3 ,7BB,240,255,.001953125,0,3,%,2165,6165,ff,65_31 Latest SOHE_1Min [#07] Segment 1->4 ,7BB,256,263,.5,0,1,%,2165,6165,ff,65_33 Latest WeightFactor [#07] Segment 1->4 ,7BB,264,271,.0625,0,2,,2165,6165,ff,65_34 Latest dSOHE/SOHE [#07] Segment 1->4 ,7BB,272,287,.001953125,0,3,%,2165,6165,ff,65_35 Latest SOHE_1Min [#08] Segment 1->5 ,7BB,288,295,.5,0,1,%,2165,6165,ff,65_37 Latest WeightFactor [#08] Segment 1->5 ,7BB,296,303,.0625,0,2,,2165,6165,ff,65_38 Latest dSOHE/SOHE [#08] Segment 1->5 ,7BB,304,319,.001953125,0,3,%,2165,6165,ff,65_39 Latest SOHE_1Min [#09] Segment 2->3 ,7BB,320,327,.5,0,1,%,2165,6165,ff,65_41 Latest WeightFactor [#09] Segment 2->3 ,7BB,328,335,.0625,0,2,,2165,6165,ff,65_42 Latest dSOHE/SOHE [#09] Segment 2->3 ,7BB,336,351,.001953125,0,3,%,2165,6165,ff,65_43 Latest SOHE_1Min [#10] Segment 2->4 ,7BB,352,359,.5,0,1,%,2165,6165,ff,65_45 Latest WeightFactor [#10] Segment 2->4 ,7BB,360,367,.0625,0,2,,2165,6165,ff,65_46 Latest dSOHE/SOHE [#10] Segment 2->4 ,7BB,368,383,.001953125,0,3,%,2165,6165,ff,65_47 Latest SOHE_1Min [#11] Segment 2->5 ,7BB,384,391,.5,0,1,%,2165,6165,ff,65_49 Latest WeightFactor [#11] Segment 2->5 ,7BB,392,399,.0625,0,2,,2165,6165,ff,65_50 Latest dSOHE/SOHE [#11] Segment 2->5 ,7BB,400,415,.001953125,0,3,%,2165,6165,ff,65_51 Latest SOHE_1Min [#12] Segment 3->4 ,7BB,416,423,.5,0,1,%,2165,6165,ff,65_53 Latest WeightFactor [#12] Segment 3->4 ,7BB,424,431,.0625,0,2,,2165,6165,ff,65_54 Latest dSOHE/SOHE [#12] Segment 3->4 ,7BB,432,447,.001953125,0,3,%,2165,6165,ff,65_55 Latest SOHE_1Min [#13] Segment 3->5 ,7BB,448,455,.5,0,1,%,2165,6165,ff,65_57 Latest WeightFactor [#13] Segment 3->5 ,7BB,456,463,.0625,0,2,,2165,6165,ff,65_58 Latest dSOHE/SOHE [#13] Segment 3->5 ,7BB,464,479,.001953125,0,3,%,2165,6165,ff,65_59 Latest SOHE_1Min [#14] Segment 4->5 ,7BB,480,487,.5,0,1,%,2165,6165,ff,65_61 Latest WeightFactor [#14] Segment 4->5 ,7BB,488,495,.0625,0,2,,2165,6165,ff,65_62 Latest dSOHE/SOHE [#14] Segment 4->5 ,7BB,16,31,1,0,0,,2166,6166,ff,21_66_#03_Quick Charge counter ,7BB,32,47,1,0,0,,2166,6166,ff,21_66_#05_Normal Charge counter ,7BB,48,63,1,0,0,,2166,6166,ff,21_66_#07_Full Charge counter ,7BB,64,79,1,0,0,,2166,6166,ff,21_66_#09_Partial Charge counter ,7BB,80,95,1,0,0,,2166,6166,ff,21_66_#11_High voltage connecter counter ,7BB,96,111,1,0,0,,2166,6166,ff,21_66_#13_Bolt Meter counter ,7BB,16,31,1,0,0,Mn,2167,6167,ff,21_67_#003_Driving History Data[0][0] ,7BB,32,47,1,0,0,Mn,2167,6167,ff,21_67_#005_Driving History Data[0][1] ,7BB,48,63,1,0,0,Mn,2167,6167,ff,21_67_#007_Driving History Data[0][2] ,7BB,64,79,1,0,0,Mn,2167,6167,ff,21_67_#009_Driving History Data[0][3] ,7BB,80,95,1,0,0,Mn,2167,6167,ff,21_67_#011_Driving History Data[0][4] ,7BB,96,111,1,0,0,Mn,2167,6167,ff,21_67_#013_Driving History Data[1][0] ,7BB,112,127,1,0,0,Mn,2167,6167,ff,21_67_#015_Driving History Data[1][1] ,7BB,128,143,1,0,0,Mn,2167,6167,ff,21_67_#017_Driving History Data[1][2] ,7BB,144,159,1,0,0,Mn,2167,6167,ff,21_67_#019_Driving History Data[1][3] ,7BB,160,175,1,0,0,Mn,2167,6167,ff,21_67_#021_Driving History Data[1][4] ,7BB,176,191,1,0,0,Mn,2167,6167,ff,21_67_#023_Driving History Data[2][0] ,7BB,192,207,1,0,0,Mn,2167,6167,ff,21_67_#025_Driving History Data[2][1] ,7BB,208,223,1,0,0,Mn,2167,6167,ff,21_67_#027_Driving History Data[2][2] ,7BB,224,239,1,0,0,Mn,2167,6167,ff,21_67_#029_Driving History Data[2][3] ,7BB,240,255,1,0,0,Mn,2167,6167,ff,21_67_#031_Driving History Data[2][4] ,7BB,256,271,1,0,0,Mn,2167,6167,ff,21_67_#033_Driving History Data[3][0] ,7BB,272,287,1,0,0,Mn,2167,6167,ff,21_67_#035_Driving History Data[3][1] ,7BB,288,303,1,0,0,Mn,2167,6167,ff,21_67_#037_Driving History Data[3][2] ,7BB,304,319,1,0,0,Mn,2167,6167,ff,21_67_#039_Driving History Data[3][3] ,7BB,320,335,1,0,0,Mn,2167,6167,ff,21_67_#041_Driving History Data[3][4] ,7BB,336,351,1,0,0,Mn,2167,6167,ff,21_67_#043_Driving History Data[4][0] ,7BB,352,367,1,0,0,Mn,2167,6167,ff,21_67_#045_Driving History Data[4][1] ,7BB,368,383,1,0,0,Mn,2167,6167,ff,21_67_#047_Driving History Data[4][2] ,7BB,384,399,1,0,0,Mn,2167,6167,ff,21_67_#049_Driving History Data[4][3] ,7BB,400,415,1,0,0,Mn,2167,6167,ff,21_67_#051_Driving History Data[4][4] ,7BB,416,431,1,0,0,,2167,6167,ff,21_67_#053_Parking History Data[0][0] ,7BB,432,447,1,0,0,,2167,6167,ff,21_67_#055_Parking History Data[0][1] ,7BB,448,463,1,0,0,,2167,6167,ff,21_67_#057_Parking History Data[0][2] ,7BB,464,479,1,0,0,,2167,6167,ff,21_67_#059_Parking History Data[0][3] ,7BB,480,495,1,0,0,,2167,6167,ff,21_67_#061_Parking History Data[0][4] ,7BB,496,511,1,0,0,,2167,6167,ff,21_67_#063_Parking History Data[1][0] ,7BB,512,527,1,0,0,,2167,6167,ff,21_67_#065_Parking History Data[1][1] ,7BB,528,543,1,0,0,,2167,6167,ff,21_67_#067_Parking History Data[1][2] ,7BB,544,559,1,0,0,,2167,6167,ff,21_67_#069_Parking History Data[1][3] ,7BB,560,575,1,0,0,,2167,6167,ff,21_67_#071_Parking History Data[1][4] ,7BB,576,591,1,0,0,,2167,6167,ff,21_67_#073_Parking History Data[2][0] ,7BB,592,607,1,0,0,,2167,6167,ff,21_67_#075_Parking History Data[2][1] ,7BB,608,623,1,0,0,,2167,6167,ff,21_67_#077_Parking History Data[2][2] ,7BB,624,639,1,0,0,,2167,6167,ff,21_67_#079_Parking History Data[2][3] ,7BB,640,655,1,0,0,,2167,6167,ff,21_67_#081_Parking History Data[2][4] ,7BB,656,671,1,0,0,,2167,6167,ff,21_67_#083_Parking History Data[3][0] ,7BB,672,687,1,0,0,,2167,6167,ff,21_67_#085_Parking History Data[3][1] ,7BB,688,703,1,0,0,,2167,6167,ff,21_67_#087_Parking History Data[3][2] ,7BB,704,719,1,0,0,,2167,6167,ff,21_67_#089_Parking History Data[3][3] ,7BB,720,735,1,0,0,,2167,6167,ff,21_67_#091_Parking History Data[3][4] ,7BB,736,751,1,0,0,,2167,6167,ff,21_67_#093_Parking History Data[4][0] ,7BB,752,767,1,0,0,,2167,6167,ff,21_67_#095_Parking History Data[4][1] ,7BB,768,783,1,0,0,,2167,6167,ff,21_67_#097_Parking History Data[4][2] ,7BB,784,799,1,0,0,,2167,6167,ff,21_67_#099_Parking History Data[4][3] ,7BB,800,815,1,0,0,,2167,6167,ff,21_67_#101_Parking History Data[4][4] ,7BB,16,47,.001,2000000000,3,A,2168,6168,1ff,68_03 Current Sum [Buffer #00] ,7BB,48,63,.001953125,0,3,%,2168,6168,ff,68_07 Init SOC [Buffer #00] ,7BB,64,79,.001953125,0,3,%,2168,6168,ff,68_09 Final SOC [Buffer #00]] ,7BB,80,87,1,0,0,,2168,6168,ff,68_11 Init Method / Final Method [Buffer #00],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,88,95,1,0,0,,2168,6168,ff,68_12 NumOfSegmentCase [Buffer #00] ,7BB,96,111,.001953125,0,3,%,2168,6168,ff,68_13 SOHE_1Min [Buffer #00] ,7BB,112,119,.5,0,1,%,2168,6168,ff,68_15 WeightFactor [Buffer #00] ,7BB,120,127,1,0,0,,2168,6168,ff,68_16 Updated State [Buffer #00],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,128,135,.0625,0,2,%,2168,6168,ff,68_17 dSOHE/SOHE [#00] Segment [Buffer #00] ,7BB,136,167,.001,2000000000,3,A,2168,6168,1ff,68_18 Current Sum [Buffer #01] ,7BB,168,183,.001953125,0,3,%,2168,6168,ff,68_22 Init SOC [Buffer #01] ,7BB,184,199,.001953125,0,3,%,2168,6168,ff,68_24 Final SOC [Buffer #01] ,7BB,200,207,1,0,0,,2168,6168,ff,68_26 Init Method / Final Method [Buffer #01],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,208,215,1,0,0,,2168,6168,ff,68_27 NumOfSegmentCase [Buffer #01] ,7BB,216,231,.001953125,0,3,%,2168,6168,ff,68_28 SOHE_1Min [Buffer #01] ,7BB,232,239,.5,0,1,%,2168,6168,ff,68_30 WeightFactor [Buffer #01] ,7BB,240,247,1,0,0,,2168,6168,ff,68_31 Updated State [Buffer #01],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,248,255,.0625,0,2,%,2168,6168,ff,68_32 dSOHE/SOHE [#00] Segment [Buffer #01] ,7BB,256,287,.001,2000000000,3,A,2168,6168,1ff,68_33 Current Sum [Buffer #02] ,7BB,288,303,.001953125,0,3,%,2168,6168,ff,68_37 Init SOC [Buffer #02] ,7BB,304,319,.001953125,0,3,%,2168,6168,ff,68_39 Final SOC [Buffer #02] ,7BB,320,327,1,0,0,,2168,6168,ff,68_41 Init Method / Final Method [Buffer #02],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,328,335,1,0,0,,2168,6168,ff,68_42 NumOfSegmentCase [Buffer #02] ,7BB,336,351,.001953125,0,3,%,2168,6168,ff,68_43 SOHE_1Min [Buffer #02] ,7BB,352,359,.5,0,1,%,2168,6168,ff,68_45 WeightFactor [Buffer #02] ,7BB,360,367,1,0,0,,2168,6168,ff,68_46 Updated State [Buffer #02],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,368,375,.0625,0,2,%,2168,6168,ff,68_47 dSOHE/SOHE [#00] Segment [Buffer #02] ,7BB,376,407,.001,2000000000,3,A,2168,6168,1ff,68_48 Current Sum [Buffer #03] ,7BB,408,423,.001953125,0,3,%,2168,6168,ff,68_52 Init SOC [Buffer #03] ,7BB,424,439,.001953125,0,3,%,2168,6168,ff,68_54 Final SOC [Buffer #03] ,7BB,440,447,1,0,0,,2168,6168,ff,68_56 Init Method / Final Method [Buffer #03],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,448,455,1,0,0,,2168,6168,ff,68_57 NumOfSegmentCase [Buffer #03] ,7BB,456,471,.001953125,0,3,%,2168,6168,ff,68_58 SOHE_1Min [Buffer #03] ,7BB,472,479,.5,0,1,%,2168,6168,ff,68_60 WeightFactor [Buffer #03] ,7BB,480,487,1,0,0,,2168,6168,ff,68_61 Updated State [Buffer #03],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,488,495,.0625,0,2,%,2168,6168,ff,68_62 dSOHE/SOHE [#00] Segment [Buffer #03] ,7BB,496,527,.001,2000000000,3,A,2168,6168,1ff,68_63 Current Sum [Buffer #04] ,7BB,528,543,.001953125,0,3,%,2168,6168,ff,68_67 Init SOC [Buffer #04] ,7BB,544,559,.001953125,0,3,%,2168,6168,ff,68_69 Final SOC [Buffer #04] ,7BB,560,567,1,0,0,,2168,6168,ff,68_71 Init Method / Final Method [Buffer #04],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,568,575,1,0,0,,2168,6168,ff,68_72 NumOfSegmentCase [Buffer #04] ,7BB,576,591,.001953125,0,3,%,2168,6168,ff,68_73 SOHE_1Min [Buffer #04] ,7BB,592,599,.5,0,1,%,2168,6168,ff,68_75 WeightFactor [Buffer #04] ,7BB,600,607,1,0,0,,2168,6168,ff,68_76 Updated State [Buffer #04],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,608,615,.0625,0,2,%,2168,6168,ff,68_77 dSOHE/SOHE [#00] Segment [Buffer #04] ,7BB,616,647,.001,2000000000,3,A,2168,6168,1ff,68_78 Current Sum [Buffer #05] ,7BB,648,663,.001953125,0,3,%,2168,6168,ff,68_82 Init SOC [Buffer #05] ,7BB,664,679,.001953125,0,3,%,2168,6168,ff,68_84 Final SOC [Buffer #05] ,7BB,680,687,1,0,0,,2168,6168,ff,68_86 Init Method / Final Method [Buffer #05],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,688,695,1,0,0,,2168,6168,ff,68_87 NumOfSegmentCase [Buffer #05] ,7BB,696,711,.001953125,0,3,%,2168,6168,ff,68_88 SOHE_1Min [Buffer #05] ,7BB,712,719,.5,0,1,%,2168,6168,ff,68_90 WeightFactor [Buffer #05] ,7BB,720,727,1,0,0,,2168,6168,ff,68_91 Updated State [Buffer #05],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,728,735,.0625,0,2,%,2168,6168,ff,68_92 dSOHE/SOHE [#00] Segment [Buffer #05] ,7BB,736,767,.001,2000000000,3,A,2168,6168,1ff,68_93 Current Sum [Buffer #06] ,7BB,768,783,.001953125,0,3,%,2168,6168,ff,68_97 Init SOC [Buffer #06] ,7BB,784,799,.001953125,0,3,%,2168,6168,ff,68_99 Final SOC [Buffer #06] ,7BB,800,807,1,0,0,,2168,6168,ff,68_101 Init Method / Final Method [Buffer #06],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,808,815,1,0,0,,2168,6168,ff,68_102 NumOfSegmentCase [Buffer #06] ,7BB,816,831,.001953125,0,3,%,2168,6168,ff,68_103 SOHE_1Min [Buffer #06] ,7BB,832,839,.5,0,1,%,2168,6168,ff,68_105 WeightFactor [Buffer #06] ,7BB,840,847,1,0,0,,2168,6168,ff,68_106 Updated State [Buffer #06],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,848,855,.0625,0,2,%,2168,6168,ff,68_107 dSOHE/SOHE [#00] Segment [Buffer #06] ,7BB,856,887,.001,2000000000,3,A,2168,6168,1ff,68_108 Current Sum [Buffer #07] ,7BB,888,903,.001953125,0,3,%,2168,6168,ff,68_112 Init SOC [Buffer #07] ,7BB,904,919,.001953125,0,3,%,2168,6168,ff,68_114 Final SOC [Buffer #07] ,7BB,920,927,1,0,0,,2168,6168,ff,68_116 Init Method / Final Method [Buffer #07],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,928,935,1,0,0,,2168,6168,ff,68_117 NumOfSegmentCase [Buffer #07] ,7BB,936,951,.001953125,0,3,%,2168,6168,ff,68_118 SOHE_1Min [Buffer #07] ,7BB,952,959,.5,0,1,%,2168,6168,ff,68_120 WeightFactor [Buffer #07] ,7BB,960,967,1,0,0,,2168,6168,ff,68_121 Updated State [Buffer #07],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,968,975,.0625,0,2,%,2168,6168,ff,68_122 dSOHE/SOHE [#00] Segment [Buffer #07] ,7BB,976,1007,.001,2000000000,3,A,2168,6168,1ff,68_123 Current Sum [Buffer #08] ,7BB,1008,1023,.001953125,0,3,%,2168,6168,ff,68_127 Init SOC [Buffer #08] ,7BB,1024,1039,.001953125,0,3,%,2168,6168,ff,68_129 Final SOC [Buffer #08] ,7BB,1040,1047,1,0,0,,2168,6168,ff,68_131 Init Method / Final Method [Buffer #08],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,1048,1055,1,0,0,,2168,6168,ff,68_132 NumOfSegmentCase [Buffer #08] ,7BB,1056,1071,.001953125,0,3,%,2168,6168,ff,68_133 SOHE_1Min [Buffer #08] ,7BB,1072,1079,.5,0,1,%,2168,6168,ff,68_135 WeightFactor [Buffer #08] ,7BB,1080,1087,1,0,0,,2168,6168,ff,68_136 Updated State [Buffer #08],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,1088,1095,.0625,0,2,%,2168,6168,ff,68_137 dSOHE/SOHE [#00] Segment [Buffer #08] ,7BB,1096,1127,.001,2000000000,3,A,2168,6168,1ff,68_138 Current Sum [Buffer #09] ,7BB,1128,1143,.001953125,0,3,%,2168,6168,ff,68_142 Init SOC [Buffer #09] ,7BB,1144,1159,.001953125,0,3,%,2168,6168,ff,68_144 Final SOC [Buffer #09] ,7BB,1160,1167,1,0,0,,2168,6168,ff,68_146 Init Method / Final Method [Buffer #09],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,1168,1175,1,0,0,,2168,6168,ff,68_147 NumOfSegmentCase [Buffer #09] ,7BB,1176,1191,.001953125,0,3,%,2168,6168,ff,68_148 SOHE_1Min [Buffer #09] ,7BB,1192,1199,.5,0,1,%,2168,6168,ff,68_150 WeightFactor [Buffer #09] ,7BB,1200,1207,1,0,0,,2168,6168,ff,68_151 Updated State [Buffer #09],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,1208,1215,.0625,0,2,%,2168,6168,ff,68_152 dSOHE/SOHE [#00] Segment [Buffer #09] ,7BB,16,47,.001,2000000000,3,A,2169,6169,1ff,69_03 Current Sum [Buffer #10] ,7BB,48,63,.001953125,0,3,%,2169,6169,ff,69_07 Init SOC [Buffer #10] ,7BB,64,79,.001953125,0,3,%,2169,6169,ff,69_09 Final SOC [Buffer #10]] ,7BB,80,87,1,0,0,,2169,6169,ff,69_11 Init Method / Final Method [Buffer #10],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,88,95,1,0,0,,2169,6169,ff,69_12 NumOfSegmentCase [Buffer #10] ,7BB,96,111,.001953125,0,3,%,2169,6169,ff,69_13 SOHE_1Min [Buffer #10] ,7BB,112,119,.5,0,1,%,2169,6169,ff,69_15 WeightFactor [Buffer #10] ,7BB,120,127,1,0,0,,2169,6169,ff,69_16 Updated State [Buffer #10],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,128,135,.0625,0,2,%,2169,6169,ff,69_17 dSOHE/SOHE [#00] Segment [Buffer #10] ,7BB,136,167,.001,2000000000,3,A,2169,6169,1ff,69_18 Current Sum [Buffer #11] ,7BB,168,183,.001953125,0,3,%,2169,6169,ff,69_22 Init SOC [Buffer #11] ,7BB,184,199,.001953125,0,3,%,2169,6169,ff,69_24 Final SOC [Buffer #11] ,7BB,200,207,1,0,0,,2169,6169,ff,69_26 Init Method / Final Method [Buffer #11],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,208,215,1,0,0,,2169,6169,ff,69_27 NumOfSegmentCase [Buffer #11] ,7BB,216,231,.001953125,0,3,%,2169,6169,ff,69_28 SOHE_1Min [Buffer #11] ,7BB,232,239,.5,0,1,%,2169,6169,ff,69_30 WeightFactor [Buffer #11] ,7BB,240,247,1,0,0,,2169,6169,ff,69_31 Updated State [Buffer #11],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,248,255,.0625,0,2,%,2169,6169,ff,69_32 dSOHE/SOHE [#00] Segment [Buffer #11] ,7BB,256,287,.001,2000000000,3,A,2169,6169,1ff,69_33 Current Sum [Buffer #12] ,7BB,288,303,.001953125,0,3,%,2169,6169,ff,69_37 Init SOC [Buffer #12] ,7BB,304,319,.001953125,0,3,%,2169,6169,ff,69_39 Final SOC [Buffer #12] ,7BB,320,327,1,0,0,,2169,6169,ff,69_41 Init Method / Final Method [Buffer #12],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,328,335,1,0,0,,2169,6169,ff,69_42 NumOfSegmentCase [Buffer #12] ,7BB,336,351,.001953125,0,3,%,2169,6169,ff,69_43 SOHE_1Min [Buffer #12] ,7BB,352,359,.5,0,1,%,2169,6169,ff,69_45 WeightFactor [Buffer #12] ,7BB,360,367,1,0,0,,2169,6169,ff,69_46 Updated State [Buffer #12],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,368,375,.0625,0,2,%,2169,6169,ff,69_47 dSOHE/SOHE [#00] Segment [Buffer #12] ,7BB,376,407,.001,2000000000,3,A,2169,6169,1ff,69_48 Current Sum [Buffer #13] ,7BB,408,423,.001953125,0,3,%,2169,6169,ff,69_52 Init SOC [Buffer #13] ,7BB,424,439,.001953125,0,3,%,2169,6169,ff,69_54 Final SOC [Buffer #13] ,7BB,440,447,1,0,0,,2169,6169,ff,69_56 Init Method / Final Method [Buffer #13],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,448,455,1,0,0,,2169,6169,ff,69_57 NumOfSegmentCase [Buffer #13] ,7BB,456,471,.001953125,0,3,%,2169,6169,ff,69_58 SOHE_1Min [Buffer #13] ,7BB,472,479,.5,0,1,%,2169,6169,ff,69_60 WeightFactor [Buffer #13] ,7BB,480,487,1,0,0,,2169,6169,ff,69_61 Updated State [Buffer #13],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,488,495,.0625,0,2,%,2169,6169,ff,69_62 dSOHE/SOHE [#00] Segment [Buffer #13] ,7BB,496,527,.001,2000000000,3,A,2169,6169,1ff,69_63 Current Sum [Buffer #14] ,7BB,528,543,.001953125,0,3,%,2169,6169,ff,69_67 Init SOC [Buffer #14] ,7BB,544,559,.001953125,0,3,%,2169,6169,ff,69_69 Final SOC [Buffer #14] ,7BB,560,567,1,0,0,,2169,6169,ff,69_71 Init Method / Final Method [Buffer #14],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,568,575,1,0,0,,2169,6169,ff,69_72 NumOfSegmentCase [Buffer #14] ,7BB,576,591,.001953125,0,3,%,2169,6169,ff,69_73 SOHE_1Min [Buffer #14] ,7BB,592,599,.5,0,1,%,2169,6169,ff,69_75 WeightFactor [Buffer #14] ,7BB,600,607,1,0,0,,2169,6169,ff,69_76 Updated State [Buffer #14],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,608,615,.0625,0,2,%,2169,6169,ff,69_77 dSOHE/SOHE [#00] Segment [Buffer #14] ,7BB,616,647,.001,2000000000,3,A,2169,6169,1ff,69_78 Current Sum [Buffer #15] ,7BB,648,663,.001953125,0,3,%,2169,6169,ff,69_82 Init SOC [Buffer #15] ,7BB,664,679,.001953125,0,3,%,2169,6169,ff,69_84 Final SOC [Buffer #15] ,7BB,680,687,1,0,0,,2169,6169,ff,69_86 Init Method / Final Method [Buffer #15],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,688,695,1,0,0,,2169,6169,ff,69_87 NumOfSegmentCase [Buffer #15] ,7BB,696,711,.001953125,0,3,%,2169,6169,ff,69_88 SOHE_1Min [Buffer #15] ,7BB,712,719,.5,0,1,%,2169,6169,ff,69_90 WeightFactor [Buffer #15] ,7BB,720,727,1,0,0,,2169,6169,ff,69_91 Updated State [Buffer #15],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,728,735,.0625,0,2,%,2169,6169,ff,69_92 dSOHE/SOHE [#00] Segment [Buffer #15] ,7BB,736,767,.001,2000000000,3,A,2169,6169,1ff,69_93 Current Sum [Buffer #16] ,7BB,768,783,.001953125,0,3,%,2169,6169,ff,69_97 Init SOC [Buffer #16] ,7BB,784,799,.001953125,0,3,%,2169,6169,ff,69_99 Final SOC [Buffer #16] ,7BB,800,807,1,0,0,,2169,6169,ff,69_101 Init Method / Final Method [Buffer #16],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,808,815,1,0,0,,2169,6169,ff,69_102 NumOfSegmentCase [Buffer #16] ,7BB,816,831,.001953125,0,3,%,2169,6169,ff,69_103 SOHE_1Min [Buffer #16] ,7BB,832,839,.5,0,1,%,2169,6169,ff,69_105 WeightFactor [Buffer #16] ,7BB,840,847,1,0,0,,2169,6169,ff,69_106 Updated State [Buffer #16],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,848,855,.0625,0,2,%,2169,6169,ff,69_107 dSOHE/SOHE [#00] Segment [Buffer #16] ,7BB,856,887,.001,2000000000,3,A,2169,6169,1ff,69_108 Current Sum [Buffer #17] ,7BB,888,903,.001953125,0,3,%,2169,6169,ff,69_112 Init SOC [Buffer #17] ,7BB,904,919,.001953125,0,3,%,2169,6169,ff,69_114 Final SOC [Buffer #17] ,7BB,920,927,1,0,0,,2169,6169,ff,69_116 Init Method / Final Method [Buffer #17],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,928,935,1,0,0,,2169,6169,ff,69_117 NumOfSegmentCase [Buffer #17] ,7BB,936,951,.001953125,0,3,%,2169,6169,ff,69_118 SOHE_1Min [Buffer #17] ,7BB,952,959,.5,0,1,%,2169,6169,ff,69_120 WeightFactor [Buffer #17] ,7BB,960,967,1,0,0,,2169,6169,ff,69_121 Updated State [Buffer #17],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,968,975,.0625,0,2,%,2169,6169,ff,69_122 dSOHE/SOHE [#00] Segment [Buffer #17] ,7BB,976,1007,.001,2000000000,3,A,2169,6169,1ff,69_123 Current Sum [Buffer #18] ,7BB,1008,1023,.001953125,0,3,%,2169,6169,ff,69_127 Init SOC [Buffer #18] ,7BB,1024,1039,.001953125,0,3,%,2169,6169,ff,69_129 Final SOC [Buffer #18] ,7BB,1040,1047,1,0,0,,2169,6169,ff,69_131 Init Method / Final Method [Buffer #18],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,1048,1055,1,0,0,,2169,6169,ff,69_132 NumOfSegmentCase [Buffer #18] ,7BB,1056,1071,.001953125,0,3,%,2169,6169,ff,69_133 SOHE_1Min [Buffer #18] ,7BB,1072,1079,.5,0,1,%,2169,6169,ff,69_135 WeightFactor [Buffer #18] ,7BB,1080,1087,1,0,0,,2169,6169,ff,69_136 Updated State [Buffer #18],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,1088,1095,.0625,0,2,%,2169,6169,ff,69_137 dSOHE/SOHE [#00] Segment [Buffer #18] ,7BB,1096,1127,.001,2000000000,3,A,2169,6169,1ff,69_138 Current Sum [Buffer #19] ,7BB,1128,1143,.001953125,0,3,%,2169,6169,ff,69_142 Init SOC [Buffer #19] ,7BB,1144,1159,.001953125,0,3,%,2169,6169,ff,69_144 Final SOC [Buffer #19] ,7BB,1160,1167,1,0,0,,2169,6169,ff,69_146 Init Method / Final Method [Buffer #19],18:EKF(Init)+OCV(Final);33:OCV(Init)+EKF(Final);34:OCV(Init)+OCV(Final) ,7BB,1168,1175,1,0,0,,2169,6169,ff,69_147 NumOfSegmentCase [Buffer #19] ,7BB,1176,1191,.001953125,0,3,%,2169,6169,ff,69_148 SOHE_1Min [Buffer #19] ,7BB,1192,1199,.5,0,1,%,2169,6169,ff,69_150 WeightFactor [Buffer #19] ,7BB,1200,1207,1,0,0,,2169,6169,ff,69_151 Updated State [Buffer #19],0:Unknown (Transitory);4:Normal;5:Charge ,7BB,1208,1215,.0625,0,2,%,2169,6169,ff,69_152 dSOHE/SOHE [#00] Segment [Buffer #19] ,7BB,0,0,1,0,0,,2170,6170,ff,DataRead.2170 ,7BB,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,7BB,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,7BB,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,7BB,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,7BB,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,7BB,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,7BB,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,7BB,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,2:293A0 ,7BB,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,1:293A0 ,7BB,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList ,7BB,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,136:5DIGITS R2;255:Renault R3;0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3 ,7BB,16,175,1,0,0,,2184,6184,4ff,TraceAbility_Data ,7BB,24,31,1,0,0,,2184,6184,ff,21_84#04_Battery Supplier,76:LG ,7BB,32,39,1,0,0,,2184,6184,2ff,21_84#05_Energy provider ,7BB,40,47,1,0,0,,2184,6184,ff,21_84#06_Battery factory,70:Flins;75:Korea ,7BB,48,55,1,0,0,,2184,6184,2ff,21_84#07_Functional battery ,7BB,56,63,1,0,0,,2184,6184,ff,21_84#08_Production year,67:2010;68:2011;69:2012;70:2013;71:2014;72:2015 ,7BB,64,71,1,0,0,,2184,6184,ff,21_84#09_Production month,49:Janvier;50:Fevrier;51:Mars;52:Avril;53:Mai;54:Juin;55:Jullet;56:Aout;57:Septembre;58:Octobre;59:Novembre;60:Decembre ,7BB,72,87,1,0,0,,2184,6184,4ff,21_84#10_Serial number (five last bits) high part ,7BB,88,111,1,0,0,,2184,6184,4ff,21_84#10_Serial number (five last bits) low part ,7BB,112,143,1,0,0,,2184,6184,2ff,21_84#11_Supplier identification (LID $90) high part ,7BB,144,175,1,0,0,,2184,6184,2ff,21_84#11_Supplier identification (LID $90) low part ,7BB,16,23,1,0,0,,2190,6190,2ff,21_90#03 Product number for LG ,7BB,24,31,1,0,0,,2190,6190,2ff,21_90#04 Product number for LG ,7BB,32,39,1,0,0,,2190,6190,2ff,21_90#05 Product number for LG ,7BB,40,47,1,0,0,,2190,6190,2ff,21_90#06 Product number for LG ,7BB,48,55,1,0,0,,2190,6190,2ff,21_90#07 Product number for LG ,7BB,56,63,1,0,0,,2190,6190,2ff,21_90#08 Product number for LG ,7BB,64,71,1,0,0,,2190,6190,2ff,21_90#09 Product number for LG ,7BB,72,79,1,0,0,,2190,6190,2ff,21_90#10 Product number for LG ,7BB,16,47,1,0,0,,2191,6191,1ff,21_91#03 SW Version of Master ,7BB,48,79,1,0,0,,2191,6191,1ff,21_91#05 SW Version of Safety ,7BB,80,111,1,0,0,,2191,6191,1ff,21_91#11 SW Version of Slave1 ,7BB,112,143,1,0,0,,2191,6191,1ff,21_91#15 SW Version of Slave2 ,7BB,144,175,1,0,0,,2191,6191,1ff,21_91#19 SW Version of Slave3 ,7BB,176,207,1,0,0,,2191,6191,1ff,21_91#23 SW Version of Slave4 ,7BB,208,239,1,0,0,,2191,6191,1ff,21_91#27 SW Version of Slave5 ,7BB,240,271,1,0,0,,2191,6191,1ff,21_91#31 SW Version of Slave6 ,7BB,272,303,1,0,0,,2191,6191,1ff,21_91#35 SW Version of Slave7 ,7BB,304,335,1,0,0,,2191,6191,1ff,21_91#39 SW Version of Slave8 ,7BB,336,367,1,0,0,,2191,6191,1ff,21_91#43 SW Version of Slave9 ,7BB,368,399,1,0,0,,2191,6191,1ff,21_91#47 SW Version of Slave10 ,7BB,400,431,1,0,0,,2191,6191,1ff,21_91#51 SW Version of Slave11 ,7BB,432,463,1,0,0,,2191,6191,1ff,21_91#55 SW Version of Slave12 ,7BB,0,0,1,0,0,,2192,6192,ff,DataRead.2192 ,7BB,16,47,1,0,0,,2193,6193,1ff,21_93#03 EOL Command for LGIT ,7BB,48,55,1,0,0,,2193,6193,ff,21_93#07 EOL Command for LGIT2 ,7BB,16,31,1,0,0,,2194,6194,ff,21_94#03 IR Filtering Parameter Postive ,7BB,32,47,1,0,0,,2194,6194,ff,21_94#05 IR Filtering Parameter Negative ,7BB,48,63,1,0,0,,2194,6194,ff,21_94#07 IR Diag. Threshold ,7BB,64,79,1,0,0,,2194,6194,ff,21_94#09 IR Diag. Switch Parameter1 (P1) ,7BB,80,95,1,0,0,,2194,6194,ff,21_94#11 IR Diag. Switch Parameter2 (P2) ,7BB,96,111,1,0,0,,2194,6194,ff,21_94#13 IR Diag. Switch Parameter3 (P3) ,7BB,112,127,1,0,0,,2194,6194,ff,21_94#15 IR Diag. Switch Parameter4 (P4) ,7BB,128,143,1,0,0,,2194,6194,ff,21_94#17 IR Diag. Accuracy Positive Parameter ,7BB,144,159,1,0,0,,2194,6194,ff,21_94#19 IR Diag. Accuracy Negative Parameter ,7BB,160,175,1,0,0,,2194,6194,ff,21_94#21 IR Diag. Reserved1 ,7BB,176,191,1,0,0,,2194,6194,ff,21_94#23 IR Diag. Reserved2 ,7BB,192,207,1,0,0,,2194,6194,ff,21_94#25 IR Diag. Reserved3 ,7BB,208,223,1,0,0,,2194,6194,ff,21_94#27 IR Diag. Reserved4 ,7BB,16,215,1,0,0,,21A0,61A0,2ff,21_A0_#03_BIN ,7BB,16,55,1,0,0,,21F0,61F0,2ff,21_F0#03 Part Number Lower Part ,7BB,56,63,1,0,0,,21F0,61F0,4ff,21_F0#08 Diagnostic identification code ,7BB,64,87,1,0,0,,21F0,61F0,2ff,21_F0#09 Supplier Number ,7BB,88,127,1,0,0,,21F0,61F0,2ff,21_F0#12 Hardware Number Lower Part ,7BB,128,143,1,0,0,,21F0,61F0,4ff,21_F0#17 Software Number ,7BB,144,159,1,0,0,,21F0,61F0,4ff,21_F0#19 Edition Number ,7BB,160,175,1,0,0,,21F0,61F0,4ff,21_F0#21 Calibratin Number ,7BB,176,183,1,0,0,,21F0,61F0,4ff,21_F0#23 Part Number Basic Part List ,7BB,184,191,1,0,0,,21F0,61F0,4ff,21_F0#24 HardwareNumber Basic Part List ,7BB,192,199,1,0,0,,21F0,61F0,4ff,21_F0#25 ApprovalNumber Basic Part List ,7BB,200,207,1,0,0,,21F0,61F0,4ff,21_F0#26 Car manufacturer identification code ,7BB,16,55,1,0,0,,21F1,61F1,2ff,21_F1#03 ApprovalNumber ,7BB,56,95,1,0,0,,21F1,61F1,2ff,21_F1#08 ProgrammingSite ,7BB,96,135,1,0,0,,21F1,61F1,2ff,21_F1#13 Programming Tool reference ,7BB,136,143,1,0,0,,21F1,61F1,4ff,21_F1#18 NumberOfReprogrammings ,7BB,144,167,1,0,0,,21F1,61F1,ff,21_F1#19 Date of Programming ,7BB,168,183,1,0,0,,21F1,61F1,ff,21_F1#22 Reserve ,7BB,184,191,1,0,0,,21F1,61F1,4ff,21_F1#24 SaveMarking ,7BB,192,207,1,0,0,,21F1,61F1,4ff,21_F1#25 CRC of log record ,7BB,16,55,1,0,0,,21F2,61F2,2ff,21_F2#03 Part Number Lower Part ,7BB,56,63,1,0,0,,21F2,61F2,4ff,21_F2#08 Diagnostic identification code ,7BB,64,87,1,0,0,,21F2,61F2,2ff,21_F2#09 Supplier Number ,7BB,88,127,1,0,0,,21F2,61F2,2ff,21_F2#12 Hardware Number Lower Part ,7BB,128,143,1,0,0,,21F2,61F2,4ff,21_F2#17 Software Number ,7BB,144,159,1,0,0,,21F2,61F2,4ff,21_F2#19 Edition Number ,7BB,160,175,1,0,0,,21F2,61F2,4ff,21_F2#21 Calibratin Number ,7BB,176,183,1,0,0,,21F2,61F2,4ff,21_F2#23 Part Number Basic Part List ,7BB,184,191,1,0,0,,21F2,61F2,4ff,21_F2#24 HardwareNumber Basic Part List ,7BB,192,199,1,0,0,,21F2,61F2,4ff,21_F2#25 ApprovalNumber Basic Part List ,7BB,200,207,1,0,0,,21F2,61F2,4ff,21_F2#26 Car manufacturer identification code ,7BB,16,55,1,0,0,,21F3,61F3,2ff,21_F3#03 ApprovalNumber ,7BB,56,95,1,0,0,,21F3,61F3,2ff,21_F3#08 ProgrammingSite ,7BB,96,135,1,0,0,,21F3,61F3,2ff,21_F3#13 Programming Tool reference ,7BB,136,143,1,0,0,,21F3,61F3,4ff,21_F3#18 NumberOfReprogrammings ,7BB,144,167,1,0,0,,21F3,61F3,ff,21_F3#19 Date of Programming ,7BB,168,183,1,0,0,,21F3,61F3,ff,21_F3#22 Reserve ,7BB,184,191,1,0,0,,21F3,61F3,4ff,21_F3#24 SaveMarking ,7BB,192,207,1,0,0,,21F3,61F3,4ff,21_F3#25 CRC of log record ,7BB,16,55,1,0,0,,21F4,61F4,2ff,21_F4#03 Part Number Lower Part ,7BB,56,63,1,0,0,,21F4,61F4,4ff,21_F4#08 Diagnostic identification code ,7BB,64,87,1,0,0,,21F4,61F4,2ff,21_F4#09 Supplier Number ,7BB,88,127,1,0,0,,21F4,61F4,2ff,21_F4#12 Hardware Number Lower Part ,7BB,128,143,1,0,0,,21F4,61F4,4ff,21_F4#17 Software Number ,7BB,144,159,1,0,0,,21F4,61F4,4ff,21_F4#19 Edition Number ,7BB,160,175,1,0,0,,21F4,61F4,4ff,21_F4#21 Calibratin Number ,7BB,176,183,1,0,0,,21F4,61F4,4ff,21_F4#23 Part Number Basic Part List ,7BB,184,191,1,0,0,,21F4,61F4,4ff,21_F4#24 HardwareNumber Basic Part List ,7BB,192,199,1,0,0,,21F4,61F4,4ff,21_F4#25 ApprovalNumber Basic Part List ,7BB,200,207,1,0,0,,21F4,61F4,4ff,21_F4#26 Car manufacturer identification code ,7BB,16,55,1,0,0,,21F5,61F5,2ff,21_F5#03 ApprovalNumber ,7BB,56,95,1,0,0,,21F5,61F5,2ff,21_F5#08 ProgrammingSite ,7BB,96,135,1,0,0,,21F5,61F5,2ff,21_F5#13 Programming Tool reference ,7BB,136,143,1,0,0,,21F5,61F5,4ff,21_F5#18 NumberOfReprogrammings ,7BB,144,167,1,0,0,,21F5,61F5,ff,21_F5#19 Date of Programming ,7BB,168,183,1,0,0,,21F5,61F5,ff,21_F5#22 Reserve ,7BB,184,191,1,0,0,,21F5,61F5,4ff,21_F5#24 SaveMarking ,7BB,192,207,1,0,0,,21F5,61F5,4ff,21_F5#25 CRC of log record ,7BB,16,55,1,0,0,,21F6,61F6,2ff,21_F6#03 Part Number Lower Part ,7BB,56,63,1,0,0,,21F6,61F6,4ff,21_F6#08 Diagnostic identification code ,7BB,64,87,1,0,0,,21F6,61F6,2ff,21_F6#09 Supplier Number ,7BB,88,127,1,0,0,,21F6,61F6,2ff,21_F6#12 Hardware Number Lower Part ,7BB,128,143,1,0,0,,21F6,61F6,4ff,21_F6#17 Software Number ,7BB,144,159,1,0,0,,21F6,61F6,4ff,21_F6#19 Edition Number ,7BB,160,175,1,0,0,,21F6,61F6,4ff,21_F6#21 Calibratin Number ,7BB,176,183,1,0,0,,21F6,61F6,4ff,21_F6#23 Part Number Basic Part List ,7BB,184,191,1,0,0,,21F6,61F6,4ff,21_F6#24 HardwareNumber Basic Part List ,7BB,192,199,1,0,0,,21F6,61F6,4ff,21_F6#25 ApprovalNumber Basic Part List ,7BB,200,207,1,0,0,,21F6,61F6,4ff,21_F6#26 Car manufacturer identification code ,7BB,16,55,1,0,0,,21F7,61F7,2ff,21_F7#03 ApprovalNumber ,7BB,56,95,1,0,0,,21F7,61F7,2ff,21_F7#08 ProgrammingSite ,7BB,96,135,1,0,0,,21F7,61F7,2ff,21_F7#13 Programming Tool reference ,7BB,136,143,1,0,0,,21F7,61F7,4ff,21_F7#18 NumberOfReprogrammings ,7BB,144,167,1,0,0,,21F7,61F7,ff,21_F7#19 Date of Programming ,7BB,168,183,1,0,0,,21F7,61F7,ff,21_F7#22 Reserve ,7BB,184,191,1,0,0,,21F7,61F7,4ff,21_F7#24 SaveMarking ,7BB,192,207,1,0,0,,21F7,61F7,4ff,21_F7#25 CRC of log record ,7BB,16,55,1,0,0,,21F8,61F8,2ff,21_F8#03 Part Number Lower Part ,7BB,56,63,1,0,0,,21F8,61F8,4ff,21_F8#08 Diagnostic identification code ,7BB,64,87,1,0,0,,21F8,61F8,2ff,21_F8#09 Supplier Number ,7BB,88,127,1,0,0,,21F8,61F8,2ff,21_F8#12 Hardware Number Lower Part ,7BB,128,143,1,0,0,,21F8,61F8,4ff,21_F8#17 Software Number ,7BB,144,159,1,0,0,,21F8,61F8,4ff,21_F8#19 Edition Number ,7BB,160,175,1,0,0,,21F8,61F8,4ff,21_F8#21 Calibratin Number ,7BB,176,183,1,0,0,,21F8,61F8,4ff,21_F8#23 Part Number Basic Part List ,7BB,184,191,1,0,0,,21F8,61F8,4ff,21_F8#24 HardwareNumber Basic Part List ,7BB,192,199,1,0,0,,21F8,61F8,4ff,21_F8#25 ApprovalNumber Basic Part List ,7BB,200,207,1,0,0,,21F8,61F8,4ff,21_F8#26 Car manufacturer identification code ,7BB,16,55,1,0,0,,21F9,61F9,2ff,21_F9#03 ApprovalNumber ,7BB,56,95,1,0,0,,21F9,61F9,2ff,21_F9#08 ProgrammingSite ,7BB,96,135,1,0,0,,21F9,61F9,2ff,21_F9#13 Programming Tool reference ,7BB,136,143,1,0,0,,21F9,61F9,4ff,21_F9#18 NumberOfReprogrammings ,7BB,144,167,1,0,0,,21F9,61F9,ff,21_F9#19 Date of Programming ,7BB,168,183,1,0,0,,21F9,61F9,ff,21_F9#22 Reserve ,7BB,184,191,1,0,0,,21F9,61F9,4ff,21_F9#24 SaveMarking ,7BB,192,207,1,0,0,,21F9,61F9,4ff,21_F9#25 CRC of log record ,7BB,16,55,1,0,0,,21FA,61FA,2ff,21_FA#03 Part Number Lower Part ,7BB,56,63,1,0,0,,21FA,61FA,4ff,21_FA#08 Diagnostic identification code ,7BB,64,87,1,0,0,,21FA,61FA,2ff,21_FA#09 Supplier Number ,7BB,88,127,1,0,0,,21FA,61FA,2ff,21_FA#12 Hardware Number Lower Part ,7BB,128,143,1,0,0,,21FA,61FA,4ff,21_FA#17 Software Number ,7BB,144,159,1,0,0,,21FA,61FA,4ff,21_FA#19 Edition Number ,7BB,160,175,1,0,0,,21FA,61FA,4ff,21_FA#21 Calibratin Number ,7BB,176,183,1,0,0,,21FA,61FA,4ff,21_FA#23 Part Number Basic Part List ,7BB,184,191,1,0,0,,21FA,61FA,4ff,21_FA#24 HardwareNumber Basic Part List ,7BB,192,199,1,0,0,,21FA,61FA,4ff,21_FA#25 ApprovalNumber Basic Part List ,7BB,200,207,1,0,0,,21FA,61FA,4ff,21_FA#26 Car manufacturer identification code ,7BB,16,55,1,0,0,,21FB,61FB,2ff,21_FB#03 ApprovalNumber ,7BB,56,95,1,0,0,,21FB,61FB,2ff,21_FB#08 ProgrammingSite ,7BB,96,135,1,0,0,,21FB,61FB,2ff,21_FB#13 Programming Tool reference ,7BB,136,143,1,0,0,,21FB,61FB,4ff,21_FB#18 NumberOfReprogrammings ,7BB,144,167,1,0,0,,21FB,61FB,ff,21_FB#19 Date of Programming ,7BB,168,183,1,0,0,,21FB,61FB,ff,21_FB#22 Reserve ,7BB,184,191,1,0,0,,21FB,61FB,4ff,21_FB#24 SaveMarking ,7BB,192,207,1,0,0,,21FB,61FB,4ff,21_FB#25 CRC of log record ,7BB,16,55,1,0,0,,21FC,61FC,2ff,21_FC#03 Part Number Lower Part ,7BB,56,63,1,0,0,,21FC,61FC,4ff,21_FC#08 Diagnostic identification code ,7BB,64,87,1,0,0,,21FC,61FC,2ff,21_FC#09 Supplier Number ,7BB,88,127,1,0,0,,21FC,61FC,2ff,21_FC#12 Hardware Number Lower Part ,7BB,128,143,1,0,0,,21FC,61FC,4ff,21_FC#17 Software Number ,7BB,144,159,1,0,0,,21FC,61FC,4ff,21_FC#19 Edition Number ,7BB,160,175,1,0,0,,21FC,61FC,4ff,21_FC#21 Calibratin Number ,7BB,176,183,1,0,0,,21FC,61FC,4ff,21_FC#23 Part Number Basic Part List ,7BB,184,191,1,0,0,,21FC,61FC,4ff,21_FC#24 HardwareNumber Basic Part List ,7BB,192,199,1,0,0,,21FC,61FC,4ff,21_FC#25 ApprovalNumber Basic Part List ,7BB,200,207,1,0,0,,21FC,61FC,4ff,21_FC#26 Car manufacturer identification code ,7BB,16,55,1,0,0,,21FD,61FD,2ff,21_FD#03 ApprovalNumber ,7BB,56,95,1,0,0,,21FD,61FD,2ff,21_FD#08 ProgrammingSite ,7BB,96,135,1,0,0,,21FD,61FD,2ff,21_FD#13 Programming Tool reference ,7BB,136,143,1,0,0,,21FD,61FD,4ff,21_FD#18 NumberOfReprogrammings ,7BB,144,167,1,0,0,,21FD,61FD,ff,21_FD#19 Date of Programming ,7BB,168,183,1,0,0,,21FD,61FD,ff,21_FD#22 Reserve ,7BB,184,191,1,0,0,,21FD,61FD,4ff,21_FD#24 SaveMarking ,7BB,192,207,1,0,0,,21FD,61FD,4ff,21_FD#25 CRC of log record ,7BB,16,55,1,0,0,,21FE,61FE,2ff,21_FE#03 Part Number Lower Part ,7BB,56,63,1,0,0,,21FE,61FE,4ff,21_FE#08 Diagnostic identification code ,7BB,64,87,1,0,0,,21FE,61FE,2ff,21_FE#09 Supplier Number ,7BB,88,127,1,0,0,,21FE,61FE,2ff,21_FE#12 Hardware Number Lower Part ,7BB,128,143,1,0,0,,21FE,61FE,4ff,21_FE#17 Software Number ,7BB,144,159,1,0,0,,21FE,61FE,4ff,21_FE#19 Edition Number ,7BB,160,175,1,0,0,,21FE,61FE,4ff,21_FE#21 Calibratin Number ,7BB,176,183,1,0,0,,21FE,61FE,4ff,21_FE#23 Part Number Basic Part List ,7BB,184,191,1,0,0,,21FE,61FE,4ff,21_FE#24 HardwareNumber Basic Part List ,7BB,192,199,1,0,0,,21FE,61FE,4ff,21_FE#25 ApprovalNumber Basic Part List ,7BB,200,207,1,0,0,,21FE,61FE,4ff,21_FE#26 Car manufacturer identification code ,7BB,16,55,1,0,0,,21FF,61FF,2ff,21_FF#03 ApprovalNumber ,7BB,56,95,1,0,0,,21FF,61FF,2ff,21_FF#08 ProgrammingSite ,7BB,96,135,1,0,0,,21FF,61FF,2ff,21_FF#13 Programming Tool reference ,7BB,136,143,1,0,0,,21FF,61FF,4ff,21_FF#18 NumberOfReprogrammings ,7BB,144,167,1,0,0,,21FF,61FF,ff,21_FF#19 Date of Programming ,7BB,168,183,1,0,0,,21FF,61FF,ff,21_FF#22 Reserve ,7BB,184,191,1,0,0,,21FF,61FF,4ff,21_FF#24 SaveMarking ,7BB,192,207,1,0,0,,21FF,61FF,4ff,21_FF#25 CRC of log record ,7BB,24,31,.5,0,1,%,221404,621404,ff,1404_Battery SOC ,7BB,24,31,.5,0,1,%,221405,621405,ff,1405_Battery USOC ,7BB,24,31,.5,0,1,%,221406,621406,ff,1406_Battery SOH ,7BB,24,39,.01,0,2,kW,221407,621407,ff,1407_Input Possible Power (After Restriction) ,7BB,24,39,.01,0,2,kW,221408,621408,ff,1408_Output Possible (After Restriction) ,7BB,24,39,.1,5000,1,A,221409,621409,ff,1409_Instant Current of Battery ,7BB,24,39,1,0,0,,22140A,62140A,ff,140A_Current sensor A/D value ,7BB,24,39,.1,5000,1,A,22140B,62140B,ff,140B_Current Sensor Offset value ,7BB,24,39,1,0,0,,22140C,62140C,ff,140C_AD value of Sensor Power Supply Voltage ,7BB,24,39,.01,0,2,V,22140D,62140D,ff,140D_B+ Voltage ,7BB,24,31,1,40,0,degC,22140E,62140E,ff,140E_Maximum Temperature ,7BB,24,31,1,40,0,degC,22140F,62140F,ff,140F_Minimum Temperature ,7BB,24,31,1,40,0,degC,221410,621410,ff,1410_Average Temperature ,7BB,24,39,1000,0,0,Ohm,221411,621411,ff,1411_Isolation Impedance ,7BB,24,39,1,0,0,,221412,621412,ff,1412_Isolation Positive A/D value ,7BB,24,39,1,0,0,,221413,621413,ff,1413_Isolation Negative A/D value ,7BB,24,39,1,0,0,,221414,621414,ff,1414_Pack Voltage A/D Value ,7BB,24,39,.01,0,2,V,221415,621415,ff,1415_Pack Voltage ,7BB,24,55,.01,0,2,V,221416,621416,1ff,1416_Sum of Cell voltage ,7BB,24,39,.001,0,3,V,221417,621417,ff,1417_Maximum Cell Voltage ,7BB,24,31,1,0,0,,221418,621418,ff,1418_Maximum Cell Voltage No. ,7BB,24,39,.001,0,3,V,221419,621419,ff,1419_Minimum Cell Voltage ,7BB,24,31,1,0,0,,22141A,62141A,ff,141A Minimum cell Voltage number ,7BB,28,28,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 12,0:No Slave Failure;1:Slave Failure ,7BB,29,29,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 11,0:No Slave Failure;1:Slave Failure ,7BB,30,30,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 10,0:No Slave Failure;1:Slave Failure ,7BB,31,31,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 09,0:No Slave Failure;1:Slave Failure ,7BB,32,32,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 08,0:No Slave Failure;1:Slave Failure ,7BB,33,33,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 07,0:No Slave Failure;1:Slave Failure ,7BB,34,34,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 06,0:No Slave Failure;1:Slave Failure ,7BB,35,35,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 05,0:No Slave Failure;1:Slave Failure ,7BB,36,36,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 04,0:No Slave Failure;1:Slave Failure ,7BB,37,37,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 03,0:No Slave Failure;1:Slave Failure ,7BB,38,38,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 02,0:No Slave Failure;1:Slave Failure ,7BB,39,39,1,0,0,,22141B,62141B,ff,141B Relavant Module no..141B Failure Slave 01,0:No Slave Failure;1:Slave Failure ,7BB,24,39,.001,0,3,V,22141C,62141C,ff,141C Cell Voltage No.1 of Failure Slave ,7BB,24,39,.001,0,3,V,22141D,62141D,ff,141D Cell Voltage No.2 of Failure Slave ,7BB,24,39,.001,0,3,V,22141E,62141E,ff,141E Cell Voltage No.3 of Failure Slave ,7BB,24,39,.001,0,3,V,22141F,62141F,ff,141F Cell Voltage No.4 of Failure Slave ,7BB,24,39,.001,0,3,V,221420,621420,ff,1420 Cell Voltage No.5 of Failure Slave ,7BB,24,39,.001,0,3,V,221421,621421,ff,1421 Cell Voltage No.6 of Failure Slave ,7BB,24,39,.001,0,3,V,221422,621422,ff,1422 Cell Voltage No.7 of Failure Slave ,7BB,24,39,.001,0,3,V,221423,621423,ff,1423 Cell Voltage No.8 of Failure Slave ,7BB,24,26,1,0,0,,221424,621424,ff,1424 BMS State (LBC_CANHS_R_01/02/03).1424_BMS State,0:Not Used;1:Slow charge;2:Fast charge;3:Init;4:Transitory;5:Normal;6:Quick Drop;7:Unavalaible Vlaue ,7BB,27,28,1,0,0,,221424,621424,ff,1424 BMS State (LBC_CANHS_R_01/02/03).1424_LBC RefusetoSleep,0:Not Used;1:LBC Refuse To Sleep;2:LBC Ready To Sleep;3:Not Used 2 ,7BB,29,30,1,0,0,,221424,621424,ff,1424 BMS State (LBC_CANHS_R_01/02/03).1424_HVpowerConnection,1:HVPowerConnection allowed;2:HVPowerConnection Not allowed ,7BB,31,32,1,0,0,,221424,621424,ff,1424 BMS State (LBC_CANHS_R_01/02/03).1424_IsolDiagAuthorisation,0:Not Used;1:Diag of isolation allowed;2:Diag of isolation not allowed;3:Unavailable value ,7BB,33,33,1,0,0,,221424,621424,ff,1424 BMS State (LBC_CANHS_R_01/02/03).1424_HVIL 1_SD,0:Opened;1:Closed ,7BB,34,34,1,0,0,,221424,621424,ff,1424 BMS State (LBC_CANHS_R_01/02/03).1424_HVIL 2_QD,0:Opened;1:Closed ,7BB,35,39,1,0,0,,221424,621424,ff,1424 BMS State (LBC_CANHS_R_01/02/03).1424_Reserved ,7BB,24,25,1,0,0,,221425,621425,ff,1425 Request From Vehicle (SCH_CANHS__R02/R03).1425_ETS_SleepMode,2:Quick Drop;0:Normal Sleep;1:14V Battery Management;3:Unavailable Value ,7BB,26,27,1,0,0,,221425,621425,ff,1425 Request From Vehicle (SCH_CANHS__R02/R03).1425_SCH_WakeUpSleepCommand,2:Not Used 2;1:Not Used 1;0:Go to Sleep;3:Wake Up ,7BB,28,28,1,0,0,,221425,621425,ff,1425 Request From Vehicle (SCH_CANHS__R02/R03).1425_WakeUpType,0:Customer Wake Up;1:Technical Wake Up ,7BB,29,31,1,0,0,,221425,621425,ff,1425 Request From Vehicle (SCH_CANHS__R02/R03).1425_OperatingType,0:No Request;1:Slow Charge;2:Fast Charge;3:Normal;4:Quick Drop;5:Not Used 1;6:Not Used 2;7:Unavailable Value ,7BB,32,33,1,0,0,,221425,621425,ff,1425 Request From Vehicle (SCH_CANHS__R02/R03).1425_PowerRelayState,0:Precharge;2:Opened;1:Closed;3:Transitory States ,7BB,34,39,1,0,0,,221425,621425,ff,1425 Request From Vehicle (SCH_CANHS__R02/R03).1425_Reserved ,7BB,24,39,10,2000,0,rpm,221426,621426,ff,1426 ElecMachineSpeed From Vehicle (PEB_CANHS_R02/03) ,7BB,24,39,.01,0,2,KW,221427,621427,ff,1427 Charge Possible Power (After Restriction) ,7BB,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/LBC_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level oor / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety ?C failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructedorblocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE/PEB_Dtcs.csv ================================================ 1000,PEB Ctrl Board 1001,PEB Ctrl Board ADC 1002,PEB Ctrl Board ATIC81 1003,PEB Ctrl Board microprocessor 1004,Internal voltage sensor on HV side 1006,Interlock electrical circuit 1007,PEB HV DC link discharge failure 1009,14V supply wire (KL30) 100A,DCDC internal Power module Temp sensor 100B,DCDC internal Driver Board Temp sensor 100C,DCDC current sensor LV side 100D,DCDC Sigma delta voltage sensor 14V side 100E,DCDC internal MOS+drivers 100F,DCDC internal FPGA_CPLD component 1010,14V_DCDC wire 1011,HV_DCDC wire 1012,DCDC Temp 1013,INV internal temp sensor 1014,INV phase U internal current sensor 1015,INV phase V internal current sensor 1016,INV phase W internal current sensor 1018,INV internal FPGA_CPLD component 1019,HV_Inverter wire 101A,INV_EM Iphase 101B,INV_EM Phase U wire 101C,INV_EM Phase V wire 101D,INV_EM Phase W wire 101E,INV+EXCIT Temp 101F,EXCIT Temp sensor 1020,EXCIT +current sensor 1021,EXCIT -current sensor 1023,EM Iexcit signal 1024,APC by wire 1025,EM_SIN signal 1026,EM_COS signal 1027,EM_SIN_COS signals 1028,EM position sensor Supply signal 1029,Excitation current sensors 102A,EM_TEMP signal 102B,EMR Interlock electrical circuit 102C,EM Temp 102E,Spiderbox Interlock electrical circuit 102F,Excitation Interlock electrical circuit 1031,Switch power test procedure 1032,Software parametrization 1033,DCDC Trafo temp sensor 1034,DCDC Power Supply 1036,Program flow 1037,DCDC Failure Class C 1038,Inverter+ Excitation Failure Class C 1039,PEB Failure Class C 103A,Inverter Power Supply 103E,DCDC ADC voltage sensor 14V side 1040,DCDC voltage sensors 14V side 1041,Writing of rotor resistance 1042,Writing of the position sensor 1043,OV flags Data Received by CAN 1044,Torque request deviation D000,CAN communication D001,Communication with EVC D002,Torque request from EVC D004,Communication with LBC D003,14V Data from USM 1045,Incoherent requests from EVC D005,Communication in charge mode 1046,EM positive overspeed 1047,EM negative overspeed 1048,Wrong direction of the wheels 1049,PWM signal 1050,CPLD reprogramming 1052,PEB Failure Class B with safety alert ================================================ FILE: app/src/main/assets/ZOE/PEB_Fields.csv ================================================ ,77E,0,0,1,0,0,,1081,5081,ff,StartDiagnosticSession.Default ,77E,0,0,1,0,0,,1085,5085,ff,StartDiagnosticSession.Programming ,77E,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.ExtendedDiagnostic ,77E,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,77E,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,77E,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,77E,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed/blocked;152:component or system over temperature ,77E,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,77E,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,77E,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,77E,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,77E,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,77E,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,77E,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,77E,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,77E,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,77E,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,77E,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,77E,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,77E,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,77E,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,77E,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,77E,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,77E,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,77E,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,77E,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,77E,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,77E,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,77E,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,77E,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,77E,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,77E,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,77E,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,77E,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,77E,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,77E,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,77E,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,77E,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,77E,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,77E,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,77E,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,77E,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,1:291A5 ,77E,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,1:291A5 ,77E,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList ,77E,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,136:5DIGITS R2;255:Renault R3;0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3 ,77E,16,151,1,0,0,,2181,6181,2ff,Vin In Ascii ,77E,152,167,1,0,0,,2181,6181,4ff,Vin CRC ,77E,16,39,1,0,0,,2184,6184,2ff,REF SUPPLIER ,77E,40,119,1,0,0,,2184,6184,2ff,REFHW (to be coded on 10 bytes) ,77E,120,175,1,0,0,,2184,6184,2ff,DATE(YEAR + Day Number) ,77E,16,103,1,0,0,,21B7,61B7,4ff,Configuration of Electrical Vehicle Networks ,77E,16,103,1,0,0,,21B8,61B8,4ff,List of Electrical Vehicle ECUs with After-sales diagnostic ,77E,31,31,1,0,0,,222070,622070,ff,Immobilizer - diagnosis availability,0:unavailable;1:available ,77E,24,31,1,0,0,-,222071,622071,ff,Immobilizer - Byte 1 used to allow diagnosis ,77E,24,31,1,0,0,-,222072,622072,ff,Immobilizer - Byte 2 used to allow diagnosis ,77E,24,31,1,0,0,-,222073,622073,ff,Immobilizer - Byte 3 used to allow diagnosis ,77E,31,31,1,0,0,,222074,622074,ff,Immobilizer - engine not running due to ECM,0:no;1:yes ,77E,31,31,1,0,0,,222075,622075,ff,Immobilizer - engine not running due to BCM in secure mode,0:no;1:yes ,77E,31,31,1,0,0,,222076,622076,ff,Immobilizer - engine not running due to no BCM authorization,0:no;1:yes ,77E,31,31,1,0,0,,222077,622077,ff,Immobilizer - engine not running due to a CAN network problem with the BCM,0:no;1:yes ,77E,31,31,1,0,0,,223001,623001,ff,VerlogStatus,0:Vehicle Not Locked;1:Vehicle Locked ,77E,24,47,1,0,0,,223002,623002,4ff,Error angle ,77E,31,31,1,0,0,,223003,623003,ff,PEBExcitationInterlockState,0:Interlock Open;1:Interlock Closed ,77E,31,31,1,0,0,,223004,623004,ff,PEBSpiderBoxInterlockState,0:Interlock Open;1:Interlock Closed ,77E,31,31,1,0,0,,223006,623006,ff,Interlock EM,0:Interlock Open;1:Interlock Closed ,77E,31,31,1,0,0,,223007,623007,ff,InterlockBatt,0:Interlock Open;1:Interlock Closed ,77E,28,51,1,0,0,km,223008,623008,ff,DistanceTotalizer ,77E,24,39,.0009765625,0,3,V,223009,623009,1ff,BatteryVoltage ,77E,24,39,.0009765625,0,3,V,22300A,62300A,1ff,Batt_voltage_mes ,77E,31,31,1,0,0,,22300B,62300B,ff,APCStatus,0:Ignition is OFF;1:Ignition is ON ,77E,31,31,1,0,0,,22300C,62300C,ff,Volt_APCPEB_veh_status,0:Ignition is OFF;1:Ignition is ON ,77E,24,39,.0009765625,0,3,V,22300D,62300D,1ff,Onboard Power Supply ,77E,24,39,.03125,0,2,V,22300E,62300E,1ff,DCHighVoltage ,77E,30,31,1,0,0,,22300F,62300F,ff,DCDCState,0:Starting mode or Power off;1:Standby(ready to power = preload);2:Power On ;3:Unavailable value ,77E,31,31,1,0,0,,223010,623010,ff,DCDCActivation,0:DCDC Off;1:DCDC On ,77E,24,39,.0009765625,0,3,V,223011,623011,1ff,DCDCVoltageRegulation ,77E,24,39,.0009765625,0,3,V,223012,623012,1ff,DCDCLowVoltage ,77E,24,39,.015625,0,2,A,223013,623013,1ff,DCDCCurrentOutput ,77E,24,39,.001953125,0,3,A,223015,623015,1ff,DCDCCurrentInput ,77E,24,39,.015625,0,2,,223016,623016,1ff,DCDC_PEB_Driver_board_mes ,77E,24,39,.015625,0,2,°C,223017,623017,1ff,DCDC Trafo Temp ,77E,24,39,.015625,0,2,,223018,623018,1ff,DCDCTempOrder ,77E,24,31,1,0,0,%,223019,623019,ff,DCDCTemp ,77E,29,31,1,0,0,,22301A,62301A,ff,DCDCDefault,0:No failure;1:Downgraded mode;2:SW temporary Shutdown;3:SW definitive Shutdown ,77E,31,31,1,0,0,,22301B,62301B,ff,PEBDCDCServLampRequest,0:No security barrier lost;1:Security barrier lost ,77E,31,31,1,0,0,,22301C,62301C,ff,InverterActivation,0:Inverter Off;1:Inverter On ,77E,24,39,.0625,0,2,A,22301D,62301D,1ff,PowerTrainCurrent ,77E,24,39,.0625,0,2,,22301E,62301E,1ff,Current Ph U ,77E,24,39,.0625,0,2,,22301F,62301F,1ff,Current Ph V ,77E,24,39,.0625,0,2,,223021,623021,1ff,Current Ph W ,77E,24,39,.00390625,0,3,A,223022,623022,1ff,Current Excit Pos ,77E,24,39,.00390625,0,3,A,223023,623023,1ff,Current Excit Neg ,77E,24,39,.03125,0,2,Nm,223024,623024,1ff,ElecTorqueRequest ,77E,24,39,.03125,0,2,Nm,223025,623025,1ff,PEBTorque ,77E,24,39,.03125,0,2,Nm,223026,623026,1ff,ElecMachineMaxMotorTorque ,77E,24,39,.03125,0,2,Nm,223027,623027,1ff,ElecMachineMaxGenTorque ,77E,24,39,.5,0,1,rpm,223028,623028,1ff,ElecMachineSpeed ,77E,24,31,1,0,0,%,223029,623029,ff,InverterTemp ,77E,24,31,1,0,0,%,22302A,62302A,ff,ElecMachineTemp ,77E,24,39,.015625,0,2,°C,22302B,62302B,1ff,InverterTempOrder ,77E,24,39,.015625,0,2,°C,22302C,62302C,1ff,Stator temperature ,77E,31,31,1,0,0,,22302D,62302D,ff,B_PebDischarge_sch_req,0:Discharge not requested;1:Discharge requested ,77E,24,31,1,0,0,,22302E,62302E,ff,PEBActiveDischarge,0:Active Discharge Not In Progress;1:Active Discharge In Progress;255:Unavailable Value ,77E,31,31,1,0,0,,22302F,62302F,ff,ElecMAchineWorkingMode,0:Motor mode;1:Generator mode ,77E,30,31,1,0,0,,223030,623030,ff,ElecMachineDefault,0:No default;1:Downgraded mode;2:Temporary fault;3:Permanent fault ,77E,31,31,1,0,0,,223031,623031,ff,PEBMotorServLampRequest,0:No security barrier lost;1:Security barrier lost ,77E,31,31,1,0,0,,223032,623032,ff,PEBMotorStopLampRequest,0:No security barrier lost;1:Security barrier lost ,77E,24,39,.0009765625,0,3,V,223034,623034,1ff,Rotor PositionSensor Supply ,77E,24,39,.015625,0,2,°C,223035,623035,1ff,Rotor temperature ,77E,24,39,.015625,0,2,°C,223036,623036,1ff,Excitation temperature ,77E,24,47,1,0,0,,223037,623037,4ff,R20 Rotor resistor value ,77E,24,31,1,0,0,,223038,623038,ff,Charge request from EVC to PEB,0:No charge requested;1:Charge Requested ,77E,31,31,1,0,0,,223039,623039,ff,Effective Charge feedback to EVC,0:Not in charge;1:In charge ,77E,31,31,1,0,0,,22303A,62303A,ff,Distribution type from JB,0:Default;1:Simultaneous ,77E,30,31,1,0,0,,22303B,62303B,ff,Failure class of the charge,0:No default;1:Downgraded mode;2:SW temporary shutdown;3:SW definitive shutdown ,77E,24,39,1,0,0,,22303C,62303C,4ff,CPLD DCDC ,77E,24,39,1,0,0,,22303D,62303D,4ff,CPLD INVERTER ,77E,24,39,1,0,0,,22303E,62303E,4ff,ID of first detected FAM raising the DTC ,77E,24,39,1,0,0,,22303F,62303F,4ff,ID of last detected FAM raising the DTC ,77E,24,103,1,0,0,,223040,623040,4ff,Raw debug data encoding the cause of SPT fail ,77E,24,63,1,0,0,,22F180,62F180,4ff,bootSoftwareIdentification ,77E,24,103,1,0,0,,22F18E,62F18E,2ff,VehicleManufacturerKitAssemblyPartNumber ,77E,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/PEB_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed/blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE/Parking-Sonar_Dtcs.csv ================================================ A728,Led A725,RearBuzzer A72D,FrontBuzzer A72C,FrontOuterRightSensor A729,FrontOuterLeftSensor A72B,FrontInnerRightSensor A72A,FrontInnerLeftSensor A724,ECU A723,RearOuterRightSensor A720,RearOuterLeftSensor A722,RearInnerRightSensor A721,RearInnerLeftSensor A726,RearCenterSensor A727,FrontCenterSensor ================================================ FILE: app/src/main/assets/ZOE/Parking-Sonar_Fields.csv ================================================ ,76E,0,0,1,0,0,,1081,5081,ff,StartDiagnosticSession.Default ,76E,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.ExtendedDiagnostic ,76E,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,76E,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,76E,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,76E,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,76E,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier,0:Unused ,76E,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,76E,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,76E,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,76E,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,76E,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,76E,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,76E,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,76E,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,76E,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,76E,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,76E,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76E,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,76E,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,76E,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,76E,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76E,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,76E,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,76E,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,76E,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76E,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,76E,16,55,1,0,0,,211F,611F,2ff,N.SparePartsNumberAfterConfiguration ,76E,56,63,1,0,0,,211F,611F,ff,N.SparePartsNumberSuffix,0:31036 ,76E,64,71,1,0,0,,211F,611F,2ff,N1.SupplierNumber1 ,76E,72,87,1,0,0,,211F,611F,4ff,N1.SupplierNumber2 ,76E,88,127,1,0,0,,211F,611F,4ff,N.HardwareNumber ,76E,128,143,1,0,0,,211F,611F,4ff,N.SoftwareNumber ,76E,144,159,1,0,0,,211F,611F,4ff,N.EditionNumber ,76E,160,175,1,0,0,,211F,611F,4ff,N.CalibrationNumber ,76E,176,199,1,0,0,,211F,611F,4ff,N.OtherSystemFeatures ,76E,200,207,1,0,0,,211F,611F,ff,N.ManufacturerIdentificationCode,128:N1 ,76E,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,76E,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,76E,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,76E,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,76E,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,76E,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,76E,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,76E,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A__;1:25990 ,76E,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:00000 ,76E,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A ,76E,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,76E,16,151,1,0,0,,2181,6181,2ff,VIN ,76E,152,167,1,0,0,,2181,6181,4ff,CRC ,76E,16,31,1,0,0,,2182,6182,4ff,MUX messaging reference.vcan ,76E,32,32,1,0,0,,2182,6182,ff,BUSOFF DIAG.n.CRRNT.vcan,0:OK;1:UNKWN ,76E,33,33,1,0,0,,2182,6182,ff,BUSOFF DIAG.n.PRSNT.vcan,0:OK;1:UNKWN ,76E,34,39,-1,40,0,,2182,6182,ff,BUSOFF DIAG.n.PAST.vcan ,76E,40,40,1,0,0,,2182,6182,ff,TRANSMIT DIAG.n.CRRNT.vcan,0:OK;1:UNKWN ,76E,41,41,1,0,0,,2182,6182,ff,TRANSMIT DIAG.n.PRSNT.vcan,0:OK;1:UNKWN ,76E,42,47,-1,40,0,,2182,6182,ff,TRANSMIT DIAG.n.PAST.vcan ,76E,48,48,1,0,0,,2182,6182,ff,ECM.n.CRRNT.vcan,0:OK;1:UNKWN ,76E,49,49,1,0,0,,2182,6182,ff,ECM.n.PRSNT.vcan,0:OK;1:UNKWN ,76E,50,55,-1,40,0,,2182,6182,ff,ECM.n.PAST.vcan ,76E,56,56,1,0,0,,2182,6182,ff,VDC_TCS_ABS.n.CRRNT.vcan,0:OK;1:UNKWN ,76E,57,57,1,0,0,,2182,6182,ff,VDC_TCS_ABS.n.PRSNT.vcan,0:OK;1:UNKWN ,76E,58,63,-1,40,0,,2182,6182,ff,VDC_TCS_ABS.n.PAST.vcan ,76E,64,64,1,0,0,,2182,6182,ff,METER_MA.n.CRRNT.vcan,0:OK;1:UNKWN ,76E,65,65,1,0,0,,2182,6182,ff,METER_MA.n.PRSNT.vcan,0:OK;1:UNKWN ,76E,66,71,-1,40,0,,2182,6182,ff,METER_MA.n.PAST.vcan ,76E,72,72,1,0,0,,2182,6182,ff,BCM_SEC.n.CRRNT.vcan,0:OK;1:UNKWN ,76E,73,73,1,0,0,,2182,6182,ff,BCM_SEC.n.PRSNT.vcan,0:OK;1:UNKWN ,76E,74,79,-1,40,0,,2182,6182,ff,BCM_SEC.n.PAST.vcan ,76E,96,96,1,0,0,,2182,6182,ff,ICC.n.CRRNT.vcan,0:OK;1:UNKWN ,76E,97,97,1,0,0,,2182,6182,ff,ICC.n.PRSNT.vcan,0:OK;1:UNKWN ,76E,98,103,-1,40,0,,2182,6182,ff,ICC.n.PAST.vcan ,76E,200,200,1,0,0,,2182,6182,ff,IPDM E_R.n.CRRNT.vcan,0:OK;1:UNKWN ,76E,201,201,1,0,0,,2182,6182,ff,IPDM E_R.n.PRSNT.vcan,0:OK;1:UNKWN ,76E,202,207,-1,40,0,,2182,6182,ff,IPDM E_R.n.PAST.vcan ,76E,280,280,1,0,0,,2182,6182,ff,e4WD.n.CRRNT.vcan,0:OK;1:UNKWN ,76E,281,281,1,0,0,,2182,6182,ff,e4WD.n.PRSNT.vcan,0:OK;1:UNKWN ,76E,282,287,-1,40,0,,2182,6182,ff,e4WD.n.PAST.vcan ,76E,344,344,1,0,0,,2182,6182,ff,m4WD.n.CRRNT.vcan,0:OK;1:UNKWN ,76E,345,345,1,0,0,,2182,6182,ff,m4WD.n.PRSNT.vcan,0:OK;1:UNKWN ,76E,346,351,-1,40,0,,2182,6182,ff,m4WD.n.PAST.vcan ,76E,16,55,1,0,0,,2183,6183,2ff,N.SparePartsNumber ,76E,56,63,1,0,0,,2183,6183,ff,N.SparePartsNumberSuffix,0:31036 ,76E,64,71,1,0,0,,2183,6183,2ff,N1.SupplierNumber1 ,76E,72,87,1,0,0,,2183,6183,4ff,N1.SupplierNumber2 ,76E,88,127,1,0,0,,2183,6183,4ff,N.HardwareNumber ,76E,128,143,1,0,0,,2183,6183,4ff,N.SoftwareNumber ,76E,144,159,1,0,0,,2183,6183,4ff,N.EditionNumber ,76E,160,175,1,0,0,,2183,6183,4ff,N.CalibrationNumber ,76E,176,199,1,0,0,,2183,6183,4ff,N.OtherSystemFeatures ,76E,200,207,1,0,0,,2183,6183,ff,N.ManufacturerIdentificationCode,128:N1 ,76E,16,31,1,0,0,,2184,6184,2ff,Assembly_Line_Number ,76E,32,47,1,0,0,,2184,6184,2ff,Tracabilite_EOLT.TestEquipment ,76E,48,63,1,0,0,,2184,6184,2ff,Tracabilite_ICT.ProductionYear ,76E,64,87,1,0,0,,2184,6184,2ff,Tracabilite_ICT.ProductionDay ,76E,88,127,1,0,0,,2184,6184,2ff,Tracabilite_ICT.DayPartNumber ,76E,16,95,1,0,0,,21EF,61EF,2ff,Daimler.HardwarePartNumber ,76E,96,175,1,0,0,,21EF,61EF,2ff,Daimler.SoftwarePartNumber ,76E,24,31,1,0,0,,222001,622001,ff,cfg.VehicleShapeType ,76E,31,31,1,0,0,,222002,622002,ff,cfg.RearDetectionState,0:Off;1:On ,76E,31,31,1,0,0,,222003,622003,ff,cfg.FrontDetectionState,0:Off;1:On ,76E,24,31,1,0,0,,222004,622004,ff,cfg.SwitchMode,0:No switch;1:Switch temporary;2:Switch permanent and temporary ,76E,30,30,1,0,0,,222005,622005,ff,cfg.LEDMode.NoBlinkWhenError,0:Off;1:On ,76E,31,31,1,0,0,,222005,622005,ff,cfg.LEDMode.lightState,0:LED is light when UPA is OFF;1:LED is light when UPA is ON ,76E,24,24,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.ContinuousTone,0:PingPong Rear Front;1:Rear priority ,76E,25,25,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.ErrorBeepCount,0:Every Time Reverse gear engaged;1:Only once in Power ON cycle ,76E,26,26,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.AODBeep,0:No;1:Yes ,76E,27,27,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.RogerBeep,0:No;1:Yes ,76E,28,28,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.ErrorBeep,0:No;1:Yes ,76E,29,29,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.DetectionBeep,0:No;1:Yes ,76E,30,30,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.FrontBuzzer,0:No;1:Yes ,76E,31,31,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.UseBuzzer,0:No;1:Yes ,76E,28,28,1,0,0,,222007,622007,ff,cfg.ConfigurationFlag.RearObstacleDetection,0:Off;1:On ,76E,29,29,1,0,0,,222007,622007,ff,cfg.ConfigurationFlag.DepartSwitchOffFunction,0:No;1:Yes ,76E,30,30,1,0,0,,222007,622007,ff,cfg.ConfigurationFlag.CornerSwitchOffFunction,0:No;1:Yes ,76E,24,31,1,0,0,,222008,622008,ff,cfg.BuzzerSoundIndex,1:Level 1;2:Level 2;3:Level 3;4:Level 4;5:Level 5;6:Level 6;7:Level 7 ,76E,24,31,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level1Volume ,76E,32,39,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level2Volume ,76E,40,47,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level3Volume ,76E,48,55,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level4Volume ,76E,56,63,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level5Volume ,76E,64,71,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level6Volume ,76E,72,79,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level7Volume ,76E,24,31,1,0,0,,22200A,62200A,ff,cfg.BuzzerFrequency.RearDetection,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,32,39,1,0,0,,22200A,62200A,ff,cfg.BuzzerFrequency.FrontDetection,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,40,47,1,0,0,,22200A,62200A,ff,cfg.BuzzerFrequency.RogerBeep,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,48,55,1,0,0,,22200A,62200A,ff,cfg.BuzzerFrequency.ErrorBeep,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,24,31,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level1Volume ,76E,32,39,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level2Volume ,76E,40,47,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level3Volume ,76E,48,55,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level4Volume ,76E,56,63,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level5Volume ,76E,64,71,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level6Volume ,76E,72,79,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level7Volume ,76E,24,31,1,0,0,cm,22200D,62200D,ff,cfg.TrailerHookDetectionZone ,76E,24,31,1,0,0,,22200E,62200E,ff,cfg.UPASystemType,0:Rear;1:Rear and Front;2:AVM ,76E,24,31,1,0,0,,22200F,62200F,ff,cfg.NumberOfSensors.RearSensors,0:Unavailable;84:UPA 3 sensors;108:UPA 4 sensors;130:AVM ,76E,32,39,1,0,0,,22200F,62200F,ff,cfg.NumberOfSensors.FrontSensors,0:Unavailable;84:UPA 3 sensors;108:UPA 4 sensors;130:AVM ,76E,24,31,1,0,0,,222010,622010,ff,cfg.TempoValue ,76E,24,31,1,0,0,km/h,222011,622011,ff,cfg.VehicleSpeedThresholdForAutomaticActivation ,76E,24,31,1,0,0,km/h,222012,622012,ff,cfg.VehicleSpeedThresholdForAutomaticDeactivation ,76E,24,31,1,0,0,,222013,622013,ff,cfg.TempoWhenRearGearIsEngaged ,76E,24,31,1,0,0,,222014,622014,ff,cfg.TempoForDisplayCarDisappearAfterObstacleDisappear ,76E,24,31,1,0,0,,222015,622015,ff,cfg.TempoForTransitionBetweenDifferentTypesOfDisplayCars ,76E,24,31,1,0,0,,222016,622016,ff,cfg.HysteresisForTransitionBetweenDifferentColorSquares ,76E,24,31,1,0,0,cm,222017,622017,ff,cfg.RearSensorGeometry.DistanceCentralToExternal ,76E,32,39,1,0,0,cm,222017,622017,ff,cfg.RearSensorGeometry.DistanceCentralToCentral ,76E,40,47,1,0,0,cm,222017,622017,ff,cfg.RearSensorGeometry.OffsetExternal ,76E,48,55,1,0,0,cm,222017,622017,ff,cfg.RearSensorGeometry.OffsetCentral ,76E,24,31,1,0,0,cm,222018,622018,ff,cfg.FrontSensorGeometry.DistanceCentralToExternal ,76E,32,39,1,0,0,cm,222018,622018,ff,cfg.FrontSensorGeometry.DistanceCentralToCentral ,76E,40,47,1,0,0,cm,222018,622018,ff,cfg.FrontSensorGeometry.OffsetExternal ,76E,48,55,1,0,0,cm,222018,622018,ff,cfg.FrontSensorGeometry.OffsetCentral ,76E,24,31,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.1.5ms ,76E,32,39,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.2ms ,76E,40,47,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.2.5ms ,76E,48,55,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.3ms ,76E,56,63,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.3.5ms ,76E,64,71,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.4ms ,76E,72,79,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.4.5ms ,76E,80,87,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.5ms ,76E,88,95,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.6ms ,76E,96,103,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.7ms ,76E,104,111,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.8ms ,76E,112,119,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.9ms ,76E,120,125,1,0,0,,222019,622019,ff,cfg.SensorsThreshold.RearCentral.Scale ,76E,24,31,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.1.5ms ,76E,32,39,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.2ms ,76E,40,47,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.2.5ms ,76E,48,55,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.3ms ,76E,56,63,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.3.5ms ,76E,64,71,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.4ms ,76E,72,79,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.4.5ms ,76E,80,87,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.5ms ,76E,88,95,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.6ms ,76E,96,103,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.7ms ,76E,104,111,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.8ms ,76E,112,119,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.9ms ,76E,120,125,1,0,0,,22201A,62201A,ff,cfg.SensorsThreshold.RearExternal.Scale ,76E,24,31,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.1.5ms ,76E,32,39,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.2ms ,76E,40,47,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.2.5ms ,76E,48,55,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.3ms ,76E,56,63,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.3.5ms ,76E,64,71,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.4ms ,76E,72,79,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.4.5ms ,76E,80,87,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.5ms ,76E,88,95,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.6ms ,76E,96,103,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.7ms ,76E,104,111,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.8ms ,76E,112,119,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.9ms ,76E,120,125,1,0,0,,22201B,62201B,ff,cfg.SensorsThreshold.FrontCentral.Scale ,76E,24,31,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.1.5ms ,76E,32,39,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.2ms ,76E,40,47,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.2.5ms ,76E,48,55,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.3ms ,76E,56,63,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.3.5ms ,76E,64,71,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.4ms ,76E,72,79,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.4.5ms ,76E,80,87,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.5ms ,76E,88,95,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.6ms ,76E,96,103,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.7ms ,76E,104,111,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.8ms ,76E,112,119,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.9ms ,76E,120,125,1,0,0,,22201C,62201C,ff,cfg.SensorsThreshold.FrontExternal.Scale ,76E,24,39,1,0,0,,22201D,62201D,4ff,cfg.CalibrationNumber.Value ,76E,24,31,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.ContinuousTone ,76E,32,39,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.InnerSensorsDiscontinuousTone ,76E,40,47,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.OuterSensorsDiscontinuousTone ,76E,48,55,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.InnerSensorsVisualStart ,76E,56,63,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.OuterSensorsVisualStart ,76E,64,71,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.InnerSensorsBCPStart ,76E,72,79,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.OuterSensorsBCPStart ,76E,24,31,1,0,0,cm,22201F,62201F,ff,cfg.DetectionRangeOfFrontSensors.ContinuousTone ,76E,32,39,1,0,0,cm,22201F,62201F,ff,cfg.DetectionRangeOfFrontSensors.InnerSensorsDiscontinuousTone ,76E,40,47,1,0,0,cm,22201F,62201F,ff,cfg.DetectionRangeOfFrontSensors.OuterSensorsDiscontinuousTone ,76E,48,55,1,0,0,cm,22201F,62201F,ff,cfg.DetectionRangeOfFrontSensors.InnerSensorsVisualStart ,76E,56,63,1,0,0,cm,22201F,62201F,ff,cfg.DetectionRangeOfFrontSensors.OuterSensorsVisualStart ,76E,24,31,1,0,0,,222021,622021,ff,cfg.GearMode,0:Reverse Gear input;1:Manual GearBox;2:Automatic GearBox;3:Electrical ,76E,28,28,1,0,0,,222022,622022,ff,cfg.AutomaticReactivationScheme.SystemPower,0:No;1:Yes ,76E,29,29,1,0,0,,222022,622022,ff,cfg.AutomaticReactivationScheme.VehicleSpeed,0:No;1:Yes ,76E,30,30,1,0,0,,222022,622022,ff,cfg.AutomaticReactivationScheme.ReserveGear,0:No;1:Yes ,76E,31,31,1,0,0,,222022,622022,ff,cfg.AutomaticReactivationScheme.SwitchShortPush,0:No;1:Yes ,76E,31,31,1,0,0,,222023,622023,ff,cfg.BCPadaptation,0:Off;1:On ,76E,24,31,1,0,0,,22202F,62202F,ff,gcfg.VehicleShapeType ,76E,39,39,1,0,0,,22202F,62202F,ff,gcfg.RearDetectionState,0:Off;1:On ,76E,47,47,1,0,0,,22202F,62202F,ff,gcfg.FrontDetectionState,0:Off;1:On ,76E,48,55,1,0,0,,22202F,62202F,ff,gcfg.SwitchMode,0:No switch;1:Switch permanent;2:Switch permanent and temporary ,76E,62,62,1,0,0,,22202F,62202F,ff,gcfg.LEDMode.NoBlinkWhenError,0:Off;1:On ,76E,63,63,1,0,0,,22202F,62202F,ff,gcfg.LEDMode.lightState,0:LED is light when UPA is OFF;1:LED is light when UPA is ON ,76E,64,64,1,0,0,,22202F,62202F,ff,gcfg.SoundConfigurationFlags.ContinuousTone,0:PingPong Rear Front;1:Rear priority ,76E,65,65,1,0,0,,22202F,62202F,ff,gcfg.SoundConfigurationFlags.ErrorBeepCount,0:Every Time Reverse gear engaged;1:Only once in Power ON cycle ,76E,66,66,1,0,0,,22202F,62202F,ff,gcfg.SoundConfigurationFlags.AODBeep,0:No;1:Yes ,76E,67,67,1,0,0,,22202F,62202F,ff,gcfg.SoundConfigurationFlags.RogerBeep,0:No;1:Yes ,76E,68,68,1,0,0,,22202F,62202F,ff,gcfg.SoundConfigurationFlags.ErrorBeep,0:No;1:Yes ,76E,69,69,1,0,0,,22202F,62202F,ff,gcfg.SoundConfigurationFlags.DetectionBeep,0:No;1:Yes ,76E,70,70,1,0,0,,22202F,62202F,ff,gcfg.SoundConfigurationFlags.FrontBuzzer,0:No;1:Yes ,76E,71,71,1,0,0,,22202F,62202F,ff,gcfg.SoundConfigurationFlags.UseBuzzer,0:No;1:Yes ,76E,76,76,1,0,0,,22202F,62202F,ff,gcfg.ConfigurationFlag.RearObstacleDetection,0:Off;1:On ,76E,77,77,1,0,0,,22202F,62202F,ff,gcfg.ConfigurationFlag.DepartSwitchOffFunction,0:No;1:Yes ,76E,78,78,1,0,0,,22202F,62202F,ff,gcfg.ConfigurationFlag.CornerSwitchOffFunction,0:No;1:Yes ,76E,80,87,1,0,0,,22202F,62202F,ff,gcfg.BuzzerSoundIndex,1:Level 1;2:Level 2;3:Level 3;4:Level 4;5:Level 5;6:Level 6;7:Level 7 (off) ,76E,88,95,1,0,0,,22202F,62202F,ff,gcfg.RearBuzzerVolume.Level1Volume ,76E,96,103,1,0,0,,22202F,62202F,ff,gcfg.RearBuzzerVolume.Level2Volume ,76E,104,111,1,0,0,,22202F,62202F,ff,gcfg.RearBuzzerVolume.Level3Volume ,76E,112,119,1,0,0,,22202F,62202F,ff,gcfg.RearBuzzerVolume.Level4Volume ,76E,120,127,1,0,0,,22202F,62202F,ff,gcfg.RearBuzzerVolume.Level5Volume ,76E,128,135,1,0,0,,22202F,62202F,ff,gcfg.RearBuzzerVolume.Level6Volume ,76E,136,143,1,0,0,,22202F,62202F,ff,gcfg.RearBuzzerVolume.Level7Volume ,76E,144,151,1,0,0,,22202F,62202F,ff,gcfg.BuzzerFrequency.RearDetection,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,152,159,1,0,0,,22202F,62202F,ff,gcfg.BuzzerFrequency.FrontDetection,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,160,167,1,0,0,,22202F,62202F,ff,gcfg.BuzzerFrequency.RogerBeep,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,168,175,1,0,0,,22202F,62202F,ff,gcfg.BuzzerFrequency.ErrorBeep,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,176,183,1,0,0,,22202F,62202F,ff,gcfg.FrontBuzzerVolume.Level1Volume ,76E,184,191,1,0,0,,22202F,62202F,ff,gcfg.FrontBuzzerVolume.Level2Volume ,76E,192,199,1,0,0,,22202F,62202F,ff,gcfg.FrontBuzzerVolume.Level3Volume ,76E,200,207,1,0,0,,22202F,62202F,ff,gcfg.FrontBuzzerVolume.Level4Volume ,76E,208,215,1,0,0,,22202F,62202F,ff,gcfg.FrontBuzzerVolume.Level5Volume ,76E,216,223,1,0,0,,22202F,62202F,ff,gcfg.FrontBuzzerVolume.Level6Volume ,76E,224,231,1,0,0,,22202F,62202F,ff,gcfg.FrontBuzzerVolume.Level7Volume ,76E,232,239,1,0,0,cm,22202F,62202F,ff,gcfg.TrailerHookDetectionZone ,76E,240,247,1,0,0,,22202F,62202F,ff,gcfg.UPASystemType,0:Rear;1:Rear and Front;2:AVM ,76E,248,263,1,0,0,,22202F,62202F,4ff,gcfg.NumberOfSensors ,76E,264,271,1,0,0,s,22202F,62202F,ff,gcfg.TempoValue ,76E,272,279,1,0,0,km/h,22202F,62202F,ff,gcfg.VehicleSpeedThresholdForAutomaticActivation ,76E,280,287,1,0,0,km/h,22202F,62202F,ff,gcfg.VehicleSpeedThresholdForAutomaticDeactivation ,76E,288,295,1,0,0,0,1s,22202F,62202F,ff,gcfg.TempoWhenRearGearIsEngaged ,76E,296,303,1,0,0,,22202F,62202F,ff,gcfg.TempoForDisplayCarDisappearAfterObstacleDisappear ,76E,304,311,1,0,0,,22202F,62202F,ff,gcfg.TempoForTransitionBetweenDifferentTypesOfDisplayCars ,76E,312,319,1,0,0,,22202F,62202F,ff,gcfg.HysteresisForTransitionBetweenDifferentColorSquares ,76E,320,383,1,0,0,,22202F,62202F,4ff,gcfg.Geometry ,76E,384,399,1,0,0,,22202F,62202F,4ff,gcfg.CalibrationNumber.Value ,76E,400,407,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfRearSensors.ContinuousTone ,76E,408,415,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfRearSensors.InnerSensorsDiscontinuousTone ,76E,416,423,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfRearSensors.OuterSensorsDiscontinuousTone ,76E,424,431,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfRearSensors.InnerSensorsVisualStart ,76E,432,439,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfRearSensors.OuterSensorsVisualStart ,76E,440,447,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfRearSensors.InnerSensorsBCPStart ,76E,448,455,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfRearSensors.OuterSensorsBCPStart ,76E,456,463,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfFrontSensors.ContinuousTone ,76E,464,471,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfFrontSensors.InnerSensorsDiscontinuousTone ,76E,472,479,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfFrontSensors.OuterSensorsDiscontinuousTone ,76E,480,487,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfFrontSensors.InnerSensorsVisualStart ,76E,488,495,1,0,0,cm,22202F,62202F,ff,gcfg.DetectionRangeOfFrontSensors.OuterSensorsVisualStart ,76E,496,503,1,0,0,,22202F,62202F,ff,gcfg.GearMode,0:Reverse Gear input;1:Manual GearBox;2:Automatic GearBox;3:Electrical ,76E,508,508,1,0,0,,22202F,62202F,ff,gcfg.AutomaticReactivationScheme.SystemPower,0:No;1:Yes ,76E,509,509,1,0,0,,22202F,62202F,ff,gcfg.AutomaticReactivationScheme.VehicleSpeed,0:No;1:Yes ,76E,510,510,1,0,0,,22202F,62202F,ff,gcfg.AutomaticReactivationScheme.ReserveGear,0:No;1:Yes ,76E,511,511,1,0,0,,22202F,62202F,ff,gcfg.AutomaticReactivationScheme.SwitchShortPush,0:No;1:Yes ,76E,519,519,1,0,0,,22202F,62202F,ff,gcfg.BCPadaptation,0:Off;1:On ,76E,520,935,1,0,0,,22202F,62202F,4ff,gcfg.SensorsThreshold ,76E,24,39,.01,0,2,km/h,222030,622030,ff,VehicleSpeed ,76E,24,31,.1,0,1,V,222031,622031,ff,ECUvoltage ,76E,24,31,.1,0,1,V,222032,622032,ff,SensorsVoltage ,76E,24,31,1,0,0,,222033,622033,ff,UPAmode,0:Operational;1:Normal ,76E,25,25,1,0,0,,222034,622034,ff,UPAStatusFrame.Push Trace ,76E,26,26,1,0,0,,222034,622034,ff,UPAStatusFrame.Short On_Off mode ,76E,27,27,1,0,0,,222034,622034,ff,UPAStatusFrame.Long On_Off mode ,76E,28,28,1,0,0,,222034,622034,ff,UPAStatusFrame.Neutral or Parking,0:Off;1:On ,76E,29,29,1,0,0,,222034,622034,ff,UPAStatusFrame.LED,0:Off;1:On ,76E,30,30,1,0,0,,222034,622034,ff,UPAStatusFrame.Trailer tow ,76E,31,31,1,0,0,,222034,622034,ff,UPAStatusFrame.Reverse,0:Off;1:On ,76E,24,31,1,0,0,cm,222035,622035,ff,RearCalculatedDistance ,76E,24,31,1,0,0,cm,222036,622036,ff,FrontCalculatedDistance ,76E,24,31,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.OuterLeft ,76E,32,39,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.OuterLeft_To_InnerLeftOrCentre ,76E,40,47,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.InnerLeftOrCentre_To_OuterLeft ,76E,48,55,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.InnerLeftOrCentre ,76E,56,63,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.InnerLeft_To_InnerRight ,76E,64,71,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.InnerRight_To_InnerLeft ,76E,72,79,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.InnerRight ,76E,80,87,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.InnerRightOrCentre_To_OuterRight ,76E,88,95,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.OuterRight_To_InnerRightOrCentre ,76E,96,103,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.OuterRight ,76E,24,31,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.OuterLeft ,76E,32,39,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.OuterLeft_To_InnerLeftOrCentre ,76E,40,47,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.InnerLeftOrCentre_To_OuterLeft ,76E,48,55,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.InnerLeftOrCentre ,76E,56,63,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.InnerLeft_To_InnerRight ,76E,64,71,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.InnerRight_To_InnerLeft ,76E,72,79,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.InnerRight ,76E,80,87,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.InnerRightOrCentre_To_OuterRight ,76E,88,95,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.OuterRight_To_InnerRightOrCentre ,76E,96,103,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.OuterRight ,76E,24,31,.016,0,2,ms,222039,622039,ff,RearAttenuationTime.AttenuationTimeSensorROL ,76E,32,39,.016,0,2,ms,222039,622039,ff,RearAttenuationTime.AttenuationTimeSensorRIR ,76E,40,47,.016,0,2,ms,222039,622039,ff,RearAttenuationTime.AttenuationTimeSensorRIL ,76E,48,55,.016,0,2,ms,222039,622039,ff,RearAttenuationTime.AttenuationTimeSensorROR ,76E,24,31,.016,0,2,ms,22203A,62203A,ff,FrontAttenuationTime.Attenuation Time Sensor FOL ,76E,32,39,.016,0,2,ms,22203A,62203A,ff,FrontAttenuationTime.Attenuation Time Sensor FIL ,76E,40,47,.016,0,2,ms,22203A,62203A,ff,FrontAttenuationTime.Attenuation Time Sensor FIR ,76E,48,55,.016,0,2,ms,22203A,62203A,ff,FrontAttenuationTime.Attenuation Time Sensor FOR ,76E,24,31,1,0,0,,22203B,62203B,ff,Tracabilite_EOLT.date ,76E,32,39,1,0,0,,22203B,62203B,ff,Tracabilite_EOLT.month ,76E,40,47,1,0,0,,22203B,62203B,ff,Tracabilite_EOLT.year ,76E,48,55,1,0,0,,22203B,62203B,ff,Tracabilite_EOLT.TestResult ,76E,56,71,1,0,0,,22203B,62203B,2ff,Tracabilite_EOLT.TestEquipment ,76E,72,79,1,0,0,,22203B,62203B,ff,Tracabilite_EOLT.KindOfTest ,76E,24,55,1,0,0,,22203C,62203C,4ff,Tracabilite_ICT.Tracability ,76E,56,103,1,0,0,,22203C,62203C,2ff,Tracabilite_ICT.PCBserialNumber ,76E,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/Parking-Sonar_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE/TDB_Dtcs.csv ================================================ 940D,Paramètre CAN produit Vitesse Affichée 934C,Surveillance du controleur CAN-V 9309,Surveillance de la sortie SYS-ON 934D,Surveillance du controleur CAN-M 9408,Surv Com Témoin Ceinture 9404,Surv Témoin Défaut Airbag 940C,Surv E2prom F003,Surv Alimentation C452,ValidAirbagInformation = 0 pendant 60 s C418,Surveillance VehicleSpeed Invalide C127,Perte trames TPMS (SSPP)_Id 0x673 C134,Perte trames TCU_ Id 0x634 C131,Perte trames EPS_ Id 0x62C C133,Perte trames UBP_ Id 0x66D C132,Perte trames Clim_ Id 0x668 C159,Perte trames UPA_ Id 0x5E9 C151,Perte trames Airbag_Id 0x653 C140,Perte trames BCM_Id 0x35C C129,Perte trames Brake (ABS)_Id 0x5D7 C111,Perte trames USM_Id 0x212 C100,Perte trames SCH (EVC) _ Id 0x652 9412,sonde temperature ================================================ FILE: app/src/main/assets/ZOE/TDB_Fields.csv ================================================ ,763,0,0,1,0,0,,1081,5081,ff,Ouverture session par defaut ,763,0,0,1,0,0,,1085,5085,ff,Ouverture de session reprogrammation ,763,0,0,1,0,0,,1086,5086,ff,Start Diagnostic Session ,763,0,0,1,0,0,,10C0,50C0,ff,Ouverture de session FAB et AV ,763,0,0,1,0,0,,10FA,50FA,ff,Ouverture de session Fournisseur ,763,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.all ,763,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,763,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD,37641:Surveillance de la sortie SYS-ON;37708:Surveillance du controleur CAN-V;37709:Surveillance du controleur CAN-M;37892:Surv Témoin Défaut Airbag;37896:Surv Com Témoin Ceinture;37900:Surv E2prom;37901:Paramètre CAN produit Vitesse Affichée;49408:Perte trames SCH (EVC) _ Id 0x652;49425:Perte trames USM_Id 0x212;49447:Perte trames TPMS (SSPP)_Id 0x673;49449:Perte trames Brake (ABS)_Id 0x5D7;49457:Perte trames EPS_ Id 0x62C;49458:Perte trames Clim_ Id 0x668;49459:Perte trames UBP_ Id 0x66D;49460:Perte trames TCU_ Id 0x634;49472:Perte trames BCM_Id 0x35C;49489:Perte trames Airbag_Id 0x653;49497:Perte trames UPA_ Id 0x5E9;50258:ValidAirbagInformation = 0 pendant 60 s;61443:Surv Alimentation ,763,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,71:watchdog / safety µC failure;118:wrong mounting position;131:value of signal protection calculation incorrect;5:System Programming Failures;4:System Internal Failures;72:supervision software failure;67:special memory failure;35:signal stuck low;36:signal stuck high;41:signal signal invalid;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;100:signal plausibility failure;51:signal low time > maximum;50:signal low time < minimum;134:signal invalid;103:signal incorrect after event;53:signal high time > maximum;52:signal high time < minimum;102:signal has too many transitions / events;101:signal has too few transitions / events;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;47:signal erratic;98:signal compare failure;97:signal calculation failure;40:signal bias level out of range / 0 adjust failure;132:signal below allowable range;34:signal amplitude > maximum;33:signal amplitude < minimum;133:signal above allowable range;69:program memory failure;146:performance or incorrect operation;145:parametric;75:over temperature;81:not programmed;85:not configured;82:not activated;49:no signal;147:no operation;135:missing message;84:missing calibration;121:mechanical linkage failure;7:Mechanical Failures;123:low fluid level;129:invalid serial data received;73:internal electronic failure;58:incorrect has too many pulses;57:incorrect has too few pulses;74:incorrect component installed;148:unexpected operation;2:General signal failure;66:general memory failure;1:General Electrical Failure;65:general checksum failure;3:FM (Frequency Modulated) / PWM Failures;122:fluid leak or seal failure;104:event information;143:erratic;117:emergency position not reachable;0:Device and failure type ODB codding;83:deactivated;68:data memory failure;149:incorrect assembly;151:Component or system operation obstructed or blocke;150:component internal failure;9:Component Failures;119:commanded position not reachable;28:circuit voltage out of range;22:circuit voltage below threshold;23:circuit voltage above threshold;20:circuit short to ground or open;17:circuit short to ground;21:circuit short to battery or open;18:circuit short to battery;30:circuit resistance out of range;26:circuit resistance below threshold;27:circuit resistance above threshold;19:circuit open;31:circuit intermittent;29:circuit current out of range;24:circuit current below threshold;25:circuit current above threshold;99:circuit / component protection time-out;70:calibration / parameter memory failure;8:Bus Signal / Message Failures;136:bus off;130:alive / sequence counter incorrect / not updated;120:alignment or adjustment incorrect;6:Algorithm Based Failures;114:actuator stuck open;115:actuator stuck closed;113:actuator stuck;116:actuator slipping;152:component or system over temperature ,763,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,763,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,763,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,763,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,763,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,763,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,763,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,763,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,763,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,763,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,763,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,763,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,763,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,763,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,763,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,763,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,763,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,763,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,763,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,763,16,47,1,0,0,,2100,6100,4ff,Reponse LID utilises ,763,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,763,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,763,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,763,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,763,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,763,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,763,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,763,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A;2:285J2 ,763,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:N/A;1:25046 ,763,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A ,763,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:Magnéti Marelli ,763,16,151,1,0,0,,2181,6181,2ff,VIN Numero Identification ,763,16,31,1,0,0,,2182,6182,4ff,Version Messagerie Mux ,763,32,33,1,0,0,,2182,6182,ff,Module BusOff,0:BusOn;2:BusOff;3:Confirmé BusOff ,763,34,39,1,0,0,,2182,6182,ff,Module BusOff compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,40,41,1,0,0,,2182,6182,ff,Module BusMuet,0:Non muet;2:BusMuet;3:Confirmé BusMuet ,763,42,47,1,0,0,,2182,6182,ff,Module BusMuet compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,56,57,1,0,0,,2182,6182,ff,Producteur MUX BRAKE,0:Présent;2:Absent;3:Confirmé Absent ,763,58,63,1,0,0,,2182,6182,ff,Producteur MUX BRAKE compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,64,65,1,0,0,,2182,6182,ff,Producteur MUX Tabbeau de bord,0:Présent;2:Absent;3:Confirmé Absent ,763,66,71,1,0,0,,2182,6182,ff,Producteur MUX Tabbeau de bord compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,72,73,1,0,0,,2182,6182,ff,Producteur MUX BCM,0:Présent;2:Absent;3:Confirmé Absent ,763,74,79,1,0,0,,2182,6182,ff,Producteur MUX BCM compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,80,81,1,0,0,,2182,6182,ff,Producteur MUX Airbag,0:Présent;2:Absent;3:Confirmé Absent ,763,82,87,1,0,0,,2182,6182,ff,Producteur MUX Airbag compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,104,105,1,0,0,,2182,6182,ff,Producteur MUX Clim,0:Présent;2:Absent;3:Confirmé Absent ,763,106,111,1,0,0,,2182,6182,ff,Producteur MUX Clim compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,184,185,1,0,0,,2182,6182,ff,Producteur MUX EPS Controle trajectoire,0:Présent;2:Absent;3:Confirmé Absent ,763,186,191,1,0,0,,2182,6182,ff,Producteur MUX EPS Controle trajectoire compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,200,201,1,0,0,,2182,6182,ff,Producteur MUX USM,0:Présent;2:Absent;3:Confirmé Absent ,763,202,207,1,0,0,,2182,6182,ff,Producteur MUX USM compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,424,425,1,0,0,,2182,6182,ff,Producteur MUX EVC,0:Présent;2:Absent;3:Confirmé Absent ,763,426,431,1,0,0,,2182,6182,ff,Producteur MUX EVC compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,664,665,1,0,0,,2182,6182,ff,Producteur MUX UBP,0:Présent;2:Absent;3:Confirmé Absent ,763,666,671,1,0,0,,2182,6182,ff,Producteur MUX UBP compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,672,673,1,0,0,,2182,6182,ff,Producteur MUX TCU,0:Présent;2:Absent;3:Confirmé Absent ,763,674,679,1,0,0,,2182,6182,ff,Producteur MUX TCU compteur,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;63:Non Contrôlé ,763,16,95,1,0,0,,2184,6184,2ff,ClusterProductionNumber en ASCII ,763,96,143,1,0,0,,2184,6184,2ff,ClusterProductionDate en ASCII ,763,16,103,1,0,0,,21B3,61B3,4ff,RECVAL1 ,763,16,103,1,0,0,,21B4,61B4,4ff,RECVAL2 ,763,24,31,1,0,0,,220101,620101,ff,Config Generale_Langue,0:Francais (par défaut);16:Anglais;32:Italien;48:Allemand;64:Espagnol;80:Hollandais;96:Portugais;112:Turc;128:Polonais;145:Suedois;146:Finnois;147:Bulgare;148:Slovene;149:Grec;150:Roumain;151:Hongrois;152:Slovaque;153:Tcheque;154:Danois;155:Estonien;156:Letton;157:Lituanien;158:Croate;255:Autre ,763,24,31,1,0,0,,220102,620102,ff,Config Generale_Sieges chauffants,0:Sans Sièges Chauffants;16:Avec Sièges Chauffants ,763,24,31,1,0,0,,220104,620104,ff,Config Generale_Distance,0:Km (par défaut);16:Miles ,763,24,31,1,0,0,,220107,620107,ff,Config Generale_pression,0:BAR (par défaut);16:PSI ,763,24,31,1,0,0,,220108,620108,ff,Config Generale_RV_LV_ACC,0:Sans (par défaut);16:RV / LV présent;32:ACC / LV;48:LV seul ,763,24,31,1,0,0,,220109,620109,ff,Config Generale_Inhib SBR_av,0:Buzzer SBR avant non inhibé (par défaut);16:Buzzer SBR avant inhibe ,763,24,31,1,0,0,,22010C,62010C,ff,Config Generale_Clim,0:Sans Clim (par défaut);16:Avec Clim ,763,24,31,1,0,0,,22010D,62010D,ff,Config Generale_AAP UPA,0:Sans AAP (par défaut);16:Avec APP AV et AR;32:Avec APP AR uniquement ,763,24,31,1,0,0,,22010E,62010E,ff,Config Generale_SSPP TPMS,0:Sans SSPP (par défaut);16:Avec SSPP et sans stratégie de reset;32:Avec SSPP et avec stratégie de reset ,763,24,31,1,0,0,,22010F,62010F,ff,Config Generale_Survitesse,0:Sans survitesse (par défaut);16:Avec survitesse ,763,24,31,1,0,0,,220110,620110,ff,Config Generale_TCU,0:Sans TCU (par défaut);16:Avec TCU ,763,24,31,1,0,0,,220111,620111,ff,Config Generale_ALS,0:Sans ALS (par défaut);16:Avec ALS ,763,24,31,1,0,0,,220116,620116,ff,Config Generale_Sons clignotants personalise,0:Not tuned (default value);16:Tuned ,763,24,31,1,0,0,,220119,620119,ff,Config Generale_Essuyage automatique,0:Sans CFG MPU Ess lunette marche arr (par défaut);16:Avec CFG MPU Essuyage lunette marche arriere ,763,24,31,1,0,0,,22011C,62011C,ff,Config Generale_menu_retardateur,0:Sans Menu_Retardateur (par défaut);16:Avec Menu_Retardateur ,763,24,31,1,0,0,,220121,620121,ff,Config Generale_montre,0:sans affichage montre ( par défaut);16:montre 12 heures;32:montre 24 heures ,763,24,31,1,0,0,,220122,620122,ff,Config Generale_Affichage temp exter,0:sans affichage température ext;16:Avec affichage température extérieure (par défaut) ,763,24,55,1,0,0,,220127,620127,4ff,Config Generale_VehicleIdent default value ,763,24,31,1,0,0,,220129,620129,ff,Config Generale_NAV,0:sans NAV (par defaut);16:MFD présent ,763,24,39,1,0,0,km,220201,620201,ff,Config Entretien_Vidange init.Valeur initiale autonomie vidange distance ,763,40,55,1,0,0,Jours,220201,620201,ff,Config Entretien_Vidange init.Valeur initiale autonomie vidange temps ,763,24,39,1,0,0,km,220202,620202,ff,Config Entretien_Vidange courant. distance ,763,40,55,1,0,0,Jours,220202,620202,ff,Config Entretien_Vidange courant. Jours ,763,24,55,1,0,0,Km,220206,620206,1ff,Config Entretien_Odometre general ,763,24,31,1,0,0,,220207,620207,ff,Config Entretien_Nb de maj par diag ,763,24,31,1,0,0,,220208,620208,ff,Config Entretien_Nb de maj par ABS ,763,24,31,1,0,0,,222001,622001,ff,Entrees filaires_contact frein a main,0:Frein desserré (contact ouvert);1:Frein serré (contact fermé) ,763,24,39,1,0,0,mV,222002,622002,ff,Entrees filaires_incident frein NivoCod.Tension Nivocod ,763,40,47,1,0,0,,222002,622002,ff,Entrees filaires_incident frein NivoCod.Entree Nivocod,0:Pas de défaut;1:Défaut Nivocod;2:Entrée en CC;3:Entrée en CO ,763,24,39,.001,0,3,V,222006,622006,ff,Entrees filaires_batterie ,763,24,31,1,0,0,,222007,622007,ff,Entrees filaires_contact siege chauffant,1:0 siège chauffant actif (témoin éteint);2:1 siège chauffant activé (témoin allumé);4:2 sièges chauffants activés (témoin allumé) ,763,25,25,1,0,0,,22200B,62200B,ff,Entrees filaires_Input_boutons.Push toTalk press since reset ,763,26,26,1,0,0,,22200B,62200B,ff,Entrees filaires_Input_boutons. Bouton LVE arriere press since reset ,763,27,27,1,0,0,,22200B,62200B,ff,Entrees filaires_Input_boutons.Bouton Ambiance press since reset ,763,29,29,1,0,0,,22200B,62200B,ff,Entrees filaires_Input_boutons.Bouton Push to Talk ,763,30,30,1,0,0,,22200B,62200B,ff,Entrees filaires_Input_boutons.Bouton Input LVE arriere ,763,31,31,1,0,0,,22200B,62200B,ff,Entrees filaires_Input_boutons.Bouton Ambiance ,763,25,25,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Rep ,763,26,26,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Val ,763,27,27,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Vol plus ,763,28,28,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Vol moins ,763,29,29,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Sup ,763,30,30,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.High ,763,31,31,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Low ,763,38,38,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.left ,763,39,39,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.right ,763,41,41,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Rep since reset ,763,42,42,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Val since reset ,763,43,43,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Vol plus since reset ,763,44,44,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Vol moins since reset ,763,45,45,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Sup since reset ,763,46,46,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.High since reset ,763,47,47,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.Low since reset ,763,54,54,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.left since reset ,763,55,55,1,0,0,,2220F0,6220F0,ff,Entrees filaires_Satellite_boutons.right since reset ,763,24,24,1,0,0,,2220F1,6220F1,ff,Entrees filaires_Satellite_rotary.Molette bas since reset ,763,25,25,1,0,0,,2220F1,6220F1,ff,Entrees filaires_Satellite_rotary.Molette haut since reset ,763,26,26,1,0,0,,2220F1,6220F1,ff,Entrees filaires_Satellite_rotary.Molette A since reset ,763,27,27,1,0,0,,2220F1,6220F1,ff,Entrees filaires_Satellite_rotary.Molette B since reset ,763,28,28,1,0,0,,2220F1,6220F1,ff,Entrees filaires_Satellite_rotary.Molette C since reset ,763,32,32,1,0,0,,2220F1,6220F1,ff,Entrees filaires_Satellite_rotary.Molette bas ,763,33,33,1,0,0,,2220F1,6220F1,ff,Entrees filaires_Satellite_rotary.Molette haut ,763,34,34,1,0,0,,2220F1,6220F1,ff,Entrees filaires_Satellite_rotary.Molette A ,763,35,35,1,0,0,,2220F1,6220F1,ff,Entrees filaires_Satellite_rotary.Molette B ,763,36,36,1,0,0,,2220F1,6220F1,ff,Entrees filaires_Satellite_rotary.Molette C ,763,26,26,1,0,0,,2220F2,6220F2,ff,Entrees filaires_Wake up Signals.system ON Request ,763,28,28,1,0,0,,2220F2,6220F2,ff,Entrees filaires_Wake up Signals.Wake up ,763,31,31,1,0,0,,2220F3,6220F3,ff,Entrees filaires_Output Lines.System On,1:System ON (ON command from MM= 1 if active) ,763,24,55,.1,0,1,m,222101,622101,1ff,Infos Calcul_Distance parcourue ADAC ,763,24,47,1,0,0,s,222104,622104,ff,Infos Calcul_Temps ADAC ,763,24,31,1,40,0,°C,222202,622202,ff,Mesures CTN_afficheur.Temperature Dalle ,763,24,31,1,40,0,°C,222204,622204,ff,Mesures Temperature Exterieure.Temperature Exterieure ,763,24,31,1,0,0,,222403,622403,ff,Status Systeme_status EEPROM,0:Non défini;1:EEPROM Status OK;2:EEPROM Error ,763,24,31,1,0,0,,222405,622405,ff,Status Systeme_number resets by failures ,763,24,31,1,0,0,,222406,622406,ff,Status Systeme_number intended resets ,763,28,28,1,0,0,,222407,622407,ff,Status Systeme_erreur configuration.Erreur Configuration CLIM,0:Pas d'erreur config CLIM;1:Erreur config CLIM ,763,29,29,1,0,0,,222407,622407,ff,Status Systeme_erreur configuration.Erreur Configuration TCU,0:Pas d'erreur config TCU;1:Erreur config TCU ,763,30,30,1,0,0,,222407,622407,ff,Status Systeme_erreur configuration.Erreur Configuration UPA,0:Pas d'erreur config UPA;1:Erreur config UPA ,763,35,35,1,0,0,,222407,622407,ff,Status Systeme_erreur configuration.Erreur Configuration tableau jamais configure,0:Pas d'erreur - tdb configuré OK;1:Erreur - Tdb jamais configuré ,763,38,38,1,0,0,,222407,622407,ff,Status Systeme_erreur configuration.Erreur Configuration SSPP,0:Pas d'erreur config SSPP;1:Erreur config SSPP ,763,24,39,1,0,0,,222501,622501,4ff,Causes allumage temoins Service Present.SERVICE Present Alerte 1 ,763,40,55,1,0,0,,222501,622501,4ff,Causes allumage temoins Service Present.SERVICE Present Alerte 2 ,763,24,39,1,0,0,,222502,622502,4ff,Causes allumage temoins Service Memorise.SERVICE Memorise Alerte 1 ,763,40,55,1,0,0,,222502,622502,4ff,Causes allumage temoins Service Memorise.SERVICE Memorise Alerte 2 ,763,24,39,1,0,0,,222503,622503,4ff,Causes allumage temoins Stop.STOP Present Alerte 1 ,763,40,55,1,0,0,,222503,622503,4ff,Causes allumage temoins Stop.STOP Present Alerte 2 ,763,24,39,1,0,0,,222504,622504,4ff,Causes allumage temoin Stop Memorise.STOP Memorise Alerte 1 ,763,40,55,1,0,0,,222504,622504,4ff,Causes allumage temoin Stop Memorise.STOP Memorise Alerte 2 ,763,24,39,1,0,0,,222505,622505,4ff,Causes allumage temoins Ref.REF Present Alerte 1 ,763,40,55,1,0,0,,222505,622505,4ff,Causes allumage temoins Ref.REF Present Alerte 2 ,763,24,39,1,0,0,,222506,622506,4ff,Causes allumage temoin Ref Memorise.REF Memorise Alerte 1 ,763,40,55,1,0,0,,222506,622506,4ff,Causes allumage temoin Ref Memorise.REF Memorise Alerte 2 ,763,24,39,1,0,0,km,222601,622601,ff,DataRead Info Entretien Km apres alerte ,763,24,39,1,0,0,Jours,222602,622602,ff,DataRead Info Entretien Jours apres alerte ,763,24,39,1,0,0,km,222603,622603,ff,DataRead Info Entretien valeur affichee ,763,24,47,1,0,0,Km,222604,622604,ff,DataRead Odo TdB avant recalage ABS par TdB ,763,24,47,1,0,0,Km,222605,622605,ff,DataRead Odo TdB avant recalage TdB par ABS ,763,24,103,1,0,0,,22F187,62F187,2ff,Reference piece VehicleManufacturer SparePartNumber ,763,24,103,1,0,0,,22F18E,62F18E,2ff,Reference piece VehicleManufacturer KitAssemblyPartNumber ,763,24,103,1,0,0,,22F196,62F196,2ff,Numero homologation reference ,763,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/TDB_Tests.csv ================================================ 47,watchdog / safety µC failure 76,wrong mounting position 83,value of signal protection calculation incorrect 05,System Programming Failures 04,System Internal Failures 48,supervision software failure 43,special memory failure 23,signal stuck low 24,signal stuck high 29,signal signal invalid 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 64,signal plausibility failure 33,signal low time > maximum 32,signal low time < minimum 86,signal invalid 67,signal incorrect after event 35,signal high time > maximum 34,signal high time < minimum 66,signal has too many transitions / events 65,signal has too few transitions / events 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 2F,signal erratic 62,signal compare failure 61,signal calculation failure 28,signal bias level out of range / 0 adjust failure 84,signal below allowable range 22,signal amplitude > maximum 21,signal amplitude < minimum 85,signal above allowable range 45,program memory failure 92,performance or incorrect operation 91,parametric 4B,over temperature 51,not programmed 55,not configured 52,not activated 31,no signal 93,no operation 87,missing message 54,missing calibration 79,mechanical linkage failure 07,Mechanical Failures 7B,low fluid level 81,invalid serial data received 49,internal electronic failure 3A,incorrect has too many pulses 39,incorrect has too few pulses 4A,incorrect component installed 94,unexpected operation 02,General signal failure 42,general memory failure 01,General Electrical Failure 41,general checksum failure 03,FM (Frequency Modulated) / PWM Failures 7A,fluid leak or seal failure 68,event information 8F,erratic 75,emergency position not reachable 00,Device and failure type ODB codding 53,deactivated 44,data memory failure 95,incorrect assembly 97,Component or system operation obstructed or blocke 96,component internal failure 09,Component Failures 77,commanded position not reachable 1C,circuit voltage out of range 16,circuit voltage below threshold 17,circuit voltage above threshold 14,circuit short to ground or open 11,circuit short to ground 15,circuit short to battery or open 12,circuit short to battery 1E,circuit resistance out of range 1A,circuit resistance below threshold 1B,circuit resistance above threshold 13,circuit open 1F,circuit intermittent 1D,circuit current out of range 18,circuit current below threshold 19,circuit current above threshold 63,circuit / component protection time-out 46,calibration / parameter memory failure 08,Bus Signal / Message Failures 88,bus off 82,alive / sequence counter incorrect / not updated 78,alignment or adjustment incorrect 06,Algorithm Based Failures 72,actuator stuck open 73,actuator stuck closed 71,actuator stuck 74,actuator slipping 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE/UBP_Dtcs.csv ================================================ C140,Lost Communication with BCM C422,Invalid Data Received From BCM F003,Supply voltage 4051,Steering wheel angle sensor 5154,Invalid wheel circumference parameter 5177,Important function deactivated C001,Vehicle CAN - no transmission C073,Vehicle CAN - Busoff C131,Lost Communication with EPS C420,Invalid Data Received From EPS C416,Invalid Data Received From ESC C122,Lost Communication with ESC 5084,UBP EV inlet 1 switched BIVs 5085,UBP EV inlet 2 controlled BIVc1 5086,UBP EV inlet 3 controlled BIVc2 5087,UBP EV outlet 1 switched BOVs 5088,UBP EV outlet 2 controlled BOVc1 5089,UBP EV outlet 3 controlled BOVc2 508A,UBP Pressure sensor Sense piston PsSP 508B,UBP Pressure sensor Master Cylinder PsBP 508C,UBP Pressure sensor Accumulator PsAcc 508D,UBP Pump motor control 5050,UBP Internal failure 5081,UBP EV Simulation1 SSV1 5082,UBP EV Simulation2 SSV2 5083,UBP EV by-pass BSV 5151,Invalid UBP calibration parameter 5182,EVC signal plausibility C100,Lost Communication with EVC C401,Invalid Data Received From EVC 5181,ESC signal plausibility 4042,UBP Brake pedal position sensor 508E,UBP EV offset learning calibration parameter ================================================ FILE: app/src/main/assets/ZOE/UBP_Fields.csv ================================================ ,7BC,0,0,1,0,0,,1000,5000,ff,Start Diagnostic Session ,7BC,8,15,1,0,0,,1081,5081,ff,StartDiagnosticSession.ResponseType,129:Yes ,7BC,0,0,1,0,0,,1085,5085,ff,Start Programming Session ,7BC,0,0,1,0,0,,10C0,50C0,ff,Start Extended Session ,7BC,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7BC,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,7BC,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD,49408:EVC - Time out;49442:ESC - Time out;49457:EPS - Time out;49472:BCM - Time out;50177:EVC - Invalid data;50197:ESC - Invalid data;50208:EPS - Invalid data;50210:BCM - Invalid data ,7BC,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Freq Mod) / PWM (Pulse Width Mod) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or operation obstructed or blocked;152:component or system over temperature ,7BC,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,7BC,48,55,1,0,0,,1902FF,5902FF,ff,StatusOfDTC ,7BC,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,7BC,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7BC,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7BC,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7BC,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,7BC,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,7BC,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,7BC,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7BC,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,7BC,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,7BC,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,7BC,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,7BC,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,7BC,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,7BC,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,7BC,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,7BC,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,7BC,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,7BC,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,7BC,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,7BC,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,7BC,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,7BC,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,7BC,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,7BC,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A;1:47210;2:47208 ,7BC,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:HARDW;1:47213 ,7BC,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A ,7BC,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode ,7BC,16,151,1,0,0,,2181,6181,2ff,Vehicle identification number ,7BC,152,167,1,0,0,,2181,6181,4ff,Vehicle identification number CRC ,7BC,16,23,1,0,0,,2184,6184,4ff,ECU traceability.calendarweek ,7BC,24,31,1,0,0,,2184,6184,4ff,ECU traceability.year ,7BC,32,34,1,0,0,,2184,6184,ff,ECU traceability.plant,0:Blaichach;3:Moulins ,7BC,35,37,1,0,0,,2184,6184,ff,ECU traceability.line,0:Line n°1;1:Line n°2;2:Line n°3;3:Line n°4;4:Line n°5;5:Line n°6;6:Line n°7;7:Line n°8 ,7BC,38,39,1,0,0,,2184,6184,ff,ECU traceability.shift,0:Shift n°1;1:Shift n°2;2:Shift n°3;3:Shift n°4 ,7BC,40,42,1,0,0,,2184,6184,ff,ECU traceability.day,0:forbidden - interdit;1:monday - lundi;2:tuesday - mardi;3:wednesday - mercredi;4:thursday - jeudi;5:friday - vendredi;6:saturday - samedi;7:sunday - dimanche ,7BC,43,55,1,0,0,,2184,6184,ff,ECU traceability.counter ,7BC,16,55,1,0,0,,21F0,61F0,2ff,PartNumber.LowerPart ,7BC,56,63,1,0,0,,21F0,61F0,4ff,DiagnosticIdentificationCode ,7BC,64,87,1,0,0,,21F0,61F0,2ff,SupplierNumber.ITG ,7BC,88,127,1,0,0,,21F0,61F0,2ff,HardwareNumber.LowerPart ,7BC,128,143,1,0,0,,21F0,61F0,4ff,SoftwareNumber ,7BC,144,159,1,0,0,,21F0,61F0,4ff,EditionNumber ,7BC,160,175,1,0,0,,21F0,61F0,4ff,CalibrationNumber ,7BC,176,183,1,0,0,,21F0,61F0,ff,PartNumber.BasicPartList,0:N/A;1:47210;2:47208 ,7BC,184,191,1,0,0,,21F0,61F0,ff,HardwareNumber.BasicPartList,0:HARDW;1:47213 ,7BC,192,199,1,0,0,,21F0,61F0,ff,ApprovalNumber.BasicPartList,0:N/A ,7BC,200,207,1,0,0,,21F0,61F0,ff,ManufacturerIdentificationCode ,7BC,16,55,1,0,0,,21F1,61F1,2ff,ApprovalNumber.LowerPart ,7BC,56,95,1,0,0,,21F1,61F1,2ff,Programming site reference ,7BC,96,135,1,0,0,,21F1,61F1,2ff,Programming tool reference ,7BC,136,143,1,0,0,,21F1,61F1,ff,Number of reprogrammings ,7BC,144,167,1,0,0,,21F1,61F1,4ff,Date of reprogramming ,7BC,168,183,1,0,0,,21F1,61F1,4ff,Time of reprogramming ,7BC,184,191,1,0,0,,21F1,61F1,ff,Record marking ,7BC,192,207,1,0,0,,21F1,61F1,4ff,CRC of log record ,7BC,16,55,1,0,0,,21FE,61FE,2ff,PartNumber.LowerPart ,7BC,56,63,1,0,0,,21FE,61FE,4ff,DiagnosticIdentificationCode ,7BC,64,87,1,0,0,,21FE,61FE,2ff,SupplierNumber.ITG ,7BC,88,127,1,0,0,,21FE,61FE,2ff,HardwareNumber.LowerPart ,7BC,128,143,1,0,0,,21FE,61FE,4ff,SoftwareNumber ,7BC,144,159,1,0,0,,21FE,61FE,4ff,EditionNumber ,7BC,160,175,1,0,0,,21FE,61FE,4ff,CalibrationNumber ,7BC,176,183,1,0,0,,21FE,61FE,ff,PartNumber.BasicPartList,0:N/A;1:47210;2:47208 ,7BC,184,191,1,0,0,,21FE,61FE,ff,HardwareNumber.BasicPartList,0:HARDW;1:47213 ,7BC,192,199,1,0,0,,21FE,61FE,ff,ApprovalNumber.BasicPartList,0:N/A ,7BC,200,207,1,0,0,,21FE,61FE,ff,ManufacturerIdentificationCode ,7BC,16,55,1,0,0,,21FF,61FF,2ff,ApprovalNumber.LowerPart ,7BC,56,95,1,0,0,,21FF,61FF,2ff,Programming site reference ,7BC,96,135,1,0,0,,21FF,61FF,2ff,Programming tool reference ,7BC,136,143,1,0,0,,21FF,61FF,ff,Number of reprogrammings ,7BC,144,167,1,0,0,,21FF,61FF,4ff,Date of reprogramming ,7BC,168,183,1,0,0,,21FF,61FF,4ff,Time of reprogramming ,7BC,184,191,1,0,0,,21FF,61FF,ff,Record marking ,7BC,192,207,1,0,0,,21FF,61FF,4ff,CRC of log record ,7BC,24,39,.1,32767,1,°,220100,620100,ff,Steering wheel angle ,7BC,24,31,.1,0,1,V,22012F,62012F,ff,Supply voltage ,7BC,24,39,.01,0,2,km/h,224B00,624B00,ff,WheelSpeed FL ,7BC,24,39,.01,0,2,km/h,224B01,624B01,ff,WheelSpeed FR ,7BC,24,39,.01,0,2,km/h,224B02,624B02,ff,WheelSpeed RL ,7BC,24,39,.01,0,2,km/h,224B03,624B03,ff,WheelSpeed RR ,7BC,24,39,.01,0,2,km/h,224B04,624B04,ff,Vehicle speed ,7BC,24,27,1,0,0,,224B09,624B09,ff,Odometer of the first occurence.Reserved,0:reserved ,7BC,28,55,10,0,0,m,224B09,624B09,ff,Odometer of the first occurence.Odometer ,7BC,24,31,1,0,0,,224B18,624B18,4ff,After sales date.Day ,7BC,32,39,1,0,0,,224B18,624B18,4ff,After sales date.Month ,7BC,40,47,1,0,0,,224B18,624B18,4ff,After sales date.Year ,7BC,24,31,1,0,0,,224B1A,624B1A,ff,Vehicle status ,7BC,24,39,1,0,0,mm,224B24,624B24,ff,Tires real circumference ,7BC,24,31,10,-1,0,s,224B25,624B25,ff,Powerlatch duration ,7BC,24,31,.2,127,1,°,224B36,624B36,ff,Steering wheel angle offset ,7BC,24,39,1,0,0,,224B3D,624B3D,4ff,Supplier fault code ,7BC,24,39,.1,32767,1,°/s,224B42,624B42,ff,Steering wheel speed ,7BC,24,39,1,0,0,,224B44,624B44,ff,List of supplier internal faults ,7BC,24,31,1,0,0,,224B70,624B70,ff,Filling status,0:To be Defined ,7BC,24,31,1,0,0,bar,224B71,624B71,ff,Sense piston pressure ,7BC,24,31,.2,127,1,bar,224B72,624B72,ff,Sense piston pressure offset ,7BC,24,31,1,0,0,bar,224B73,624B73,ff,Master cylinder pressure ,7BC,24,31,.2,127,1,Bar,224B74,624B74,ff,Master cylinder pressure offset ,7BC,24,31,1,0,0,bar,224B75,624B75,ff,Accumulator pressure ,7BC,24,31,.2,127,1,bar,224B76,624B76,ff,Accumulator pressure offset ,7BC,24,31,1,0,0,mm,224B77,624B77,ff,Brake pedal position 1 ,7BC,24,31,.2,77,1,mm,224B78,624B78,ff,Brake pedal position 1 offset ,7BC,24,31,1,0,0,mm,224B79,624B79,ff,Brake pedal position 2 ,7BC,24,31,.2,77,1,mm,224B7A,624B7A,ff,Brake pedal position 2 offset ,7BC,28,39,1,4094,0,N·m,224B7B,624B7B,ff,Electric brake wheels torque applied ,7BC,28,39,1,4094,0,N·m,224B7C,624B7C,ff,Electric brake wheels torque request ,7BC,28,39,1,4094,0,N·m,224B7D,624B7D,ff,Total Hydraulic brake wheels torque request ,7BC,28,39,1,4094,0,N·m,224B7E,624B7E,ff,Driver brake wheels torque request ,7BC,24,31,1,0,0,,224B7F,624B7F,ff,HBA function inhibition state,0:Activated by diag;170:Deactivated by diag;255:Not implemented ,7BC,24,31,1,0,0,,224B80,624B80,ff,HBB function inhibition state,0:Activated by diag;170:Deactivated by diag;255:Not implemented ,7BC,24,31,1,0,0,,224B81,624B81,ff,EB function inhibition state,0:Activated by diag;170:Deactivated by diag;255:Not implemented ,7BC,24,727,1,0,0,,224B82,624B82,4ff,Advanced diagnostic datas memorized buffer1 ,7BC,24,727,1,0,0,,224B83,624B83,4ff,Advanced diagnostic datas memorized buffer2 ,7BC,24,31,1,0,0,,224B84,624B84,ff,PUMP function inhibition state,0:Activated by diag;170:Deactivated by diag;255:Not implemented ,7BC,24,31,1,0,0,,224B85,624B85,ff,Mode roller bench function activation state,0:Deactivated by diag;170:Activated by diag ,7BC,24,31,1,0,0,,224B86,624B86,ff,Advanced diagnosis function activation state,0:Deactivated by diag;170:Activated by diag ,7BC,24,727,1,0,0,,224B87,624B87,4ff,Advanced diagnostic datas memorized buffer3 ,7BC,24,727,1,0,0,,224B88,624B88,4ff,Advanced diagnostic datas memorized buffer4 ,7BC,24,727,1,0,0,,224B89,624B89,4ff,Advanced diagnostic datas memorized buffer5 ,7BC,24,39,.01,0,2,km/h,224B8A,624B8A,ff,Vehicle speed Delayed ,7BC,24,727,1,0,0,,224B8B,624B8B,4ff,Advanced diagnostic datas memorized buffer6 ,7BC,24,727,1,0,0,,224B8C,624B8C,4ff,Advanced diagnostic datas memorized buffer7 ,7BC,24,727,1,0,0,,224B8D,624B8D,4ff,Advanced diagnostic datas memorized buffer8 ,7BC,24,727,1,0,0,,224B8E,624B8E,4ff,Advanced diagnostic datas memorized buffer9 ,7BC,24,727,1,0,0,,224B8F,624B8F,4ff,Advanced diagnostic datas memorized buffer10 ,7BC,24,24,1,0,0,,224B90,624B90,ff,UBP Function status.HBB function.failure status,0:not operational;1:operational ,7BC,25,25,1,0,0,,224B90,624B90,ff,UBP Function status.HBB function.activation status,0:not active;1:active ,7BC,26,26,1,0,0,,224B90,624B90,ff,UBP Function status.EB function.failure status,0:not operational;1:operational ,7BC,27,27,1,0,0,,224B90,624B90,ff,UBP Function status.EB function.activation status,0:not active;1:active ,7BC,28,28,1,0,0,,224B90,624B90,ff,UBP Function status.PUMP function.failure status,0:not operational;1:operational ,7BC,29,29,1,0,0,,224B90,624B90,ff,UBP Function status.PUMP function.activation status,0:not active;1:active ,7BC,30,30,1,0,0,,224B90,624B90,ff,UBP Function status.Mode roller bench function.activation status,0:not active;1:active ,7BC,31,31,1,0,0,,224B90,624B90,ff,UBP Function status.Advanced diagnosis function.activation status,0:not active;1:active ,7BC,32,32,1,0,0,,224B90,624B90,ff,UBP Function status.HBA function.failure status,0:not operational;1:operational ,7BC,33,33,1,0,0,,224B90,624B90,ff,UBP Function status.HBA function.activation status,0:not active;1:active ,7BC,34,39,1,0,0,,224B90,624B90,ff,UBP Function status.reserved,0:reserved ,7BC,24,47,1,0,0,W/h,224B91,624B91,ff,Gain Elec kWh per km on brake pedal pressed.ElecCurrent ,7BC,48,63,1,0,0,km,224B91,624B91,ff,Gain Elec kWh per km on brake pedal pressed.OdometerCounter ,7BC,64,87,1,0,0,W/h,224B91,624B91,ff,Gain Elec kWh per km on brake pedal pressed.ElecN ,7BC,88,111,1,0,0,km,224B91,624B91,ff,Gain Elec kWh per km on brake pedal pressed.OdometerN ,7BC,112,135,1,0,0,W/h,224B91,624B91,ff,Gain Elec kWh per km on brake pedal pressed.ElecN1 ,7BC,136,159,1,0,0,km,224B91,624B91,ff,Gain Elec kWh per km on brake pedal pressed.OdometerN1 ,7BC,160,183,1,0,0,W/h,224B91,624B91,ff,Gain Elec kWh per km on brake pedal pressed.ElecN2 ,7BC,184,207,1,0,0,km,224B91,624B91,ff,Gain Elec kWh per km on brake pedal pressed.OdometerN2 ,7BC,24,47,1,0,0,W/h,224B92,624B92,ff,Gain Elec kWh per km on gaz pedal released.ElecCurrent ,7BC,48,63,1,0,0,km,224B92,624B92,ff,Gain Elec kWh per km on gaz pedal released.OdometerCounter ,7BC,64,87,1,0,0,W/h,224B92,624B92,ff,Gain Elec kWh per km on gaz pedal released.ElecN ,7BC,88,111,1,0,0,km,224B92,624B92,ff,Gain Elec kWh per km on gaz pedal released.OdometerN ,7BC,112,135,1,0,0,W/h,224B92,624B92,ff,Gain Elec kWh per km on gaz pedal released.ElecN1 ,7BC,136,159,1,0,0,km,224B92,624B92,ff,Gain Elec kWh per km on gaz pedal released.OdometerN1 ,7BC,160,183,1,0,0,W/h,224B92,624B92,ff,Gain Elec kWh per km on gaz pedal released.ElecN2 ,7BC,184,207,1,0,0,km,224B92,624B92,ff,Gain Elec kWh per km on gaz pedal released.OdometerN2 ,7BC,24,39,1,0,0,min,224B93,624B93,ff,Running Pump Cumulated ,7BC,24,31,1,0,0,bar,224B95,624B95,ff,Sense piston pressure Delayed ,7BC,24,31,4.57142857142857,0,0,bar,224B96,624B96,ff,Master cylinder pressure Delayed ,7BC,24,31,1,0,0,bar,224B97,624B97,ff,Accumulator pressure Delayed ,7BC,24,31,1,0,0,mm,224B98,624B98,ff,Brake pedal position 1 Delayed ,7BC,24,31,1,0,0,mm,224B99,624B99,ff,Brake pedal position 2 Delayed ,7BC,24,31,10,-1,0,s,224B9A,624B9A,ff,Brake Powerlatch duration ,7BC,24,27,1,0,0,,224B9B,624B9B,ff,Vehicle odometer.Reserved,0:reserved ,7BC,28,55,10,0,0,m,224B9B,624B9B,ff,Vehicle odometer.Odometer ,7BC,28,39,1,4094,0,N·m,224B9C,624B9C,ff,Electric brake wheels torque applied Delayed ,7BC,28,39,1,4094,0,N·m,224B9D,624B9D,ff,Electric brake wheels torque request Delayed ,7BC,28,39,1,4094,0,N·m,224B9E,624B9E,ff,Total Hydraulic brake wheels torque request Delayed ,7BC,28,39,1,4094,0,N·m,224B9F,624B9F,ff,Driver brake wheels torque request Delayed ,7BC,24,103,1,0,0,,22F18E,62F18E,2ff,Vehicle manufacturer spare part number ,7BC,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/UBP_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Freq Mod) / PWM (Pulse Width Mod) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE/UCH_Dtcs.csv ================================================ 9553,APC/ line 9562,AUTO_START_CLUTCH_PEDAL 95E3,Card Identifier Button1 95E5,Card Identifier Button2 95E7,Card Identifier Button3 95E9,Card Identifier Button4 95F0,Card Reader Com 95F1,Card ReaderAlim 95F4,Card ReaderSwitch 95B0,CHILDLOCK 9590,COMBI_SWITCH 953E,Default antenna Ext Left 953F,Default antenna Ext Right 9540,Default antenna Ext TR 953B,Default antenna int1 953C,Default antenna int2 953D,Default antenna int3 9533,DONGLE 957B,DTC_ACC1 957C,DTC_ACC2 957E,DTC_APC 957D,DTC_APC2 957A,DTC_BatTempRelay 9581,DTC_Defroster 9582,DTC_EepromFailure 9512,DTC_ElectronicIRXFailed 9579,DTC_FogLamp 9578,DTC_Glasshatch 9511,DTC_IRXComFailed 95D1,DTC_LeftFlashBulbOutage 95D7,DTC_LeftFlashOverload 9510,DTC_LVE 9574,DTC_PowerDoorlock 958A,DTC_PowerECU 9572,DTC_PowerFlasher 9573,DTC_PowerStopLamp 9571,DTC_PowerWiper 957F,DTC_PTC1 9580,DTC_PTC2 956D,DTC_PTC3 956E,DTC_PTC4 956F,DTC_PTC5 9586,DTC_RegistersFailure 95C3,DTC_Rheostat 95D0,DTC_RightFlashBulbOutage 95D6,DTC_RightFlashOverload 9585,DTC_RomFailure 9583,DTC_RoomL1 9584,DTC_RoomL2 9587,DTC_RoomL3 9588,DTC_RoomL4 9589,DTC_RoomL5 955B,DTC_SAFETY_LINE_SSD 9591,DTC_SteeringWheelHorn 9570,DTC_StopLamp 9577,DTC_Tailgate 9561,END_CLUTCH_PEDAL 9556,ESCL BCM Relay 9552,ESCL function 9551,ESCL module 9554,ESCL sensor line 9550,ESCL supply lines 95D3,LIGHT SENSOR 95D2,LINNETWORK 95D8,LINNETWORK2 9522,MASTER_MOTOR_FAILURE 9521,MOTOR_COMM_FAILURE 9567,ParkingBrakeStatus 9520,RAIN_SENSOR 95A0,REAR_WIPER_AUTOSTOP 95C1,SAFETY LINE BDU 9523,SLAVE_MOTOR_FAILURE 95D4,SOLAR SENSOR1 95D5,SOLAR SENSOR2 9560,START_CLUTCH_PEDAL 9563,STOP_PEDAL_DFT_11 9564,STOP_PEDAL_DFT_12 9565,STOP_PEDAL_DFT_21 9566,STOP_PEDAL_DFT_22 5A80,TPMS Function 5A82,TPMS VALVE1 5A83,TPMS VALVE2 5A84,TPMS VALVE3 5A85,TPMS VALVE4 9531,VSC BCM APV 9542,VSC BCM Atic64_Géneral_default 9532,VSC BCM Optical Sensor 9536,VSC BCM Optical Sensor ASS 9535,VSC BCM Optical Sensor DR 9538,VSC BCM Optical Sensor R_ASS 9537,VSC BCM Optical Sensor R_DR 9530,VSC BCM RF 5A60,TPMS_UNDER_INFLATED 5A72,TPMS_WHEEL_AVG 5A73,TPMS_WHEEL_AVD 5A74,TPMS_WHEEL_ARD 5A75,TPMS_WHEEL_ARG 9557,Bad ESCL Configuration ================================================ FILE: app/src/main/assets/ZOE/UCH_Fields.csv ================================================ ,765,0,0,1,0,0,,1081,5081,ff,Default Diagnostic Session ,765,0,0,1,0,0,,10C0,50C0,ff,Start Diagnostic Session ,765,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,765,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,765,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,38227:APC/ line;38231:Bad ESCL Configuration;38242:AUTO_START_CLUTCH_PEDAL;38371:Card Identifier Button1;38373:Card Identifier Button2;38375:Card Identifier Button3;38377:Card Identifier Button4;38384:Card Reader Com;38385:Card ReaderAlim;38320:CHILDLOCK;38288:COMBI_SWITCH;38206:Default antenna Ext Left;38207:Default antenna Ext Right;38208:Default antenna Ext TR;38203:Default antenna int1;38204:Default antenna int2;38205:Default antenna int3;38195:DONGLE;38267:DTC_ACC1;38268:DTC_ACC2;38270:DTC_APC;38269:DTC_APC2;38266:DTC_BatTempRelay;38273:DTC_Defroster;38274:DTC_EepromFailure;38162:DTC_ElectronicIRXFailed;38265:DTC_FogLamp;38264:DTC_Glasshatch;38161:DTC_IRXComFailed;38353:DTC_LeftFlashBulbOutage;38359:DTC_LeftFlashOverload;38160:DTC_LVE;38260:DTC_PowerDoorlock;38282:DTC_PowerECU;38258:DTC_PowerFlasher;38259:DTC_PowerStopLamp;38257:DTC_PowerWiper;38271:DTC_PTC1;38272:DTC_PTC2;38253:DTC_PTC3;38254:DTC_PTC4;38255:DTC_PTC5;38278:DTC_RegistersFailure;38339:DTC_Rheostat;38352:DTC_RightFlashBulbOutage;38358:DTC_RightFlashOverload;38277:DTC_RomFailure;38275:DTC_RoomL1;38276:DTC_RoomL2;38279:DTC_RoomL3;38280:DTC_RoomL4;38281:DTC_RoomL5;38235:DTC_SAFETY_LINE_SSD;38289:DTC_SteeringWheelHorn;38256:DTC_StopLamp;38263:DTC_Tailgate;38241:END_CLUTCH_PEDAL;38230:ESCL BCM Relay;38226:ESCL function;38225:ESCL module;38228:ESCL sensor line;38224:ESCL supply lines;38355:LIGHT SENSOR;38354:LINNETWORK;38360:LINNETWORK2;38178:MASTER_MOTOR_FAILURE;38177:MOTOR_COMM_FAILURE;38247:ParkingBrakeStatus;38176:RAIN_SENSOR;38304:REAR_WIPER_AUTOSTOP;38337:SAFETY LINE BDU;38179:SLAVE_MOTOR_FAILURE;38356:SOLAR SENSOR1;38357:SOLAR SENSOR2;38240:START_CLUTCH_PEDAL;38243:STOP_PEDAL_DFT_11;38244:STOP_PEDAL_DFT_12;38245:STOP_PEDAL_DFT_21;38246:STOP_PEDAL_DFT_22;23168:TPMS Function;23170:TPMS VALVE1;23171:TPMS VALVE2;23172:TPMS VALVE3;23173:TPMS VALVE4;23136:TPMS_UNDER_INFLATED;23156:TPMS_WHEEL_ARD;23157:TPMS_WHEEL_ARG;23155:TPMS_WHEEL_AVD;23154:TPMS_WHEEL_AVG;38193:VSC BCM APV;38210:VSC BCM Atic64_Géneral_default;38194:VSC BCM Optical Sensor;38198:VSC BCM Optical Sensor ASS;38197:VSC BCM Optical Sensor DR;38200:VSC BCM Optical Sensor R_ASS;38199:VSC BCM Optical Sensor R_DR;38192:VSC BCM RF;38388:Card ReaderSwitch ,765,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog / safety µC failure;70:calibration / parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive / sequence counter incorrect / not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions / events;15:Vehicle manufacturer / System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal / Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding/ General Failure Information;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time > maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time < minimum;51:signal low time > maximum;50:signal low time < minimum;49:no signal;37:signal shape / waveform failure;33:signal amplitude < minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude > maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid ,765,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,765,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,765,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,765,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,765,40,40,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,765,41,41,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,42,42,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,43,43,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,44,44,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,45,45,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,46,46,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,47,47,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailed,0:No;1:Yes ,765,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,765,40,40,1,0,0,,190600000080,590600000080,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,765,41,41,1,0,0,,190600000080,590600000080,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,42,42,1,0,0,,190600000080,590600000080,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,43,43,1,0,0,,190600000080,590600000080,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,44,44,1,0,0,,190600000080,590600000080,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,45,45,1,0,0,,190600000080,590600000080,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,46,46,1,0,0,,190600000080,590600000080,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,47,47,1,0,0,,190600000080,590600000080,ff,DTCStatus.testFailed,0:No;1:Yes ,765,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,765,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,765,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,765,40,40,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,765,41,41,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,42,42,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,43,43,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,44,44,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,45,45,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,46,46,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,47,47,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testFailed,0:No;1:Yes ,765,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,765,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,765,16,23,1,0,0,,2101,6101,ff,LIN1 Master Malfunction -,207:Défaut présent confirmé;15:Pas de problème;79:Défaut confirmé mémorisé;255:Pas d'esclave monté (lié à la configuration) ,765,24,31,1,0,0,,2101,6101,ff,LIN1 Slave1 Malfunction (Rain & light sensor) -,207:Défaut présent confirmé;15:Pas de problème;79:Défaut confirmé mémorisé;255:Pas d'esclave monté (lié à la configuration) ,765,32,39,1,0,0,,2101,6101,ff,LIN1 Slave2 Malfunction (Dual Motors) -,207:Défaut présent confirmé;15:Pas de problème;79:Défaut confirmé mémorisé;255:Pas d'esclave monté (lié à la configuration) ,765,16,23,1,0,0,,2102,6102,ff,LIN2 Master Malfunction -,207:Défaut présent confirmé;15:Pas de problème;79:Défaut confirmé mémorisé;255:Pas d'esclave monté (lié à la configuration) ,765,24,31,1,0,0,,2102,6102,ff,LIN2 Slave1 Malfunction (Passenger Window Lift) -,207:Défaut présent confirmé;15:Pas de problème;79:Défaut confirmé mémorisé;255:Pas d'esclave monté (lié à la configuration) ,765,32,39,1,0,0,,2102,6102,ff,LIN2 Slave2 Malfunction (Rear Left Window Lift) -,207:Défaut présent confirmé;15:Pas de problème;79:Défaut confirmé mémorisé;255:Pas d'esclave monté (lié à la configuration) ,765,40,47,1,0,0,,2102,6102,ff,LIN2 Slave3 Malfunction (Rear Right Window Lift) -,207:Défaut présent confirmé;15:Pas de problème;79:Défaut confirmé mémorisé;255:Pas d'esclave monté (lié à la configuration) ,765,16,31,1,0,0,bytes,2106,6106,ff,STACK_LOAD ,765,16,16,1,0,0,,2107,6107,ff,FRONT_WIPER_CF,0:without;1:with ,765,17,17,1,0,0,,2107,6107,ff,AUTO_WIPE_CF,0:without;1:with ,765,18,18,1,0,0,,2107,6107,ff,FRONT_DROP_WIPE_CF,0:without;1:with ,765,19,19,1,0,0,,2107,6107,ff,SWITCH_HI2LO_LO2INT_CF,0:without;1:with ,765,20,20,1,0,0,,2107,6107,ff,HEADLAMP_WASHER_CF,0:without;1:with ,765,21,21,1,0,0,,2107,6107,ff,DUAL_WIPING_MOTOR_CF,0:without;1:with ,765,24,31,100,0,0,ms,2107,6107,ff,SENSOR_FAILURE_FILTER_TM_TP ,765,32,39,100,0,0,ms,2107,6107,ff,GO_TO_SERVICE_POSITION_TM_TP ,765,44,47,1,0,0,sec,2107,6107,ff,FIXED_INT_TM_TP ,765,48,48,100,0,0,ms,2107,6107,ff,PAST_TIME_UPDATE_TM_TP ,765,49,51,1,0,0,time,2107,6107,ff,FR_WIPER_PROLONGATION_WIPES_TP ,765,52,55,50,0,0,ms,2107,6107,ff,WASHER_CONFIRMATION_TM_TP ,765,56,63,50,0,0,ms,2107,6107,ff,WASH_WIPE_DELAY_TM_TP ,765,64,71,100,0,0,ms,2107,6107,ff,DROP_WIPE_TM_TP ,765,72,75,1,0,0,sec,2107,6107,ff,STANDARD_INT_TM_TP(1) ,765,76,79,1,0,0,sec,2107,6107,ff,STANDARD_INT_TM_TP(2) ,765,80,83,1,0,0,sec,2107,6107,ff,STANDARD_INT_TM_TP(3) ,765,84,87,1,0,0,sec,2107,6107,ff,STANDARD_INT_TM_TP(4) ,765,88,95,1,0,0,sec,2107,6107,ff,FR_WASH_PROLONGATION_MAX_TM_TP ,765,96,103,100,0,0,ms,2107,6107,ff,DUAL_WIPING_MOTORS_FAILURE_FILTER_TM_TP ,765,16,19,1,0,0,sec,2108,6108,ff,REAR_WIPER_PROTECTION_TM_CF ,765,20,20,1,0,0,,2108,6108,ff,REAR_WIPER_DYNAMIC_INT_CF,0:without;1:with ,765,21,21,1,0,0,,2108,6108,ff,REAR_DROP_WIPE_CF,0:without;1:with ,765,22,22,1,0,0,,2108,6108,ff,REAR_WIPER_CF,0:without;1:with ,765,24,31,1,0,0,km/h,2108,6108,ff,REAR_WIPER_INT_SPEED_THRESH_CF(1) ,765,32,39,1,0,0,km/h,2108,6108,ff,REAR_WIPER_INT_SPEED_THRESH_CF(2) ,765,40,47,1,0,0,km/h,2108,6108,ff,REAR_WIPER_INT_SPEED_THRESH_CF(3) ,765,48,55,1,0,0,sec,2108,6108,ff,REAR_WIPER_INT_VALUES_TM_CF(1) ,765,56,63,1,0,0,sec,2108,6108,ff,REAR_WIPER_INT_VALUES_TM_CF(2) ,765,64,71,1,0,0,sec,2108,6108,ff,REAR_WIPER_INT_VALUES_TM_CF(3) ,765,72,79,1,0,0,sec,2108,6108,ff,REAR_WIPER_INT_VALUES_TM_CF(4) ,765,16,16,1,0,0,,2109,6109,ff,HAZARD_WITH_BRAKE_CF,0:without;1:with ,765,17,17,1,0,0,,2109,6109,ff,HAZARD_WITH_CRASH_CF,0:without;1:with ,765,22,22,1,0,0,,2109,6109,ff,R_HAZARD_SIGNAL_CRASH_S,0:without;1:with ,765,23,23,1,0,0,,2109,6109,ff,OVERLOAD_BY_SMART_CF,0:without;1:with ,765,24,24,1,0,0,,2109,6109,ff,TPULSE_CF,1:true;0:false ,765,25,25,1,0,0,,2109,6109,ff,PC_SIGNALISATION_CF,1:true;0:false ,765,16,16,1,0,0,,210A,610A,ff,DUAL_BULBS_CF,0:without;1:with ,765,17,17,1,0,0,,210A,610A,ff,BATTERY_SAVE_CF,0:without;1:with ,765,18,18,1,0,0,,210A,610A,ff,REAR_FOG_OFF_BY_SMART_CF,0:without;1:with ,765,19,19,1,0,0,,210A,610A,ff,FR_FOG_LAMP_CF,0:without;1:with ,765,20,20,1,0,0,,210A,610A,ff,AUTO_LIGHT_CF,0:without;1:with ,765,21,21,1,0,0,,210A,610A,ff,SWISS_CF,0:without;1:with ,765,22,22,1,0,0,,210A,610A,ff,SCANDINAVIAN_RUNNING_LIGHT_CF,0:without;1:with ,765,23,23,1,0,0,,210A,610A,ff,FOLLOW_ME_HOME_CF,0:without;1:with ,765,24,24,1,0,0,,210A,610A,ff,REMOTE_LIGHTING_CF,0:without;1:with ,765,25,28,1,0,0,,210A,610A,ff,VEHICLE_RECOGNITION_TP ,765,29,29,1,0,0,,210A,610A,ff,LIGHT_SENSOR_FITTED_AND_USED_CF,1:fitted and used;0:not fitted or not used ,765,30,30,1,0,0,,210A,610A,ff,DRL_ACTIVE_CF,0:DRL deactivated;1:DRL activated ,765,31,31,1,0,0,,210A,610A,ff,SHIFT_UP_HEADLAMPS_CF,0:without;1:with ,765,32,32,1,0,0,,210A,610A,ff,RR_FOG_LAMP_CF,0:without;1:with ,765,33,33,1,0,0,,210A,610A,ff,R_BATT_SAVE_BY_BS_FNS_S,1:true;0:false ,765,34,34,1,0,0,,210A,610A,ff,AHL_CONFIG_BY_USER_CF,1:true;0:false ,765,16,23,1,0,0,min,210B,610B,ff,AUTO_RELOCK_TIMEOUT_CF ,765,24,31,1,0,0,min,210B,610B,ff,FUEL_WAC_LOCKING_DELAY_TM_CF ,765,32,32,1,0,0,,210B,610B,ff,ANTI_HIJACK_CF,0:without;1:with ,765,33,33,1,0,0,,210B,610B,ff,CHILD_LOCK_CF,0:without;1:with ,765,34,34,1,0,0,,210B,610B,ff,CRASH_DETECTION_CF,0:without;1:with ,765,35,35,1,0,0,,210B,610B,ff,GLASSHATCH_CF,0:without;1:with ,765,36,36,1,0,0,,210B,610B,ff,RKE_BACK_DOORS_CF,0:without;1:with ,765,37,37,1,0,0,,210B,610B,ff,PLANT_LOCK_WITH_SPEED_CF,0:without;1:with ,765,38,38,1,0,0,,210B,610B,ff,SUPERLOCK_CF,0:without;1:with ,765,39,39,1,0,0,,210B,610B,ff,BATT_TAILGATE_OPENING_CF,0:without;1:with ,765,40,40,1,0,0,,210B,610B,ff,CAR_BODY_TYPE_E_CF,1:true;0:false ,765,42,42,1,0,0,,210B,610B,ff,HANDS_FREE_CF,0:without;1:with ,765,43,43,1,0,0,,210B,610B,ff,IGNITION_ON_FLAG_UP_S,1:true;0:false ,765,44,44,1,0,0,,210B,610B,ff,UNLOCK_REQUEST_FLAG_UP_S,1:true;0:false ,765,45,45,1,0,0,,210B,610B,ff,ASSIST_DOOR_LOCKED_S,1:true;0:false ,765,46,46,1,0,0,,210B,610B,ff,ASSIST_DOOR_SUPERLOCKED_S,1:true;0:false ,765,47,47,1,0,0,,210B,610B,ff,CAR_SECURE_S,1:true;0:false ,765,48,48,1,0,0,,210B,610B,ff,CUSTOMER_LOCK_W_SPEED_S,1:true;0:false ,765,49,49,1,0,0,,210B,610B,ff,DRIVER_DOOR_LOCKED_S,1:true;0:false ,765,50,50,1,0,0,,210B,610B,ff,DRIVER_DOOR_SUPERLOCKED_S,1:true;0:false ,765,51,51,1,0,0,,210B,610B,ff,GLASSHATCH_LOCKED_S,1:true;0:false ,765,52,52,1,0,0,,210B,610B,ff,REAR_LEFT_DOOR_LOCKED_S,1:true;0:false ,765,53,53,1,0,0,,210B,610B,ff,REAR_LEFT_DOOR_SUPERLOCKED_S,1:true;0:false ,765,54,54,1,0,0,,210B,610B,ff,REAR_RIGHT_DOOR_LOCKED_S,1:true;0:false ,765,55,55,1,0,0,,210B,610B,ff,REAR_RIGHT_DOOR_SUPERLOCKED_S,1:true;0:false ,765,56,56,1,0,0,,210B,610B,ff,TAILGATE_LOCKED_S,1:true;0:false ,765,57,57,1,0,0,,210B,610B,ff,REAR_LEFT_DOOR_CHILDLOCKED_S,1:true;0:false ,765,58,58,1,0,0,,210B,610B,ff,REAR_RIGHT_DOOR_CHILDLOCKED_S,1:true;0:false ,765,59,59,1,0,0,,210B,610B,ff,FUEL_LOCKED_S,1:true;0:false ,765,60,60,1,0,0,,210B,610B,ff,CUSTOMER_ANTI_HIJACK_S,1:true;0:false ,765,61,61,1,0,0,,210B,610B,ff,MODE_VALET_ACTIVATED_S,1:true;0:false ,765,62,62,1,0,0,,210B,610B,ff,R_CHILD_LOCK_ON_BY_DRIVER_S,1:true;0:false ,765,64,71,1,0,0,,210B,610B,ff,LAST_DOORLOCK_MOTORS_ACTION_S(1),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,72,79,1,0,0,,210B,610B,ff,LAST_DOORLOCK_MOTORS_ACTION_S(2),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,80,87,1,0,0,,210B,610B,ff,LAST_DOORLOCK_MOTORS_ACTION_S(3),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,88,95,1,0,0,,210B,610B,ff,LAST_DOORLOCK_MOTORS_ACTION_S(4),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,96,103,1,0,0,,210B,610B,ff,LAST_DOORLOCK_MOTORS_ACTION_S(5),0:NONE;1:CHILD_LOCK_BY_CL_BUTTON;2:CHILD_UNLOCK_BY_CL_BUTTON;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;4:CRASH_UNLOCK_BY_CRASH_UL;5:LOCK_ALL_BY_KEYFOB;6:LOCK_ALL_BY_HANDSFREE;7:LOCK_ALL_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;9:LOCK_BY_HANDSFREE_WAC;10:LOCK_BY_AUTO_RE_LOCK;11:LOCK_BY_CDL_BUTTON;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;13:LOCK_BY_LOCK_WITH_SPEED;14:LOCK_FUEL_BY_HANDSFREE_WAC;15:LOCK_FUEL_BY_ACT;16:SECURITY_UNLOCK_BY_CRASH_UL;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;18:SUPERLOCK_BY_ACT;19:SUPERLOCK_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;26:SUPERUNLOCK_BY_ACT;27:SUPERUNLOCK_ALL_BY_KEYFOB;28:SUPERUNLOCK_ALL_BY_HANDSF;29:SUPERUNLOCK_ALL_BY_RE_SL;30:SUPERUNLOCK_ALL_BY_RTL_DR;31:SUPERUNLOCK_ALL_BY_RTL_CD;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;33:UNLOCK_ALL_BY_ACT;34:UNLOCK_ALL_BY_KEYFOB;35:UNLOCK_ALL_BY_HANDSFREE;36:UNLOCK_BY_CDL_BUTTON;37:UNLOCK_BY_UNLOCK_LINKED;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;39:UNLOCK_FUEL_BY_ACT;40:UNLOCK_BY_RTL_DOOR_OPENED;41:UNLOCK_BY_RTL_CARD_IN_READER;42:LOCK_BACKDOORS_BY_KEYFOB;43:UNLOCK_BACKDOORS_BY_KEYFOB;44:DRIVER_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;51:REAR_LEFT_DOOR_CLOSE;52:TAILGATE_OPEN;53:TAILGATE_CLOSE;54:GLASSHATCH_OPEN;55:GLASSHATCH_CLOSE;56:LOCK_ALL_BY_VALET;57:LOCK_ALL_NOT_DRIVER_BY_VALET;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;60:SUPERUNLOCK_CHILDLKED_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;63:LOCK_UNLOCK_DRIVER_BY_VALET;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;65:UNLOCK_DR_BY_RTL_CD_IN_READER;66:SUPERUNLOCK_CHILDLKED_BY_CDL;67:SUPERUNLOCK_ALL_BY_CDL;68:LOCK_GLOVES_BOX_BY_ACT;69:UNLOCK_GLOVES_BOX_BY_ACT;70:LOCK_ALL_BY_DRIVER_KNOB;71:UNLOCK_ALL_BY_DRIVER_KNOB;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;79:UNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;82:UNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;85:TAILGATE_OPENING_ON_BY_DRIVER;86:TAILGATE_OPENING_ON_BY_BTN;87:TAILGATE_OPENING_ON_BY_RKE_LONG;88:TAILGATE_OPENING_BY_HANDSFREE;89:TRUNK_RE_OPENING_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;91:GLASSHATCH_OPEN_BY_HANDSFREE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,104,104,1,0,0,,210B,610B,ff,POWER_SLIDING_DOORS_CF,0:without;1:with ,765,105,105,1,0,0,,210B,610B,ff,CHILD_LOCK_SWITCH_REVERSE_CF,0:without;1:with ,765,112,112,1,0,0,,210B,610B,ff,BTN_TAILGATE_OPENING_CF,0:without;1:with ,765,113,113,1,0,0,,210B,610B,ff,RKE_BTN_TAILGATE_OPENING_CF,0:without;1:with ,765,114,114,1,0,0,,210B,610B,ff,SEPARATED_TAILGATE_OPENING_CF,0:without;1:with ,765,116,116,1,0,0,,210B,610B,ff,KNOB_CF,0:without;1:with ,765,117,117,1,0,0,,210B,610B,ff,HIGH_LOCK_WITH_SPEED_CF,0:without;1:with ,765,120,127,100,0,0,ms,210B,610B,ff,LONG_PRESS_TM_CF ,765,16,16,1,0,0,,210C,610C,ff,INTERIOR_LIGHT_CF,0:without;1:with ,765,17,17,1,0,0,,210C,610C,ff,ROOM_LIGHTS_BACK_CF,0:without;1:with ,765,18,18,1,0,0,,210C,610C,ff,AMBIANCE_LIGHTS_CF,0:without;1:with ,765,19,19,1,0,0,,210C,610C,ff,SEPARATED_BACK_LIGHT_CF,0:without;1:with ,765,16,47,1,0,0,,210D,610D,4ff,SSREH_SAV3_CUR_ABSOLUTE_TIME ,765,48,55,1,0,0,,210D,610D,ff,SSREH_SAV3_INDEX_NUMBER ,765,56,87,1,0,0,,210D,610D,4ff,SSREH_SAV3_ABSOLUTE_TIME(0) ,765,88,119,1,0,0,,210D,610D,4ff,SSREH_SAV3_DISTANCE_TOTALIZER(0) ,765,120,127,1,0,0,,210D,610D,ff,SSREH_SAV3_S_AN_S_CRANKING_FAILURE_CS(0) ,765,128,135,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_MIN_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,136,143,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_MAX_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,144,151,1,0,0,,210D,610D,ff,SSREH_SAV3_NEUTRAL_CONTACT_STATUS(0),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,152,159,1,0,0,,210D,610D,ff,SSREH_SAV3_VEHICLE_STATE(0),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,160,160,1,0,0,,210D,610D,ff,SSREH_SAV3_VEHICLE_STATE_STOP_START_EXTENSION(0),1:true;0:false ,765,168,199,1,0,0,,210D,610D,4ff,SSREH_SAV3_ABSOLUTE_TIME(1) ,765,200,231,1,0,0,,210D,610D,4ff,SSREH_SAV3_DISTANCE_TOTALIZER(1) ,765,232,239,1,0,0,,210D,610D,ff,SSREH_SAV3_S_AN_S_CRANKING_FAILURE_CS(1) ,765,240,247,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_MIN_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,248,255,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_MAX_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,256,263,1,0,0,,210D,610D,ff,SSREH_SAV3_NEUTRAL_CONTACT_STATUS(1),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,264,271,1,0,0,,210D,610D,ff,SSREH_SAV3_VEHICLE_STATE(1),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,272,272,1,0,0,,210D,610D,ff,SSREH_SAV3_VEHICLE_STATE_STOP_START_EXTENSION(1),1:true;0:false ,765,280,311,1,0,0,,210D,610D,4ff,SSREH_SAV3_ABSOLUTE_TIME(2) ,765,312,343,1,0,0,,210D,610D,4ff,SSREH_SAV3_DISTANCE_TOTALIZER(2) ,765,344,351,1,0,0,,210D,610D,ff,SSREH_SAV3_S_AN_S_CRANKING_FAILURE_CS(2) ,765,352,359,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_MIN_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,360,367,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_MAX_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,368,375,1,0,0,,210D,610D,ff,SSREH_SAV3_NEUTRAL_CONTACT_STATUS(2),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,376,383,1,0,0,,210D,610D,ff,SSREH_SAV3_VEHICLE_STATE(2),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,384,384,1,0,0,,210D,610D,ff,SSREH_SAV3_VEHICLE_STATE_STOP_START_EXTENSION(2),1:true;0:false ,765,392,423,1,0,0,,210D,610D,4ff,SSREH_SAV3_ABSOLUTE_TIME(3) ,765,424,455,1,0,0,,210D,610D,4ff,SSREH_SAV3_DISTANCE_TOTALIZER(3) ,765,456,463,1,0,0,,210D,610D,ff,SSREH_SAV3_S_AN_S_CRANKING_FAILURE_CS(3) ,765,464,471,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_MIN_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,472,479,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_MAX_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,480,487,1,0,0,,210D,610D,ff,SSREH_SAV3_NEUTRAL_CONTACT_STATUS(3),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,488,495,1,0,0,,210D,610D,ff,SSREH_SAV3_VEHICLE_STATE(3),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,496,496,1,0,0,,210D,610D,ff,SSREH_SAV3_VEHICLE_STATE_STOP_START_EXTENSION(3),1:true;0:false ,765,504,535,1,0,0,,210D,610D,4ff,SSREH_SAV3_ABSOLUTE_TIME(4) ,765,536,567,1,0,0,,210D,610D,4ff,SSREH_SAV3_DISTANCE_TOTALIZER(4) ,765,568,575,1,0,0,,210D,610D,ff,SSREH_SAV3_S_AN_S_CRANKING_FAILURE_CS(4) ,765,576,583,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_MIN_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,584,591,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_MAX_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,592,599,1,0,0,,210D,610D,ff,SSREH_SAV3_NEUTRAL_CONTACT_STATUS(4),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,600,607,1,0,0,,210D,610D,ff,SSREH_SAV3_VEHICLE_STATE(4),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,608,608,1,0,0,,210D,610D,ff,SSREH_SAV3_VEHICLE_STATE_STOP_START_EXTENSION(4),1:true;0:false ,765,616,623,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_AUTO_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,624,631,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_AUTO_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,632,639,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_AUTO_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,640,647,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_AUTO_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,648,655,1,0,0,,210D,610D,ff,SSREH_SAV3_CLUTCH_SW_AUTO_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,16,16,1,0,0,,210E,610E,ff,AT_CF,0:without;1:with ,765,18,18,1,0,0,,210E,610E,ff,PLANT_START_SEQ_INHIBITION_CF,1:Start sequence inhibited;0:Start sequence not inhibited ,765,19,19,1,0,0,,210E,610E,ff,START_WITH_PEDAL_PRESS_CF,0:without;1:with ,765,20,20,1,0,0,,210E,610E,ff,SUPERSLEEP_FITTED_CF,0:without;1:with ,765,21,21,1,0,0,,210E,610E,ff,SUPERSLEEP_ACTIVATED_S,0:deactivated;1:activated ,765,22,22,1,0,0,,210E,610E,ff,SUPERSLEEP_ALLOWED_S,0:not allowed;1:allowed ,765,23,23,1,0,0,,210E,610E,ff,WITH_PARK_POSITION_CF,0:without;1:with ,765,24,27,1,0,0,km/h,210E,610E,ff,ENGINE_STOPPED_SPEED_THRESH_CF ,765,32,39,1,0,0,min,210E,610E,ff,MAX_L3_ON_BY_DIAG_TM_CF ,765,40,47,1,0,0,sec,210E,610E,ff,MAX_TURN_POWER_LEVEL_X_ON_TM_CF ,765,48,48,1,0,0,,210E,610E,ff,WITH_DEBUG_FRAME_CF,0:without;1:with ,765,49,49,1,0,0,,210E,610E,ff,POWER_LEVEL_4_RELAY_CF,0:without;1:with ,765,50,50,1,0,0,,210E,610E,ff,O_ACC_RL2_DTC_CF,0:without;1:with ,765,51,51,1,0,0,,210E,610E,ff,O_APC_RL_DTC_CF,0:without;1:with ,765,52,52,1,0,0,,210E,610E,ff,O_APC2_RL_DTC_CF,0:without;1:with ,765,53,53,1,0,0,,210E,610E,ff,POWER_LEVEL_2_RELAY_CF,0:without;1:with ,765,54,54,1,0,0,,210E,610E,ff,ESCL_PRESENT_CF,0:without;1:with ,765,16,17,1,0,0,sec,210F,610F,ff,COMBI_SW_FAILURE_DETECTED_TM_TP ,765,16,23,100,0,0,ms,2110,6110,ff,GADE_INIT_DELAY_TM_TP ,765,16,23,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(0) ,765,24,31,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(1) ,765,32,39,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(2) ,765,40,47,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(3) ,765,48,55,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(4) ,765,56,63,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(5) ,765,64,71,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(6) ,765,72,79,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(7) ,765,80,87,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(8) ,765,88,95,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(9) ,765,96,103,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(10) ,765,104,111,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(11) ,765,112,119,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(12) ,765,120,127,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(13) ,765,128,135,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(14) ,765,136,143,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(15) ,765,144,151,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(16) ,765,152,159,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(17) ,765,160,167,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(18) ,765,168,175,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(19) ,765,176,183,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(20) ,765,184,191,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(21) ,765,192,199,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(22) ,765,200,207,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(23) ,765,208,215,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(24) ,765,216,223,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(25) ,765,224,231,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(26) ,765,232,239,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(27) ,765,240,247,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(28) ,765,248,255,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(29) ,765,256,263,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(30) ,765,264,271,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(31) ,765,272,279,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(32) ,765,280,287,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(33) ,765,288,295,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(34) ,765,296,303,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(35) ,765,304,311,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(36) ,765,312,319,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(37) ,765,320,327,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(38) ,765,328,335,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(39) ,765,336,343,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(40) ,765,344,351,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(41) ,765,352,359,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(42) ,765,360,367,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(43) ,765,368,375,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(44) ,765,376,383,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(45) ,765,384,391,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(46) ,765,392,399,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(47) ,765,400,407,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(48) ,765,408,415,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(49) ,765,416,423,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(50) ,765,424,431,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(51) ,765,432,439,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(52) ,765,440,447,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(53) ,765,448,455,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(54) ,765,456,463,1,0,0,time,2111,6111,ff,X_TCONF_REVERS_TP(55) ,765,16,31,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(0) ,765,32,47,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(1) ,765,48,63,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(2) ,765,64,79,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(3) ,765,80,95,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(4) ,765,96,111,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(5) ,765,112,127,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(6) ,765,128,143,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(7) ,765,144,159,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(8) ,765,160,175,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(9) ,765,176,191,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(10) ,765,192,207,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(11) ,765,208,223,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(12) ,765,224,239,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(13) ,765,240,255,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(14) ,765,256,271,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(15) ,765,272,287,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(16) ,765,288,303,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(17) ,765,304,319,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(18) ,765,320,335,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(19) ,765,336,351,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(20) ,765,352,367,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(21) ,765,368,383,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(22) ,765,384,399,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(23) ,765,400,415,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(24) ,765,416,431,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(25) ,765,432,447,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(26) ,765,448,463,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(27) ,765,464,479,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(28) ,765,480,495,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(29) ,765,496,511,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(30) ,765,512,527,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(31) ,765,528,543,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(32) ,765,544,559,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(33) ,765,560,575,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(34) ,765,576,591,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(35) ,765,592,607,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(36) ,765,608,623,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(37) ,765,624,639,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(38) ,765,640,655,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(39) ,765,656,671,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(40) ,765,672,687,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(41) ,765,688,703,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(42) ,765,704,719,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(43) ,765,720,735,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(44) ,765,736,751,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(45) ,765,752,767,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(46) ,765,768,783,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(47) ,765,784,799,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(48) ,765,800,815,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(49) ,765,816,831,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(50) ,765,832,847,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(51) ,765,848,863,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(52) ,765,864,879,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(53) ,765,880,895,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(54) ,765,896,911,1,0,0,time,2112,6112,ff,X_TPASS_DETECTED_TP(55) ,765,16,31,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(0) ,765,32,47,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(1) ,765,48,63,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(2) ,765,64,79,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(3) ,765,80,95,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(4) ,765,96,111,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(5) ,765,112,127,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(6) ,765,128,143,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(7) ,765,144,159,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(8) ,765,160,175,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(9) ,765,176,191,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(10) ,765,192,207,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(11) ,765,208,223,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(12) ,765,224,239,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(13) ,765,240,255,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(14) ,765,256,271,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(15) ,765,272,287,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(16) ,765,288,303,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(17) ,765,304,319,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(18) ,765,320,335,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(19) ,765,336,351,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(20) ,765,352,367,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(21) ,765,368,383,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(22) ,765,384,399,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(23) ,765,400,415,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(24) ,765,416,431,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(25) ,765,432,447,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(26) ,765,448,463,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(27) ,765,464,479,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(28) ,765,480,495,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(29) ,765,496,511,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(30) ,765,512,527,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(31) ,765,528,543,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(32) ,765,544,559,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(33) ,765,560,575,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(34) ,765,576,591,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(35) ,765,592,607,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(36) ,765,608,623,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(37) ,765,624,639,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(38) ,765,640,655,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(39) ,765,656,671,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(40) ,765,672,687,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(41) ,765,688,703,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(42) ,765,704,719,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(43) ,765,720,735,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(44) ,765,736,751,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(45) ,765,752,767,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(46) ,765,768,783,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(47) ,765,784,799,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(48) ,765,800,815,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(49) ,765,816,831,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(50) ,765,832,847,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(51) ,765,848,863,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(52) ,765,864,879,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(53) ,765,880,895,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(54) ,765,896,911,1,0,0,time,2113,6113,ff,X_TFAIL_DETECTED_TP(55) ,765,16,23,1,0,0,,2114,6114,ff,BRAKE_CANHS_FRAME_STATUS,1:ABSENT_BUT_NOT_EXPECTED;4:FRAME_STATUS_PRESENT;2:ABSENT_AND_EXPECTED;0:FRAME_STATUS_UNKNOWN;3:ABSENT_AND_EXPECTED_CONFIRMED ,765,24,31,1,0,0,,2114,6114,ff,CLIM_CANHS_FRAME_STATUS,1:ABSENT_BUT_NOT_EXPECTED;4:FRAME_STATUS_PRESENT;2:ABSENT_AND_EXPECTED;0:FRAME_STATUS_UNKNOWN;3:ABSENT_AND_EXPECTED_CONFIRMED ,765,32,39,1,0,0,,2114,6114,ff,AIRBAG_CANHS_FRAME_STATUS,1:ABSENT_BUT_NOT_EXPECTED;4:FRAME_STATUS_PRESENT;2:ABSENT_AND_EXPECTED;0:FRAME_STATUS_UNKNOWN;3:ABSENT_AND_EXPECTED_CONFIRMED ,765,40,47,1,0,0,,2114,6114,ff,ECM_CANHS_FRAME_STATUS,1:ABSENT_BUT_NOT_EXPECTED;4:FRAME_STATUS_PRESENT;2:ABSENT_AND_EXPECTED;0:FRAME_STATUS_UNKNOWN;3:ABSENT_AND_EXPECTED_CONFIRMED ,765,48,55,1,0,0,,2114,6114,ff,USM_CANHS_FRAME_STATUS,1:ABSENT_BUT_NOT_EXPECTED;4:FRAME_STATUS_PRESENT;2:ABSENT_AND_EXPECTED;0:FRAME_STATUS_UNKNOWN;3:ABSENT_AND_EXPECTED_CONFIRMED ,765,56,63,1,0,0,,2114,6114,ff,TORQUE_AT_CANHS_FRAME_STATUS,1:ABSENT_BUT_NOT_EXPECTED;4:FRAME_STATUS_PRESENT;2:ABSENT_AND_EXPECTED;0:FRAME_STATUS_UNKNOWN;3:ABSENT_AND_EXPECTED_CONFIRMED ,765,64,64,1,0,0,,2114,6114,ff,CAN_ABS_ABSENT,1:true;0:false ,765,65,65,1,0,0,,2114,6114,ff,IH_REARDEFROSTREQUESTNA,1:true;0:false ,765,66,66,1,0,0,,2114,6114,ff,IH_BLOWERSTATENA,1:true;0:false ,765,67,67,1,0,0,,2114,6114,ff,CAN_CLIM_ABSENT,1:true;0:false ,765,68,68,1,0,0,,2114,6114,ff,CAN_AIRBAG_ABSENT,1:true;0:false ,765,69,69,1,0,0,,2114,6114,ff,CAN_ECM_ABSENT,1:true;0:false ,765,70,70,1,0,0,,2114,6114,ff,IH_ENGINESTATUS_RNA,1:true;0:false ,765,71,71,1,0,0,,2114,6114,ff,CAN_USM_ABSENT,1:true;0:false ,765,72,72,1,0,0,,2114,6114,ff,CAN_AT_ABSENT,1:true;0:false ,765,73,73,1,0,0,,2114,6114,ff,CAN_LASD_ABSENT,1:true;0:false ,765,74,74,1,0,0,,2114,6114,ff,CAN_RASD_ABSENT,1:true;0:false ,765,75,75,1,0,0,,2114,6114,ff,CAN_SCH_ABSENT,1:true;0:false ,765,76,76,1,0,0,,2114,6114,ff,CAN_SCH_PRESENT,1:true;0:false ,765,80,80,1,0,0,,2114,6114,ff,CAN_ABS_PRESENT,1:true;0:false ,765,81,81,1,0,0,,2114,6114,ff,CAN_CLIM_PRESENT,1:true;0:false ,765,82,82,1,0,0,,2114,6114,ff,CAN_AIRBAG_PRESENT,1:true;0:false ,765,83,83,1,0,0,,2114,6114,ff,CAN_ECM_PRESENT,1:true;0:false ,765,84,84,1,0,0,,2114,6114,ff,CAN_USM_PRESENT,1:true;0:false ,765,85,85,1,0,0,,2114,6114,ff,CAN_AT_PRESENT,1:true;0:false ,765,86,86,1,0,0,,2114,6114,ff,CAN_LASD_PRESENT,1:true;0:false ,765,87,87,1,0,0,,2114,6114,ff,CAN_RASD_PRESENT,1:true;0:false ,765,88,95,1,0,0,,2114,6114,ff,DSU_CANHS_FRAME_STATUS,1:ABSENT_BUT_NOT_EXPECTED;4:FRAME_STATUS_PRESENT;2:ABSENT_AND_EXPECTED;0:FRAME_STATUS_UNKNOWN;3:ABSENT_AND_EXPECTED_CONFIRMED ,765,96,103,1,0,0,,2114,6114,ff,LASD_CANHS_FRAME_STATUS,1:ABSENT_BUT_NOT_EXPECTED;4:FRAME_STATUS_PRESENT;2:ABSENT_AND_EXPECTED;0:FRAME_STATUS_UNKNOWN;3:ABSENT_AND_EXPECTED_CONFIRMED ,765,104,111,1,0,0,,2114,6114,ff,RASD_CANHS_FRAME_STATUS,1:ABSENT_BUT_NOT_EXPECTED;4:FRAME_STATUS_PRESENT;2:ABSENT_AND_EXPECTED;0:FRAME_STATUS_UNKNOWN;3:ABSENT_AND_EXPECTED_CONFIRMED ,765,112,119,1,0,0,,2114,6114,ff,SCH_CANHS_FRAME_STATUS,1:ABSENT_BUT_NOT_EXPECTED;4:FRAME_STATUS_PRESENT;2:ABSENT_AND_EXPECTED;0:FRAME_STATUS_UNKNOWN;3:ABSENT_AND_EXPECTED_CONFIRMED ,765,120,127,1,0,0,,2114,6114,ff,CAMERA_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,128,128,1,0,0,,2114,6114,ff,CAN_AHL_CAMERA_PRESENT,1:true;0:false ,765,129,129,1,0,0,,2114,6114,ff,CAN_AHL_CAMERA_ABSENT,1:true;0:false ,765,136,143,1,0,0,,2114,6114,ff,TCU_CANHS_FRAME_STATUS,0:FRAME_STATUS_UNKNOWN;1:ABSENT_BUT_NOT_EXPECTED;2:ABSENT_AND_EXPECTED;3:ABSENT_AND_EXPECTED_CONFIRMED;4:FRAME_STATUS_PRESENT ,765,144,144,1,0,0,,2114,6114,ff,CAN_TCU_PRESENT,0:false;1:true ,765,145,145,1,0,0,,2114,6114,ff,CAN_TCU_ABSENT,0:false;1:true ,765,16,23,100,0,0,ms,2115,6115,ff,VEHICLE_RUNNING_CONFIRMATION_TM_TP ,765,24,24,1,0,0,,2115,6115,ff,O_SAFETY_LINE_SSD,1:true;0:false ,765,16,47,1,0,0,,2116,6116,4ff,SSREH_SAV4_CUR_ABSOLUTE_TIME ,765,48,55,1,0,0,,2116,6116,ff,SSREH_SAV4_INDEX_NUMBER ,765,56,87,1,0,0,,2116,6116,4ff,SSREH_SAV4_ABSOLUTE_TIME(0) ,765,88,119,1,0,0,,2116,6116,4ff,SSREH_SAV4_DISTANCE_TOTALIZER(0) ,765,120,151,1,0,0,,2116,6116,4ff,SSREH_SAV4_ABSOLUTE_TIME(1) ,765,152,183,1,0,0,,2116,6116,4ff,SSREH_SAV4_DISTANCE_TOTALIZER(1) ,765,184,215,1,0,0,,2116,6116,4ff,SSREH_SAV4_ABSOLUTE_TIME(2) ,765,216,247,1,0,0,,2116,6116,4ff,SSREH_SAV4_DISTANCE_TOTALIZER(2) ,765,248,279,1,0,0,,2116,6116,4ff,SSREH_SAV4_ABSOLUTE_TIME(3) ,765,280,311,1,0,0,,2116,6116,4ff,SSREH_SAV4_DISTANCE_TOTALIZER(3) ,765,312,343,1,0,0,,2116,6116,4ff,SSREH_SAV4_ABSOLUTE_TIME(4) ,765,344,375,1,0,0,,2116,6116,4ff,SSREH_SAV4_DISTANCE_TOTALIZER(4) ,765,16,16,1,0,0,,2117,6117,ff,IRX_PresenceCF,1:External RF receiver 315 Mhz;0:Internal RF receiver 433 Mhz ,765,24,31,1,0,0,time,2117,6117,ff,IRX_COMFAILED_TCONF_TP ,765,32,39,1,0,0,,2117,6117,2ff,LSB SW version ,765,40,47,1,0,0,,2117,6117,2ff,MSB SW version ,765,48,55,1,0,0,,2117,6117,2ff,LSB HW version ,765,56,63,1,0,0,,2117,6117,2ff,HSB HW version ,765,16,47,1,0,0,,2118,6118,4ff,SSREH_SAV5_CUR_ABSOLUTE_TIME ,765,48,55,1,0,0,,2118,6118,ff,SSREH_SAV5_INDEX_NUMBER ,765,56,87,1,0,0,,2118,6118,4ff,SSREH_SAV5_ABSOLUTE_TIME(0) ,765,88,119,1,0,0,,2118,6118,4ff,SSREH_SAV5_DISTANCE_TOTALIZER(0) ,765,120,127,1,0,0,,2118,6118,ff,SSREH_SAV5_ENGINE_STATUS(0),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,128,135,1,0,0,,2118,6118,ff,SSREH_SAV5_AUTO_START_AUTHORIZATION(0),0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,136,167,1,0,0,,2118,6118,4ff,SSREH_SAV5_ABSOLUTE_TIME(1) ,765,168,199,1,0,0,,2118,6118,4ff,SSREH_SAV5_DISTANCE_TOTALIZER(1) ,765,200,207,1,0,0,,2118,6118,ff,SSREH_SAV5_ENGINE_STATUS(1),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,208,215,1,0,0,,2118,6118,ff,SSREH_SAV5_AUTO_START_AUTHORIZATION(1),0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,216,247,1,0,0,,2118,6118,4ff,SSREH_SAV5_ABSOLUTE_TIME(2) ,765,248,279,1,0,0,,2118,6118,4ff,SSREH_SAV5_DISTANCE_TOTALIZER(2) ,765,280,287,1,0,0,,2118,6118,ff,SSREH_SAV5_ENGINE_STATUS(2),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,288,295,1,0,0,,2118,6118,ff,SSREH_SAV5_AUTO_START_AUTHORIZATION(2),0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,296,327,1,0,0,,2118,6118,4ff,SSREH_SAV5_ABSOLUTE_TIME(3) ,765,328,359,1,0,0,,2118,6118,4ff,SSREH_SAV5_DISTANCE_TOTALIZER(3) ,765,360,367,1,0,0,,2118,6118,ff,SSREH_SAV5_ENGINE_STATUS(3),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,368,375,1,0,0,,2118,6118,ff,SSREH_SAV5_AUTO_START_AUTHORIZATION(3),0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,376,407,1,0,0,,2118,6118,4ff,SSREH_SAV5_ABSOLUTE_TIME(4) ,765,408,439,1,0,0,,2118,6118,4ff,SSREH_SAV5_DISTANCE_TOTALIZER(4) ,765,440,447,1,0,0,,2118,6118,ff,SSREH_SAV5_ENGINE_STATUS(4),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,448,455,1,0,0,,2118,6118,ff,SSREH_SAV5_AUTO_START_AUTHORIZATION(4),0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,456,463,1,0,0,,2118,6118,ff,SSREH_SAV5_CAN_USM_PRESENT(0),1:true;0:false ,765,464,471,1,0,0,,2118,6118,ff,SSREH_SAV5_CAN_USM_PRESENT(1),1:true;0:false ,765,472,479,1,0,0,,2118,6118,ff,SSREH_SAV5_CAN_USM_PRESENT(2),1:true;0:false ,765,480,487,1,0,0,,2118,6118,ff,SSREH_SAV5_CAN_USM_PRESENT(3),1:true;0:false ,765,488,495,1,0,0,,2118,6118,ff,SSREH_SAV5_CAN_USM_PRESENT(4),1:true;0:false ,765,16,23,1,0,0,,2119,6119,ff,CH_ACArchi,0:A/C Request management in ECU Clim & cold loop in ECU Clim;1:A/C Request management in BCM & cold loop in ECM;2:A/C Request management in ECU Clim & cold loop in ECM ,765,16,23,1,40,0,°C,211A,611A,ff,KH_ExternalTempMin1 ,765,24,31,1,40,0,°C,211A,611A,ff,KH_ExternalTempMin2 ,765,16,16,1,0,0,,211B,611B,ff,IH_ACRequestCAMAN ,765,17,17,1,0,0,,211B,611B,ff,IH_ACRequest ,765,18,18,1,0,0,,211B,611B,ff,IH_ACRequestNA ,765,19,19,1,0,0,,211B,611B,ff,IH_BlowerState,1:Cabin GMV turned on;0:Cabin GMV turned off ,765,20,20,1,0,0,,211B,611B,ff,IH_BLOWERSTATENA,1:true;0:false ,765,21,22,1,0,0,,211B,611B,ff,IH_EngineStatus_R,1:No used;2:Running;3:Starter;0:Stopped ,765,24,31,1,40,0,°C,211B,611B,ff,IH_ExternalTemp ,765,32,39,1,40,0,°C,211B,611B,ff,VH_ExternalTemp ,765,40,41,1,0,0,,211B,611B,ff,VH_EngineStatus_R,1:No used;2:Running;3:Starter;0:Stopped ,765,42,42,1,0,0,,211B,611B,ff,VH_BlowerState ,765,43,43,1,0,0,,211B,611B,ff,VH_ACSelectedCAMAN ,765,44,44,1,0,0,,211B,611B,ff,VH_ACSelectedCAREG ,765,45,45,1,0,0,,211B,611B,ff,OH_ACRequest ,765,16,16,1,0,0,,211C,611C,ff,CH_RearDefrosterArchi,0:Rear Defroster thermal management in ECU Clim;1:Rear Defroster thermal management in BCM ,765,16,23,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_In(0) ,765,24,31,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_In(1) ,765,32,39,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_In(2) ,765,40,47,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_In(3) ,765,48,55,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_In(4) ,765,56,63,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_In(5) ,765,64,71,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_In(6) ,765,72,79,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_In(7) ,765,80,87,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_In(8) ,765,88,95,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_Out(0) ,765,96,103,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_Out(1) ,765,104,111,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_Out(2) ,765,112,119,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_Out(3) ,765,120,127,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_Out(4) ,765,128,135,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_Out(5) ,765,136,143,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_Out(6) ,765,144,151,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_Out(7) ,765,152,159,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP1_SwOFF_Out(8) ,765,160,167,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_In(0) ,765,168,175,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_In(1) ,765,176,183,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_In(2) ,765,184,191,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_In(3) ,765,192,199,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_In(4) ,765,200,207,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_In(5) ,765,208,215,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_In(6) ,765,216,223,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_In(7) ,765,224,231,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_In(8) ,765,232,239,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_Out(0) ,765,240,247,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_Out(1) ,765,248,255,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_Out(2) ,765,256,263,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_Out(3) ,765,264,271,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_Out(4) ,765,272,279,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_Out(5) ,765,280,287,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_Out(6) ,765,288,295,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_Out(7) ,765,296,303,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP2_SwOFF_Out(8) ,765,304,311,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_In(0) ,765,312,319,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_In(1) ,765,320,327,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_In(2) ,765,328,335,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_In(3) ,765,336,343,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_In(4) ,765,344,351,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_In(5) ,765,352,359,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_In(6) ,765,360,367,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_In(7) ,765,368,375,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_In(8) ,765,376,383,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_Out(0) ,765,384,391,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_Out(1) ,765,392,399,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_Out(2) ,765,400,407,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_Out(3) ,765,408,415,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_Out(4) ,765,416,423,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_Out(5) ,765,424,431,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_Out(6) ,765,432,439,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_Out(7) ,765,440,447,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP3_SwOFF_Out(8) ,765,448,455,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_In(0) ,765,456,463,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_In(1) ,765,464,471,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_In(2) ,765,472,479,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_In(3) ,765,480,487,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_In(4) ,765,488,495,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_In(5) ,765,496,503,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_In(6) ,765,504,511,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_In(7) ,765,512,519,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_In(8) ,765,520,527,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_Out(0) ,765,528,535,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_Out(1) ,765,536,543,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_Out(2) ,765,544,551,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_Out(3) ,765,552,559,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_Out(4) ,765,560,567,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_Out(5) ,765,568,575,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_Out(6) ,765,576,583,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_Out(7) ,765,584,591,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP4_SwOFF_Out(8) ,765,592,599,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_In(0) ,765,600,607,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_In(1) ,765,608,615,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_In(2) ,765,616,623,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_In(3) ,765,624,631,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_In(4) ,765,632,639,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_In(5) ,765,640,647,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_In(6) ,765,648,655,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_In(7) ,765,656,663,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_In(8) ,765,664,671,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_Out(0) ,765,672,679,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_Out(1) ,765,680,687,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_Out(2) ,765,688,695,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_Out(3) ,765,696,703,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_Out(4) ,765,704,711,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_Out(5) ,765,712,719,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_Out(6) ,765,720,727,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_Out(7) ,765,728,735,1,40,0,°C,211D,611D,ff,PTC_01_C1D_HysCTP5_SwOFF_Out(8) ,765,16,23,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_In(0) ,765,24,31,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_In(1) ,765,32,39,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_In(2) ,765,40,47,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_In(3) ,765,48,55,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_In(4) ,765,56,63,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_In(5) ,765,64,71,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_In(6) ,765,72,79,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_In(7) ,765,80,87,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_In(8) ,765,88,95,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_Out(0) ,765,96,103,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_Out(1) ,765,104,111,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_Out(2) ,765,112,119,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_Out(3) ,765,120,127,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_Out(4) ,765,128,135,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_Out(5) ,765,136,143,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_Out(6) ,765,144,151,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_Out(7) ,765,152,159,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP1_SwOFF_Out(8) ,765,160,167,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_In(0) ,765,168,175,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_In(1) ,765,176,183,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_In(2) ,765,184,191,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_In(3) ,765,192,199,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_In(4) ,765,200,207,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_In(5) ,765,208,215,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_In(6) ,765,216,223,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_In(7) ,765,224,231,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_In(8) ,765,232,239,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_Out(0) ,765,240,247,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_Out(1) ,765,248,255,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_Out(2) ,765,256,263,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_Out(3) ,765,264,271,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_Out(4) ,765,272,279,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_Out(5) ,765,280,287,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_Out(6) ,765,288,295,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_Out(7) ,765,296,303,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP2_SwOFF_Out(8) ,765,304,311,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_In(0) ,765,312,319,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_In(1) ,765,320,327,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_In(2) ,765,328,335,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_In(3) ,765,336,343,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_In(4) ,765,344,351,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_In(5) ,765,352,359,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_In(6) ,765,360,367,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_In(7) ,765,368,375,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_In(8) ,765,376,383,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_Out(0) ,765,384,391,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_Out(1) ,765,392,399,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_Out(2) ,765,400,407,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_Out(3) ,765,408,415,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_Out(4) ,765,416,423,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_Out(5) ,765,424,431,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_Out(6) ,765,432,439,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_Out(7) ,765,440,447,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP3_SwOFF_Out(8) ,765,448,455,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_In(0) ,765,456,463,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_In(1) ,765,464,471,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_In(2) ,765,472,479,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_In(3) ,765,480,487,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_In(4) ,765,488,495,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_In(5) ,765,496,503,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_In(6) ,765,504,511,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_In(7) ,765,512,519,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_In(8) ,765,520,527,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_Out(0) ,765,528,535,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_Out(1) ,765,536,543,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_Out(2) ,765,544,551,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_Out(3) ,765,552,559,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_Out(4) ,765,560,567,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_Out(5) ,765,568,575,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_Out(6) ,765,576,583,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_Out(7) ,765,584,591,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP4_SwOFF_Out(8) ,765,592,599,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_In(0) ,765,600,607,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_In(1) ,765,608,615,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_In(2) ,765,616,623,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_In(3) ,765,624,631,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_In(4) ,765,632,639,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_In(5) ,765,640,647,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_In(6) ,765,648,655,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_In(7) ,765,656,663,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_In(8) ,765,664,671,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_Out(0) ,765,672,679,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_Out(1) ,765,680,687,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_Out(2) ,765,688,695,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_Out(3) ,765,696,703,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_Out(4) ,765,704,711,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_Out(5) ,765,712,719,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_Out(6) ,765,720,727,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_Out(7) ,765,728,735,1,40,0,°C,211E,611E,ff,PTC_02_C1D_HysCTP5_SwOFF_Out(8) ,765,16,23,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_In(0) ,765,24,31,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_In(1) ,765,32,39,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_In(2) ,765,40,47,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_In(3) ,765,48,55,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_In(4) ,765,56,63,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_In(5) ,765,64,71,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_In(6) ,765,72,79,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_In(7) ,765,80,87,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_In(8) ,765,88,95,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_Out(0) ,765,96,103,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_Out(1) ,765,104,111,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_Out(2) ,765,112,119,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_Out(3) ,765,120,127,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_Out(4) ,765,128,135,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_Out(5) ,765,136,143,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_Out(6) ,765,144,151,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_Out(7) ,765,152,159,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP1_SwOFF_Out(8) ,765,160,167,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_In(0) ,765,168,175,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_In(1) ,765,176,183,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_In(2) ,765,184,191,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_In(3) ,765,192,199,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_In(4) ,765,200,207,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_In(5) ,765,208,215,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_In(6) ,765,216,223,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_In(7) ,765,224,231,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_In(8) ,765,232,239,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_Out(0) ,765,240,247,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_Out(1) ,765,248,255,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_Out(2) ,765,256,263,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_Out(3) ,765,264,271,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_Out(4) ,765,272,279,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_Out(5) ,765,280,287,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_Out(6) ,765,288,295,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_Out(7) ,765,296,303,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP2_SwOFF_Out(8) ,765,304,311,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_In(0) ,765,312,319,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_In(1) ,765,320,327,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_In(2) ,765,328,335,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_In(3) ,765,336,343,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_In(4) ,765,344,351,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_In(5) ,765,352,359,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_In(6) ,765,360,367,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_In(7) ,765,368,375,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_In(8) ,765,376,383,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_Out(0) ,765,384,391,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_Out(1) ,765,392,399,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_Out(2) ,765,400,407,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_Out(3) ,765,408,415,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_Out(4) ,765,416,423,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_Out(5) ,765,424,431,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_Out(6) ,765,432,439,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_Out(7) ,765,440,447,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP3_SwOFF_Out(8) ,765,448,455,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_In(0) ,765,456,463,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_In(1) ,765,464,471,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_In(2) ,765,472,479,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_In(3) ,765,480,487,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_In(4) ,765,488,495,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_In(5) ,765,496,503,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_In(6) ,765,504,511,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_In(7) ,765,512,519,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_In(8) ,765,520,527,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_Out(0) ,765,528,535,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_Out(1) ,765,536,543,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_Out(2) ,765,544,551,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_Out(3) ,765,552,559,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_Out(4) ,765,560,567,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_Out(5) ,765,568,575,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_Out(6) ,765,576,583,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_Out(7) ,765,584,591,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP4_SwOFF_Out(8) ,765,592,599,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_In(0) ,765,600,607,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_In(1) ,765,608,615,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_In(2) ,765,616,623,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_In(3) ,765,624,631,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_In(4) ,765,632,639,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_In(5) ,765,640,647,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_In(6) ,765,648,655,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_In(7) ,765,656,663,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_In(8) ,765,664,671,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_Out(0) ,765,672,679,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_Out(1) ,765,680,687,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_Out(2) ,765,688,695,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_Out(3) ,765,696,703,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_Out(4) ,765,704,711,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_Out(5) ,765,712,719,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_Out(6) ,765,720,727,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_Out(7) ,765,728,735,1,40,0,°C,211F,611F,ff,PTC_03_C1D_HysCTP5_SwOFF_Out(8) ,765,16,47,1,0,0,,2121,6121,4ff,mileage of BCM reset a ,765,48,79,1,0,0,,2121,6121,4ff,mileage of BCM reset b ,765,80,111,1,0,0,,2121,6121,4ff,mileage of BCM reset c ,765,112,143,1,0,0,,2121,6121,4ff,mileage of BCM reset d ,765,144,175,1,0,0,,2121,6121,4ff,mileage of BCM reset e ,765,16,151,1,0,0,,2122,6122,2ff,V.I.N. in ASCII ,765,152,167,1,0,0,,2122,6122,4ff,CRC ,765,16,47,1,0,0,,2123,6123,4ff,SSREH_SAV61_CUR_ABSOLUTE_TIME ,765,48,55,1,0,0,,2123,6123,ff,SSREH_SAV61_INDEX_NUMBER ,765,56,87,1,0,0,,2123,6123,4ff,SSREH_SAV61_ABSOLUTE_TIME(0) ,765,88,119,1,0,0,,2123,6123,4ff,SSREH_SAV61_DISTANCE_TOTALIZER(0) ,765,120,127,1,0,0,,2123,6123,ff,SSREH_SAV61_AUTO_START_AUTHORIZATION(0),0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,128,135,1,0,0,,2123,6123,ff,SSREH_SAV61_ENGINE_STOP_ORIGIN(0),1:BY_NORMAL_SYSTEM;2:BY_NORMAL_DRIVER;3:NO_STOP_REQUEST;4:BY_EMERGENCY;0:BY_OTHER_REQUEST ,765,136,143,1,0,0,,2123,6123,ff,SSREH_SAV61_S_AN_S_CRANKING_FAILURE_CS(0) ,765,144,151,1,0,0,,2123,6123,ff,SSREH_SAV61_VEHICLE_STATE(0),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,152,183,1,0,0,,2123,6123,4ff,SSREH_SAV61_ABSOLUTE_TIME(1) ,765,184,215,1,0,0,,2123,6123,4ff,SSREH_SAV61_DISTANCE_TOTALIZER(1) ,765,216,223,1,0,0,,2123,6123,ff,SSREH_SAV61_AUTO_START_AUTHORIZATION(1),0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,224,231,1,0,0,,2123,6123,ff,SSREH_SAV61_ENGINE_STOP_ORIGIN(1),1:BY_NORMAL_SYSTEM;2:BY_NORMAL_DRIVER;3:NO_STOP_REQUEST;4:BY_EMERGENCY;0:BY_OTHER_REQUEST ,765,232,239,1,0,0,,2123,6123,ff,SSREH_SAV61_S_AN_S_CRANKING_FAILURE_CS(1) ,765,240,247,1,0,0,,2123,6123,ff,SSREH_SAV61_VEHICLE_STATE(1),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,248,279,1,0,0,,2123,6123,4ff,SSREH_SAV61_ABSOLUTE_TIME(2) ,765,280,311,1,0,0,,2123,6123,4ff,SSREH_SAV61_DISTANCE_TOTALIZER(2) ,765,312,319,1,0,0,,2123,6123,ff,SSREH_SAV61_AUTO_START_AUTHORIZATION(2),0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,320,327,1,0,0,,2123,6123,ff,SSREH_SAV61_ENGINE_STOP_ORIGIN(2),1:BY_NORMAL_SYSTEM;2:BY_NORMAL_DRIVER;3:NO_STOP_REQUEST;4:BY_EMERGENCY;0:BY_OTHER_REQUEST ,765,328,335,1,0,0,,2123,6123,ff,SSREH_SAV61_S_AN_S_CRANKING_FAILURE_CS(2) ,765,336,343,1,0,0,,2123,6123,ff,SSREH_SAV61_VEHICLE_STATE(2),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,344,375,1,0,0,,2123,6123,4ff,SSREH_SAV61_ABSOLUTE_TIME(3) ,765,376,407,1,0,0,,2123,6123,4ff,SSREH_SAV61_DISTANCE_TOTALIZER(3) ,765,408,415,1,0,0,,2123,6123,ff,SSREH_SAV61_AUTO_START_AUTHORIZATION(3),0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,416,423,1,0,0,,2123,6123,ff,SSREH_SAV61_ENGINE_STOP_ORIGIN(3),1:BY_NORMAL_SYSTEM;2:BY_NORMAL_DRIVER;3:NO_STOP_REQUEST;4:BY_EMERGENCY;0:BY_OTHER_REQUEST ,765,424,431,1,0,0,,2123,6123,ff,SSREH_SAV61_S_AN_S_CRANKING_FAILURE_CS(3) ,765,432,439,1,0,0,,2123,6123,ff,SSREH_SAV61_VEHICLE_STATE(3),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,440,471,1,0,0,,2123,6123,4ff,SSREH_SAV61_ABSOLUTE_TIME(4) ,765,472,503,1,0,0,,2123,6123,4ff,SSREH_SAV61_DISTANCE_TOTALIZER(4) ,765,504,511,1,0,0,,2123,6123,ff,SSREH_SAV61_AUTO_START_AUTHORIZATION(4),0:START_AUTO_AUTHORIZATION_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FORBIDDEN_DEFINITIVELY;3:START_AUTO_FORBIDDEN_TEMPORARY ,765,512,519,1,0,0,,2123,6123,ff,SSREH_SAV61_ENGINE_STOP_ORIGIN(4),1:BY_NORMAL_SYSTEM;2:BY_NORMAL_DRIVER;3:NO_STOP_REQUEST;4:BY_EMERGENCY;0:BY_OTHER_REQUEST ,765,520,527,1,0,0,,2123,6123,ff,SSREH_SAV61_S_AN_S_CRANKING_FAILURE_CS(4) ,765,528,535,1,0,0,,2123,6123,ff,SSREH_SAV61_VEHICLE_STATE(4),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,16,18,1,0,0,wipes,2124,6124,ff,RR_WIPER_PROLONGATION_WIPES_TP ,765,19,21,1,0,0,sec,2124,6124,ff,REAR_DROP_WIPE_TM_TP ,765,24,31,1,0,0,sec,2124,6124,ff,REAR_WIPER_COOL_OFF_TM_TP ,765,32,35,1,0,0,sec,2124,6124,ff,REAR_WIPER_INT_PERIOD_TP ,765,36,39,100,0,0,ms,2124,6124,ff,REVERSE_DELAY_TIME_TP ,765,40,43,100,0,0,ms,2124,6124,ff,RR_AUTO_STOP_DISREGARD_TM_TP ,765,44,46,100,0,0,ms,2124,6124,ff,WASHER_HOLD_TIME_TM_TP ,765,48,55,10,0,0,km/h,2124,6124,ff,REAR_WIPER_OVERSPEED_THRESH_TP ,765,16,23,1,0,0,sec,2125,6125,ff,FMH_TM_TP ,765,24,31,1,0,0,sec,2125,6125,ff,FMH_INCREMENT_ENABLED_TM_TP ,765,32,34,1,0,0,min,2125,6125,ff,FMH_MAX_TM_TP ,765,35,39,50,0,0,ms,2125,6125,ff,SW_AUTO_TO_MANUAL_TM_TP ,765,40,40,1,0,0,,2125,6125,ff,LIGHT_SENSOR_CF,1:South;0:North ,765,44,47,500,0,0,ms,2125,6125,ff,ALS_REQUEST_FALL_FILTER_TM_TP ,765,48,55,1,0,0,sec,2125,6125,ff,REMOTE_LIGHTING_TM_TP ,765,56,57,1,0,0,,2125,6125,ff,AUTO_LIGHT_SENSITIVITY_TP,0:Low;1:Low Medium;2:Medium High;3:High ,765,64,71,100,0,0,ms,2125,6125,ff,SENSOR_FAILURE_FILTER_TM_TP ,765,75,79,50,0,0,ms,2125,6125,ff,LCS_OVERLAP_TM_TP ,765,80,87,20,0,0,ms,2125,6125,ff,CSW_INHIBIT_AFTER_RESET_TM_TP ,765,16,23,1,0,0,sec,2126,6126,ff,INTERIOR_LIGHTS_TM_TP ,765,24,31,100,0,0,ms,2126,6126,ff,TURN_ON_TIME ,765,32,39,100,0,0,ms,2126,6126,ff,TURN_OFF_TIME ,765,40,47,1,0,0,%,2126,6126,ff,AMBIANCE_LIGHTS_DIM_TP ,765,48,55,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_100_TP ,765,56,63,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_90_TP ,765,64,71,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_80_TP ,765,72,79,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_70_TP ,765,80,87,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_60_TP ,765,88,95,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_50_TP ,765,96,103,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_40_TP ,765,104,111,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_30_TP ,765,112,119,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_20_TP ,765,120,127,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_10_TP ,765,128,135,1,0,0,%,2126,6126,ff,RHEOSTAT_TO_AMBIANCE_0_TP ,765,136,143,1,0,0,%,2126,6126,ff,INT_LIGHTS_PWM_MAX_TP ,765,144,151,1,0,0,%,2126,6126,ff,INT_LIGHTS_PWM_MIN_TP ,765,16,23,5,0,0,ms,2127,6127,ff,FLASHING_ON_TIME_TP ,765,24,27,1,0,0,sec,2127,6127,ff,ALARM_WARNING_HOLD_TM_TP ,765,32,39,1,0,0,sec,2127,6127,ff,PRECONDITIONING_FLASH_TM_TP ,765,40,55,10,0,0,ms,2127,6127,ff,PULSE_TURN_SW_TM_TP ,765,16,19,1,0,0,sec,2128,6128,ff,AFTER_EMERGENCY_ENG_STOP_TM_TP ,765,24,31,1,0,0,sec,2128,6128,ff,AUTHENT_BYPAS_AFTER_STALL_TM_TP ,765,32,39,1,0,0,sec,2128,6128,ff,CRANKING_VERLOG_INHIB_TM_TP ,765,40,47,1,0,0,sec,2128,6128,ff,APB_SYNC_TM_TP ,765,64,67,1,0,0,sec,2128,6128,ff,DELAYED_L2_OFF_TM_TP ,765,68,71,1,0,0,sec,2128,6128,ff,DELAYED_L3_OFF_TM_TP ,765,72,75,1,0,0,sec,2128,6128,ff,ENG_RAC_INCREMENT_TM_TP ,765,76,79,1,0,0,time,2128,6128,ff,ENG_RAC_INC_EACH_START_REQ_TP ,765,80,83,1,0,0,sec,2128,6128,ff,ENG_RAC_INC_LONG_START_PRESS_TP ,765,84,87,1,0,0,time,2128,6128,ff,ENG_RAC_START_COUNT_THRESH_TP ,765,88,91,100,0,0,ms,2128,6128,ff,ESCL_VIRTUAL_UNLOCKING_TM_TP ,765,92,95,100,0,0,ms,2128,6128,ff,ESCL_VIRTUAL_LOCKING_TM_TP ,765,104,111,1,0,0,min,2128,6128,ff,LONG_DELAYED_L1_TM_TP ,765,112,115,1,0,0,sec,2128,6128,ff,LONG_START_PRESS_TM_TP ,765,116,119,1,0,0,sec,2128,6128,ff,MAX_AUTHENTICATION_TM_TP ,765,120,123,1,0,0,sec,2128,6128,ff,MAX_COLUMN_LOCK_CONDITION_TM_TP ,765,128,135,50,0,0,ms,2128,6128,ff,MAX_CRANK_ON_VERLOG_NOK_TM_TP ,765,136,139,1,0,0,sec,2128,6128,ff,MAX_CUST_CONFIRM_ENG_STOP_TM_TP ,765,140,143,1,0,0,sec,2128,6128,ff,MAX_ENGINE_RESTART_TM_TP ,765,144,151,1,0,0,sec,2128,6128,ff,MAX_ENGINE_START_SEQ_TM_TP ,765,152,155,1,0,0,sec,2128,6128,ff,MAX_ENGINE_STOP_TM_TP ,765,156,159,100,0,0,ms,2128,6128,ff,NEUTRAL_CONTACT_CONFIRM_TM_TP ,765,160,167,1,0,0,min,2128,6128,ff,MAX_NO_CUSTOMER_ACTION_TM_TP ,765,168,171,1,0,0,min,2128,6128,ff,MAX_R_L3_BY_CUSTOMER_REQ_TM_TP ,765,172,175,1,0,0,sec,2128,6128,ff,MAX_STEERING_LOCK_ANSWER_TM_TP ,765,176,179,1,0,0,sec,2128,6128,ff,MAX_STEER_UNLOCK_ANSWER_TM_TP ,765,180,183,1,0,0,km/h,2128,6128,ff,R_L3_SPEED_HYSTERESIS_TP ,765,184,187,1,0,0,min,2128,6128,ff,SHORT_DELAYED_L1_TM_TP ,765,188,191,100,0,0,ms,2128,6128,ff,ENGINE_STOP_DRV_REQUEST_TM_TP ,765,192,195,1,0,0,time,2128,6128,ff,START_BTN_MAX_VALUE_TP ,765,196,199,1,0,0,time,2128,6128,ff,START_BTN_UNAVAILABLE_VALUE_TP ,765,200,203,1,0,0,km/h,2128,6128,ff,VEHICLE_STOPPED_THRESH_TP ,765,208,215,10,0,0,ms,2128,6128,ff,RESTART_DELAY_TM_TP ,765,16,23,10,0,0,ms,2129,6129,ff,DOORLOCK_ACTUATORS_TIME_TP ,765,24,27,1,0,0,sec,2129,6129,ff,FORCE_CDL_LOCK_TM_TP ,765,32,39,1,0,0,min,2129,6129,ff,LONG_CDL_INDICATOR_TM_TP ,765,40,47,1,0,0,Volt,2129,6129,ff,LWS_BATT_VOLTAGE_THRESH_TP ,765,48,51,1,0,0,time,2129,6129,ff,MAX_NB_LOCK_REQUESTS_BY_LWS_TP ,765,56,63,10,0,0,ms,2129,6129,ff,PAUSE_TIME_TP ,765,64,71,1,0,0,sec,2129,6129,ff,SHORT_CDL_INDICATOR_TM_TP ,765,72,79,1,0,0,sec,2129,6129,ff,LWS_SPEED_ABOVE_THRESH_TM_TP ,765,80,87,1,0,0,sec,2129,6129,ff,SUPERLOCK_TM_TP ,765,88,95,10,0,0,ms,2129,6129,ff,TAILGATE_RELEASE_TIME_TP ,765,96,103,10,0,0,ms,2129,6129,ff,MAX_WAIT_BATT_SUPPLY_AVAILABLE_TM_TP ,765,112,119,1,0,0,km/h,2129,6129,ff,DOOR_WARNING_SPEED_THRESH_TP ,765,136,143,1,0,0,sec,2129,6129,ff,ANTI_HIJACK_TM_TP ,765,144,151,1,0,0,sec,2129,6129,ff,DL_DISABLED_AFTER_CRASH_TM_TP ,765,152,159,10,0,0,ms,2129,6129,ff,MOTOR_SYNCHRONIZATION_TM_TP ,765,160,167,1,0,0,time,2129,6129,ff,NUMBER_DISABLE_TP ,765,168,175,1,0,0,time,2129,6129,ff,NUMBER_ENABLE_TP ,765,176,183,1,0,0,sec,2129,6129,ff,TIME_DECREMENT_TP ,765,184,191,10,0,0,ms,2129,6129,ff,GLASSHATCH_RELEASE_TIME_TP ,765,192,199,1,0,0,sec,2129,6129,ff,RETRY_CHILDLOCK_TM_TP ,765,200,207,10,0,0,ms,2129,6129,ff,MASTER_RELAY_SYNCHRO_TM_TP ,765,208,215,1,0,0,time,2129,6129,ff,DOORLOCK_CHILDLOCK_NLIM_TP ,765,224,231,100,0,0,ms,2129,6129,ff,CHILDLOCK_REQ_RELEASE_TIME_TP ,765,232,239,1,0,0,time,2129,6129,ff,MAX_NB_DOOR_WARNING_REQUEST_TP ,765,240,247,1,0,0,sec,2129,6129,ff,CHANGE_LOCK_W_SPEED_TM_TP ,765,248,252,10,0,0,ms,2129,6129,ff,CAN_LSFT_WAKEUP_DELAY_TP ,765,256,259,1,0,0,sec,2129,6129,ff,DL_MAX_AIRBAG_WAKE_UP_TM_TP ,765,264,271,1,0,0,km/h,2129,6129,ff,MASTER_DOOR_SPEED_THRESH_TP ,765,272,279,1,0,0,km/h,2129,6129,ff,LWS_SPEED_THRESH_TP ,765,280,287,1,0,0,km/h,2129,6129,ff,HIGH_LWS_SPEED_THRESH_TP ,765,288,295,10,0,0,ms,2129,6129,ff,OPEN_ASDM_SYNCHRONIZATION_TM_TP ,765,296,303,100,0,0,ms,2129,6129,ff,CAN_SHORT_PRESS_TM_TP ,765,304,311,10,0,0,ms,2129,6129,ff,CAN_LONG_PRESS_TM_TP ,765,312,319,10,0,0,ms,2129,6129,ff,CAN_PAUSE_TM_TP ,765,320,327,10,0,0,ms,2129,6129,ff,CAN_EVENT_TM_TP ,765,328,335,10,0,0,ms,2129,6129,ff,CHILDLOCK_FAILURE_TM_TP ,765,16,23,100,0,0,ms,212A,612A,ff,CARD_OUT_OF_READER_CONF_TM_TP ,765,24,31,100,0,0,ms,212A,612A,ff,CLUSTER_AND_MM_DISP_ON_TM_TP ,765,32,39,1,0,0,sec,212A,612A,ff,MAX_ABSENT_CARD_ARMED_TM_TP ,765,40,47,1,0,0,sec,212A,612A,ff,MAX_CARD_IN_READER_ARMED_TM_TP ,765,56,63,100,0,0,ms,212A,612A,ff,SKID_REEMISSION_REQUEST_TM_TP ,765,64,71,1,0,0,sec,212A,612A,ff,USM_ABSENT_CONFIRMATION_TM_TP ,765,72,79,1,0,0,km/h,212A,612A,ff,VHL_SPEED_THRESH_ABSENT_CARD_TP ,765,80,87,1,0,0,km/h,212A,612A,ff,VHL_SPEED_THRESH_PARK_POS_TM_TP ,765,88,95,1,0,0,sec,212A,612A,ff,WELCOME_FAILURE_Y_TM_TP ,765,96,99,1,0,0,sec,212A,612A,ff,ABS_CARD_MAJOR_W_POLLING_TM_TP ,765,100,103,1,0,0,time,212A,612A,ff,ABS_CARD_WARNING_POLLING_TP ,765,108,108,1,0,0,,212A,612A,ff,NEUTRAL_CONTACT_FAILURE_S,0:OK;1:Failure present ,765,109,109,1,0,0,,212A,612A,ff,CLUTCHEND_ALWAYS_SEEN_TFAIL_S,0:OK;1:Failure present ,765,110,110,1,0,0,,212A,612A,ff,BRAKE_INFO_DOUBLE_FAILURE_S,0:OK;1:Failure present ,765,111,111,1,0,0,,212A,612A,ff,ABSENT_CARD_WARNING_CF,0:without;1:with ,765,16,23,1,0,0,sec,212B,612B,ff,DELAYED_CAN_LSFT_ON_TM_TP ,765,24,31,1,0,0,sec,212B,612B,ff,DELAYED_CAN_V_CUSTOMER_ON_TM_TP ,765,32,39,1,0,0,sec,212B,612B,ff,MAX_TIME_WAKE_UP_BY_WIRE_TM_TP ,765,40,47,1,0,0,min,212B,612B,ff,GLOBAL_TIMER_INCREMENT_TM_TP ,765,48,55,1,0,0,hour,212B,612B,ff,GLOBAL_TIMER_TM_TP ,765,64,71,1,0,0,sec,212B,612B,ff,USM_WAKE_UP_MAX_TM_TP ,765,72,79,75,0,0,ms,212B,612B,ff,WIRED_WAKE_UP_TM_TP ,765,80,87,10,0,0,ms,212B,612B,ff,SCH_INTERFRAMES_TM_TP ,765,88,88,1,0,0,,212B,612B,ff,I_EXT_WAKE_UP,1:on;0:off ,765,89,89,1,0,0,,212B,612B,ff,I_EXT_WAKE_UP_IO_CF,0:without;1:with ,765,96,111,1,0,0,min,212B,612B,ff,TECH_CAN_V_BY_GLOBAL_TM_TP ,765,16,47,100,0,0,ms,212C,612C,1ff,current Historic_Timer value ,765,48,55,1,0,0,,212C,612C,ff,Current index of Major Warning historic ,765,56,87,100,0,0,ms,212C,612C,1ff,Histo 0 Historic_Timer value ,765,88,119,1,0,0,km,212C,612C,1ff,Histo 0 Distance totalizer ,765,120,135,.01,0,2,km/h,212C,612C,ff,Histo 0 Vehicle speed ,765,136,151,.01,0,2,km/h,212C,612C,ff,Histo 0 Previous vehicle speed from CAN layer ,765,152,167,1,0,0,km/h,212C,612C,ff,Histo 0 Previous vehicle speed from vehicle speed layer ,765,168,183,.01,0,2,km/h,212C,612C,ff,Histo 0 Current vehicle speed from CAN layer ,765,184,199,1,0,0,km/h,212C,612C,ff,Histo 0 Current vehicle speed from vehicle speed layer ,765,200,207,1,0,0,,212C,612C,ff,Histo 0 Previous BRAKE CAN node status ,765,208,215,1,0,0,,212C,612C,ff,Histo 0 Previous Vehicle speed on CAN available or not ,765,216,223,1,0,0,,212C,612C,ff,Histo 0 Current BRAKE CAN node status ,765,224,231,1,0,0,,212C,612C,ff,Histo 0 Current Vehicle speed on CAN available or not ,765,232,263,100,0,0,ms,212C,612C,1ff,Histo 1 Historic_Timer value ,765,264,295,1,0,0,km,212C,612C,1ff,Histo 1 Distance totalizer ,765,296,311,.01,0,2,km/h,212C,612C,ff,Histo 1 Vehicle speed ,765,312,327,.01,0,2,km/h,212C,612C,ff,Histo 1 Previous vehicle speed from CAN layer ,765,328,343,1,0,0,km/h,212C,612C,ff,Histo 1 Previous vehicle speed from vehicle speed layer ,765,344,359,.01,0,2,km/h,212C,612C,ff,Histo 1 Current vehicle speed from CAN layer ,765,360,375,1,0,0,km/h,212C,612C,ff,Histo 1 Current vehicle speed from vehicle speed layer ,765,376,383,1,0,0,,212C,612C,ff,Histo 1 Previous BRAKE CAN node status ,765,384,391,1,0,0,,212C,612C,ff,Histo 1 Previous Vehicle speed on CAN available or not ,765,392,399,1,0,0,,212C,612C,ff,Histo 1 Current BRAKE CAN node status ,765,400,407,1,0,0,,212C,612C,ff,Histo 1 Current Vehicle speed on CAN available or not ,765,408,439,100,0,0,ms,212C,612C,1ff,Histo 2 Historic_Timer value ,765,440,471,1,0,0,km,212C,612C,1ff,Histo 2 Distance totalizer ,765,472,487,.01,0,2,km/h,212C,612C,ff,Histo 2 Vehicle speed ,765,488,503,.01,0,2,km/h,212C,612C,ff,Histo 2 Previous vehicle speed from CAN layer ,765,504,519,1,0,0,km/h,212C,612C,ff,Histo 2 Previous vehicle speed from vehicle speed layer ,765,520,535,.01,0,2,km/h,212C,612C,ff,Histo 2 Current vehicle speed from CAN layer ,765,536,551,1,0,0,km/h,212C,612C,ff,Histo 2 Current vehicle speed from vehicle speed layer ,765,552,559,1,0,0,,212C,612C,ff,Histo 2 Previous BRAKE CAN node status ,765,560,567,1,0,0,,212C,612C,ff,Histo 2 Previous Vehicle speed on CAN available or not ,765,568,575,1,0,0,,212C,612C,ff,Histo 2 Current BRAKE CAN node status ,765,576,583,1,0,0,,212C,612C,ff,Histo 2 Current Vehicle speed on CAN available or not ,765,584,615,100,0,0,ms,212C,612C,1ff,Histo 3 Historic_Timer value ,765,616,647,1,0,0,km,212C,612C,1ff,Histo 3 Distance totalizer ,765,648,663,.01,0,2,km/h,212C,612C,ff,Histo 3 Vehicle speed ,765,664,679,.01,0,2,km/h,212C,612C,ff,Histo 3 Previous vehicle speed from CAN layer ,765,680,695,1,0,0,km/h,212C,612C,ff,Histo 3 Previous vehicle speed from vehicle speed layer ,765,696,711,.01,0,2,km/h,212C,612C,ff,Histo 3 Current vehicle speed from CAN layer ,765,712,727,1,0,0,km/h,212C,612C,ff,Histo 3 Current vehicle speed from vehicle speed layer ,765,728,735,1,0,0,,212C,612C,ff,Histo 3 Previous BRAKE CAN node status ,765,736,743,1,0,0,,212C,612C,ff,Histo 3 Previous Vehicle speed on CAN available or not ,765,744,751,1,0,0,,212C,612C,ff,Histo 3 Current BRAKE CAN node status ,765,752,759,1,0,0,,212C,612C,ff,Histo 3 Current Vehicle speed on CAN available or not ,765,760,791,100,0,0,ms,212C,612C,1ff,Histo 4 Historic_Timer value ,765,792,823,1,0,0,km,212C,612C,1ff,Histo 4 Distance totalizer ,765,824,839,.01,0,2,km/h,212C,612C,ff,Histo 4 Vehicle speed ,765,840,855,.01,0,2,km/h,212C,612C,ff,Histo 4 Previous vehicle speed from CAN layer ,765,856,871,1,0,0,km/h,212C,612C,ff,Histo 4 Previous vehicle speed from vehicle speed layer ,765,872,887,.01,0,2,km/h,212C,612C,ff,Histo 4 Current vehicle speed from CAN layer ,765,888,903,1,0,0,km/h,212C,612C,ff,Histo 4 Current vehicle speed from vehicle speed layer ,765,904,911,1,0,0,,212C,612C,ff,Histo 4 Previous BRAKE CAN node status ,765,912,919,1,0,0,,212C,612C,ff,Histo 4 Previous Vehicle speed on CAN available or not ,765,920,927,1,0,0,,212C,612C,ff,Histo 4 Current BRAKE CAN node status ,765,928,935,1,0,0,,212C,612C,ff,Histo 4 Current Vehicle speed on CAN available or not ,765,16,47,1,0,0,,212D,612D,4ff,SSREH_SAV62_CUR_ABSOLUTE_TIME ,765,48,55,1,0,0,,212D,612D,ff,SSREH_SAV62_INDEX_NUMBER ,765,56,87,1,0,0,,212D,612D,4ff,SSREH_SAV62_ABSOLUTE_TIME(0) ,765,88,119,1,0,0,,212D,612D,4ff,SSREH_SAV62_DISTANCE_TOTALIZER(0) ,765,120,127,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_MIN_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,128,135,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_MAX_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,136,143,1,0,0,,212D,612D,ff,SSREH_SAV62_NEUTRAL_CONTACT_STATUS(0),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,144,144,1,0,0,,212D,612D,ff,SSREH_SAV62_IGNITION_SUPPLY_CONFIRMED(0),1:true;0:false ,765,152,159,1,0,0,,212D,612D,ff,SSREH_SAV62_APB_REQUEST(0),0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,160,167,1,0,0,,212D,612D,ff,SSREH_SAV62_VEHICLE_STATE(0),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,168,168,1,0,0,,212D,612D,ff,SSREH_SAV62_VEHICLE_STATE_STOP_START_EXTENSION(0),1:true;0:false ,765,176,183,1,0,0,,212D,612D,ff,SSREH_SAV62_S_AN_S_CRANKING_FAILURE_CS(0) ,765,184,215,1,0,0,,212D,612D,4ff,SSREH_SAV62_ABSOLUTE_TIME(1) ,765,216,247,1,0,0,,212D,612D,4ff,SSREH_SAV62_DISTANCE_TOTALIZER(1) ,765,248,255,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_MIN_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,256,263,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_MAX_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,264,271,1,0,0,,212D,612D,ff,SSREH_SAV62_NEUTRAL_CONTACT_STATUS(1),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,272,272,1,0,0,,212D,612D,ff,SSREH_SAV62_IGNITION_SUPPLY_CONFIRMED(1),1:true;0:false ,765,280,287,1,0,0,,212D,612D,ff,SSREH_SAV62_APB_REQUEST(1),0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,288,295,1,0,0,,212D,612D,ff,SSREH_SAV62_VEHICLE_STATE(1),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,296,296,1,0,0,,212D,612D,ff,SSREH_SAV62_VEHICLE_STATE_STOP_START_EXTENSION(1),1:true;0:false ,765,304,311,1,0,0,,212D,612D,ff,SSREH_SAV62_S_AN_S_CRANKING_FAILURE_CS(1) ,765,312,343,1,0,0,,212D,612D,4ff,SSREH_SAV62_ABSOLUTE_TIME(2) ,765,344,375,1,0,0,,212D,612D,4ff,SSREH_SAV62_DISTANCE_TOTALIZER(2) ,765,376,383,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_MIN_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,384,391,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_MAX_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,392,399,1,0,0,,212D,612D,ff,SSREH_SAV62_NEUTRAL_CONTACT_STATUS(2),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,400,400,1,0,0,,212D,612D,ff,SSREH_SAV62_IGNITION_SUPPLY_CONFIRMED(2),1:true;0:false ,765,408,415,1,0,0,,212D,612D,ff,SSREH_SAV62_APB_REQUEST(2),0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,416,423,1,0,0,,212D,612D,ff,SSREH_SAV62_VEHICLE_STATE(2),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,424,424,1,0,0,,212D,612D,ff,SSREH_SAV62_VEHICLE_STATE_STOP_START_EXTENSION(2),1:true;0:false ,765,432,439,1,0,0,,212D,612D,ff,SSREH_SAV62_S_AN_S_CRANKING_FAILURE_CS(2) ,765,440,471,1,0,0,,212D,612D,4ff,SSREH_SAV62_ABSOLUTE_TIME(3) ,765,472,503,1,0,0,,212D,612D,4ff,SSREH_SAV62_DISTANCE_TOTALIZER(3) ,765,504,511,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_MIN_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,512,519,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_MAX_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,520,527,1,0,0,,212D,612D,ff,SSREH_SAV62_NEUTRAL_CONTACT_STATUS(3),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,528,528,1,0,0,,212D,612D,ff,SSREH_SAV62_IGNITION_SUPPLY_CONFIRMED(3),1:true;0:false ,765,536,543,1,0,0,,212D,612D,ff,SSREH_SAV62_APB_REQUEST(3),0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,544,551,1,0,0,,212D,612D,ff,SSREH_SAV62_VEHICLE_STATE(3),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,552,552,1,0,0,,212D,612D,ff,SSREH_SAV62_VEHICLE_STATE_STOP_START_EXTENSION(3),1:true;0:false ,765,560,567,1,0,0,,212D,612D,ff,SSREH_SAV62_S_AN_S_CRANKING_FAILURE_CS(3) ,765,568,599,1,0,0,,212D,612D,4ff,SSREH_SAV62_ABSOLUTE_TIME(4) ,765,600,631,1,0,0,,212D,612D,4ff,SSREH_SAV62_DISTANCE_TOTALIZER(4) ,765,632,639,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_MIN_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,640,647,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_MAX_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,648,655,1,0,0,,212D,612D,ff,SSREH_SAV62_NEUTRAL_CONTACT_STATUS(4),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,656,656,1,0,0,,212D,612D,ff,SSREH_SAV62_IGNITION_SUPPLY_CONFIRMED(4),1:true;0:false ,765,664,671,1,0,0,,212D,612D,ff,SSREH_SAV62_APB_REQUEST(4),0:NO_REQUEST_IN_PROGRESS;1:TIGHTENING_IN_PROGRESS;2:RELEASE_IN_PROGRESS;3:APB_NOT_USED ,765,672,679,1,0,0,,212D,612D,ff,SSREH_SAV62_VEHICLE_STATE(4),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,680,680,1,0,0,,212D,612D,ff,SSREH_SAV62_VEHICLE_STATE_STOP_START_EXTENSION(4),1:true;0:false ,765,688,695,1,0,0,,212D,612D,ff,SSREH_SAV62_S_AN_S_CRANKING_FAILURE_CS(4) ,765,696,703,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_AUTO_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,704,711,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_AUTO_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,712,719,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_AUTO_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,720,727,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_AUTO_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,728,735,1,0,0,,212D,612D,ff,SSREH_SAV62_CLUTCH_SW_AUTO_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,16,16,1,0,0,,2133,6133,ff,BRAKE_FAIL1_DETECTION_CF,0:without;1:with ,765,17,17,1,0,0,,2133,6133,ff,BRAKE_FAIL2_DETECTION_CF,0:without;1:with ,765,18,18,1,0,0,,2133,6133,ff,STOP_LAMP_ELEC_FAIL_DETECT_CF,0:without;1:with ,765,19,19,1,0,0,,2133,6133,ff,O_STOP_LAMP,1:on;0:off ,765,20,20,1,0,0,,2133,6133,ff,O_STOP_LAMP2,1:on;0:off ,765,21,21,1,0,0,,2133,6133,ff,O_STOP_LAMP3,1:on;0:off ,765,24,31,1,0,0,-,2133,6133,ff,NB_TRANS_BRAKE_FAIL1_TP ,765,32,39,1,0,0,-,2133,6133,ff,NB_TRANS_BRAKE_FAIL2_TP ,765,40,47,100,0,0,ms,2133,6133,ff,DURATION_BRAKE_PRESS_TM_TP ,765,48,55,5,0,0,min,2133,6133,ff,DURATION_FROZEN_BRAKE_SW_TM_TP ,765,56,63,1,0,0,min,2133,6133,ff,MIN_STEP_FROZEN_BRAKE_SW_TM_TP ,765,16,16,1,0,0,,2134,6134,ff,INFOCLUTCH_DIAG_START_DYN_CF,0:without;1:with ,765,17,17,1,0,0,,2134,6134,ff,INFOCLUTCH_DIAG_END_DYN_CF,0:without;1:with ,765,18,18,1,0,0,,2134,6134,ff,INFOCLUTCH_DIAG_START_STATIC_CF,0:without;1:with ,765,19,19,1,0,0,,2134,6134,ff,INFOCLUTCH_DIAG_END_STATIC_CF,0:without;1:with ,765,20,20,1,0,0,,2134,6134,ff,INFOCLUTCH_DIAG_AUTO_DYN_CF,0:without;1:with ,765,21,21,1,0,0,,2134,6134,ff,INFOCLUTCH_DIAG_AUTO_STATIC_CF,0:without;1:with ,765,24,31,1,0,0,km,2134,6134,ff,START_NEVER_PRESENT_DISTANCE_TP ,765,32,39,1,0,0,km,2134,6134,ff,END_ALWAYS_PRESENT_DISTANCE_TP ,765,40,47,1,0,0,hour,2134,6134,ff,START_ALWAYS_PRESENT_TM_TP ,765,48,55,1,0,0,hour,2134,6134,ff,END_ALWAYS_PRESENT_TM_TP ,765,56,63,100,0,0,ms,2134,6134,ff,CLUTCH_NO_FAIL_CONFIRM_TM_TP ,765,64,71,1,0,0,km,2134,6134,ff,AUTO_START_NEVER_PRESENT_DISTANCE_TP ,765,72,79,10,0,0,ms,2134,6134,ff,AUTOSTART_FILTER_TM_TP ,765,16,31,10,0,0,ms,2135,6135,ff,ESCL_AIRBAG_FRAME_ABSENT_TM_TP ,765,32,39,1,0,0,min,2135,6135,ff,ESCL_CRASH_INHIB_OFF_TM_TP ,765,40,55,10,0,0,ms,2135,6135,ff,ESCL_DEC_1_THERMAL_VALUE_TM_TP ,765,56,63,1,0,0,,2135,6135,ff,ESCL_INIT_THERMAL_VALUE_TP ,765,64,71,1,0,0,min,2135,6135,ff,IMMO_DURATION_AUTHORIZATION_ESCL_PAIRING_TM_TP ,765,72,87,.01,0,2,km/h,2135,6135,ff,ESCL_SPEED_FOR_INHIB_OFF_TP ,765,88,95,1,0,0,,2135,6135,ff,ESCL_THERMAL_PENALTY_INC_TP ,765,96,111,10,0,0,ms,2135,6135,ff,MAX_AIRBAG_WAKE_UP_TM_TP ,765,112,119,1,0,0,,2135,6135,ff,MAX_VALUE_THERMAL_PROTECTION_TP ,765,120,135,.1,0,1,Volt,2135,6135,ff,MAX_V_BAT_ESCL_LEARNING_TP ,765,136,151,.1,0,1,Volt,2135,6135,ff,MAX_V_BAT_ESCL_LOCK_TP ,765,152,167,.1,0,1,Volt,2135,6135,ff,MAX_V_BAT_ESCL_PWR_TP ,765,168,183,.1,0,1,Volt,2135,6135,ff,MAX_V_BAT_ESCL_UNLOCK_TP ,765,184,199,.1,0,1,Volt,2135,6135,ff,MIN_V_BAT_ESCL_LEARNING_TP ,765,200,215,.1,0,1,Volt,2135,6135,ff,MIN_V_BAT_ESCL_LOCK_TP ,765,216,231,.1,0,1,Volt,2135,6135,ff,MIN_V_BAT_ESCL_PWR_TP ,765,232,247,.1,0,1,Volt,2135,6135,ff,MIN_V_BAT_ESCL_UNLOCK_TP ,765,248,263,1,0,0,,2135,6135,4ff,NO_COMMAND_CODE_TP ,765,264,279,10,0,0,ms,2135,6135,ff,STLOCK_PERIOD_PWR_SPY_TM_TP ,765,280,287,1,0,0,min,2135,6135,ff,STLOCK_TANTICIPEE_TM_TP ,765,288,303,10,0,0,ms,2135,6135,ff,STLOCK_TAPP_TM_TP ,765,304,319,10,0,0,ms,2135,6135,ff,STLOCK_TA_TM_TP ,765,320,335,10,0,0,ms,2135,6135,ff,STLOCK_TCOSTA_TM_TP ,765,336,351,10,0,0,ms,2135,6135,ff,STLOCK_TD_T2_TM_TP ,765,352,359,10,0,0,ms,2135,6135,ff,STLOCK_TFTT1_TM_TP ,765,360,375,10,0,0,ms,2135,6135,ff,STLOCK_TINHIBITION_TM_TP ,765,376,391,10,0,0,ms,2135,6135,ff,STLOCK_TLFIN_TM_TP ,765,392,407,10,0,0,ms,2135,6135,ff,STLOCK_TNO_COMMAND_TM_TP ,765,408,423,10,0,0,ms,2135,6135,ff,STLOCK_TPENDLOCK_TM_TP ,765,424,439,10,0,0,ms,2135,6135,ff,STLOCK_TPLOCK_OFFAV_TM_TP ,765,440,447,10,0,0,ms,2135,6135,ff,STLOCK_TPOFFAV_TM_TP ,765,448,455,10,0,0,ms,2135,6135,ff,STLOCK_TPONAV_TM_TP ,765,456,471,10,0,0,ms,2135,6135,ff,STLOCK_TRT_AND_TSENSOR_TM_TP ,765,472,487,10,0,0,ms,2135,6135,ff,STLOCK_TTSUPPLIED_TM_TP ,765,488,503,10,0,0,ms,2135,6135,ff,STLOCK_TWTTS_TM_TP ,765,504,519,.1,0,1,Volt,2135,6135,ff,V_BAT_SPY_PWR_LIMIT_TP ,765,520,535,10,0,0,ms,2135,6135,ff,VEHICLE_STOP_CONFIRMATION_TM_TP ,765,536,551,10,0,0,ms,2135,6135,ff,STLOCK_TLOCKMAX_TM_TP ,765,552,567,10,0,0,ms,2135,6135,ff,STLOCK_FRAMEDELAY_TM_TP ,765,568,568,1,0,0,,2135,6135,ff,STLOCK_ECM_STATUS_LOCK_INHIB_TP,0:inactif;1:actif ,765,569,569,1,0,0,,2135,6135,ff,STLOCK_UNLOCK_EACH_TIME_TP,0:inactif;1:actif ,765,576,591,10,0,0,ms,2135,6135,ff,STLOCK_DIAG_MAINTAIN_REQ_TM_TP ,765,592,599,10,0,0,ms,2135,6135,ff,ESCL_SENSOR_LINE_IO_CTRL_TM_TP ,765,600,607,10,0,0,ms,2135,6135,ff,STLOCK_TEEPROM_TM_TP ,765,608,615,10,0,0,ms,2135,6135,ff,STLOCK_TVDISPO_TM_TP ,765,616,623,10,0,0,ms,2135,6135,ff,STLOCK_TAPCOFF_TM_TP ,765,624,631,1,0,0,,2135,6135,ff,ESCL_FILTER_DTC_TP ,765,632,647,10,0,0,ms,2135,6135,ff,STLOCK_LOCK_DELAY_TM_TP ,765,16,16,1,0,0,,2136,6136,ff,ALARM_PRESENT_CF,0:without;1:with ,765,16,31,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(0) ,765,32,47,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(1) ,765,48,63,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(2) ,765,64,79,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(3) ,765,80,95,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(4) ,765,96,111,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(5) ,765,112,127,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(6) ,765,128,143,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(7) ,765,144,159,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(8) ,765,160,175,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(9) ,765,176,191,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(10) ,765,192,207,1,0,0,ohms,2137,6137,ff,Rch_TP ,765,208,215,.4,0,1,-,2137,6137,ff,E_MAX_TP ,765,216,223,10,0,0,ms,2137,6137,ff,TEMPO_1_TP ,765,224,231,100,0,0,ms,2137,6137,ff,TEMPO_2_TP ,765,232,247,.1,0,1,ohms,2137,6137,ff,TAB_Rrh_MOLETTE_TP(11) ,765,16,22,.1,0,1,sec,2138,6138,ff,KH_WaitRearDefrostON ,765,24,30,.1,0,1,sec,2138,6138,ff,KH_WaitRearDefrostOFF ,765,32,38,.1,0,1,sec,2138,6138,ff,KH_RelayActiveMinTime ,765,40,47,.1,0,1,sec,2138,6138,ff,KH_WaitForEngineReady ,765,55,55,1,0,0,,2138,6138,ff,KH_EnableECMRequest,0:disable;1:enable ,765,56,63,1,40,0,°C,2138,6138,ff,C1D_TRearDefroster_In(0) ,765,64,71,1,40,0,°C,2138,6138,ff,C1D_TRearDefroster_In(1) ,765,72,79,1,40,0,°C,2138,6138,ff,C1D_TRearDefroster_In(2) ,765,80,87,1,40,0,°C,2138,6138,ff,C1D_TRearDefroster_In(3) ,765,88,95,1,40,0,°C,2138,6138,ff,C1D_TRearDefroster_In(4) ,765,96,103,1,40,0,°C,2138,6138,ff,C1D_TRearDefroster_In(5) ,765,104,111,1,40,0,°C,2138,6138,ff,C1D_TRearDefroster_In(6) ,765,112,119,1,40,0,°C,2138,6138,ff,C1D_TRearDefroster_In(7) ,765,120,127,10,0,0,sec,2138,6138,ff,C1D_TRearDefroster_Out(0) ,765,128,135,10,0,0,sec,2138,6138,ff,C1D_TRearDefroster_Out(1) ,765,136,143,10,0,0,sec,2138,6138,ff,C1D_TRearDefroster_Out(2) ,765,144,151,10,0,0,sec,2138,6138,ff,C1D_TRearDefroster_Out(3) ,765,152,159,10,0,0,sec,2138,6138,ff,C1D_TRearDefroster_Out(4) ,765,160,167,10,0,0,sec,2138,6138,ff,C1D_TRearDefroster_Out(5) ,765,168,175,10,0,0,sec,2138,6138,ff,C1D_TRearDefroster_Out(6) ,765,176,183,10,0,0,sec,2138,6138,ff,C1D_TRearDefroster_Out(7) ,765,200,200,1,0,0,-,2138,6138,ff,KH_RearDefReqCAMAN_NA ,765,201,202,1,0,0,,2138,6138,ff,DAY_NIGHT_ DEFROSTER_TM_TP,0:0 %;1:50 %;2:100 % ,765,203,204,1,0,0,,2138,6138,ff,DAY_NIGHT_ DASHBOARD_TM_TP,0:0 %;1:50 %;2:100 % ,765,16,271,1,0,0,,2139,6139,4ff,Maintenance_Datas ,765,22,22,1,0,0,,213A,613A,ff,CH_AlternatorType,0:with Alternator load;1:with DCDC Load ,765,23,23,1,0,0,,213A,613A,ff,CH_WithAlternatorLoad,0:without;1:with ,765,16,23,1,0,0,,213B,613B,ff,CH_PTCType ,765,24,24,1,0,0,,213B,613B,ff,CH_PTCArchi,0:PTC thermal management in ECU Clim;1:PTC thermal management in BCM ,765,25,25,1,0,0,,213B,613B,ff,EXTERNAL_TEMPERATURE_TYPE_CF,0:from DDCM;1:from CLUSTRE ,765,26,26,1,0,0,,213B,613B,ff,CH_PTC_EV,0:Thermal;1:Electrical Vehicle ,765,19,19,1,0,0,-,213C,613C,ff,PTC_01_KH_EnableBlowerState ,765,20,20,1,0,0,-,213C,613C,ff,PTC_01_KH_EnableECMCutOff ,765,21,21,1,0,0,-,213C,613C,ff,PTC_01_KH_EnableECMFreezing ,765,22,22,1,0,0,-,213C,613C,ff,PTC_01_KH_EnableManualMaxElecPwCfg ,765,23,23,1,0,0,-,213C,613C,ff,PTC_01_KH_AlternatorLoadEnable ,765,24,24,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay1Level0 ,765,25,25,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay1Level1 ,765,26,26,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay1Level2 ,765,27,27,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay1Level3 ,765,28,28,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay1Level4 ,765,29,29,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay1Level5 ,765,32,32,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay2Level0 ,765,33,33,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay2Level1 ,765,34,34,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay2Level2 ,765,35,35,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay2Level3 ,765,36,36,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay2Level4 ,765,37,37,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay2Level5 ,765,40,40,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay3Level0 ,765,41,41,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay3Level1 ,765,42,42,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay3Level2 ,765,43,43,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay3Level3 ,765,44,44,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay3Level4 ,765,45,45,1,0,0,-,213C,613C,ff,PTC_01_KH_Relay3Level5 ,765,48,55,1,0,0,-,213C,613C,ff,PTC_01_KH_MaxPTCNumber ,765,56,63,.5,0,1,%,213C,613C,ff,PTC_01_KH_AlternatorLoadSetting ,765,64,71,.1,0,1,Volt,213C,613C,ff,PTC_01_KH_BatteryVoltageSetting ,765,72,79,.1,0,1,sec,213C,613C,ff,PTC_01_KH_WaitForPTCSwitching ,765,80,87,.01,0,2,-,213C,613C,ff,PTC_01_KH_PmaxAdaptationCoefficient ,765,88,95,10,0,0,W,213C,613C,ff,PTC_01_KH_HysPTCL1_SwOFF ,765,96,103,10,0,0,W,213C,613C,ff,PTC_01_KH_HysPTCL1_SwON ,765,104,111,10,0,0,W,213C,613C,ff,PTC_01_KH_HysPTCL2_SwOFF ,765,112,119,10,0,0,W,213C,613C,ff,PTC_01_KH_HysPTCL2_SwON ,765,120,127,10,0,0,W,213C,613C,ff,PTC_01_KH_HysPTCL3_SwOFF ,765,128,135,10,0,0,W,213C,613C,ff,PTC_01_KH_HysPTCL3_SwON ,765,136,143,10,0,0,W,213C,613C,ff,PTC_01_KH_HysPTCL4_SwOFF ,765,144,151,10,0,0,W,213C,613C,ff,PTC_01_KH_HysPTCL4_SwON ,765,152,159,10,0,0,W,213C,613C,ff,PTC_01_KH_HysPTCL5_SwOFF ,765,160,167,10,0,0,W,213C,613C,ff,PTC_01_KH_HysPTCL5_SwON ,765,168,175,100,0,0,W,213C,613C,ff,PTC_01_T1d_PowerDrived_Out(0) ,765,176,183,100,0,0,W,213C,613C,ff,PTC_01_T1d_PowerDrived_Out(1) ,765,184,191,100,0,0,W,213C,613C,ff,PTC_01_T1d_PowerDrived_Out(2) ,765,192,199,100,0,0,W,213C,613C,ff,PTC_01_T1d_PowerDrived_Out(3) ,765,200,207,100,0,0,W,213C,613C,ff,PTC_01_T1d_PowerDrived_Out(4) ,765,208,215,100,0,0,W,213C,613C,ff,PTC_01_T1d_PowerDrived_Out(5) ,765,216,223,1,0,0,-,213C,613C,ff,PTC_01_KH_EnableManualMaxElecPwValue ,765,224,231,.1,0,1,sec,213C,613C,ff,PTC_01_KH_PTCRelayActiveMinTime ,765,240,247,1,0,0,°C,213C,613C,ff,PTC_01_KH_HysCTP1_Offset ,765,248,255,1,0,0,°C,213C,613C,ff,PTC_01_KH_HysCTP2_Offset ,765,256,263,1,0,0,°C,213C,613C,ff,PTC_01_KH_HysCTP3_Offset ,765,264,271,1,0,0,°C,213C,613C,ff,PTC_01_KH_HysCTP4_Offset ,765,272,279,1,0,0,°C,213C,613C,ff,PTC_01_KH_HysCTP5_Offset ,765,16,23,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(0) ,765,24,31,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(1) ,765,32,39,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(2) ,765,40,47,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(3) ,765,48,55,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(4) ,765,56,63,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(5) ,765,64,71,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(6) ,765,72,79,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(7) ,765,80,87,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(8) ,765,88,95,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(9) ,765,96,103,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(10) ,765,104,111,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadStart_Out(11) ,765,112,119,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(0) ,765,120,127,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(1) ,765,128,135,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(2) ,765,136,143,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(3) ,765,144,151,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(4) ,765,152,159,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(5) ,765,160,167,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(6) ,765,168,175,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(7) ,765,176,183,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(8) ,765,184,191,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(9) ,765,192,199,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(10) ,765,200,207,.5,55,1,%,213D,613D,ff,PTC_01_C1d_DzoAltLoadEnd_Out(11) ,765,16,31,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL0_SwOFF ,765,32,47,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL0_SwON ,765,48,63,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL1_SwOFF ,765,64,79,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL1_SwON ,765,80,95,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL2_SwOFF ,765,96,111,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL2_SwON ,765,112,127,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL3_SwOFF ,765,128,143,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL3_SwON ,765,144,159,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL4_SwOFF ,765,160,175,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL4_SwON ,765,176,191,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL5_SwOFF ,765,192,207,.01,0,2,-,213E,613E,ff,PTC_01_KH_HysPTCDiscreteL5_SwON ,765,208,223,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(0) ,765,224,239,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(1) ,765,240,255,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(2) ,765,256,271,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(3) ,765,272,287,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(4) ,765,288,303,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(5) ,765,304,319,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(6) ,765,320,335,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(7) ,765,336,351,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(8) ,765,352,367,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(9) ,765,368,383,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(10) ,765,384,399,1,0,0,Rpm,213E,613E,ff,PTC_01_C1d_DzoAltLoadStart_In(11) ,765,400,415,.01,0,2,-,213E,613E,ff,PTC_01_KH_SatPTCLinearLimit_Up ,765,16,31,.0001,0,3,1/%,213F,613F,ff,KH_KpAltLoadErrorPos ,765,32,47,.0001,0,3,1/%,213F,613F,ff,KH_KpAltLoadErrorNeg ,765,48,63,.001,0,3,1/%.s,213F,613F,ff,KH_KiAltLoadErrorPos ,765,64,79,.001,0,3,1/%.s,213F,613F,ff,KH_KiAltLoadErrorNeg ,765,80,95,.0001,0,3,1/V,213F,613F,ff,KH_KpBattVoltErrorPos ,765,96,111,.0001,0,3,1/V,213F,613F,ff,KH_KpBattVoltErrorNeg ,765,112,127,.001,0,3,1/V.s,213F,613F,ff,KH_KiBattVoltErrorPos ,765,128,143,.001,0,3,1/V.s,213F,613F,ff,KH_KiBattVoltErrorNeg ,765,144,151,.01,0,2,-,213F,613F,ff,KH_UndIntegralAltLoad_IV ,765,160,167,.01,0,2,-,213F,613F,ff,KH_UndIntegralBattVolt_IV ,765,176,183,.1,160,1,Volt,213F,613F,ff,KH_DzoBattVoltage_Start ,765,184,191,.1,160,1,Volt,213F,613F,ff,KH_DzoBattVoltage_End ,765,192,199,.1,0,1,Volt,213F,613F,ff,KH_HysBattVoltage_SwON ,765,200,207,.1,0,1,Volt,213F,613F,ff,KH_HysBattVoltage_SwOFF ,765,208,223,.1,0,1,sec,213F,613F,ff,KH_TmaxPTCCutOff ,765,224,239,.1,0,1,sec,213F,613F,ff,KH_TmaxPTCFreeze ,765,240,247,.1,0,1,Volt,213F,613F,ff,KH_BatteryVoltageFilter_DV ,765,248,255,.5,0,1,%,213F,613F,ff,KH_AlternatorLoadFilter_DV ,765,256,271,1,0,0,Rpm,213F,613F,ff,KH_AlternatorSpeed_DV ,765,277,278,1,0,0,-,213F,613F,ff,KH_EngineStatus_R_DV ,765,279,279,1,0,0,-,213F,613F,ff,KH_BlowerState_DV ,765,280,287,1,0,0,-,213F,613F,ff,KH_ElectricalPowerCutFreeze_DV ,765,288,295,1,0,0,-,213F,613F,ff,KH_PTCNumberThermalRequest_DV ,765,296,303,.05,0,2,-,213F,613F,ff,KH_AlternatorPulleyRatio ,765,304,311,.01,0,2,-,213F,613F,ff,KH_PTCAltLoadLinearLimit_IV ,765,312,319,100,0,0,W,213F,613F,ff,KH_MaxElectricalPowerAllowed_DV ,765,320,327,.1,0,1,sec,213F,613F,ff,KH_WaitForPTCIncrease ,765,328,335,.1,0,1,sec,213F,613F,ff,KH_WaitForPTCDecrease ,765,336,351,.001,0,3,-,213F,613F,ff,KH_KBatteryVoltageFilter ,765,352,367,.001,0,3,-,213F,613F,ff,KH_KAlternatorLoadFilter ,765,368,375,1,40,0,°C,213F,613F,ff,KH_ExternalTemp_DV ,765,376,391,.0001,0,3,-,213F,613F,ff,KH_ExtTempFilter_flt ,765,392,399,1,40,0,°C,213F,613F,ff,KH_EngineCoolantTemp_DV ,765,400,415,.0001,0,3,,213F,613F,ff,KH_EngineCoolantTempFilter_flt ,765,19,19,1,0,0,-,2141,6141,ff,PTC_02_KH_EnableBlowerState ,765,20,20,1,0,0,-,2141,6141,ff,PTC_02_KH_EnableECMCutOff ,765,21,21,1,0,0,-,2141,6141,ff,PTC_02_KH_EnableECMFreezing ,765,22,22,1,0,0,-,2141,6141,ff,PTC_02_KH_EnableManualMaxElecPwCfg ,765,23,23,1,0,0,-,2141,6141,ff,PTC_02_KH_AlternatorLoadEnable ,765,24,24,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay1Level0 ,765,25,25,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay1Level1 ,765,26,26,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay1Level2 ,765,27,27,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay1Level3 ,765,28,28,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay1Level4 ,765,29,29,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay1Level5 ,765,32,32,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay2Level0 ,765,33,33,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay2Level1 ,765,34,34,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay2Level2 ,765,35,35,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay2Level3 ,765,36,36,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay2Level4 ,765,37,37,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay2Level5 ,765,40,40,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay3Level0 ,765,41,41,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay3Level1 ,765,42,42,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay3Level2 ,765,43,43,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay3Level3 ,765,44,44,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay3Level4 ,765,45,45,1,0,0,-,2141,6141,ff,PTC_02_KH_Relay3Level5 ,765,48,55,1,0,0,-,2141,6141,ff,PTC_02_KH_MaxPTCNumber ,765,56,63,.5,0,1,%,2141,6141,ff,PTC_02_KH_AlternatorLoadSetting ,765,64,71,.1,0,1,Volt,2141,6141,ff,PTC_02_KH_BatteryVoltageSetting ,765,72,79,.1,0,1,sec,2141,6141,ff,PTC_02_KH_WaitForPTCSwitching ,765,80,87,.01,0,2,-,2141,6141,ff,PTC_02_KH_PmaxAdaptationCoefficient ,765,88,95,10,0,0,W,2141,6141,ff,PTC_02_KH_HysPTCL1_SwOFF ,765,96,103,10,0,0,W,2141,6141,ff,PTC_02_KH_HysPTCL1_SwON ,765,104,111,10,0,0,W,2141,6141,ff,PTC_02_KH_HysPTCL2_SwOFF ,765,112,119,10,0,0,W,2141,6141,ff,PTC_02_KH_HysPTCL2_SwON ,765,120,127,10,0,0,W,2141,6141,ff,PTC_02_KH_HysPTCL3_SwOFF ,765,128,135,10,0,0,W,2141,6141,ff,PTC_02_KH_HysPTCL3_SwON ,765,136,143,10,0,0,W,2141,6141,ff,PTC_02_KH_HysPTCL4_SwOFF ,765,144,151,10,0,0,W,2141,6141,ff,PTC_02_KH_HysPTCL4_SwON ,765,152,159,10,0,0,W,2141,6141,ff,PTC_02_KH_HysPTCL5_SwOFF ,765,160,167,10,0,0,W,2141,6141,ff,PTC_02_KH_HysPTCL5_SwON ,765,168,175,100,0,0,W,2141,6141,ff,PTC_02_T1d_PowerDrived_Out(0) ,765,176,183,100,0,0,W,2141,6141,ff,PTC_02_T1d_PowerDrived_Out(1) ,765,184,191,100,0,0,W,2141,6141,ff,PTC_02_T1d_PowerDrived_Out(2) ,765,192,199,100,0,0,W,2141,6141,ff,PTC_02_T1d_PowerDrived_Out(3) ,765,200,207,100,0,0,W,2141,6141,ff,PTC_02_T1d_PowerDrived_Out(4) ,765,208,215,100,0,0,W,2141,6141,ff,PTC_02_T1d_PowerDrived_Out(5) ,765,216,223,1,0,0,-,2141,6141,ff,PTC_02_KH_EnableManualMaxElecPwValue ,765,224,231,.1,0,1,sec,2141,6141,ff,PTC_02_KH_PTCRelayActiveMinTime ,765,240,247,1,0,0,°C,2141,6141,ff,PTC_02_KH_HysCTP1_Offset ,765,248,255,1,0,0,°C,2141,6141,ff,PTC_02_KH_HysCTP2_Offset ,765,256,263,1,0,0,°C,2141,6141,ff,PTC_02_KH_HysCTP3_Offset ,765,264,271,1,0,0,°C,2141,6141,ff,PTC_02_KH_HysCTP4_Offset ,765,272,279,1,0,0,°C,2141,6141,ff,PTC_02_KH_HysCTP5_Offset ,765,16,23,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(0) ,765,24,31,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(1) ,765,32,39,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(2) ,765,40,47,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(3) ,765,48,55,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(4) ,765,56,63,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(5) ,765,64,71,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(6) ,765,72,79,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(7) ,765,80,87,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(8) ,765,88,95,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(9) ,765,96,103,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(10) ,765,104,111,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadStart_Out(11) ,765,112,119,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(0) ,765,120,127,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(1) ,765,128,135,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(2) ,765,136,143,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(3) ,765,144,151,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(4) ,765,152,159,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(5) ,765,160,167,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(6) ,765,168,175,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(7) ,765,176,183,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(8) ,765,184,191,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(9) ,765,192,199,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(10) ,765,200,207,.5,55,1,%,2142,6142,ff,PTC_02_C1d_DzoAltLoadEnd_Out(11) ,765,16,16,1,0,0,,2143,6143,ff,SOLAR_SENSORS_FITTED_AND_USED_CF,1:fitted and used;0:not fitted or not used ,765,20,23,100,0,0,ms,2144,6144,ff,RETURN_TO_NO_ACTION_TM_TP ,765,32,39,10,0,0,ms,2144,6144,ff,RETURN_TO_NO_SIGNAL_TM_TP ,765,40,47,10,0,0,ms,2144,6144,ff,LMF_InitCentralizedClosing ,765,48,55,10,0,0,ms,2144,6144,ff,LMF_CentralizedClosingLowSide ,765,56,63,10,0,0,ms,2144,6144,ff,LMF_CentralizedClosingHighSide ,765,64,71,10,0,0,ms,2144,6144,ff,LMF_Authorization ,765,72,79,10,0,0,ms,2144,6144,ff,LMF_SignalPeriod ,765,80,87,10,0,0,ms,2144,6144,ff,LMF_SignalPeriodStartTime ,765,88,95,10,0,0,ms,2144,6144,ff,LMF_ManualLiftUp ,765,96,103,10,0,0,ms,2144,6144,ff,LMF_ManualLiftDown ,765,104,111,10,0,0,ms,2144,6144,ff,LMF_AutoLiftUp ,765,112,119,10,0,0,ms,2144,6144,ff,LMF_AutoLiftDown ,765,120,120,1,0,0,,2144,6144,ff,SHORT_DROP_CF,0:without;1:with ,765,123,123,1,0,0,,2144,6144,ff,AUTO_WINDOW_CLOSING_CF,0:without;1:with ,765,124,124,1,0,0,,2144,6144,ff,LVE_CF,0:without;1:with ,765,125,125,1,0,0,,2144,6144,ff,FRONT_PASSENGER_WLAP_ECU_CF,0:without;1:with ,765,126,126,1,0,0,,2144,6144,ff,REAR_PASSENGER_WLAP_ECU_CF,0:without;1:with ,765,128,135,10,0,0,ms,2144,6144,ff,LMF_StopAction ,765,136,143,10,0,0,ms,2144,6144,ff,LMF_ShortDropDown ,765,144,151,10,0,0,ms,2144,6144,ff,LMF_ShortDropUp ,765,152,159,10,0,0,ms,2144,6144,ff,WIN_LIFT_AUTH_MIN_TM_TP ,765,160,167,10,0,0,ms,2144,6144,ff,BUFFER_ACTION_WL_VALIDITY_TM_TP ,765,168,175,10,0,0,ms,2144,6144,ff,WINDOW_LIFT_UNIT_WAKE_UP_TM_TP ,765,176,183,10,0,0,ms,2144,6144,ff,SIGNAL_ON_LIN_TM_TP ,765,17,17,1,0,0,,2145,6145,ff,ENABLE_MMI_SAFETY_LINE_CF,0:without;1:with ,765,18,18,1,0,0,,2145,6145,ff,SAFETY_LINE_BDU_CF,0:without;1:with ,765,24,31,1,0,0,,2145,6145,ff,MAX_FAILURE_DETECTED ,765,32,39,1,0,0,,2145,6145,ff,NB_TEST_PASSED ,765,40,40,1,0,0,,2145,6145,ff,O_SAFETY_LINE_BDU,1:NOT_ALLOWED_TO_PROCEED;0:ALLOWED_TO_COMMUTE ,765,16,23,20,0,0,ms,2146,6146,ff,FEEDBACK_WAC_1_TM_TP ,765,24,31,20,0,0,ms,2146,6146,ff,FEEDBACK_WAC_2_TM_TP ,765,32,32,1,0,0,,2146,6146,ff,O_JINGLE_LINK,1:on;0:off ,765,33,33,1,0,0,,2146,6146,ff,O_STEERING_WHEEL_HORN_RL,1:on;0:off ,765,34,34,1,0,0,,2146,6146,ff,STEERING_WHEEL_HORN_RL_CF,0:without;1:with ,765,40,47,100,0,0,Hz,2146,6146,ff,JINGLE_FREQUENCY_WAC_1 ,765,48,55,100,0,0,Hz,2146,6146,ff,JINGLE_FREQUENCY_WAC_2 ,765,56,63,10,0,0,ms,2146,6146,ff,JINGLE_DELAY_TM_TP ,765,64,71,20,0,0,ms,2146,6146,ff,WAC_PAUSE_TM_TP ,765,16,16,1,0,0,,2147,6147,ff,PERIMETRIC_ALARM_CF,0:without;1:with ,765,17,17,1,0,0,,2147,6147,ff,GLASSHATCH_CF,0:without;1:with ,765,18,18,1,0,0,,2147,6147,ff,UNDERHOOD_CF,0:without;1:with ,765,24,27,1,0,0,time,2147,6147,ff,MAX_BREAKING_IN_NUMBER_TP ,765,32,39,1,0,0,sec,2147,6147,ff,ALARM_FEEDBACK_ACTIVATION_TM_TP ,765,40,43,1,0,0,sec,2147,6147,ff,BREAKING_IN_DETECTION_TM_TP ,765,48,51,1,0,0,sec,2147,6147,ff,HORN_ACTIVATION_SEQUENCE_TM_TP ,765,56,63,1,0,0,sec,2147,6147,ff,HORN_ACTIVATION_TM_TP ,765,64,71,1,0,0,sec,2147,6147,ff,HORN_DEACTIVATION_TM_TP ,765,72,72,1,0,0,,2147,6147,ff,O_STEERING_WHEEL_HORN_RL,1:on;0:off ,765,73,73,1,0,0,,2147,6147,ff,I_STEERING_WHEEL_HORN_SW,1:on;0:off ,765,74,74,1,0,0,,2147,6147,ff,I_UNDERHOOD_SW,1:on;0:off ,765,16,31,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL0_SwOFF ,765,32,47,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL0_SwON ,765,48,63,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL1_SwOFF ,765,64,79,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL1_SwON ,765,80,95,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL2_SwOFF ,765,96,111,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL2_SwON ,765,112,127,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL3_SwOFF ,765,128,143,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL3_SwON ,765,144,159,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL4_SwOFF ,765,160,175,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL4_SwON ,765,176,191,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL5_SwOFF ,765,192,207,.01,0,2,-,2148,6148,ff,PTC_02_KH_HysPTCDiscreteL5_SwON ,765,208,223,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(0) ,765,224,239,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(1) ,765,240,255,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(2) ,765,256,271,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(3) ,765,272,287,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(4) ,765,288,303,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(5) ,765,304,319,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(6) ,765,320,335,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(7) ,765,336,351,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(8) ,765,352,367,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(9) ,765,368,383,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(10) ,765,384,399,1,0,0,Rpm,2148,6148,ff,PTC_02_C1d_DzoAltLoadStart_In(11) ,765,400,415,.01,0,2,-,2148,6148,ff,PTC_02_KH_SatPTCLinearLimit_Up ,765,19,19,1,0,0,-,2149,6149,ff,PTC_03_KH_EnableBlowerState ,765,20,20,1,0,0,-,2149,6149,ff,PTC_03_KH_EnableECMCutOff ,765,21,21,1,0,0,-,2149,6149,ff,PTC_03_KH_EnableECMFreezing ,765,22,22,1,0,0,-,2149,6149,ff,PTC_03_KH_EnableManualMaxElecPwCfg ,765,23,23,1,0,0,-,2149,6149,ff,PTC_03_KH_AlternatorLoadEnable ,765,24,24,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay1Level0 ,765,25,25,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay1Level1 ,765,26,26,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay1Level2 ,765,27,27,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay1Level3 ,765,28,28,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay1Level4 ,765,29,29,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay1Level5 ,765,32,32,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay2Level0 ,765,33,33,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay2Level1 ,765,34,34,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay2Level2 ,765,35,35,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay2Level3 ,765,36,36,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay2Level4 ,765,37,37,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay2Level5 ,765,40,40,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay3Level0 ,765,41,41,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay3Level1 ,765,42,42,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay3Level2 ,765,43,43,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay3Level3 ,765,44,44,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay3Level4 ,765,45,45,1,0,0,-,2149,6149,ff,PTC_03_KH_Relay3Level5 ,765,48,55,1,0,0,-,2149,6149,ff,PTC_03_KH_MaxPTCNumber ,765,56,63,.5,0,1,%,2149,6149,ff,PTC_03_KH_AlternatorLoadSetting ,765,64,71,.1,0,1,Volt,2149,6149,ff,PTC_03_KH_BatteryVoltageSetting ,765,72,79,.1,0,1,sec,2149,6149,ff,PTC_03_KH_WaitForPTCSwitching ,765,80,87,.01,0,2,-,2149,6149,ff,PTC_03_KH_PmaxAdaptationCoefficient ,765,88,95,10,0,0,W,2149,6149,ff,PTC_03_KH_HysPTCL1_SwOFF ,765,96,103,10,0,0,W,2149,6149,ff,PTC_03_KH_HysPTCL1_SwON ,765,104,111,10,0,0,W,2149,6149,ff,PTC_03_KH_HysPTCL2_SwOFF ,765,112,119,10,0,0,W,2149,6149,ff,PTC_03_KH_HysPTCL2_SwON ,765,120,127,10,0,0,W,2149,6149,ff,PTC_03_KH_HysPTCL3_SwOFF ,765,128,135,10,0,0,W,2149,6149,ff,PTC_03_KH_HysPTCL3_SwON ,765,136,143,10,0,0,W,2149,6149,ff,PTC_03_KH_HysPTCL4_SwOFF ,765,144,151,10,0,0,W,2149,6149,ff,PTC_03_KH_HysPTCL4_SwON ,765,152,159,10,0,0,W,2149,6149,ff,PTC_03_KH_HysPTCL5_SwOFF ,765,160,167,10,0,0,W,2149,6149,ff,PTC_03_KH_HysPTCL5_SwON ,765,168,175,100,0,0,W,2149,6149,ff,PTC_03_T1d_PowerDrived_Out(0) ,765,176,183,100,0,0,W,2149,6149,ff,PTC_03_T1d_PowerDrived_Out(1) ,765,184,191,100,0,0,W,2149,6149,ff,PTC_03_T1d_PowerDrived_Out(2) ,765,192,199,100,0,0,W,2149,6149,ff,PTC_03_T1d_PowerDrived_Out(3) ,765,200,207,100,0,0,W,2149,6149,ff,PTC_03_T1d_PowerDrived_Out(4) ,765,208,215,100,0,0,W,2149,6149,ff,PTC_03_T1d_PowerDrived_Out(5) ,765,216,223,1,0,0,-,2149,6149,ff,PTC_03_KH_EnableManualMaxElecPwValue ,765,224,231,.1,0,1,sec,2149,6149,ff,PTC_03_KH_PTCRelayActiveMinTime ,765,240,247,1,0,0,°C,2149,6149,ff,PTC_03_KH_HysCTP1_Offset ,765,248,255,1,0,0,°C,2149,6149,ff,PTC_03_KH_HysCTP2_Offset ,765,256,263,1,0,0,°C,2149,6149,ff,PTC_03_KH_HysCTP3_Offset ,765,264,271,1,0,0,°C,2149,6149,ff,PTC_03_KH_HysCTP4_Offset ,765,272,279,1,0,0,°C,2149,6149,ff,PTC_03_KH_HysCTP5_Offset ,765,16,23,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(0) ,765,24,31,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(1) ,765,32,39,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(2) ,765,40,47,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(3) ,765,48,55,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(4) ,765,56,63,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(5) ,765,64,71,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(6) ,765,72,79,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(7) ,765,80,87,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(8) ,765,88,95,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(9) ,765,96,103,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(10) ,765,104,111,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadStart_Out(11) ,765,112,119,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(0) ,765,120,127,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(1) ,765,128,135,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(2) ,765,136,143,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(3) ,765,144,151,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(4) ,765,152,159,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(5) ,765,160,167,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(6) ,765,168,175,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(7) ,765,176,183,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(8) ,765,184,191,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(9) ,765,192,199,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(10) ,765,200,207,.5,55,1,%,214A,614A,ff,PTC_03_C1d_DzoAltLoadEnd_Out(11) ,765,16,31,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL0_SwOFF ,765,32,47,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL0_SwON ,765,48,63,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL1_SwOFF ,765,64,79,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL1_SwON ,765,80,95,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL2_SwOFF ,765,96,111,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL2_SwON ,765,112,127,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL3_SwOFF ,765,128,143,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL3_SwON ,765,144,159,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL4_SwOFF ,765,160,175,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL4_SwON ,765,176,191,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL5_SwOFF ,765,192,207,.01,0,2,-,214B,614B,ff,PTC_03_KH_HysPTCDiscreteL5_SwON ,765,208,223,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(0) ,765,224,239,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(1) ,765,240,255,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(2) ,765,256,271,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(3) ,765,272,287,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(4) ,765,288,303,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(5) ,765,304,319,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(6) ,765,320,335,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(7) ,765,336,351,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(8) ,765,352,367,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(9) ,765,368,383,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(10) ,765,384,399,1,0,0,Rpm,214B,614B,ff,PTC_03_C1d_DzoAltLoadStart_In(11) ,765,400,415,.01,0,2,-,214B,614B,ff,PTC_03_KH_SatPTCLinearLimit_Up ,765,16,16,1,0,0,,214C,614C,ff,O_AC_LED,1:on;0:off ,765,17,17,1,0,0,,214C,614C,ff,I_AC_ON_SW,1:on;0:off ,765,56,56,1,0,0,,214C,614C,ff,I_BLOWER_FAN_SPEED,1:on;0:off ,765,21,21,1,0,0,,214D,614D,ff,ACC_KEY_POSITION_PRESENT_TP,0:Without;1:With ,765,22,22,1,0,0,,214D,614D,ff,ACC_POWER_PRESENT_TP,0:Without;1:With ,765,23,23,1,0,0,,214D,614D,ff,KEY_PRESENT_CF,0:Keyless;1:Classical Key Car ,765,16,47,1,0,0,,214E,614E,4ff,SSREH_SAV7_CUR_ABSOLUTE_TIME ,765,48,55,1,0,0,,214E,614E,ff,SSREH_SAV7_INDEX_NUMBER ,765,56,87,1,0,0,,214E,614E,4ff,SSREH_SAV7_ABSOLUTE_TIME(0) ,765,88,119,1,0,0,,214E,614E,4ff,SSREH_SAV7_DISTANCE_TOTALIZER(0) ,765,120,151,1,0,0,,214E,614E,4ff,SSREH_SAV7_ABSOLUTE_TIME(1) ,765,152,183,1,0,0,,214E,614E,4ff,SSREH_SAV7_DISTANCE_TOTALIZER(1) ,765,184,215,1,0,0,,214E,614E,4ff,SSREH_SAV7_ABSOLUTE_TIME(2) ,765,216,247,1,0,0,,214E,614E,4ff,SSREH_SAV7_DISTANCE_TOTALIZER(2) ,765,248,279,1,0,0,,214E,614E,4ff,SSREH_SAV7_ABSOLUTE_TIME(3) ,765,280,311,1,0,0,,214E,614E,4ff,SSREH_SAV7_DISTANCE_TOTALIZER(3) ,765,312,343,1,0,0,,214E,614E,4ff,SSREH_SAV7_ABSOLUTE_TIME(4) ,765,344,375,1,0,0,,214E,614E,4ff,SSREH_SAV7_DISTANCE_TOTALIZER(4) ,765,16,47,1,0,0,,214F,614F,4ff,SSREH_SAV8_CUR_ABSOLUTE_TIME ,765,48,55,1,0,0,,214F,614F,ff,SSREH_SAV8_INDEX_NUMBER ,765,56,87,1,0,0,,214F,614F,4ff,SSREH_SAV8_ABSOLUTE_TIME(0) ,765,88,119,1,0,0,,214F,614F,4ff,SSREH_SAV8_DISTANCE_TOTALIZER(0) ,765,120,151,1,0,0,,214F,614F,4ff,SSREH_SAV8_ABSOLUTE_TIME(1) ,765,152,183,1,0,0,,214F,614F,4ff,SSREH_SAV8_DISTANCE_TOTALIZER(1) ,765,184,215,1,0,0,,214F,614F,4ff,SSREH_SAV8_ABSOLUTE_TIME(2) ,765,216,247,1,0,0,,214F,614F,4ff,SSREH_SAV8_DISTANCE_TOTALIZER(2) ,765,248,279,1,0,0,,214F,614F,4ff,SSREH_SAV8_ABSOLUTE_TIME(3) ,765,280,311,1,0,0,,214F,614F,4ff,SSREH_SAV8_DISTANCE_TOTALIZER(3) ,765,312,343,1,0,0,,214F,614F,4ff,SSREH_SAV8_ABSOLUTE_TIME(4) ,765,344,375,1,0,0,,214F,614F,4ff,SSREH_SAV8_DISTANCE_TOTALIZER(4) ,765,16,16,1,0,0,,2150,6150,ff,CF_VSC_WAC_Buzzer_inhibited,0:Avec buzzer WAC;1:Sans buzzer ,765,17,17,1,0,0,,2150,6150,ff,CF_VSC_HandFreeLockByDoorHandle,0:Sans condamnation ML;1:Avec condamantion ML ,765,18,18,1,0,0,,2150,6150,ff,CF_VSC_WAC,1:Avec WAC;0:Sans WAC ,765,19,19,1,0,0,,2150,6150,ff,CF_VSC_HandFreeUnLock,0:Sans décondamnation ML;1:Avec décondamantion ML ,765,24,27,1,0,0,sec,2150,6150,ff,VSC_Timeout_Learning_Key ,765,28,31,1,0,0,min,2150,6150,ff,IMMO_TIMEOUT_REWORK_MODE_TM_CF ,765,32,32,1,0,0,,2150,6150,ff,VSC_Warning_Battery_Level_Identifier,0:Inhibe les alertes au tableau de bord;1:Valide les alertes au tableau de bord. ,765,40,47,1,0,0,time,2150,6150,ff,CF_VSC_WAC_NB_RF_Frame_Lost ,765,56,56,1,0,0,,2150,6150,ff,LockUnlockByButtonCF,0:Use of door handle optical sensor to unlock;1:Use of door handle buttons to lock and unlock ,765,57,57,1,0,0,,2150,6150,ff,CF_VSC_AVEC_DEMARRAGE_ML,0:inactif;1:Actif ,765,58,58,1,0,0,,2150,6150,ff,CF_VSC_WAC_BACKUP,0:Inactif;1:Actif (LockByTimeout). ,765,59,59,1,0,0,,2150,6150,ff,CF_VSC_SANS_Locking_des_Badges,0:inactif;1:Actif ,765,60,60,1,0,0,,2150,6150,ff,CF_VSC_Driver_Right,0:Conduite à gauche;1:Conduite à droite ,765,64,68,1,0,0,,2150,6150,ff,CF_VSC_CAR_BODY_AND_THATCHAM,0:Tuning LF B95;1:Tuning LF B95 Thatcham;2:Tuning LF K95;3:Tuning LF K95 Thatcham;4:Tuning LF D95;5:Tuning LF D95 Thatcham;6:Tuning LF E95;7:Tuning LF E95 Thatcham;8:Tuning LF J95;9:Tuning LF J95 Thatcham;10:Tuning LF R95;11:Tuning LF R95 Thatcham;12:Tuning LF X10;13:Tuning LF X10 Thatcham;14:Tuning LF L38;15:Tuning LF L38 Korea;16:Tuning LF L38 Thatcham;17:Tuning LF L38EV ph2;18:Tuning LF L38EV ph2 Thatcham;19:Tuning LF B95 2 antennes;20:Tuning LF B95 Thatcham 2 antennes;21:Tuning LF K95 2 antennes;22:Tuning LF K95 Thatcham 2 antennes;23:Tuning LF D95 2 antennes;24:Tuning LF D95 Thatcham 2 antennes;25:Tuning LF J95 2 antennes;26:Tuning LF J95 Thatcham 2 antennes ,765,69,69,1,0,0,,2150,6150,ff,CF_VSC_With_Servant_Identifier,0:inactif;1:Actif ,765,72,79,1,0,0,time,2150,6150,ff,CF_VSC_WAC_NB_CHECK_LOOP ,765,80,87,1,0,0,,2150,6150,ff,DONGLE_CF,0:DONGLE_SLAVE_1;1:DONGLE_SLAVE_2;2:DONGLE_SLAVE_3 ,765,88,95,1,0,0,,2150,6150,ff,INTERNAL_DONGLE_CONFIG_S,0:DONGLE_SLAVE_1;1:DONGLE_SLAVE_2;2:DONGLE_SLAVE_3 ,765,96,96,1,0,0,,2150,6150,ff,BCM_CS_ARMED_S,0:False;1:True ,765,97,97,1,0,0,,2150,6150,ff,TCU_IS_LEARNT_S,0:False;1:True ,765,16,22,.1,0,1,sec,2151,6151,ff,VSC_HandFreeUnlockInvalid ,765,24,30,.1,0,1,sec,2151,6151,ff,VSC_HandFreeLockInvalid ,765,32,39,.5,0,1,hour,2151,6151,ff,PowerOpticalCapter_TP ,765,64,68,1,0,0,sec,2151,6151,ff,VSC_WAC_SearchT1_TP ,765,72,76,10,0,0,sec,2151,6151,ff,VSC_WAC_SearchT2_TP ,765,80,84,30,0,0,sec,2151,6151,ff,VSC_WAC_Window_TP ,765,96,103,1,0,0,,2151,6151,ff,IMMO_NB_IGNITION_AUTO_ERASE_APV_CODE_TP ,765,104,107,1,0,0,Volt,2151,6151,ff,VSC_Warning_Battery_Threshold_Level ,765,109,110,1,0,0,sec,2151,6151,ff,VSC_LigthingCardReader_RKE ,765,112,115,1,0,0,sec,2151,6151,ff,VSC_Blinking_CardReader ,765,120,126,1,0,0,,2151,6151,ff,VSC_Variable_ligth_Push_Button,0:Pas d'allumage en cycle variable;25:Allumage à 25% de 20ms;50:Allumage à 50% de 20ms;72:Allumage à 75% de 20ms;100:ALLumage à 100% de 20ms ,765,128,135,1,0,0,sec,2151,6151,ff,IMMO_DURATION_ANTI_SCANNING_TIMER_TM_TP ,765,136,136,1,0,0,,2151,6151,ff,IMMO_AUTO_ERASE_APV_CODE_DISABLE_TP,0:Enable;1:Disable ,765,144,151,1,0,0,min,2151,6151,ff,IMMO_DURATION_SA_UNLOCKED_TIME_OUT_TM_TP ,765,152,159,1,0,0,min,2151,6151,ff,IMMO_DURATION_AUTHORIZATION_ECM_PAIRING_TM_TP ,765,160,167,20,0,0,ms,2151,6151,ff,TIME_OUT_INTER_FRAMES_TP ,765,168,175,20,0,0,ms,2151,6151,ff,TIME_OUT_RECEIVE_DONGLE_CODE_TP ,765,176,183,100,0,0,ms,2151,6151,ff,LONG_PRESS_TOLERANCE_TP ,765,184,187,1,0,0,-,2151,6151,ff,SES_WAC_trig_PSD_closing_FILTERING_TP ,765,192,199,100,0,0,ms,2151,6151,ff,VSC_WAC_LOCK_TP ,765,200,207,1,0,0,,2151,6151,ff,CKC_PHIOC_CB ,765,208,208,1,0,0,,2151,6151,ff,AUTHENT_LEVEL2_TP,0:without;1:with ,765,216,223,100,0,0,ms,2151,6151,ff,AUTHENT_LEVEL2_TM_TP ,765,224,231,30,0,0,min,2151,6151,ff,MAX_CTRL_TIME_AUTHENT_LEVEL2_TP ,765,232,239,30,0,0,min,2151,6151,ff,INC_CTRL_TIME_AUTHENT_LEVEL2_CST ,765,240,247,1,0,0,time,2151,6151,ff,LOW_FAILED_AUTHENT_LEVEL2_TP ,765,248,255,1,0,0,time,2151,6151,ff,MAX_FAILED_AUTHENT_LEVEL2_TP ,765,256,263,10,0,0,ms,2151,6151,ff,SUPERLOCK_SYNCH_TM_TP ,765,264,271,10,0,0,ms,2151,6151,ff,CAN_BCM_CS_EMISSION_TM_TP ,765,272,279,10,0,0,ms,2151,6151,ff,CRYPTO_RESPONSE_TM_TP ,765,280,287,10,0,0,ms,2151,6151,ff,TCU_EMISSION_CS_TM_TP ,765,288,295,1,0,0,,2151,6151,ff,CS_ANTISCANNING_MAX_TP ,765,296,311,.01,0,2,s,2151,6151,ff,CS_ANTISCANNING_TM_TP ,765,312,327,.01,0,2,s,2151,6151,ff,TCU_AUTHENT_TIMEOUT_TM_TP ,765,16,16,1,0,0,-,2152,6152,ff,VSC_RF_Frame_Recieved_counter ,765,17,17,1,0,0,,2152,6152,ff,VSC_RKE_identification_status,0:Trame n'appartenant pas au véhicule;1:Trame appartenant au véhicule ,765,18,19,1,0,0,,2152,6152,ff,VSC_RKE_status (2 bits).,0:RKE autorisée - valeur par défaut positionné à l'apprentissage;1:RKE non autorisée;2:RKE en mode dégradé ,765,20,23,1,0,0,,2152,6152,ff,VSC_RKE_Origin,4:Trame PASE checksum KO;5:Trame PASE checksum OK;9:Trame RKE checksum OK;3:Trame TPMS checksum OK;0:Aucune reception RF (default value);8:Trame RKE checksum KO;1:Aucune reception RF;2:Trame TPMS checksum KO ,765,24,31,1,0,0,-,2152,6152,ff,VSC_RKE_counter_ID1 (1 octet modulo 256) ,765,32,39,1,0,0,-,2152,6152,ff,VSC_RKE_counter_ID2 (1 octet modulo 256) ,765,40,47,1,0,0,-,2152,6152,ff,VSC_RKE_counter_ID3 (1 octet modulo 256) ,765,48,55,1,0,0,,2152,6152,ff,VSC_RKE_counter_ID4 (1 octet modulo 256) ,765,56,87,1,0,0,,2152,6152,1ff,VSC_RKE_Ident_Received_Frame (4 octets). ,765,88,88,1,0,0,,2152,6152,ff,VSC_RKE_ID_Need_Resync_ID1,0:Aucun badge désynchronisé;1:Badge désynchronisé ,765,89,89,1,0,0,,2152,6152,ff,VSC_RKE_ID_Need_Resync_ID2,0:Aucun badge désynchronisé;1:Badge désynchronisé ,765,90,90,1,0,0,,2152,6152,ff,VSC_RKE_ID_Need_Resync_ID3,0:Aucun badge désynchronisé;1:Badge désynchronisé ,765,91,91,1,0,0,,2152,6152,ff,VSC_RKE_ID_Need_Resync_ID4,0:Aucun badge désynchronisé;1:Badge désynchronisé ,765,96,103,1,0,0,,2152,6152,ff,LONG_PRESS_DECODED_EXIT,4:Exit by release of the button;5:Exit with success;3:Exit by reception by same CID other button press;2:Exit by reception of other CID press;1:Exit by loose of frame;0:Default Value ,765,104,104,1,0,0,,2152,6152,ff,CID_BUTTON_PRESSED_1,1:Button pressed;0:No pressed ,765,105,105,1,0,0,,2152,6152,ff,CID_BUTTON_PRESSED_2,1:Button pressed;0:No pressed ,765,106,106,1,0,0,,2152,6152,ff,CID_BUTTON_PRESSED_3,1:Button pressed;0:No pressed ,765,107,107,1,0,0,,2152,6152,ff,CID_BUTTON_PRESSED_4,1:Button pressed;0:No pressed ,765,16,16,1,0,0,,2153,6153,ff,VSC_HandFree_start_status_ID1,0:Démarrage Mains libres interdit;1:Démarrage Mains libres autorisé ,765,17,17,1,0,0,,2153,6153,ff,VSC_HandFree_start_status_ID2,0:Démarrage Mains libres interdit;1:Démarrage Mains libres autorisé ,765,18,18,1,0,0,,2153,6153,ff,VSC_HandFree_start_status_ID3,0:Démarrage Mains libres interdit;1:Démarrage Mains libres autorisé ,765,19,19,1,0,0,,2153,6153,ff,VSC_HandFree_start_status_ID4,0:Démarrage Mains libres interdit;1:Démarrage Mains libres autorisé ,765,20,20,1,0,0,,2153,6153,ff,VSC_ID_Passive_Unlock_status_ID1,1:Déconda Mains libres autorisée;0:Déconda mains libres interdite ,765,21,21,1,0,0,,2153,6153,ff,VSC_ID_Passive_Unlock_status_ID2,1:Déconda Mains libres autorisée;0:Déconda mains libres interdite ,765,22,22,1,0,0,,2153,6153,ff,VSC_ID_Passive_Unlock_status_ID3,1:Déconda Mains libres autorisée;0:Déconda mains libres interdite ,765,23,23,1,0,0,,2153,6153,ff,VSC_ID_Passive_Unlock_status_ID4,1:Déconda Mains libres autorisée;0:Déconda mains libres interdite ,765,24,24,1,0,0,,2153,6153,ff,VSC_Passive_unlock_vehicle_authorisation ,765,25,25,1,0,0,,2153,6153,ff,VSC_Passive_unlock_tailgate_authorisation ,765,26,26,1,0,0,,2153,6153,ff,VSC_Passive_lock_by_door_handle_authorisation ,765,27,27,1,0,0,,2153,6153,ff,VSC_Passive_lock_vehicle_by_WAC_authorisation ,765,32,39,.5,0,1,hour,2153,6153,ff,VSC_TimerAlimCOE ,765,40,47,1,0,0,,2153,6153,ff,VSC_WAC_Trigger (1 octet),7:Ouverture porte passager;15:Closing of the leftt power sliding door;2:Fermeture Taigate;1:Ouverture Tailgate;0:Rien;14:Closing of the right power sliding door;9:Ouverture porte arrière coté gauche;12:Fermeture porte arrière coté droit;3:Ouverture LAROU;13:Décondamnation Main Libre;10:Fermeture porte arrière coté gauche;5:Ouverture porte conducteur;6:Fermeture porte conducteur;4:Fermeture LAROU;8:Fermeture porte passager;11:Ouverture porte arrière coté droit;16:Exit driving door open;17:Goes to stop auto with door open ,765,52,55,1,0,0,,2153,6153,ff,VSC_WAC_Status (4 bits),10:WAC conda sur fermeture dernier ouvrant;0:Valeur par défaut à l'init;13:WAC inhibé sur Crash détecté;12:WAC interrompue;11:WAC détection badge INT après trame SP;9:WAC conda sur réception trame SP;8:WAC attente fermeture dernier ouvrant;7:WAC trame spontanée reçue;6:WAC attente trame SP;5:WAC badge détecté EXT A8;4:WAC badge détecté INT A3;3:WAC en cours;1:Trig WAC reçu;2:WAC attente arrêt moteur ,765,56,59,1,0,0,,2153,6153,ff,VSC_WAC_Exit 1 (4 bits),6:WAC exit par détection de Crash;9:WAC exit by automatic stop engine or automatic starting sequence;7:WAC Conda négative sur disparition du badge;5:WAC exit sur absence de badge suite à trig WAC;4:WAC exit par timeout;3:WAC exit par lock utilisateur;2:WAC is stopped by the last door closing- enging running;1:WAC exit par badge confirmé INT par fermeture dernier ouvrant;0:WAC Aucun Exit;8:WAC exit by aunomous running engine;10:WAC exit by RKE press on unlock or lock or back doors button ,765,60,63,1,0,0,,2153,6153,ff,VSC_WAC_Exit 2 (4 bits),6:WAC exit par détection de Crash;9:WAC exit by automatic stop engine or automatic starting sequence;7:WAC Conda négative sur disparition du badge;5:WAC exit sur absence de badge suite à trig WAC;4:WAC exit par timeout;3:WAC exit par lock utilisateur;2:WAC is stopped by the last door closing- enging running;1:WAC exit par badge confirmé INT par fermeture dernier ouvrant;0:WAC Aucun Exit;8:WAC exit by aunomous running engine;10:WAC exit by RKE press on unlock or lock or back doors button ,765,64,67,1,0,0,,2153,6153,ff,VSC_WAC_Exit 3 (4 bits),6:WAC exit par détection de Crash;9:WAC exit by automatic stop engine or automatic starting sequence;7:WAC Conda négative sur disparition du badge;5:WAC exit sur absence de badge suite à trig WAC;4:WAC exit par timeout;3:WAC exit par lock utilisateur;2:WAC is stopped by the last door closing- enging running;1:WAC exit par badge confirmé INT par fermeture dernier ouvrant;0:WAC Aucun Exit;8:WAC exit by aunomous running engine;10:WAC exit by RKE press on unlock or lock or back doors button ,765,68,71,1,0,0,,2153,6153,ff,VSC_WAC_Exit 4 (4 bits),6:WAC exit par détection de Crash;9:WAC exit by automatic stop engine or automatic starting sequence;7:WAC Conda négative sur disparition du badge;5:WAC exit sur absence de badge suite à trig WAC;4:WAC exit par timeout;3:WAC exit par lock utilisateur;2:WAC is stopped by the last door closing- enging running;1:WAC exit par badge confirmé INT par fermeture dernier ouvrant;0:WAC Aucun Exit;8:WAC exit by aunomous running engine;10:WAC exit by RKE press on unlock or lock or back doors button ,765,72,75,1,0,0,,2153,6153,ff,VSC_WAC_Exit 5 (4 bits),6:WAC exit par détection de Crash;9:WAC exit by automatic stop engine or automatic starting sequence;7:WAC Conda négative sur disparition du badge;5:WAC exit sur absence de badge suite à trig WAC;4:WAC exit par timeout;3:WAC exit par lock utilisateur;2:WAC is stopped by the last door closing- enging running;1:WAC exit par badge confirmé INT par fermeture dernier ouvrant;0:WAC Aucun Exit;8:WAC exit by aunomous running engine;10:WAC exit by RKE press on unlock or lock or back doors button ,765,76,79,1,0,0,,2153,6153,ff,VSC_WAC_Exit 6 (4 bits),6:WAC exit par détection de Crash;9:WAC exit by automatic stop engine or automatic starting sequence;7:WAC Conda négative sur disparition du badge;5:WAC exit sur absence de badge suite à trig WAC;4:WAC exit par timeout;3:WAC exit par lock utilisateur;2:WAC is stopped by the last door closing- enging running;1:WAC exit par badge confirmé INT par fermeture dernier ouvrant;0:WAC Aucun Exit;8:WAC exit by aunomous running engine;10:WAC exit by RKE press on unlock or lock or back doors button ,765,80,80,1,0,0,,2153,6153,ff,VSC_Inside_ID_Detect_ID1,0:ID non vu à dans la zone couverte par les antennes intérieures du véhicule;1:ID vu et connu dans la zone couverte par les antennes intérieures du véhicule ,765,81,81,1,0,0,,2153,6153,ff,VSC_Inside_ID_Detect_ID2,0:ID non vu à dans la zone couverte par les antennes intérieures du véhicule;1:ID vu et connu dans la zone couverte par les antennes intérieures du véhicule ,765,82,82,1,0,0,,2153,6153,ff,VSC_Inside_ID_Detect_ID3,0:ID non vu à dans la zone couverte par les antennes intérieures du véhicule;1:ID vu et connu dans la zone couverte par les antennes intérieures du véhicule ,765,83,83,1,0,0,,2153,6153,ff,VSC_Inside_ID_Detect_ID4,0:ID non vu à dans la zone couverte par les antennes intérieures du véhicule;1:ID vu et connu dans la zone couverte par les antennes intérieures du véhicule ,765,84,84,1,0,0,,2153,6153,ff,VSC_Outside_ID_Detect_ID1,1:ID vu et connu à dans la zone couverte par les antennes LF extérieures du véhicule;0:ID non vu à dans la zone couverte par les antennes LF extérieures du véhicule ,765,85,85,1,0,0,,2153,6153,ff,VSC_Outside_ID_Detect_ID2,1:ID vu et connu à dans la zone couverte par les antennes LF extérieures du véhicule;0:ID non vu à dans la zone couverte par les antennes LF extérieures du véhicule ,765,86,86,1,0,0,,2153,6153,ff,VSC_Outside_ID_Detect_ID3,1:ID vu et connu à dans la zone couverte par les antennes LF extérieures du véhicule;0:ID non vu à dans la zone couverte par les antennes LF extérieures du véhicule ,765,87,87,1,0,0,,2153,6153,ff,VSC_Outside_ID_Detect_ID4,1:ID vu et connu à dans la zone couverte par les antennes LF extérieures du véhicule;0:ID non vu à dans la zone couverte par les antennes LF extérieures du véhicule ,765,88,88,1,0,0,,2153,6153,ff,VSC_RF_WAC_ID_Detect_ID1,0:Trame WAC RF non reçue;1:Trame WAC RF reçue ,765,89,89,1,0,0,,2153,6153,ff,VSC_RF_WAC_ID_Detect_ID2,0:Trame WAC RF non reçue;1:Trame WAC RF reçue ,765,90,90,1,0,0,,2153,6153,ff,VSC_RF_WAC_ID_Detect_ID3,0:Trame WAC RF non reçue;1:Trame WAC RF reçue ,765,91,91,1,0,0,,2153,6153,ff,VSC_RF_WAC_ID_Detect_ID4,0:Trame WAC RF non reçue;1:Trame WAC RF reçue ,765,96,96,1,0,0,,2153,6153,ff,VSC_LF_ID_Activated_int1,0:Antenne activée;1:Antenne non activée ,765,97,97,1,0,0,,2153,6153,ff,VSC_LF_ID_Activated_int2,0:Antenne activée;1:Antenne non activée ,765,98,98,1,0,0,,2153,6153,ff,VSC_LF_ID_Activated_int3,0:Antenne activée;1:Antenne non activée ,765,99,99,1,0,0,,2153,6153,ff,VSC_LF_ID_Activated_ext1,0:Antenne activée;1:Antenne non activée ,765,100,100,1,0,0,,2153,6153,ff,VSC_LF_ID_Activated_ext2,0:Antenne activée;1:Antenne non activée ,765,101,101,1,0,0,,2153,6153,ff,VSC_LF_ID_Activated_ext3,0:Antenne activée;1:Antenne non activée ,765,104,119,1,0,0,,2153,6153,ff,CNT_WAC_LockBYRF ,765,120,135,1,0,0,,2153,6153,ff,CNT_WAC_LockBYTimeout ,765,136,151,1,0,0,,2153,6153,ff,CNT_WAC_LockBYRFMemorised ,765,152,167,1,0,0,,2153,6153,ff,CNT_WAC_LockBYTimeoutMemorised ,765,168,168,1,0,0,,2153,6153,ff,VSC_SeparatedTrunk_Inside_ID_Detect_ID1,1:true;0:false ,765,169,169,1,0,0,,2153,6153,ff,VSC_SeparatedTrunk_Inside_ID_Detect_ID2,1:true;0:false ,765,170,170,1,0,0,,2153,6153,ff,VSC_SeparatedTrunk_Inside_ID_Detect_ID3,1:true;0:false ,765,171,171,1,0,0,,2153,6153,ff,VSC_SeparatedTrunk_Inside_ID_Detect_ID4,1:true;0:false ,765,16,20,1,0,0,,2154,6154,ff,VSC_Learning_Step sur (5 bits).,16:Idle - Default Value CID_MNGR_RF_SYNCHRO_END;15:Idle - Default Value CID_MNGR_IDLE;14:Ecriture du pairing context CID_MNGR_WRITE_PAIRING_CONTEXT;13:Stockage en EEPROM BCM CID_MNGR_REGISTRATION;12:Resynchro en cours CID_MNGR_RF_SYNCHRO;11:Verrouillage mémoire TRP CID_MNGR_LOCK_CID;8:Ecriture HFC CID_MNGR_WRITE_HFC;0:Authentification avec ISK de transport CID_MNGR_OPEN_BLANK_CID_SESSION;7:Authentification avec ISK de transport afin de sélectionner les pages User CID_MNGR_VALID_USER_PAGE;6:Sélection pages User CID_MNGR_SELECT_USER_PAGE;5:Ecriture RSK CID_MNGR_WRITE_RSK;4:Authentification avec ISK de transport afin de sélectionner les pages Remote CID_MNGR_VALID_REMOTE_PAGE;3:Sélection pages Remote CID_MNGR_SELECT_REMOTE_PAGE;2:Authentification avec ISK calculé à partir du code APV CID_MNGR_OPEN_CID_SESSION;10:Ecriture ISK CID_MNGR_WRITE_ISK;1:Authentification avec ISK du véhicule CID_MNGR_OPEN_STD_SESSION;9:Ecriture KIN CID_MNGR_WRITE_KIN ,765,24,27,1,0,0,,2154,6154,ff,VSC_Identifier_Inhibited (4 bits) ,765,32,32,1,0,0,,2154,6154,ff,BCM_IS_BLANK_S,1:true;0:false ,765,33,33,1,0,0,,2154,6154,ff,IMMO_FLAG_ANTI_SCANNING_LAUNCHED_S,1:true;0:false ,765,35,35,1,0,0,,2154,6154,ff,IMMO_FLAG_PROTECTED_PAIRING,0:Pairing type X91;1:Protecting pairing ,765,36,36,1,0,0,,2154,6154,ff,IMMO_FLAG_USER_AUTHENT_ALLOWED,1:true;0:false ,765,37,37,1,0,0,,2154,6154,ff,IMMO_FLAG_AUTHORIZATION_TO_PAIR_ESCL,1:true;0:false ,765,38,38,1,0,0,,2154,6154,ff,IMMO_FLAG_AUTHORIZATION_TO_PAIR_ECM,1:true;0:false ,765,40,40,1,0,0,,2154,6154,ff,IMMO_FLAG_CUSTOMER_MODE_LAUNCHED,1:true;0:false ,765,41,41,1,0,0,,2154,6154,ff,IMMO_FLAG_GENESIS_MODE_LAUNCHED,1:true;0:false ,765,42,42,1,0,0,,2154,6154,ff,IMMO_FLAG_BCM_REWORK_MODE_LAUNCHED,1:true;0:false ,765,43,43,1,0,0,,2154,6154,ff,IMMO_FLAG_CID_REWORK_MODE_LAUNCHED,1:true;0:false ,765,45,45,1,0,0,,2154,6154,ff,IMMO_FLAG_SENDKEY_CONTENT_CONTROL_NOK,0:OK;1:NOK ,765,56,63,1,0,0,,2154,6154,ff,IMMO_STATUS_BCM_SA_EXIT,12:Ignition supply raised;1:BCM is not blanked;2:SA unlocked;3:Not applicable;4:Start Diagnostic Services $10$C0 or $10$80;5:Deconnexion;6:SA number not ok;7:Content control not ok;9:Pairing done;13:USM Frame absent;0:Each time the BCM received a request seed;11:Timeout SA ,765,64,71,1,0,0,,2154,6154,ff,IMMO_STATUS_CID_SA_EXIT,11:Timeout SA;12:Ignition supply raised;9:Pairing done;8:Not applicable;7:Content control not ok;6:SA number not ok;4:Start Diagnostic Services $10$C0 or $10$80;2:SA unlocked;13:USM Frame absent;1:BCM is blanked;0:Each time the BCM received a request seed;5:Deconnexion ,765,72,79,1,0,0,,2154,6154,ff,IMMO_STATUS_ECM_SA_EXIT,5:Deconnexion;13:USM Frame absent;12:Ignition supply raised;11:Timeout SA;10:Timeout Authorization;9:Pairing done;8:Not applicable;6:SA number not ok;4:Start Diagnostic Services $10$C0 or $10$80;2:SA unlocked;1:BCM is blanked;0:Each time the BCM received a request seed;7:Content control not ok ,765,80,87,1,0,0,,2154,6154,ff,IMMO_STATUS_ESCL_SA_EXIT,5:Deconnexion;13:USM Frame absent;12:Ignition supply raised;11:Timeout SA;10:Timeout Authorization;9:Pairing done;8:Not applicable;6:SA number not ok;4:Start Diagnostic Services $10$C0 or $10$80;2:SA unlocked;1:BCM is blanked;0:Each time the BCM received a request seed;7:Content control not ok ,765,88,95,1,0,0,,2154,6154,ff,IMMO_STATE_SA,1:Waiting for BCM seed generation;4:SA unlocked;2:Waiting for sendkey server;0:Each time a new request seedis received;3:Wating for sendkey contol ,765,96,103,1,0,0,,2154,6154,ff,IMMO_STATUS_SA_PAIRING_TYPE,4:ECM_PAIRING;3:ESCL_PAIRING;2:BCM_PAIRING;1:CID_PAIRING;0:BCM_IS_BLANKED ,765,104,111,1,0,0,,2154,6154,ff,IMMO_STATE_GENESIS_MODE_ROOT_ERROR,0:ALL IS OK;3:APV CODE NOT AVAILABLE;5:4 CID ALREADY PAIRED;6:IGNITION SUPPLY ON;7:USM FRAME ABSENT ,765,112,119,1,0,0,,2154,6154,ff,IMMO_STATE_REWORK_MODE_ROOT_ERROR,4:APV CODE NOT RECOGNIZED;6:IGNITION SUPPLY ON;3:APV CODE NOT AVAILABLE;0:ALL IS OK;7:USM FRAME ABSENT ,765,136,143,1,0,0,,2154,6154,ff,IMMO_COUNTER_FACTORY_PAIRING_S ,765,144,151,1,0,0,,2154,6154,ff,IMMO_COUNTER_AFTER_SALES_PAIRING_S ,765,152,152,1,0,0,,2154,6154,ff,IMMO_STATUS_BCM_PAIRING_SA_UNLOCKED,1:true;0:false ,765,153,153,1,0,0,,2154,6154,ff,IMMO_STATUS_CID_PAIRING_SA_UNLOCKED,1:true;0:false ,765,154,154,1,0,0,,2154,6154,ff,IMMO_STATUS_ECM_PAIRING_SA_UNLOCKED,1:true;0:false ,765,155,155,1,0,0,,2154,6154,ff,IMMO_STATUS_ESCL_PAIRING_SA_UNLOCKED,1:true;0:false ,765,156,156,1,0,0,,2154,6154,ff,IMMO_FLAG_TIME_OUT_REWORK_MODE_REACHED,1:true;0:false ,765,16,47,1,0,0,,2155,6155,1ff,Paired Customer ID IDE 1 ,765,48,79,1,0,0,,2155,6155,1ff,Paired Customer ID IDE 2 ,765,80,111,1,0,0,,2155,6155,1ff,Paired Customer ID IDE 3 ,765,112,143,1,0,0,,2155,6155,1ff,Paired Customer ID IDE 4 ,765,16,47,1,0,0,,2156,6156,4ff,SSREH_SAV9_CUR_ABSOLUTE_TIME ,765,48,55,1,0,0,,2156,6156,ff,SSREH_SAV9_INDEX_NUMBER ,765,56,87,1,0,0,,2156,6156,4ff,SSREH_SAV9_ABSOLUTE_TIME(0) ,765,88,119,1,0,0,,2156,6156,4ff,SSREH_SAV9_DISTANCE_TOTALIZER(0) ,765,120,127,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_MIN_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,128,135,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_MIN_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,136,143,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_MAX_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,144,151,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_MAX_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,152,159,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_NEUTRAL_CONTACT_STATUS(0),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,160,167,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_NEUTRAL_CONTACT_STATUS(0),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,168,199,1,0,0,,2156,6156,4ff,SSREH_SAV9_ABSOLUTE_TIME(1) ,765,200,231,1,0,0,,2156,6156,4ff,SSREH_SAV9_DISTANCE_TOTALIZER(1) ,765,240,247,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_MIN_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,248,255,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_MIN_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,256,263,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_MAX_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,264,271,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_MAX_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,272,279,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_NEUTRAL_CONTACT_STATUS(1),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,280,287,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_NEUTRAL_CONTACT_STATUS(1),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,288,319,1,0,0,,2156,6156,4ff,SSREH_SAV9_ABSOLUTE_TIME(2) ,765,320,351,1,0,0,,2156,6156,4ff,SSREH_SAV9_DISTANCE_TOTALIZER(2) ,765,352,359,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_MIN_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,360,367,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_MIN_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,368,375,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_MAX_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,376,383,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_MAX_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,384,391,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_NEUTRAL_CONTACT_STATUS(2),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,392,399,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_NEUTRAL_CONTACT_STATUS(2),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,400,431,1,0,0,,2156,6156,4ff,SSREH_SAV9_ABSOLUTE_TIME(3) ,765,432,463,1,0,0,,2156,6156,4ff,SSREH_SAV9_DISTANCE_TOTALIZER(3) ,765,464,471,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_MIN_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,472,479,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_MIN_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,480,487,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_MAX_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,488,495,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_MAX_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,496,503,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_NEUTRAL_CONTACT_STATUS(3),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,504,511,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_NEUTRAL_CONTACT_STATUS(3),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,512,543,1,0,0,,2156,6156,4ff,SSREH_SAV9_ABSOLUTE_TIME(4) ,765,544,575,1,0,0,,2156,6156,4ff,SSREH_SAV9_DISTANCE_TOTALIZER(4) ,765,576,583,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_MIN_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,584,591,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_MIN_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,592,599,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_MAX_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,600,607,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_MAX_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,608,615,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_NEUTRAL_CONTACT_STATUS(4),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,616,623,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_NEUTRAL_CONTACT_STATUS(4),0:NEUTRAL_CONTACT_NOT_USED;1:NEUTRAL_CONTACT_NOT_REACHED;2:NEUTRAL_CONTACT_REACHED;3:NEUTRAL_CONTACT_UNAVAILABLE ,765,624,631,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_AUTO_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,632,639,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_AUTO_TRAVEL(0),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,640,647,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_AUTO_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,648,655,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_AUTO_TRAVEL(1),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,656,663,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_AUTO_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,664,671,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_AUTO_TRAVEL(2),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,672,679,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_AUTO_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,680,687,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_AUTO_TRAVEL(3),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,688,695,1,0,0,,2156,6156,ff,SSREH_SAV9_CUR_CLUTCH_SW_AUTO_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,696,703,1,0,0,,2156,6156,ff,SSREH_SAV9_OLD_CLUTCH_SW_AUTO_TRAVEL(4),0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,16,23,1,0,0,,2157,6157,ff,VSC Status Bin Virginité,33:Probléme Renault;161:Badge présent / Pb Renault;145:Badge présent / Pb badge;129:Badge présent;163:Badge présent / [Pb Renault-badge];193:Badge viable;225:Badge viable / Pb Renault;64:Badge_vierge;32:Probléme_Renault;5:Probléme_UCH;0:En cours;1:Probléme sur test de virginité;2:Probléme_ Badge;65:Badge vierge;4:Probléme UCH;17:Probléme support de badge;16:Probléme_support de badge;3:Probléme badge;9:Probléme câble;8:Probléme_Câble ,765,17,17,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_BLANK_CID_BLANK,0:CID not blank;1:CID blank ,765,18,18,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_BLANK_CID_PB_IDEnot received,1:Problem IDE not received;0:No Problem on IDE ,765,19,19,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_BLANK_CID_PB_ANT_OR_READER,0:No Problem on antennas or com reader;1:Problem antennas or com reader ,765,20,20,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_BLANK_CID_PB_READER,0:No Problem with Reader;1:Problem Reader ( cc or com ) ,765,22,22,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_BLANK_CID_PB_NO_PSW,0:No Problem on IDE and PSW;1:Problem IDE received not PSW if no other default ,765,23,23,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_BLANK_CID_CURRENT_STATUS,0:test pending;1:test ended ,765,24,31,1,0,0,,2157,6157,ff,VSC Status Bin Présence,0:En cours;64:IsVirginKey is (1);17:Probléme support de badge;16:Probléme_support de badge;9:Probléme câble;8:Probléme_câble;5:Probléme_UCH;4:Probléme UCH;3:Probléme badge;1:Probléme sur test de présence;33:Probléme Renault;2:Probléme_badge;67:Pb Renault / Pb badge;97:IsVirginKey is (1) / Pb Renault;129:Badge_présent;145:Badge pésent / Pb Badge;193:Badge présent;32:Probléme_Renault ,765,25,25,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_ANALYZE_CID_BLANK,0:CID not blank;1:CID blank ,765,26,26,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_IDEnot received,1:Problem IDE not received;0:No Problem on IDE ,765,27,27,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_ANT_OR_READER,0:No Problem on antennas or com reader;1:Problem antennas or com reader ,765,28,28,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_READER,0:No Problem with Reader;1:Problem Reader ( cc or com ) ,765,30,30,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_NO_PSW,0:No Problem on IDE and PSW;1:Problem IDE received not PSW if no other default ,765,31,31,1,0,0,,2157,6157,ff,IMMO_FLAG_SR_ANALYZE_CID_CURRENT_STATUS,0:test pending;1:test ended ,765,32,32,1,0,0,,2157,6157,ff,VSC Status Bin APPrentissage bit 7,0:No pairing pending;1:Pairing pending ,765,33,33,1,0,0,,2157,6157,ff,VSC Status Bin APPrentissage bit 6,0:No problem;1:Key pairing already complete ,765,34,34,1,0,0,,2157,6157,ff,VSC Status Bin APPrentissage bit 5,1:Problem IDE not received OR Key locked OR pairing complete for all keys OR Key pairing already performed OR wrong APV code OR exit diag;0:No problem ,765,35,35,1,0,0,,2157,6157,ff,VSC Status Bin APPrentissage bit 4,0:No Problem on antennas or com reader;1:Problem antennas or com reader ,765,36,36,1,0,0,,2157,6157,ff,VSC Status Bin APPrentissage bit 3,0:No problem;1:Problem reader ( cc ground or +Vbat ) ,765,37,37,1,0,0,,2157,6157,ff,VSC Status Bin APPrentissage bit 2,1:Problem CID pairing timeout;0:No problem ,765,38,38,1,0,0,,2157,6157,ff,VSC Status Bin APPrentissage bit 1,0:No problem;1:Problem PSW not received or writing codes failed or failure authen. ,765,39,39,1,0,0,,2157,6157,ff,VSC Status Bin APPrentissage bit 0,0:Pairing pending;1:Pairing done or time out reached ,765,40,40,1,0,0,,2157,6157,ff,IMMO_FLAG_APV_CODE_RECOGNIZED,0:inactif;1:Actif ,765,41,41,1,0,0,,2157,6157,ff,IMMO_FLAG_CODE_APV_AVAILABLE_S,0:inactif;1:Actif ,765,46,46,1,0,0,,2157,6157,ff,VSC VerlogSecretKeyDisponible,0:inactif;1:Actif ,765,56,56,1,0,0,,2157,6157,ff,VSC_PP_BadgeDéjaAppris,0:Badge non déja appris;1:Badge déja appris ,765,64,71,1,0,0,,2157,6157,ff,Get_Last_Configuration_Error,14:ERROR_PAIRING_CTX_PAGE_1;21:ERROR_INVALID_OPERATION;15:ERROR_PAIRING_CTX_PAGE_2;20:ERROR_INVALID_CID_NUMBER;16:ERROR_PAIRING_CTX_PAGE_3;17:ERROR_UNKNOWN_BLANK_CID;18:ERROR_TIMEOUT_CID_CONF;19:TRP_DRIVER_NOT_AVAILABLE;10:ERROR_LOCK_KEY;22:ERROR_RESYNCH;0:OPERATION_SUCCESSFUL;13:ERROR_EEPROM_FAILURE;11:ERROR_AUTH_NEW_ISK;9:ERROR_WRITE_ISK;8:ERROR_WRITE_KIN;3:LOCKED_KEY;1:ERROR_TRANSPORT_AUTH;6:ERROR_WRITE_CML;5:ERROR_WRITE_RSK;2:ERROR_ALREADY_KEY_LEARNING;4:ERROR_SET_BANK;7:ERROR_READ_KIN;12:ERROR_BADISKAPV ,765,72,72,1,0,0,,2157,6157,ff,VSC_PM_BadgeDéjaAppris,0:Badge non déja appris;1:Badge déja appris ,765,80,80,1,0,0,,2157,6157,ff,VSC Badge_SC1,0:inactif;1:Actif ,765,81,81,1,0,0,,2157,6157,ff,VSC Badge_SC2,0:inactif;1:Actif ,765,82,82,1,0,0,,2157,6157,ff,VSC BadgeFreq_315N,0:inactif;1:Actif ,765,83,83,1,0,0,,2157,6157,ff,VSC BadgeFreq_315R,0:inactif;1:Actif ,765,84,84,1,0,0,,2157,6157,ff,VSC BadgeFreq_433,0:inactif;1:Actif ,765,85,85,1,0,0,,2157,6157,ff,VSC BadgeFreq_433K,0:inactif;1:Actif ,765,86,86,1,0,0,,2157,6157,ff,VSC IDE_Valid_reçu_par_transpondeur,0:inactif;1:Actif ,765,88,91,1,0,0,-,2157,6157,ff,VSC_Low_Level_Battery_ID1 ,765,92,95,1,0,0,-,2157,6157,ff,VSC_Low_Level_Battery_ID2 ,765,96,99,1,0,0,-,2157,6157,ff,VSC_Low_Level_Battery_ID3 ,765,100,103,1,0,0,-,2157,6157,ff,VSC_Low_Level_Battery_ID4 ,765,104,104,1,0,0,,2157,6157,ff,VSC PSW_ReçuSurDernièreAuthent,0:inactif;1:Actif ,765,105,105,1,0,0,,2157,6157,ff,VSC PSW_ValidSurDernièreAuthent,0:inactif;1:Actif ,765,106,106,1,0,0,,2157,6157,ff,VSC IDE_reçu_par_tranpondeur,0:inactif;1:Actif ,765,107,107,1,0,0,,2157,6157,ff,BCM_IS_BLANK_S,1:true;0:false ,765,108,108,1,0,0,,2157,6157,ff,PPCommLecteur de badge,0:inactif;1:Actif ,765,109,109,1,0,0,,2157,6157,ff,PPTrpAntenna,0:inactif;1:Actif ,765,110,110,1,0,0,,2157,6157,ff,PPCCMasse sur alim du lecteur badge,0:inactif;1:Actif ,765,111,111,1,0,0,,2157,6157,ff,PPCC+12_Sur_Alim_Du_Lecteur_Badge,0:inactif;1:Actif ,765,118,119,1,0,0,,2157,6157,ff,VSC Status_d'Authent,3:Authent KO;0:Inactif;1:En cours;2:Authent OK ,765,120,120,1,0,0,,2157,6157,ff,VSC-Status_Switch_Transponder,0:Switch ouvert;1:switch fermé ,765,16,18,1,0,0,,2158,6158,ff,IMMO_NB_CID_PAIRED_S ,765,19,21,1,0,0,-,2158,6158,ff,VSC NbTotalDeBadge_SC2_Appris ,765,24,26,1,0,0,-,2158,6158,ff,VSC NbTotalDeBadge_433K_Appris ,765,27,29,1,0,0,-,2158,6158,ff,VSC NbTotalDeBadge_433_Appris ,765,32,34,1,0,0,-,2158,6158,ff,VSC NbTotalDeBadge_315_Appris ,765,35,37,1,0,0,-,2158,6158,ff,VSC NbTotalDeBadge_315R_Appris ,765,40,47,1,0,0,,2158,6158,ff,IMMO_COUNTER_REMAINING_IGNITION_BEFORE_APV_CODE_ERASING ,765,48,79,1,0,0,,2158,6158,1ff,VSC PSWTag ,765,80,82,1,0,0,-,2158,6158,ff,VSC N°DuDernierBadgeAuthentifié ,765,85,87,1,0,0,,2158,6158,ff,VSC N°DuDernierBadge_Start_Stop,4:Démarrage via ID4;1:Demarrage via ID1;0:Aucun démarrage;2:Démarrage via ID2;3:Démarrage via ID3 ,765,88,95,1,0,0,,2158,6158,ff,VSC_Authent_result ,765,96,111,1,0,0,,2158,6158,ff,VAC_Nb_AuthentNonReussi ,765,120,127,1,0,0,-,2158,6158,ff,VSC_Count _Resync_ID1 (1 octet modulo 256) ,765,128,135,1,0,0,-,2158,6158,ff,VSC_Count _Resync_ID2(1 octet modulo 256) ,765,136,143,1,0,0,-,2158,6158,ff,VSC_Count _Resync_ID3 (1 octet modulo 256) ,765,144,151,1,0,0,-,2158,6158,ff,VSC_ Count _Resync_ID4 (1 octet modulo 256) ,765,152,159,1,0,0,-,2158,6158,ff,VSC_NbResync_Failed_ID1 (1 octet modulo 256) ,765,160,167,1,0,0,-,2158,6158,ff,VSC_NbResync_Failed_ID2 (1 octet modulo 256) ,765,168,175,1,0,0,-,2158,6158,ff,VSC_NbResync_Failed_ID3 (1 octet modulo 256) ,765,176,183,1,0,0,-,2158,6158,ff,VSC_NbResync_Failed_ID4 (1 octet modulo 256) ,765,184,215,1,0,0,,2158,6158,1ff,VSC Code_IDE ,765,216,223,1,0,0,,2158,6158,4ff,IMMO_APV_CODE_S(0) ,765,224,231,1,0,0,,2158,6158,4ff,IMMO_APV_CODE_S(1) ,765,232,239,1,0,0,,2158,6158,4ff,IMMO_APV_CODE_S(2) ,765,240,247,1,0,0,,2158,6158,4ff,IMMO_APV_CODE_S(3) ,765,248,255,1,0,0,,2158,6158,4ff,IMMO_APV_CODE_S(4) ,765,256,263,1,0,0,,2158,6158,4ff,IMMO_APV_CODE_S(5) ,765,264,279,1,0,0,,2158,6158,ff,VSC Nb_Authent_Total_lecteur ,765,280,295,1,0,0,,2158,6158,ff,VSC Nb_AuthentNonRéussi_Lecteur ,765,296,311,1,0,0,,2158,6158,ff,VSC Nb_Authent_Total_DemML ,765,312,327,1,0,0,,2158,6158,ff,VSC Nb_AuthentNonRéussi_DemML ,765,328,343,1,0,0,,2158,6158,ff,VSC Nb_Authent_Total_CondaML ,765,344,359,1,0,0,,2158,6158,ff,VSC Nb_AuthentNonRéussi_CondaML ,765,360,375,1,0,0,,2158,6158,ff,VSC Nb_Authent_Total_DeCondaML ,765,376,391,1,0,0,,2158,6158,ff,VSC Nb_AuthentNonRéussi_DeCondaML ,765,392,407,1,0,0,,2158,6158,ff,VSC Nb_Authent_Total_Wac ,765,408,410,1,0,0,,2158,6158,ff,VSC_Servant_ID,4:Badge Valet - badge N°4;0:Aucun Badge Valet;1:Badge Valet - badge N°1;2:Badge Valet - badge N°2;3:Badge Valet - badge N°3 ,765,411,413,1,0,0,,2158,6158,ff,VSC__UserIdentification,0:No card Identifier was authenticated;1:card Identifier N° 1 was authenticated;2:card Identifier N° 2 was authenticated;3:card Identifier N° 3 was authenticated;4:card Identifier N° 4 was authenticated ,765,16,47,1,0,0,,2159,6159,1ff,Card data Page 0 ,765,48,79,1,0,0,,2159,6159,1ff,Card data Page 1 ,765,80,111,1,0,0,,2159,6159,1ff,Card data Page 2 ,765,112,143,1,0,0,,2159,6159,1ff,Card data Page 3 ,765,144,175,1,0,0,,2159,6159,1ff,Card data Page 4 ,765,176,207,1,0,0,,2159,6159,1ff,Card data Page 5 ,765,208,239,1,0,0,,2159,6159,1ff,Card data Page 6 ,765,240,271,1,0,0,,2159,6159,1ff,Card data Page 7 ,765,16,23,1,0,0,,215B,615B,ff,CôtéTriggé,12:Conda côté cond;9:Déconda larou;7:Déconda coffre;2:Déconda coté pass;1:Déconda côté cond;0:No trig;13:Conda côté pass ,765,24,24,1,0,0,,215B,615B,ff,VSC_Trig_COE_DR,0:Non actif;1:Actif ,765,25,25,1,0,0,,215B,615B,ff,VSC_Trig_COE_ASS,0:Non actif;1:Actif ,765,26,26,1,0,0,,215B,615B,ff,VSC_Trig_COE_RDR,0:Non actif;1:Actif ,765,27,27,1,0,0,,215B,615B,ff,VSC_Trig_COE_RASS,0:Non actif;1:Actif ,765,32,95,1,0,0,,215B,615B,4ff,VSC_Diag_Antennas_Card_By_Tuning ,765,16,23,1,0,0,,215C,615C,ff,REMOTE_BUTTON_CF,0:NO_PRESOAK_UNLOCK;1:UNLOCK_ONLY;2:PRESOAK_ONLY;3:UNLOCK_PRESOAK ,765,24,31,1,0,0,,215C,615C,ff,TECHNICAL_TYPE,0:TECH_WAKE_UP_UNAVAILABLE;1:PERIODICAL_WAKE_UP;2:EVENT_WAKE_UP ,765,32,32,1,0,0,,215C,615C,ff,WARNING_WITHOUT_DASHBOARD_FEEDBACK_CF,0:without;1:with ,765,16,17,1,0,0,,215D,615D,ff,VSC_Lighting_PUSH,1:Allumée intense;2:Allumée faible;0:Eteinte ,765,18,19,1,0,0,,215D,615D,ff,VSC_lighting_CardReader,0:Eteinte;2:Clignotement;1:Allumée ,765,20,20,1,0,0,-,215D,615D,ff,PPMauvais_code_INJ_face_ à_code_UCH ,765,24,24,1,0,0,,215D,615D,ff,I_DR_HANDFRO_SENSOR,1:on;0:off ,765,25,25,1,0,0,,215D,615D,ff,I_ASS_HANDFRO_SENSOR,1:on;0:off ,765,26,26,1,0,0,,215D,615D,ff,I_RD_HANDFRO_SENSOR,1:on;0:off ,765,27,27,1,0,0,,215D,615D,ff,I_RA_HANDFRO_SENSOR,1:on;0:off ,765,28,28,1,0,0,,215D,615D,ff,BOUTON CONDA VSC SC2 COND,1:ouvert;0:ferme ,765,29,29,1,0,0,,215D,615D,ff,Relecture alim lecteur badge,1:ouvert;0:ferme ,765,30,30,1,0,0,,215D,615D,ff,BOUTON CONDA VSC SC2 PASS,1:ouvert;0:ferme ,765,32,39,1,0,0,,215D,615D,ff,PP_ICM_Antenna,10:Valeur de NO ERROR ICM;0:Pb de communication SPI;11:Tension d'entrée du SR trop faible;6:Time out d'activation SR;12:Tension d'entrée du SR trop haute;9:Pb de load state ?;8:ICM error 2;13:Erreur temporaire;7:Tme out de tension SR non atteinte;5:Tension de sortie du SR trop haute;4:Tension de sortie du SR trop basse;3:Pb de synchro;1:ICM Error 1;2:Over tempêrature ,765,40,40,1,0,0,,215D,615D,ff,I_TGATE_HANDFR_SENSOR,1:ouvert;0:ferme ,765,41,41,1,0,0,,215D,615D,ff,I_RR_HANDFRCL_SENSOR,1:ouvert;0:ferme ,765,42,42,1,0,0,,215D,615D,ff,I_RL_HANDFRCL_SENSOR,1:ouvert;0:ferme ,765,16,16,1,0,0,,215E,615E,ff,VSC_D PUSH BY CONDUCTEUR ,765,17,17,1,0,0,,215E,615E,ff,VSC_Déverrouillage colonne terminé,0:non terminé;1:terminé ,765,18,18,1,0,0,,215E,615E,ff,VSC_Etat Verlog UCH,1:Protégée;0:Déprotégée ,765,19,19,1,0,0,,215E,615E,ff,VSC_UCH codée,1:codée;0:vierge ,765,20,20,1,0,0,,215E,615E,ff,VSC_Verrou colonne vierge,0:vierge;1:codé ,765,21,21,1,0,0,,215E,615E,ff,VSC_Verrouillage colonne terminé,0:non terminé;1:terminé ,765,22,22,1,0,0,,215E,615E,ff,VSC_UCH voit INJECTION vierge ou codée,1:Injection vierge;0:Injection codée ,765,24,31,1,0,0,,215E,615E,ff,VSC_COMPT_ECHECS_DEPROT_INJ ,765,32,32,1,0,0,,215E,615E,ff,VSC_Apprentissage Verrou APV autorisé pour 10 minutes ,765,34,34,1,0,0,,215E,615E,ff,VSC_AuthentStatus,0:ECM déprotégée;1:ECM protégée ,765,40,42,1,0,0,,215E,615E,ff,DONGLE_RETRY_HISTORY_COUNTER ,765,43,44,1,0,0,,215E,615E,ff,DONGLE_SLAVE_STATE,0:SLAVE_IS_BLANK;1:SLAVE_IS_PAIRED;2:SLAVE_ERROR;3:SLAVE_NOT_OPERATIONAL ,765,45,45,1,0,0,,215E,615E,ff,DongelRegistration_Done,0:Dongle not registered;1:Dongle registered ,765,46,46,1,0,0,,215E,615E,ff,DongleStatus,1:Dongle is authenticated;0:Dongle is not authenticated ,765,47,47,1,0,0,,215E,615E,ff,DONGLE_CONFIG_SLAVE,0:True (Dongle Checking is on);1:False(Dongle Checking is off) ,765,48,55,1,0,0,time,215E,615E,ff,FAILED_AUTHENT_LEVEL2_COUNTER_S ,765,56,63,1,0,0,,215E,615E,ff,LOW_FAILED_AUTHENT_LEVEL2_COUNTER ,765,64,64,1,0,0,,215E,615E,ff,FAILED_AUTHENT_LEVEL2_CONFIRMED_S,1:true;0:false ,765,72,79,1,0,0,time,215E,615E,ff,CTRL_TIME_AUTHENT_LEVEL2 ,765,80,80,1,0,0,,215E,615E,ff,CAR_SHARING_AUTHORIZED,0:False;1:True ,765,81,81,1,0,0,,215E,615E,ff,CS_ANTISCANNING_IS_ACTIVATED,0:False;1:True ,765,82,82,1,0,0,,215E,615E,ff,CS_ERROR_RESPONSE_TCU,0:False;1:True ,765,83,83,1,0,0,,215E,615E,ff,TCU_IS_AUTHENTICATED,0:False;1:True ,765,84,87,1,0,0,,215E,615E,ff,BCM_CS_USER_IDENT,0:CS_UI_UNAVAILABLE;1:CS_UI_EXTERNAL_READER;2:CS_UI_CALL_CENTER;3:CS_UI_NOT_USED ,765,88,91,1,0,0,,215E,615E,ff,TCU_REQUEST,0:TCU_NO_REQUEST;1:TCU_LOCK;2:TCU_UNLOCK;3:TCU_REQUEST_NOT_USED ,765,92,95,1,0,0,,215E,615E,ff,LAST_TCU_REQUEST,0:TCU_NO_REQUEST;1:TCU_LOCK;2:TCU_UNLOCK;3:TCU_REQUEST_NOT_USED ,765,96,96,1,0,0,,215E,615E,ff,CAN_TCU_CS_ACTIVE,0:False;1:True ,765,97,97,1,0,0,,215E,615E,ff,CAN_TCU_CS_AUTORISE,0:False;1:True ,765,16,16,1,0,0,,215F,615F,ff,NO_LIGHTS_CSW (matrix line 1 _ column 2),1:on;0:off ,765,17,17,1,0,0,,215F,615F,ff,TAIL_LAMPS_CSW (matrix line 1 _ column 4),1:on;0:off ,765,18,18,1,0,0,,215F,615F,ff,HEAD_LAMPS_CSW (matrix line 1 _ column 5),1:on;0:off ,765,19,19,1,0,0,,215F,615F,ff,AUTO_LIGHT_CSW (matrix line 4 _ column 3),1:on;0:off ,765,20,20,1,0,0,,215F,615F,ff,HIGH_BEAM_CSW (matrix line 2 _ column 3),1:on;0:off ,765,21,21,1,0,0,,215F,615F,ff,PASSING_CSW (matrix line 2 _ column 4),1:on;0:off ,765,22,22,1,0,0,,215F,615F,ff,FRONT_FOG_CSW (matrix line 2 _ column 5),1:on;0:off ,765,23,23,1,0,0,,215F,615F,ff,REAR_FOG_CSW (matrix line 3 _ column 1),1:on;0:off ,765,24,24,1,0,0,,215F,615F,ff,NO_FRONT_WIPER_CSW (matrix line 2 _ column 1),1:on;0:off ,765,25,25,1,0,0,,215F,615F,ff,FRONT_WIPER_INT_CSW (matrix line 1 _ column 3),1:on;0:off ,765,26,26,1,0,0,,215F,615F,ff,FRONT_WIPER_LOW_CSW (matrix line 1 _ column 6),1:on;0:off ,765,27,27,1,0,0,,215F,615F,ff,FRONT_WIPER_HIGH_CSW (matrix line 5 _ column 4),1:on;0:off ,765,28,29,1,0,0,,215F,615F,ff,INT_SPEED_CSW (matrix line 5 _ columns 1 to 3),0:off/off/off;1:on/off/off;2:off/on/off;3:off/off/on ,765,30,30,1,0,0,,215F,615F,ff,REAR_WIPER_CSW (matrix line 3 _ column 4),1:on;0:off ,765,31,31,1,0,0,,215F,615F,ff,FLASHER_RIGHT_CSW (matrix line 4 _ column 2),1:on;0:off ,765,32,32,1,0,0,,215F,615F,ff,FLASHER_LEFT_CSW (matrix line 4 _ column 3),1:on;0:off ,765,33,33,1,0,0,,215F,615F,ff,ADAC_PLUS_CSW (matrix line 3 _ column 5),1:on;0:off ,765,34,34,1,0,0,,215F,615F,ff,ADAC_MINUS_CSW (matrix line 4 _ column 5),1:on;0:off ,765,16,16,1,0,0,,2161,6161,ff,I_DR_DOOR_SW,1:on;0:off ,765,17,17,1,0,0,,2161,6161,ff,I_ASS_DOOR_SW,1:on;0:off ,765,18,18,1,0,0,,2161,6161,ff,I_RL_DOOR_SW,1:on;0:off ,765,19,19,1,0,0,,2161,6161,ff,I_RR_DOOR_SW,1:on;0:off ,765,20,20,1,0,0,,2161,6161,ff,I_TGATE_OPENER_SW,1:on;0:off ,765,21,21,1,0,0,,2161,6161,ff,I_TGATE_STAT,1:on;0:off ,765,22,22,1,0,0,,2161,6161,ff,I_GLASSHATCH_OPENER_SW,1:on;0:off ,765,23,23,1,0,0,,2161,6161,ff,I_GLASSHATCH_STAT,1:on;0:off ,765,25,25,1,0,0,,2161,6161,ff,SSD_WAKE_UP,1:on;0:off ,765,26,26,1,0,0,,2161,6161,ff,I_DOORLOCK_SW,1:on;0:off ,765,29,29,1,0,0,,2161,6161,ff,I_RL_CHILDLOCK_STAT,1:Locked;0:Unlocked ,765,30,30,1,0,0,,2161,6161,ff,I_RR_CHILDLOCK_STAT,1:Locked;0:Unlocked ,765,31,31,1,0,0,,2161,6161,ff,I_DR_KNOB_SW,1:on;0:off ,765,32,32,1,0,0,,2161,6161,ff,I_DOORS_KNOB_SW,1:on;0:off ,765,33,33,1,0,0,,2161,6161,ff,O_UNLOCK_DOORS,1:on;0:off ,765,34,34,1,0,0,,2161,6161,ff,O_LOCK_DOORS,1:on;0:off ,765,35,35,1,0,0,,2161,6161,ff,O_UNLOCK_FUEL,1:on;0:off ,765,36,36,1,0,0,,2161,6161,ff,I_TGATE_INSIDE_OPENER_SW,1:on;0:off ,765,37,37,1,0,0,,2161,6161,ff,O_TGATE_OPENER,1:on;0:off ,765,38,38,1,0,0,,2161,6161,ff,O_GLASSHATCH_OPENER,1:on;0:off ,765,39,39,1,0,0,,2161,6161,ff,I_TGATE_INSIDE_OPENER_SW2,1:on;0:off ,765,41,41,1,0,0,,2161,6161,ff,O_SUPERLOCK_FR,1:on;0:off ,765,42,42,1,0,0,,2161,6161,ff,O_SUPERLOCK_RR,1:on;0:off ,765,43,43,1,0,0,,2161,6161,ff,O_DOORLOCK_LED,1:on;0:off ,765,44,44,1,0,0,,2161,6161,ff,I_SSDR_OPEN,1:on;0:off ,765,45,45,1,0,0,,2161,6161,ff,I_SSDL_OPEN,1:on;0:off ,765,48,55,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(1),0:NONE;1:CHILD_LOCK_BY_CL_BUTTON;2:CHILD_UNLOCK_BY_CL_BUTTON;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;4:CRASH_UNLOCK_BY_CRASH_UL;5:LOCK_ALL_BY_KEYFOB;6:LOCK_ALL_BY_HANDSFREE;7:LOCK_ALL_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;9:LOCK_BY_HANDSFREE_WAC;10:LOCK_BY_AUTO_RE_LOCK;11:LOCK_BY_CDL_BUTTON;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;13:LOCK_BY_LOCK_WITH_SPEED;14:LOCK_FUEL_BY_HANDSFREE_WAC;15:LOCK_FUEL_BY_ACT;16:SECURITY_UNLOCK_BY_CRASH_UL;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;18:SUPERLOCK_BY_ACT;19:SUPERLOCK_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;26:SUPERUNLOCK_BY_ACT;27:SUPERUNLOCK_ALL_BY_KEYFOB;28:SUPERUNLOCK_ALL_BY_HANDSF;29:SUPERUNLOCK_ALL_BY_RE_SL;30:SUPERUNLOCK_ALL_BY_RTL_DR;31:SUPERUNLOCK_ALL_BY_RTL_CD;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;33:UNLOCK_ALL_BY_ACT;34:UNLOCK_ALL_BY_KEYFOB;35:UNLOCK_ALL_BY_HANDSFREE;36:UNLOCK_BY_CDL_BUTTON;37:UNLOCK_BY_UNLOCK_LINKED;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;39:UNLOCK_FUEL_BY_ACT;40:UNLOCK_BY_RTL_DOOR_OPENED;41:UNLOCK_BY_RTL_CARD_IN_READER;42:LOCK_BACKDOORS_BY_KEYFOB;43:UNLOCK_BACKDOORS_BY_KEYFOB;44:DRIVER_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;51:REAR_LEFT_DOOR_CLOSE;52:TAILGATE_OPEN;53:TAILGATE_CLOSE;54:GLASSHATCH_OPEN;55:GLASSHATCH_CLOSE;56:LOCK_ALL_BY_VALET;57:LOCK_ALL_NOT_DRIVER_BY_VALET;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;60:SUPERUNLOCK_CHILDLKED_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;63:LOCK_UNLOCK_DRIVER_BY_VALET;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;65:UNLOCK_DR_BY_RTL_CD_IN_READER;66:SUPERUNLOCK_CHILDLKED_BY_CDL;67:SUPERUNLOCK_ALL_BY_CDL;68:LOCK_GLOVES_BOX_BY_ACT;69:UNLOCK_GLOVES_BOX_BY_ACT;70:LOCK_ALL_BY_DRIVER_KNOB;71:UNLOCK_ALL_BY_DRIVER_KNOB;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;79:UNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;82:UNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;85:TAILGATE_OPENING_ON_BY_DRIVER;86:TAILGATE_OPENING_ON_BY_BTN;87:TAILGATE_OPENING_ON_BY_RKE_LONG;88:TAILGATE_OPENING_BY_HANDSFREE;89:TRUNK_RE_OPENING_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;91:GLASSHATCH_OPEN_BY_HANDSFREE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,56,63,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(2),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,64,71,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(3),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,72,79,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(4),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,80,87,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(5),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,88,95,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(6),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,96,103,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(7),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,104,111,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(8),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,112,119,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(9),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,120,127,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(10),0:NONE;1:CHILD_LOCK_BY_CL_BUTTON;2:CHILD_UNLOCK_BY_CL_BUTTON;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;4:CRASH_UNLOCK_BY_CRASH_UL;5:LOCK_ALL_BY_KEYFOB;6:LOCK_ALL_BY_HANDSFREE;7:LOCK_ALL_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;9:LOCK_BY_HANDSFREE_WAC;10:LOCK_BY_AUTO_RE_LOCK;11:LOCK_BY_CDL_BUTTON;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;13:LOCK_BY_LOCK_WITH_SPEED;14:LOCK_FUEL_BY_HANDSFREE_WAC;15:LOCK_FUEL_BY_ACT;16:SECURITY_UNLOCK_BY_CRASH_UL;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;18:SUPERLOCK_BY_ACT;19:SUPERLOCK_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;26:SUPERUNLOCK_BY_ACT;27:SUPERUNLOCK_ALL_BY_KEYFOB;28:SUPERUNLOCK_ALL_BY_HANDSF;29:SUPERUNLOCK_ALL_BY_RE_SL;30:SUPERUNLOCK_ALL_BY_RTL_DR;31:SUPERUNLOCK_ALL_BY_RTL_CD;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;33:UNLOCK_ALL_BY_ACT;34:UNLOCK_ALL_BY_KEYFOB;35:UNLOCK_ALL_BY_HANDSFREE;36:UNLOCK_BY_CDL_BUTTON;37:UNLOCK_BY_UNLOCK_LINKED;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;39:UNLOCK_FUEL_BY_ACT;40:UNLOCK_BY_RTL_DOOR_OPENED;41:UNLOCK_BY_RTL_CARD_IN_READER;42:LOCK_BACKDOORS_BY_KEYFOB;43:UNLOCK_BACKDOORS_BY_KEYFOB;44:DRIVER_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;51:REAR_LEFT_DOOR_CLOSE;52:TAILGATE_OPEN;53:TAILGATE_CLOSE;54:GLASSHATCH_OPEN;55:GLASSHATCH_CLOSE;56:LOCK_ALL_BY_VALET;57:LOCK_ALL_NOT_DRIVER_BY_VALET;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;60:SUPERUNLOCK_CHILDLKED_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;63:LOCK_UNLOCK_DRIVER_BY_VALET;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;65:UNLOCK_DR_BY_RTL_CD_IN_READER;66:SUPERUNLOCK_CHILDLKED_BY_CDL;67:SUPERUNLOCK_ALL_BY_CDL;68:LOCK_GLOVES_BOX_BY_ACT;69:UNLOCK_GLOVES_BOX_BY_ACT;70:LOCK_ALL_BY_DRIVER_KNOB;71:UNLOCK_ALL_BY_DRIVER_KNOB;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;79:UNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;82:UNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;85:TAILGATE_OPENING_ON_BY_DRIVER;86:TAILGATE_OPENING_ON_BY_BTN;87:TAILGATE_OPENING_ON_BY_RKE_LONG;88:TAILGATE_OPENING_BY_HANDSFREE;89:TRUNK_RE_OPENING_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;91:GLASSHATCH_OPEN_BY_HANDSFREE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,128,135,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(11),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,136,143,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(12),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,144,151,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(13),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,152,159,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(14),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,160,167,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(15),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,168,175,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(16),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,176,183,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(17),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,184,191,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(18),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,192,199,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(19),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,200,207,1,0,0,,2161,6161,ff,LAST_DOOR_LOCK_OPEN_ACTION(20),91:GLASSHATCH_OPEN_BY_HANDSFREE;90:GLASSHATCH_OPENER_ON_BY_DRV;89:TRUNK_RE_OPENING_BY_HANDSFREE;88:TAILGATE_OPENING_BY_HANDSFREE;87:TAILGATE_OPENING_ON_BY_RKE_LONG;86:TAILGATE_OPENING_ON_BY_BTN;85:TAILGATE_OPENING_ON_BY_DRIVER;84:SUPERUNLOCK_ALL_BY_ASDM_LEFT;83:SUPERUNLOCK_CHILDLKED_BY_ASDM_LEFT;82:UNLOCK_ALL_BY_ASDM_LEFT;81:SUPERUNLOCK_ALL_BY_ASDM_RIGHT;80:SUPERUNLOCK_CHILDLKED_BY_ASDM_RIGHT;79:UNLOCK_ALL_BY_ASDM_RIGHT;78:SUPERUNLOCK_ALL_BY_SLD_LEFT_LP;77:SUPERUNLOCK_CHILDLKED_BY_SLD_LEFT_LP;76:UNLOCK_ALL_BY_SLD_LEFT_LONG_PRESS;75:SUPERUNLOCK_ALL_BY_SLD_RIGHT_LP;74:SUPERUNLOCK_CHILDLKED_BY_SLD_RIGHT_LP;73:UNLOCK_ALL_BY_SLD_RIGHT_LONG_PRESS;72:HIGH_LOCK_BY_LOCK_WITH_SPEED;71:UNLOCK_ALL_BY_DRIVER_KNOB;70:LOCK_ALL_BY_DRIVER_KNOB;69:UNLOCK_GLOVES_BOX_BY_ACT;68:LOCK_GLOVES_BOX_BY_ACT;67:SUPERUNLOCK_ALL_BY_CDL;66:SUPERUNLOCK_CHILDLKED_BY_CDL;65:UNLOCK_DR_BY_RTL_CD_IN_READER;64:UNLOCK_DR_BY_RTL_DOOR_OPENED;63:LOCK_UNLOCK_DRIVER_BY_VALET;62:UNLOCK_DRIVER_BY_VALET;61:SUPERUNLOCK_ALL_BY_VALET;60:SUPERUNLOCK_CHILDLKED_BY_VALET;59:LOCK_NOT_FUEL_BY_LCK_WITH_SPD;58:LOCK_NOT_FUEL_BY_CDL_BUTTON;57:LOCK_ALL_NOT_DRIVER_BY_VALET;56:LOCK_ALL_BY_VALET;55:GLASSHATCH_CLOSE;54:GLASSHATCH_OPEN;53:TAILGATE_CLOSE;52:TAILGATE_OPEN;51:REAR_LEFT_DOOR_CLOSE;50:REAR_LEFT_DOOR_OPEN;49:REAR_RIGHT_DOOR_CLOSE;48:REAR_RIGHT_DOOR_OPEN;47:ASSIST_DOOR_CLOSE;46:ASSIST_DOOR_OPEN;45:DRIVER_DOOR_CLOSE;44:DRIVER_DOOR_OPEN;43:UNLOCK_BACKDOORS_BY_KEYFOB;42:LOCK_BACKDOORS_BY_KEYFOB;41:UNLOCK_BY_RTL_CARD_IN_READER;40:UNLOCK_BY_RTL_DOOR_OPENED;39:UNLOCK_FUEL_BY_ACT;38:UNLOCK_DRIVER_FUEL_BY_KEYFOB;37:UNLOCK_BY_UNLOCK_LINKED;36:UNLOCK_BY_CDL_BUTTON;35:UNLOCK_ALL_BY_HANDSFREE;34:UNLOCK_ALL_BY_KEYFOB;33:UNLOCK_ALL_BY_ACT;32:SUPERUNLOCK_BY_RE_SUPERUNLOCK;31:SUPERUNLOCK_ALL_BY_RTL_CD;30:SUPERUNLOCK_ALL_BY_RTL_DR;29:SUPERUNLOCK_ALL_BY_RE_SL;28:SUPERUNLOCK_ALL_BY_HANDSF;27:SUPERUNLOCK_ALL_BY_KEYFOB;26:SUPERUNLOCK_BY_ACT;25:SUPERUNLOCK_CHILDLKED_BY_RTL_CD;24:SUPERUNLOCK_CHILDLKED_BY_RTL_DR;23:SUPERUNLOCK_CHILDLKED_BY_RE_SL;22:SUPERUNLOCK_CHILDLKED_BY_HANDSF;21:SUPERUNLOCK_CHILDLKED_BY_KEYFOB;20:SUPERLOCK_BY_HANDSFREE;19:SUPERLOCK_BY_KEYFOB;18:SUPERLOCK_BY_ACT;17:SECU_UNLCK_CHILDLCK_BY_CRASH_UL;16:SECURITY_UNLOCK_BY_CRASH_UL;15:LOCK_FUEL_BY_ACT;14:LOCK_FUEL_BY_HANDSFREE_WAC;13:LOCK_BY_LOCK_WITH_SPEED;12:LOCK_BY_CDL_BUTTON_LONG_PRESS;11:LOCK_BY_CDL_BUTTON;10:LOCK_BY_AUTO_RE_LOCK;9:LOCK_BY_HANDSFREE_WAC;8:LOCK_BY_ACT;7:LOCK_ALL_BY_HANDSFREE_WAC;6:LOCK_ALL_BY_HANDSFREE;5:LOCK_ALL_BY_KEYFOB;4:CRASH_UNLOCK_BY_CRASH_UL;3:CHILD_UNLOCK_SUPERLOCKED_BY_CL;2:CHILD_UNLOCK_BY_CL_BUTTON;1:CHILD_LOCK_BY_CL_BUTTON;0:NONE;92:TAILGATE_OPENING_ON_BY_BATT;93:LOCK_ALL_BY_CAR_SHARING;94:UNLOCK_ALL_BY_CAR_SHARING;95:SUPERUNLOCK_CHILDLKED_BY_CAR_SHARING;96:SUPERUNLOCK_ALL_BY_CAR_SHARING ,765,16,16,1,0,0,,2162,6162,ff,O_HAZARD_LED,1:on;0:off ,765,17,17,1,0,0,,2162,6162,ff,I_HAZARD_SW,1:on;0:off ,765,18,18,1,0,0,,2162,6162,ff,O_DI_LEFT,1:on;0:off ,765,19,19,1,0,0,,2162,6162,ff,O_DI_RIGHT,1:on;0:off ,765,20,20,1,0,0,,2162,6162,ff,DI_LAMP_FAILURE_CAN,0:off;1:one bulb has failed ,765,16,16,1,0,0,,2163,6163,ff,I_FR_WASHER_SW ,765,19,20,1,0,0,,2163,6163,ff,AUTOWIPEFRAME,0:Stop Position;1:Low Speed;2:High Speed;3:Invalid ,765,16,16,1,0,0,,2164,6164,ff,I_RR_WASHER_SW,1:on;0:off ,765,17,17,1,0,0,,2164,6164,ff,O_RR_WIPER,1:on;0:off ,765,18,18,1,0,0,,2164,6164,ff,I_RR_AUTOSTOP_SW,1:on;0:off ,765,20,20,1,0,0,,2164,6164,ff,RAIN_DETECTED,0:rain not detected;1:rain detected by rain sensor ,765,16,31,.01,0,2,km/h,2165,6165,ff,VEHICLE_SPEED ,765,32,32,1,0,0,,2165,6165,ff,VEHICLE_RUNNING,0:NOT_RUNNING;1:RUNNING ,765,40,43,1,0,0,km/h,2165,6165,ff,VEHICLE_MOVING_THRESHOLD_TP ,765,48,51,1,0,0,km/h,2165,6165,ff,VEHICLE_STOPPED_THRESHOLD_TP ,765,56,57,1,0,0,sec,2165,6165,ff,FRAME_ABSENT_CONFIRMATION_TM_TP ,765,16,23,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(0) ,765,24,31,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(1) ,765,32,39,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(2) ,765,40,47,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(3) ,765,48,55,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(4) ,765,56,63,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(5) ,765,64,71,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(6) ,765,72,79,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(7) ,765,80,87,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(8) ,765,88,95,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(9) ,765,96,103,.4,0,1,-,2166,6166,ff,TAB_POS_MOLETTE_E_CF(10) ,765,112,119,.1,0,1,Volt,2166,6166,ff,I_RHEOSTAT (Volt) ,765,16,16,1,0,0,,2167,6167,ff,I_START_SW,1:on;0:off ,765,17,17,1,0,0,,2167,6167,ff,I_END_CLUTCH_SW,1:on;0:off ,765,18,18,1,0,0,,2167,6167,ff,I_START_CLUTCH_SW,1:on;0:off ,765,19,19,1,0,0,,2167,6167,ff,O_ENG_START_LED,1:on;0:off ,765,20,20,1,0,0,,2167,6167,ff,I_BS_SW,1:on;0:off ,765,21,21,1,0,0,,2167,6167,ff,I_BLS_SW,1:on;0:off ,765,22,22,1,0,0,,2167,6167,ff,I_SS_START_CLUTCH_SW,1:on;0:off ,765,23,23,1,0,0,,2167,6167,ff,I_SS_START_CLUTCH_SW_IO_CF,0:without;1:with ,765,24,31,1,0,0,,2167,6167,ff,MOTEUR_CS,2:L3_REQUESTED_BY_ENG_START_SEQ;11:CONFIRMATION_COND_EN_COURS;21:APRES_5S;20:AVANT_5S;13:GEAR_START_CONDITION_NOT_MET;12:GEAR_START_CONDITION_MET;10:COUPURE_MOTEUR_PAR_DEMANDE_CAN;6:COUPURE_MOTEUR_PAR_COUPURE_APC;5:VERIF_PRESENCE_BADGE;3:START_SEQUENCE_OPERATE;1:NOT_REQUEST_N3_BY_MOTEUR;4:INDEPENDANT_ENG_RUN_NO_STOP_REQ ,765,32,39,1,0,0,,2167,6167,ff,CRANKING_FAILURE_CS,30:Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);21:Max L3 turning ON timeout has expired;22:Stop by customer (start button press) when ignition was OFF;24:Brake or Clutch pedal initial conditions were not OK at start sequence init;25:Brake or Clutch pedal initial conditions are not OK when L3 turning ON has succeed;100:Max cranking timeout has expired;27:Starting Sequence Abortion due to non-respect of blanked BCM;10:Steer LOCK failure inhibition;31:Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);20:L3 turning ON has failed;26:Starting Sequence Abortion due to non-respect of engine short or long relaxation;2:Independent engine running without start sequence;13:BCM can’t communicate with USM by CAN;1:Last start sequence was a success;19:Stop by customer (start button press) when ignition was ON;11:Cranking relay switched on and off by USM;14:Cranking was not allowed by AT ECU;16:Plant inhibition activated;17:VERLOG inhibition;18:Steer unlock failure inhibition;0:No start sequence initiated since last reset;200:auth level2 not auth without l3 turning ON;210:auth level2 not auth with l3 turning ON ,765,40,47,1,0,0,,2167,6167,ff,CRANKING_FAILURE_HISTORY_1_CS,30:Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);21:Max L3 turning ON timeout has expired;22:Stop by customer (start button press) when ignition was OFF;24:Brake or Clutch pedal initial conditions were not OK at start sequence init;25:Brake or Clutch pedal initial conditions are not OK when L3 turning ON has succeed;100:Max cranking timeout has expired;27:Starting Sequence Abortion due to non-respect of blanked BCM;10:Steer LOCK failure inhibition;31:Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);20:L3 turning ON has failed;26:Starting Sequence Abortion due to non-respect of engine short or long relaxation;2:Independent engine running without start sequence;13:BCM can’t communicate with USM by CAN;1:Last start sequence was a success;19:Stop by customer (start button press) when ignition was ON;11:Cranking relay switched on and off by USM;14:Cranking was not allowed by AT ECU;16:Plant inhibition activated;17:VERLOG inhibition;18:Steer unlock failure inhibition;0:No start sequence initiated since last reset;200:auth level2 not auth without l3 turning ON;210:auth level2 not auth with l3 turning ON ,765,48,55,1,0,0,,2167,6167,ff,CRANKING_FAILURE_HISTORY_2_CS,30:Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);21:Max L3 turning ON timeout has expired;22:Stop by customer (start button press) when ignition was OFF;24:Brake or Clutch pedal initial conditions were not OK at start sequence init;25:Brake or Clutch pedal initial conditions are not OK when L3 turning ON has succeed;100:Max cranking timeout has expired;27:Starting Sequence Abortion due to non-respect of blanked BCM;10:Steer LOCK failure inhibition;31:Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);20:L3 turning ON has failed;26:Starting Sequence Abortion due to non-respect of engine short or long relaxation;2:Independent engine running without start sequence;13:BCM can’t communicate with USM by CAN;1:Last start sequence was a success;19:Stop by customer (start button press) when ignition was ON;11:Cranking relay switched on and off by USM;14:Cranking was not allowed by AT ECU;16:Plant inhibition activated;17:VERLOG inhibition;18:Steer unlock failure inhibition;0:No start sequence initiated since last reset;200:auth level2 not auth without l3 turning ON;210:auth level2 not auth with l3 turning ON ,765,56,63,1,0,0,,2167,6167,ff,CRANKING_FAILURE_HISTORY_3_CS,30:Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);21:Max L3 turning ON timeout has expired;22:Stop by customer (start button press) when ignition was OFF;24:Brake or Clutch pedal initial conditions were not OK at start sequence init;25:Brake or Clutch pedal initial conditions are not OK when L3 turning ON has succeed;100:Max cranking timeout has expired;27:Starting Sequence Abortion due to non-respect of blanked BCM;10:Steer LOCK failure inhibition;31:Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);20:L3 turning ON has failed;26:Starting Sequence Abortion due to non-respect of engine short or long relaxation;2:Independent engine running without start sequence;13:BCM can’t communicate with USM by CAN;1:Last start sequence was a success;19:Stop by customer (start button press) when ignition was ON;11:Cranking relay switched on and off by USM;14:Cranking was not allowed by AT ECU;16:Plant inhibition activated;17:VERLOG inhibition;18:Steer unlock failure inhibition;0:No start sequence initiated since last reset;200:auth level2 not auth without l3 turning ON;210:auth level2 not auth with l3 turning ON ,765,64,71,1,0,0,,2167,6167,ff,CRANKING_FAILURE_HISTORY_4_CS,30:Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);21:Max L3 turning ON timeout has expired;22:Stop by customer (start button press) when ignition was OFF;24:Brake or Clutch pedal initial conditions were not OK at start sequence init;25:Brake or Clutch pedal initial conditions are not OK when L3 turning ON has succeed;100:Max cranking timeout has expired;27:Starting Sequence Abortion due to non-respect of blanked BCM;10:Steer LOCK failure inhibition;31:Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);20:L3 turning ON has failed;26:Starting Sequence Abortion due to non-respect of engine short or long relaxation;2:Independent engine running without start sequence;13:BCM can’t communicate with USM by CAN;1:Last start sequence was a success;19:Stop by customer (start button press) when ignition was ON;11:Cranking relay switched on and off by USM;14:Cranking was not allowed by AT ECU;16:Plant inhibition activated;17:VERLOG inhibition;18:Steer unlock failure inhibition;0:No start sequence initiated since last reset;200:auth level2 not auth without l3 turning ON;210:auth level2 not auth with l3 turning ON ,765,72,79,1,0,0,,2167,6167,ff,CRANKING_FAILURE_HISTORY_5_CS,30:Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);21:Max L3 turning ON timeout has expired;22:Stop by customer (start button press) when ignition was OFF;24:Brake or Clutch pedal initial conditions were not OK at start sequence init;25:Brake or Clutch pedal initial conditions are not OK when L3 turning ON has succeed;100:Max cranking timeout has expired;27:Starting Sequence Abortion due to non-respect of blanked BCM;10:Steer LOCK failure inhibition;31:Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);20:L3 turning ON has failed;26:Starting Sequence Abortion due to non-respect of engine short or long relaxation;2:Independent engine running without start sequence;13:BCM can’t communicate with USM by CAN;1:Last start sequence was a success;19:Stop by customer (start button press) when ignition was ON;11:Cranking relay switched on and off by USM;14:Cranking was not allowed by AT ECU;16:Plant inhibition activated;17:VERLOG inhibition;18:Steer unlock failure inhibition;0:No start sequence initiated since last reset;200:auth level2 not auth without l3 turning ON;210:auth level2 not auth with l3 turning ON ,765,80,87,1,0,0,,2167,6167,ff,INHIBITION_DEMARREUR_CS,2:ECM_PROTECTED;3:ECM_NOT_PROTECTED;4:START_SEQUENCE_DISABLED;1:STARTER_PROTECTION_DEACTIVATED ,765,88,88,1,0,0,,2167,6167,ff,CLUTCHEND_ALWAYS_SEEN_TFAIL_S,0:OK;1:Failure present ,765,96,96,1,0,0,,2167,6167,ff,NEUTRAL_CONTACT_FAILURE_S,0:OK;1:Failure present ,765,16,23,1,0,0,,2168,6168,ff,N3_FAILED_CS,0:No start sequence initiated since last reset;1:Last L3 sequence was a success;2:Transponder authent failed;3:Inside car (and transponder) authent failed;4:Steering unlock failed ,765,24,31,1,0,0,,2168,6168,ff,ALIM_NIVEAU_3_CS,1:POWER_LEVEL_3_OFF;2:ID_AUTHENT_INSIDE_CAR;3:STEERING_UNLOCK_IN_PROGRESS;4:ON_PERMANENTLY;5:DELAYED_ON;6:TURN_POWER_LEVEL_3_OFF;7:TURN_POWER_LEVEL_3_ON;10:ID_AUTHENT_THROUGH_TRANSPONDER ,765,32,39,1,0,0,,2168,6168,ff,DEMANDES_COLONNE_CS,4:ATTENTE_DEVEROUILLAGE;1:PAS_DE_DEMANDE;2:ATTENTE_CONDIT_VERROUILLAGE_OK;3:ATTENTE_VEROUILLAGE ,765,40,40,1,0,0,,2168,6168,ff,O_BAT_TEMP_RL,1:on;0:off ,765,41,41,1,0,0,,2168,6168,ff,O_ACC_RL1,1:on;0:off ,765,42,42,1,0,0,,2168,6168,ff,O_APC2_RL,1:on;0:off ,765,43,43,1,0,0,,2168,6168,ff,I_CARD_PRESENT_SW,1:on;0:off ,765,44,44,1,0,0,,2168,6168,ff,O_ACC_RL2,1:on;0:off ,765,45,45,1,0,0,,2168,6168,ff,O_APC_RL,1:on;0:off ,765,48,48,1,0,0,,2168,6168,ff,ASSIST_DOOR_OPEN_DF,0:No event occured since last raz;1:Event occured since last raz ,765,49,49,1,0,0,,2168,6168,ff,BCM_RESET_DF,0:No event occured since last raz;1:Event occured since last raz ,765,50,50,1,0,0,,2168,6168,ff,CAR_HAS_JUST_SECURE_DF,0:No event occured since last raz;1:Event occured since last raz ,765,51,51,1,0,0,,2168,6168,ff,CAR_HAS_JUST_UNSECURE_DF,0:No event occured since last raz;1:Event occured since last raz ,765,52,52,1,0,0,,2168,6168,ff,CARD_IN_READER_STATUS_DF,0:No event occured since last raz;1:Event occured since last raz ,765,53,53,1,0,0,,2168,6168,ff,CUST_ACTION_ON_ADAC_DF,0:No event occured since last raz;1:Event occured since last raz ,765,54,54,1,0,0,,2168,6168,ff,CUST_ACTION_ON_CLIM_DF,0:No event occured since last raz;1:Event occured since last raz ,765,55,55,1,0,0,,2168,6168,ff,CUST_ACTION_ON_COMBI_SWITCH_DF,0:No event occured since last raz;1:Event occured since last raz ,765,56,56,1,0,0,,2168,6168,ff,CUST_ACTION_ON_DCM_DF,0:No event occured since last raz;1:Event occured since last raz ,765,58,58,1,0,0,,2168,6168,ff,CUST_ACTION_ON_MULTIMEDIA_DF,0:No event occured since last raz;1:Event occured since last raz ,765,59,59,1,0,0,,2168,6168,ff,DRIVER_DOOR_OPEN_DF,0:No event occured since last raz;1:Event occured since last raz ,765,60,60,1,0,0,,2168,6168,ff,ENGINE_STATUS_DF,0:No event occured since last raz;1:Event occured since last raz ,765,61,61,1,0,0,,2168,6168,ff,GLASSHATCH_OPEN_DF,0:No event occured since last raz;1:Event occured since last raz ,765,62,62,1,0,0,,2168,6168,ff,R_GLASSHATCH_OPNR_ON_BY_DRV_DF,0:No event occured since last raz;1:Event occured since last raz ,765,63,63,1,0,0,,2168,6168,ff,R_L1_BY_CLIM_DF,0:No event occured since last raz;1:Event occured since last raz ,765,64,64,1,0,0,,2168,6168,ff,R_L1_BY_EXT_LIGHTS_DF,0:No event occured since last raz;1:Event occured since last raz ,765,65,65,1,0,0,,2168,6168,ff,R_L1_BY_STEERING_LOCK_DF,0:No event occured since last raz;1:Event occured since last raz ,765,66,66,1,0,0,,2168,6168,ff,R_POWER_LEVEL_3_ON_DF,0:No event occured since last raz;1:Event occured since last raz ,765,67,67,1,0,0,,2168,6168,ff,R_START_BY_DRIVER_DF,0:No event occured since last raz;1:Event occured since last raz ,765,68,68,1,0,0,,2168,6168,ff,R_TAILGATE_OPENER_ON_BY_DRV_DF,0:No event occured since last raz;1:Event occured since last raz ,765,69,69,1,0,0,,2168,6168,ff,REAR_LEFT_DOOR_OPEN_DF,0:No event occured since last raz;1:Event occured since last raz ,765,70,70,1,0,0,,2168,6168,ff,REAR_RIGHT_DOOR_OPEN_DF,0:No event occured since last raz;1:Event occured since last raz ,765,71,71,1,0,0,,2168,6168,ff,TAILGATE_OPEN_DF,0:No event occured since last raz;1:Event occured since last raz ,765,72,72,1,0,0,,2168,6168,ff,VALID_CARD_INSERTION_M_DF,0:No event occured since last raz;1:Event occured since last raz ,765,73,73,1,0,0,,2168,6168,ff,I_ACC_SW,1:on;0:off ,765,74,74,1,0,0,,2168,6168,ff,I_APC_SW,1:on;0:off ,765,75,75,1,0,0,,2168,6168,ff,I_STARTER_SW,1:on;0:off ,765,76,77,1,0,0,,2168,6168,ff,KEY_STATUS,0:KEY_STOP;2:KEY_IGN;3:KEY_STARTER_REQUEST;1:KEY_ACC ,765,80,87,1,0,0,,2168,6168,ff,POWER_LEVEL_1_CS,3:NO_CUST_ACTION_L1_DELAY_RUNNING;6:MAINTAINED_L1;2:L1_ON_PERMANENTLY;1:POWER_LEVEL_1_IS_OFF;5:GO_TO_SLEEP_L1_DELAY_RUNNING;4:LONG_L1_DELAY_RUNNING ,765,88,88,1,0,0,,2168,6168,ff,R_L3_BY_CUSTOMER,1:true;0:false ,765,89,89,1,0,0,,2168,6168,ff,R_L3_BY_DIAG,1:true;0:false ,765,90,90,1,0,0,,2168,6168,ff,R_L3_BY_ENGINE,1:true;0:false ,765,91,91,1,0,0,,2168,6168,ff,R_L3_BY_PERMANENT,1:true;0:false ,765,92,92,1,0,0,,2168,6168,ff,R_L3_BY_VEHICLE_SPEED,1:true;0:false ,765,93,93,1,0,0,,2168,6168,ff,R_POWER_LEVEL_3_ON,1:true;0:false ,765,94,94,1,0,0,,2168,6168,ff,R_L3_OFF_BY_COLUMN_LOCK,1:true;0:false ,765,95,95,1,0,0,,2168,6168,ff,R_L3_OFF_BY_ENGINE,1:true;0:false ,765,96,103,1,0,0,,2168,6168,ff,S_AND_S_CRANKING_FAILURE_CS,0:No auto start sequence initiated since last reset;1:Independant engine running;2:Last auto start was a success;10:Steer LOCK failure inhibition in Auto Start;11:Cranking relay switched on and off by USM in Auto Start;13:BCM can’t communicate with USM by CAN in Auto Start;16:Plant inhibition activated in Auto Start;17:VERLOG inhibition in Auto Start;18:Steer unlock failure inhibition in Auto Start;26:Auto Starting Sequence Abortion due to non-respect of engine short or long relaxation;27:Auto Starting Sequence Abortion due to non-respect of blanked BCM;30:Auto Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);31:Auto Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Auto Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);100:Max cranking timeout has expired in Auto Start ,765,104,111,1,0,0,,2168,6168,ff,S_AND_S_CRANKING_FAILURE_HISTORY_1_CS,0:No auto start sequence initiated since last reset;1:Independant engine running;2:Last auto start was a success;10:Steer LOCK failure inhibition in Auto Start;11:Cranking relay switched on and off by USM in Auto Start;13:BCM can’t communicate with USM by CAN in Auto Start;16:Plant inhibition activated in Auto Start;17:VERLOG inhibition in Auto Start;18:Steer unlock failure inhibition in Auto Start;26:Auto Starting Sequence Abortion due to non-respect of engine short or long relaxation;27:Auto Starting Sequence Abortion due to non-respect of blanked BCM;30:Auto Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);31:Auto Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Auto Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);100:Max cranking timeout has expired in Auto Start ,765,112,119,1,0,0,,2168,6168,ff,S_AND_S_CRANKING_FAILURE_HISTORY_2_CS,0:No auto start sequence initiated since last reset;1:Independant engine running;2:Last auto start was a success;10:Steer LOCK failure inhibition in Auto Start;11:Cranking relay switched on and off by USM in Auto Start;13:BCM can’t communicate with USM by CAN in Auto Start;16:Plant inhibition activated in Auto Start;17:VERLOG inhibition in Auto Start;18:Steer unlock failure inhibition in Auto Start;26:Auto Starting Sequence Abortion due to non-respect of engine short or long relaxation;27:Auto Starting Sequence Abortion due to non-respect of blanked BCM;30:Auto Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);31:Auto Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Auto Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);100:Max cranking timeout has expired in Auto Start ,765,120,127,1,0,0,,2168,6168,ff,S_AND_S_CRANKING_FAILURE_HISTORY_3_CS,0:No auto start sequence initiated since last reset;1:Independant engine running;2:Last auto start was a success;10:Steer LOCK failure inhibition in Auto Start;11:Cranking relay switched on and off by USM in Auto Start;13:BCM can’t communicate with USM by CAN in Auto Start;16:Plant inhibition activated in Auto Start;17:VERLOG inhibition in Auto Start;18:Steer unlock failure inhibition in Auto Start;26:Auto Starting Sequence Abortion due to non-respect of engine short or long relaxation;27:Auto Starting Sequence Abortion due to non-respect of blanked BCM;30:Auto Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);31:Auto Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Auto Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);100:Max cranking timeout has expired in Auto Start ,765,128,135,1,0,0,,2168,6168,ff,S_AND_S_CRANKING_FAILURE_HISTORY_4_CS,0:No auto start sequence initiated since last reset;1:Independant engine running;2:Last auto start was a success;10:Steer LOCK failure inhibition in Auto Start;11:Cranking relay switched on and off by USM in Auto Start;13:BCM can’t communicate with USM by CAN in Auto Start;16:Plant inhibition activated in Auto Start;17:VERLOG inhibition in Auto Start;18:Steer unlock failure inhibition in Auto Start;26:Auto Starting Sequence Abortion due to non-respect of engine short or long relaxation;27:Auto Starting Sequence Abortion due to non-respect of blanked BCM;30:Auto Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);31:Auto Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Auto Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);100:Max cranking timeout has expired in Auto Start ,765,136,143,1,0,0,,2168,6168,ff,S_AND_S_CRANKING_FAILURE_HISTORY_5_CS,0:No auto start sequence initiated since last reset;1:Independant engine running;2:Last auto start was a success;10:Steer LOCK failure inhibition in Auto Start;11:Cranking relay switched on and off by USM in Auto Start;13:BCM can’t communicate with USM by CAN in Auto Start;16:Plant inhibition activated in Auto Start;17:VERLOG inhibition in Auto Start;18:Steer unlock failure inhibition in Auto Start;26:Auto Starting Sequence Abortion due to non-respect of engine short or long relaxation;27:Auto Starting Sequence Abortion due to non-respect of blanked BCM;30:Auto Starting Sequence Abortion due to non-respect of transmission conditions (clutch switch max travel failure present);31:Auto Starting Sequence Abortion due to non-respect of transmission conditions (neutral contact failure present);32:Auto Starting Sequence Abortion due to non-respect of transmission conditions (no failure on neutral contact nor on clutch switch max travel);100:Max cranking timeout has expired in Auto Start ,765,144,151,1,0,0,,2168,6168,ff,S_AND_S_MOTEUR_CS,1:NOT_IN_STOP_START_MISSION;2:STOP_START_ENG_IN_DRIVING;3:AUTO_START_SEQUENCE_OPERATE ,765,152,152,1,0,0,,2168,6168,ff,R_L1_BY_PRESOAKING_DF,1:true;0:false ,765,153,153,1,0,0,,2168,6168,ff,AUTO_START_ENABLE,1:true;0:false ,765,154,154,1,0,0,,2168,6168,ff,STARTING_REQUEST_TYPE,0:MANUAL;1:AUTOMATIC ,765,160,167,1,0,0,,2168,6168,ff,ENGINE_STATUS,0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,168,175,1,0,0,,2168,6168,ff,ENGINE_STOP_ORIGIN,0:BY_OTHER_CAUSES;1:BY_SYSTEM_REQUEST;2:BY_NORMAL_DRIVER_REQUEST;3:BY_EMERGENCY_REQUEST ,765,24,24,1,0,0,,2169,6169,ff,O_FOG_LAMP,1:on;0:off ,765,25,26,1,0,0,,2169,6169,ff,TUNNELDETECTED,1:tunnel detected;2:reserved;0:no tunnel detected;3:invalid ,765,27,27,1,0,0,,2169,6169,ff,LIGHT_REQUEST_BY_LIGHT_SENSOR ,765,18,18,1,0,0,,216A,616A,ff,O_RR_WINDOW_CONTROL,1:on;0:off ,765,19,19,1,0,0,,216A,616A,ff,O_RL_WINDOW_CONTROL,1:on;0:off ,765,20,20,1,0,0,,216A,616A,ff,O_LVE_RL,1:on;0:off ,765,16,16,1,0,0,,216B,616B,ff,O_PWM_ROOMLAMP_1,1:on;0:off ,765,17,17,1,0,0,,216B,616B,ff,O_PWM_ROOMLAMP_2,1:on;0:off ,765,18,18,1,0,0,,216B,616B,ff,O_PWM_ROOMLAMP_3,1:on;0:off ,765,19,19,1,0,0,,216B,616B,ff,O_PWM_ROOMLAMP_4,1:on;0:off ,765,20,20,1,0,0,,216B,616B,ff,O_ROOMLAMP_5,1:on;0:off ,765,16,47,1,0,0,,216C,616C,4ff,FALREH_CUR_ABSOLUTE_TIME ,765,48,55,1,0,0,,216C,616C,ff,FALREH_INDEX_NUMBER ,765,56,87,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(0) ,765,88,90,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(0),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,92,92,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(0),1:true;0:false ,765,96,103,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(0),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,104,135,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(1) ,765,136,138,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(1),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,140,140,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(1),1:true;0:false ,765,144,151,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(1),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,152,183,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(2) ,765,184,186,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(2),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,188,188,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(2),1:true;0:false ,765,192,199,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(2),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,200,231,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(3) ,765,232,234,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(3),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,236,236,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(3),1:true;0:false ,765,240,247,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(3),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,248,279,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(4) ,765,280,282,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(4),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,284,284,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(4),1:true;0:false ,765,288,295,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(4),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,296,327,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(5) ,765,328,330,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(5),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,332,332,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(5),1:true;0:false ,765,336,343,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(5),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,344,375,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(6) ,765,376,378,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(6),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,380,380,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(6),1:true;0:false ,765,384,391,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(6),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,392,423,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(7) ,765,424,426,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(7),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,428,428,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(7),1:true;0:false ,765,432,439,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(7),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,440,471,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(8) ,765,472,474,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(8),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,476,476,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(8),1:true;0:false ,765,480,487,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(8),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,488,519,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(9) ,765,520,522,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(9),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,524,524,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(9),1:true;0:false ,765,528,535,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(9),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,536,567,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(10) ,765,568,570,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(10),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,572,572,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(10),1:true;0:false ,765,576,583,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(10),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,584,615,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(11) ,765,616,618,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(11),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,620,620,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(11),1:true;0:false ,765,624,631,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(11),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,632,663,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(12) ,765,664,666,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(12),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,668,668,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(12),1:true;0:false ,765,672,679,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(12),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,680,711,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(13) ,765,712,714,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(13),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,716,716,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(13),1:true;0:false ,765,720,727,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(13),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,728,759,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(14) ,765,760,762,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(14),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,764,764,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(14),1:true;0:false ,765,768,775,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(14),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,776,807,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(15) ,765,808,810,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(15),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,812,812,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(15),1:true;0:false ,765,816,823,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(15),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,824,855,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(16) ,765,856,858,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(16),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,860,860,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(16),1:true;0:false ,765,864,871,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(16),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,872,903,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(17) ,765,904,906,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(17),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,908,908,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(17),1:true;0:false ,765,912,919,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(17),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,920,951,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(18) ,765,952,954,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(18),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,956,956,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(18),1:true;0:false ,765,960,967,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(18),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,968,999,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(19) ,765,1000,1002,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(19),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1004,1004,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(19),1:true;0:false ,765,1008,1015,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(19),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,1016,1047,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(20) ,765,1048,1050,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(20),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1052,1052,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(20),1:true;0:false ,765,1056,1063,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(20),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,1064,1095,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(21) ,765,1096,1098,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(21),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1100,1100,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(21),1:true;0:false ,765,1104,1111,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(21),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,1112,1143,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(22) ,765,1144,1146,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(22),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1148,1148,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(22),1:true;0:false ,765,1152,1159,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(22),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,1160,1191,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(23) ,765,1192,1194,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(23),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1196,1196,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(23),1:true;0:false ,765,1200,1207,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(23),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,1208,1239,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(24) ,765,1240,1242,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(24),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1244,1244,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(24),1:true;0:false ,765,1248,1255,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(24),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,1256,1287,100,0,0,ms,216C,616C,1ff,FALREH_ABSOLUTE_TIME(25) ,765,1288,1290,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(25),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1292,1292,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(25),1:true;0:false ,765,1296,1303,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(25),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,1304,1335,1,0,0,,216C,616C,4ff,FALREH_ABSOLUTE_TIME(26) ,765,1336,1338,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(26),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1340,1340,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(26),1:true;0:false ,765,1344,1351,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(26),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,1352,1383,1,0,0,,216C,616C,4ff,FALREH_ABSOLUTE_TIME(27) ,765,1384,1386,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(27),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1388,1388,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(27),1:true;0:false ,765,1392,1399,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(27),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,1400,1431,1,0,0,,216C,616C,4ff,FALREH_ABSOLUTE_TIME(28) ,765,1432,1434,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(28),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1436,1436,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(28),1:true;0:false ,765,1440,1447,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(28),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,1448,1479,1,0,0,,216C,616C,4ff,FALREH_ABSOLUTE_TIME(29) ,765,1480,1482,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE(29),0:VEHICLE_ASLEEP_ENGINE_STOPPED;1:VEHICLE_AWAKE_ENGINE_STOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLE_AWAKE_ENGINE_RUNNING ,765,1484,1484,1,0,0,,216C,616C,ff,FALREH_VEHICLE_STATE_STOP_START_EXTENSION(29),1:true;0:false ,765,1488,1495,1,0,0,,216C,616C,ff,FALREH_ENGINE_STATUS_FROM_CAN(29),0:ENGINE_STOPPED;1:ENGINE_RESERVED;2:INDEPENDANT_RUNNING_ENGINE;3:RUNNING_ENGINE ,765,16,23,13.73,0,0,mBar,216D,616D,ff,front_left_pressure_filtered ,765,24,31,13.73,0,0,mBar,216D,616D,ff,front_right_pressure_filtered ,765,32,39,13.73,0,0,mBar,216D,616D,ff,rear_left_pressure_filtered ,765,40,47,13.73,0,0,mBar,216D,616D,ff,rear_right_pressure_filtered ,765,48,55,1,50,0,°C,216D,616D,ff,front_left_temperature_filtered ,765,56,63,1,50,0,°C,216D,616D,ff,front_right_temperature_filtered ,765,64,71,1,50,0,°C,216D,616D,ff,rear_left_temperature_filtered ,765,72,79,1,50,0,°C,216D,616D,ff,rear_rightt_temperature_filtered ,765,80,87,1,0,0,,216D,616D,ff,coeff_filt_last ,765,88,95,1,0,0,,216D,616D,ff,coeff_filt_prev ,765,96,103,1,0,0,,216D,616D,ff,coeff_filt_old ,765,104,111,13.73,0,0,mBar,216D,616D,ff,TPMS_CURRENT_Pref_roue_AVG ,765,112,119,13.73,0,0,mBar,216D,616D,ff,TPMS_CURRENT_Pref_roue_AVD ,765,120,127,13.73,0,0,mBar,216D,616D,ff,TPMS_CURRENT_Pref_roue_ARG ,765,128,135,13.73,0,0,mBar,216D,616D,ff,TPMS_CURRENT_Pref_roue_ARD ,765,136,143,1,50,0,°C,216D,616D,ff,TPMS_CURRENT_Tref_roue_AVG ,765,144,151,1,50,0,°C,216D,616D,ff,TPMS_CURRENT_Tref_roue_AVD ,765,152,159,1,50,0,°C,216D,616D,ff,TPMS_CURRENT_Tref_roue_ARG ,765,160,167,1,50,0,°C,216D,616D,ff,TPMS_CURRENT_Tref_roue_ARD ,765,168,175,13.73,0,0,mBar,216D,616D,ff,TPMS_CUSTOMER_Pref_roue_AVG ,765,176,183,13.73,0,0,mBar,216D,616D,ff,TPMS_CUSTOMER_Pref_roue_AVD ,765,184,191,13.73,0,0,mBar,216D,616D,ff,TPMS_CUSTOMER_Pref_roue_ARG ,765,192,199,13.73,0,0,mBar,216D,616D,ff,TPMS_CUSTOMER_Pref_roue_ARD ,765,200,207,1,50,0,°C,216D,616D,ff,TPMS_CUSTOMER_Tref_roue_AVG ,765,208,215,1,50,0,°C,216D,616D,ff,TPMS_CUSTOMER_Tref_roue_AVD ,765,216,223,1,50,0,°C,216D,616D,ff,TPMS_CUSTOMER_Tref_roue_ARG ,765,224,231,1,50,0,°C,216D,616D,ff,TPMS_CUSTOMER_Tref_roue_ARD ,765,232,239,1,0,0,min,216D,616D,ff,TPMS_LEARN_RESET_TIMER ,765,240,247,1,0,0,°C,216D,616D,ff,TPMS_MAX_TREF_VALUE ,765,248,255,1,0,0,min,216D,616D,ff,TPMS_LEARN_RESET_MAX_VALUE ,765,256,263,13.73,0,0,mBar,216D,616D,ff,TPMS_current_corrected_pref_AVG ,765,264,271,13.73,0,0,mBar,216D,616D,ff,TPMS_current_corrected_pref_AVD ,765,272,279,13.73,0,0,mBar,216D,616D,ff,TPMS_current_corrected_pref_ARG ,765,280,287,13.73,0,0,mBar,216D,616D,ff,TPMS_current_corrected_pref_ARD ,765,288,295,13.73,0,0,mBar,216D,616D,ff,TPMS_underinflated_threshold_AVG ,765,296,303,13.73,0,0,mBar,216D,616D,ff,TPMS_underinflated_threshold_AVD ,765,304,311,13.73,0,0,mBar,216D,616D,ff,TPMS_underinflated_threshold_ARG ,765,312,319,13.73,0,0,mBar,216D,616D,ff,TPMS_underinflated_threshold_ARD ,765,320,327,1,0,0,,216D,616D,ff,TPMS_UND_INF_ALERT_VAR_ RATE_ON_% ,765,328,335,13.73,0,0,mBar,216D,616D,ff,TPMS_PRESSURE_ALERT_VAR_RATE_OFF_fix ,765,336,343,3,0,0,,216D,616D,ff,TMPS_Cpt_mute_regulatory_AVG ,765,344,351,3,0,0,,216D,616D,ff,TMPS_Cpt_mute_regulatory_AVD ,765,352,359,3,0,0,,216D,616D,ff,TMPS_Cpt_mute_regulatory_ARG ,765,360,367,3,0,0,,216D,616D,ff,TMPS_Cpt_mute_regulatory_ARD ,765,368,368,1,0,0,,216D,616D,ff,TPMS_LEARNING_STATUS,0:custumer ref setting done;1:custumer ref setting not done ,765,369,369,1,0,0,,216D,616D,ff,TPMS_PRESSURES_PLACARD_ACTIVATED,0:customer pressure ref activ;1:OEM pressure ref activ ,765,370,370,1,0,0,,216D,616D,ff,TPMS_LEARN_RESET_DELAY_REACHED,0:customer temp ref activ;1:OEM temp ref activ ,765,16,25,.019,0,2,Volt,216E,616E,ff,SteeringLock_I_PWR_STEERING ,765,32,32,1,0,0,,216E,616E,ff,DIAG_COLUMN_LOCK_SENSOR,0:0V;1:5V ,765,33,33,1,0,0,,216E,616E,ff,O_COLUMN_LOCK_SENSOR,0:Ground;1:Other ,765,34,34,1,0,0,,216E,616E,ff,SteeringLock_DIAG_O_PWR_STEERING,0:not supplied;1:supplied ( output of the relay ) ,765,35,35,1,0,0,,216E,616E,ff,O_PWR_STEERING,1:on;0:off ,765,40,40,1,0,0,,216E,616E,ff,SteeringLock_AnticipatePwrSeqOperating,1:true;0:false ,765,41,41,1,0,0,,216E,616E,ff,SteeringLock_UNTIMELY_POWER,1:true;0:false ,765,42,42,1,0,0,,216E,616E,ff,SteeringLock_UnlockSeqOperating,1:true;0:false ,765,43,43,1,0,0,,216E,616E,ff,SteeringLock_LockSeqOperating,1:true;0:false ,765,44,44,1,0,0,,216E,616E,ff,SteeringLock_Power_On,1:true;0:false ,765,45,45,1,0,0,,216E,616E,ff,STEERINGLOCK_FRAME_PRESENT,1:true;0:false ,765,48,55,1,0,0,,216E,616E,ff,SteeringLock_Power_State,0:Powered_off;1:Power_off_failed;2:Powered ( temporary state- immediately changed );3:Powered_by_anticipate;4:Powered_for_unlock;5:Powered_for_lock;6:Power_failed ( temporary state- immediately changed ) ,765,56,63,1,0,0,,216E,616E,ff,SteeringLock_UnlockState,0:Ordered ( = operating flag- expect power off sequence );1:Done;2:Failed ,765,64,79,1,0,0,,216E,616E,ff,SteeringLock_PowerRequestCounter ,765,88,103,1,0,0,,216E,616E,ff,SteeringLock_UnlockRequestCounter ,765,104,119,1,0,0,,216E,616E,ff,SteeringLock_LockRequestCounter ,765,120,127,1,0,0,,216E,616E,ff,SteeringLock_LearningState,0:Ordered;1:Done;2:Failed ,765,128,135,1,0,0,,216E,616E,ff,SteeringLock_Lock_State,0:Ordered ( = operating flag- expect power off sequence );1:Done;2:Failed ,765,136,151,1,0,0,,216E,616E,ff,ESCL_DIAGNOSIS_FLAG_1,849:ESCL speed inhibition to lock;1306:ESCL still powered - pb sensor line;842:/APC is out of the limits for lock;1307:ESCL still powered - pb interne;810:The Steering Lock code is blank;717:Wrong code error;850:Safetyline inhibition to lock;715:Major electronic failure error;856:crash system failure inhibition to lock;714:Antiscan error;700:Internal problem;716:internal problem;851:major electronic failure;852:minor electronic failure;853:BCM speed inhibition to lock;855:crash inhibition to lock;906:ESCL internal component failure;1050:/APC presents with APC;1066:Sensor line stays active - sensor line CC+;1067:Sensor line stays active - alim CO / CAn NOK;1082:ESCL CAN Frame present with APC;699:Problem with SensorLine;618:The Steering Lock does not wake up;854:ECM status inhibition to lock;314:A speed inhibition is present ( only anticipate and lock cases );666:BCM code and Steering Lock code are different;698:Problem with the Hall sensor;283:USM frame absent;298:Thermal protection is enabled;282:/APC is out of the limits for power;315:A crash inhibition is present ( only anticipate and lock cases );330:The ESCL is untimely powered;346:Problem with BCM relay of the Steering Lock power supply;362:It doesnt reach to wake up the Steering Lock - pb CAN;363:It doesnt reach to wake up the Steering Lock - pb sensor line;678:It doesnt reach to unlock the Steering Lock - mechanical pb;586:/APC is out of the limits for learning;602:Dont succeed to learn the Steering Lock;634:/APC is out of the limits for unlock;673:It doesnt reach to unlock the Steering Lock - absent_frame_BCM_verrou pb;674:It doesnt reach to unlock the Steering Lock - locking_finished pb;675:It doesnt reach to unlock the Steering Lock - internal pb;284:APC is ON;676:It doesnt reach to unlock the Steering Lock - info sensor pb;677:It doesnt reach to unlock the Steering Lock - major elec failure;570:Learning is not authorized ,765,160,160,1,0,0,,216E,616E,ff,SteeringLock_ServLight ,765,161,161,1,0,0,,216E,616E,ff,SteeringLock_StopLight ,765,163,165,1,0,0,,216E,616E,ff,SteeringLock_Bolt_Position ,765,166,166,1,0,0,,216E,616E,ff,SteeringLock_/APCOutOfLimits,0:Supply Voltage OK;1:SupplyVoltage NOK ,765,168,183,1,0,0,,216E,616E,ff,SteeringLock_LearningRequestCounter ,765,184,184,1,0,0,,216E,616E,ff,SteeringLock_Ignition_on,0:APC relu à 0;1:APC relu à 1 ,765,185,185,1,0,0,,216E,616E,ff,Absent_USM_frame,0:USM frame;1:no USM frame ,765,186,186,1,0,0,,216E,616E,ff,Supply_Request_With_APC,0:APC OFF;1:APC ON ,765,187,187,1,0,0,,216E,616E,ff,SteeringLock_NoBCMFrame,0:BCM frame;1:NoBCMFrame ,765,192,192,1,0,0,,216E,616E,ff,SteeringLock_UnlockRequest,0:No requested;1:requested ,765,193,193,1,0,0,,216E,616E,ff,SteeringLock_LockRequest,0:No requested;1:requested ,765,194,194,1,0,0,,216E,616E,ff,SteeringLock_Blanck/coded,0:coded;1:blanck ,765,195,195,1,0,0,,216E,616E,ff,Steeringlock_AntiscanOn,0:Anti-scan off;1:Anti-scan on ,765,196,196,1,0,0,,216E,616E,ff,SteerinLock_WrongCode,0:Code OK;1:code NOK ,765,232,232,1,0,0,,216E,616E,ff,SteeringLock_UnlockingFinished,0:Inactif;1:Actif ,765,233,233,1,0,0,,216E,616E,ff,SteeringLock_LockingFinished,0:Inactif;1:Actif ,765,234,234,1,0,0,,216E,616E,ff,SteeringLock_LockingInhibition,0:pas d'inhibition verrouillage;1:inhibition verrouillage ,765,235,235,1,0,0,,216E,616E,ff,SteeringLock_UndefinePosition,0:No undefine position;1:undefine position ,765,236,236,1,0,0,,216E,616E,ff,SteeringLock_Alive ,765,237,237,1,0,0,,216E,616E,ff,Steering_Lock_ActuatorFailure,0:No Failure;1:Failure ,765,238,238,1,0,0,,216E,616E,ff,SteeringLock_MajorElectronicFailure,0:No Failure;1:Failure ,765,239,239,1,0,0,,216E,616E,ff,SteeringLock_MinorElectronicFailure,0:No Failure;1:Failure ,765,240,240,1,0,0,,216E,616E,ff,ESCL_Reset,0:ESCL not in reset;1:ESCL in reset ,765,241,243,1,0,0,,216E,616E,ff,SteeringLock_BoltState,1:Hall Effect captor out of order;2:unlock and secure;3:undefine position;4:locking position;5:short circuit ,765,244,244,1,0,0,,216E,616E,ff,Steeringlock_incoherentBCMFrame,1:incoherent frame;0:coherent frame ,765,245,245,1,0,0,,216E,616E,ff,SteeringLock_SafetylineInhibition,0:lockAllowed;1:LockForbidden ,765,246,246,1,0,0,,216E,616E,ff,SteeringLock_Speedinhibition,0:lockAllowed;1:LockForbidden ,765,247,247,1,0,0,,216E,616E,ff,SteeringLock_SupplyVoltageOutOfLimits,0:Supply voltage OK;1:Supplyvoltage NOK ,765,248,248,1,0,0,,216E,616E,ff,SteeringLock_AbsentframeBCM,0:BCM Frame;1:No BCM frame ,765,249,249,1,0,0,,216E,616E,ff,Steeringlock_HallSensorTestAuthorized,1:Authorized;0:Not Authorized ,765,250,250,1,0,0,,216E,616E,ff,Steeringlock_ControlFeedback,0:Hall sensor not supplied;1:hall sensor supplied ,765,251,251,1,0,0,,216E,616E,ff,SteeringLock_BautRateConfiguration,0:250 kb;1:500 kb ,765,252,252,1,0,0,,216E,616E,ff,SteeringLock_BautRateConfigured,0:Débit non configuré;1:débit configuré ,765,253,253,1,0,0,,216E,616E,ff,Steeringlock_HallSensorTimeout,1:timeout;0:No timeout ,765,254,254,1,0,0,,216E,616E,ff,SteeringLock_InternalBCM_SpeedInhibition,0:No speed inhibition;1:speed inhibition ,765,255,255,1,0,0,,216E,616E,ff,SteeringLock_InternalBCM_ECMInhibition,1:ECM inhibition;0:No ECM inhibition ,765,256,256,1,0,0,,216E,616E,ff,SteeringLock_InternalBCM_CrashInhibition,0:No crash inhibition;1:crash inhibition ,765,257,257,1,0,0,,216E,616E,ff,SteeringLock_InternalBCM_CrashSystemFailureInhibition,0:No crash system failure inhibition;1:crash system failure inhibition ,765,258,258,1,0,0,,216E,616E,ff,SteeringLock_ThermicalProtection_On,0:No thermical protection;1:active thermical protection ,765,264,264,1,0,0,,216E,616E,ff,Steeringlock_T1Failure ,765,265,265,1,0,0,,216E,616E,ff,Steeringlock_T2WireFailure ,765,266,266,1,0,0,,216E,616E,ff,Steeringlock_T2CANFailure ,765,267,267,1,0,0,,216E,616E,ff,Steeringlock_T2+Failure ,765,272,287,1,0,0,,216E,616E,ff,SteeringLock_MechanicalProblem ,765,288,303,1,0,0,,216E,616E,ff,APC_Level_Power ,765,304,319,1,0,0,,216E,616E,ff,ESCL_DIAGNOSIS_FLAG_2,849:ESCL speed inhibition to lock;1306:ESCL still powered - pb sensor line;842:/APC is out of the limits for lock;1307:ESCL still powered - pb interne;810:The Steering Lock code is blank;717:Wrong code error;850:Safetyline inhibition to lock;715:Major electronic failure error;856:crash system failure inhibition to lock;714:Antiscan error;700:Internal problem;716:internal problem;851:major electronic failure;852:minor electronic failure;853:BCM speed inhibition to lock;855:crash inhibition to lock;906:ESCL internal component failure;1050:/APC presents with APC;1066:Sensor line stays active - sensor line CC+;1067:Sensor line stays active - alim CO / CAn NOK;1082:ESCL CAN Frame present with APC;699:Problem with SensorLine;618:The Steering Lock does not wake up;854:ECM status inhibition to lock;314:A speed inhibition is present ( only anticipate and lock cases );666:BCM code and Steering Lock code are different;698:Problem with the Hall sensor;283:USM frame absent;298:Thermal protection is enabled;282:/APC is out of the limits for power;315:A crash inhibition is present ( only anticipate and lock cases );330:The ESCL is untimely powered;346:Problem with BCM relay of the Steering Lock power supply;362:It doesnt reach to wake up the Steering Lock - pb CAN;363:It doesnt reach to wake up the Steering Lock - pb sensor line;678:It doesnt reach to unlock the Steering Lock - mechanical pb;586:/APC is out of the limits for learning;602:Dont succeed to learn the Steering Lock;634:/APC is out of the limits for unlock;673:It doesnt reach to unlock the Steering Lock - absent_frame_BCM_verrou pb;674:It doesnt reach to unlock the Steering Lock - locking_finished pb;675:It doesnt reach to unlock the Steering Lock - internal pb;284:APC is ON;676:It doesnt reach to unlock the Steering Lock - info sensor pb;677:It doesnt reach to unlock the Steering Lock - major elec failure;570:Learning is not authorized ,765,320,327,1,0,0,,216E,616E,ff,ESCL_DIAGNOSIS_FLAG_PS,26:/APC presents with APC;42:Sensor line stays active - sensor line CC+;43:Sensor line stays active - alim CO / CAn NOK;58:ESCL CAN Frame present with APC ,765,328,328,1,0,0,,216E,616E,ff,SteeringLock_UnlockRequestBCM,0:No requested;1:requested ,765,329,329,1,0,0,,216E,616E,ff,SteeringLock_LockRequestBCM,0:No requested;1:requested ,765,16,16,1,0,0,,216F,616F,ff,I_DEFROSTER_SW,1:on;0:off ,765,17,17,1,0,0,,216F,616F,ff,IH_REARDEFROSTREQUESTNA,1:true;0:false ,765,18,18,1,0,0,,216F,616F,ff,IH_ECM_RearDefrostRequestNA,0:available;1:not available ,765,19,19,1,0,0,,216F,616F,ff,IH_ENGINESTATUS_RNA,1:true;0:false ,765,20,20,1,0,0,,216F,616F,ff,VH_RearDefrosterReqbyAC,0:not requested;1:requested ,765,21,21,1,0,0,,216F,616F,ff,VH_RearDefrosterReqbyECM,0:not requested;1:requested ,765,22,22,1,0,0,,216F,616F,ff,VH_RelayProtection ,765,23,23,1,0,0,,216F,616F,ff,O_DEFROSTER_RL,1:on;0:off ,765,24,24,1,0,0,,216F,616F,ff,IH_RearDefrostRequest,0:not requested;1:requested ,765,25,25,1,0,0,,216F,616F,ff,O_DEFROSTER_LED,1:on;0:off ,765,26,26,1,0,0,,216F,616F,ff,OH_RearDefrostEngaged,1:on;0:off ,765,27,27,1,0,0,,216F,616F,ff,IH_ECM_RearDefrostRequest,0:not requested;1:requested ,765,28,29,1,0,0,,216F,616F,ff,IH_EngineStatus_R,1:No used;2:Running;3:Starter;0:Stopped ,765,32,39,1,40,0,°C,216F,616F,ff,IH_ExternalTemp ,765,40,40,1,0,0,,216F,616F,ff,ILW_RearDefPush,1:on;0:off ,765,41,41,1,0,0,,216F,616F,ff,VH_RearDefrostRequestNA ,765,42,42,1,0,0,,216F,616F,ff,VH_RearDefrostRequestCAMAN ,765,44,44,1,0,0,,216F,616F,ff,VH_RearDefrostRequest ,765,48,55,1,40,0,°C,216F,616F,ff,VH_ExternalTemp ,765,56,63,10,0,0,sec,216F,616F,ff,VH_TRearDefroster ,765,19,19,1,0,0,,2170,6170,ff,IH_BLOWERSTATENA,1:true;0:false ,765,20,20,1,0,0,,2170,6170,ff,IH_ENGINESTATUS_RNA,1:true;0:false ,765,21,21,1,0,0,,2170,6170,ff,O_PTC3_RL,1:on;0:off ,765,22,22,1,0,0,,2170,6170,ff,O_PTC2_RL,1:on;0:off ,765,23,23,1,0,0,,2170,6170,ff,O_PTC1_RL,1:on;0:off ,765,24,24,1,0,0,,2170,6170,ff,O_PTC4_RL,1:on;0:off ,765,25,25,1,0,0,,2170,6170,ff,O_PTC5_RL,1:on;0:off ,765,27,27,1,0,0,,2170,6170,ff,VH_RegulationMode,0:WithBatteryVoltage;1:WithAlternatorLoad ,765,28,28,1,0,0,,2170,6170,ff,VH_PTCFreezing ,765,29,29,1,0,0,,2170,6170,ff,VH_PTCCutOff ,765,30,30,1,0,0,,2170,6170,ff,VH_BlowerState ,765,31,31,1,0,0,,2170,6170,ff,VH_Interdiction ,765,32,39,.5,0,1,%,2170,6170,ff,VH_AlternatorLoadFlt ,765,40,47,.1,0,1,Volt,2170,6170,ff,VH_BatteryVoltageFlt ,765,48,63,1,0,0,Rpm,2170,6170,ff,VH_AlternatorSpeed ,765,64,68,100,0,0,W,2170,6170,ff,VH_MaxElectricalPowerAllowed ,765,72,73,1,0,0,,2170,6170,ff,VH_ElectricalPowerCutFreeze ,765,80,81,1,0,0,,2170,6170,ff,VH_EngineStatus_R,1:No used;2:Running;3:Starter;0:Stopped ,765,88,91,1,0,0,,2170,6170,ff,VH_PTCNumberThermalRequest ,765,96,103,1,0,0,,2170,6170,ff,VH_PTCElecPwLevelLimit ,765,104,119,.5,0,1,,2170,6170,ff,VH_AltLoadErrorManaged ,765,120,135,.1,0,1,,2170,6170,ff,VH_BattVoltErrorManaged ,765,136,143,1,0,0,,2170,6170,ff,VH_PTCErrorSign,255:error is negative;1:positive;0:0 ,765,144,159,1,0,0,,2170,6170,ff,VH_PTCLinearLimit ,765,168,175,1,0,0,,2170,6170,ff,VH_NumberPTCDriven ,765,176,183,1,0,0,,2170,6170,ff,VH_PTCRequest ,765,184,191,1,0,0,,2170,6170,ff,VH_PTCDemand ,765,192,199,1,0,0,,2170,6170,ff,VH_PTCCommand ,765,203,203,1,0,0,,2170,6170,ff,IH_BlowerState,1:Cabin GMV turned on;0:Cabin GMV turned off ,765,206,207,1,0,0,,2170,6170,ff,IH_EngineStatus_R,1:No used;2:Running;3:Starter;0:Stopped ,765,208,212,100,0,0,W,2170,6170,ff,IH_MaxElectricalPowerAllowed ,765,216,223,.39,0,1,%,2170,6170,ff,IH_AlternatorLoad ,765,224,228,100,0,0,,2170,6170,ff,OH_ElectricalPowerDrived ,765,229,229,1,0,0,,2170,6170,ff,OH_PTCThermalRegulatorFreeze ,765,230,230,1,0,0,,2170,6170,ff,OH_PTCEngineIdleSpeedRequest ,765,232,239,32,0,0,RPM,2170,6170,ff,IH_EngineRPM ,765,245,246,1,0,0,,2170,6170,ff,IH_ElectricalPowerCutFreeze,3:invalid value;0:Normal working mode authorized;1:Freezing mode request;2:Cut off mode request ,765,248,255,.1,0,1,-,2170,6170,ff,IH_BatteryVoltage ,765,256,263,1,0,0,,2170,6170,ff,IH_PTCNumberThermalRequest ,765,264,271,1,0,0,,2170,6170,ff,VH_PTCNumberThermalClimRequest ,765,272,279,1,0,0,,2170,6170,ff,VH_PTCNumberThermalRequestCAMAN ,765,280,287,1,0,0,,2170,6170,ff,VH_PTCNumberAuthorized ,765,288,295,1,40,0,°C,2170,6170,ff,IH_ExternalTemp ,765,296,303,1,40,0,°C,2170,6170,ff,IH_EngineCoolantTemp ,765,304,311,1,40,0,°C,2170,6170,ff,VH_ExternalTemp ,765,16,16,1,0,0,,2171,6171,ff,PRESENCE_SSPP,0:without;1:with ,765,17,17,1,0,0,,2171,6171,ff,TramesDebug,0:without;1:with ,765,24,47,1,0,0,,2171,6171,4ff,CodeIdentite(1)_(0) ,765,48,71,1,0,0,,2171,6171,4ff,CodeIdentite(2)_(0) ,765,72,95,1,0,0,,2171,6171,4ff,CodeIdentite(3)_(0) ,765,96,119,1,0,0,,2171,6171,4ff,CodeIdentite(4)_(0) ,765,216,223,1,0,0,,2171,6171,ff,Para_Defaut_Total ,765,224,239,1,0,0,sec,2171,6171,ff,Para_Tempo_Emission_Roulage ,765,240,255,.01,0,2,km/h,2171,6171,ff,Para_Seuil_Vitesse_Basse ,765,256,263,1,0,0,,2171,6171,ff,Para_Defaut_Batterie ,765,264,271,1,50,0,°C,2171,6171,ff,Seuil_Temperature_Gestion_Pile_Faible ,765,272,279,13.73,0,0,mBar,2171,6171,ff,Pression_gonflage_preconisee_basse_vitesse_a_l_avant ,765,280,287,13.73,0,0,mBar,2171,6171,ff,Pression_gonflage_preconisee_basse_vitesse_a_l_arriere ,765,288,295,13.73,0,0,mBar,2171,6171,ff,Pression_gonflage_preconisee_haute_vitesse_a_l_avant ,765,296,303,13.73,0,0,mBar,2171,6171,ff,Pression_gonflage_preconisee_haute_vitesse_a_l_arriere ,765,304,311,1,0,0,sec,2171,6171,ff,PARA_TEMPO_VITESSE_MANQUANTE ,765,312,319,1,0,0,time,2171,6171,ff,PARA_LOC_LEARNING_DEFAULT ,765,320,335,100,0,0,ms,2171,6171,ff,PARA_LOC_LEARNING_CONVERGENCE_TIMEOUT ,765,16,23,1,0,0,min,2172,6172,ff,Durée_Refroidissement_présumé_pneu ,765,24,31,1,0,0,,2172,6172,ff,Seuil_desequilibre_gauche_droite ,765,32,39,1,0,0,,2172,6172,ff,Seuil_determination_jeu_pression ,765,40,47,13.73,0,0,mBar,2172,6172,1ff,Seuil_de_faible_sous_gonflage ,765,48,55,13.73,0,0,mBar,2172,6172,1ff,Seuil_de_fort_sous_gonflage ,765,56,63,1,0,0,,2172,6172,ff,Seuil_dispersion_pneu_singulier ,765,64,71,13.73,0,0,mBar,2172,6172,ff,Seuil_ecart_sous_gonflage_faible ,765,72,79,1,0,0,,2172,6172,ff,Seuil_ecart_sur_gonflage_faible ,765,80,87,1,0,0,,2172,6172,ff,Seuil_haut_pression_mauvais_gonflage_du_au_climat ,765,88,103,.01,0,2,mBar/min,2172,6172,ff,Seuil_pente_regression1_perte_d_air ,765,104,119,.01,0,2,mBar/min,2172,6172,ff,Seuil_pente_regression2_perte_d_air ,765,120,135,.01,0,2,mBar/min,2172,6172,ff,Seuil_pente_regression3_perte_d_air ,765,136,143,13.73,0,0,mBar,2172,6172,1ff,Seuil_reajustement_pression_negatif ,765,144,151,1,0,0,,2172,6172,ff,Seuil_ecart_temperature_desequilibre_thermique ,765,152,159,13.73,0,0,mBar,2172,6172,ff,Seuil_reajustement_pression_positif ,765,160,167,13.73,0,0,mBar,2172,6172,ff,Seuil_surgonflage_a_chaud ,765,168,175,13.73,0,0,mBar,2172,6172,ff,Seuil_surgonflage_a_froid ,765,176,191,1,0,0,sec,2172,6172,ff,Duree_necessaire_changement_roue ,765,192,199,13.73,0,0,mBar,2172,6172,1ff,Seuil_bas_pression_mauvais_gonflage_du_au_climat ,765,200,207,1,0,0,,2172,6172,ff,Pression_de_mise_a_plat ,765,208,215,1,0,0,,2172,6172,ff,Autonomie_roulage_mode_etendu ,765,16,16,1,0,0,,2173,6173,ff,SSPP AVG signe reajustement pression ,765,17,17,1,0,0,,2173,6173,ff,SSPP AVG validite pression a froid ,765,18,18,1,0,0,,2173,6173,ff,SSPP AVG variation rapide de pression ,765,19,19,1,0,0,,2173,6173,ff,SSPP AVG validite pression et temperature ,765,20,20,1,0,0,,2173,6173,ff,SSPP AVD signe reajustement pression ,765,21,21,1,0,0,,2173,6173,ff,SSPP AVD validite pression a froid ,765,22,22,1,0,0,,2173,6173,ff,SSPP AVD variation rapide de pression ,765,23,23,1,0,0,,2173,6173,ff,SSPP AVD validite pression et temperature ,765,24,24,1,0,0,,2173,6173,ff,SSPP ARD signe reajustement pression ,765,25,25,1,0,0,,2173,6173,ff,SSPP ARD validite pression a froid ,765,26,26,1,0,0,,2173,6173,ff,SSPP ARD variation rapide de pression ,765,27,27,1,0,0,,2173,6173,ff,SSPP ARD validite pression et temperature ,765,28,28,1,0,0,,2173,6173,ff,SSPP ARG signe reajustement pression ,765,29,29,1,0,0,,2173,6173,ff,SSPP ARG validite pression a froid ,765,30,30,1,0,0,,2173,6173,ff,SSPP ARG variation rapide de pression ,765,31,31,1,0,0,,2173,6173,ff,SSPP ARG validite pression et temperature ,765,32,34,1,0,0,,2173,6173,ff,rub_manage_state ,765,35,35,1,0,0,,2173,6173,ff,rbi_WARM_TYRES_STATE_SET ,765,36,36,1,0,0,,2173,6173,ff,rbi_SSPP_VEHMOV_STT_ON ,765,37,37,1,0,0,,2173,6173,ff,SSPP mode roulage courant ,765,38,38,1,0,0,,2173,6173,ff,SSPP jeu pression adopte ,765,39,39,1,0,0,,2173,6173,ff,SSPP etat echauffement pneus ,765,43,43,1,0,0,,2173,6173,ff,LOCAI_ACTIVE ,765,44,44,1,0,0,,2173,6173,ff,FLAG_LOC_LEARNING_STATE_REAR_LEFT_WHEEL ,765,45,45,1,0,0,,2173,6173,ff,FLAG_LOC_LEARNING_STATE_REAR_RIGHT_WHEEL ,765,46,46,1,0,0,,2173,6173,ff,FLAG_LOC_LEARNING_STATE_FRONT_RIGHT_WHEEL ,765,47,47,1,0,0,,2173,6173,ff,FLAG_LOC_LEARNING_STATE_FRONT_LEFT_WHEEL ,765,18,18,1,0,0,,2174,6174,ff,SSPP Défaut acq vitesse véhicule (RF) ,765,19,19,1,0,0,,2174,6174,ff,SSPP Défaut acq vitesse véhicule (IHM) ,765,20,20,1,0,0,,2174,6174,ff,SSPP Jeu1 présence 4 codes ,765,21,21,1,0,0,,2174,6174,ff,SSPP Jeu0 présence 4 codes ,765,22,22,1,0,0,,2174,6174,ff,SSPP Jeu1 codes identiques ,765,23,23,1,0,0,,2174,6174,ff,SSPP Jeu0 codes identiques ,765,32,32,1,0,0,,2174,6174,ff,SSPP Defaut coherence accel roue 1 ,765,33,33,1,0,0,,2174,6174,ff,SSPP Defaut coherence temp roue 1 ,765,34,34,1,0,0,,2174,6174,ff,SSPP Defaut coherence pression roue 1 ,765,35,35,1,0,0,,2174,6174,ff,SSPP Defaut pile roue 1 ,765,36,36,1,0,0,,2174,6174,ff,SSPP Defaut mesure accel roue 1 ,765,37,37,1,0,0,,2174,6174,ff,SSPP Defaut mesure temperature roue 1 ,765,38,38,1,0,0,,2174,6174,ff,SSPP Defaut mesure pression roue 1 ,765,39,39,1,0,0,,2174,6174,ff,SSPP Defaut chks roue 1 ,765,40,40,1,0,0,,2174,6174,ff,SSPP Defaut coherence accel roue 2 ,765,41,41,1,0,0,,2174,6174,ff,SSPP Defaut coherence temp roue 2 ,765,42,42,1,0,0,,2174,6174,ff,SSPP Defaut coherence pression roue 2 ,765,43,43,1,0,0,,2174,6174,ff,SSPP Defaut pile roue 2 ,765,44,44,1,0,0,,2174,6174,ff,SSPP Defaut mesure accel roue 2 ,765,45,45,1,0,0,,2174,6174,ff,SSPP Defaut mesure temperature roue 2 ,765,46,46,1,0,0,,2174,6174,ff,SSPP Defaut mesure pression roue 2 ,765,47,47,1,0,0,,2174,6174,ff,SSPP Defaut chks roue 2 ,765,48,48,1,0,0,,2174,6174,ff,SSPP Defaut coherence accel roue 3 ,765,49,49,1,0,0,,2174,6174,ff,SSPP Defaut coherence temp roue 3 ,765,50,50,1,0,0,,2174,6174,ff,SSPP Defaut coherence pression roue 3 ,765,51,51,1,0,0,,2174,6174,ff,SSPP Defaut pile roue 3 ,765,52,52,1,0,0,,2174,6174,ff,SSPP Defaut mesure accel roue 3 ,765,53,53,1,0,0,,2174,6174,ff,SSPP Defaut mesure temperature roue 3 ,765,54,54,1,0,0,,2174,6174,ff,SSPP Defaut mesure pression roue 3 ,765,55,55,1,0,0,,2174,6174,ff,SSPP Defaut chks roue 3 ,765,56,56,1,0,0,,2174,6174,ff,SSPP Defaut coherence accel roue 4 ,765,57,57,1,0,0,,2174,6174,ff,SSPP Defaut coherence temp roue 4 ,765,58,58,1,0,0,,2174,6174,ff,SSPP Defaut coherence pression roue 4 ,765,59,59,1,0,0,,2174,6174,ff,SSPP Defaut pile roue 4 ,765,60,60,1,0,0,,2174,6174,ff,SSPP Defaut mesure accel roue 4 ,765,61,61,1,0,0,,2174,6174,ff,SSPP Defaut mesure temperature roue 4 ,765,62,62,1,0,0,,2174,6174,ff,SSPP Defaut mesure pression roue 4 ,765,63,63,1,0,0,,2174,6174,ff,SSPP Defaut chks roue 4 ,765,66,66,1,0,0,,2174,6174,ff,SpeedPressureMisadaptation,0:No speed pressure misadaptation;1:Speed pressure misadaptation ,765,72,74,1,0,0,,2174,6174,ff,RearRightWheelState,0:Pressure OK;6:Tyre under inflated;5:Flat Tyre;2:Tyre over inflated;1:No pressure information (sensor missing) ,765,80,82,1,0,0,,2174,6174,ff,RearLeftWheelState,0:Pressure OK;6:Tyre under inflated;5:Flat Tyre;2:Tyre over inflated;1:No pressure information (sensor missing) ,765,88,90,1,0,0,,2174,6174,ff,FrontRightWheelState,0:Pressure OK;6:Tyre under inflated;5:Flat Tyre;2:Tyre over inflated;1:No pressure information (sensor missing) ,765,96,98,1,0,0,,2174,6174,ff,FrontLeftWheelState,0:Pressure OK;6:Tyre under inflated;5:Flat Tyre;2:Tyre over inflated;1:No pressure information (sensor missing) ,765,104,105,1,0,0,,2174,6174,ff,Right/LeftImbalance,1:front right-left imbalance;2:rear right-left imbalance;3:front and rear right-left imbalance;0:normal ,765,112,119,13.73,0,0,mBar,2174,6174,ff,RearRightWheelPressure ,765,120,127,13.73,0,0,mBar,2174,6174,ff,RearLeftWheelPressure ,765,128,135,13.73,0,0,mBar,2174,6174,ff,FrontRightWheelPressure ,765,136,143,13.73,0,0,mBar,2174,6174,ff,FrontLeftWheelPressure ,765,16,16,1,0,0,,2175,6175,ff,Jeu Actif - Trame_ARG_OK 0 si absence à la période de réception ,765,17,17,1,0,0,,2175,6175,ff,Jeu Actif - Trame_ARD_OK 0 si absence à la période de réception ,765,18,18,1,0,0,,2175,6175,ff,Jeu Actif - Trame_AVD_OK 0 si absence à la période de réception ,765,19,19,1,0,0,,2175,6175,ff,Jeu Actif - Trame_AVG_OK 0 si absence à la période de réception ,765,20,20,1,0,0,,2175,6175,ff,Jeu Actif - Etat_Emetteur_ARG_Valide ,765,21,21,1,0,0,,2175,6175,ff,Jeu Actif - Etat_Emetteur_ARD_Valide ,765,22,22,1,0,0,,2175,6175,ff,Jeu Actif - Etat_Emetteur_AVD_Valide ,765,23,23,1,0,0,,2175,6175,ff,Jeu Actif - Etat_Emetteur_AVG_Valide ,765,24,31,1,0,0,,2175,6175,ff,Jeu Actif - Cpt_défaut_trame_roulage_AVG ,765,32,39,1,0,0,,2175,6175,ff,Jeu Actif - Cpt_défaut_trame_roulage_AVD ,765,40,47,1,0,0,,2175,6175,ff,Jeu Actif - Cpt_défaut_trame_roulage_ARD ,765,48,55,1,0,0,,2175,6175,ff,Jeu Actif - cpt_défaut_trame_roulage_ARG ,765,56,71,1,0,0,,2175,6175,ff,Jeu 0 - Cpt_défaut_trame_ perm_roulage_AVG ,765,72,87,1,0,0,,2175,6175,ff,Jeu 0 - Cpt_défaut_trame_ perm_roulage_AVD ,765,88,103,1,0,0,,2175,6175,ff,Jeu 0 - Cpt_défaut_trame_ perm_roulage_ARD ,765,104,119,1,0,0,,2175,6175,ff,Jeu 0 - Cpt_défaut_trame_ perm_roulage_ARG ,765,120,135,1,0,0,,2175,6175,ff,Jeu 1 - Cpt_défaut_trame_ perm_roulage_AVG ,765,136,151,1,0,0,,2175,6175,ff,Jeu 1 - Cpt_défaut_trame_ perm_roulage_AVD ,765,152,167,1,0,0,,2175,6175,ff,Jeu 1 - Cpt_défaut_trame_ perm_roulage_ARD ,765,168,183,1,0,0,,2175,6175,ff,Jeu 1 - Cpt_défaut_trame_ perm_roulage_ARG ,765,184,184,1,0,0,,2175,6175,ff,Status ARG roue dans le coffre 1=roue dans le coffre ,765,185,185,1,0,0,,2175,6175,ff,Status ARD roue dans le coffre 1=roue dans le coffre ,765,186,186,1,0,0,,2175,6175,ff,Status AVD roue dans le coffre 1=roue dans le coffre ,765,187,187,1,0,0,,2175,6175,ff,Status AVG roue dans le coffre 1=roue dans le coffre ,765,188,188,1,0,0,,2175,6175,ff,Roue ARG - Muet supervisé 1=supervisé ,765,189,189,1,0,0,,2175,6175,ff,Roue ARD - Muet supervisé 1=supervisé ,765,190,190,1,0,0,,2175,6175,ff,Roue AVD - Muet supervisé 1=supervisé ,765,191,191,1,0,0,,2175,6175,ff,Roue AVG - Muet supervisé 1=supervisé ,765,16,23,13.73,0,0,-,2176,6176,ff,SSPP Pression pneu mesuree roue 1 ,765,24,31,1,50,0,°C,2176,6176,ff,SSPP temperature pneu mesuree roue 1 ,765,32,39,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu corrigee roue 1 ,765,40,47,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu precedente roue 1 ,765,48,55,13.73,0,0,mBar,2176,6176,ff,SSPP valeur de reajustement roue 1 ,765,56,63,13.73,0,0,mBar,2176,6176,ff,SSPP pression a froid roue 1 ,765,64,71,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu mesuree roue 2 ,765,72,79,1,50,0,°C,2176,6176,ff,SSPP temperature pneu mesuree roue 2 ,765,80,87,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu corrigee roue 2 ,765,88,95,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu precedente roue 2 ,765,96,103,13.73,0,0,mBar,2176,6176,ff,SSPP valeur de reajustement roue 2 ,765,104,111,13.73,0,0,mBar,2176,6176,ff,SSPP pression a froid roue 2 ,765,112,119,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu mesuree roue 3 ,765,120,127,1,50,0,°C,2176,6176,ff,SSPP temperature pneu mesuree roue 3 ,765,128,135,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu corrigee roue 3 ,765,136,143,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu precedente roue 3 ,765,144,151,13.73,0,0,mBar,2176,6176,ff,SSPP valeur de reajustement roue 3 ,765,152,159,13.73,0,0,mBar,2176,6176,ff,SSPP pression a froid roue 3 ,765,160,167,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu mesuree roue 4 ,765,168,175,1,50,0,°C,2176,6176,ff,SSPP temperature pneu mesuree roue 4 ,765,176,183,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu corrigee roue 4 ,765,184,191,13.73,0,0,mBar,2176,6176,ff,SSPP Pression pneu precedente roue 4 ,765,192,199,13.73,0,0,mBar,2176,6176,ff,SSPP valeur de reajustement roue 4 ,765,200,207,13.73,0,0,mBar,2176,6176,ff,SSPP pression a froid roue 4 ,765,208,215,2,0,0,km,2176,6176,ff,SSPP compteur autonomie PAX ,765,16,19,1,0,0,,2177,6177,ff,SSPP reg1 train AV rang actuel ecriture historique ,765,21,21,1,0,0,,2177,6177,ff,SSPP reg1 train AV indicateur tableau rempli ,765,22,22,1,0,0,,2177,6177,ff,SSPP reg1 train AV signe valeur 10 ,765,23,23,1,0,0,,2177,6177,ff,SSPP reg1 train AV signe valeur 9 ,765,24,24,1,0,0,,2177,6177,ff,SSPP reg1 train AV signe valeur 8 ,765,25,25,1,0,0,,2177,6177,ff,SSPP reg1 train AV signe valeur 7 ,765,26,26,1,0,0,,2177,6177,ff,SSPP reg1 train AV signe valeur 6 ,765,27,27,1,0,0,,2177,6177,ff,SSPP reg1 train AV signe valeur 5 ,765,28,28,1,0,0,,2177,6177,ff,SSPP reg1 train AV signe valeur 4 ,765,29,29,1,0,0,,2177,6177,ff,SSPP reg1 train AV signe valeur 3 ,765,30,30,1,0,0,,2177,6177,ff,SSPP reg1 train AV signe valeur 2 ,765,31,31,1,0,0,,2177,6177,ff,SSPP reg1 train AV signe valeur 1 ,765,32,35,1,0,0,,2177,6177,ff,SSPP reg1 train AR rang actuel ecriture historique ,765,37,37,1,0,0,,2177,6177,ff,SSPP reg1 train AR indicateur tableau rempli ,765,38,38,1,0,0,,2177,6177,ff,SSPP reg1 train AR signe valeur 10 ,765,39,39,1,0,0,,2177,6177,ff,SSPP reg1 train AR signe valeur 9 ,765,40,40,1,0,0,,2177,6177,ff,SSPP reg1 train AR signe valeur 8 ,765,41,41,1,0,0,,2177,6177,ff,SSPP reg1 train AR signe valeur 7 ,765,42,42,1,0,0,,2177,6177,ff,SSPP reg1 train AR signe valeur 6 ,765,43,43,1,0,0,,2177,6177,ff,SSPP reg1 train AR signe valeur 5 ,765,44,44,1,0,0,,2177,6177,ff,SSPP reg1 train AR signe valeur 4 ,765,45,45,1,0,0,,2177,6177,ff,SSPP reg1 train AR signe valeur 3 ,765,46,46,1,0,0,,2177,6177,ff,SSPP reg1 train AR signe valeur 2 ,765,47,47,1,0,0,,2177,6177,ff,SSPP reg1 train AR signe valeur 1 ,765,48,55,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AV valeur 1 ,765,56,63,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AV valeur 2 ,765,64,71,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AV valeur 3 ,765,72,79,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AV valeur 4 ,765,80,87,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AV valeur 5 ,765,88,95,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AV valeur 6 ,765,96,103,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AV valeur 7 ,765,104,111,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AV valeur 8 ,765,112,119,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AV valeur 9 ,765,120,127,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AV valeur 10 ,765,128,135,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AR valeur 1 ,765,136,143,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AR valeur 2 ,765,144,151,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AR valeur 3 ,765,152,159,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AR valeur 4 ,765,160,167,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AR valeur 5 ,765,168,175,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AR valeur 6 ,765,176,183,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AR valeur 7 ,765,184,191,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AR valeur 8 ,765,192,199,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AR valeur 9 ,765,200,207,13.73,0,0,mBar,2177,6177,ff,SSPP reg1 train AR valeur 10 ,765,16,19,1,0,0,,2178,6178,ff,SSPP reg2 train AV rang actuel ecriture historique ,765,21,21,1,0,0,,2178,6178,ff,SSPP reg2 train AV indicateur tableau rempli ,765,22,22,1,0,0,,2178,6178,ff,SSPP reg2 train AV signe valeur 10 ,765,23,23,1,0,0,,2178,6178,ff,SSPP reg2 train AV signe valeur 9 ,765,24,24,1,0,0,,2178,6178,ff,SSPP reg2 train AV signe valeur 8 ,765,25,25,1,0,0,,2178,6178,ff,SSPP reg2 train AV signe valeur 7 ,765,26,26,1,0,0,,2178,6178,ff,SSPP reg2 train AV signe valeur 6 ,765,27,27,1,0,0,,2178,6178,ff,SSPP reg2 train AV signe valeur 5 ,765,28,28,1,0,0,,2178,6178,ff,SSPP reg2 train AV signe valeur 4 ,765,29,29,1,0,0,,2178,6178,ff,SSPP reg2 train AV signe valeur 3 ,765,30,30,1,0,0,,2178,6178,ff,SSPP reg2 train AV signe valeur 2 ,765,31,31,1,0,0,,2178,6178,ff,SSPP reg2 train AV signe valeur 1 ,765,32,35,1,0,0,,2178,6178,ff,SSPP reg2 train AR rang actuel ecriture historique ,765,37,37,1,0,0,,2178,6178,ff,SSPP reg2 train AR indicateur tableau rempli ,765,38,38,1,0,0,,2178,6178,ff,SSPP reg2 train AR signe valeur 10 ,765,39,39,1,0,0,,2178,6178,ff,SSPP reg2 train AR signe valeur 9 ,765,40,40,1,0,0,,2178,6178,ff,SSPP reg2 train AR signe valeur 8 ,765,41,41,1,0,0,,2178,6178,ff,SSPP reg2 train AR signe valeur 7 ,765,42,42,1,0,0,,2178,6178,ff,SSPP reg2 train AR signe valeur 6 ,765,43,43,1,0,0,,2178,6178,ff,SSPP reg2 train AR signe valeur 5 ,765,44,44,1,0,0,,2178,6178,ff,SSPP reg2 train AR signe valeur 4 ,765,45,45,1,0,0,,2178,6178,ff,SSPP reg2 train AR signe valeur 3 ,765,46,46,1,0,0,,2178,6178,ff,SSPP reg2 train AR signe valeur 2 ,765,47,47,1,0,0,,2178,6178,ff,SSPP reg2 train AR signe valeur 1 ,765,48,55,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AV valeur 1 ,765,56,63,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AV valeur 2 ,765,64,71,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AV valeur 3 ,765,72,79,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AV valeur 4 ,765,80,87,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AV valeur 5 ,765,88,95,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AV valeur 6 ,765,96,103,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AV valeur 7 ,765,104,111,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AV valeur 8 ,765,112,119,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AV valeur 9 ,765,120,127,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AV valeur 10 ,765,128,135,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AR valeur 1 ,765,136,143,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AR valeur 2 ,765,144,151,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AR valeur 3 ,765,152,159,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AR valeur 4 ,765,160,167,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AR valeur 5 ,765,168,175,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AR valeur 6 ,765,176,183,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AR valeur 7 ,765,184,191,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AR valeur 8 ,765,192,199,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AR valeur 9 ,765,200,207,13.73,0,0,mBar,2178,6178,ff,SSPP reg2 train AR valeur 10 ,765,16,19,1,0,0,,2179,6179,ff,SSPP reg3 train AV rang actuel ecriture historique ,765,21,21,1,0,0,,2179,6179,ff,SSPP reg3 train AV indicateur tableau rempli ,765,22,22,1,0,0,,2179,6179,ff,SSPP reg3 train AV signe valeur 10 ,765,23,23,1,0,0,,2179,6179,ff,SSPP reg3 train AV signe valeur 9 ,765,24,24,1,0,0,,2179,6179,ff,SSPP reg3 train AV signe valeur 8 ,765,25,25,1,0,0,,2179,6179,ff,SSPP reg3 train AV signe valeur 7 ,765,26,26,1,0,0,,2179,6179,ff,SSPP reg3 train AV signe valeur 6 ,765,27,27,1,0,0,,2179,6179,ff,SSPP reg3 train AV signe valeur 5 ,765,28,28,1,0,0,,2179,6179,ff,SSPP reg3 train AV signe valeur 4 ,765,29,29,1,0,0,,2179,6179,ff,SSPP reg3 train AV signe valeur 3 ,765,30,30,1,0,0,,2179,6179,ff,SSPP reg3 train AV signe valeur 2 ,765,31,31,1,0,0,,2179,6179,ff,SSPP reg3 train AV signe valeur 1 ,765,32,35,1,0,0,,2179,6179,ff,SSPP reg3 train AR rang actuel ecriture historique ,765,37,37,1,0,0,,2179,6179,ff,SSPP reg3 train AR indicateur tableau rempli ,765,38,38,1,0,0,,2179,6179,ff,SSPP reg3 train AR signe valeur 10 ,765,39,39,1,0,0,,2179,6179,ff,SSPP reg3 train AR signe valeur 9 ,765,40,40,1,0,0,,2179,6179,ff,SSPP reg3 train AR signe valeur 8 ,765,41,41,1,0,0,,2179,6179,ff,SSPP reg3 train AR signe valeur 7 ,765,42,42,1,0,0,,2179,6179,ff,SSPP reg3 train AR signe valeur 6 ,765,43,43,1,0,0,,2179,6179,ff,SSPP reg3 train AR signe valeur 5 ,765,44,44,1,0,0,,2179,6179,ff,SSPP reg3 train AR signe valeur 4 ,765,45,45,1,0,0,,2179,6179,ff,SSPP reg3 train AR signe valeur 3 ,765,46,46,1,0,0,,2179,6179,ff,SSPP reg3 train AR signe valeur 2 ,765,47,47,1,0,0,,2179,6179,ff,SSPP reg3 train AR signe valeur 1 ,765,48,55,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AV valeur 1 ,765,56,63,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AV valeur 2 ,765,64,71,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AV valeur 3 ,765,72,79,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AV valeur 4 ,765,80,87,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AV valeur 5 ,765,88,95,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AV valeur 6 ,765,96,103,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AV valeur 7 ,765,104,111,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AV valeur 8 ,765,112,119,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AV valeur 9 ,765,120,127,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AV valeur 10 ,765,128,135,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AR valeur 1 ,765,136,143,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AR valeur 2 ,765,144,151,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AR valeur 3 ,765,152,159,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AR valeur 4 ,765,160,167,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AR valeur 5 ,765,168,175,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AR valeur 6 ,765,176,183,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AR valeur 7 ,765,184,191,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AR valeur 8 ,765,192,199,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AR valeur 9 ,765,200,207,13.73,0,0,mBar,2179,6179,ff,SSPP reg3 train AR valeur 10 ,765,21,22,1,0,0,,217A,617A,ff,type de régression mémorisée,3:régression 3;0:aucune alerte mémorisée;1:régression 1;2:régression 2 ,765,23,23,1,0,0,,217A,617A,ff,essieu concerné,1:arrière;0:avant ,765,24,27,1,0,0,,217A,617A,ff,SSPP reg rang actuel ecriture historique ,765,29,29,1,0,0,,217A,617A,ff,SSPP reg indicateur tableau rempli,0:Table de régression non complète;1:Table de régression complète ,765,30,30,1,0,0,,217A,617A,ff,SSPP reg signe valeur 10 ,765,31,31,1,0,0,,217A,617A,ff,SSPP reg signe valeur 9 ,765,32,32,1,0,0,,217A,617A,ff,SSPP reg signe valeur 8 ,765,33,33,1,0,0,,217A,617A,ff,SSPP reg signe valeur 7 ,765,34,34,1,0,0,,217A,617A,ff,SSPP reg signe valeur 6 ,765,35,35,1,0,0,,217A,617A,ff,SSPP reg signe valeur 5 ,765,36,36,1,0,0,,217A,617A,ff,SSPP reg signe valeur 4 ,765,37,37,1,0,0,,217A,617A,ff,SSPP reg signe valeur 3 ,765,38,38,1,0,0,,217A,617A,ff,SSPP reg signe valeur 2 ,765,39,39,1,0,0,,217A,617A,ff,SSPP reg signe valeur 1 ,765,40,47,13.73,0,0,mBar,217A,617A,ff,SSPP reg valeur 1 ,765,48,55,13.73,0,0,mBar,217A,617A,ff,SSPP reg valeur 2 ,765,56,63,13.73,0,0,mBar,217A,617A,ff,SSPP reg valeur 3 ,765,64,71,13.73,0,0,mBar,217A,617A,ff,SSPP reg valeur 4 ,765,72,79,13.73,0,0,mBar,217A,617A,ff,SSPP reg valeur 5 ,765,80,87,13.73,0,0,mBar,217A,617A,ff,SSPP reg valeur 6 ,765,88,95,13.73,0,0,mBar,217A,617A,ff,SSPP reg valeur 7 ,765,96,103,13.73,0,0,mBar,217A,617A,ff,SSPP reg valeur 8 ,765,104,111,13.73,0,0,mBar,217A,617A,ff,SSPP reg valeur 9 ,765,112,119,13.73,0,0,mBar,217A,617A,ff,SSPP reg valeur 10 ,765,120,143,1,0,0,,217A,617A,4ff,roue concernée alerte régression ,765,148,175,.01,0,2,,217A,617A,ff,kilométrage alerte régression ,765,176,191,.01,0,2,km/h,217A,617A,ff,vitesse au moment de l'alerte ,765,18,19,1,0,0,,217B,617B,ff,type d'alerte (alerte 1),0:aucune alerte mémorisée;2:fort sous gonflage;1:faible sous-gonflage ,765,20,23,1,0,0,,217B,617B,ff,code fonction WU alerte_1 ,765,24,47,1,0,0,,217B,617B,4ff,roue concernée alerte seuil ,765,48,63,.01,0,2,km/h,217B,617B,ff,Vitesse_alerte_seuil ,765,64,71,1,50,0,°C,217B,617B,ff,Derniere_temperature_precedant_alerte_seuil ,765,72,79,1,50,0,°C,217B,617B,ff,Temperature_alerte_seuil ,765,80,87,1,50,0,°C,217B,617B,ff,Premiere_temperature_suivant_alerte_seuil ,765,88,95,13.73,0,0,mBar,217B,617B,ff,Derniere_pression_precedant_alerte_seuil ,765,96,103,13.73,0,0,mBar,217B,617B,ff,Pression_alerte_seuil ,765,104,111,13.73,0,0,mBar,217B,617B,ff,Premiere_pression_suivant_alerte_seuil ,765,116,143,.01,0,2,,217B,617B,ff,kilométrage alerte ,765,16,23,1,0,0,,217C,617C,ff,SSPP Status apprentissage APV,0:aucune trame apprentissage reçue;2:code reçu déjà appris et MUET;4:code reçu déjà appris et OK;8:code reçu déjà appris dans jeu inactif;16:nouveau code reçu ,765,24,47,1,0,0,,217C,617C,ff,SSPP Code apprentissage APV ,765,16,47,100,0,0,ms,217D,617D,1ff,current Historic_Timer value_RKE ,765,48,55,1,0,0,time,217D,617D,ff,current index of RKE historic (=7 in the following example) ,765,56,87,100,0,0,ms,217D,617D,1ff,Historic_Timer historic 0 (ex : last action-7) ,765,88,119,1,0,0,time,217D,617D,1ff,IDE card historic 0 (ex : last action-7) ,765,120,143,1,0,0,time,217D,617D,ff,key SI historic 0 (ex : last action-7) ,765,144,147,1,0,0,time,217D,617D,ff,key number historic 0 (ex : last action-7) ,765,148,151,1,0,0,,217D,617D,ff,CID historic 0 (ex : last action-7),7:RKE_VALET_LOCK;11:RKE_VALET_BUTTON_3_LONG_PRESS;10:RKE_VALET_BUTTON_4_SHORT_PRESS;0:RKE_NONE;9:RKE_VALET_BUTTON_3_SHORT_PRESS;8:RKE_VALET_UNLOCK;6:RKE_BUTTON_4_LONG_PRESS;5:RKE_BUTTON_3_LONG_PRESS;4:RKE_BUTTON_4_SHORT_PRESS;3:RKE_BUTTON_3_SHORT_PRESS;1:RKE_LOCK;12:RKE_VALET_BUTTON_4_LONG_PRESS;2:RKE_UNLOCK ,765,152,183,100,0,0,ms,217D,617D,1ff,Historic_Timer historic 1 (ex : last action-6) ,765,184,215,1,0,0,time,217D,617D,1ff,IDE card historic 1 (ex : last action-6) ,765,216,239,1,0,0,time,217D,617D,ff,key SI historic 1 (ex : last action-6) ,765,240,243,1,0,0,time,217D,617D,ff,key number historic 1 (ex : last action-6) ,765,244,247,1,0,0,,217D,617D,ff,CID historic 1 (ex : last action-6),7:RKE_VALET_LOCK;11:RKE_VALET_BUTTON_3_LONG_PRESS;10:RKE_VALET_BUTTON_4_SHORT_PRESS;0:RKE_NONE;9:RKE_VALET_BUTTON_3_SHORT_PRESS;8:RKE_VALET_UNLOCK;6:RKE_BUTTON_4_LONG_PRESS;5:RKE_BUTTON_3_LONG_PRESS;4:RKE_BUTTON_4_SHORT_PRESS;3:RKE_BUTTON_3_SHORT_PRESS;1:RKE_LOCK;12:RKE_VALET_BUTTON_4_LONG_PRESS;2:RKE_UNLOCK ,765,248,279,100,0,0,ms,217D,617D,1ff,Historic_Timer historic 2 (ex : last action-5) ,765,280,311,1,0,0,time,217D,617D,1ff,IDE card historic 2 (ex : last action-5) ,765,312,335,1,0,0,time,217D,617D,ff,key SI historic 2 (ex : last action-5) ,765,336,339,1,0,0,time,217D,617D,ff,key number historic 2 (ex : last action-5) ,765,340,343,1,0,0,,217D,617D,ff,CID historic 2 (ex : last action-5),7:RKE_VALET_LOCK;11:RKE_VALET_BUTTON_3_LONG_PRESS;10:RKE_VALET_BUTTON_4_SHORT_PRESS;0:RKE_NONE;9:RKE_VALET_BUTTON_3_SHORT_PRESS;8:RKE_VALET_UNLOCK;6:RKE_BUTTON_4_LONG_PRESS;5:RKE_BUTTON_3_LONG_PRESS;4:RKE_BUTTON_4_SHORT_PRESS;3:RKE_BUTTON_3_SHORT_PRESS;1:RKE_LOCK;12:RKE_VALET_BUTTON_4_LONG_PRESS;2:RKE_UNLOCK ,765,344,375,100,0,0,ms,217D,617D,1ff,Historic_Timer historic 3 (ex : last action-4) ,765,376,407,1,0,0,time,217D,617D,1ff,IDE card historic 3 (ex : last action-4) ,765,408,431,1,0,0,time,217D,617D,ff,key SI historic 3 (ex : last action-4) ,765,432,435,1,0,0,time,217D,617D,ff,key number historic 3 (ex : last action-4) ,765,436,439,1,0,0,,217D,617D,ff,CID historic 3 (ex : last action-4),7:RKE_VALET_LOCK;11:RKE_VALET_BUTTON_3_LONG_PRESS;10:RKE_VALET_BUTTON_4_SHORT_PRESS;0:RKE_NONE;9:RKE_VALET_BUTTON_3_SHORT_PRESS;8:RKE_VALET_UNLOCK;6:RKE_BUTTON_4_LONG_PRESS;5:RKE_BUTTON_3_LONG_PRESS;4:RKE_BUTTON_4_SHORT_PRESS;3:RKE_BUTTON_3_SHORT_PRESS;1:RKE_LOCK;12:RKE_VALET_BUTTON_4_LONG_PRESS;2:RKE_UNLOCK ,765,440,471,100,0,0,ms,217D,617D,1ff,Historic_Timer historic 4 (ex : last action-3) ,765,472,503,1,0,0,time,217D,617D,1ff,IDE card historic 4 (ex : last action-3) ,765,504,527,1,0,0,time,217D,617D,ff,key SI historic 4 (ex : last action-3) ,765,528,531,1,0,0,time,217D,617D,ff,key number historic 4 (ex : last action-3) ,765,532,535,1,0,0,,217D,617D,ff,CID historic 4 (ex : last action-3),7:RKE_VALET_LOCK;11:RKE_VALET_BUTTON_3_LONG_PRESS;10:RKE_VALET_BUTTON_4_SHORT_PRESS;0:RKE_NONE;9:RKE_VALET_BUTTON_3_SHORT_PRESS;8:RKE_VALET_UNLOCK;6:RKE_BUTTON_4_LONG_PRESS;5:RKE_BUTTON_3_LONG_PRESS;4:RKE_BUTTON_4_SHORT_PRESS;3:RKE_BUTTON_3_SHORT_PRESS;1:RKE_LOCK;12:RKE_VALET_BUTTON_4_LONG_PRESS;2:RKE_UNLOCK ,765,536,567,100,0,0,ms,217D,617D,1ff,Historic_Timer historic 5 (ex : last action-2) ,765,568,599,1,0,0,time,217D,617D,1ff,IDE card historic 5 (ex : last action-2) ,765,600,623,1,0,0,time,217D,617D,ff,key SI historic 5 (ex : last action-2) ,765,624,627,1,0,0,time,217D,617D,ff,key number historic 5 (ex : last action-2) ,765,628,631,1,0,0,,217D,617D,ff,CID historic 5 (ex : last action-2),7:RKE_VALET_LOCK;11:RKE_VALET_BUTTON_3_LONG_PRESS;10:RKE_VALET_BUTTON_4_SHORT_PRESS;0:RKE_NONE;9:RKE_VALET_BUTTON_3_SHORT_PRESS;8:RKE_VALET_UNLOCK;6:RKE_BUTTON_4_LONG_PRESS;5:RKE_BUTTON_3_LONG_PRESS;4:RKE_BUTTON_4_SHORT_PRESS;3:RKE_BUTTON_3_SHORT_PRESS;1:RKE_LOCK;12:RKE_VALET_BUTTON_4_LONG_PRESS;2:RKE_UNLOCK ,765,632,663,100,0,0,ms,217D,617D,1ff,Historic_Timer historic 6 (ex : last action-1) ,765,664,695,1,0,0,time,217D,617D,1ff,IDE card historic 6 (ex : last action-1) ,765,696,719,1,0,0,time,217D,617D,ff,key SI historic 6 (ex : last action-1) ,765,720,723,1,0,0,time,217D,617D,ff,key number historic 6 (ex : last action-1) ,765,724,727,1,0,0,,217D,617D,ff,CID historic 6 (ex : last action-1),7:RKE_VALET_LOCK;11:RKE_VALET_BUTTON_3_LONG_PRESS;10:RKE_VALET_BUTTON_4_SHORT_PRESS;0:RKE_NONE;9:RKE_VALET_BUTTON_3_SHORT_PRESS;8:RKE_VALET_UNLOCK;6:RKE_BUTTON_4_LONG_PRESS;5:RKE_BUTTON_3_LONG_PRESS;4:RKE_BUTTON_4_SHORT_PRESS;3:RKE_BUTTON_3_SHORT_PRESS;1:RKE_LOCK;12:RKE_VALET_BUTTON_4_LONG_PRESS;2:RKE_UNLOCK ,765,728,759,100,0,0,ms,217D,617D,1ff,Historic_Timer historic 7 (ex : last action) ,765,760,791,1,0,0,time,217D,617D,1ff,IDE card historic 7 (ex : last action) ,765,792,815,1,0,0,time,217D,617D,ff,key SI historic 7 (ex : last action) ,765,816,819,1,0,0,time,217D,617D,ff,key number historic 7 (ex : last action) ,765,820,823,1,0,0,,217D,617D,ff,CID historic 7 (ex : last action),7:RKE_VALET_LOCK;11:RKE_VALET_BUTTON_3_LONG_PRESS;10:RKE_VALET_BUTTON_4_SHORT_PRESS;0:RKE_NONE;9:RKE_VALET_BUTTON_3_SHORT_PRESS;8:RKE_VALET_UNLOCK;6:RKE_BUTTON_4_LONG_PRESS;5:RKE_BUTTON_3_LONG_PRESS;4:RKE_BUTTON_4_SHORT_PRESS;3:RKE_BUTTON_3_SHORT_PRESS;1:RKE_LOCK;12:RKE_VALET_BUTTON_4_LONG_PRESS;2:RKE_UNLOCK ,765,824,855,100,0,0,ms,217D,617D,1ff,Historic_Timer historic 8 (ex : last action-9) ,765,856,887,1,0,0,time,217D,617D,1ff,IDE card historic 8 (ex : last action-9) ,765,888,911,1,0,0,time,217D,617D,ff,key SI historic 8 (ex : last action-9) ,765,912,915,1,0,0,time,217D,617D,ff,key number historic 8 (ex : last action-9) ,765,916,919,1,0,0,,217D,617D,ff,CID historic 8 (ex : last action-9),7:RKE_VALET_LOCK;11:RKE_VALET_BUTTON_3_LONG_PRESS;10:RKE_VALET_BUTTON_4_SHORT_PRESS;0:RKE_NONE;9:RKE_VALET_BUTTON_3_SHORT_PRESS;8:RKE_VALET_UNLOCK;6:RKE_BUTTON_4_LONG_PRESS;5:RKE_BUTTON_3_LONG_PRESS;4:RKE_BUTTON_4_SHORT_PRESS;3:RKE_BUTTON_3_SHORT_PRESS;1:RKE_LOCK;12:RKE_VALET_BUTTON_4_LONG_PRESS;2:RKE_UNLOCK ,765,920,951,100,0,0,ms,217D,617D,1ff,Historic_Timer historic 9 (ex : last action-8) ,765,952,983,1,0,0,time,217D,617D,1ff,IDE card historic 9 (ex : last action-8) ,765,984,1007,1,0,0,time,217D,617D,ff,key SI historic 9 (ex : last action-8) ,765,1008,1011,1,0,0,time,217D,617D,ff,key number historic 9 (ex : last action-8) ,765,1012,1015,1,0,0,,217D,617D,ff,CID historic 9 (ex : last action-8),7:RKE_VALET_LOCK;11:RKE_VALET_BUTTON_3_LONG_PRESS;10:RKE_VALET_BUTTON_4_SHORT_PRESS;0:RKE_NONE;9:RKE_VALET_BUTTON_3_SHORT_PRESS;8:RKE_VALET_UNLOCK;6:RKE_BUTTON_4_LONG_PRESS;5:RKE_BUTTON_3_LONG_PRESS;4:RKE_BUTTON_4_SHORT_PRESS;3:RKE_BUTTON_3_SHORT_PRESS;1:RKE_LOCK;12:RKE_VALET_BUTTON_4_LONG_PRESS;2:RKE_UNLOCK ,765,16,47,100,0,0,ms,217E,617E,1ff,current Historic_Timer value_window ,765,48,55,1,0,0,time,217E,617E,ff,current index of window lifter historic (=2 in the following example) ,765,56,87,100,0,0,ms,217E,617E,1ff,Historic_Timer window lifter automatic close UP 0 (ex : last action-2) ,765,88,119,100,0,0,ms,217E,617E,1ff,Historic_Timer window lifter automatic close UP 1 (ex : last action-1) ,765,120,151,100,0,0,ms,217E,617E,1ff,Historic_Timer window lifter automatic close UP 2 (ex : last action) ,765,152,183,100,0,0,ms,217E,617E,1ff,Historic_Timer window lifter automatic close UP 3 (ex : last action-4) ,765,184,215,100,0,0,ms,217E,617E,1ff,Historic_Timer window lifter automatic close UP 4 (ex : last action-3) ,765,216,223,1,0,0,,217E,617E,ff,current index of doorlock historic (=14 in the following example) ,765,224,255,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 0 (ex : last action-14) ,765,256,287,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 1 (ex : last action-13) ,765,288,319,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 2 (ex : last action-12) ,765,320,351,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 3 (ex : last action-11) ,765,352,383,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 4 (ex : last action-10) ,765,384,415,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 5 (ex : last action-9) ,765,416,447,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 6 (ex : last action-8) ,765,448,479,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 7 (ex : last action-7) ,765,480,511,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 8 (ex : last action-6) ,765,512,543,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 9 (ex : last action-5) ,765,544,575,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 10 (ex : last action-4) ,765,576,607,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 11 (ex : last action-3) ,765,608,639,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 12 (ex : last action-2) ,765,640,671,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 13 (ex : last action-1) ,765,672,703,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 14 (ex : last action) ,765,704,735,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 15 (ex : last action-19) ,765,736,767,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 16 (ex : last action-18) ,765,768,799,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 17 (ex : last action-17) ,765,800,831,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 18 (ex : last action-16) ,765,832,863,100,0,0,ms,217E,617E,1ff,Historic_Timer doorlock historic 19 (ex : last action-15) ,765,864,871,1,0,0,time,217E,617E,ff,current index RF event doorlock call back (=3 in the following example) ,765,872,903,100,0,0,ms,217E,617E,1ff,Historic_Timer RF event doorlock callback historic 0 (ex : last action-3) ,765,904,935,100,0,0,ms,217E,617E,1ff,Historic_Timer RF event doorlock callback historic 1 (ex : last action-2) ,765,936,967,100,0,0,ms,217E,617E,1ff,Historic_Timer RF event doorlock callback historic 2 (ex : last action-1) ,765,968,999,100,0,0,ms,217E,617E,1ff,Historic_Timer RF event doorlock callback historic 3 (ex : last action) ,765,1000,1031,100,0,0,ms,217E,617E,1ff,Historic_Timer RF event doorlock callback historic 4 (ex : last action-9) ,765,1032,1063,100,0,0,ms,217E,617E,1ff,Historic_Timer RF event doorlock callback historic 5 (ex : last action-8) ,765,1064,1095,100,0,0,ms,217E,617E,1ff,Historic_Timer RF event doorlock callback historic 6 (ex : last action-7) ,765,1096,1127,100,0,0,ms,217E,617E,1ff,Historic_Timer RF event doorlock callback historic 7 (ex : last action-6) ,765,1128,1159,100,0,0,ms,217E,617E,1ff,Historic_Timer RF event doorlock callback historic 8 (ex : last action-5) ,765,1160,1191,100,0,0,ms,217E,617E,1ff,Historic_Timer RF event doorlock callback historic 9 (ex : last action-4) ,765,16,47,100,0,0,ms,217F,617F,1ff,current Historic_Timer value_PASE ,765,48,55,1,0,0,,217F,617F,ff,current index ,765,56,87,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 0 ,765,88,95,1,0,0,,217F,617F,ff,antenna area historic 0,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,96,103,1,0,0,,217F,617F,ff,scenario historic 0,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,104,135,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 1 ,765,136,143,1,0,0,,217F,617F,ff,antenna area historic 1,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,144,151,1,0,0,,217F,617F,ff,scenario historic 1,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,152,183,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 2 ,765,184,191,1,0,0,,217F,617F,ff,antenna area historic 2,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,192,199,1,0,0,,217F,617F,ff,scenario historic 2,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,200,231,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 3 ,765,232,239,1,0,0,,217F,617F,ff,antenna area historic 3,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,240,247,1,0,0,,217F,617F,ff,scenario historic 3,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,248,279,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 4 ,765,280,287,1,0,0,,217F,617F,ff,antenna area historic 4,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,288,295,1,0,0,,217F,617F,ff,scenario historic 4,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,296,327,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 5 ,765,328,335,1,0,0,,217F,617F,ff,antenna area historic 5,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,336,343,1,0,0,,217F,617F,ff,scenario historic 5,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,344,375,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 6 ,765,376,383,1,0,0,,217F,617F,ff,antenna area historic 6,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,384,391,1,0,0,,217F,617F,ff,scenario historic 6,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,392,423,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 7 ,765,424,431,1,0,0,,217F,617F,ff,antenna area historic 7,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,432,439,1,0,0,,217F,617F,ff,scenario historic 7,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,440,471,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 8 ,765,472,479,1,0,0,,217F,617F,ff,antenna area historic 8,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,480,487,1,0,0,,217F,617F,ff,scenario historic 8,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,488,519,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 9 ,765,520,527,1,0,0,,217F,617F,ff,antenna area historic 9,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,528,535,1,0,0,,217F,617F,ff,scenario historic 9,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,536,567,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 10 ,765,568,575,1,0,0,,217F,617F,ff,antenna area historic 10,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,576,583,1,0,0,,217F,617F,ff,scenario historic 10,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,584,615,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 11 ,765,616,623,1,0,0,,217F,617F,ff,antenna area historic 11,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,624,631,1,0,0,,217F,617F,ff,scenario historic 11,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,632,663,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 12 ,765,664,671,1,0,0,,217F,617F,ff,antenna area historic 12,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,672,679,1,0,0,,217F,617F,ff,scenario historic 12,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,680,711,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 13 ,765,712,719,1,0,0,,217F,617F,ff,antenna area historic 13,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,720,727,1,0,0,,217F,617F,ff,scenario historic 13,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,728,759,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 14 ,765,760,767,1,0,0,,217F,617F,ff,antenna area historic 14,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,768,775,1,0,0,,217F,617F,ff,scenario historic 14,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,776,807,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 15 ,765,808,815,1,0,0,,217F,617F,ff,antenna area historic 15,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,816,823,1,0,0,,217F,617F,ff,scenario historic 15,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,824,855,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 16 ,765,856,863,1,0,0,,217F,617F,ff,antenna area historic 16,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,864,871,1,0,0,,217F,617F,ff,scenario historic 16,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,872,903,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 17 ,765,904,911,1,0,0,,217F,617F,ff,antenna area historic 17,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,912,919,1,0,0,,217F,617F,ff,scenario historic 17,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,920,951,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 18 ,765,952,959,1,0,0,,217F,617F,ff,antenna area historic 18,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,960,967,1,0,0,,217F,617F,ff,scenario historic 18,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,968,999,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 19 ,765,1000,1007,1,0,0,,217F,617F,ff,antenna area historic 19,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1008,1015,1,0,0,,217F,617F,ff,scenario historic 19,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1016,1047,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 20 ,765,1048,1055,1,0,0,,217F,617F,ff,antenna area historic 20,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1056,1063,1,0,0,,217F,617F,ff,scenario historic 20,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1064,1095,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 21 ,765,1096,1103,1,0,0,,217F,617F,ff,antenna area historic 21,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1104,1111,1,0,0,,217F,617F,ff,scenario historic 21,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1112,1143,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 22 ,765,1144,1151,1,0,0,,217F,617F,ff,antenna area historic 22,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1152,1159,1,0,0,,217F,617F,ff,scenario historic 22,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1160,1191,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 23 ,765,1192,1199,1,0,0,,217F,617F,ff,antenna area historic 23,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1200,1207,1,0,0,,217F,617F,ff,scenario historic 23,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1208,1239,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 24 ,765,1240,1247,1,0,0,,217F,617F,ff,antenna area historic 24,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1248,1255,1,0,0,,217F,617F,ff,scenario historic 24,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1256,1287,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 25 ,765,1288,1295,1,0,0,,217F,617F,ff,antenna area historic 25,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1296,1303,1,0,0,,217F,617F,ff,scenario historic 25,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1304,1335,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 26 ,765,1336,1343,1,0,0,,217F,617F,ff,antenna area historic 26,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1344,1351,1,0,0,,217F,617F,ff,scenario historic 26,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1352,1383,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 27 ,765,1384,1391,1,0,0,,217F,617F,ff,antenna area historic 27,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1392,1399,1,0,0,,217F,617F,ff,scenario historic 27,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1400,1431,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 28 ,765,1432,1439,1,0,0,,217F,617F,ff,antenna area historic 28,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1440,1447,1,0,0,,217F,617F,ff,scenario historic 28,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1448,1479,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 29 ,765,1480,1487,1,0,0,,217F,617F,ff,antenna area historic 29,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1488,1495,1,0,0,,217F,617F,ff,scenario historic 29,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1496,1527,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 30 ,765,1528,1535,1,0,0,,217F,617F,ff,antenna area historic 30,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1536,1543,1,0,0,,217F,617F,ff,scenario historic 30,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1544,1575,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 31 ,765,1576,1583,1,0,0,,217F,617F,ff,antenna area historic 31,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1584,1591,1,0,0,,217F,617F,ff,scenario historic 31,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1592,1623,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 32 ,765,1624,1631,1,0,0,,217F,617F,ff,antenna area historic 32,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1632,1639,1,0,0,,217F,617F,ff,scenario historic 32,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1640,1671,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 33 ,765,1672,1679,1,0,0,,217F,617F,ff,antenna area historic 33,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1680,1687,1,0,0,,217F,617F,ff,scenario historic 33,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1688,1719,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 34 ,765,1720,1727,1,0,0,,217F,617F,ff,antenna area historic 34,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1728,1735,1,0,0,,217F,617F,ff,scenario historic 34,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1736,1767,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 35 ,765,1768,1775,1,0,0,,217F,617F,ff,antenna area historic 35,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1776,1783,1,0,0,,217F,617F,ff,scenario historic 35,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1784,1815,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 36 ,765,1816,1823,1,0,0,,217F,617F,ff,antenna area historic 36,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1824,1831,1,0,0,,217F,617F,ff,scenario historic 36,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1832,1863,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 37 ,765,1864,1871,1,0,0,,217F,617F,ff,antenna area historic 37,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1872,1879,1,0,0,,217F,617F,ff,scenario historic 37,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1880,1911,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 38 ,765,1912,1919,1,0,0,,217F,617F,ff,antenna area historic 38,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1920,1927,1,0,0,,217F,617F,ff,scenario historic 38,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,1928,1959,100,0,0,ms,217F,617F,1ff,Historic_Timer historic 39 ,765,1960,1967,1,0,0,,217F,617F,ff,antenna area historic 39,4:COMPLETE_EXTERNAL_RANGE_LOW_POWER_AREA_NUMBER;0:TEST_AREA_NUMBER;1:INTERIOR_WITH_LIMITED_OVER_RANGE_AREA_NUMBER;2:INTERIOR_WITH_LIMITED_BLIND_SPOT_AREA_NUMBER;3:LARGE_INTERIOR_RANGE_AREA_NUMBER;5:INTERIOR_WITH_TRUNK_AREA_LIMITED_AREA_NUMBER;7:Not Used;8:COMPLETE_EXTERNAL_RANGE_FULL_POWER_AREA_NUMBER;9:INTERIOR_WITHOUT_OVER_RANGE_AREA_NUMBER;30:Fermeture porte coulissante droite (compatibility PSD);31:Fermeture porte coulissante gauche (compatibility PSD);32:Exit driving door open;33:Goes to STOP AUTO with door open;49:ID1;50:ID2;51:ID1_ID2;52:ID3;53:ID1_ID3;54:ID2_ID3;55:ID1_ID2_ID3;56:ID4;57:ID1_ID4;58:ID2_ID4;59:ID1_ID2_ID4;60:ID3_ID4;61:ID1_ID3_ID4;62:ID2_ID3_ID4;63:ID1_ID2_ID3_ID4;65:WAC exit par badge confirmé INT par fermeture dernier ouvrant;66:WAC is stopped by the last door closing- engine running;67:WAC exit par lock utilisateur;68:WAC exit par timeout;69:WAC exit sur absence de badge suite à trig WAC;70:WAC exit par détection de Crash;71:WAC Conda négative sur disparition du badge;72:WAC exit by aunomous running engine;73:WAC exit by automatic stop engine or automatic starting sequence;74:WAC exit by RKE press on unlock or lock or back doors button;17:Ouverture Tailgate;18:Fermeture Taigate;19:Ouverture LAROU;20:Fermeture LAROU;21:Ouverture porte conducteur;22:Fermeture porte conducteur;23:Ouverture porte passager;24:Fermeture porte passager;25:Ouverture porte arrière coté gauche;26:Fermeture porte arrière coté gauche;27:Ouverture porte arrière coté droit;28:Fermeture porte arrière coté droit;29:Décondamnation Main Libre ,765,1968,1975,1,0,0,,217F,617F,ff,scenario historic 39,1:ACCESS_WITH_IN_OUT_DISTINCTION_SCENARIO_NUMBER;11:ID_WRITE_E2PROM_SCENARIO_NUMBER;10:ID_READ_E2PROM_SCENARIO_NUMBER;9:BATTERY_MEASUREMENT_SCENARIO_NUMBER;8:Not used;7:SEARCH_SCENARIO_HFC_NUMBER;6:SEARCH_SCENARIO_NUMBER;5:TUNING_SCENARIO_NUMBER;4:PASSIVE_START_SCENARIO_NUMBER;2:ACCESS_WITH_IN_OUT_DIST_AND_ABORT_SCENARIO_NUMBER;0:ACCESS_WITHOUT_IN_OUT_DISTINCTION_SCENARIO_NUMBER;3:ACCESS_WITH_INSIDE_CHECK_AFTER_NUMBER;16:WAC_Start;48:WAC_Spontaneous_RF_Frame;64:WAC_Exit ,765,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,765,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,765,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,765,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,765,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,765,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,765,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,765,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,2:284B3;1:284B1 ,765,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,1:284B2 ,765,192,199,1,0,0,,2180,6180,4ff,ApprovalNumber.BasicPartList ,765,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,136:5DIGITS R2;255:Renault R3;0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3 ,765,16,151,1,0,0,,2181,6181,2ff,Vin In Ascii ,765,152,167,1,0,0,,2181,6181,4ff,Vin CRC ,765,16,23,1,0,0,,2184,6184,2ff,Siemens serial number Byte 15 (to be coded in ASCII) ,765,24,31,1,0,0,,2184,6184,2ff,Siemens serial number Byte 14 (to be coded in ASCII) ,765,32,39,1,0,0,,2184,6184,2ff,Siemens serial number Byte 13 (to be coded in ASCII) ,765,40,47,1,0,0,,2184,6184,2ff,Siemens serial number Byte 12 (to be coded in ASCII) ,765,48,55,1,0,0,,2184,6184,2ff,Siemens serial number Byte 11 (to be coded in ASCII) ,765,56,63,1,0,0,,2184,6184,2ff,Siemens serial number Byte 10 (to be coded in ASCII) ,765,64,71,1,0,0,,2184,6184,2ff,Siemens serial number Byte 9 (to be coded in ASCII) ,765,72,79,1,0,0,,2184,6184,2ff,Siemens serial number Byte 8 (to be coded in ASCII) ,765,80,87,1,0,0,,2184,6184,2ff,Siemens serial number Byte 7 (to be coded in ASCII) ,765,88,95,1,0,0,,2184,6184,2ff,Siemens serial number Byte 6 (to be coded in ASCII) ,765,96,103,1,0,0,,2184,6184,2ff,Siemens serial number Byte 5 (to be coded in ASCII) ,765,104,111,1,0,0,,2184,6184,2ff,Siemens serial number Byte 4 (to be coded in ASCII) ,765,112,119,1,0,0,,2184,6184,2ff,Siemens serial number Byte 3 (to be coded in ASCII) ,765,120,127,1,0,0,,2184,6184,2ff,Siemens serial number Byte 2 (to be coded in ASCII) ,765,128,135,1,0,0,,2184,6184,2ff,Siemens serial number Byte 1 (to be coded in ASCII) ,765,136,143,1,0,0,,2184,6184,2ff,Siemens serial number Byte 0 (to be coded in ASCII) ,765,148,155,1,0,0,,2184,6184,2ff,PaddingDatas ,765,16,23,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_1,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,24,31,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_2,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,32,39,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_3,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,40,47,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_4,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,48,55,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_5,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,56,63,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_6,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,64,71,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_7,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,72,79,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_8,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,80,87,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_9,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,88,95,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_10,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,96,103,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_11,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,104,111,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_12,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,112,119,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_13,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,120,127,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_14,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,128,135,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_15,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,136,143,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_16,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,144,151,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_17,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,152,159,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_19,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,160,167,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_18,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,168,175,1,0,0,,2190,6190,ff,WAKE_UP_SOURCE_20,23:I_ACC_SW;18:SSD_WAKE_UP;29:TPMS Frame;19:HF_LOCK_REQ_BY_DRIVER;20:HF_LOCK_REQ_BY_ASSIST;21:DRIVER_KNOB_SW;22:R_TAILGATE_INSIDE_OPENER_ON_BY_DRIVER;24:I_IGN_SW;25:I_STARTER_SW;26:HAND_DETECTED;17:UNDERHOOD_OPENED;28:Global Timer Storing;13:R_HORN_ON_BY_DRIVER;30:RKE Frame;31:CANHS Wake Up;32:CANLSFT Wake Up;27:Tech Can V by Global Timer - Periodical WakeUp;4:R_TAILGATE_OPENER_ON_BY_DRIVER;0:Default Value;1:I_HAZARD_SW;15:R_COMBI_LOW_BEAM_SW;3:R_CDL_SW_BY_DRIVER;16:R_COMBI_PASSING_SW;5:R_GLASSHATCH_OPENER_ON_BY_DRV;6:DRIVER_DOOR_OPENED;7:ASSIST_DOOR_OPENED;8:REAR_LEFT_DOOR_OPENED;9:REAR_RIGHT_DOOR_OPENED;10:TAILGATE_DOOR_OPENED;11:GLASSHATCH_OPENED;12:I_CARD_PRESENT_SW;14:R_COMBI_POSITION_SW;2:R_START_BY_DRIVER;34:Tech Can V by Global Timer - Scheduled WakeUp;33:R_TECH_WAKEUP_BY_WIRE ,765,16,55,1,0,0,,21F0,61F0,2ff,PartNumber.LowerPart ,765,56,63,1,0,0,,21F0,61F0,4ff,DiagnosticIdentificationCode ,765,64,87,1,0,0,,21F0,61F0,2ff,SupplierNumber.ITG ,765,88,127,1,0,0,,21F0,61F0,2ff,HardwareNumber.LowerPart ,765,128,143,1,0,0,,21F0,61F0,4ff,SoftwareNumber ,765,144,159,1,0,0,,21F0,61F0,4ff,EditionNumber ,765,160,175,1,0,0,,21F0,61F0,4ff,CalibrationNumber ,765,176,183,1,0,0,,21F0,61F0,ff,PartNumber.BasicPartList,2:284B3;1:284B1 ,765,184,191,1,0,0,,21F0,61F0,ff,HardwareNumber.BasicPartList,1:284B2 ,765,192,199,1,0,0,,21F0,61F0,4ff,ApprovalNumber.BasicPartList ,765,200,207,1,0,0,,21F0,61F0,ff,ManufacturerIdentificationCode,136:5DIGITS R2;255:Renault R3;0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3 ,765,16,55,1,0,0,,21F1,61F1,2ff,ApprovalNumber.LowerPart ,765,56,95,1,0,0,,21F1,61F1,2ff,ProgrammingSiteReference ,765,96,135,1,0,0,,21F1,61F1,2ff,ProgrammingToolReference ,765,136,143,1,0,0,,21F1,61F1,4ff,NumberOfReprogrammings ,765,144,167,1,0,0,,21F1,61F1,4ff,DateOfReprogramming ,765,168,183,1,0,0,,21F1,61F1,4ff,TimeOfReprogramming ,765,184,191,1,0,0,,21F1,61F1,4ff,SaveMarking ,765,192,207,1,0,0,,21F1,61F1,4ff,CrcOfLogSave ,765,24,31,.078,0,2,Volt,228000,628000,ff,Tension batterie vue localement ,765,24,31,1,0,0,km/h,228001,628001,ff,Vitesse véhicule lue sur le CAN ,765,24,31,1,40,0,°C,228002,628002,ff,Température extérieure lue sur le CAN ,765,24,24,1,0,0,,228003,628003,ff,VehicleOutsideLockedState,0:Véhicule non protégé après -déconda RF- déconda ML- badge authentifié pour démarrage (+APC);1:Véhicule protégé après -conda RF- conda ML- conda backup(appui CPE long)- auto-relock ,765,25,26,1,0,0,,228003,628003,ff,SupposedCustomerDeparture ,765,27,27,1,0,0,,228003,628003,ff,WelcomePhaseState ,765,28,28,1,0,0,,228003,628003,ff,WakeUpType,0:client;1:technique(réveil périodique ou réveil par un système) ,765,29,31,1,0,0,,228003,628003,ff,Vehicle_State,2:Contact mis (moteur prêt à démarrer);1:Véhicule réveillé et moteur arrêté;3:Démarrage (phase dactivité du démarreur);4:Véhicule réveillé moteur tournant;0:Véhicule endormi et moteur arrêté ,765,36,36,1,0,0,,228003,628003,ff,DischargedBatTempoRequest,1:on;0:off ,765,37,37,1,0,0,,228003,628003,ff,BatTempoRequest,1:on;0:off ,765,38,39,1,0,0,,228003,628003,ff,APCLineStateFromBCM,1:on;0:off ,765,24,31,1,0,0,,228004,628004,ff,Tension /APC ,765,24,39,.01,0,2,km/h,228005,628005,ff,VehicleSpeedForColumn ,765,24,39,1,0,0,,228006,628006,ff,diagnosis_flag,849:ESCL speed inhibition to lock;1306:ESCL still powered - pb sensor line;842:/APC is out of the limits for lock;1307:ESCL still powered - pb interne;810:The Steering Lock code is blank;717:Wrong code error;850:Safetyline inhibition to lock;715:Major electronic failure error;856:crash system failure inhibition to lock;714:Antiscan error;700:Internal problem;716:internal problem;851:major electronic failure;852:minor electronic failure;853:BCM speed inhibition to lock;855:crash inhibition to lock;906:ESCL internal component failure;1050:/APC presents with APC;1066:Sensor line stays active - sensor line CC+;1067:Sensor line stays active - alim CO / CAn NOK;1082:ESCL CAN Frame present with APC;699:Problem with SensorLine;618:The Steering Lock does not wake up;854:ECM status inhibition to lock;314:A speed inhibition is present ( only anticipate and lock cases );666:BCM code and Steering Lock code are different;698:Problem with the Hall sensor;283:USM frame absent;298:Thermal protection is enabled;282:/APC is out of the limits for power;315:A crash inhibition is present ( only anticipate and lock cases );330:The ESCL is untimely powered;346:Problem with BCM relay of the Steering Lock power supply;362:It doesnt reach to wake up the Steering Lock - pb CAN;363:It doesnt reach to wake up the Steering Lock - pb sensor line;678:It doesnt reach to unlock the Steering Lock - mechanical pb;586:/APC is out of the limits for learning;602:Dont succeed to learn the Steering Lock;634:/APC is out of the limits for unlock;673:It doesnt reach to unlock the Steering Lock - absent_frame_BCM_verrou pb;674:It doesnt reach to unlock the Steering Lock - locking_finished pb;675:It doesnt reach to unlock the Steering Lock - internal pb;284:APC is ON;676:It doesnt reach to unlock the Steering Lock - info sensor pb;677:It doesnt reach to unlock the Steering Lock - major elec failure;570:Learning is not authorized ,765,24,103,1,0,0,,22F187,62F187,2ff,VehicleManufacturerSparPartNumber ,765,24,103,1,0,0,,22F18E,62F18E,2ff,VehicleManufacturerKitAssemblyPartNumber ,765,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/UCH_Tests.csv ================================================ 44,data memory failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 61,signal calculation failure 67,signal incorrect after event 51,not programmed 71,actuator stuck 72,actuator stuck open 45,program memory failure 55,not configured 54,missing calibration 52,not activated 4B,over temperature 4A,incorrect component installed 49,internal electronic failure 48,supervision software failure 47,watchdog / safety µC failure 46,calibration / parameter memory failure 73,actuator stuck closed 87,missing message 53,deactivated 43,special memory failure 98,component or system over temperature 97,Component or system operation obstructed or blocked 96,component internal failure 95,incorrect assembly 94,unexpected operation 93,no operation 92,performance or incorrect operation 91,parametric 8F,erratic 88,bus off 85,signal above allowable range 86,signal invalid 74,actuator slipping 84,signal below allowable range 83,value of signal protection calculation incorrect 82,alive / sequence counter incorrect / not updated 81,invalid serial data received 7B,low fluid level 7A,fluid leak or seal failure 79,mechanical linkage failure 78,alignment or adjustment incorrect 77,commanded position not reachable 76,wrong mounting position 75,emergency position not reachable 66,signal has too many transitions / events 0F,Vehicle manufacturer / System supplier specific 1B,circuit resistance above threshold 1A,circuit resistance below threshold 19,circuit current above threshold 18,circuit current below threshold 17,circuit voltage above threshold 16,circuit voltage below threshold 15,circuit short to battery or open 14,circuit short to ground or open 13,circuit open 1C,circuit voltage out of range 11,circuit short to ground 09,Component Failures 08,Bus Signal / Message Failures 06,Algorithm Based Failures 05,System Programming Failures 04,System Internal Failures 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 02,General signal failure 01,General Electrical Failure 00,Device and failure type ODB codding/ General Failure Information 42,general memory failure 68,event information 12,circuit short to battery 35,signal high time > maximum 41,general checksum failure 3A,incorrect has too many pulses 07,Mechanical Failures 1D,circuit current out of range 39,incorrect has too few pulses 38,signal frequency incorrect 36,signal frequency too low 34,signal high time < minimum 33,signal low time > maximum 32,signal low time < minimum 31,no signal 25,signal shape / waveform failure 21,signal amplitude < minimum 37,signal frequency too high 2F,signal erratic 1F,circuit intermittent 23,signal stuck low 24,signal stuck high 22,signal amplitude > maximum 1E,circuit resistance out of range 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid ================================================ FILE: app/src/main/assets/ZOE/USM_Dtcs.csv ================================================ 920E,ECU failure 920F,BSS 9212,Low beam LH 9216,AC clutch 9217,FR wiper 921C,H/L Washer 921D,Ignition Not column lock 9223,Ignition Reverse SW 9226,Battery ABS valves 9211,USM supply Batt Pre BDU 9224,Ignition EPS RWD 9227,Battery AT GEAR LPG 922C,Oil Pressure SW 922D,Auto Stop Wiper 922E,Neutral SW 922F,Reverse SW 9230,Starter 9235,Batt 1 Pos BDU 9236,Batt 2 Pos BDU 9237,Ac Valve 9213,Low beam RH 9222,Ignition LCS Cabin 9221,Ignition AT LPG 9220,Ignition AIRBAG Safetyline 921E,Ignition ECM 9229,Batt Motor FAN LO 9238,LO_EXTERNAL_FAN_RELAY_1 9240,LO_EXTERNAL_FAN_RELAY_2 9233,LO_EXTERNAL_FAN_RELAY_3 921F,Ignition 923A,BATTERY 9239,BDU 922A,PCS BDU 9260,MASTERVAC 9261,DRIVERSEAT 9262,BUTTON_SW 9263,VS1 9264,VS2 9265,LED 9266,BCS 9268,ESM 9231,O_LIGHT_DTRL_RH 9241,O_LIGHT_DTRL_LH 9256,O_LIGHT_FR_FOG_LAMPS_RH 921A,O_LIGHT_FR_FOG_LAMPS_LH 9255,SEC_SIGNAL_GND 9252,SIGNAL_GND 9214,O_LIGHT_POSITION_REAR_LH 9215,O_LIGHT_POSITION_FR_RH_LH 9257,O_LIGHT_POSITION_REAR_RH_PLATE 9258,O_LIGHT_POSITION_NIGHT 9269,Water_Pump 9218,High Beam LH 9219,High Beam RH 9270,2ndeCompression 9271,ECU 9272,Lights 9267,StopStart ================================================ FILE: app/src/main/assets/ZOE/USM_Fields.csv ================================================ ,76D,0,0,1,0,0,,10C0,50C0,ff,Start Diagnostic Session ,76D,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,76D,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,76D,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,37489:ECU;37488:2ndeCompression;37481:Water_Pump;37480:ESM;37479:StopStart;37478:BCS;37477:LED;37476:VS2;37475:VS1;37474:BUTTON_SW;37473:DRIVERSEAT;37472:MASTERVAC;37464:O_LIGHT_POSITION_NIGHT;37463:O_LIGHT_POSITION_REAR_RH_PLATE;37462:O_LIGHT_FR_FOG_LAMPS_RH;37461:SEC_SIGNAL_GND;37458:SIGNAL_GND;37441:O_LIGHT_DTRL_LH;37440:LO_EXTERNAL_FAN_RELAY_2;37434:BATTERY;37433:BDU;37432:LO_EXTERNAL_FAN_RELAY_1;37431:Ac Valve;37430:Batt 2 Pos BDU;37429:Batt 1 Pos BDU;37427:LO_EXTERNAL_FAN_RELAY_3;37425:O_LIGHT_DTRL_RH;37424:Starter;37423:Reverse SW;37422:Neutral SW;37421:Auto Stop Wiper;37420:Oil Pressure SW;37418:PCS BDU;37417:Batt Motor FAN LO;37415:Battery AT GEAR LPG;37414:Battery ABS valves;37412:Ignition EPS RWD;37411:Ignition Reverse SW;37410:Ignition LCS Cabin;37409:Ignition AT LPG;37408:Ignition AIRBAG Safetyline;37407:Ignition;37406:Ignition ECM;37405:Ignition Not column lock;37404:H/L Washer;37402:O_LIGHT_FR_FOG_LAMPS_LH;37401:High Beam RH;37400:High Beam LH;37399:FR wiper;37398:AC clutch;37397:O_LIGHT_POSITION_FR_RH_LH;37396:O_LIGHT_POSITION_REAR_LH;37395:Low beam RH;37394:Low beam LH;37393:USM supply Batt Pre BDU;37391:BSS;37390:ECU failure;37490:Lights ,76D,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,76D,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier,0:Specific Default 0;1:Specific Default 1;2:Specific Default 2;3:Specific Default 3;8:Mon defaut à moi;15:Il fait pas beau ,76D,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,76D,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,76D,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,76D,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,76D,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,76D,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,76D,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,76D,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,76D,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,76D,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,76D,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,76D,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,76D,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76D,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,76D,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,76D,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,76D,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76D,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,76D,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,76D,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,76D,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76D,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,76D,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,76D,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,76D,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76D,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,76D,16,16,1,0,0,,2101,6101,ff,LI_NEUTRAL,0:Not reached;1:Reached ,76D,17,17,1,0,0,,2101,6101,ff,LI_LIGHT_REVERSE_SW,0:Reverse gear not reached;1:Reverse gear reached ,76D,18,18,1,0,0,,2101,6101,ff,O_IGN_AT_LPG_OUT_DIAG,0:OFF;1:ON ,76D,20,20,1,0,0,,2101,6101,ff,O_IGN_AIRBAG_OUT_DIAG,0:OFF;1:ON ,76D,21,21,1,0,0,,2101,6101,ff,OIL_PRESSURE_SW,0:Pressure switch open;1:Pressure switch close ,76D,22,22,1,0,0,,2101,6101,ff,EXT_MOTOR_FAN2_DIAG,0:OFF;1:ON ,76D,24,24,1,0,0,,2101,6101,ff,EXT_MOTOR_FAN1_DIAG,0:EXT MOTOR FAN1 OFF;1:EXT MOTOR FAN1 ON ,76D,28,28,1,0,0,,2101,6101,ff,CONVERTER _DIAG,0:CONVERTER OFF;1:CONVERTER ON ,76D,29,29,1,0,0,,2101,6101,ff,LED_ON_OFF_DIAG,0:LED OFF;1:LED ON ,76D,30,30,1,0,0,,2101,6101,ff,SAFETYLINE_INPUT,0:safetyline BDU ON;1:safetyline BDU OFF ,76D,31,31,1,0,0,,2101,6101,ff,BUTTON_SW_ON_OFF,0:BUTTON SW OFF;1:BUTTON SW ON ,76D,16,23,1,0,0,,2102,6102,ff,Batt_Voltage_Sense_High ,76D,24,31,1,0,0,,2102,6102,ff,Batt_Voltage_Sense_Low ,76D,32,39,1,0,0,,2102,6102,ff,Ac_Valve_Adiag_High ,76D,40,47,1,0,0,,2102,6102,ff,Ac_Valve_Adiag_Low ,76D,48,55,1,0,0,,2102,6102,ff,Low_Beam_Left_Adiag_High ,76D,56,63,1,0,0,,2102,6102,ff,Low_Beam_Left_Adiag_Low ,76D,64,71,1,0,0,,2102,6102,ff,Low_Beam_Right_Adiag_High ,76D,72,79,1,0,0,,2102,6102,ff,Low_Beam_Right_Adiag_Low ,76D,80,87,1,0,0,,2102,6102,ff,Auto_Stop_Wiper_High ,76D,88,95,1,0,0,,2102,6102,ff,Auto_Stop_Wiper_Low ,76D,96,103,1,0,0,,2102,6102,ff,MASTERVAC_PRESSURE_SENSE_MSB ,76D,104,111,1,0,0,,2102,6102,ff,MASTERVAC_PRESSURE_SENSE_LSB ,76D,112,119,1,0,0,,2102,6102,ff,DTRL_VOLT_REREAD_LEFT_MSB ,76D,120,127,1,0,0,,2102,6102,ff,DTRL_VOLT_REREAD_LEFT_LSB ,76D,128,135,1,0,0,,2102,6102,ff,DTRL_VOLT_REREAD_RIGHT_MSB ,76D,136,143,1,0,0,,2102,6102,ff,DTRL_VOLT_REREAD_RIGHT_LSB ,76D,144,151,1,0,0,,2102,6102,ff,AC_Clutch_Adiag_High ,76D,152,159,1,0,0,,2102,6102,ff,AC_Clutch_Adiag_Low ,76D,160,167,1,0,0,,2102,6102,ff,SEAT_SENSOR_SENSE_MSB ,76D,168,175,1,0,0,,2102,6102,ff,SEAT_SENSOR_SENSE_LSB ,76D,176,183,1,0,0,,2102,6102,ff,Batt1_Voltage_Sense_High ,76D,184,191,1,0,0,,2102,6102,ff,Batt1_Voltage_Sense_Low ,76D,192,199,1,0,0,,2102,6102,ff,HIGH_BEAM_RIGHT_MSB ,76D,200,207,1,0,0,,2102,6102,ff,HIGH_BEAM_RIGHT_LSB ,76D,208,215,1,0,0,,2102,6102,ff,HIGH_BEAM_LEFT_MSB ,76D,216,223,1,0,0,,2102,6102,ff,HIGH_BEAM_LEFT_LSB ,76D,224,231,1,0,0,,2102,6102,ff,INT_THERMAL_SENSE_MSB ,76D,232,239,1,0,0,,2102,6102,ff,INT_THERMAL_SENSE_LSB ,76D,240,247,1,0,0,,2102,6102,ff,Batt2_D_Sense_High ,76D,248,255,1,0,0,,2102,6102,ff,Batt2_D_Sense_Low ,76D,16,16,1,0,0,,2103,6103,ff,Diag_contactor,0:< = 3.5 V;1:> 3.5 V ,76D,18,18,1,0,0,,2103,6103,ff,Bat_Abs_Valves_Reread,0:< = 3.5 V;1:> 3.5 V ,76D,19,19,1,0,0,,2103,6103,ff,Bat_At_Gear_Lpg_Reread,0:< = 3.5 V;1:> 3.5 V ,76D,22,22,1,0,0,,2103,6103,ff,Ignition_Ddiag,0:< = 3.5 V;1:> 3.5 V ,76D,24,31,1,0,0,,2103,6103,ff,Feedback1_Adiag_High ,76D,32,39,1,0,0,,2103,6103,ff,Feedback1_Adiag_Low ,76D,40,47,1,0,0,,2103,6103,ff,Feedback2_Adiag_High ,76D,48,55,1,0,0,,2103,6103,ff,Feedback2_Adiag_Low ,76D,72,79,1,0,0,,2103,6103,ff,Feedback4_Adiag_High ,76D,80,87,1,0,0,,2103,6103,ff,Feedback4_Adiag_Low ,76D,104,111,1,0,0,,2103,6103,ff,FIRST_GND_A_DIAG_MSB ,76D,112,119,1,0,0,,2103,6103,ff,FIRST_GND_A_DIAG_LSB ,76D,120,127,1,0,0,,2103,6103,ff,FBL_ADIAG_LH_MSB ,76D,128,135,1,0,0,,2103,6103,ff,FBL_ADIAG_LH_LSB ,76D,136,143,1,0,0,,2103,6103,ff,POSITION_NIGHT_ADIAG_MSB ,76D,144,151,1,0,0,,2103,6103,ff,POSITION_NIGHT_ADIAG_LSB ,76D,152,159,1,0,0,,2103,6103,ff,POSITION_REAR_LH_ADIAG MSB ,76D,160,167,1,0,0,,2103,6103,ff,POSITION_REAR_LH_ADIAG LSB ,76D,168,175,1,0,0,,2103,6103,ff,POSITION_FRONT_LEFT_AND_RIGHT_MSB ,76D,176,183,1,0,0,,2103,6103,ff,POSITION_FRONT_LEFT_AND_RIGHT_LSB ,76D,184,191,1,0,0,,2103,6103,ff,POSITION_REAR_RIGHT_MSB ,76D,192,199,1,0,0,,2103,6103,ff,POSITION_REAR_RIGHT_LSB ,76D,200,207,1,0,0,,2103,6103,ff,FOG_LAMPS_LH_A_DIAG_MSB ,76D,208,215,1,0,0,,2103,6103,ff,FOG_LAMPS_LH_A_DIAG_LSB ,76D,216,223,1,0,0,,2103,6103,ff,FOG_LAMPS_RH_A_DIAG_MSB ,76D,224,231,1,0,0,,2103,6103,ff,FOG_LAMPS_RH_A_DIAG_LSB ,76D,232,239,1,0,0,,2103,6103,ff,IGNITION_NOT_COLUMN_LOCK_ADIAG_MSB ,76D,240,247,1,0,0,,2103,6103,ff,IGNITION_NOT_COLUMN_LOCK_ADIAG_LSB ,76D,248,255,1,0,0,,2103,6103,ff,FBL_ADIAG_RH_MSB ,76D,256,263,1,0,0,,2103,6103,ff,FBL_ADIAG_RH_LSB ,76D,16,16,1,0,0,,2104,6104,ff,IgnitionReset_status,0:OFF;1:ON ,76D,17,17,1,0,0,,2104,6104,ff,Right_Washer_Relay,0:OFF;1:ON ,76D,20,20,1,0,0,,2104,6104,ff,Left_Washer_Relay,0:OFF;1:ON ,76D,21,21,1,0,0,,2104,6104,ff,Starter_relay,0:OFF;1:ON ,76D,23,23,1,0,0,,2104,6104,ff,Motor_Fan_Lo_Relay,0:OFF;1:ON ,76D,24,24,1,0,0,,2104,6104,ff,IgnitionSet_status,0:OFF;1:ON ,76D,25,25,1,0,0,,2104,6104,ff,Close_Contactor_Relay,0:OFF;1:ON ,76D,26,26,1,0,0,,2104,6104,ff,Ac_Clutch_Relay,0:OFF;1:ON ,76D,27,27,1,0,0,,2104,6104,ff,WATER_PUMP,0:OFF;1:ON ,76D,28,28,1,0,0,,2104,6104,ff,External_Fan_Relay_1,0:OFF;1:ON ,76D,29,29,1,0,0,,2104,6104,ff,LED_ON_OFF,0:OFF;1:ON ,76D,30,30,1,0,0,,2104,6104,ff,CONVERTER,0:OFF;1:ON ,76D,31,31,1,0,0,,2104,6104,ff,EXT_MOTOR_FAN2_RELAY,0:OFF;1:ON ,76D,32,32,1,0,0,,2104,6104,ff,FRONT_WIPER_LO_HI_RELAY,0:OFF;1:ON ,76D,33,33,1,0,0,,2104,6104,ff,Control_Contactor_Fet,0:OFF;1:ON ,76D,34,34,1,0,0,,2104,6104,ff,IGNITION NOT COLUMN LOCK,0:OFF;1:ON ,76D,36,36,1,0,0,,2104,6104,ff,Control_Diag_Contactor,0:OFF;1:ON ,76D,37,37,1,0,0,,2104,6104,ff,Open_Contactor_Relay,0:OFF;1:ON ,76D,38,38,1,0,0,,2104,6104,ff,FRONT_WIPER_ON_OFF_RELAY,0:OFF;1:ON ,76D,43,43,1,0,0,,2104,6104,ff,POSITION NIGHT,0:OFF;1:ON ,76D,44,44,1,0,0,,2104,6104,ff,External_Fan_Relay_3,0:OFF;1:ON ,76D,48,48,1,0,0,,2104,6104,ff,CONTROL_LIGHTING,0:OFF;1:ON ,76D,49,49,1,0,0,,2104,6104,ff,VCC_LIGHTING_ENABLE,0:OFF;1:ON ,76D,16,23,1,0,0,,2105,6105,ff,AC_valve_duty_cycle ,76D,24,31,1,0,0,,2105,6105,ff,HIGH_BEAM_LEFT ,76D,32,39,1,0,0,,2105,6105,ff,HIGH_BEAM_RIGHT ,76D,40,47,1,0,0,,2105,6105,ff,LOW_BEAM_LEFT_duty_cycle ,76D,48,55,1,0,0,,2105,6105,ff,LOW_BEAM_RIGHT_duty_cycle ,76D,56,63,1,0,0,,2105,6105,ff,DRL_LEFT ,76D,72,79,1,0,0,,2105,6105,ff,DRL_RIGHT ,76D,80,87,1,0,0,,2105,6105,ff,FOG_LAMPS_LEFT ,76D,88,95,1,0,0,,2105,6105,ff,FOG_LAMPS_RIGHT ,76D,96,103,1,0,0,,2105,6105,ff,FBL_LEFT ,76D,104,111,1,0,0,,2105,6105,ff,FBL RIGHT ,76D,112,119,1,0,0,,2105,6105,ff,POSTION_FRONT_LEFT_AND_RIGHT ,76D,120,127,1,0,0,,2105,6105,ff,POSITION_REAR_RIGHT ,76D,128,135,1,0,0,,2105,6105,ff,POSITION ,76D,16,16,1,0,0,,2106,6106,ff,E_B_OilPressureFailureInhibition,0:Oil Pressure Failure is not inhibited;1:Oil Pressure Failure is inhibited ,76D,17,17,1,0,0,,2106,6106,ff,C_B_StressProtectionEnable,0:Without Wiper protection;1:With Wiper protection ,76D,19,19,1,0,0,,2106,6106,ff,E_B_GearBoxType,0:Manual Gearbox;1:Automatic Gearbox ,76D,20,20,1,0,0,,2106,6106,ff,E_B_LCS,0:Without LCS;1:With LCS ,76D,21,21,1,0,0,,2106,6106,ff,C_B_StarterProtection,0:No activation of starter protection;1:Activation of starter protection ,76D,22,22,1,0,0,,2106,6106,ff,C_B_VRLA_Batt,0:Leaded Classical Battery;1:VRLA ,76D,23,23,1,0,0,,2106,6106,ff,C_B_IHMLowBatteryActiv,0:No activation of IHM Low battery voltage;1:Activation of IHM Low battery voltage ,76D,24,31,1,0,0,,2106,6106,4ff,E_K_CompType ,76D,32,32,1,0,0,,2106,6106,ff,C_B_BDUActivation,0:No activation of BDU Module;1:Activation of BDU Module ,76D,33,33,1,0,0,,2106,6106,ff,C_B_AutoStopProtection,0:No auto stop blocked reached protection;1:Auto stop blocked reached protection ,76D,34,36,1,0,0,,2106,6106,ff,C_K_BatteryType,0:reserved;1:reserved1;2:L2;3:L3;4:L4;5:L5;6:L6;7:reserved2 ,76D,37,37,1,0,0,,2106,6106,ff,C_K_FrontBattery_type,0:rear;1:front ,76D,38,38,1,0,0,,2106,6106,ff,C_B_UsingDirectActivation,0:No direct compressor activation from ECM is used;1:Direct compressor activation from ECM is used ,76D,39,39,1,0,0,,2106,6106,ff,C_B_NeutralContact_Diag,0:neutral contact diagnosis (algo plausibility) is inhibited;1:neutral contact diagnosis (algo plausibility) is not inhibited ,76D,40,47,1,0,0,,2106,6106,ff,C_K_Alt15_DATA2 ,76D,48,55,.01,-150,2,,2106,6106,ff,C_K_MechanicalRatio ,76D,56,135,1,0,0,,2106,6106,4ff,E_B_FailureInhibition ,76D,136,136,1,0,0,,2106,6106,ff,E_B_NeutralNeverReachedInhibition,0:no inhibition of neutral contact never reached diagnosis;1:inhibition of neutral contact never reached diagnosis ,76D,137,143,.01,0,2,,2106,6106,ff,C_K_Low_limit_min ,76D,144,144,1,0,0,,2106,6106,ff,E_B_DRLWithoutPWM,0:DRL with PWM;1:DRL without PWM ,76D,145,151,.01,0,2,,2106,6106,ff,C_K_Low_limit_max ,76D,153,159,.01,0,2,,2106,6106,ff,C_K_High_limit_min ,76D,160,160,1,0,0,,2106,6106,ff,C_B_FloatingInhibit,0:Floating not inhibited;1:Floating inhibited ,76D,161,167,.01,0,2,,2106,6106,ff,C_K_High_limit_max ,76D,168,177,1,0,0,,2106,6106,ff,E_B_EEM_FailureInhibition ,76D,178,178,1,0,0,,2106,6106,ff,E_B_AlertBDUDirect,0:The BDU alert can only be erased by diag tool;1:The BDU alert disappears once the failure had ,76D,179,179,1,0,0,,2106,6106,ff,C_B_VehiculeRunning,0:Allows to switch OFF Ignition when VehicleSpeed is >0;1:Inhibits from switching OFF Ignition when VehicleSpeed is >0 ,76D,180,183,100,-5,0,,2106,6106,ff,C_RPM_EngineThreshold ,76D,16,16,1,0,0,,2107,6107,ff,E_B_ECMReset,0:Without condition on "ECM reset";1:With condition on "ECM reset" ,76D,23,28,1000,0,0,ms,2107,6107,ff,C_TM_LowSpeedWipingProtection ,76D,29,34,1000,0,0,ms,2107,6107,ff,C_TM_HighSpeedWipingProtection ,76D,35,40,100,0,0,ms,2107,6107,ff,C_TM_HighSpeedPeriod_limit_max ,76D,41,46,100,0,0,ms,2107,6107,ff,C_TM_LowSpeedPeriod_limit_max ,76D,47,52,1,0,0,,2107,6107,ff,C_K_Mission ,76D,53,60,5,0,0,min,2107,6107,ff,C_Tau_Engine ,76D,61,66,.1,0,1,s,2107,6107,ff,C_TM_HeadLampFirstWash ,76D,67,75,.1,0,1,s,2107,6107,ff,C_TM_HeadLampSecondWash ,76D,76,79,.1,0,1,s,2107,6107,ff,C_TM_HeadLampStopped ,76D,16,1295,1,0,0,,2108,6108,4ff,C_K_AlternatorTable ,76D,16,16,1,0,0,,2109,6109,ff,E_B_EnableDebugFrames,0:no emission/debug frames disabled;1:emission/debug frames enabled ,76D,16,16,1,0,0,,2110,6110,ff,AlternatorUnknown,0:Alternator known;1:Alternator unknown ,76D,17,17,1,0,0,,2110,6110,ff,V_B_FloatingActive_status,0:No floating mode;1:Floating mode ,76D,18,23,.1,-106,1,V,2110,6110,ff,V_U_alt ,76D,24,25,1,0,0,,2110,6110,ff,V_K_alt_RampTMChoice ,76D,26,31,.1,-106,1,V,2110,6110,ff,V_U_batt ,76D,32,55,1,0,0,min,2110,6110,ff,V_TM_TimeAtOpening_mem ,76D,56,56,1,0,0,,2110,6110,ff,V_B_alt_Fault,0:No alternator default;1:Alternator default ,76D,57,63,1,0,0,,2110,6110,ff,V_K_JaugeVT ,76D,64,79,1,0,0,,2110,6110,ff,V_K_BatteryWearCounter_mem ,76D,80,84,3.2,0,0,,2110,6110,ff,V_Pct_DF_bss_read ,76D,85,87,1,0,0,,2110,6110,ff,V_K_DefaultNumber ,76D,88,90,1,0,0,,2110,6110,ff,V_K_alt_FaultType ,76D,91,95,.25,0,1,,2110,6110,ff,V_I_alt_Rotor_read ,76D,97,98,1,0,0,,2110,6110,ff,V_K_Default_status ,76D,99,102,1,0,0,,2110,6110,ff,AlternatorNumber ,76D,103,111,1,0,0,,2110,6110,ff,Default_Counter ,76D,112,113,1,0,0,,2110,6110,ff,V_K_ComBssNOk_status ,76D,16,23,1,0,0,,2111,6111,ff,LIN_USM_missing ,76D,24,31,1,0,0,,2111,6111,ff,LIN_BCS_missing ,76D,32,39,1,0,0,,2111,6111,ff,LIN_VS1_missing ,76D,40,47,1,0,0,,2111,6111,ff,LIN_VS2_missing ,76D,17,23,.01,0,2,s,2114,6114,ff,C_TM_FUSES_DIAG ,76D,31,39,.01,0,2,V,2114,6114,ff,C_U_2RelaysON_1RelayOFF ,76D,40,42,1,0,0,s,2114,6114,ff,C_TM_STARTER_DISCONNECTION ,76D,43,47,1,0,0,s,2114,6114,ff,C_TM_FAN_UNIT_DISCONNECTION ,76D,19,23,.05,-40,2,V,2115,6115,ff,C_U_LBEAM_HID_TRANSIENT_max ,76D,27,31,.1,-20,1,V,2115,6115,ff,C_U_LBEAM_HAL_TRANSIENT_max ,76D,35,39,.1,-20,1,V,2115,6115,ff,C_U_LBEAM_STABILIZED_max ,76D,40,47,.0125,-8,2,V,2115,6115,ff,C_U_DTRL_intermediate ,76D,51,55,.1,-20,1,V,2115,6115,ff,C_U_DTRL_max ,76D,60,63,.01,0,2,s,2115,6115,ff,C_TM_LowBeam_HAL_StabDelay ,76D,67,71,1,-10,0,s,2115,6115,ff,C_TM_LowBeam_HID_StabDelay ,76D,76,79,.1,0,1,s,2115,6115,ff,C_TM_DTRL_StabDelay ,76D,82,84,1,-1,0,,2115,6115,ff,C_K_LBEAM_SCG_Fail_max ,76D,85,87,1,-1,0,,2115,6115,ff,C_K_DTRL_SCG_Fail_max ,76D,16,17,1,0,0,,2121,6121,ff,StartingMode_BCM_R,0:Engine stopped request;1:No request;2:Ignition request;3:Starting request ,76D,18,19,1,0,0,,2121,6121,ff,BCM_WakeUpSleepCommand,0:Go to sleep;1:reserved;2:reserved2;3:Wake Up ,76D,20,22,1,0,0,,2121,6121,ff,FrontWipingRequest,0:In Stop Position;1:Forced to Stop;2:One time low speed requested;3:One time high speed requested;4:Unavailable;5:Reserved;6:Low Speed requested;7:High Speed requested ,76D,23,23,1,0,0,,2121,6121,ff,HeadLampsWasherRequest,0:Headlamps washer not requested;1:headlamps washer requested ,76D,24,25,1,0,0,,2121,6121,ff,ClutchSwitchMaximumTravel,0:Not used;1:Maximum clutch travel switch not active;2:Maximum clutch travel switch active;3:Unavailable ,76D,26,53,.01,0,2,km,2121,6121,ff,DistanceTotalizer ,76D,54,77,1,0,0,mn,2121,6121,ff,AbsoluteTimeSince1rstIgnition ,76D,78,78,1,0,0,,2121,6121,ff,WakeUpType,0:Customer wake up;1:Technical wake up ,76D,79,79,1,0,0,,2121,6121,ff,PositionLightsRequest,0:Position Lights not requested;1:Position Lights requested ,76D,80,80,1,0,0,,2121,6121,ff,LowBeamRequest,0:Low beam not requested;1:Low Beam requested ,76D,81,81,1,0,0,,2121,6121,ff,HighBeamRequest,0:High Beam not requested;1:High Beam requested ,76D,82,82,1,0,0,,2121,6121,ff,FrontFogLightsRequest,0:Front Fog not requested;1:Front fog requested ,76D,83,90,1,40,0,°C,2121,6121,ff,EngineCoolantTemp ,76D,91,106,.01,0,2,km/h,2121,6121,ff,VehicleSpeed ,76D,107,108,1,0,0,,2121,6121,ff,EngineFanSpeedRequest,0:Not requested;1:Low Speed requested;2:Middle Speed requested [Nissan];3:High Speed requested ,76D,109,109,1,0,0,,2121,6121,ff,ACCompAuthorized,0:Ac compressor not authorized;1:Ac compressor authorized ,76D,110,110,1,0,0,,2121,6121,ff,ACCompClutchRequest,0:Ac compressor not requested;1:Ac compressor requested ,76D,111,117,.01,0,2,A,2121,6121,ff,ACCompValveRequest ,76D,118,118,1,0,0,,2121,6121,ff,ACCompWorkingMode,0:Running in idle mode or stopped;1:Running not in idle mode ,76D,119,120,1,0,0,,2121,6121,ff,EngineStatus_R,0:Stopped;1:Reserved;2:Running;3:Cranking ,76D,121,128,40,0,0,W/s,2121,6121,ff,AllowedPowerGradient ,76D,129,130,1,0,0,,2121,6121,ff,CrankingAuthorisation_ECM,0:Cranking not allowed;1:Cranking allowed;2:Cranking stopped required;3:No request ,76D,131,132,1,0,0,,2121,6121,ff,CrankingAuthorisation_AT,0:Cranking not allowed;1:Cranking allowed;2:Reserved;3:No request ,76D,133,140,40,0,0,watts,2121,6121,ff,AlternatorMaximumPower ,76D,141,156,.125,0,1,tr/min,2121,6121,ff,EngineRPM ,76D,157,164,1,40,0,°C,2121,6121,ff,ExternalTemp ,76D,165,165,1,0,0,,2121,6121,ff,DeliveryModeInfo,0:customer mode;1:delivery mode ,76D,166,166,1,0,0,,2121,6121,ff,DayRunningLightRequest,0:No DRL requested;1:DRL requested ,76D,167,167,1,0,0,,2121,6121,ff,DiagMuxOn_BCM,0:counting and storage of CAN mute/absent failures masked;1:counting and storage of CAN mute/absent failures not masked ,76D,168,169,1,0,0,,2121,6121,ff,ClutchSwitchMinimumTravel,0:Not used;1:Minimum clutch travel switch not active;2:Minimum clutch travel switch active;3:Unavailable ,76D,170,170,1,0,0,,2121,6121,ff,FrontDefrostRequest,0:Front defrost not requested;1:Front defrost requested ,76D,171,172,1,0,0,,2121,6121,ff,FloatingInhibition,0:Unavailable;1:Floating forbidden;2:Floating not forbidden;3:Not used ,76D,173,173,1,0,0,,2121,6121,ff,ACCompClutchActivation,0:no compressor activation req;1:compressor activation req ,76D,174,176,1,0,0,,2121,6121,ff,VehicleState,0:VEHICLEASLEEP_ENGINESTOPPED;1:VEHICLEAWAKE_ENGINESTOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLEAWAKE_ENGINERUNNING ,76D,177,178,1,0,0,,2121,6121,ff,VehicleStateSSExtension,0:VEHICLE_NOT_IN_AUTOMATIC_STATE;1:VEHICLE_IN_AUTOMATIC_STATE;2:VEHICLESTATE_SS_EEXTENSION_NOT_USED;3:VEHICLE_EXTENSION_UNAVAILABLE ,76D,179,180,1,0,0,,2121,6121,ff,GenericApplicativeDiagEnable,0:Only faults reports and alerts that MUST remain active during cranking or sleeping periods are enabled;1:All faults reports and alerts not related to APC power level are enabled;2:All faults reports and alerts are enabled;3:Unavailable ,76D,181,183,1,0,0,,2121,6121,ff,BrakeInfoStatus,0:;1:PEDAL_NOT_PRESSED;2:PEDAL_PRESSED;4:PEDAL_CONFIRMED_PRESSED;7:UNAVAILABLE ,76D,184,184,1,0,0,,2121,6121,ff,DriverDoorState,0:DRIVER_DOOR_CLOSE;1:DRIVER_DOOR_OPEN ,76D,185,186,1,0,0,,2121,6121,ff,EngineHoodState,0:ENGINEHOOD_UNAVAILABLE;1:ENGINEHOOD_OPENED;2:ENGINEHOOD_CLOSED;3:ENGINEHOOD_NOT_USED ,76D,187,191,4,0,0,cm,2121,6121,ff,AccurateOdometer ,76D,192,193,1,0,0,,2121,6121,ff,AC_StopAutoForbidden,0:UNAVAILABLE_REQUEST_CLIM;1:STOP_AUTO_FORBIDDEN_CLIM;2:STOP_AUTO_AUTHORIZED_CLIM;3:CLIM_REQUEST_NOT_USED ,76D,194,197,.25,-46,1,V,2121,6121,ff,MinimumVoltagebyAC ,76D,198,199,1,0,0,,2121,6121,ff,PumpActivationRequest,0:UNAVAILABLE_VALUE;1:NO_PUMP_ACTIVATION_REQUESTED;2:PUMP_ACTIVATION_REQUESTED;3:PUMP_NOT_USED ,76D,200,203,.25,-46,1,V,2121,6121,ff,MinimumVoltagebySteer ,76D,204,205,1,0,0,,2121,6121,ff,DriverSafetyBeltReminder,0:DRIVER_SAFETY_BELT_REMINDER;1:DRIVER_SAFETY_BELT_WARNING_L1;2:DRIVER_SAFETY_BELT_WARNING_L2;3:DRIVER_SAFETY_BELT_NOT_USED ,76D,206,207,1,0,0,,2121,6121,ff,ETC_StopAutoForbidden,0:UNAVAILABLE_REQUEST_ETC;1:STOP_AUTO_FORBIDDEN_ETC;2:STOP_AUTO_AUTHORIZED_ETC;3:ETC_REQUEST_NOT_USED ,76D,208,208,1,0,0,,2121,6121,ff,ABSinRegulation,0:NO_ABS_REGULATION;1:ABS_REGULATION ,76D,209,209,1,0,0,,2121,6121,ff,ASRinRegulation,0:NO_ASR_REGULATION;1:ASR_REGULATION ,76D,210,210,1,0,0,,2121,6121,ff,AYCinRegulation,0:NO_AYC_REGULATION;1:AYC_REGULATION ,76D,211,211,1,0,0,,2121,6121,ff,MSRinRegulation,0:NO_MSR_REGULATION;1:MSR_REGULATION ,76D,212,212,1,0,0,,2121,6121,ff,ABSMalfunction,0:no ABS malfunction;1:ABS in malfunction ,76D,213,216,.25,-46,1,V,2121,6121,ff,MinimumVoltagebyECM ,76D,217,224,40,0,0,W/s,2121,6121,ff,AllowedPowerGradientNeg ,76D,225,226,1,0,0,,2121,6121,ff,ECM_StopAutoForbidden,0:UNAVAILABLE_REQUEST_ECM;1:STOP_AUTO_FORBIDDEN_ECM;2:STOP_AUTO_AUTHORIZED_ECM;3:ECM_REQUEST_NOT_USED ,76D,227,234,40,0,0,W,2121,6121,ff,AlternatorOptimumPower ,76D,235,236,1,0,0,,2121,6121,ff,BatteryChangedActivation,0:Not Used;1:NO battery parameter reset request;2:Battery parameter reset requested;3:Unvailable Value ,76D,237,237,1,0,0,,2121,6121,ff,StartAutoSystemFailure,0:NO_START_AUTO_SYSTEM_FAILURE;1:START_AUTO_SYSTEM_FAILURE ,76D,238,241,.25,-46,1,V,2121,6121,ff,MinimumVoltagebyBCM ,76D,242,242,1,0,0,,2121,6121,ff,CrashDetected,0:No crash detected;1:Crash Detected ,76D,243,243,1,0,0,,2121,6121,ff,CrashDetectionOutOfOrder,0:Crash Detection OK;1:Crash Detection Out Of Order ,76D,16,17,1,0,0,,2122,6122,ff,StarterStatus,0:OFF;1:Short relaxation;2:Long relaxation;3:ON ,76D,18,19,1,0,0,,2122,6122,ff,FrontWiperStatus,0:OFF;1:LS;2:HS;3:Unavailable ,76D,20,20,1,0,0,,2122,6122,ff,FrontWiperStopPosition,0:Not Reached;1:Reached ,76D,21,21,1,0,0,,2122,6122,ff,ACCompClutchStatus,0:Compressor clutch off;1:Compressor clutch on ,76D,22,22,1,0,0,,2122,6122,ff,IgnitionSupplyConfirmation,0:No primary ignition supply;1:Primary ignition supply ,76D,25,25,1,0,0,,2122,6122,ff,WeakOilPressureWarning,0:No Weak Oil Pressure Warning;1:Weak Oil Pressure Warning ,76D,26,33,.0625,0,2,V,2122,6122,ff,BatteryVoltage ,76D,34,35,1,0,0,,2122,6122,ff,USM_Refuse_to_Sleep,0:reserved;1:Refuse_to_sleep;2:Ready_to_sleep;3:reserved2 ,76D,36,43,.390625,0,1,%,2122,6122,ff,AlternatorLoad ,76D,44,45,1,0,0,,2122,6122,ff,RearGearEngaged,0:Not used;1:Not engaged;2:Engaged;3:Unavailable ,76D,46,47,1,0,0,,2122,6122,ff,NeutralContact,0:Reserved;1:Not reached;2:Reached;3:Unavailable ,76D,48,49,1,0,0,,2122,6122,ff,CoolingFanSpeedStatus,0:Stopped;1:Low Speed;2:Middle Speed (not used in Renault);3:High Speed ,76D,50,57,40,0,0,Watts,2122,6122,ff,InstantMechanicalPowerByAlt ,76D,58,58,1,0,0,,2122,6122,ff,ACCompClutchDefault,0:No AC Compressor clutch default;1:AC Compressor clutch default ,76D,59,65,.01,0,2,A,2122,6122,ff,ACCompValveCurrent ,76D,66,66,1,0,0,,2122,6122,ff,ACCompValveDefault,0:No AC Compressor valve default;1:AC Compressor valve default ,76D,67,67,1,0,0,,2122,6122,ff,BatteryWarning,0:No Battery Warning requested;1:Battery Warning requested ,76D,68,69,1,0,0,,2122,6122,ff,LowBatteryVoltageDisplay,0:No display request;1:Battery weak;2:Battery weak - start engine;3:Battery in charge ,76D,70,70,1,0,0,,2122,6122,ff,BDUOpeningAnticipation,0:BDU not about to open;1:BDU is about to open ,76D,71,71,1,0,0,,2122,6122,ff,OilPressureSwitchFaultDisplay,0:No oil pressure switch fault warning requested;1:Oil pressure switch fault warning requested ,76D,72,73,1,0,0,,2122,6122,ff,MiniConsumptionRequest,0:reserved;1:No minimum consumption requested;2:Minimum consumption requested;3:reserved_ ,76D,74,74,1,0,0,,2122,6122,ff,IgnitionControlState,0:Primary ign supply relay ctrl OFF;1:Primary ign supply relay ctrl ON ,76D,75,75,1,0,0,,2122,6122,ff,FrontDefrostEngaged,0:Front Defrost not engaged;1:Front Defrost engaged ,76D,76,76,1,0,0,,2122,6122,ff,NeutralSwitchFaultDisplay,0:No neutral switch failure display;1:Neutral switch failure display ,76D,77,77,1,0,0,,2122,6122,ff,BDUCommandLineFailure,0:No BDU command line failure - in;1:BDU command line failure ,76D,78,85,40,0,0,W,2122,6122,ff,ElecPowerConsumedByAux ,76D,86,91,.5,-138,1,%,2122,6122,ff,SOCBattery14V ,76D,92,93,1,0,0,,2122,6122,ff,StopStartStateDisplayRequest,0:No_SS_State_Display_Request;1:SS_Activation_Display_Request;2:SS_Desactivation_Display_Request;3:StopStart_Display_Unavailability_for_Failure ,76D,94,94,1,0,0,,2122,6122,ff,StopAutoStateDisplayRequest,0:NO_REQUEST_DISPLAY_SS;1:REQUEST_DISPLAY_SS ,76D,95,95,1,0,0,,2122,6122,ff,BatteryChangedDisplay,0:NO Stop Auto Display Request;1:1 Stop Auto Display Request ,76D,96,97,1,0,0,,2122,6122,ff,TechnicalStartAutoRequest,0:UNAVAILABLE;1:TECHNICAL_AUTOSTART_NOT_REQUESTED;2:TECHNICAL_AUTOSTART_REQUESTED;3:NOT USED ,76D,98,99,1,0,0,,2122,6122,ff,StopAutoRequest,0:UNAVAILABLE;1:STOP_AUTO_REQUESTED;2:STOP_AUTO_NOT_REQUESTED;3:NOT USED ,76D,100,101,1,0,0,,2122,6122,ff,StartAutoAuthorization,0:START_AUTO_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FALSE_DEFINITIVELY;3:START_AUTO_FALSE_TEMPORARILY ,76D,102,103,1,0,0,,2122,6122,ff,DriverSeatStatus,0:DRIVER_NAPPE_UNAVAILABLE;1:DRIVER_NAPPE_DETECTED;2:DRIVER_NAPPE_NOT_DETECTED;3:DRIVER_NAPPE_NOT_USED ,76D,104,105,1,0,0,,2122,6122,ff,IdleSpeedInhibitionRequest,0:Unavalaible Value;1:IdleSpeed Inhibition Requested;2:IdleSpeed Inhibition not Requested;3:Not Used ,76D,112,119,40,0,0,Watts,2122,6122,ff,SharpInstantMechanicalPowerByAlt ,76D,16,26,.001,-11500,3,V,2123,6123,ff,LastBattSleep ,76D,27,39,.1,2000,1,A,2123,6123,ff,IBattSensor ,76D,40,47,.5,60,1,°C,2123,6123,ff,TBattSensor ,76D,48,48,1,0,0,,2123,6123,ff,BCS_Diag_2,0:no current measurement error;1:current measurement error ,76D,49,49,1,0,0,,2123,6123,ff,BCS_Diag_3,0:no voltage measurement error;1:voltage measurement error ,76D,50,50,1,0,0,,2123,6123,ff,BCS_Diag_4,0:no temperature measurement error;1:temperature measurement error ,76D,51,51,1,0,0,,2123,6123,ff,BCS_Diag_5,0:no BCS error (internal failure);1:BCS error (internal failure) ,76D,52,62,.01,-600,2,V,2123,6123,ff,Ubattsensor ,76D,63,63,1,0,0,,2123,6123,ff,BCS_Response_Error,0:no error;1:error ,76D,64,64,1,0,0,,2123,6123,ff,BSC_State,0:Awaken;1:StandBy ,76D,65,65,1,0,0,,2123,6123,ff,VS1_Diag_1,0:No SSVS#1 error (internal failure);1:SSVS#1 error (internal failure) ,76D,66,66,1,0,0,,2123,6123,ff,VS1_Diag_2,0:No derating;1:derating ,76D,67,67,1,0,0,,2123,6123,ff,VS1_Diag_3,0:ING Input Low;1:ING Input Hight ,76D,68,68,1,0,0,,2123,6123,ff,VS1_Diag_4,0:Cranck Input Low;1:Cranck Input Hight ,76D,69,69,1,0,0,,2123,6123,ff,VS2_Diag_1,0:No SSVS#1 error (internal failure);1:SSVS#1 error (internal failure) ,76D,70,70,1,0,0,,2123,6123,ff,VS2_Diag_2,0:No derating;1:derating ,76D,71,71,1,0,0,,2123,6123,ff,VS2_Diag_3,0:ING Input Low;1:ING Input Hight ,76D,72,72,1,0,0,,2123,6123,ff,VS2_Diag_4,0:Cranck Input Low;1:Cranck Input Hight ,76D,73,73,1,0,0,,2123,6123,ff,VS1_Conti_1,0:Converter OK;1:Converter doesn't work ,76D,74,74,1,0,0,,2123,6123,ff,VS1_Conti_2,0:Temperature OK;1:Over temperature ,76D,75,75,1,0,0,,2123,6123,ff,VS1_Conti_3,0:Relay OK;1:Relay doesn't work ,76D,76,76,1,0,0,,2123,6123,ff,VS1_Conti_4,0:Ubatt OK;1:Ubatt to low ,76D,77,77,1,0,0,,2123,6123,ff,VS1_Conti_5,0:Output OK;1:Output to low ,76D,78,78,1,0,0,,2123,6123,ff,VS1_Conti_6,0:ING / CRANCK Logical;1:ING / CRANCK not Logical ,76D,79,79,1,0,0,,2123,6123,ff,VS1_Conti_7,0:Activation Time OK;1:Activation too long ,76D,80,80,1,0,0,,2123,6123,ff,VS1_Conti_8,0:Ubatt OK;1:Ubatt to High ,76D,81,81,1,0,0,,2123,6123,ff,VS1_Conti_9,0:LIN OK;1:Shorted GND LIN ,76D,82,82,1,0,0,,2123,6123,ff,VS2_Conti_1,0:Converter OK;1:Converter doesn't work ,76D,83,83,1,0,0,,2123,6123,ff,VS2_Conti_2,0:Temperature OK;1:Over temperature ,76D,84,84,1,0,0,,2123,6123,ff,VS2_Conti_3,0:Relay OK;1:Relay doesn't work ,76D,85,85,1,0,0,,2123,6123,ff,VS2_Conti_4,0:Ubatt OK;1:Ubatt to low ,76D,86,86,1,0,0,,2123,6123,ff,VS2_Conti_5,0:Output OK;1:Output to low ,76D,87,87,1,0,0,,2123,6123,ff,VS2_Conti_6,0:ING / CRANCK Logical;1:ING / CRANCK not Logical ,76D,88,88,1,0,0,,2123,6123,ff,VS2_Conti_7,0:Activation Time OK;1:Activation too long ,76D,89,89,1,0,0,,2123,6123,ff,VS2_Conti_8,0:Ubatt OK;1:Ubatt to High ,76D,90,90,1,0,0,,2123,6123,ff,VS2_Conti_9,0:LIN OK;1:Shorted GND LIN ,76D,91,91,1,0,0,,2123,6123,ff,VS1_Response_Error,0:no error;1:error ,76D,92,92,1,0,0,,2123,6123,ff,VS2_Response_Error,0:no error;1:error ,76D,16,16,1,0,0,,2124,6124,ff,BCS_State_Request,0:Awaken;1:StandBy ,76D,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,76D,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,76D,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,76D,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,76D,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,76D,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,76D,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,76D,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A;1:284B6;2:284A9 ,76D,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,1:284B6 ,76D,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A ,76D,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,76D,16,151,1,0,0,,2181,6181,2ff,VIN ,76D,152,167,1,0,0,,2181,6181,ff,VIN CRC ,76D,16,31,1,0,0,,2182,6182,4ff,CAN_MessageSet_Ref ,76D,32,39,1,0,0,,2182,6182,ff,CAN_Bus_OFF_parameter ,76D,40,47,1,0,0,,2182,6182,ff,CAN_Mute_parameter ,76D,48,55,1,0,0,,2182,6182,ff,CAN_ECM_missing ,76D,56,63,1,0,0,,2182,6182,ff,CAN_BRAKE_missing ,76D,64,71,1,0,0,,2182,6182,ff,CAN_CLUSTER_missing ,76D,72,79,1,0,0,,2182,6182,ff,CAN_BCM_missing ,76D,80,87,1,0,0,,2182,6182,ff,CAN_AIRBAG_missing ,76D,104,111,1,0,0,,2182,6182,ff,CAN_CLIM_missing ,76D,112,119,1,0,0,,2182,6182,ff,CAN_TORQUE_AT_missing ,76D,16,95,1,0,0,,2184,6184,2ff,traceability_SerialNumber ,76D,96,143,1,0,0,,2184,6184,2ff,traceability_ManufactureDate ,76D,144,175,1,0,0,,2184,6184,4ff,Traceability_padding ,76D,16,23,.0000001,100,3,,2191,6191,ff,A_ACCompensationParameter ,76D,24,39,.0000005,-2000,3,,2191,6191,ff,B_ACCompensationParameter ,76D,40,47,.001137255,-9,3,,2191,6191,ff,C_ACCompensationParameter ,76D,16,23,1,0,0,,2192,6192,ff,TestResult,1:Test Ok (Difference between actual and calculated value of BATT_Voltage_Sense is not more than 0.3);2:Test NOK(Difference between actual and calculated value of BATT_Voltage_Sense is more than 0.3) ,76D,24,39,1,0,0,,2192,6192,4ff,BATT_Voltage_Sense_Actual_Reading ,76D,40,55,1,0,0,,2192,6192,4ff,BATT_Voltage_Sense_Calculated_Reading ,76D,16,16,1,0,0,,2193,6193,ff,INT ,76D,17,17,1,0,0,,2193,6193,ff,SPARE1 ,76D,18,18,1,0,0,,2193,6193,ff,SPARE2 ,76D,19,19,1,0,0,,2193,6193,ff,SPARE3 ,76D,20,20,1,0,0,,2193,6193,ff,SPARE4 ,76D,21,21,1,0,0,,2193,6193,ff,SPARE_RELAY_DRIVER2_DIAG ,76D,22,22,1,0,0,,2193,6193,ff,FAULT_STATUS ,76D,23,23,1,0,0,,2193,6193,ff,SPARE_REALY_DRIVER1_DIAG ,76D,24,31,1,0,0,,2193,6193,ff,VSUP_MSB ,76D,32,39,1,0,0,,2193,6193,ff,VSUP_LSB ,76D,40,47,1,0,0,,2193,6193,ff,VSENSE_MSB ,76D,48,55,1,0,0,,2193,6193,ff,VSENSE_LSB ,76D,56,63,1,0,0,,2193,6193,ff,VTEMP_MSB ,76D,64,71,1,0,0,,2193,6193,ff,VTEMP_LSB ,76D,72,79,1,0,0,,2193,6193,ff,VREF_MSB ,76D,80,87,1,0,0,,2193,6193,ff,VREF_LSB ,76D,88,95,1,0,0,,2193,6193,ff,IDDCOPY_TEST_2 ,76D,96,103,1,0,0,,2193,6193,ff,IDDCOPY_TEST_1 ,76D,104,104,1,0,0,,2193,6193,ff,AWAKE_SIGNAL ,76D,16,31,1,0,0,,2198,6198,ff,Battery_Disconnection_Detection_counter ,76D,16,23,1,0,0,,2199,6199,ff,FIRST_GND_ADIAG_1_WIRE ,76D,24,31,1,0,0,,2199,6199,ff,FIRST_GND_ADIAG_2_WIRE ,76D,24,143,1,0,0,,220400,620400,4ff,C_I_IMax ,76D,24,263,1,0,0,,220500,620500,4ff,C_P_PMecaMax ,76D,24,1175,1,0,0,,220600,620600,4ff,C_K_AlternatorTablePOLYPOLY_00 ,76D,24,1175,1,0,0,,220601,620601,4ff,C_K_AlternatorTablePOLYPOLY_01 ,76D,24,30,.02,-5,2,,220700,620700,ff,C_Kp_Alt15_Ualt_0 ,76D,24,30,.02,-5,2,,220701,620701,ff,C_Kp_Alt15_Ualt_1 ,76D,24,30,.02,-5,2,,220702,620702,ff,C_Kp_Alt15_Ualt_2 ,76D,24,30,.02,-5,2,,220703,620703,ff,C_Kp_Alt15_Ualt_3 ,76D,24,31,.02,-5,2,,220704,620704,ff,C_Ki_Alt15_Ualt_0 ,76D,24,31,.02,-5,2,,220705,620705,ff,C_Ki_Alt15_Ualt_1 ,76D,24,31,.02,-5,2,,220706,620706,ff,C_Ki_Alt15_Ualt_2 ,76D,24,31,.02,-5,2,,220707,620707,ff,C_Ki_Alt15_Ualt_3 ,76D,24,30,.02,-8,2,s,220708,620708,ff,C_Tau_Alt15_Ualt_0 ,76D,24,30,.02,-8,2,s,220709,620709,ff,C_Tau_Alt15_Ualt_1 ,76D,24,31,10,0,0,,22070A,62070A,ff,C_K_res_CCABatterieNominale ,76D,24,31,1,-1,0,,22070B,62070B,ff,C_K_res_CapaciteNominale ,76D,24,31,1,0,0,,22070C,62070C,ff,C_B_2ndCompInhibition ,76D,24,31,1,0,0,,22070F,62070F,ff,C_B_ReflexStart ,76D,24,30,.02,-8,2,s,220710,620710,ff,C_Tau_Alt15_Ualt_2 ,76D,24,30,.02,-8,2,s,220711,620711,ff,C_Tau_Alt15_Ualt_3 ,76D,24,31,1,0,0,,220712,620712,ff,V_K_CheckingCounter_status ,76D,24,24,1,0,0,,220713,620713,ff,V_B_OldBattery_status ,76D,24,55,1,0,0,,220714,620714,4ff,V_K_CorrosionBat_est ,76D,24,55,1,0,0,,220715,620715,4ff,V_K_CyclageBat_est ,76D,24,55,1,0,0,,220716,620716,4ff,C1d_U_res_BattThreshold ,76D,24,55,1,0,0,,220717,620717,4ff,V_K_CorrosionBatMem ,76D,24,55,1,0,0,,220718,620718,4ff,V_K_CyclageBatMem ,76D,24,29,.1,-100,1,V,220719,620719,ff,C_U_Floating ,76D,24,135,1,0,0,,22071F,62071F,4ff,C1d_Pct_EngSpeed_Y ,76D,24,30,1,0,0,%,220720,620720,ff,C_Pct_FloatingSOCLow ,76D,24,30,1,0,0,%,220721,620721,ff,C_Pct_FloatingSOCHigh ,76D,24,79,1,0,0,,220722,620722,4ff,C1d_interESM_X ,76D,24,29,.1,-100,1,V,220723,620723,ff,C_U_ESM_pt3 ,76D,24,31,40,0,0,W,220724,620724,ff,C_P_alt_min_low_1 ,76D,24,31,40,0,0,W,220725,620725,ff,C_P_alt_min_low_2 ,76D,24,31,40,0,0,W,220726,620726,ff,C_P_alt_offset_1 ,76D,24,31,40,0,0,W,220727,620727,ff,C_P_alt_offset_2 ,76D,24,29,.1,-100,1,V,220728,620728,ff,C_U_ESM_batt_min ,76D,24,29,.1,-100,1,V,220729,620729,ff,C_U_ESM_batt_max ,76D,24,31,40,0,0,W,220730,620730,ff,C_P_alt_min_high ,76D,24,31,1,0,0,Vs,220731,620731,ff,C_UTM_BattHighVoltage_max ,76D,24,31,.1,0,1,V/s,220732,620732,ff,C_dU_ESM_pos_limit ,76D,24,31,1,0,0,A,220733,620733,ff,C_I_Batt_max ,76D,24,31,.1,0,1,V/s,220734,620734,ff,C_dU_ESM_pos ,76D,24,55,1,0,0,,220735,620735,4ff,GTNx ,76D,24,71,1,0,0,,220736,620736,4ff,APB_Nxx ,76D,24,27,5,-5,0,%,220737,620737,ff,C_Pct_SOCCurrent_limp ,76D,24,24,1,0,0,,22073A,62073A,ff,C_B_CyclingInhibition,0:not inhibited;1:inhibited ,76D,24,24,1,0,0,,22073B,62073B,ff,C_B_CorrosionInhibition,0:not inhibited;1:inhibited ,76D,24,31,.1,0,1,cm,220748,620748,ff,C_D_DistStopAuto_min ,76D,24,28,1,0,0,km/h,220749,620749,ff,C_S_VehSpeedStopAuto_min ,76D,24,27,1,0,0,km/h,220750,620750,ff,C_S_VehSpeedStopAuto_max ,76D,24,27,1,0,0,km/h,220751,620751,ff,C_S_VehSpeedStart ,76D,24,24,1,0,0,,220752,620752,ff,C_B_STOPSTARTInhibit,0:Stop Start not inhibited;1:Stop Start inhibited ,76D,24,24,1,0,0,,220753,620753,ff,C_B_ESMInhibit,0:ESM not inhibited;1:ESM inhibited ,76D,24,24,1,0,0,,220755,620755,ff,C_B_ETC_present,0:ETC not present;1:ETC present ,76D,24,24,1,0,0,,220756,620756,ff,C_B_InhibitonStrategieProtectionDemarreur,0:Thermal Starter Protection not inhibited;1:Thermal Starter Protection inhibited ,76D,24,24,1,0,0,,220758,620758,ff,C_B_ClimType,0:CAMAN;1:CAREG ,76D,24,24,1,0,0,,220759,620759,ff,C_B_APBPresent,0:APB not present;1:APB present ,76D,24,24,1,0,0,,220761,620761,ff,C_B_SteerPresent,0:Steer not present;1:Steer present ,76D,24,24,1,0,0,,220762,620762,ff,C_B_BatteryChangeNeed,0:Battery Changed alert inhibited;1:Battery Changed alert not inhibited ,76D,24,24,1,0,0,,220763,620763,ff,C_B_StopStartStateDisplayRequest,0:Stop StopStartStateDisplayRequest alert inhibited;1:StopStartStateDisplayRequest alert not inhibited ,76D,24,24,1,0,0,,220764,620764,ff,C_B_StopAutoStateDisplayRequest,0:StopAutoStateDisplayRequest alert inhibited;1:StopAutoStateDisplayRequest alert not inhibited ,76D,24,24,1,0,0,,220765,620765,ff,C_B_Protection_ShowRoom_Enable,0:Protection ShowRoom disable;1:Protection ShowRoom enable ,76D,24,24,1,0,0,,220766,620766,ff,C_K_MotorCylinder_status,0:4 cylinders;1:6 cylinders ,76D,24,24,1,0,0,,220767,620767,ff,C_K_MotorType_status,0:Gasoil;1:Essence ,76D,24,24,1,0,0,,220768,620768,ff,C_B_ResolIrotor_125mA,0:I rotor resolution- 250 mA;1:I rotor resolution- 125 mA ,76D,24,31,1,0,0,,220769,620769,4ff,C_K_LIN_ID0 ,76D,24,31,1,0,0,,220770,620770,4ff,C_K_LIN_ID1 ,76D,24,31,1,0,0,,220771,620771,4ff,C_K_LIN_ID2 ,76D,24,31,1,0,0,,220772,620772,4ff,C_K_LIN_ID3 ,76D,24,24,1,0,0,,220775,620775,ff,E_B_HighBeamWithoutPWM,0:HighBeam with PWM;1:HighBeam without PWM ,76D,24,24,1,0,0,,220776,620776,ff,E_B_FogWithoutPWM,0:FR FOG with PWM;1:FR FOG without PWM ,76D,24,24,1,0,0,,220777,620777,ff,E_B_TAIL1WithoutPWM,0:TAIL1 with PWM;1:TAIL1 without PWM ,76D,24,24,1,0,0,,220778,620778,ff,E_B_TAIL2WithoutPWM,0:TAIL2 with PWM;1:TAIL2 without PWM ,76D,24,24,1,0,0,,220779,620779,ff,E_B_TAIL3WithoutPWM,0:TAIL3 with PWM;1:TAIL3 without PWM ,76D,24,24,1,0,0,,220780,620780,ff,E_B_TAIL4WithoutPWM,0:TAIL4 with PWM;1:TAIL4 without PWM ,76D,24,24,1,0,0,,220781,620781,ff,E_B_Singlebulb_DRL_Tail,0:DTRL and Tail independent;1:Bifunction DTRL and Tail ,76D,24,24,1,0,0,,220782,620782,ff,E_B_DRL_with_LED,0:DRL with BULB;1:DRL with LED ,76D,24,24,1,0,0,,220783,620783,ff,E_B_TAIL_1_with_LED,0:TAIL1 with BULB;1:TAIL1 with LED ,76D,24,24,1,0,0,,220784,620784,ff,E_B_TAIL_2_with_LED,0:TAIL2 with BULB;1:TAIL2 with LED ,76D,24,24,1,0,0,,220785,620785,ff,E_B_TAIL_3_with_LED,0:TAIL3 with BULB;1:TAIL3 with LED ,76D,24,24,1,0,0,,220786,620786,ff,E_B_TAIL_4_with_LED,0:TAIL4 with BULB;1:TAIL4 with LED ,76D,24,119,1,0,0,,220787,620787,4ff,C2d_PWM_BULB_XY ,76D,24,119,1,0,0,,220788,620788,4ff,C2d_PWM_LED_XY ,76D,24,30,.01,0,2,,220789,620789,ff,C_PWM_adaptation_for_DRL ,76D,24,30,.01,0,2,,220790,620790,ff,C_PWM_adaptation_for_DRL_as_Tail ,76D,24,30,.01,0,2,,220791,620791,ff,C_PWM_adaptation_for_TAIL_1 ,76D,24,30,.01,0,2,,220792,620792,ff,C_PWM_adaptation_for_TAIL_2 ,76D,24,30,.01,0,2,,220793,620793,ff,C_PWM_adaptation_for_TAIL_3 ,76D,24,30,.01,0,2,,220794,620794,ff,C_PWM_adaptation_for_TAIL_4 ,76D,24,71,1,0,0,,220795,620795,4ff,E_B_HW_FailureInhibition ,76D,24,39,1,0,0,,220796,620796,4ff,E_B_BCS_VS_FailureInhibition ,76D,24,31,1,0,0,,220797,620797,4ff,E_B_StopStart_ESM_FailureInhibition ,76D,24,31,1,0,0,,220798,620798,ff,C_TM_RearGearPlausibFailureCp ,76D,24,31,1,0,0,,220799,620799,ff,C_V_RearGearFailVehiclSpeedThres ,76D,24,31,1,0,0,,2207A0,6207A0,ff,C_TM_Stop_req ,76D,24,33,1,0,0,,2207A1,6207A1,ff,C_RPM_DisplayEngineStop ,76D,24,28,.005,-1,3,,2207A2,6207A2,ff,C_TM_SSVSActivationBeforeBoost ,76D,24,31,1,0,0,,2207A3,6207A3,ff,C_B_SSVSStartMask ,76D,24,31,.01,0,2,s,2207A4,6207A4,ff,C_TM_AntMilling ,76D,24,31,1,0,0,,2207A5,6207A5,ff,C_K_NBR_BRK_1 ,76D,24,31,1,0,0,s,2207A6,6207A6,ff,C_TM_DefautBouton ,76D,24,30,.05,0,2,,2207A7,6207A7,ff,C_TM_DriverSeatToNotSeat_Delay ,76D,24,24,1,0,0,,2207A8,6207A8,ff,C_B_WaterPumpControlledByUSM ,76D,24,31,.1,-106,1,V,2207A9,6207A9,ff,V_U_charge_batt_req ,76D,24,31,.1,-106,1,,2207AA,6207AA,ff,V_U_Floating_prim ,76D,24,31,.1,-106,1,,2207AB,6207AB,ff,V_U_interESM_batt_req ,76D,24,24,1,0,0,,2207AC,6207AC,ff,BatteryDischargeByESM_OK ,76D,24,31,.1,-106,1,,2207AD,6207AD,ff,V_U_ESM_req ,76D,24,55,1,0,0,,2207AE,6207AE,4ff,V_K_CorrosionBat ,76D,24,55,1,0,0,,2207AF,6207AF,4ff,V_K_CyclageBat ,76D,24,31,1,0,0,,2207B0,6207B0,ff,V_K_CompressionBatM20_Init ,76D,31,39,1,0,0,,2207B1,6207B1,ff,V_K_Type_ESM_Inhibition ,76D,24,31,1,0,0,,2207B7,6207B7,ff,V_K_CompressionBatMoy ,76D,24,31,1,0,0,,2207B8,6207B8,ff,V_K_CompressionBat ,76D,26,39,.1,0,1,,2207B9,6207B9,ff,V_Pct_PerteSOC_Autorise ,76D,24,31,.01,0,2,,2207BA,6207BA,ff,V_K_n ,76D,24,31,1,40,0,°C,2207BB,6207BB,ff,T_eq_cond ,76D,24,31,.1,-106,1,,2207BC,6207BC,ff,V_U_batt_desat ,76D,24,24,1,0,0,,2207BD,6207BD,ff,V_B_Ramp_Detected_status ,76D,24,37,.01,0,2,,2207BE,6207BE,ff,V_Pct_SOCInit_est ,76D,24,31,.1,0,1,,2207BF,6207BF,ff,V_C_alt_est ,76D,24,25,1,0,0,,2207C1,6207C1,ff,ECM_status,0:CAN frames present;1:CAN frames absent;2:CAN frames confirmed absent ,76D,24,25,1,0,0,,2207C2,6207C2,ff,BCM_status,0:CAN frames present;1:CAN frames absent;2:CAN frames confirmed absent ,76D,24,25,1,0,0,,2207C3,6207C3,ff,BRAKE_status,0:CAN frames present;1:CAN frames absent;2:CAN frames confirmed absent ,76D,24,24,1,0,0,,2207C4,6207C4,ff,ECM_updated,0:CAN frames absent;1:CAN frames updated ,76D,24,24,1,0,0,,2207C5,6207C5,ff,BCM_updated,0:CAN frames absent;1:CAN frames updated ,76D,24,24,1,0,0,,2207C6,6207C6,ff,BRAKE_updated,0:CAN frames absent;1:CAN frames updated ,76D,24,29,.1,-106,1,V,2207C7,6207C7,ff,V_U_batt req ,76D,24,29,.1,-106,1,V,2207C8,6207C8,ff,V_U_alt req ,76D,26,39,.01,0,2,,2207C9,6207C9,ff,V_K_JaugeVT_mem ,76D,26,39,.01,0,2,,2207CA,6207CA,ff,V_Pct_SOCCurrent_est ,76D,24,31,1,40,0,°C,2207CB,6207CB,ff,V_Temp_Batt_est ,76D,24,29,1,0,0,,2207CC,6207CC,ff,V_K_ESM_status ,76D,24,24,1,0,0,,2207CE,6207CE,ff,V_B_ZoneBatt_OK,0:Zone Batt Not OK;1:Zone Batt OK ,76D,24,25,1,0,0,,2207CF,6207CF,ff,BMS_StopAutoForbidden,0:UNAVAILABLE_BMS;1:STOP_AUTO_FORBIDDEN_BMS;2:STOP_AUTO_AUTHORIZED_BMS ,76D,24,31,.390625,0,1,%,2207D0,6207D0,ff,AlternatorLoad ,76D,24,47,1,0,0,mn,2207D1,6207D1,ff,AbsoluteTimeSince1rstIgnition ,76D,24,25,1,0,0,,2207D2,6207D2,ff,EngineStatus_R,0:Stopped;1:Reserved;2:Running;3:Cranking ,76D,24,31,.0625,0,2,V,2207D3,6207D3,ff,BatteryVoltage ,76D,24,26,1,0,0,,2207D4,6207D4,ff,VehicleState,0:VEHICLEASLEEP_ENGINESTOPPED;1:VEHICLEAWAKE_ENGINESTOPPED;2:ENGINE_READY_TO_START;3:STARTING_IN_PROGRESS;4:VEHICLEAWAKE_ENGINERUNNING ,76D,24,24,1,0,0,,2207D5,6207D5,ff,StopAutoStateDisplayRequest,0:NO_REQUEST_DISPLAY_SS;1:REQUEST_DISPLAY_SS ,76D,24,25,1,0,0,,2207D6,6207D6,ff,StopStartStateDisplayRequest,0:No_SS_State_Display_Request;1:SS_Activation_Display_Request;2:SS_Desactivation_Display_Request;3:StopStart_Display_Unavailability_for_Failure ,76D,24,39,.125,0,1,tr/min,2207D7,6207D7,ff,EngineRPM ,76D,24,24,1,0,0,,2207D8,6207D8,ff,BatteryChangedDisplay,0:NO Stop Auto Display Request;1:1 Stop Auto Display Request ,76D,24,25,1,0,0,,2207D9,6207D9,ff,BatteryChangedActivation,0:Not Used;1:NO battery parameter reset request;2:Battery parameter reset requested;3:Unvailable Value ,76D,24,25,1,0,0,,2207DA,6207DA,ff,V_K_StopStart_state,0:UNAVAILABLE NOMINAL;1:UNAVAILABLE NOT NOMINAL;2:AVAILABLE INACTIVE;3:AVAILABLE ACTIVE ,76D,28,28,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.Number_of_cycles_Failure,0:No failure;1:Failure ,76D,29,29,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.CrashDetection_Failure,0:No failure;1:Failure ,76D,30,30,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.CrashDetected_Failure,0:No failure;1:Failure ,76D,31,31,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.Bus_OFF_Failure,0:No failure;1:Failure ,76D,32,32,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.ECM_absent_Failure,0:No failure;1:Failure ,76D,33,33,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.BCM_absent_Failure,0:No failure;1:Failure ,76D,34,34,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.Brake_Failure,0:No failure;1:Failure ,76D,35,35,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.BMS_Failure,0:No failure;1:Failure ,76D,36,36,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.RearGear_Failure,0:No failure;1:Failure ,76D,37,37,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.Neutral_Failure,0:No failure;1:Failure ,76D,38,38,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.Clutch_max_travel_Failure,0:No failure;1:Failure ,76D,39,39,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.Clutch_min_travel_Failure,0:No failure;1:Failure ,76D,40,40,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.ASS_StopAuto_Failure,0:No failure;1:Failure ,76D,41,41,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.VehicleSpeed_Failure,0:No failure;1:Failure ,76D,42,42,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.Activation_Driver_Failure,0:No failure;1:Failure ,76D,43,43,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.Airbag_Failure,0:No failure;1:Failure ,76D,44,44,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.StopAutoReq_Failure,0:No failure;1:Failure ,76D,45,45,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.ECM_Failure,0:No failure;1:Failure ,76D,46,46,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.Supposed_Driving_State_Failure,0:No failure;1:Failure ,76D,47,47,1,0,0,,2207DB,6207DB,ff,V_K_TypeFailure.StartAutoSystem_Failure,0:No failure;1:Failure ,76D,24,25,1,0,0,,2207DC,6207DC,ff,CrankingAuthorisation_ECM,0:Cranking not allowed;1:Cranking allowed;2:Cranking stopped required;3:No request ,76D,24,25,1,0,0,,2207DE,6207DE,ff,StarterStatus,0:OFF;1:Short relaxation;2:Long relaxation;3:ON ,76D,24,25,1,0,0,,2207DF,6207DF,ff,StopAutoRequest,0:UNAVAILABLE;1:STOP_AUTO_REQUESTED;2:STOP_AUTO_NOT_REQUESTED;3:NOT USED ,76D,24,25,1,0,0,,2207E0,6207E0,ff,TechnicalStartAutoRequest,0:UNAVAILABLE;1:TECHNICAL_AUTOSTART_NOT_REQUESTED;2:TECHNICAL_AUTOSTART_REQUESTED;3:NOT USED ,76D,24,26,1,0,0,,2207E1,6207E1,ff,BrakeInfoStatus,0:;1:PEDAL_NOT_PRESSED;2:PEDAL_PRESSED;4:PEDAL_CONFIRMED_PRESSED;7:UNAVAILABLE ,76D,24,25,1,0,0,,2207E2,6207E2,ff,V_K_PSS_ASS,0:Contactor Open (Pressure OK);1:Contactor Closed (Pressure Not OK);2:NOT USED;3:Open Circuit ,76D,24,24,1,0,0,,2207E3,6207E3,ff,DriverDoorState,0:DRIVER_DOOR_CLOSE;1:DRIVER_DOOR_OPEN ,76D,24,24,1,0,0,,2207E4,6207E4,ff,PassengerDoorState,0:DRIVER_DOOR_CLOSE;1:DRIVER_DOOR_OPEN ,76D,24,25,1,0,0,,2207E5,6207E5,ff,DriverSafetyBeltReminder,0:DRIVER_SAFETY_BELT_REMINDER;1:DRIVER_SAFETY_BELT_WARNING_L1;2:DRIVER_SAFETY_BELT_WARNING_L2;3:DRIVER_SAFETY_BELT_NOT_USED ,76D,24,25,1,0,0,,2207E6,6207E6,ff,V_K_DriverNappe_sens,0:DRIVER_NAPPE_UNAVAILABLE;1:DRIVER_NAPPE_DETECTED;2:DRIVER_NAPPE_NOT_DETECTED;3:DRIVER_NAPPE_NOT_USED ,76D,24,25,1,0,0,,2207E7,6207E7,ff,DriverSeatStatus,0:DRIVER_NAPPE_UNAVAILABLE;1:DRIVER_NAPPE_DETECTED;2:DRIVER_NAPPE_NOT_DETECTED;3:DRIVER_NAPPE_NOT_USED ,76D,24,25,1,0,0,,2207E8,6207E8,ff,EngineHoodState,0:ENGINEHOOD_UNAVAILABLE;1:ENGINEHOOD_OPENED;2:ENGINEHOOD_CLOSED;3:ENGINEHOOD_NOT_USED ,76D,24,25,1,0,0,,2207E9,6207E9,ff,StartAutoAuthorization,0:START_AUTO_UNAVAILABLE;1:START_AUTO_AUTHORIZED;2:START_AUTO_FALSE_DEFINITIVELY;3:START_AUTO_FALSE_TEMPORARILY ,76D,24,25,1,0,0,,2207EA,6207EA,ff,VehicleStateSSExtension,0:VEHICLE_NOT_IN_AUTOMATIC_STATE;1:VEHICLE_IN_AUTOMATIC_STATE;2:VEHICLESTATE_SS_EEXTENSION_NOT_USED;3:VEHICLE_EXTENSION_UNAVAILABLE ,76D,24,25,1,0,0,,2207EB,6207EB,ff,GenericApplicativeDiagEnable,0:Only faults reports and alerts that MUST remain active during cranking or sleeping periods are enabled;1:All faults reports and alerts not related to APC power level are enabled;2:All faults reports and alerts are enabled;3:Unavailable ,76D,24,25,1,0,0,,2207EC,6207EC,ff,AC_StopAutoForbidden,0:UNAVAILABLE_REQUEST_CLIM;1:STOP_AUTO_FORBIDDEN_CLIM;2:STOP_AUTO_AUTHORIZED_CLIM;3:CLIM_REQUEST_NOT_USED ,76D,27,27,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.StartAutoAuthorization,0:No failure;1:Failure ,76D,28,28,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.ETC_Failure,0:No failure;1:Failure ,76D,29,29,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.MSRInRegulation,0:No failure;1:Failure ,76D,30,30,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.AYCInRegulation,0:No failure;1:Failure ,76D,31,31,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.ASRInRegulation,0:No failure;1:Failure ,76D,32,32,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.ABSInRegulation,0:No failure;1:Failure ,76D,33,33,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.ABSMalfunction,0:No failure;1:Failure ,76D,34,34,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.ECM_StopAutoForbidden,0:No failure;1:Failure ,76D,35,35,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.BMS_StopAutoForbidden,0:No failure;1:Failure ,76D,36,36,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.ClimFailure,0:No failure;1:Failure ,76D,37,37,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.DefinitiveDriverExit,0:No failure;1:Failure ,76D,38,38,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.ASS_StopAutoForbidden,0:No failure;1:Failure ,76D,39,39,1,0,0,,2207ED,6207ED,ff,V_K_Type_Stop_Interdiction.Starter_Inhibition,0:No failure;1:Failure ,76D,24,25,1,0,0,,2207EF,6207EF,ff,ClutchSwitchMinimumTravel,0:Not used;1:Minimum clutch travel switch not active;2:Minimum clutch travel switch active;3:Unavailable ,76D,24,25,1,0,0,,2207F0,6207F0,ff,ClutchSwitchMaximumTravel,0:Not used;1:Maximum clutch travel switch not active;2:Maximum clutch travel switch active;3:Unavailable ,76D,24,25,1,0,0,,2207F1,6207F1,ff,NeutralContact,0:Reserved;1:Not reached;2:Reached;3:Unavailable ,76D,24,25,1,0,0,,2207F2,6207F2,ff,RearGearEngaged,0:Not used;1:Not engaged;2:Engaged;3:Unavailable ,76D,24,24,1,0,0,,2207F3,6207F3,ff,V_B_ParcoursStopAutoOK_status,0:ParcoursStopAuto Not OK;1:ParcoursStopAuto OK ,76D,24,39,.01,0,2,km/h,2207F4,6207F4,ff,VehicleSpeed ,76D,24,24,1,0,0,,2207F5,6207F5,ff,V_B_AppuiBtnConfirmed_status ,76D,24,25,1,0,0,,2207F6,6207F6,ff,V_K_Activation_driver,0:NO_DRIVER_REQUEST;1:DRIVER_ACTIVATION_REQUEST;2:DRIVER_DEACTIVATION_REQUEST;3:DRIVER_REQUEST_UNKNOW ,76D,24,25,1,0,0,,2207F7,6207F7,ff,V_K_CheckingInProgress,0:No check battery;1:Check of old battery before disconnection;2:Check of not old battery before disconnection;3:Check battery in TimeOut ,76D,24,25,1,0,0,,2207F8,6207F8,ff,V_B_EndOfLearning_status,0:Not finished;1:Finished ,76D,24,31,1,0,0,,2207F9,6207F9,ff,V_K_LearningCounter_status ,76D,24,31,1,0,0,,2207FA,6207FA,ff,V_K_StartCounter_status ,76D,24,24,1,0,0,,2207FB,6207FB,ff,V_B_DefautGEE_status ,76D,24,24,1,0,0,,2207FC,6207FC,ff,V_B_ReserveSOC_ESM_OK ,76D,24,24,1,0,0,,2207FD,6207FD,ff,V_B_ReserveSOC_SS_OK ,76D,24,24,1,0,0,,2207FE,6207FE,ff,V_B_TempBattOK ,76D,24,24,1,0,0,,2207FF,6207FF,ff,V_B_ButtonFail_Present_Algo,0:No Defect;1:Defect present ,76D,24,55,1,0,0,,220800,620800,4ff,V_K_InitialStartNbr1 ,76D,24,55,1,0,0,,220801,620801,4ff,V_K_TotalStartNbr1 ,76D,24,55,1,0,0,,220802,620802,4ff,V_K_ROM_InitialStartNbr ,76D,24,55,1,0,0,,220803,620803,4ff,V_K_ROM_TotalStartNbr ,76D,24,29,10000,0,0,,220804,620804,ff,C_K_NbrOfStartThreshold ,76D,24,24,1,0,0,,220805,620805,ff,C_B_PositionLights,0:No Follow me home;1:Follow me home ,76D,24,39,1,0,0,,220806,620806,ff,C_K_EEPROM_StopStartChecksum ,76D,24,55,1,0,0,,220807,620807,4ff,E_B_ECUFailure_FailureInhibition ,76D,24,31,80000,0,0,,220808,620808,ff,C_K_CorrosionBatMax ,76D,24,31,1000,0,0,,220809,620809,ff,C_K_CyclageBatMax ,76D,24,55,1,0,0,,220810,620810,4ff,V_K_InitialStartNbr2 ,76D,24,55,1,0,0,,220811,620811,4ff,V_K_TotalStartNbr2 ,76D,31,31,1,0,0,,2208A1,6208A1,ff,C_B_VehicleType,0:Key vehicle;1:Keyless vehicle ,76D,24,31,.1,-100,1,V,2208A7,6208A7,ff,C_U_alt_Start ,76D,24,24,1,0,0,,2208A8,6208A8,ff,C_B_ABSMalfunction_Inhibition,0:Stop Auto Authorised in case of ABS Malufunction flags;1:No Stop Auto in case of ABS Malufunction flags ,76D,24,31,1,0,0,%,2208A9,6208A9,ff,C_Pct_SOCZoneTravailESM_min ,76D,24,55,1,0,0,,2208AA,6208AA,4ff,V_K_ECUFailureType_U32 ,76D,24,1983,1,0,0,,220901,620901,4ff,DataRecorderData_01 ,76D,24,1983,1,0,0,,220902,620902,4ff,DataRecorderData_02 ,76D,24,1423,1,0,0,,220903,620903,4ff,DataRecorderData_03 ,76D,24,583,1,0,0,,220904,620904,4ff,DataRecorderData_04 ,76D,31,31,1,0,0,,220905,620905,ff,E_B_ElectricalVehicle,0:Not an electrical vehicle;1:Electrical vehicle ,76D,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE/USM_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE/VFC_Fields.csv ================================================ # SID (defaults to ID.startBit.[responseId]), ID (hex), startBit, endBit, resolution, offset (aplied BEFORE resolution multiplication), decimals, unit, requestID (hex string), responseID (hex string), options (hex, see MainActivity for definitions), optional name, optional list # # All fields are actually loaded by code, but the file needs to be here to avoid an error. # # VFC is not displayed in the DTC activity so doe not require Tests and Dtcs # ================================================ FILE: app/src/main/assets/ZOE/_Dtcs.csv ================================================ 061263,BATTERY CHARGE CIRCUIT # 066263,BATTERY CHARGE CIRCUIT # 064913,BATTERY CHARGE CIRCUIT # 064764,BATTERY CHARGE CIRCUIT # C10000,EVC ABSENT MULTIPLEX SIGNAL SENT # 518196,ESP MULTIPLEX INFORMATION PLAUSIBILITY # C12200,NO ABS/ESP MULTIPLEX SIGNAL # 518296,EVC MULTIPLEX INFORMATION PLAUSIBILITY # 508E55,UBP SOLENOID VALVE # C07300,MULTIPLEXED NETWORK # C00100,NO MULTIPLEX SIGNAL # 921215,LEFT-HAND DIPPED HEADLIGHT CIRCUIT # 921315,RIGHT-HAND DIPPED HEADLIGHT CIRCUIT # AE01F0,COMMUNICATION PROTOCOL ERROR # 041168,CAN COMMUNICATION # 1525F3,CONSISTENT MULTIPLEX SIGNALS FOR CC/SL # 060198,ELECTRIC MOTOR PERFORMANCE" ================================================ FILE: app/src/main/assets/ZOE/_Ecus.csv ================================================ # Descriptive name, Renault ID, Network (s), From ID, To ID, Mnemonic, Alias(ses), GetDtc responseID (s), startDiag, Session required # If more than one, semicolon separated Electric Vehicle Controller,946,V;E,7ec,7e4,EVC,SCH,5902af,50c0,0 Telematics Control Unit,2152,V;M,7da,7ca,DCM,TCU,5902ff,50c0,0 Lithium Battery Controller,938,E,7bb,79b,LBC,-,59020f,50c0,0 Power Electronics Block,2092,E,77e,75a,PEB,-,5902ff,50c0,0 Airbag,756,V,772,752,AIBAG,AIRBAG,5902ff,50c0,0 U Safety Module,1337,V,76d,74d,USM,UPC;UCM,5902ff,50c0,0 Instrument panel,247,V;M,763,743,TDB,CLUSTER;BIC,5902ff,50c0,0 Electrical Power Steering,1232,V,762,742,EPS,PAS,5902ff,50c0,0 Electronic Stability Control,1094,V,760,740,ESC,ABS,5902ff,50c0,0 Uncoupled Braking Pedal,2197,V,7bc,79c,UBP,-,5902ff,50c0,0 Body Control Module,645,V;O,765,745,UCH,BCM,5902ff,50c0,0 Climate Control,419,V,764,744,HVAC,CLIM;CLIMA;CLIMBOX,5902ff,50c0,0 Park Assist,1222,O,76e,74e,Parking-Sonar,UPA,5902ff,50c0,0 Battery Connection Box,2093,E,793,792,BCB-OBC,BCB,5902ff;5902af,50c0,1 Lithium Battery Controller 2,938,E,7b6,796,LBC2,-,59020f,50c0,0 Tuner,261,M,0,0,RADIO,-,,50c0,0 Joystick,1657,M,0,0,-,-,,50c0,0 R-Link,1127,M,0,0,AUTOS,-,,50c0,0 Horn,2138,E,0,0,-,-,,50c0,0 VirtualField computer,9999,V,800,800,VFC,-,,50c0,0 Free fields,9998,V,801,801,FFC,-,,50c0,0 ================================================ FILE: app/src/main/assets/ZOE/_Fields.csv ================================================ # SID (defaults to ID.startBit.[responseId]), ID (hex), startBit, endBit, resolution, offset (applied BEFORE resolution multiplication), decimals, unit, requestID (hex string), responseID (hex string), options (hex, see MainActivity for definitions), optional name, optional list ,130,44,55,-3,4094,0,Nm,,,ff,DriverBrakeWheelTq_Req ,186,16,27,0.5,800,1,Nm,,,ff,MeanEffectiveTorque ,186,40,49,0.125,0,1,%,,,ff,Throttle ,18a,27,38,0.5,800,1,Nm,,,ff,Coasting Torque ,1f8,16,27,1,4096,0,Nm,,,ff,TotalPotentialResistiveWheelsTorque ,1f8,28,39,-1,4096,0,Nm,,,ff,ElecBrakeWheelsTorqueApplied ,1f8,40,50,10,0,0,Rpm,,,ff,ElecEngineRPM ,1fd,0,7,0.390625,0,1,%,,,ff,12V Battery Current? ,1fd,48,55,1,80,0,kW,,,ff,Consumption ,35c,5,7,1,0,0,,,,ff,Vehicle state ,427,40,47,0.3,0,1,kW,,,ff,Available Charging Power ,427,49,57,0.1,0,1,kWh,,,ff,Available Energy ,42a,30,39,0.1,400,1,°C,,,ff,Evaporator Temp Measure ,42a,48,50,1,0,0,,,,ff,ClimLoopMode ,42e,0,12,0.02,0,2,%,,,e3,State of Charge ,42e,20,24,5,0,0,%,,,ff,Engine Fan Speed ,42e,38,43,1,0,1,A,,,e3,Charging Pilot Current ,42e,44,50,1,40,0,°C,,,e3,HV Battery Temp ,42e,56,63,0.3,0,1,kW,,,ff,Charging Power ,430,24,33,0.5,30,1,°C,,,ff,Comp Temperature Discharge ,430,38,39,1,0,0,,,,ff,HV Battery Cooling State ,430,40,49,0.1,400,1,°C,,,ff,HV Battery Evaporator Temp ,432,36,37,1,0,0,,,,ff,HV Bat Conditionning Mode ,4f8,4,5,-1,-2,0,,,,ff,Parking Brake ,534,32,40,1,40,0,°C,,,e5,Temp out ,5d7,0,15,0.01,0,2,km/h,,,ff,Speed ,5da,0,7,1,40,0,ºC,,,e7,Water temperature ,62d,0,9,0.1,0,1,kWh/100km,,,ff,Worst Average Consumption ,62d,10,19,0.1,0,1,kWh/100km,,,ff,Best Average Consumption ,638,37,39,1,0,0,,,,ff,Battery 14v To Be Changed Display ,654,2,2,1,0,0,,,,ff,Charging Plug Connected ,654,32,41,1,0,0,min,,,ff,Time to Full ,654,42,51,1,0,0,km,,,ff,Available Distance ,654,52,61,0.1,0,1,kWh/100km,,,ff,Average Consumption ,656,48,55,1,40,0,°C,,,ff,External Temp ,658,33,39,1,0,0,%,,,ff,Battery Health ,673,0,0,1,0,0,,,,ff,Speed pressure misadaptation ,673,2,4,1,0,0,,,,ff,Rear right wheel state ,673,5,7,1,0,0,,,,ff,Rear left wheel state ,673,8,10,1,0,0,,,,ff,Front right wheel state ,673,11,13,1,0,0,,,,ff,Front left wheel state ,673,16,23,13.725,0,0,mbar,,,ff,Rear right wheel pressure ,673,24,31,13.725,0,0,mbar,,,ff,Rear left wheel pressure ,673,32,39,13.725,0,0,mbar,,,ff,Front right wheel pressure ,673,40,47,13.725,0,0,mbar,,,ff,Front left wheel pressure ,699,8,15,0.5,0,0,°C,,,ff,Temperature # ESC ,760,56,63,1,0,0,,2180,6180,ff,diagVersion ,760,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,760,128,143,1,0,0,,2180,6180,ff,Soft ,760,144,159,1,0,0,,2180,6180,ff,Version ,760,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,760,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # EPS ,762,56,63,1,0,0,,2180,6180,ff,diagVersion ,762,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,762,128,143,1,0,0,,2180,6180,ff,Soft ,762,144,159,1,0,0,,2180,6180,ff,Version ,762,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,762,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # CLUSTER ,763,56,63,1,0,0,,2180,6180,ff,diagVersion ,763,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,763,128,143,1,0,0,,2180,6180,ff,Soft ,763,144,159,1,0,0,,2180,6180,ff,Version ,763,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,763,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # CLIM ,764,26,35,0.1,400,1,°C,2121,6121,ff,IH_InCarTemp ,764,36,43,1,0,0,%,2121,6121,ff,IH_RHumidity ,764,86,87,1,0,0,,2143,6143,ff,IH_EcoModeRequest,0:Unavailable Value;1:Eco mode requested;2:Eco mode not requested;3:Not used ,764,88,92,100,0,0,W,2143,6143,ff,IH_ElectricalPowerDrived ,764,110,117,1,40,0,°C,2143,6143,ff,IH_ExternalTemp ,764,134,142,.1,0,1,bar,2143,6143,ff,IH_ACHighPressureSensor ,764,107,116,10,0,0,rpm,2144,6144,ff,IH_ClimCompRPMStatus ,764,40,41,1,0,0,,2167,6167,ff,IH_ExternalTemp ,764,56,63,1,0,0,,2180,6180,ff,diagVersion ,764,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,764,128,143,1,0,0,,2180,6180,ff,Soft ,764,144,159,1,0,0,,2180,6180,ff,Version ,764,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,764,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # BCM ,765,0,0,1,0,0,,1081,5081,ff,start diag ,765,0,0,1,0,0,,10c0,50c0,ff,start diag ,765,0,0,1,0,0,,3e01,7e01,ff,Tester present ,765,56,63,1,0,0,,2180,6180,ff,diagVersion ,765,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,765,128,143,1,0,0,,2180,6180,ff,Soft ,765,144,159,1,0,0,,2180,6180,ff,Version ,765,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,765,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,765,16,16,1,0,0,,2171,6171,ff,PRESENCE_SSPP,0:without;1:with ,765,24,47,1,0,0,,2171,6171,ff,TPMS ,765,48,71,1,0,0,,2171,6171,ff,TPMS ,765,72,95,1,0,0,,2171,6171,ff,TPMS ,765,96,119,1,0,0,,2171,6171,ff,TPMS # USM ,76d,56,63,1,0,0,,2180,6180,ff,diagVersion ,76d,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,76d,128,143,1,0,0,,2180,6180,ff,Soft ,76d,144,159,1,0,0,,2180,6180,ff,Version ,76d,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,76d,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # UPA ,76e,56,63,1,0,0,,2180,6180,ff,diagVersion ,76e,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,76e,128,143,1,0,0,,2180,6180,ff,Soft ,76e,144,159,1,0,0,,2180,6180,ff,Version ,76e,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,76e,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # AIBAG ,772,56,63,1,0,0,,2180,6180,ff,diagVersion ,772,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,772,128,143,1,0,0,,2180,6180,ff,Soft ,772,144,159,1,0,0,,2180,6180,ff,Version ,772,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,772,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # PEB ,77e,56,63,1,0,0,,2180,6180,ff,diagVersion ,77e,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,77e,128,143,1,0,0,,2180,6180,ff,Soft ,77e,144,159,1,0,0,,2180,6180,ff,Version ,77e,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,77e,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,77e,24,39,0.015625,0,2,ºC,223018,623018,ff,DCDC converter temperature ,77e,24,31,0.015625,0,2,°C,22302b,62302b,ff,inverter temperature ,77e,24,39,0.03125,0,0,Nm,223025,623025,1ff,PEBTorque # BCB ,793,0,0,1,0,0,,1081,5081,ff,start diag ,793,0,0,1,0,0,,10c0,50c0,ff,start diag ,793,0,0,1,0,0,,3e01,7e01,ff,Tester present ,793,56,63,1,0,0,,2180,6180,ff,diagVersion ,793,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,793,128,143,1,0,0,,2180,6180,ff,Soft ,793,144,159,1,0,0,,2180,6180,ff,Version ,793,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,793,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,793,24,39,0.0625,32768,2,mA,225057,625057,ff,DataRead.Raw leakage current - DC part measurement ,793,24,39,0.0625,32768,2,mA,225058,625058,ff,DataRead.Raw leakage current - High Frequency 10kHz part measurement ,793,24,39,0.0625,32768,2,mA,225059,625059,ff,DataRead.Raw leakage current - High Frequency 1st part measurement ,793,24,39,0.0625,32768,2,mA,22505a,62505a,ff,DataRead.Raw leakage current - Low Frequency part measurement (50Hz) ,793,24,39,.0625,3200,2,A,222001,622001,ff,Mains phase 1 current RMS value ,793,24,39,.0625,3200,2,A,22503A,62503A,ff,Mains phase 2 current RMS ,793,24,39,.0625,3200,2,A,22503B,62503B,ff,Mains phase 3 current RMS ,793,29,31,1,0,0,,225017,625017,ff,Mains current type,0:Nok;1:AC mono;2:AC tri;3:DC;4:AC bi ,793,24,39,.5,32000,1,V,22502C,62502C,ff,Raw AC mains phase 1 measured voltage ,793,24,39,.5,32000,1,V,22502D,62502D,ff,Raw AC mains phase 2 measured voltage ,793,24,39,.5,32000,1,V,22502E,62502E,ff,Raw AC mains phase 3 measured voltage ,793,24,39,.5,0,1,V,22503f,62503f,ff,Mains phase 1-2 voltage RMS value ,793,24,39,.5,0,1,V,225041,625041,ff,Mains phase 2-3 voltage RMS value ,793,24,39,.5,0,1,V,225042,625042,ff,Mains phase 3-1 voltage RMS value ,793,24,39,1,20000,0,W,22504A,62504A,ff,Mains active power consumed ,793,24,39,1,0,0,Ohm,225062,625062,ff,Mains ground resistance ,793,24,31,1,0,0,,225063,625063,ff,Supervisor state,0:Init;1:Wait;2:ClosingS2;3:InitType;4:InitLkg;5:InitChg;6:Charge;7:ZeroAmpMode;8:EndOfChg;9:OpeningS2;10:ReadyToSleep;11:EmergencyStop;12:InitChargeDF;13:OCPStop;14:WaitS2 ,793,24,31,1,0,0,,225064,625064,ff,Leakage current diagnostic stored completion status,0:init;1:HF10;3:Mains Ground Default;5:Earth Current default;9:Ground Default;17:Means Leakage DC;33:Means Leakage LF;49:Means Leakage DC+LF;65:Means Leakage HF;81:Means Leakage DC+HF;97:Means Leakage LF+HF;113:Means Leakage DC+LF+HF # LBC2 ,7b6,56,63,1,0,0,,2180,6180,ff,diagVersion ,7b6,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7b6,128,143,1,0,0,,2180,6180,ff,Soft ,7b6,144,159,1,0,0,,2180,6180,ff,Version ,7b6,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,7b6,16,23,1,0,0,,19023b,59020f,ff,Query DTC # LBC ,7bb,336,351,0.01,0,2,kW,2101,6101,ff,Maximum battery input power ,7bb,192,207,0.01,0,2,%,2103,6103,ff,Real State of Charge ,7bb,32,39,1,40,0,°C,2104,6104,ff,Cell 1 Temperature ,7bb,56,63,1,40,0,°C,2104,6104,ff,Cell 2 Temperature ,7bb,80,87,1,40,0,°C,2104,6104,ff,Cell 3 Temperature ,7bb,104,111,1,40,0,°C,2104,6104,ff,Cell 4 Temperature ,7bb,128,135,1,40,0,°C,2104,6104,ff,Cell 5 Temperature ,7bb,152,159,1,40,0,°C,2104,6104,ff,Cell 6 Temperature ,7bb,176,183,1,40,0,°C,2104,6104,ff,Cell 7 Temperature ,7bb,200,207,1,40,0,°C,2104,6104,ff,Cell 8 Temperature ,7bb,224,231,1,40,0,°C,2104,6104,ff,Cell 9 Temperature ,7bb,248,255,1,40,0,°C,2104,6104,ff,Cell 10 Temperature ,7bb,272,279,1,40,0,°C,2104,6104,ff,Cell 11 Temperature ,7bb,296,303,1,40,0,°C,2104,6104,ff,Cell 12 Temperature ,7bb,600,607,1,40,0,degC,2104,6104,ff,21_04_#76_Average_Battery_Temperature ,7bb,16,23,1,0,0,,2107,6107,ff,Cell 1 Balancing switch ,7bb,24,31,1,0,0,,2107,6107,ff,Cell 2 Balancing switch ,7bb,32,39,1,0,0,,2107,6107,ff,Cell 3 Balancing switch ,7bb,40,47,1,0,0,,2107,6107,ff,Cell 4 Balancing switch ,7bb,48,55,1,0,0,,2107,6107,ff,Cell 5 Balancing switch ,7bb,56,63,1,0,0,,2107,6107,ff,Cell 6 Balancing switch ,7bb,64,71,1,0,0,,2107,6107,ff,Cell 7 Balancing switch ,7bb,72,79,1,0,0,,2107,6107,ff,Cell 8 Balancing switch ,7bb,80,87,1,0,0,,2107,6107,ff,Cell 9 Balancing switch ,7bb,88,95,1,0,0,,2107,6107,ff,Cell 10 Balancing switch ,7bb,96,102,1,0,0,,2107,6107,ff,Cell 11 Balancing switch ,7bb,104,111,1,0,0,,2107,6107,ff,Cell 12 Balancing switch ,7bb,16,31,0.001,0,3,V,2141,6141,ff,Cell 01 V ,7bb,32,47,0.001,0,3,V,2141,6141,ff,Cell 02 V ,7bb,48,63,0.001,0,3,V,2141,6141,ff,Cell 03 V ,7bb,64,79,0.001,0,3,V,2141,6141,ff,Cell 04 V ,7bb,80,95,0.001,0,3,V,2141,6141,ff,Cell 05 V ,7bb,96,111,0.001,0,3,V,2141,6141,ff,Cell 06 V ,7bb,112,127,0.001,0,3,V,2141,6141,ff,Cell 07 V ,7bb,128,143,0.001,0,3,V,2141,6141,ff,Cell 08 V ,7bb,144,159,0.001,0,3,V,2141,6141,ff,Cell 09 V ,7bb,160,175,0.001,0,3,V,2141,6141,ff,Cell 10 V ,7bb,176,191,0.001,0,3,V,2141,6141,ff,Cell 11 V ,7bb,192,207,0.001,0,3,V,2141,6141,ff,Cell 12 V ,7bb,208,223,0.001,0,3,V,2141,6141,ff,Cell 13 V ,7bb,224,239,0.001,0,3,V,2141,6141,ff,Cell 14 V ,7bb,240,255,0.001,0,3,V,2141,6141,ff,Cell 15 V ,7bb,256,271,0.001,0,3,V,2141,6141,ff,Cell 16 V ,7bb,272,287,0.001,0,3,V,2141,6141,ff,Cell 17 V ,7bb,288,303,0.001,0,3,V,2141,6141,ff,Cell 18 V ,7bb,304,319,0.001,0,3,V,2141,6141,ff,Cell 19 V ,7bb,320,335,0.001,0,3,V,2141,6141,ff,Cell 20 V ,7bb,336,351,0.001,0,3,V,2141,6141,ff,Cell 21 V ,7bb,352,367,0.001,0,3,V,2141,6141,ff,Cell 22 V ,7bb,368,383,0.001,0,3,V,2141,6141,ff,Cell 23 V ,7bb,384,399,0.001,0,3,V,2141,6141,ff,Cell 24 V ,7bb,400,415,0.001,0,3,V,2141,6141,ff,Cell 25 V ,7bb,416,431,0.001,0,3,V,2141,6141,ff,Cell 26 V ,7bb,432,447,0.001,0,3,V,2141,6141,ff,Cell 27 V ,7bb,448,463,0.001,0,3,V,2141,6141,ff,Cell 28 V ,7bb,464,479,0.001,0,3,V,2141,6141,ff,Cell 29 V ,7bb,480,495,0.001,0,3,V,2141,6141,ff,Cell 30 V ,7bb,496,511,0.001,0,3,V,2141,6141,ff,Cell 31 V ,7bb,512,527,0.001,0,3,V,2141,6141,ff,Cell 32 V ,7bb,528,543,0.001,0,3,V,2141,6141,ff,Cell 33 V ,7bb,544,559,0.001,0,3,V,2141,6141,ff,Cell 34 V ,7bb,560,575,0.001,0,3,V,2141,6141,ff,Cell 35 V ,7bb,576,591,0.001,0,3,V,2141,6141,ff,Cell 36 V ,7bb,592,607,0.001,0,3,V,2141,6141,ff,Cell 37 V ,7bb,608,623,0.001,0,3,V,2141,6141,ff,Cell 38 V ,7bb,624,639,0.001,0,3,V,2141,6141,ff,Cell 39 V ,7bb,640,655,0.001,0,3,V,2141,6141,ff,Cell 40 V ,7bb,656,671,0.001,0,3,V,2141,6141,ff,Cell 41 V ,7bb,672,687,0.001,0,3,V,2141,6141,ff,Cell 42 V ,7bb,688,703,0.001,0,3,V,2141,6141,ff,Cell 43 V ,7bb,704,719,0.001,0,3,V,2141,6141,ff,Cell 44 V ,7bb,720,735,0.001,0,3,V,2141,6141,ff,Cell 45 V ,7bb,736,751,0.001,0,3,V,2141,6141,ff,Cell 46 V ,7bb,752,767,0.001,0,3,V,2141,6141,ff,Cell 47 V ,7bb,768,783,0.001,0,3,V,2141,6141,ff,Cell 48 V ,7bb,784,799,0.001,0,3,V,2141,6141,ff,Cell 49 V ,7bb,800,815,0.001,0,3,V,2141,6141,ff,Cell 50 V ,7bb,816,831,0.001,0,3,V,2141,6141,ff,Cell 51 V ,7bb,832,847,0.001,0,3,V,2141,6141,ff,Cell 52 V ,7bb,848,863,0.001,0,3,V,2141,6141,ff,Cell 53 V ,7bb,864,879,0.001,0,3,V,2141,6141,ff,Cell 54 V ,7bb,880,895,0.001,0,3,V,2141,6141,ff,Cell 55 V ,7bb,896,911,0.001,0,3,V,2141,6141,ff,Cell 56 V ,7bb,912,927,0.001,0,3,V,2141,6141,ff,Cell 57 V ,7bb,928,943,0.001,0,3,V,2141,6141,ff,Cell 58 V ,7bb,944,959,0.001,0,3,V,2141,6141,ff,Cell 59 V ,7bb,960,975,0.001,0,3,V,2141,6141,ff,Cell 60 V ,7bb,976,991,0.001,0,3,V,2141,6141,ff,Cell 61 V ,7bb,992,1007,0.001,0,3,V,2141,6141,ff,Cell 62 V ,7bb,16,31,0.001,0,3,V,2142,6142,ff,Cell 63 V ,7bb,32,47,0.001,0,3,V,2142,6142,ff,Cell 64 Vl ,7bb,48,63,0.001,0,3,V,2142,6142,ff,Cell 65 V ,7bb,64,79,0.001,0,3,V,2142,6142,ff,Cell 66 V ,7bb,80,95,0.001,0,3,V,2142,6142,ff,Cell 67 V ,7bb,96,111,0.001,0,3,V,2142,6142,ff,Cell 68 V ,7bb,112,127,0.001,0,3,V,2142,6142,ff,Cell 69 V ,7bb,128,143,0.001,0,3,V,2142,6142,ff,Cell 70 V ,7bb,144,159,0.001,0,3,V,2142,6142,ff,Cell 71 V ,7bb,160,175,0.001,0,3,V,2142,6142,ff,Cell 72 V ,7bb,176,191,0.001,0,3,V,2142,6142,ff,Cell 73 V ,7bb,192,207,0.001,0,3,V,2142,6142,ff,Cell 74 V ,7bb,208,223,0.001,0,3,V,2142,6142,ff,Cell 75 V ,7bb,224,239,0.001,0,3,V,2142,6142,ff,Cell 76 V ,7bb,240,255,0.001,0,3,V,2142,6142,ff,Cell 77 V ,7bb,256,271,0.001,0,3,V,2142,6142,ff,Cell 78 V ,7bb,272,287,0.001,0,3,V,2142,6142,ff,Cell 79 V ,7bb,288,303,0.001,0,3,V,2142,6142,ff,Cell 80 V ,7bb,304,319,0.001,0,3,V,2142,6142,ff,Cell 81 V ,7bb,320,335,0.001,0,3,V,2142,6142,ff,Cell 82 V ,7bb,336,351,0.001,0,3,V,2142,6142,ff,Cell 83 V ,7bb,352,367,0.001,0,3,V,2142,6142,ff,Cell 84 V ,7bb,368,383,0.001,0,3,V,2142,6142,ff,Cell 85 V ,7bb,384,399,0.001,0,3,V,2142,6142,ff,Cell 86 V ,7bb,400,415,0.001,0,3,V,2142,6142,ff,Cell 87 V ,7bb,416,431,0.001,0,3,V,2142,6142,ff,Cell 88 V ,7bb,432,447,0.001,0,3,V,2142,6142,ff,Cell 89 V ,7bb,448,463,0.001,0,3,V,2142,6142,ff,Cell 90 V ,7bb,464,479,0.001,0,3,V,2142,6142,ff,Cell 91 V ,7bb,480,495,0.001,0,3,V,2142,6142,ff,Cell 92 V ,7bb,496,511,0.001,0,3,V,2142,6142,ff,Cell 93 V ,7bb,512,527,0.001,0,3,V,2142,6142,ff,Cell 94 V ,7bb,528,543,0.001,0,3,V,2142,6142,ff,Cell 95 V ,7bb,544,559,0.001,0,3,V,2142,6142,ff,Cell 96 V ,7bb,96,119,1,0,0,km,2161,6161,ff,Battery mileage in km ,7bb,120,151,1,0,0,kWh,2161,6161,ff,kWh from beginning of Battery life ,7bb,16,47,1,0,0,,2162,6162,ff,21_62_03_Serial_Number (FIN) ,7bb,48,63,1,0,0,,2166,6166,ff,Full Charge counter ,7bb,64,79,1,0,0,,2166,6166,ff,Partial Charge counter ,7bb,56,63,1,0,0,,2180,6180,ff,diagVersion ,7bb,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7bb,128,143,1,0,0,,2180,6180,ff,Soft ,7bb,144,159,1,0,0,,2180,6180,ff,Version ,7bb,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,7bb,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # UBP ,7bc,56,63,1,0,0,,2180,6180,ff,diagVersion ,7bc,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7bc,128,143,1,0,0,,2180,6180,ff,Soft ,7bc,144,159,1,0,0,,2180,6180,ff,Version ,7bc,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,7bc,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,7bc,28,39,1,4094,0,N·m,224B7D,624b7d,ff,Total Hydraulic brake wheels torque request # TCU ,7da,56,63,1,0,0,,2180,6180,ff,diagVersion ,7da,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7da,128,143,1,0,0,,2180,6180,ff,Soft ,7da,144,159,1,0,0,,2180,6180,ff,Version ,7da,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,7da,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # EVC ,7ec,56,63,1,0,0,,2180,6180,ff,diagVersion ,7ec,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7ec,128,143,1,0,0,,2180,6180,ff,Soft ,7ec,144,159,1,0,0,,2180,6180,ff,Version ,7ec,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,7ec,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,7ec,24,39,.02,0,2,%,222002,622002,ff,State Of Charge (SOC) HV battery ,7ec,24,39,.01,0,2,V,222005,622005,ff,Battery voltage 14v ,7ec,24,47,1,0,0,km,222006,622006,ff,Total vehicle distance ,7ec,24,39,.00125,0,2,-,22202E,62202E,ff,Accelerator pedal position ,7ec,24,39,.03125,32768,2,N.m,222247,622247,ff,Minimum effective torque that can be requested to the electrical motor (EM) ,7ec,24,31,.390625,0,1,%,223028,623028,ff,DCDC Load ,7ec,24,39,.5,0,1,V,223203,623203,ff,HV LBC voltage measure ,7ec,24,39,.25,32768,1,A,223204,623204,ff,HV LBC current measure ,7ec,24,31,1,0,0,%,223206,623206,ff,State Of Health (SOH) HV battery ,7ec,24,31,1,1,0,,223318,623318,ff,Motor Water pump speed ,7ec,24,31,1,1,0,,223319,623319,ff,Charger pump speed ,7ec,24,31,1,1,0,,22331A,62331A,ff,Heater water pump speed ,7ec,240,263,1,0,0,km,2233d4,6233d4,ff ,7ec,216,239,1,0,0,km,2233d4,6233d4,ff ,7ec,192,215,1,0,0,km,2233d4,6233d4,ff ,7ec,168,191,1,0,0,km,2233d4,6233d4,ff ,7ec,144,167,1,0,0,km,2233d4,6233d4,ff ,7ec,120,143,1,0,0,km,2233d4,6233d4,ff ,7ec,96,119,1,0,0,km,2233d4,6233d4,ff ,7ec,72,95,1,0,0,km,2233d4,6233d4,ff ,7ec,48,71,1,0,0,km,2233d4,6233d4,ff ,7ec,24,47,1,0,0,km,2233d4,6233d4,ff ,7ec,96,103,1,0,0,,2233d5,6233d5,ff, ,7ec,88,95,1,0,0,,2233d5,6233d5,ff ,7ec,80,87,1,0,0,,2233d5,6233d5,ff ,7ec,72,79,1,0,0,,2233d5,6233d5,ff ,7ec,64,71,1,0,0,,2233d5,6233d5,ff ,7ec,56,63,1,0,0,,2233d5,6233d5,ff ,7ec,48,55,1,0,0,,2233d5,6233d5,ff ,7ec,40,47,1,0,0,,2233d5,6233d5,ff ,7ec,32,39,1,0,0,,2233d5,6233d5,ff ,7ec,24,31,1,0,0,,2233d5,6233d5,ff ,7ec,96,103,1,0,0,,2233d6,6233d6,ff ,7ec,88,95,1,0,0,,2233d6,6233d6,ff ,7ec,80,87,1,0,0,,2233d6,6233d6,ff ,7ec,72,79,1,0,0,,2233d6,6233d6,ff ,7ec,64,71,1,0,0,,2233d6,6233d6,ff ,7ec,56,63,1,0,0,,2233d6,6233d6,ff ,7ec,48,55,1,0,0,,2233d6,6233d6,ff ,7ec,40,47,1,0,0,,2233d6,6233d6,ff ,7ec,32,39,1,0,0,,2233d6,6233d6,ff ,7ec,24,31,1,0,0,,2233d6,6233d6,ff ,7ec,168,183,.2,0,1,%,2233d7,6233d7,ff ,7ec,152,167,.2,0,1,%,2233d7,6233d7,ff ,7ec,136,151,.2,0,1,%,2233d7,6233d7,ff ,7ec,120,135,.2,0,1,%,2233d7,6233d7,ff ,7ec,104,119,.2,0,1,%,2233d7,6233d7,ff ,7ec,88,103,.2,0,1,%,2233d7,6233d7,ff ,7ec,72,87,.2,0,1,%,2233d7,6233d7,ff ,7ec,56,71,.2,0,1,%,2233d7,6233d7,ff ,7ec,40,55,.2,0,1,%,2233d7,6233d7,ff ,7ec,24,39,.2,0,1,%,2233d7,6233d7,ff ,7ec,96,103,1,40,0,°C,2233d8,6233d8,ff ,7ec,88,95,1,40,0,°C,2233d8,6233d8,ff ,7ec,80,87,1,40,0,°C,2233d8,6233d8,ff ,7ec,72,79,1,40,0,°C,2233d8,6233d8,ff ,7ec,64,71,1,40,0,°C,2233d8,6233d8,ff ,7ec,56,63,1,40,0,°C,2233d8,6233d8,ff ,7ec,48,55,1,40,0,°C,2233d8,6233d8,ff ,7ec,40,47,1,40,0,°C,2233d8,6233d8,ff ,7ec,32,39,1,40,0,°C,2233d8,6233d8,ff ,7ec,24,31,1,40,0,°C,2233d8,6233d8,ff ,7ec,168,183,1,0,0,min,2233d9,6233d9,ff ,7ec,152,167,1,0,0,min,2233d9,6233d9,ff ,7ec,136,151,1,0,0,min,2233d9,6233d9,ff ,7ec,120,135,1,0,0,min,2233d9,6233d9,ff ,7ec,104,119,1,0,0,min,2233d9,6233d9,ff ,7ec,88,103,1,0,0,min,2233d9,6233d9,ff ,7ec,72,87,1,0,0,min,2233d9,6233d9,ff ,7ec,56,71,1,0,0,min,2233d9,6233d9,ff ,7ec,40,55,1,0,0,min,2233d9,6233d9,ff ,7ec,24,39,1,0,0,min,2233d9,6233d9,ff #,7ec,24,30,0.01,1,2,kWh,2233db,6233db,ff,Consumed domestic energy #,7ec,24,47,0.001,1,3,kWh,2233dc,6233dc,ff,Consumed energy ,7ec,24,39,1,0,0,km,223451,623451,ff,Estimated kilometric cruising range sent to MMI ,7ec,24,39,.001953125,0,3,kW,223455,623455,ff,Mean eco electrical consumption (if driver has economical driving behavior) ,7ec,24,39,.001953125,0,3,kW,223457,623457,ff,Mean pessimistic electrical consumption (worst possible consumption) ,7ec,24,47,0.001,0,3,kwh,2233dd,6233dd,ff,Trip energy consumed ,7ec,24,55,0.0001,0,2,km,2233de,6233de,ff,Trip distance ,7ec,24,39,1,32767,0,A,223484,623484,ff,Current measurement given by BCS Battery Current Sensor ,7ec,24,39,.001,0,3,V,223485,623485,ff,Voltage measurement given by BCS Battery Current Sensor #,7ec,31,31,1,0,0,,223498,623498,ff,Battery relay PTC n°1 #,7ec,31,31,1,0,0,,22349a,62349a,ff,Battery relay PTC n°2 #,7ec,31,31,1,0,0,,22349c,62349c,ff,Battery relay PTC n°3 ================================================ FILE: app/src/main/assets/ZOE/_FieldsAlt.csv ================================================ # SID (defaults to ID.startBit.[responseId]), ID (hex), startBit, endBit, resolution, offset (aplied BEFORE resolution multiplication), decimals, unit, requestID (hex string), responseID (hex string), options (hex, see MainActivity for definitions), optional name, optional list # 130,44,55,-3,4094,0,Nm,,,ff,DriverBrakeWheelTq_Req # Note that in the next line the resolution is negated from the original definition, to match 130.44 130.44,7bc,28,39,-1,4096,0,Nm,224B7E,624B7E,ff,DriverBrakeWheelTq_Req # 186,40,49,0.125,0,1,%,,,ff,Throttle 186.40,7ec,24,39,0.125,0,1,%,22202E,62202E,ff,Accelerator pedal position # ,1f8,16,27,1,4096,0,Nm,,,ff,TotalPotentialResistiveWheelsTorque # free frame 1f8.16 is in wheel NM, isotp 22247 in 32's motor torque 1f8.16,7ec,24,39,0.29125,32768,0,N.m,222247,622247,ff,Minimum effective torque that can be requested to the electrical motor (EM) # 1f8,28,39,-1,4096,0,Nm,,,ff,ElecBrakeWheelsTorqueApplied 1f8.28,7bc,28,39,-1,4096,0,Nm,,,ff,ElecBrakeWheelsTorqueApplied # # 1f8,40,50,10,0,0,Rpm,,,ff,ElecEngineRPM # 1f8.40,7bc,24,39,10,32768,0,0,223045,623045,ff,ElecEngineRPM # 1fd,0,7,0.390625,0,1,%,,,ff,12V Battery Current? 1fd.0,7ec,24,31,1,0,0,A,223025,623025,ff,14V DCDC current measure # 1fd,48,55,1,80,0,kW,,,ff,Consumption # Possible to use a virtual computer field here? No, so this really needs to be changed in the code # 1fd.48,800,24,55,1,0,0,kW,,,ff,Consumption # 35c,5,7,1,0,0,,,,ff,Vehicle state 35c.5,765,152,159,1,0,0,,210D,610D,ff,Vehicle state # 427,40,47,0.3,0,0,kW,,,e2,Available Charging Power (UCP) 427.40,7ec,24,39,.1,0,1,kW,223470,623470,ff,Available JB2 power for a battery charge # 427,49,57,0.1,0,1,kWh,,,e2,Available Energy 427.49,7ec,24,39,0.005,0,1,kWh,22320C,62320C,ff,Available discharge Energy # 42a,30,39,0.1,400,1,°C,,,ff,Evaporator Temp Measure 42a.30,764,42,51,0.1,400,1,°C,2144,6144,ff,Evaporator Temp Measure # 42a,48,50,1,0,0,,,,e2,ClimLoopMode # 42a.48,764,62,64,1,0,0,-,2144,2144,e2,ClimLoopMode 42a.48,764,21,23,1,0,0,,2167,6167,ff,ILB_HPM_ClimLoopMode,0:Unavailable;1:AC mode;2:AC de-icing mode;3:Not used (100);4:Heat Pump mode;5:Not used (101);6:Demisting mode;7:Idle mode # 42e,0,12,0.02,0,2,%,,,e3,State of Charge 42e.0,7ec,24,39,0.02,0,2,%,222002,622002,e3,State of Charge # 42e,20,24,5,0,0,%,,,e2,Engine Fan Speed # 42e.20,7ec,24,31,5,0,0,%,223471,613471,e2,Engine Fan Speed 42e.20,7ec,24,31,1,0,0,%,22345E,62345E,ff,FAN global request from ETS in PWM including AC, Cooling needs and Relay protection check # 42e,44,50,1,40,0,°C,,,e3,HV Battery Temp 42e.44,7ec,24,31,1,40,0,°C,222001,622001,e3,HV Battery Temp # 430,38,39,1,0,0,,,,e2,HV Battery Cooling State 430.38,764,168,169,1,0,0,,2144,6144,ff,HV Battery Cooling State # 430,40,49,0.1,400,1,°C,,,e2,HV Battery Evaporator Temp 430.40,764,150,159,0.1,400,1,°C,2121,6121,ff,HV Battery Evaporator Temp # 432,36,37,1,0,0,,,,e2,HV Bat Conditionning Mode 432.36,764,133,134,1,0,0,,2144,6144,ff,HV Bat Conditionning Mode # 5d7,0,15,0.01,0,2,km/h,,,ff,Speed 5d7.0,7ec,24,39,0.01,0,2,km/h,222003,622003,ff,Speed # #,62d,0,9,0.1,0,0,kWh/100km,,,ff,Worst Average Consumption 62d.0,7ec,24,39,.001953125,0,3,kW,223457,623457,ff,Mean pessimistic electrical consumption (worst possible consumption) #,62d,10,19,0.1,0,0,kWh/100km,,,ff,Best Average Consumption 62d.10,7ec,24,39,.001953125,0,3,kW,223455,623455,ff,Mean eco electrical consumption (if driver has economical driving behavior) #,654,52,61,0.1,0,1,kWh/100km,,,ff,Average Consumption 654.52,7ec,24,47,0.00000762939453125,0,3,kWh/km,223478,623478,ff,Raw mean consumption per unit of distance # # 638,37,39,1,0,0,,,,ff,Battery 14v To Be Changed Display 638.37,7ec,29,31,1,0,0,,223486,623486,ff,Battery 14v To Be Changed Display # 654,2,2,1,0,0,,,,ff,Charging Plug Connected 654.2,7ec,31,31,1,0,0,,22339D,62339D,ff,Charging Plug detected as present by the Charger.processed,0:No charging plug;1:Charging plug detected # 654,42,51,1,0,0,km,,,ff,Available Distance 654.42,7ec,24,39,1,0,0,km,223451,623451,ff,Estimated kilometric cruising range sent to MMI # 656,48,55,1,40,0,°C,,,e2,External Temp 656.48,763,110,117,1,40,0,°C,2143,6143,ff,External Temp # 658,33,39,1,0,0,%,,,ff,Battery Health 658.33,7bb,72,79,0.5,0,0,%,2161,6161,ff,Battery Health # 673,0,0,1,0,0,,,,ff,Speed pressure misadaptation 673.0,765,66,66,1,0,0,,2174,6174,ff,SpeedPressureMisadaptation # 673,2,4,1,0,0,,,,ff,Rear right wheel state 673.2,765,72,74,1,0,0,,2174,6174,ff,RearRightWheelState # 673,5,7,1,0,0,,,,ff,Rear left wheel state 673.5,765,80,82,1,0,0,,2174,6174,ff,RearLeftWheelState # 673,8,10,1,0,0,,,,ff,Front right wheel state 673.8,765,88,90,1,0,0,,2174,6174,ff,FrontRightWheelState # 673,11,13,1,0,0,,,,ff,Front left wheel state 673.11,765,96,98,1,0,0,,2174,6174,ff,FrontLeftWheelState # 673,16,23,13.725,0,0,mbar,,,ff,Rear right wheel pressure 673.16,765,112,119,13.725,0,0,mbar,2174,6174,ff,RearRightWheelPressure # 673,24,31,13.725,0,0,mbar,2174,6174,ff,Rear left wheel pressure 673.24,765,120,127,13.725,0,0,mbar,2174,6174,ff,RearLeftWheelPressure # 673,32,39,13.725,0,0,mbar,2174,6174,ff,Front right wheel pressure 673.32,765,128,135,13.725,0,0,mbar,2174,6174,ff,FrontRightWheelPressure # 673,40,47,13.725,0,0,mbar,2174,6174,ff,Front left wheel pressure 673.40,765,136,143,13.725,0,0,mbar,2174,6174,ff,FrontLeftWheelPressure # ESC ,760,56,63,1,0,0,,2180,6180,ff,diagVersion ,760,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,760,128,143,1,0,0,,2180,6180,ff,Soft ,760,144,159,1,0,0,,2180,6180,ff,Version ,760,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,760,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # EPS ,762,56,63,1,0,0,,2180,6180,ff,diagVersion ,762,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,762,128,143,1,0,0,,2180,6180,ff,Soft ,762,144,159,1,0,0,,2180,6180,ff,Version ,762,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,762,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # CLUSTER ,763,56,63,1,0,0,,2180,6180,ff,diagVersion ,763,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,763,128,143,1,0,0,,2180,6180,ff,Soft ,763,144,159,1,0,0,,2180,6180,ff,Version ,763,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,763,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # CLIM ,764,26,35,0.1,400,1,°C,2121,6121,ff,IH_InCarTemp ,764,36,43,1,0,0,%,2121,6121,ff,IH_RHumidity ,764,86,87,1,0,0,,2143,6143,ff,IH_EcoModeRequest,0:Unavailable Value;1:Eco mode requested;2:Eco mode not requested;3:Not used ,764,88,92,100,0,0,W,2143,6143,ff,IH_ElectricalPowerDrived ,764,110,117,1,40,0,°C,2143,6143,ff,IH_ExternalTemp ,764,134,142,.1,0,1,bar,2143,6143,ff,IH_ACHighPressureSensor ,764,107,116,10,0,0,rpm,2144,6144,ff,IH_ClimCompRPMStatus ,764,29,36,1,0,0,,2145,6145,ff,OH_ClimTempDisplay ,764,21,23,1,0,0,,2167,6167,ff,ILB_HPM_ClimLoopMode,0:Unavailable;1:AC mode;2:AC de-icing mode;3:Not used (100);4:Heat Pump mode;5:Not used (101);6:Demisting mode;7:Idle mode ,764,40,41,1,0,0,,2167,6167,ff,IH_ExternalTemp ,764,56,63,1,0,0,,2180,6180,ff,diagVersion ,764,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,764,128,143,1,0,0,,2180,6180,ff,Soft ,764,144,159,1,0,0,,2180,6180,ff,Version ,764,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,764,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # BCM ,765,56,63,1,0,0,,2180,6180,ff,diagVersion ,765,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,765,128,143,1,0,0,,2180,6180,ff,Soft ,765,144,159,1,0,0,,2180,6180,ff,Version ,765,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,765,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,765,16,16,1,0,0,,2171,6171,ff,PRESENCE_SSPP,0:without;1:with ,765,24,47,1,0,0,,2171,6171,ff,TPMS ,765,48,71,1,0,0,,2171,6171,ff,TPMS ,765,72,95,1,0,0,,2171,6171,ff,TPMS ,765,96,119,1,0,0,,2171,6171,ff,TPMS # USM ,76d,56,63,1,0,0,,2180,6180,ff,diagVersion ,76d,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,76d,128,143,1,0,0,,2180,6180,ff,Soft ,76d,144,159,1,0,0,,2180,6180,ff,Version ,76d,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,76d,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,76d,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # UPA ,76e,56,63,1,0,0,,2180,6180,ff,diagVersion ,76e,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,76e,128,143,1,0,0,,2180,6180,ff,Soft ,76e,144,159,1,0,0,,2180,6180,ff,Version ,76e,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,76e,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # AIBAG ,772,56,63,1,0,0,,2180,6180,ff,diagVersion ,772,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,772,128,143,1,0,0,,2180,6180,ff,Soft ,772,144,159,1,0,0,,2180,6180,ff,Version ,772,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,772,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # PEB ,77e,56,63,1,0,0,,2180,6180,ff,diagVersion ,77e,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,77e,128,143,1,0,0,,2180,6180,ff,Soft ,77e,144,159,1,0,0,,2180,6180,ff,Version ,77e,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,77e,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,77e,24,39,0.015625,0,2,ºC,223018,623018,ff,DCDC converter temperature ,77e,24,31,0.015625,0,2,°C,22302b,62302b,ff,inverter temperature ,77e,24,39,0.03125,0,0,Nm,223025,623025,1ff,PEBTorque # BCB ,793,0,0,1,0,0,,1081,5081,ff,start diag ,793,0,0,1,0,0,,10c0,50c0,ff,start diag ,793,0,0,1,0,0,,3e01,7e01,ff,Tester present ,793,56,63,1,0,0,,2180,6180,ff,diagVersion ,793,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,793,128,143,1,0,0,,2180,6180,ff,Soft ,793,144,159,1,0,0,,2180,6180,ff,Version ,793,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,793,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,793,24,39,0.0625,32768,2,mA,225057,625057,ff,DataRead.Raw leakage current - DC part measurement ,793,24,39,0.0625,32768,2,mA,225058,625058,ff,DataRead.Raw leakage current - High Frequency 10kHz part measurement ,793,24,39,0.0625,32768,2,mA,225059,625059,ff,DataRead.Raw leakage current - High Frequency 1st part measurement ,793,24,39,0.0625,32768,2,mA,22505a,62505a,ff,DataRead.Raw leakage current - Low Frequency part measurement (50Hz) ,793,24,39,.0625,3200,2,A,222001,622001,ff,Mains phase 1 current RMS value ,793,24,31,.5,0,1,%,225026,625026,ff,($5026) J1772 control pilot raw duty cycle ,793,24,39,.0625,3200,2,A,22503A,62503A,ff,Mains phase 2 current RMS ,793,24,39,.0625,3200,2,A,22503B,62503B,ff,Mains phase 3 current RMS ,793,29,31,1,0,0,,225017,625017,ff,Mains current type,0:Nok;1:AC mono;2:AC tri;3:DC;4:AC bi ,793,24,39,.5,32000,1,V,22502C,62502C,ff,Raw AC mains phase 1 measured voltage ,793,24,39,.5,32000,1,V,22502D,62502D,ff,Raw AC mains phase 2 measured voltage ,793,24,39,.5,32000,1,V,22502E,62502E,ff,Raw AC mains phase 3 measured voltage ,793,24,39,.5,0,1,V,22503f,62503f,ff,Mains phase 1-2 voltage RMS value ,793,24,39,.5,0,1,V,225041,625041,ff,Mains phase 2-3 voltage RMS value ,793,24,39,.5,0,1,V,225042,625042,ff,Mains phase 3-1 voltage RMS value ,793,24,39,1,20000,0,W,22504A,62504A,ff,Mains active power consumed ,793,24,39,1,0,0,Ohm,225062,625062,ff,Mains ground resistance ,793,24,31,1,0,0,,225063,625063,ff,Supervisor state,0:Init;1:Wait;2:ClosingS2;3:InitType;4:InitLkg;5:InitChg;6:Charge;7:ZeroAmpMode;8:EndOfChg;9:OpeningS2;10:ReadyToSleep;11:EmergencyStop;12:InitChargeDF;13:OCPStop;14:WaitS2 ,793,24,31,1,0,0,,225064,625064,ff,Leakage current diagnostic stored completion status,0:init;1:HF10;3:Mains Ground Default;5:Earth Current default;9:Ground Default;17:Means Leakage DC;33:Means Leakage LF;49:Means Leakage DC+LF;65:Means Leakage HF;81:Means Leakage DC+HF;97:Means Leakage LF+HF;113:Means Leakage DC+LF+HF # LBC2 ,7b6,56,63,1,0,0,,2180,6180,ff,diagVersion ,7b6,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7b6,128,143,1,0,0,,2180,6180,ff,Soft ,7b6,144,159,1,0,0,,2180,6180,ff,Version ,7b6,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,7b6,16,23,1,0,0,,19023b,59020f,ff,Query DTC # LBC ,7bb,336,351,0.01,0,2,kW,2101,6101,ff,Maximum battery input power ,7bb,192,207,0.01,0,2,%,2103,6103,ff,Real State of Charge ,7bb,32,39,1,40,0,°C,2104,6104,ff,Cell 1 Temperature ,7bb,56,63,1,40,0,°C,2104,6104,ff,Cell 2 Temperature ,7bb,80,87,1,40,0,°C,2104,6104,ff,Cell 3 Temperature ,7bb,104,111,1,40,0,°C,2104,6104,ff,Cell 4 Temperature ,7bb,128,135,1,40,0,°C,2104,6104,ff,Cell 5 Temperature ,7bb,152,159,1,40,0,°C,2104,6104,ff,Cell 6 Temperature ,7bb,176,183,1,40,0,°C,2104,6104,ff,Cell 7 Temperature ,7bb,200,207,1,40,0,°C,2104,6104,ff,Cell 8 Temperature ,7bb,224,231,1,40,0,°C,2104,6104,ff,Cell 9 Temperature ,7bb,248,255,1,40,0,°C,2104,6104,ff,Cell 10 Temperature ,7bb,272,279,1,40,0,°C,2104,6104,ff,Cell 11 Temperature ,7bb,296,303,1,40,0,°C,2104,6104,ff,Cell 12 Temperature ,7bb,600,607,1,40,0,degC,2104,6104,ff,21_04_#76_Average_Battery_Temperature ,7bb,16,23,1,0,0,,2107,6107,ff,Cell 1 Balancing switch ,7bb,24,31,1,0,0,,2107,6107,ff,Cell 2 Balancing switch ,7bb,32,39,1,0,0,,2107,6107,ff,Cell 3 Balancing switch ,7bb,40,47,1,0,0,,2107,6107,ff,Cell 4 Balancing switch ,7bb,48,55,1,0,0,,2107,6107,ff,Cell 5 Balancing switch ,7bb,56,63,1,0,0,,2107,6107,ff,Cell 6 Balancing switch ,7bb,64,71,1,0,0,,2107,6107,ff,Cell 7 Balancing switch ,7bb,72,79,1,0,0,,2107,6107,ff,Cell 8 Balancing switch ,7bb,80,87,1,0,0,,2107,6107,ff,Cell 9 Balancing switch ,7bb,88,95,1,0,0,,2107,6107,ff,Cell 10 Balancing switch ,7bb,96,102,1,0,0,,2107,6107,ff,Cell 11 Balancing switch ,7bb,104,111,1,0,0,,2107,6107,ff,Cell 12 Balancing switch ,7bb,32,39,1,0,0,°C,2104,6104,105,Cell 1 Balancing switch ,7bb,56,63,1,0,0,°C,2104,6104,105,Cell 2 Balancing switch ,7bb,80,87,1,0,0,°C,2104,6104,105,Cell 3 Balancing switch ,7bb,104,111,1,0,0,°C,2104,6104,105,Cell 4 Balancing switch ,7bb,16,31,0.001,0,3,V,2141,6141,ff,Cell 01 V ,7bb,32,47,0.001,0,3,V,2141,6141,ff,Cell 02 V ,7bb,48,63,0.001,0,3,V,2141,6141,ff,Cell 03 V ,7bb,64,79,0.001,0,3,V,2141,6141,ff,Cell 04 V ,7bb,80,95,0.001,0,3,V,2141,6141,ff,Cell 05 V ,7bb,96,111,0.001,0,3,V,2141,6141,ff,Cell 06 V ,7bb,112,127,0.001,0,3,V,2141,6141,ff,Cell 07 V ,7bb,128,143,0.001,0,3,V,2141,6141,ff,Cell 08 V ,7bb,144,159,0.001,0,3,V,2141,6141,ff,Cell 09 V ,7bb,160,175,0.001,0,3,V,2141,6141,ff,Cell 10 V ,7bb,176,191,0.001,0,3,V,2141,6141,ff,Cell 11 V ,7bb,192,207,0.001,0,3,V,2141,6141,ff,Cell 12 V ,7bb,208,223,0.001,0,3,V,2141,6141,ff,Cell 13 V ,7bb,224,239,0.001,0,3,V,2141,6141,ff,Cell 14 V ,7bb,240,255,0.001,0,3,V,2141,6141,ff,Cell 15 V ,7bb,256,271,0.001,0,3,V,2141,6141,ff,Cell 16 V ,7bb,272,287,0.001,0,3,V,2141,6141,ff,Cell 17 V ,7bb,288,303,0.001,0,3,V,2141,6141,ff,Cell 18 V ,7bb,304,319,0.001,0,3,V,2141,6141,ff,Cell 19 V ,7bb,320,335,0.001,0,3,V,2141,6141,ff,Cell 20 V ,7bb,336,351,0.001,0,3,V,2141,6141,ff,Cell 21 V ,7bb,352,367,0.001,0,3,V,2141,6141,ff,Cell 22 V ,7bb,368,383,0.001,0,3,V,2141,6141,ff,Cell 23 V ,7bb,384,399,0.001,0,3,V,2141,6141,ff,Cell 24 V ,7bb,400,415,0.001,0,3,V,2141,6141,ff,Cell 25 V ,7bb,416,431,0.001,0,3,V,2141,6141,ff,Cell 26 V ,7bb,432,447,0.001,0,3,V,2141,6141,ff,Cell 27 V ,7bb,448,463,0.001,0,3,V,2141,6141,ff,Cell 28 V ,7bb,464,479,0.001,0,3,V,2141,6141,ff,Cell 29 V ,7bb,480,495,0.001,0,3,V,2141,6141,ff,Cell 30 V ,7bb,496,511,0.001,0,3,V,2141,6141,ff,Cell 31 V ,7bb,512,527,0.001,0,3,V,2141,6141,ff,Cell 32 V ,7bb,528,543,0.001,0,3,V,2141,6141,ff,Cell 33 V ,7bb,544,559,0.001,0,3,V,2141,6141,ff,Cell 34 V ,7bb,560,575,0.001,0,3,V,2141,6141,ff,Cell 35 V ,7bb,576,591,0.001,0,3,V,2141,6141,ff,Cell 36 V ,7bb,592,607,0.001,0,3,V,2141,6141,ff,Cell 37 V ,7bb,608,623,0.001,0,3,V,2141,6141,ff,Cell 38 V ,7bb,624,639,0.001,0,3,V,2141,6141,ff,Cell 39 V ,7bb,640,655,0.001,0,3,V,2141,6141,ff,Cell 40 V ,7bb,656,671,0.001,0,3,V,2141,6141,ff,Cell 41 V ,7bb,672,687,0.001,0,3,V,2141,6141,ff,Cell 42 V ,7bb,688,703,0.001,0,3,V,2141,6141,ff,Cell 43 V ,7bb,704,719,0.001,0,3,V,2141,6141,ff,Cell 44 V ,7bb,720,735,0.001,0,3,V,2141,6141,ff,Cell 45 V ,7bb,736,751,0.001,0,3,V,2141,6141,ff,Cell 46 V ,7bb,752,767,0.001,0,3,V,2141,6141,ff,Cell 47 V ,7bb,768,783,0.001,0,3,V,2141,6141,ff,Cell 48 V ,7bb,784,799,0.001,0,3,V,2141,6141,ff,Cell 49 V ,7bb,800,815,0.001,0,3,V,2141,6141,ff,Cell 50 V ,7bb,816,831,0.001,0,3,V,2141,6141,ff,Cell 51 V ,7bb,832,847,0.001,0,3,V,2141,6141,ff,Cell 52 V ,7bb,848,863,0.001,0,3,V,2141,6141,ff,Cell 53 V ,7bb,864,879,0.001,0,3,V,2141,6141,ff,Cell 54 V ,7bb,880,895,0.001,0,3,V,2141,6141,ff,Cell 55 V ,7bb,896,911,0.001,0,3,V,2141,6141,ff,Cell 56 V ,7bb,912,927,0.001,0,3,V,2141,6141,ff,Cell 57 V ,7bb,928,943,0.001,0,3,V,2141,6141,ff,Cell 58 V ,7bb,944,959,0.001,0,3,V,2141,6141,ff,Cell 59 V ,7bb,960,975,0.001,0,3,V,2141,6141,ff,Cell 60 V ,7bb,976,991,0.001,0,3,V,2141,6141,ff,Cell 61 V ,7bb,992,1007,0.001,0,3,V,2141,6141,ff,Cell 62 V ,7bb,16,31,0.001,0,3,V,2142,6142,ff,Cell 63 V ,7bb,32,47,0.001,0,3,V,2142,6142,ff,Cell 64 Vl ,7bb,48,63,0.001,0,3,V,2142,6142,ff,Cell 65 V ,7bb,64,79,0.001,0,3,V,2142,6142,ff,Cell 66 V ,7bb,80,95,0.001,0,3,V,2142,6142,ff,Cell 67 V ,7bb,96,111,0.001,0,3,V,2142,6142,ff,Cell 68 V ,7bb,112,127,0.001,0,3,V,2142,6142,ff,Cell 69 V ,7bb,128,143,0.001,0,3,V,2142,6142,ff,Cell 70 V ,7bb,144,159,0.001,0,3,V,2142,6142,ff,Cell 71 V ,7bb,160,175,0.001,0,3,V,2142,6142,ff,Cell 72 V ,7bb,176,191,0.001,0,3,V,2142,6142,ff,Cell 73 V ,7bb,192,207,0.001,0,3,V,2142,6142,ff,Cell 74 V ,7bb,208,223,0.001,0,3,V,2142,6142,ff,Cell 75 V ,7bb,224,239,0.001,0,3,V,2142,6142,ff,Cell 76 V ,7bb,240,255,0.001,0,3,V,2142,6142,ff,Cell 77 V ,7bb,256,271,0.001,0,3,V,2142,6142,ff,Cell 78 V ,7bb,272,287,0.001,0,3,V,2142,6142,ff,Cell 79 V ,7bb,288,303,0.001,0,3,V,2142,6142,ff,Cell 80 V ,7bb,304,319,0.001,0,3,V,2142,6142,ff,Cell 81 V ,7bb,320,335,0.001,0,3,V,2142,6142,ff,Cell 82 V ,7bb,336,351,0.001,0,3,V,2142,6142,ff,Cell 83 V ,7bb,352,367,0.001,0,3,V,2142,6142,ff,Cell 84 V ,7bb,368,383,0.001,0,3,V,2142,6142,ff,Cell 85 V ,7bb,384,399,0.001,0,3,V,2142,6142,ff,Cell 86 V ,7bb,400,415,0.001,0,3,V,2142,6142,ff,Cell 87 V ,7bb,416,431,0.001,0,3,V,2142,6142,ff,Cell 88 V ,7bb,432,447,0.001,0,3,V,2142,6142,ff,Cell 89 V ,7bb,448,463,0.001,0,3,V,2142,6142,ff,Cell 90 V ,7bb,464,479,0.001,0,3,V,2142,6142,ff,Cell 91 V ,7bb,480,495,0.001,0,3,V,2142,6142,ff,Cell 92 V ,7bb,496,511,0.001,0,3,V,2142,6142,ff,Cell 93 V ,7bb,512,527,0.001,0,3,V,2142,6142,ff,Cell 94 V ,7bb,528,543,0.001,0,3,V,2142,6142,ff,Cell 95 V ,7bb,544,559,0.001,0,3,V,2142,6142,ff,Cell 96 V ,7bb,96,119,1,0,0,km,2161,6161,ff,Battery mileage in km ,7bb,120,151,1,0,0,kWh,2161,6161,ff,kWh from beginning of Battery life ,7bb,16,47,1,0,0,,2162,6162,ff,21_62_03_Serial_Number (FIN) ,7bb,48,63,1,0,0,,2166,6166,ff,Full Charge counter ,7bb,64,79,1,0,0,,2166,6166,ff,Partial Charge counter ,7bb,56,63,1,0,0,,2180,6180,ff,diagVersion ,7bb,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7bb,128,143,1,0,0,,2180,6180,ff,Soft ,7bb,144,159,1,0,0,,2180,6180,ff,Version ,7bb,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,7bb,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # UBP ,7bc,56,63,1,0,0,,2180,6180,ff,diagVersion ,7bc,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7bc,128,143,1,0,0,,2180,6180,ff,Soft ,7bc,144,159,1,0,0,,2180,6180,ff,Version ,7bc,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,7bc,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,7bc,28,39,1,4094,0,N·m,224B7D,624B7D,ff,Total Hydraulic brake wheels torque request # TCU ,7da,56,63,1,0,0,,2180,6180,ff,diagVersion ,7da,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7da,128,143,1,0,0,,2180,6180,ff,Soft ,7da,144,159,1,0,0,,2180,6180,ff,Version ,7da,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,7da,16,23,1,0,0,,19023b,5902ff,ff,Query DTC # EVC ,7ec,56,63,1,0,0,,2180,6180,ff,diagVersion ,7ec,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,7ec,128,143,1,0,0,,2180,6180,ff,Soft ,7ec,144,159,1,0,0,,2180,6180,ff,Version ,7ec,0,7,1,0,0,,14ffffff,54ffffff,ff,Reset DTC ,7ec,16,23,1,0,0,,19023b,5902ff,ff,Query DTC ,7ec,24,39,.02,0,2,%,222002,622002,ff,State Of Charge (SOC) HV battery ,7ec,24,39,.01,0,2,V,222005,622005,ff,Battery voltage 14v ,7ec,24,47,1,0,0,km,222006,622006,ff,Total vehicle distance ,7ec,24,39,.00125,0,0,-,22202E,62202E,ff,Accelerator pedal position ,7ec,24,39,.03125,32768,2,N.m,222243,622243,1ff,Final effective torque request to the electric motor (EM) ,7ec,24,39,.03125,32768,2,N.m,222245,622245,ff,Limited electrical motor (EM) effective torque setpoint ,7ec,24,39,.03125,32768,2,N.m,222246,622246,ff,Electrical motor (EM) maximum effective torque available ,7ec,24,39,.03125,32768,2,N.m,222247,622247,ff,Minimum effective torque that can be requested to the electrical motor (EM) ,7ec,24,31,.390625,0,1,%,223028,623028,ff,DCDC Load ,7ec,24,39,.5,0,1,V,223203,623203,ff,HV LBC voltage measure ,7ec,24,39,.25,32768,1,A,223204,623204,ff,HV LBC current measure ,7ec,24,31,1,0,0,%,223206,623206,ff,State Of Health (SOH) HV battery ,7ec,24,31,1,1,0,,223318,623318,ff,Motor Water pump speed ,7ec,24,31,1,1,0,,223319,623319,ff,Charger pump speed ,7ec,24,31,1,1,0,,22331A,62331A,ff,Heater water pump speed #,7ec,24,47,0.001,1,0,kWh,2233dc,6233dc,ff,Consumed domestic energy ,7ec,240,263,1,0,0,km,2233d4,6233d4,ff,odometer history 1 ,7ec,216,239,1,0,0,km,2233d4,6233d4,ff,odometer history 2 ,7ec,192,215,1,0,0,km,2233d4,6233d4,ff,odometer history 3 ,7ec,168,191,1,0,0,km,2233d4,6233d4,ff,odometer history 4 ,7ec,144,167,1,0,0,km,2233d4,6233d4,ff,odometer history 5 ,7ec,120,143,1,0,0,km,2233d4,6233d4,ff,odometer history 6 ,7ec,96,119,1,0,0,km,2233d4,6233d4,ff,odometer history 7 ,7ec,72,95,1,0,0,km,2233d4,6233d4,ff,odometer history 8 ,7ec,48,71,1,0,0,km,2233d4,6233d4,ff,odometer history 9 ,7ec,24,47,1,0,0,km,2233d4,6233d4,ff,odometer history 10 ,7ec,96,103,1,0,0,,2233d5,6233d5,ff,end 1,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 ,7ec,88,95,1,0,0,,2233d5,6233d5,ff,end 2,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 ,7ec,80,87,1,0,0,,2233d5,6233d5,ff,end 3,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 ,7ec,72,79,1,0,0,,2233d5,6233d5,ff,end 4,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 ,7ec,64,71,1,0,0,,2233d5,6233d5,ff,end 5,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 ,7ec,56,63,1,0,0,,2233d5,6233d5,ff,end 6,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 ,7ec,48,55,1,0,0,,2233d5,6233d5,ff,end 7,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 ,7ec,40,47,1,0,0,,2233d5,6233d5,ff,end 8,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 ,7ec,32,39,1,0,0,,2233d5,6233d5,ff,end 9,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 ,7ec,24,31,1,0,0,,2233d5,6233d5,ff,end 10,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 ,7ec,96,103,1,0,0,,2233d6,6233d6,ff,type 1,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched ,7ec,88,95,1,0,0,,2233d6,6233d6,ff,type 2,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched ,7ec,80,87,1,0,0,,2233d6,6233d6,ff,type 3,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched ,7ec,72,79,1,0,0,,2233d6,6233d6,ff,type 4,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched ,7ec,64,71,1,0,0,,2233d6,6233d6,ff,type 5,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched ,7ec,56,63,1,0,0,,2233d6,6233d6,ff,type 6,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched ,7ec,48,55,1,0,0,,2233d6,6233d6,ff,type 7,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched ,7ec,40,47,1,0,0,,2233d6,6233d6,ff,type 8,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched ,7ec,32,39,1,0,0,,2233d6,6233d6,ff,type 9,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched ,7ec,24,31,1,0,0,,2233d6,6233d6,ff,type 10,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched ,7ec,168,183,.2,0,1,%,2233d7,6233d7,ff,soc 1 ,7ec,152,167,.2,0,1,%,2233d7,6233d7,ff,soc 2 ,7ec,136,151,.2,0,1,%,2233d7,6233d7,ff,soc 3 ,7ec,120,135,.2,0,1,%,2233d7,6233d7,ff,soc 4 ,7ec,104,119,.2,0,1,%,2233d7,6233d7,ff,soc 5 ,7ec,88,103,.2,0,1,%,2233d7,6233d7,ff,soc 6 ,7ec,72,87,.2,0,1,%,2233d7,6233d7,ff,soc 7 ,7ec,56,71,.2,0,1,%,2233d7,6233d7,ff,soc 8 ,7ec,40,55,.2,0,1,%,2233d7,6233d7,ff,soc 9 ,7ec,24,39,.2,0,1,%,2233d7,6233d7,ff,soc 20 ,7ec,96,103,1,40,0,°C,2233d8,6233d8,ff,temp 1 ,7ec,88,95,1,40,0,°C,2233d8,6233d8,ff,temp 2 ,7ec,80,87,1,40,0,°C,2233d8,6233d8,ff,temp 3 ,7ec,72,79,1,40,0,°C,2233d8,6233d8,ff,temp 4 ,7ec,64,71,1,40,0,°C,2233d8,6233d8,ff,temp 5 ,7ec,56,63,1,40,0,°C,2233d8,6233d8,ff,temp 6 ,7ec,48,55,1,40,0,°C,2233d8,6233d8,ff,temp 7 ,7ec,40,47,1,40,0,°C,2233d8,6233d8,ff,temp 8 ,7ec,32,39,1,40,0,°C,2233d8,6233d8,ff,temp 9 ,7ec,24,31,1,40,0,°C,2233d8,6233d8,ff,temp 10 ,7ec,168,183,1,0,0,min,2233d9,6233d9,ff,duration 1 ,7ec,152,167,1,0,0,min,2233d9,6233d9,ff,duration 2 ,7ec,136,151,1,0,0,min,2233d9,6233d9,ff,duration 3 ,7ec,120,135,1,0,0,min,2233d9,6233d9,ff,duration 4 ,7ec,104,119,1,0,0,min,2233d9,6233d9,ff,duration 5 ,7ec,88,103,1,0,0,min,2233d9,6233d9,ff,duration 6 ,7ec,72,87,1,0,0,min,2233d9,6233d9,ff,duration 7 ,7ec,56,71,1,0,0,min,2233d9,6233d9,ff,duration 8 ,7ec,40,55,1,0,0,min,2233d9,6233d9,ff,duration 9 ,7ec,24,39,1,0,0,min,2233d9,6233d9,ff,duration 10 ,7ec,24,55,0.0001,0,2,km,2233de,6233de,ff,Trip distance ,7ec,24,39,1,0,0,km,223451,623451,ff,Estimated kilometric cruising range sent to MMI ,7ec,24,39,.001953125,0,3,kW,223455,623455,ff,Mean eco electrical consumption (if driver has economical driving behavior) ,7ec,24,39,.001953125,0,3,kW,223457,623457,ff,Mean pessimistic electrical consumption (worst possible consumption) ,7ec,24,47,0.001,0,0,kwh,2233dd,6233dd,ff,Trip energy consumed ,7ec,24,55,0.0001,0,0,km,2233de,6233de,ff,Trip distance ,7ec,24,39,1,32767,0,A,223484,623484,ff,Current measurement given by BCS Battery Current Sensor ,7ec,24,39,.001,0,0,V,223485,623485,ff,Voltage measurement given by BCS Battery Current Sensor ================================================ FILE: app/src/main/assets/ZOE/_Frames.csv ================================================ #Frame ID,interval ZOE, interval FLUKAN, Sending ECU 023,4,4,AIBAG 0C6,10,10,EPS 12E,10,10,ESC 130,10,10,UBP 17A,10,10,EVC 17E,10,10,EVC 186,10,10,EVC 18A,10,10,EVC 1F6,10,10,EVC 1F8,10,10,EVC 1FD,100,100,EVC 212,20,20,USM 242,20,20,ESC 29A,20,20,ESC 29C,20,20,ESC 2B7,20,20,ESC 352,40,200,ESC 354,40,40,ESC 35C,100,100,BCM 391,50,50,CLIM 3B7,100,100,CLUSTER 3F7,60,60,EVC 427,100,100,EVC 42A,100,100,CLIM 42E,100,100,EVC 430,100,100,CLIM 432,100,100,EVC 433,1000,1000,CLUSTER 4F8,100,100,CLUSTER 500,100,100,BCM 505,100,100,BCM 511,100,100,EVC 534,100,100,BCM 552,100,100,BCM 563,100,100,EPS #5D1,60000,60000,CLUSTER # this frame is AFAIK only sent at bootup 5D7,100,100,ESC 5DA,100,100,EVC 5DE,100,100,BCM 5E9,100,100,UPA 5EE,100,100,BCM 62C,100,100,EPS 62D,500,500,EVC 634,100,100,TCU 637,500,500,EVC 638,100,100,EVC 646,500,500,CLUSTER 650,100,300,EVC 653,100,100,AIRBAG 654,500,500,EVC 656,100,100,CLUSTER 657,100,100,BCM 658,3000,3000,EVC 65B,100,100,EVC 665,3000,3000,CLUSTER 666,100,200,ESC 668,100,100,CLIMA 66A,100,100,EVC 66D,100,100,UBP 671,9999,100, 673,100,100,BCM 68B,100,100,CLUSTER 68C,1000,1000,CLUSTER 699,1000,1000,CLIMA 69F,1000,1000,BCM 6F8,100,100,USM 6FB,3000,3000,CLUSTER 702,100,100, # LINSCH 722,100,100,LINSCH 740,100,100, # ESC 742,100,100, # EPS 743,100,100, # CLUSTER 744,100,100, # CLIM 745,100,100, # BCM 74D,100,100, # USM 74E,100,100, # UPA 752,100,100, # AIBAG 75A,100,100, # PEB 760,100,100,ESC 762,100,100,EPS 763,100,100,CLUSTER 764,100,100,CLIM 765,100,100,BCM 76D,100,100,USM 76E,100,100,UPA 772,100,100,AIBAG 77E,100,100,PEB 792,100,100, # BCB 793,100,100,BCB 796,100,100, # LBC2 79B,100,100, # LBC 79C,100,100, # UBP 7B6,100,100,LBC2 7BB,100,100,LBC 7BC,100,100,UBP 7CA,100,100, # TCU 7DA,100,100,TCU 7DF,100,100, # Broadcast 7E4,100,100, # EVC 7EC,100,100,EVC 800,100,100,VFC ================================================ FILE: app/src/main/assets/ZOE/_FramesAlt.csv ================================================ #Frame ID,interval ZOE, interval FLUKAN, Sending ECU #023,4,4,AIBAG #0C6,10,10,EPS #12E,10,10,ESC #130,10,10,UBP #17A,10,10,EVC #17E,10,10,EVC 186,10,10,EVC 18A,10,10,EVC #1F6,10,10,EVC 1F8,10,10,EVC #1FD,100,100,EVC #212,20,20,USM #242,20,20,ESC #29A,20,20,ESC #29C,20,20,ESC #2B7,20,20,ESC #352,40,200,ESC #354,40,40,ESC #35C,100,100,BCM #391,50,50,CLIM #3B7,100,100,CLUSTER #3F7,60,60,EVC #427,100,100,EVC #42A,100,100,CLIM #42E,100,100,EVC #430,100,100,CLIM #432,100,100,EVC #433,1000,1000,CLUSTER #4F8,100,100,CLUSTER #500,100,100,BCM #505,100,100,BCM #511,100,100,EVC #534,100,100,BCM #552,100,100,BCM #563,100,100,EPS #5D1,60000,60000,CLUSTER # this frame is AFAIK only sent at bootup #5D7,100,100,ESC #5DA,100,100,EVC #5DE,100,100,BCM #5E9,100,100,UPA #5EE,100,100,BCM #62C,100,100,EPS #62D,500,500,EVC #634,100,100,TCU #637,500,500,EVC #638,100,100,EVC #646,500,500,CLUSTER #650,100,300,EVC #653,100,100,AIRBAG #654,500,500,EVC #656,100,100,CLUSTER #657,100,100,BCM #658,3000,3000,EVC 65B,100,100,EVC #665,3000,3000,CLUSTER #666,100,200,ESC #668,100,100,CLIMA #66A,100,100,EVC #66D,100,100,UBP #671,9999,100, #673,100,100,BCM #68B,100,100,CLUSTER #68C,1000,1000,CLUSTER 699,1000,1000,CLIMA #69F,1000,1000,BCM #6F8,100,100,USM #6FB,3000,3000,CLUSTER 702,100,100, # LINSCH 722,100,100,LINSCH 740,100,100, # ESC 742,100,100, # EPS 743,100,100, # CLUSTER 744,100,100, # CLIM 745,100,100, # BCM 74D,100,100, # USM 74E,100,100, # UPA 752,100,100, # AIBAG 75A,100,100, # PEB 760,100,100,ESC 762,100,100,EPS 763,100,100,CLUSTER 764,100,100,CLIM 765,100,100,BCM 76D,100,100,USM 76E,100,100,UPA 772,100,100,AIBAG 77E,100,100,PEB 792,100,100, # BCB 793,100,100,BCB 796,100,100, # LBC2 79B,100,100, # LBC 79C,100,100, # UBP 7B6,100,100,LBC2 7BB,100,100,LBC 7BC,100,100,UBP 7CA,100,100, # TCU 7DA,100,100,TCU 7DF,100,100, # Broadcast 7E4,100,100, # EVC 7EC,100,100,EVC 800,100,100,VFC ================================================ FILE: app/src/main/assets/ZOE/_Tests.csv ================================================ 104,event information # ================================================ FILE: app/src/main/assets/ZOE_Ph2/AAU_Dtcs.csv ================================================ 930B,Rear right loudspeaker 930D,Front right loudspeaker 930F,Front left loudspeaker 9311,Rear left loudspeaker 9320,Rear right tweeter 9321,Front right tweeter 9322,Front left tweeter 9323,Rear left tweeter 9370,Bass Box 9317,Subwoofers 9306,Surrounds (Twidlers) 9318,Centerfill Speaker 93EB,External ANC Microphone Supply 1 93EC,External ANC Microphone Supply 2 93ED,External ANC Microphone Supply 3 9342,ECU 9345,Temperature 9341,Virgin Or incomplete configuration E14F,BCM communication E140,ECM communication E16B,FRCAMERA communication E143,HEVC communication E165,SONAR communication E154,A-IVI communication E14E,METER communication E16D,TCU communication E15B,USM communication E148,VDC communication ================================================ FILE: app/src/main/assets/ZOE_Ph2/AAU_Fields.csv ================================================ ,7A2,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,7A2,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Reprog ,7A2,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,7A2,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7A2,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,7A2,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTCFormat;1:ISO_14229-1_DTCFormat;2:SAE_J1939-73_DTCFormat;3:ISO_11992-4_DTCFormat;4:SAE_J2012-DA_WWHOBD_DTCFormat ,7A2,32,47,1,0,0,,1901FF,5901FF,4ff,DTCCount ,7A2,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,7A2,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,7A2,40,43,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,7A2,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested ,7A2,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle ,7A2,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7A2,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7A2,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7A2,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC ,7A2,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle ,7A2,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,7A2,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,7A2,40,47,1,0,0,,190400000001,590400000001,ff,StatusOfDTC ,7A2,80,103,1,0,0,km,190400000001,590400000001,ff,Mileage ,7A2,120,127,1,0,0,,190400000001,590400000001,ff,DTC Occurrence Counter ,7A2,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,7A2,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,7A2,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,7A2,31,31,1,0,0,,220101,620101,ff,LIN_IN.SystemON,0:System_ON OFF;1:System_ON ON ,7A2,24,31,.2,0,1,V,220200,620200,ff,Battery level ,7A2,24,31,1,0,0,,222006,622006,ff,ESE/ANC parameters.ANC activation,0:Not activated;1:Activated ,7A2,32,39,1,0,0,,222006,622006,ff,ESE/ANC parameters.ESE activation,0:Not activated;1:Activated ,7A2,24,24,1,0,0,,222100,622100,ff,Car configuration.Centerfill speaker,0:Not present;1:present ,7A2,25,25,1,0,0,,222100,622100,ff,Car configuration.Twidlers,0:Not Fitted;1:Fitted ,7A2,26,31,1,0,0,,222100,622100,ff,Car configuration.Welcome Sequence volume level ,7A2,32,32,1,0,0,,222100,622100,ff,Car configuration.Rear tweeters,0:Not present;1:Present ,7A2,33,33,1,0,0,,222100,622100,ff,Car configuration.HEVC,0:Not present;1:Present ,7A2,34,34,1,0,0,,222100,622100,ff,Car configuration.ECM,0:Not present;1:Present ,7A2,25,25,1,0,0,,222109,622109,ff,Sound volume configuration.CFG_ADAS_RCTA,0:Absent;1:Present ,7A2,26,26,1,0,0,,222109,622109,ff,Sound volume configuration.CFG_ADAS_SR,0:Absent;1:Present ,7A2,27,27,1,0,0,,222109,622109,ff,Sound volume configuration.CFG_ADAS_PSM,0:Absent;1:Present ,7A2,28,29,1,0,0,,222109,622109,ff,Sound volume configuration.CFG_ADAS_APA,0:APA not present;1:HFP present;2:HFPB present;3:APK present ,7A2,30,31,1,0,0,,222109,622109,ff,Sound volume configuration.CFG_ADAS_UPA_Audio,0:UPA audio not present;1:UPA audio without settings;2:UPA audio with settings ,7A2,32,39,1,0,0,00h-28h volume step,222109,622109,ff,Sound volume configuration.Ecall_volume ,7A2,44,45,1,0,0,,222109,622109,ff,Sound volume configuration.CFG_ADAS_LDW,0:LDW not present;1:LDW Sound;2:LDW Haptic ,7A2,46,47,1,0,0,,222109,622109,ff,Sound volume configuration.Sonar_System_Availability,0:Not available;1:Available ,7A2,56,63,1,10,0,dB,222109,622109,1ff,Sound volume configuration.ParkingAids_UPA_gain ,7A2,64,71,1,10,0,dB,222109,622109,1ff,Sound volume configuration.ParkingAids_HFP_gain ,7A2,72,79,1,10,0,dB,222109,622109,1ff,Sound volume configuration.ParkingAids_PSM_gain ,7A2,80,87,1,10,0,dB,222109,622109,1ff,Sound volume configuration.LateralADAS_LDW_gain ,7A2,88,95,1,0,0,00h-28h volume step,222109,622109,ff,Sound volume configuration.Cluster_sound_level ,7A2,120,127,1,12,0,dB,222109,622109,1ff,Sound volume configuration.Beep_Clic_Level ,7A2,24,31,1,0,0,,222111,622111,ff,ECU configuration.Speakers,0:Bass Box;1:Subwoofers ,7A2,32,39,1,0,0,,222111,622111,ff,ECU configuration.ANC microphones,0:Not fitted;1:Fitted ,7A2,40,47,1,0,0,,222111,622111,ff,ECU configuration.Hand drive,0:Left hand drive (F..);1:Right hand drive (GB..) ,7A2,24,31,1,0,0,,222112,622112,ff,CAN diversity,0:Slot 0 (Default);1:Slot 1 (C1A);2:Slot 2 (C1R);3:Slot 3 (T4Vs) ,7A2,24,31,1,0,0,,229002,629002,ff,Loudspeaker ,7A2,24,31,1,0,0,,229011,629011,ff,IO.Tweeter_result,0:In progress;1:Done and OK;2:Done and NOK ,7A2,24,103,1,0,0,,22F012,62F012,2ff,Operational Reference ,7A2,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,7A2,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC Occurrence Counter ,7A2,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,7A2,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,7A2,24,47,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7A2,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,7A2,24,159,1,0,0,,22F190,62F190,2ff,VIN ,7A2,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,7A2,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7A2,24,167,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7A2,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,7A2,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,7A2,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/AAU_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal level out of range/zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component | system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/ABS-VDC_Dtcs.csv ================================================ 5056,Supply Voltage 507B,Important function deactivated 5051,Pump motor control 5049,Inlet valve FL 504A,Outlet valve FL 504B,Inlet valve FR 504C,Outlet valve FR 504D,Inlet valve RL 504E,Outlet valve RL 504F,Inlet valve RR 5050,Outlet valve RR 5061,Front left wheel speed sensor 5063,Front right wheel speed sensor 5065,Rear left wheel speed sensor 5067,Rear right wheel speed sensor 5070,Lateral acceleration sensor 5071,Longitudinal acceleration sensor 505A,Stability system active too long 5058,ECU ABS or ESC 506C,Master cylinder pressure sensor 506B,Brake pedal switch 'A' 5073,Vacuum sensor 5052,Brake Booster Performance E243,Lost Communication with HEVC on Chassis-CAN E204,Lost Communication with 4WS on Chassis-CAN E276,Lost Communication with IDM on Chassis-CAN 5048,Valve relay 5053,CAN Receive Monitor 5054,Judgement time 2-2 5055,CAN Register 5059,Solenoid overheating 505C,Implausible control 5068,WSS Front Axle 5069,WSS Rear Axle 506A,WSS General 506D,Vacuum booster 5075,Activation HDC switch 507C,Secondary function deactivated 507D,4WD 507E,Extended Grip button E252,Lost Communication with ADAS on Chassis CAN E25F,Lost Communication with RADAR on Chassis-CAN E255,Lost Communication with APB on Chassis-CAN E176,Lost Communication with IDM on Vehicle CAN E15B,Lost communication with USM on Vehicle CAN E156,Lost Communication with SWAS on Vehicle CAN E14F,Lost Communication with BCM on Vehicle CAN E14E,Lost Communication with METER on Vehicle CAN E14A,Lost Communication with 4WD on Vehicle CAN E143,Lost Communication with HEVC on Vehicle CAN E141,Lost Communication with AT on Vehicle CAN E140,Lost Communication with ECM on Vehicle CAN E104,Lost Communication with 4WS on Vehicle CAN E101,Lost Communication with Add. Display on Vehicle CAN E212,Lost Communication with EBA on Chassis-CAN E112,Lost Communication with EBA on Vehicle CAN 505B,HEVC not ready as actuator E265,Lost Communication with USA on Chassis-CAN 50B5,EPB_ASSEMBLY_CHECK_NOT_DONE 50B0,EPB_ACTUATOR_RIGHT 50B1,EPB_ACTUATOR_LEFT 50B8,EPB_BRAKE_INCOHERENT 50B9,EPB_BRAKE_STATE_UNKNOWN 50B3,EPB_ELECTRONIC_ECU 50B2,EPB_SWITCH 50B6,EPB_MAX_BRAKING 50A0,TPW Under Inflated 50A1,TPW INVALID INPUT DATA 50A2,TPW Wheel Front Left 50A3,TPW Wheel Front Right 50A4,TPW Wheel Rear Right 50A5,TPW Wheel Rear Left 50A6,TPW ERROR 50A7,TPW AUTOCALIBRATION FAILED 5042,Isolating valve FR/RL axe fault 5043,Isolating valve FL/RR axe fault 5046,Electric shuttle valve FR/RL axe fault 5047,Electric shuttle valve FL/RR axe fault 5076,Missing ABS or VDC calibration parameters 5077,Invalid gearbox configuration 5078,Invalid parking brake configuration 5079,Invalid wheel circumference configuration 507A,Invalid VDC Physical Implantatation Configuration C073,Vehicle CAN C076,Chassis CAN 5080,ECM Invalid data 5081,APB Invalid data 5083,SWAS Invalid data 5085,METER Invalid data 5086,BCM Invalid data 5087,USM Invalid data 5089,4WS Invalid data 5090,ADAS Invalid data 5091,RADAR Invalid data 5092,4WD Invalid data 5093,USA Invalid data 5094,HEVC Invalid data 5095,EBA Invalid data 5097,IDM Invalid data 506E,SWAS 505F,GCC commands 505E,EBA Failure 5041,Invalid function configuration 505D,Brake Fluid Level 5082,AT Invalid data 50AA,LifeTimeCounter 50AB,Reserved C1A-HS 50AC,Reserved C1A-HS-1 50AD,Reserved C1A-HS-2 5040,Telemeter 5088,MIU Invalid data E154,Lost Communication with MIU on Vehicle CAN 5096,CDM Invalid data 507F,Stroke sensor 5072,Yaw rate sensor 5074,Activation switch AYC/ASR ================================================ FILE: app/src/main/assets/ZOE_Ph2/ABS-VDC_Fields.csv ================================================ ,18DAF12D,8,15,1,0,0,,1000,5000,ff,StartDiagnosticSession.ResponseType,129:Yes ,18DAF12D,8,15,1,0,0,,1001,5001,ff,StartDiagnosticSession.ResponseType,129:Yes ,18DAF12D,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Start Programming Session ,18DAF12D,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Start Extended Session ,18DAF12D,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,18DAF12D,16,23,1,0,0,,190109,590109,ff,DTCStatusAvailabilityMask ,18DAF12D,24,31,1,0,0,,190109,590109,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,18DAF12D,32,47,1,0,0,,190109,590109,ff,DTCCount ,18DAF12D,16,23,1,0,0,,190201,590201,ff,DTCStatusAvailabilityMask ,18DAF12D,24,39,1,0,0,,190201,590201,ff,DTCDeviceIdentifier,20544:Telemeter;20545:Invalid function configuration;20546:Isolating valve FR/RL axe fault;20547:Isolating valve FL/RR axe fault;20550:Electric shuttle valve FR/RL axe fault;20551:Electric shuttle valve FL/RR axe fault;20552:Valve relay;20553:Inlet valve FL;20554:Outlet valve FL;20555:Inlet valve FR;20556:Outlet valve FR;20557:Inlet valve RL;20558:Outlet valve RL;20559:Inlet valve RR;20560:Outlet valve RR;20561:Pump motor control;20562:Brake Booster Performance;20563:CAN Receive Monitor;20564:Judgement time 2-2;20565:CAN Register;20566:Supply Voltage;20568:ECU ABS or ESC;20569:Solenoid overheating;20570:Stability system active too long;20571:HEVC not ready as actuator;20572:Implausible control;20573:Brake Fluid Level;20574:EBA Failure;20575:GCC commands;20577:Front left wheel speed sensor;20579:Front right wheel speed sensor;20581:Rear left wheel speed sensor;20583:Rear right wheel speed sensor;20584:WSS Front Axle;20585:WSS Rear Axle;20586:WSS General;20587:Brake pedal switch "A";20588:Master cylinder pressure sensor;20589:Vacuum booster;20590:SWAS;20592:Lateral acceleration sensor;20593:Longitudinal acceleration sensor;20594:Yaw rate sensor;20595:Vacuum sensor;20596:Activation switch AYC/ASR;20597:Activation HDC switch;20598:Missing ABS or VDC calibration parameters;20599:Invalid gearbox configuration;20600:Invalid parking brake configuration;20601:Invalid wheel circumference configuration;20602:Invalid VDC Physical Implantatation Configuration;20603:Important function deactivated;20604:Secondary function deactivated;20605:4WD;20606:Extended Grip button;20607:Stroke sensor;20608:ECM Invalid data;20609:APB Invalid data;20610:AT Invalid data;20611:SWAS Invalid data;20613:METER Invalid data;20614:BCM Invalid data;20615:USM Invalid data;20616:MIU Invalid data;20617:4WS Invalid data;20624:ADAS Invalid data;20625:RADAR Invalid data;20626:4WD Invalid data;20627:USA Invalid data;20628:HEVC Invalid data;20629:EBA Invalid data;20630:CDM Invalid data;20631:IDM Invalid data;20640:TPW Under Inflated;20641:TPW INVALID INPUT DATA;20642:TPW Wheel Front Left;20643:TPW Wheel Front Right;20644:TPW Wheel Rear Right;20645:TPW Wheel Rear Left;20646:TPW ERROR;20647:TPW AUTOCALIBRATION FAILED;20650:LifeTimeCounter;20651:Reserved C1A-HS;20652:Reserved C1A-HS-1;20653:Reserved C1A-HS-2;20656:EPB_ACTUATOR_RIGHT;20657:EPB_ACTUATOR_LEFT;20658:EPB_SWITCH;20659:EPB_ELECTRONIC_ECU;20661:EPB_ASSEMBLY_CHECK_NOT_DONE;20662:EPB_MAX_BRAKING;20664:EPB_BRAKE_INCOHERENT;20665:EPB_BRAKE_STATE_UNKNOWN;49267:Vehicle CAN;49270:Chassis CAN;57601:Lost Communication with Add. Display on Vehicle CAN;57604:Lost Communication with 4WS on Vehicle CAN;57618:Lost Communication with EBA on Vehicle CAN;57664:Lost Communication with ECM on Vehicle CAN;57665:Lost Communication with AT on Vehicle CAN;57667:Lost Communication with HEVC on Vehicle CAN;57674:Lost Communication with 4WD on Vehicle CAN;57678:Lost Communication with METER on Vehicle CAN;57679:Lost Communication with BCM on Vehicle CAN;57684:Lost Communication with MIU on Vehicle CAN;57686:Lost Communication with SWAS on Vehicle CAN;57691:Lost communication with USM on Vehicle CAN;57718:Lost Communication with IDM on Vehicle CAN;57860:Lost Communication with 4WS on Chassis-CAN;57874:Lost Communication with EBA on Chassis-CAN;57923:Lost Communication with HEVC on Chassis-CAN;57938:Lost Communication with ADAS on Chassis CAN;57941:Lost Communication with APB on Chassis-CAN;57951:Lost Communication with RADAR on Chassis-CAN;57957:Lost Communication with USA on Chassis-CAN;57974:Lost Communication with IDM on Chassis-CAN ,18DAF12D,40,43,1,0,0,,190201,590201,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM (Freq Mod) / PWM (Pulse Width Mod) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,18DAF12D,44,47,1,0,0,,190201,590201,ff,DTCFailureType.ManufacturerOrSupplier ,18DAF12D,48,55,1,0,0,,190201,590201,ff,StatusOfDTC ,18DAF12D,49,49,1,0,0,,190201,590201,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF12D,50,50,1,0,0,,190201,590201,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF12D,51,51,1,0,0,,190201,590201,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF12D,52,52,1,0,0,,190201,590201,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF12D,53,53,1,0,0,,190201,590201,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF12D,54,54,1,0,0,,190201,590201,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF12D,55,55,1,0,0,,190201,590201,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF12D,16,23,1,0,0,,190209,590209,ff,DTCStatusAvailabilityMask ,18DAF12D,24,39,1,0,0,,190209,590209,ff,DTCDeviceIdentifier,20544:Telemeter;20545:Invalid function configuration;20546:Isolating valve FR/RL axe fault;20547:Isolating valve FL/RR axe fault;20550:Electric shuttle valve FR/RL axe fault;20551:Electric shuttle valve FL/RR axe fault;20552:Valve relay;20553:Inlet valve FL;20554:Outlet valve FL;20555:Inlet valve FR;20556:Outlet valve FR;20557:Inlet valve RL;20558:Outlet valve RL;20559:Inlet valve RR;20560:Outlet valve RR;20561:Pump motor control;20562:Brake Booster Performance;20563:CAN Receive Monitor;20564:Judgement time 2-2;20565:CAN Register;20566:Supply Voltage;20568:ECU ABS or ESC;20569:Solenoid overheating;20570:Stability system active too long;20571:HEVC not ready as actuator;20572:Implausible control;20573:Brake Fluid Level;20574:EBA Failure;20575:GCC commands;20577:Front left wheel speed sensor;20579:Front right wheel speed sensor;20581:Rear left wheel speed sensor;20583:Rear right wheel speed sensor;20584:WSS Front Axle;20585:WSS Rear Axle;20586:WSS General;20587:Brake pedal switch "A";20588:Master cylinder pressure sensor;20589:Vacuum booster;20590:SWAS;20592:Lateral acceleration sensor;20593:Longitudinal acceleration sensor;20594:Yaw rate sensor;20595:Vacuum sensor;20596:Activation switch AYC/ASR;20597:Activation HDC switch;20598:Missing ABS or VDC calibration parameters;20599:Invalid gearbox configuration;20600:Invalid parking brake configuration;20601:Invalid wheel circumference configuration;20602:Invalid VDC Physical Implantatation Configuration;20603:Important function deactivated;20604:Secondary function deactivated;20605:4WD;20606:Extended Grip button;20607:Stroke sensor;20608:ECM Invalid data;20609:APB Invalid data;20610:AT Invalid data;20611:SWAS Invalid data;20613:METER Invalid data;20614:BCM Invalid data;20615:USM Invalid data;20616:MIU Invalid data;20617:4WS Invalid data;20624:ADAS Invalid data;20625:RADAR Invalid data;20626:4WD Invalid data;20627:USA Invalid data;20628:HEVC Invalid data;20629:EBA Invalid data;20630:CDM Invalid data;20631:IDM Invalid data;20640:TPW Under Inflated;20641:TPW INVALID INPUT DATA;20642:TPW Wheel Front Left;20643:TPW Wheel Front Right;20644:TPW Wheel Rear Right;20645:TPW Wheel Rear Left;20646:TPW ERROR;20647:TPW AUTOCALIBRATION FAILED;20650:LifeTimeCounter;20651:Reserved C1A-HS;20652:Reserved C1A-HS-1;20653:Reserved C1A-HS-2;20656:EPB_ACTUATOR_RIGHT;20657:EPB_ACTUATOR_LEFT;20658:EPB_SWITCH;20659:EPB_ELECTRONIC_ECU;20661:EPB_ASSEMBLY_CHECK_NOT_DONE;20662:EPB_MAX_BRAKING;20664:EPB_BRAKE_INCOHERENT;20665:EPB_BRAKE_STATE_UNKNOWN;49267:Vehicle CAN;49270:Chassis CAN;57601:Lost Communication with Add. Display on Vehicle CAN;57604:Lost Communication with 4WS on Vehicle CAN;57618:Lost Communication with EBA on Vehicle CAN;57664:Lost Communication with ECM on Vehicle CAN;57665:Lost Communication with AT on Vehicle CAN;57667:Lost Communication with HEVC on Vehicle CAN;57674:Lost Communication with 4WD on Vehicle CAN;57678:Lost Communication with METER on Vehicle CAN;57679:Lost Communication with BCM on Vehicle CAN;57684:Lost Communication with MIU on Vehicle CAN;57686:Lost Communication with SWAS on Vehicle CAN;57691:Lost communication with USM on Vehicle CAN;57718:Lost Communication with IDM on Vehicle CAN;57860:Lost Communication with 4WS on Chassis-CAN;57874:Lost Communication with EBA on Chassis-CAN;57923:Lost Communication with HEVC on Chassis-CAN;57938:Lost Communication with ADAS on Chassis CAN;57941:Lost Communication with APB on Chassis-CAN;57951:Lost Communication with RADAR on Chassis-CAN;57957:Lost Communication with USA on Chassis-CAN;57974:Lost Communication with IDM on Chassis-CAN ,18DAF12D,40,43,1,0,0,,190209,590209,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM (Freq Mod) / PWM (Pulse Width Mod) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,18DAF12D,44,47,1,0,0,,190209,590209,ff,DTCFailureType.ManufacturerOrSupplier ,18DAF12D,48,55,1,0,0,,190209,590209,ff,StatusOfDTC ,18DAF12D,49,49,1,0,0,,190209,590209,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF12D,50,50,1,0,0,,190209,590209,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF12D,51,51,1,0,0,,190209,590209,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF12D,52,52,1,0,0,,190209,590209,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF12D,53,53,1,0,0,,190209,590209,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF12D,54,54,1,0,0,,190209,590209,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF12D,55,55,1,0,0,,190209,590209,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF12D,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,18DAF12D,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,18DAF12D,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,18DAF12D,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,18DAF12D,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,18DAF12D,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF12D,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,18DAF12D,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,18DAF12D,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,18DAF12D,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF12D,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,18DAF12D,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,18DAF12D,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,18DAF12D,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF12D,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,18DAF12D,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord ,18DAF12D,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC ,18DAF12D,48,55,1,0,0,,190600000085,590600000085,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF12D,56,79,1,0,0,km,190600000085,590600000085,ff,DTCExtendedData.DTCLastDiseappearMileage ,18DAF12D,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord ,18DAF12D,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC ,18DAF12D,48,55,1,0,0,,190600000087,590600000087,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF12D,56,79,1,0,0,km,190600000087,590600000087,ff,DTCExtendedData.DTCFirstAppearMileage ,18DAF12D,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,18DAF12D,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,20544:Telemeter;20545:Invalid function configuration;20546:Isolating valve FR/RL axe fault;20547:Isolating valve FL/RR axe fault;20550:Electric shuttle valve FR/RL axe fault;20551:Electric shuttle valve FL/RR axe fault;20552:Valve relay;20553:Inlet valve FL;20554:Outlet valve FL;20555:Inlet valve FR;20556:Outlet valve FR;20557:Inlet valve RL;20558:Outlet valve RL;20559:Inlet valve RR;20560:Outlet valve RR;20561:Pump motor control;20562:Brake Booster Performance;20563:CAN Receive Monitor;20564:Judgement time 2-2;20565:CAN Register;20566:Supply Voltage;20568:ECU ABS or ESC;20569:Solenoid overheating;20570:Stability system active too long;20571:HEVC not ready as actuator;20572:Implausible control;20573:Brake Fluid Level;20574:EBA Failure;20575:GCC commands;20577:Front left wheel speed sensor;20579:Front right wheel speed sensor;20581:Rear left wheel speed sensor;20583:Rear right wheel speed sensor;20584:WSS Front Axle;20585:WSS Rear Axle;20586:WSS General;20587:Brake pedal switch "A";20588:Master cylinder pressure sensor;20589:Vacuum booster;20590:SWAS;20592:Lateral acceleration sensor;20593:Longitudinal acceleration sensor;20594:Yaw rate sensor;20595:Vacuum sensor;20596:Activation switch AYC/ASR;20597:Activation HDC switch;20598:Missing ABS or VDC calibration parameters;20599:Invalid gearbox configuration;20600:Invalid parking brake configuration;20601:Invalid wheel circumference configuration;20602:Invalid VDC Physical Implantatation Configuration;20603:Important function deactivated;20604:Secondary function deactivated;20605:4WD;20606:Extended Grip button;20607:Stroke sensor;20608:ECM Invalid data;20609:APB Invalid data;20610:AT Invalid data;20611:SWAS Invalid data;20613:METER Invalid data;20614:BCM Invalid data;20615:USM Invalid data;20616:MIU Invalid data;20617:4WS Invalid data;20624:ADAS Invalid data;20625:RADAR Invalid data;20626:4WD Invalid data;20627:USA Invalid data;20628:HEVC Invalid data;20629:EBA Invalid data;20630:CDM Invalid data;20631:IDM Invalid data;20640:TPW Under Inflated;20641:TPW INVALID INPUT DATA;20642:TPW Wheel Front Left;20643:TPW Wheel Front Right;20644:TPW Wheel Rear Right;20645:TPW Wheel Rear Left;20646:TPW ERROR;20647:TPW AUTOCALIBRATION FAILED;20650:LifeTimeCounter;20651:Reserved C1A-HS;20652:Reserved C1A-HS-1;20653:Reserved C1A-HS-2;20656:EPB_ACTUATOR_RIGHT;20657:EPB_ACTUATOR_LEFT;20658:EPB_SWITCH;20659:EPB_ELECTRONIC_ECU;20661:EPB_ASSEMBLY_CHECK_NOT_DONE;20662:EPB_MAX_BRAKING;20664:EPB_BRAKE_INCOHERENT;20665:EPB_BRAKE_STATE_UNKNOWN;49267:Vehicle CAN;49270:Chassis CAN;57601:Lost Communication with Add. Display on Vehicle CAN;57604:Lost Communication with 4WS on Vehicle CAN;57618:Lost Communication with EBA on Vehicle CAN;57664:Lost Communication with ECM on Vehicle CAN;57665:Lost Communication with AT on Vehicle CAN;57667:Lost Communication with HEVC on Vehicle CAN;57674:Lost Communication with 4WD on Vehicle CAN;57678:Lost Communication with METER on Vehicle CAN;57679:Lost Communication with BCM on Vehicle CAN;57684:Lost Communication with MIU on Vehicle CAN;57686:Lost Communication with SWAS on Vehicle CAN;57691:Lost communication with USM on Vehicle CAN;57718:Lost Communication with IDM on Vehicle CAN;57860:Lost Communication with 4WS on Chassis-CAN;57874:Lost Communication with EBA on Chassis-CAN;57923:Lost Communication with HEVC on Chassis-CAN;57938:Lost Communication with ADAS on Chassis CAN;57941:Lost Communication with APB on Chassis-CAN;57951:Lost Communication with RADAR on Chassis-CAN;57957:Lost Communication with USA on Chassis-CAN;57974:Lost Communication with IDM on Chassis-CAN ,18DAF12D,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Freq Mod) / PWM (Pulse Width Mod) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or operation obstructed or blocked;152:component or system over temperature ,18DAF12D,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,18DAF12D,24,39,.1,32767,1,°,220100,620100,ff,Steering Wheel Angle ,18DAF12D,24,31,.1,0,1,V,22012F,62012F,ff,Supply voltage ,18DAF12D,24,31,1,0,0,,221597,621597,ff,Multimode RS,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,39,.01,0,2,km/h,224B00,624B00,ff,WheelSpeed FL ,18DAF12D,24,39,.01,0,2,km/h,224B01,624B01,ff,WheelSpeed FR ,18DAF12D,24,39,.01,0,2,km/h,224B02,624B02,ff,WheelSpeed RL ,18DAF12D,24,39,.01,0,2,km/h,224B03,624B03,ff,WheelSpeed RR ,18DAF12D,24,39,.01,0,2,km/h,224B04,624B04,ff,Vehicle speed ,18DAF12D,0,0,1,0,0,,224B05,624B05,ff,DataRead.DID Unknown ,18DAF12D,28,55,10,0,0,m,224B06,624B06,ff,Internal odometer.Internal odometer ,18DAF12D,24,31,.1,127,1,m/s²,224B07,624B07,ff,Longitudinal acceleration ,18DAF12D,24,31,1,0,0,,224B08,624B08,ff,Aging Counter ,18DAF12D,24,47,.05,0,2,Km,224B09,624B09,1ff,Mileage of the first failure ,18DAF12D,24,31,.02,127,2,g,224B0B,624B0B,ff,Lateral acceleration ,18DAF12D,24,39,.2,32767,1,°/s,224B0C,624B0C,ff,Yaw speed ,18DAF12D,24,31,1,0,0,,224B0D,624B0D,ff,Activation switch state,0:Activation switch released;1:Activation switch pressed ,18DAF12D,24,31,1,0,0,Bar,224B0E,624B0E,ff,Braking pressure ,18DAF12D,24,31,1,0,0,,224B11,624B11,ff,Brake Pedal Position,0:released;1:pressed;255:unavailable ,18DAF12D,24,24,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.outlet EV RR,0:off;1:activated ,18DAF12D,25,25,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.inlet EV RR,0:off;1:activated ,18DAF12D,26,26,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.outlet EV RL,0:off;1:activated ,18DAF12D,27,27,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.inlet EV RL,0:off;1:activated ,18DAF12D,28,28,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.outlet EV FR,0:off;1:activated ,18DAF12D,29,29,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.intlet EV FR,0:off;1:activated ,18DAF12D,30,30,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.outlet EV FL,0:off;1:activated ,18DAF12D,31,31,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.inlet EV FL,0:off;1:activated ,18DAF12D,33,33,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.pump,0:off;1:activated ,18DAF12D,36,36,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.FL RR Electric shuttle EV,0:off;1:activated ,18DAF12D,37,37,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.FL RR Isolating EV,0:off;1:activated ,18DAF12D,38,38,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.FR RL Electric shuttle EV,0:off;1:activated ,18DAF12D,39,39,1,0,0,,224B12,624B12,ff,Hydraulic valves and pump.FR RL Isolating EV,0:off;1:activated ,18DAF12D,24,31,1,0,0,km/h,224B13,624B13,ff,Vehicle speed wire generation ,18DAF12D,24,31,1,0,0,,224B14,624B14,ff,Hazard lights activation state,0:not activated;1:activated ,18DAF12D,24,31,1,0,0,,224B15,624B15,ff,Brake lights activation state,0:not activated;1:activated ,18DAF12D,24,31,1,0,0,,224B16,624B16,ff,ASR Request Simulation,3:ShortTermAdjustement ,18DAF12D,24,31,1,0,0,°C,224B17,624B17,ff,Hydraulic unit temperature ,18DAF12D,24,31,1,0,0,,224B18,624B18,ff,After Sales Date ,18DAF12D,24,31,1,0,0,,224B1A,624B1A,ff,Vehicle Status,0:0 (Asleep);1:1 (Not used);2:2 (CutOff pending);3:3 (AutoACC);4:4 (Not used);5:5 (IgnitionLevel);6:6 (StartInProgress);7:7 (Powertrain Running);8:8 (AutoStart);9:9 (EngineSystemStop);255:Unavaible ,18DAF12D,24,39,1,0,0,,224B1C,624B1C,ff,ESC Steering Angle Sensor calibration ,18DAF12D,24,39,1,0,0,,224B1D,624B1D,ff,Magnetic tone wheel control ,18DAF12D,24,39,1,0,0,,224B1E,624B1E,ff,ESC inertial sensors calibration ,18DAF12D,24,31,1,0,0,,224B20,624B20,ff,AEB Ped function inhibtion state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B21,624B21,ff,HDC Button state,0:HDC Button not activated;1:HDC Button activated ,18DAF12D,24,31,1,0,0,,224B23,624B23,ff,Vehicule_Hybridation_level,0:VehicleHbridationLevel_ICE;17:VehicleHbridationLevel_MicroHybrid1;34:VehicleHbridationLevel_MicroHybrid2;51:VehicleHbridationLevel_FullHybrid;68:VehicleHbridationLevel_EV;85:VehicleHbridationLevel_Config6;102:VehicleHbridationLevel_Config7;119:VehicleHbridationLevel_Config8;136:VehicleHbridationLevel_Config9;153:VehicleHbridationLevel_Config10;255:BrakingAssistanceSystem_NotConfigured ,18DAF12D,24,39,1,0,0,,224B24,624B24,ff,Real Tires Circumference,1000:Minimum value (expert only);1879:205/45/R17;1891:195/55/R16;1894:185/65/R15;1909:215/45/R17;1923:205/55/R16 91H V24;1927:205/55/R16 94H V35;1934:195/65/R15 91H V32;1941:205/55/R16 91V V33;1943:225/40/R18;1957:205/50/R17 93V V36V37;1967:235/40/R18 (RS);1989:205/60/R16 92H V08;1998:245/35/R19 (RS);2036:215/60/R16 95V;2073:245/45/R18 100W;2074:225/55/R17 97V;2078:225/55/R17 101W;2093:215/65/R16;2105:215/60/R17;2114:215/55/R18;2244:255/45/R20;2251:235/65/R17;2254:235/60/R18;2261:235/55/R19;3000:Maximum value (expert only);65535:Not configured ,18DAF12D,24,31,10,-1,0,s,224B25,624B25,ff,Powerlatch duration ,18DAF12D,24,31,1,0,0,,224B26,624B26,ff,GearBox Type.GearBoxType,1:Manual;2:Automatic;3:CVT;4:DCT;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B27,624B27,ff,Parking Brake Type,1:Manual;2:Assisted;3:Assisted_Int_Edrum;4:Assisted_Int_Ecaliper;255:Not Configured ,18DAF12D,24,39,1,0,0,,224B28,624B28,ff,Rear tires real Circumference,1000:Minimum value (expert only);1879:205/45/R17;1891:195/55/R16;1894:185/65/R15;3000:Maximum value (expert only);65535:Not configured ,18DAF12D,24,31,1,0,0,,224B29,624B29,ff,RMF function inhibition state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B2A,624B2A,ff,MULTIEXP function inhibition state,0:MODE 1;85:MODE 2;170:Not activated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B2B,624B2B,ff,HBA function inhibition state,0:Activated;170:Deactivated;255:NotConfigured ,18DAF12D,24,31,1,0,0,,224B2C,624B2C,ff,EBP function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B2E,624B2E,ff,TSF function inhibition state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B2F,624B2F,ff,ACC function inhibition state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B30,624B30,ff,AEBS function inhibition state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B31,624B31,ff,HSA function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B32,624B32,ff,BHF function inhibition state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B33,624B33,ff,Calibration variant ,18DAF12D,24,31,1,0,0,,224B34,624B34,ff,Filling status,0:OK (Filled in);176:NOK (Evac failure);192:NOK (Filling failure);255:NEW (Empty) ,18DAF12D,24,24,1,0,0,,224B35,624B35,ff,Function status.EBD function.failure status,0:not operational;1:operational ,18DAF12D,25,25,1,0,0,,224B35,624B35,ff,Function status.EBD function.activation status,0:not active;1:active ,18DAF12D,26,26,1,0,0,,224B35,624B35,ff,Function status.ABS function.failure status,0:not operational;1:operational ,18DAF12D,27,27,1,0,0,,224B35,624B35,ff,Function status.ABS function.activation status,0:not active;1:active ,18DAF12D,28,28,1,0,0,,224B35,624B35,ff,Function status.ASR function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,29,29,1,0,0,,224B35,624B35,ff,Function status.ASR function.inhibition by switch status,0:inhibited by switch;1:not inhibited by switch ,18DAF12D,30,30,1,0,0,,224B35,624B35,ff,Function status.ASR function.failure status,0:not operational;1:operational ,18DAF12D,31,31,1,0,0,,224B35,624B35,ff,Function status.ASR function.activation status,0:not active;1:active ,18DAF12D,32,32,1,0,0,,224B35,624B35,ff,Function status.AYC function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,33,33,1,0,0,,224B35,624B35,ff,Function status.AYC function.inhibition by switch status,0:inhibited by switch;1:not inhibited by switch ,18DAF12D,34,34,1,0,0,,224B35,624B35,ff,Function status.AYC function.failure status,0:not operational;1:operational ,18DAF12D,35,35,1,0,0,,224B35,624B35,ff,Function status.AYC function.activation status,0:not active;1:active ,18DAF12D,36,36,1,0,0,,224B35,624B35,ff,Function status.MSR function.failure status,0:not operational;1:operational ,18DAF12D,37,37,1,0,0,,224B35,624B35,ff,Function status.MSR function.activation status,0:not active;1:active ,18DAF12D,38,38,1,0,0,,224B35,624B35,ff,Function status.HBA function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,39,39,1,0,0,,224B35,624B35,ff,Function status.HBA function.failure status,0:not operational;1:operational ,18DAF12D,40,40,1,0,0,,224B35,624B35,ff,Function status.HBA function.activation status,0:not active;1:active ,18DAF12D,41,41,1,0,0,,224B35,624B35,ff,Function status.HSA function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,42,42,1,0,0,,224B35,624B35,ff,Function status.HSA function.failure status,0:not operational;1:operational ,18DAF12D,43,43,1,0,0,,224B35,624B35,ff,Function status.HSA function.activation status,0:not active;1:active ,18DAF12D,44,44,1,0,0,,224B35,624B35,ff,Function status.EBP function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,45,45,1,0,0,,224B35,624B35,ff,Function status.EBP function.failure status,0:not operational;1:operational ,18DAF12D,46,46,1,0,0,,224B35,624B35,ff,Function status.EBP function.activation status,0:not active;1:active ,18DAF12D,47,47,1,0,0,,224B35,624B35,ff,Function status.RMF function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,48,48,1,0,0,,224B35,624B35,ff,Function status.RMF function.failure status,0:not operational;1:operational ,18DAF12D,49,49,1,0,0,,224B35,624B35,ff,Function status.RMF function.activation status,0:not active;1:active ,18DAF12D,50,50,1,0,0,,224B35,624B35,ff,Function status.TSF function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,51,51,1,0,0,,224B35,624B35,ff,Function status.TSF function.failure status,0:not operational;1:operational ,18DAF12D,52,52,1,0,0,,224B35,624B35,ff,Function status.TSF function.activation status,0:not active;1:active ,18DAF12D,53,53,1,0,0,,224B35,624B35,ff,Function status.HLA function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,54,54,1,0,0,,224B35,624B35,ff,Function status.HLA function.failure status,0:not operational;1:operational ,18DAF12D,55,55,1,0,0,,224B35,624B35,ff,Function status.HLA function.activation status,0:not active;1:active ,18DAF12D,56,56,1,0,0,,224B35,624B35,ff,Function status.VDL function.failure status,0:not operational;1:operational ,18DAF12D,57,57,1,0,0,,224B35,624B35,ff,Function status.VDL function.activation status,0:not active;1:active ,18DAF12D,62,62,1,0,0,,224B35,624B35,ff,Function status.HBB function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,63,63,1,0,0,,224B35,624B35,ff,Function status.HBB function.failure status,0:not operational;1:operational ,18DAF12D,64,64,1,0,0,,224B35,624B35,ff,Function status.HBB function.activation status,0:not active;1:active ,18DAF12D,65,65,1,0,0,,224B35,624B35,ff,Function status.ACC function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,66,66,1,0,0,,224B35,624B35,ff,Function status.ACC function.failure status,0:not operational;1:operational ,18DAF12D,67,67,1,0,0,,224B35,624B35,ff,Function status.ACC function.activation status,0:not active;1:active ,18DAF12D,68,68,1,0,0,,224B35,624B35,ff,Function status.AEBS function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,69,69,1,0,0,,224B35,624B35,ff,Function status.AEBS function.failure status,0:not operational;1:operational ,18DAF12D,70,70,1,0,0,,224B35,624B35,ff,Function status.AEBS function.activation status,0:not active;1:active ,18DAF12D,71,71,1,0,0,,224B35,624B35,ff,Function status.SIDIPIL function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,72,72,1,0,0,,224B35,624B35,ff,Function status.SIDIPIL function.failure status,0:not operational;1:operational ,18DAF12D,73,73,1,0,0,,224B35,624B35,ff,Function status.SIDIPIL function.activation status,0:not active;1:active ,18DAF12D,74,74,1,0,0,,224B35,624B35,ff,Function status.MULTI EXP function.inhibition by diag status,0:not operational;1:operational ,18DAF12D,75,75,1,0,0,,224B35,624B35,ff,Function status.MULTI EXP function.failure status,0:not operational;1:operational ,18DAF12D,76,76,1,0,0,,224B35,624B35,ff,Function status.EG function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,77,77,1,0,0,,224B35,624B35,ff,Function status.EG function.failure status,0:not operational;1:operational ,18DAF12D,78,78,1,0,0,,224B35,624B35,ff,Function status.EG function.activation status,0:not active;1:active ,18DAF12D,79,79,1,0,0,,224B35,624B35,ff,Function status.BLA function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,80,80,1,0,0,,224B35,624B35,ff,Function status.BLA function.failure status,0:not operational;1:operational ,18DAF12D,81,81,1,0,0,,224B35,624B35,ff,Function status.BLA function.activation status,0:not active;1:active ,18DAF12D,82,82,1,0,0,,224B35,624B35,ff,Function status.BHF function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,83,83,1,0,0,,224B35,624B35,ff,Function status.BHF function.failure status,0:not operational;1:operational ,18DAF12D,84,84,1,0,0,,224B35,624B35,ff,Function status.BHF function.activation status,0:not active;1:active ,18DAF12D,85,85,1,0,0,,224B35,624B35,ff,Function status.VESS function.inhibition by diag status,0:inhibited by diag;1:not inhibited by diag ,18DAF12D,86,86,1,0,0,,224B35,624B35,ff,Function status.VESS function.failure status,0:not operational;1:operational ,18DAF12D,87,87,1,0,0,,224B35,624B35,ff,Function status.VESS function.activation status,0:not active;1:active ,18DAF12D,24,31,.2,127,1,°,224B36,624B36,ff,Steering wheel angle offset ,18DAF12D,24,31,.01,127,2,g,224B37,624B37,ff,Lateral acceleration offset ,18DAF12D,24,31,.0981,127,2,m/s²,224B38,624B38,ff,Longitudinal acceleration offset ,18DAF12D,24,31,.2,127,1,Bar,224B39,624B39,ff,Braking pressure offset ,18DAF12D,24,55,1,0,0,,224B3A,624B3A,2ff,Steering Wheel Angle Traceability.Serial Number ,18DAF12D,56,71,1,0,0,,224B3A,624B3A,2ff,Steering Wheel Angle Traceability.Year ,18DAF12D,72,87,1,0,0,,224B3A,624B3A,2ff,Steering Wheel Angle Traceability.Month ,18DAF12D,88,103,1,0,0,,224B3A,624B3A,2ff,Steering Wheel Angle Traceability.Day ,18DAF12D,104,119,1,0,0,,224B3A,624B3A,2ff,Steering Wheel Angle Traceability.Reserved ,18DAF12D,120,151,1,0,0,,224B3A,624B3A,2ff,Steering Wheel Angle Traceability.Sequence ,18DAF12D,24,31,1,0,0,,224B3B,624B3B,ff,LWC function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B3C,624B3C,ff,ESC Orientation,1:Config 1 ( Left hand drive / DaG);2:Config 2 (Right hand drive / DaD);3:Config 3;4:Config 4;5:Config 5;6:Config 6;7:Config 7;8:Config 8;255:Not configured ,18DAF12D,24,39,1,0,0,,224B3D,624B3D,4ff,Supplier fault code ,18DAF12D,24,31,1,0,0,,224B3E,624B3E,ff,ASR function inhibition state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B3F,624B3F,ff,AEB Type,1:ADAS;2:RADAR;255:Not configured ,18DAF12D,24,31,1,0,0,,224B40,624B40,ff,AYC function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B41,624B41,ff,Brake Assistance System Configuration,0:Not Needed;17:Config 1;34:Config 2;51:Config 3;68:Config 4;85:Config 5;102:Config 6;119:Config 7;136:Config 8;153:Config 9;255:Not configured ,18DAF12D,24,39,.1,32767,1,°/s,224B42,624B42,ff,Steering Wheel Speed ,18DAF12D,24,31,1,0,0,,224B43,624B43,ff,BLA function inhibition state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B45,624B45,ff,Integrated sensors gateway activation deactivation,0:Deactivated;170:Activated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B46,624B46,ff,Voltage drop management function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B47,624B47,ff,Extended Grip function inhibition state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B48,624B48,ff,FourWS configuration state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B49,624B49,ff,HLA function inhibition state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B4A,624B4A,ff,trailer connector state,0:trailer not connected;1:trailer connected ,18DAF12D,24,31,1,0,0,,224B4B,624B4B,ff,ARBS function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B4C,624B4C,ff,HBB function inhibition state,0:Activated;170:Deactivated;255:Not Configured ,18DAF12D,24,31,1,0,0,,224B4D,624B4D,ff,VESS function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,50,0,0,mbar,224B4E,624B4E,ff,Vacuum sensor value ,18DAF12D,24,31,1,0,0,,224B4F,624B4F,ff,Vacuum Sensor Configuration,0:Not present;170:Present;255:Not configured ,18DAF12D,24,31,1,0,0,,224B50,624B50,ff,CCSL function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B51,624B51,ff,AUTOPARK function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B52,624B52,ff,GCC function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B53,624B53,ff,BSI function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B54,624B54,ff,SSF function inhibition state,0:Activated;170:Not activated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B55,624B55,ff,HDC function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B57,624B57,ff,Roller Bench Mode function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B5A,624B5A,ff,CRBS function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B5B,624B5B,ff,GSB function inhibition state,0:Activated;170:Not activated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B5C,624B5C,ff,OBD function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224B5D,624B5D,ff,TorqueRequestType,1:WheelTorque;2:EngineTorque;255:Not configured ,18DAF12D,24,31,1,0,0,,224B5E,624B5E,ff,BCR function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,45,1,0,0,s,224B5F,624B5F,ff,Vacuum Pump Activation counter ,18DAF12D,24,31,1,0,0,,224B61,624B61,ff,DTV Function,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,39,1,0,0,,224BA0,624BA0,2ff,ECU Activities.GeneralData.Calibration file reference ,18DAF12D,40,63,6.4,0,0,s,224BA0,624BA0,ff,ECU Activities.GeneralData.ECU ON time ,18DAF12D,64,79,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDuration.C1 ,18DAF12D,80,95,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDuration.C2 ,18DAF12D,96,111,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDuration.C3 ,18DAF12D,112,127,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDuration.C4 ,18DAF12D,128,143,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDuration.C5 ,18DAF12D,144,159,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDuration.C6 ,18DAF12D,160,175,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDuration.C7 ,18DAF12D,176,191,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDuration.C8 ,18DAF12D,192,207,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDistanceLevel.C1 ,18DAF12D,208,223,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDistanceLevel.C2 ,18DAF12D,224,239,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDistanceLevel.C3 ,18DAF12D,240,255,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDistanceLevel.C4 ,18DAF12D,256,271,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDistanceLevel.C5 ,18DAF12D,272,287,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDistanceLevel.C6 ,18DAF12D,288,303,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDistanceLevel.C7 ,18DAF12D,304,319,1,0,0,,224BA0,624BA0,ff,ECU Activities.GeneralData.IgnitionCyclesDistanceLevel.C8 ,18DAF12D,320,351,1,0,0,,224BA0,624BA0,4ff,ECU Activities.GeneralData.TimeBySpeedLevel.C1 ,18DAF12D,352,383,1,0,0,,224BA0,624BA0,4ff,ECU Activities.GeneralData.TimeBySpeedLevel.C2 ,18DAF12D,384,415,1,0,0,,224BA0,624BA0,4ff,ECU Activities.GeneralData.TimeBySpeedLevel.C3 ,18DAF12D,416,447,1,0,0,,224BA0,624BA0,4ff,ECU Activities.GeneralData.TimeBySpeedLevel.C4 ,18DAF12D,448,479,1,0,0,,224BA0,624BA0,4ff,ECU Activities.GeneralData.TimeBySpeedLevel.C5 ,18DAF12D,480,511,1,0,0,,224BA0,624BA0,4ff,ECU Activities.GeneralData.TimeBySpeedLevel.C6 ,18DAF12D,512,543,1,0,0,,224BA0,624BA0,4ff,ECU Activities.GeneralData.TimeBySpeedLevel.C7 ,18DAF12D,544,575,1,0,0,,224BA0,624BA0,4ff,ECU Activities.GeneralData.TimeBySpeedLevel.C8 ,18DAF12D,576,591,2,0,0,min,224BA0,624BA0,ff,ECU Activities.GeneralData.Time by temperature Level.C1 ,18DAF12D,592,607,2,0,0,min,224BA0,624BA0,ff,ECU Activities.GeneralData.Time by temperature Level.C2 ,18DAF12D,608,623,2,0,0,min,224BA0,624BA0,ff,ECU Activities.GeneralData.Time by temperature Level.C3 ,18DAF12D,624,639,2,0,0,min,224BA0,624BA0,ff,ECU Activities.GeneralData.Time by temperature Level.C4 ,18DAF12D,640,655,2,0,0,min,224BA0,624BA0,ff,ECU Activities.GeneralData.Time by temperature Level.C5 ,18DAF12D,656,671,2,0,0,min,224BA0,624BA0,ff,ECU Activities.GeneralData.Time by temperature Level.C6 ,18DAF12D,672,687,2,0,0,min,224BA0,624BA0,ff,ECU Activities.GeneralData.Time by temperature Level.C7 ,18DAF12D,688,703,2,0,0,min,224BA0,624BA0,ff,ECU Activities.GeneralData.Time by temperature Level.C8 ,18DAF12D,704,727,.32,0,1,s,224BA0,624BA0,ff,ECU Activities.GeneralData.Pump Motor ON time ,18DAF12D,24,39,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.EBD Activations ,18DAF12D,40,55,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.ABS ActivationsByDeceleration.C1 ,18DAF12D,56,71,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.ABS ActivationsByDeceleration.C2 ,18DAF12D,72,87,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.ABS ActivationsByDeceleration.C3 ,18DAF12D,88,103,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.ASR Activations ,18DAF12D,104,119,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.AYC ActivationsByBrakingPressure.C1 ,18DAF12D,120,135,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.AYC ActivationsByBrakingPressure.C2 ,18DAF12D,136,151,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.AYC ActivationsByBrakingPressure.C3 ,18DAF12D,152,167,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.AYC ActivationsByBrakingPressure.C4 ,18DAF12D,168,183,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.MSR Activations ,18DAF12D,184,199,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.HBA Activations ,18DAF12D,200,215,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.EBP Activations ,18DAF12D,216,231,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.HSA Activations ,18DAF12D,232,247,1,0,0,,224BA1,624BA1,ff,ECU Activities.ActivationCounters.LWC Activations ,18DAF12D,24,39,640,0,0,ms,224BA2,624BA2,ff,ECU Activities.ActivationTimers.EBD duration ,18DAF12D,40,55,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C1.K1 ,18DAF12D,56,71,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C1.K2 ,18DAF12D,72,79,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C1.K3 ,18DAF12D,80,87,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C1.K4 ,18DAF12D,88,103,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C2.K1 ,18DAF12D,104,119,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C2.K2 ,18DAF12D,120,135,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C2.K3 ,18DAF12D,136,151,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C2.K4 ,18DAF12D,152,167,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C3.K1 ,18DAF12D,168,183,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C3.K2 ,18DAF12D,184,199,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C3.K3 ,18DAF12D,200,215,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C3.K4 ,18DAF12D,216,231,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C4.K1 ,18DAF12D,232,247,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C4.K2 ,18DAF12D,248,263,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C4.K3 ,18DAF12D,264,279,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C4.K4 ,18DAF12D,280,295,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C5.K1 ,18DAF12D,296,311,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C5.K2 ,18DAF12D,312,327,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C5.K3 ,18DAF12D,328,343,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C5.K4 ,18DAF12D,344,359,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C6.K1 ,18DAF12D,360,375,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C6.K2 ,18DAF12D,376,383,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C6.K3 ,18DAF12D,384,391,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C6.K4 ,18DAF12D,392,399,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C7.K1 ,18DAF12D,400,407,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C7.K2 ,18DAF12D,408,415,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C7.K3 ,18DAF12D,416,423,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C7.K4 ,18DAF12D,424,431,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C8.K1 ,18DAF12D,432,439,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C8.K2 ,18DAF12D,440,447,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C8.K3 ,18DAF12D,448,455,1,0,0,,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABSdurationbypressure level.C8.K4 ,18DAF12D,456,471,1280,0,0,ms,224BA2,624BA2,ff,ECU Activities.ActivationTimers.ABS duration ,18DAF12D,472,535,1,0,0,,224BA2,624BA2,4ff,ECU Activities.ActivationTimers.ASR duration ,18DAF12D,536,551,1280,0,0,ms,224BA2,624BA2,ff,ECU Activities.ActivationTimers.AYC duration ,18DAF12D,552,567,80,0,0,ms,224BA2,624BA2,ff,ECU Activities.ActivationTimers.MSR duration ,18DAF12D,568,583,80,0,0,ms,224BA2,624BA2,ff,ECU Activities.ActivationTimers.HBA duration ,18DAF12D,584,599,20.48,0,0,ms,224BA2,624BA2,ff,ECU Activities.ActivationTimers.HSA duration ,18DAF12D,600,615,1280,0,0,ms,224BA2,624BA2,ff,ECU Activities.ActivationTimers.LWC duration ,18DAF12D,616,639,320,0,0,ms,224BA2,624BA2,ff,ECU Activities.ActivationTimers.HBB duration ,18DAF12D,24,55,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AxDurationbyLongitudinalAcceleraion.C1 ,18DAF12D,56,87,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AxDurationbyLongitudinalAcceleraion.C2 ,18DAF12D,88,119,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AxDurationbyLongitudinalAcceleraion.C3 ,18DAF12D,120,151,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AxDurationbyLongitudinalAcceleraion.C4 ,18DAF12D,152,183,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AxDurationbyLongitudinalAcceleraion.C5 ,18DAF12D,184,215,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AxDurationbyLongitudinalAcceleraion.C6 ,18DAF12D,216,247,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AxDurationbyLongitudinalAcceleraion.C7 ,18DAF12D,248,279,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AxDurationbyLongitudinalAcceleraion.C8 ,18DAF12D,280,311,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AyDurationbyTransversalAcceleraion.C1 ,18DAF12D,312,343,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AyDurationbyTransversalAcceleraion.C2 ,18DAF12D,344,375,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AyDurationbyTransversalAcceleraion.C3 ,18DAF12D,376,407,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AyDurationbyTransversalAcceleraion.C4 ,18DAF12D,408,439,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.AyDurationbyTransversalAcceleraion.C5 ,18DAF12D,440,471,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.MissionDurationbyYawSpeedLevel.C1 ,18DAF12D,472,503,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.MissionDurationbyYawSpeedLevel.C2 ,18DAF12D,504,535,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.MissionDurationbyYawSpeedLevel.C3 ,18DAF12D,536,567,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.MissionDurationbyYawSpeedLevel.C4 ,18DAF12D,568,591,100,0,0,ms,224BA3,624BA3,ff,ECU Activities.PhysicalData.MissionDurationbyYawSpeedLevel.C5 ,18DAF12D,592,615,100,0,0,ms,224BA3,624BA3,ff,ECU Activities.PhysicalData.MissionDurationbyYawSpeedLevel.C6 ,18DAF12D,616,639,100,0,0,ms,224BA3,624BA3,ff,ECU Activities.PhysicalData.MissionDurationbyYawSpeedLevel.C7 ,18DAF12D,640,663,100,0,0,ms,224BA3,624BA3,ff,ECU Activities.PhysicalData.MissionDurationbyYawSpeedLevel.C8 ,18DAF12D,664,679,100,0,0,ms,224BA3,624BA3,ff,ECU Activities.PhysicalData.MissionDurationbyYawSpeedLevel.C9 ,18DAF12D,680,711,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.MissionDurationbySWALevel.C1 ,18DAF12D,712,743,1,0,0,,224BA3,624BA3,4ff,ECU Activities.PhysicalData.MissionDurationbySWALevel.C2 ,18DAF12D,744,767,100,0,0,ms,224BA3,624BA3,ff,ECU Activities.PhysicalData.MissionDurationbySWALevel.C3 ,18DAF12D,768,791,100,0,0,ms,224BA3,624BA3,ff,ECU Activities.PhysicalData.MissionDurationbySWALevel.C4 ,18DAF12D,792,815,100,0,0,ms,224BA3,624BA3,ff,ECU Activities.PhysicalData.MissionDurationbySWALevel.C5 ,18DAF12D,816,839,100,0,0,ms,224BA3,624BA3,ff,ECU Activities.PhysicalData.MissionDurationbySWALevel.C6 ,18DAF12D,840,855,100,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.MissionDurationbySWALevel.C7 ,18DAF12D,856,879,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C1K1 ,18DAF12D,880,903,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C1K2 ,18DAF12D,904,927,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C1K3 ,18DAF12D,928,943,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C1K4 ,18DAF12D,944,959,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C1K5 ,18DAF12D,960,983,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C2K1 ,18DAF12D,984,1007,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C2K2 ,18DAF12D,1008,1031,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C2K3 ,18DAF12D,1032,1047,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C2K4 ,18DAF12D,1048,1063,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C2K5 ,18DAF12D,1064,1087,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C3K1 ,18DAF12D,1088,1111,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C3K2 ,18DAF12D,1112,1135,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C3K3 ,18DAF12D,1136,1151,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C3K4 ,18DAF12D,1152,1167,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C3K5 ,18DAF12D,1168,1191,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C4K1 ,18DAF12D,1192,1215,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C4K2 ,18DAF12D,1216,1239,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C4K3 ,18DAF12D,1240,1255,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C4K4 ,18DAF12D,1256,1271,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C4K5 ,18DAF12D,1272,1287,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C5K1 ,18DAF12D,1288,1303,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C5K2 ,18DAF12D,1304,1319,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C5K3 ,18DAF12D,1320,1335,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C5K4 ,18DAF12D,1336,1351,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C5K5 ,18DAF12D,1352,1367,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C6K1 ,18DAF12D,1368,1383,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C6K2 ,18DAF12D,1384,1399,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C6K3 ,18DAF12D,1400,1415,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C6K4 ,18DAF12D,1416,1431,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C6K5 ,18DAF12D,1432,1447,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C7K1 ,18DAF12D,1448,1463,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C7K2 ,18DAF12D,1464,1479,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C7K3 ,18DAF12D,1480,1495,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C7K4 ,18DAF12D,1496,1511,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C7K5 ,18DAF12D,1512,1527,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C8K1 ,18DAF12D,1528,1543,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C8K2 ,18DAF12D,1544,1559,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C8K3 ,18DAF12D,1560,1575,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C8K4 ,18DAF12D,1576,1591,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C8K5 ,18DAF12D,1592,1607,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C9K1 ,18DAF12D,1608,1623,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C9K2 ,18DAF12D,1624,1639,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C9K3 ,18DAF12D,1640,1655,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C9K4 ,18DAF12D,1656,1663,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C9K5 ,18DAF12D,1664,1679,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C10K1 ,18DAF12D,1680,1695,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C10K2 ,18DAF12D,1696,1711,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C10K3 ,18DAF12D,1712,1727,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C10K4 ,18DAF12D,1728,1735,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C10K5 ,18DAF12D,1736,1751,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C11K1 ,18DAF12D,1752,1767,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C11K2 ,18DAF12D,1768,1783,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C11K3 ,18DAF12D,1784,1799,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C11K4 ,18DAF12D,1800,1807,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C11K5 ,18DAF12D,1808,1815,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C12K1 ,18DAF12D,1816,1823,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C12K2 ,18DAF12D,1824,1831,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C12K3 ,18DAF12D,1832,1839,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C12K4 ,18DAF12D,1840,1847,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C12K5 ,18DAF12D,1848,1855,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C13K1 ,18DAF12D,1856,1863,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C13K2 ,18DAF12D,1864,1871,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C13K3 ,18DAF12D,1872,1879,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C13K4 ,18DAF12D,1880,1887,1,0,0,,224BA3,624BA3,ff,ECU Activities.PhysicalData.BrakingDurationbyPressureLevel.C13K5 ,18DAF12D,24,31,1,0,0,,224BBA,624BBA,ff,Malfunction flags inhibition in development,0:Inhibited;170:Not inhibited ,18DAF12D,24,31,1,0,0,,224BBB,624BBB,ff,Signed Wheel Speed Sensors Configuration,1:None;2:On Front Wheels;3:On Rear Wheels;4:On all Wheels;255:Not configured ,18DAF12D,24,39,.01,0,2,km/h,224BBC,624BBC,ff,FourWheel Reference Speed ,18DAF12D,24,31,1,0,0,,224BBD,624BBD,ff,Ax monitoring inhibition state,0:Ax monitoring not inhibited;170:Ax monitoring inhibited ,18DAF12D,24,31,1,0,0,,224BBE,624BBE,ff,Development frames activation inhibition,0:development frames transmission activated by diag;170:development frames transmission not activated by diag ,18DAF12D,24,31,1,0,0,,224BBF,624BBF,ff,SIDIPIL function inhibition state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,55,10,0,0,m,224BD0,624BD0,1ff,AEBS HBA Threshold Decrease application data.Mileage appli HBA Threshold Decrease 1 ,18DAF12D,48,55,.1,0,1,s,224BD0,624BD0,ff,AEBS HBA Threshold Decrease application data.Duration appli HBA Threshold Decrease 1 ,18DAF12D,56,87,10,0,0,m,224BD0,624BD0,1ff,AEBS HBA Threshold Decrease application data.Mileage appli HBA Threshold Decrease 2 ,18DAF12D,88,95,.1,0,1,s,224BD0,624BD0,ff,AEBS HBA Threshold Decrease application data.Duration appli HBA Threshold Decrease 2 ,18DAF12D,96,127,10,0,0,m,224BD0,624BD0,1ff,AEBS HBA Threshold Decrease application data.Mileage appli HBA Threshold Decrease 3 ,18DAF12D,128,135,.1,0,1,s,224BD0,624BD0,ff,AEBS HBA Threshold Decrease application data.Duration appli HBA Threshold Decrease 3 ,18DAF12D,24,55,10,0,0,m,224BD1,624BD1,1ff,AEBS Braking Gain application data.Mileage appli AEBS Braking Gain 1 ,18DAF12D,48,55,.1,0,1,s,224BD1,624BD1,ff,AEBS Braking Gain application data.Duration appli AEBS Braking Gain 1 ,18DAF12D,56,87,10,0,0,m,224BD1,624BD1,1ff,AEBS Braking Gain application data.Mileage appli AEBS Braking Gain 2 ,18DAF12D,88,95,.1,0,1,s,224BD1,624BD1,ff,AEBS Braking Gain application data.Duration appli AEBS Braking Gain 2 ,18DAF12D,96,127,10,0,0,m,224BD1,624BD1,1ff,AEBS Braking Gain application data.Mileage appli AEBS Braking Gain 3 ,18DAF12D,128,135,.1,0,1,s,224BD1,624BD1,ff,AEBS Braking Gain application data.Duration appli AEBS Braking Gain 3 ,18DAF12D,24,25,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request a1,1:Off request;2:On request;3:no storage ,18DAF12D,26,27,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request a2,1:Off request;2:On request;3:no storage ,18DAF12D,28,29,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request a3,1:Off request;2:On request;3:no storage ,18DAF12D,30,31,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request a4,1:Off request;2:On request;3:no storage ,18DAF12D,32,33,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request a5,1:Off request;2:On request;3:no storage ,18DAF12D,34,35,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request a6,1:Off request;2:On request;3:no storage ,18DAF12D,36,37,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request a7,1:Off request;2:On request;3:no storage ,18DAF12D,38,39,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request a8,1:Off request;2:On request;3:no storage ,18DAF12D,40,47,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration a1 ,18DAF12D,48,55,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration a2 ,18DAF12D,56,63,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration a3 ,18DAF12D,64,71,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration a4 ,18DAF12D,72,79,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration a5 ,18DAF12D,80,87,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration a6 ,18DAF12D,88,95,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration a7 ,18DAF12D,96,103,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration a8 ,18DAF12D,104,111,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration a9 ,18DAF12D,112,143,10,0,0,m,224BD2,624BD2,1ff,AEBS Strong Braking application data.Mileage appli AEBS Strong Braking 1 ,18DAF12D,144,151,.1,0,1,s,224BD2,624BD2,ff,AEBS Strong Braking application data.Duration appli AEBS Strong Braking 1 ,18DAF12D,152,153,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request b1,1:Off request;2:On request;3:no storage ,18DAF12D,154,155,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request b2,1:Off request;2:On request;3:no storage ,18DAF12D,156,157,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request b3,1:Off request;2:On request;3:no storage ,18DAF12D,158,159,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request b4,1:Off request;2:On request;3:no storage ,18DAF12D,160,161,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request b5,1:Off request;2:On request;3:no storage ,18DAF12D,162,163,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request b6,1:Off request;2:On request;3:no storage ,18DAF12D,164,165,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request b7,1:Off request;2:On request;3:no storage ,18DAF12D,166,167,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request b8,1:Off request;2:On request;3:no storage ,18DAF12D,168,175,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration b1 ,18DAF12D,176,183,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration b2 ,18DAF12D,184,191,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration b3 ,18DAF12D,192,199,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration b4 ,18DAF12D,200,207,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration b5 ,18DAF12D,208,215,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration b6 ,18DAF12D,216,223,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration b7 ,18DAF12D,224,231,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration b8 ,18DAF12D,232,239,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration b9 ,18DAF12D,240,271,10,0,0,m,224BD2,624BD2,1ff,AEBS Strong Braking application data.Mileage appli AEBS Strong Braking 2 ,18DAF12D,272,279,.1,0,1,s,224BD2,624BD2,ff,AEBS Strong Braking application data.Duration appli AEBS Strong Braking 2 ,18DAF12D,280,281,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request c1,1:Off request;2:On request;3:no storage ,18DAF12D,282,283,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request c2,1:Off request;2:On request;3:no storage ,18DAF12D,284,285,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request c3,1:Off request;2:On request;3:no storage ,18DAF12D,286,287,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request c4,1:Off request;2:On request;3:no storage ,18DAF12D,288,289,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request c5,1:Off request;2:On request;3:no storage ,18DAF12D,290,291,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request c6,1:Off request;2:On request;3:no storage ,18DAF12D,292,293,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request c7,1:Off request;2:On request;3:no storage ,18DAF12D,294,295,1,0,0,,224BD2,624BD2,ff,AEBS Strong Braking application data.StopLamp Request c8,1:Off request;2:On request;3:no storage ,18DAF12D,296,303,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration c1 ,18DAF12D,304,311,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration c2 ,18DAF12D,312,319,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration c3 ,18DAF12D,320,327,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration c4 ,18DAF12D,328,335,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration c5 ,18DAF12D,336,343,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration c6 ,18DAF12D,344,351,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration c7 ,18DAF12D,352,359,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration c8 ,18DAF12D,360,367,.1,100,1,m/s2,224BD2,624BD2,ff,AEBS Strong Braking application data.Vehicle acceleration c9 ,18DAF12D,368,399,10,0,0,m,224BD2,624BD2,1ff,AEBS Strong Braking application data.Mileage appli AEBS Strong Braking 3 ,18DAF12D,400,407,.1,0,1,s,224BD2,624BD2,ff,AEBS Strong Braking application data.Duration appli AEBS Strong Braking 3 ,18DAF12D,24,25,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request a1,1:Off request;2:On request;3:no storage ,18DAF12D,26,27,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request a2,1:Off request;2:On request;3:no storage ,18DAF12D,28,29,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request a3,1:Off request;2:On request;3:no storage ,18DAF12D,30,31,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request a4,1:Off request;2:On request;3:no storage ,18DAF12D,32,33,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request a5,1:Off request;2:On request;3:no storage ,18DAF12D,34,35,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request a6,1:Off request;2:On request;3:no storage ,18DAF12D,36,37,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request a7,1:Off request;2:On request;3:no storage ,18DAF12D,38,39,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request a8,1:Off request;2:On request;3:no storage ,18DAF12D,40,47,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration a1 ,18DAF12D,48,55,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration a2 ,18DAF12D,56,63,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration a3 ,18DAF12D,64,71,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration a4 ,18DAF12D,72,79,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration a5 ,18DAF12D,80,87,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration a6 ,18DAF12D,88,95,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration a7 ,18DAF12D,96,103,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration a8 ,18DAF12D,104,111,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration a9 ,18DAF12D,112,143,10,0,0,m,224BD3,624BD3,1ff,AEBS Moderate Braking application data.Mileage appli AEBS Moderate Braking 1 ,18DAF12D,144,151,.1,0,1,s,224BD3,624BD3,ff,AEBS Moderate Braking application data.Duration appli AEBS Moderate Braking 1 ,18DAF12D,152,153,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request b1,1:Off request;2:On request;3:no storage ,18DAF12D,154,155,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request b2,1:Off request;2:On request;3:no storage ,18DAF12D,156,157,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request b3,1:Off request;2:On request;3:no storage ,18DAF12D,158,159,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request b4,1:Off request;2:On request;3:no storage ,18DAF12D,160,161,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request b5,1:Off request;2:On request;3:no storage ,18DAF12D,162,163,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request b6,1:Off request;2:On request;3:no storage ,18DAF12D,164,165,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request b7,1:Off request;2:On request;3:no storage ,18DAF12D,166,167,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request b8,1:Off request;2:On request;3:no storage ,18DAF12D,168,175,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration b1 ,18DAF12D,176,183,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration b2 ,18DAF12D,184,191,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration b3 ,18DAF12D,192,199,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration b4 ,18DAF12D,200,207,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration b5 ,18DAF12D,208,215,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration b6 ,18DAF12D,216,223,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration b7 ,18DAF12D,224,231,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration b8 ,18DAF12D,232,239,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration b9 ,18DAF12D,240,271,10,0,0,m,224BD3,624BD3,1ff,AEBS Moderate Braking application data.Mileage appli AEBS Moderate Braking 2 ,18DAF12D,272,279,.1,0,1,s,224BD3,624BD3,ff,AEBS Moderate Braking application data.Duration appli AEBS Moderate Braking 2 ,18DAF12D,280,281,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request c1,1:Off request;2:On request;3:no storage ,18DAF12D,282,283,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request c2,1:Off request;2:On request;3:no storage ,18DAF12D,284,285,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request c3,1:Off request;2:On request;3:no storage ,18DAF12D,286,287,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request c4,1:Off request;2:On request;3:no storage ,18DAF12D,288,289,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request c5,1:Off request;2:On request;3:no storage ,18DAF12D,290,291,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request c6,1:Off request;2:On request;3:no storage ,18DAF12D,292,293,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request c7,1:Off request;2:On request;3:no storage ,18DAF12D,294,295,1,0,0,,224BD3,624BD3,ff,AEBS Moderate Braking application data.StopLamp Request c8,1:Off request;2:On request;3:no storage ,18DAF12D,296,303,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration c1 ,18DAF12D,304,311,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration c2 ,18DAF12D,312,319,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration c3 ,18DAF12D,320,327,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration c4 ,18DAF12D,328,335,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration c5 ,18DAF12D,336,343,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration c6 ,18DAF12D,344,351,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration c7 ,18DAF12D,352,359,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration c8 ,18DAF12D,360,367,.1,100,1,m/s2,224BD3,624BD3,ff,AEBS Moderate Braking application data.Vehicle acceleration c9 ,18DAF12D,368,399,10,0,0,m,224BD3,624BD3,1ff,AEBS Moderate Braking application data.Mileage appli AEBS Moderate Braking 3 ,18DAF12D,400,407,.1,0,1,s,224BD3,624BD3,ff,AEBS Moderate Braking application data.Duration appli AEBS Moderate Braking 3 ,18DAF12D,24,25,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request a1,1:Off request;2:On request;3:no storage ,18DAF12D,26,27,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request a2,1:Off request;2:On request;3:no storage ,18DAF12D,28,29,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request a3,1:Off request;2:On request;3:no storage ,18DAF12D,30,31,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request a4,1:Off request;2:On request;3:no storage ,18DAF12D,32,33,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request a5,1:Off request;2:On request;3:no storage ,18DAF12D,34,35,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request a6,1:Off request;2:On request;3:no storage ,18DAF12D,36,37,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request a7,1:Off request;2:On request;3:no storage ,18DAF12D,38,39,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request a8,1:Off request;2:On request;3:no storage ,18DAF12D,40,47,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration a1 ,18DAF12D,48,55,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration a2 ,18DAF12D,56,63,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration a3 ,18DAF12D,64,71,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration a4 ,18DAF12D,72,79,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration a5 ,18DAF12D,80,87,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration a6 ,18DAF12D,88,95,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration a7 ,18DAF12D,96,103,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration a8 ,18DAF12D,104,111,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration a9 ,18DAF12D,112,143,10,0,0,m,224BD4,624BD4,1ff,AEBS City Braking application data.Mileage appli AEBS City Braking 1 ,18DAF12D,144,159,.01,0,2,kph,224BD4,624BD4,ff,AEBS City Braking application data.VehicleSpeed a ,18DAF12D,160,167,.1,0,1,s,224BD4,624BD4,ff,AEBS City Braking application data.Duration appli AEBS City Braking 1 ,18DAF12D,168,169,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request b1,1:Off request;2:On request;3:no storage ,18DAF12D,170,171,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request b2,1:Off request;2:On request;3:no storage ,18DAF12D,172,173,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request b3,1:Off request;2:On request;3:no storage ,18DAF12D,174,175,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request b4,1:Off request;2:On request;3:no storage ,18DAF12D,176,177,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request b5,1:Off request;2:On request;3:no storage ,18DAF12D,178,179,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request b6,1:Off request;2:On request;3:no storage ,18DAF12D,180,181,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request b7,1:Off request;2:On request;3:no storage ,18DAF12D,182,183,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request b8,1:Off request;2:On request;3:no storage ,18DAF12D,184,191,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration b1 ,18DAF12D,192,199,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration b2 ,18DAF12D,200,207,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration b3 ,18DAF12D,208,215,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration b4 ,18DAF12D,216,223,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration b5 ,18DAF12D,224,231,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration b6 ,18DAF12D,232,239,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration b7 ,18DAF12D,240,247,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration b8 ,18DAF12D,248,255,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration b9 ,18DAF12D,256,287,10,0,0,m,224BD4,624BD4,1ff,AEBS City Braking application data.Mileage appli AEBS City Braking 2 ,18DAF12D,288,303,.01,0,2,kph,224BD4,624BD4,ff,AEBS City Braking application data.VehicleSpeed b ,18DAF12D,304,311,.1,0,1,s,224BD4,624BD4,ff,AEBS City Braking application data.Duration appli AEBS City Braking 2 ,18DAF12D,312,313,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request c1,1:Off request;2:On request;3:no storage ,18DAF12D,314,315,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request c2,1:Off request;2:On request;3:no storage ,18DAF12D,316,317,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request c3,1:Off request;2:On request;3:no storage ,18DAF12D,318,319,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request c4,1:Off request;2:On request;3:no storage ,18DAF12D,320,321,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request c5,1:Off request;2:On request;3:no storage ,18DAF12D,322,323,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request c6,1:Off request;2:On request;3:no storage ,18DAF12D,324,325,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request c7,1:Off request;2:On request;3:no storage ,18DAF12D,326,327,1,0,0,,224BD4,624BD4,ff,AEBS City Braking application data.StopLamp Request c8,1:Off request;2:On request;3:no storage ,18DAF12D,328,335,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration c1 ,18DAF12D,336,343,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration c2 ,18DAF12D,344,351,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration c3 ,18DAF12D,352,359,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration c4 ,18DAF12D,360,367,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration c5 ,18DAF12D,368,375,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration c6 ,18DAF12D,376,383,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration c7 ,18DAF12D,384,391,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration c8 ,18DAF12D,392,399,.1,100,1,m/s2,224BD4,624BD4,ff,AEBS City Braking application data.Vehicle acceleration c9 ,18DAF12D,400,431,10,0,0,m,224BD4,624BD4,1ff,AEBS City Braking application data.Mileage appli AEBS City Braking 3 ,18DAF12D,432,447,.01,0,2,kph,224BD4,624BD4,ff,AEBS City Braking application data.VehicleSpeed c ,18DAF12D,448,455,.1,0,1,s,224BD4,624BD4,ff,AEBS City Braking application data.Duration appli AEBS City Braking 3 ,18DAF12D,24,31,1,0,0,,224BD5,624BD5,ff,AEBS evolved diagnostic activation deactivation,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,39,1,0,0,N·m,224BD6,624BD6,ff,AEBS Braking Levels.MaxPedThreshold.ADAS ,18DAF12D,40,55,1,0,0,N·m,224BD6,624BD6,ff,AEBS Braking Levels.MaxCityThreshold.ADAS ,18DAF12D,56,71,1,0,0,N·m,224BD6,624BD6,ff,AEBS Braking Levels.MaxStrongThreshold.ADAS ,18DAF12D,72,87,1,0,0,N·m,224BD6,624BD6,ff,AEBS Braking Levels.MaxModerateThreshold.ADAS ,18DAF12D,24,31,1,0,0,km/h,224BD7,624BD7,ff,ACC Vehcile Speed Thresholds.Req conf Error ,18DAF12D,24,31,1,0,0,,224BD8,624BD8,ff,Clutch SSF configuration state,0:Activated;170:Deactivated;255:Not configured ,18DAF12D,24,31,1,0,0,,224BD9,624BD9,ff,SWA parameter configuration,1:EPS;2:SWA;255:Not configured ,18DAF12D,24,31,1,0,0,,224BDA,624BDA,ff,ConfigModeSSF1,0:ConfigModeRenault;170:ConfigModeNissan;255:NotConfigured ,18DAF12D,24,31,1,0,0,,224BDB,624BDB,ff,ConfigModeSSF2,0:ConfigModeRenault;170:ConfigModeNissan;255:NotConfigured ,18DAF12D,24,31,1,0,0,,224BF0,624BF0,ff,TPMS Indirect function inhibition state,0:TPMS indirect configuration activated;170:TPMS indirect configuration not activated;255:TPMS indirect configuration not configured ,18DAF12D,24,823,1,0,0,,224BF1,624BF1,4ff,TPMS MappingBlock0 ,18DAF12D,24,823,1,0,0,,224BF2,624BF2,4ff,TPMS MappingBlock1 ,18DAF12D,24,823,1,0,0,,224BF3,624BF3,4ff,TPMS MappingBlock2 ,18DAF12D,24,823,1,0,0,,224BF4,624BF4,4ff,TPMS MappingBlock3 ,18DAF12D,24,823,1,0,0,,224BF5,624BF5,4ff,TPMS MappingBlock4 ,18DAF12D,24,823,1,0,0,,224BF6,624BF6,4ff,TPMS MappingBlock5 ,18DAF12D,24,823,1,0,0,,224BF7,624BF7,4ff,TPMS MappingBlock6 ,18DAF12D,24,823,1,0,0,,224BF8,624BF8,4ff,TPMS MappingBlock7 ,18DAF12D,24,823,1,0,0,,224BF9,624BF9,4ff,TPMS MappingBlock8 ,18DAF12D,24,823,1,0,0,,224BFA,624BFA,4ff,TPMS MappingBlock9 ,18DAF12D,24,39,1,0,0,,224BFB,624BFB,4ff,TPMS FunctionalMappingChecksum ,18DAF12D,24,31,1,0,0,,224BFC,624BFC,1ff,TPMS CarDetectionSensitivityLevel,0:normal;-1:robust;-2:max robust;-3:sensitive (positioning);-4:normal (positioning);-5:robust (positioning);-6:max robust (positioning);1:sensitive ,18DAF12D,24,31,1,0,0,,224BFD,624BFD,ff,TPMS DataStreamLogType,5:CAN - Renault dev frame - TPI data disabled;4:CAN - TPI with only basic functions- Renault dev frame unavailable;3:CAN - TPI- no cog;1:XCP - TPI- fully active and data;0:Disabled;6:CAN - TPI- reduced data- no cog + Renault dev frame ,18DAF12D,24,31,50,0,0,km,224BFE,624BFE,ff,TPMS KmForAutomaticCalibDemand ,18DAF12D,24,31,2,0,0,d,224BFF,624BFF,ff,TPMS DaysForAutomaticCalibDemand ,18DAF12D,24,31,1,0,0,,224C00,624C00,4ff,TPMS WarningIndicatorPunctureFrontLeft ,18DAF12D,24,31,1,0,0,,224C01,624C01,4ff,TPMS WarningIndicatorPunctureFrontRight ,18DAF12D,24,31,1,0,0,,224C02,624C02,4ff,TPMS WarningIndicatorPunctureRearLeft ,18DAF12D,24,31,1,0,0,,224C03,624C03,4ff,TPMS WarningIndicatorPunctureRearRight ,18DAF12D,24,31,1,0,0,,224C04,624C04,4ff,TPMS WarningIndicatorDiffusionFrontLeft ,18DAF12D,24,31,1,0,0,,224C05,624C05,4ff,TPMS WarningIndicatorDiffusionFrontRight ,18DAF12D,24,31,1,0,0,,224C06,624C06,4ff,TPMS WarningIndicatorDiffusionRearLeft ,18DAF12D,24,31,1,0,0,,224C07,624C07,4ff,TPMS WarningIndicatorDiffusionRearRight ,18DAF12D,24,39,5,0,0,Km,224C08,624C08,ff,TPMS CalibrationKmHistory0 ,18DAF12D,24,39,5,0,0,Km,224C09,624C09,ff,TPMS CalibrationKmHistory1 ,18DAF12D,24,39,5,0,0,Km,224C0A,624C0A,ff,TPMS CalibrationKmHistory2 ,18DAF12D,24,39,5,0,0,Km,224C0B,624C0B,ff,TPMS CalibrationKmHistory3 ,18DAF12D,24,39,5,0,0,km,224C0C,624C0C,ff,TPMS WarningKmHistory0 ,18DAF12D,24,39,5,0,0,km,224C0D,624C0D,ff,TPMS WarningKmHistory1 ,18DAF12D,24,39,5,0,0,km,224C0E,624C0E,ff,TPMS WarningKmHistory2 ,18DAF12D,24,39,5,0,0,km,224C0F,624C0F,ff,TPMS WarningKmHistory3 ,18DAF12D,28,31,5,6,0,°C,224C10,624C10,ff,TPMS CalibrationTemperatureHistory0 ,18DAF12D,28,31,5,6,0,°C,224C11,624C11,ff,TPMS CalibrationTemperatureHistory1 ,18DAF12D,28,31,5,6,0,°C,224C12,624C12,ff,TPMS CalibrationTemperatureHistory2 ,18DAF12D,28,31,5,6,0,°C,224C13,624C13,ff,TPMS CalibrationTemperatureHistory3 ,18DAF12D,28,31,5,6,0,°C,224C14,624C14,ff,TPMS WarningTemperatureHistory0 ,18DAF12D,28,31,5,6,0,°C,224C15,624C15,ff,TPMS WarningTemperatureHistory1 ,18DAF12D,28,31,5,6,0,°C,224C16,624C16,ff,TPMS WarningTemperatureHistory2 ,18DAF12D,28,31,5,6,0,°C,224C17,624C17,ff,TPMS WarningTemperatureHistory3 ,18DAF12D,28,39,2,0,0,d,224C18,624C18,ff,TPMS DaysSince1stIgnitionAtCalibrationHistory0 ,18DAF12D,28,39,2,0,0,d,224C19,624C19,ff,TPMS DaysSince1stIgnitionAtCalibrationHistory1 ,18DAF12D,28,39,2,0,0,d,224C1A,624C1A,ff,TPMS DaysSince1stIgnitionAtCalibrationHistory2 ,18DAF12D,24,31,1,0,0,,224C1B,624C1B,ff,TPMS-DaysSince1stIgn.AtCalib.History3 ,18DAF12D,28,39,2,0,0,d,224C1C,624C1C,ff,TPMS DaysSince1stIgnitionAtWarningHistory0 ,18DAF12D,28,39,2,0,0,d,224C1D,624C1D,ff,TPMS DaysSince1stIgnitionAtWarningHistory1 ,18DAF12D,28,39,2,0,0,d,224C1E,624C1E,ff,TPMS DaysSince1stIgnitionAtWarningHistory2 ,18DAF12D,28,39,2,0,0,d,224C1F,624C1F,ff,TPMS DaysSince1stIgnitionAtWarningHistory3 ,18DAF12D,24,31,2,0,0,d,224C20,624C20,ff,TPMS TimeFromLastCalibration ,18DAF12D,24,39,1,0,0,km,224C21,624C21,ff,TPMS KmFromLastCalibration ,18DAF12D,26,27,1,0,0,,224C22,624C22,ff,TPMS CalibStatusRollRadius.7,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,28,29,1,0,0,,224C22,624C22,ff,TPMS CalibStatusRollRadius.6,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,30,31,1,0,0,,224C22,624C22,ff,TPMS CalibStatusRollRadius.5,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,32,33,1,0,0,,224C22,624C22,ff,TPMS CalibStatusRollRadius.4,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,34,35,1,0,0,,224C22,624C22,ff,TPMS CalibStatusRollRadius.3,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,36,37,1,0,0,,224C22,624C22,ff,TPMS CalibStatusRollRadius.2,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,38,39,1,0,0,,224C22,624C22,ff,TPMS CalibStatusRollRadius.1,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,24,25,1,0,0,,224C23,624C23,ff,TPMS CalibStatusRollSpectrum_FL.8,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,26,27,1,0,0,,224C23,624C23,ff,TPMS CalibStatusRollSpectrum_FL.7,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,28,29,1,0,0,,224C23,624C23,ff,TPMS CalibStatusRollSpectrum_FL.6,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,30,31,1,0,0,,224C23,624C23,ff,TPMS CalibStatusRollSpectrum_FL.5,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,32,33,1,0,0,,224C23,624C23,ff,TPMS CalibStatusRollSpectrum_FL.4,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,34,35,1,0,0,,224C23,624C23,ff,TPMS CalibStatusRollSpectrum_FL.3,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,36,37,1,0,0,,224C23,624C23,ff,TPMS CalibStatusRollSpectrum_FL.2,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,38,39,1,0,0,,224C23,624C23,ff,TPMS CalibStatusRollSpectrum_FL.1,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,24,25,1,0,0,,224C24,624C24,ff,TPMS CalibStatusRollSpectrum_FR.8,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,26,27,1,0,0,,224C24,624C24,ff,TPMS CalibStatusRollSpectrum_FR.7,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,28,29,1,0,0,,224C24,624C24,ff,TPMS CalibStatusRollSpectrum_FR.6,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,30,31,1,0,0,,224C24,624C24,ff,TPMS CalibStatusRollSpectrum_FR.5,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,32,33,1,0,0,,224C24,624C24,ff,TPMS CalibStatusRollSpectrum_FR.4,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,34,35,1,0,0,,224C24,624C24,ff,TPMS CalibStatusRollSpectrum_FR.3,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,36,37,1,0,0,,224C24,624C24,ff,TPMS CalibStatusRollSpectrum_FR.2,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,38,39,1,0,0,,224C24,624C24,ff,TPMS CalibStatusRollSpectrum_FR.1,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,24,25,1,0,0,,224C25,624C25,ff,TPMS CalibStatusRollSpectrum_RL.8,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,26,27,1,0,0,,224C25,624C25,ff,TPMS CalibStatusRollSpectrum_RL.7,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,28,29,1,0,0,,224C25,624C25,ff,TPMS CalibStatusRollSpectrum_RL.6,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,30,31,1,0,0,,224C25,624C25,ff,TPMS CalibStatusRollSpectrum_RL.5,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,32,33,1,0,0,,224C25,624C25,ff,TPMS CalibStatusRollSpectrum_RL.4,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,34,35,1,0,0,,224C25,624C25,ff,TPMS CalibStatusRollSpectrum_RL.3,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,36,37,1,0,0,,224C25,624C25,ff,TPMS CalibStatusRollSpectrum_RL.2,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,38,39,1,0,0,,224C25,624C25,ff,TPMS CalibStatusRollSpectrum_RL.1,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,24,25,1,0,0,,224C26,624C26,ff,TPMS CalibStatusRollSpectrum_RR.8,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,26,27,1,0,0,,224C26,624C26,ff,TPMS CalibStatusRollSpectrum_RR.7,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,28,29,1,0,0,,224C26,624C26,ff,TPMS CalibStatusRollSpectrum_RR.6,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,30,31,1,0,0,,224C26,624C26,ff,TPMS CalibStatusRollSpectrum_RR.5,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,32,33,1,0,0,,224C26,624C26,ff,TPMS CalibStatusRollSpectrum_RR.4,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,34,35,1,0,0,,224C26,624C26,ff,TPMS CalibStatusRollSpectrum_RR.3,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,36,37,1,0,0,,224C26,624C26,ff,TPMS CalibStatusRollSpectrum_RR.2,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,38,39,1,0,0,,224C26,624C26,ff,TPMS CalibStatusRollSpectrum_RR.1,2:fine;1:rough;0:not done;3:calibration finished ,18DAF12D,24,119,1,0,0,,224C27,624C27,2ff,TPMS Version ,18DAF12D,24,55,1,0,0,,224C28,624C28,4ff,TPMS DiagnosticDatalist ,18DAF12D,24,39,.2,0,1,s,224C29,624C29,ff,TPMS HighSenModeDiffusionActiveTimer ,18DAF12D,24,39,.2,0,1,s,224C2A,624C2A,ff,TPMS HighSenModePunctureActiveTimer ,18DAF12D,24,31,1,0,0,,224C2B,624C2B,4ff,TPMS HighSenModeActive ,18DAF12D,24,31,2.55,0,0,%,224C2C,624C2C,ff,TPMS WSAModuleOntime ,18DAF12D,24,31,1,0,0,%,224C2D,624C2D,ff,TPMS WRAModuleOntime ,18DAF12D,24,31,1,0,0,,224C2E,624C2E,4ff,TPMS AutomaticAlertByKm ,18DAF12D,24,31,1,0,0,,224C2F,624C2F,4ff,TPMS AutomaticAlertByDays ,18DAF12D,24,31,1,0,0,,224C30,624C30,4ff,TPMS HighSenModeEnabling ,18DAF12D,24,95,1,0,0,,224D00,624D00,4ff,EPB.PhysicalConfiguration ,18DAF12D,40,47,.001,0,3,nu,224D00,624D00,ff,EPB.PhysicalConfiguration.RearGearRatio ,18DAF12D,48,63,1,0,0,kg,224D00,624D00,ff,EPB.PhysicalConfiguration.VehMasse ,18DAF12D,64,79,.001,0,3,m,224D00,624D00,ff,EPB.PhysicalConfiguration.WheelRadius ,18DAF12D,80,95,.0001,0,3,Kg*m²,224D00,624D00,ff,EPB.PhysicalConfiguration.EngineInertia ,18DAF12D,24,39,1,0,0,,224D01,624D01,4ff,EPB.VehicleConfiguration ,18DAF12D,26,27,1,0,0,,224D01,624D01,ff,EPB.VehicleConfiguration.AutoApplyInhibitionMode,0:AutoApplyEnabled;1:AutoApplyInhibited;3:Not Configured ,18DAF12D,28,29,1,0,0,,224D01,624D01,ff,EPB.VehicleConfiguration.StopAndStartMode,0:Not Stop And Start;1:Stop And Start;3:Not Configured ,18DAF12D,30,31,1,0,0,,224D01,624D01,ff,EPB.VehicleConfiguration.SCUVehicleTypeMode,0:Not SCU Vehicle;1:SCU Vehicle;3:Not Configured ,18DAF12D,32,33,1,0,0,,224D01,624D01,ff,EPB.VehicleConfiguration.RNConfig,0:Renault;1:Nissan with opsig;2:Nissan without opsig;3:Not Configured ,18DAF12D,34,35,1,0,0,,224D01,624D01,ff,EPB.VehicleConfiguration.ExternalAutoApplyRequest,0:No External Auto Apply request;1:External Auto Apply Request;3:Not Configured ,18DAF12D,38,39,1,0,0,,224D01,624D01,ff,EPB.VehicleConfiguration.Opsig_Config,0:No Optional Signal EPB status Output;1:Optional Signal EPB status Output;3:Not configured ,18DAF12D,24,31,1,0,0,,224D02,624D02,ff,EPB.Studies_CAN_Frames,0:STD_LOGGER_ON;1:TMO_LOGGER_ON;2:DAA_AG_LOGGER_ON;3:SANDA_LOGGER_ON;255:LOGGER_OFF ,18DAF12D,24,31,1,0,0,,224D03,624D03,ff,EPB.FactoryMode,0:Customer Mode;255:Factory Mode ,18DAF12D,24,239,1,0,0,,224D04,624D04,2ff,EPB.PBC_version ,18DAF12D,24,239,1,0,0,,224D05,624D05,2ff,EPB.Software_Name ,18DAF12D,24,31,.1,0,1,V,224D06,624D06,ff,EPB.ActuatorBatteryVoltageRR ,18DAF12D,24,31,.1,0,1,V,224D07,624D07,ff,EPB.ActuatorBatteryVoltageRL ,18DAF12D,24,31,.2,0,1,A,224D08,624D08,ff,EPB.ActuatorCurrentnominalValueRR ,18DAF12D,24,31,.2,0,1,A,224D09,624D09,ff,EPB.ActuatorCurrentnominalValueRL ,18DAF12D,24,31,1,0,0,%g,224D0A,624D0A,1ff,EPB.VehicleForwardSlope ,18DAF12D,24,31,.1,0,1,kN,224D0B,624D0B,ff,EPB.BrakeForceEstimated ValueRight ,18DAF12D,24,31,.1,0,1,kN,224D0C,624D0C,ff,EPB.BrakeForceEstimated ValueLeft ,18DAF12D,24,31,1,0,0,%,224D0D,624D0D,ff,ClutchPedalPosition ,18DAF12D,24,31,1,0,0,,224D0E,624D0E,ff,EPB.SwitchState,0:Neutral (no operation);1:Apply cmd request (EPB ON);2:Release cmd request (EPB OFF);3:Unavailable ,18DAF12D,24,31,1,0,0,,224D0F,624D0F,ff,EPB.FailureLevel,0:No Failure;1:Reparing Needed- Orange Warning Lamp- Service Warning;2:Red Warning Lamp - STOP lamp ,18DAF12D,24,31,1,0,0,,224D10,624D10,ff,EPB.DynamicBrakingCounter ,18DAF12D,24,31,1,0,0,,224D11,624D11,ff,EPB_BrakeStatusLeft,0:Applied;1:Applying;2:Fully Applied;3:Released;4:Releasing;5:Unknown;6:Init;7:Fully Released - Maintenance Mode;8:Wind Back - Release to Fully Released ,18DAF12D,24,31,1,0,0,,224D12,624D12,ff,EPB_BrakeStatusRight,0:Applied;1:Applying;2:Fully Applied;3:Released;4:Releasing;5:Unknown;6:Init;7:Fully Released - Maintenance Mode;8:Wind Back - Release to Fully Released ,18DAF12D,24,39,1,0,0,°C,224D13,624D13,ff,EPB_BrakeDiscTemperature ,18DAF12D,24,39,1,0,0,°C,224D14,624D14,ff,EPB.Highest BrakeDiscTemperature ,18DAF12D,24,47,1,0,0,km,224D15,624D15,ff,EPB.MileageAtHighestBrakeDiscTemperature ,18DAF12D,24,47,1,0,0,,224D16,624D16,ff,EPB.ManualApplyCounter ,18DAF12D,24,47,1,0,0,,224D17,624D17,ff,EPB.ApplyCounterLess5 ,18DAF12D,24,47,1,0,0,,224D18,624D18,ff,EPB.ApplyCounterLess10 ,18DAF12D,24,47,1,0,0,,224D19,624D19,ff,EPB.ApplyCounterLess20 ,18DAF12D,24,47,1,0,0,,224D1A,624D1A,ff,EPB.ApplyCounterLess25 ,18DAF12D,24,47,1,0,0,,224D1B,624D1B,ff,EPB.ApplyCounterMore25 ,18DAF12D,24,47,1,0,0,,224D1C,624D1C,ff,EPB.ReclampCounterOnWheelTop ,18DAF12D,24,47,1,0,0,,224D1D,624D1D,ff,EPB.ReclampCounterHTR ,18DAF12D,24,39,1,0,0,kph,224D1E,624D1E,ff,EPB.VehicleSpeedRef ,18DAF12D,24,31,1,0,0,,224D1F,624D1F,ff,EPB.ParkingBrakeBindingStatusDisplay,0:Parking Brake Released;1:Parking Brake Applied;2:Unavailable State;3:Re-emission Request ,18DAF12D,24,31,1,0,0,,224D20,624D20,ff,EPB.ParkingBrakeMalfunctionDisplay,0:No EPB Failure;1:Minor EPB Failure;2:Major EPB Failure ,18DAF12D,24,31,1,0,0,,224D21,624D21,ff,EPB.NotImmobilizedVehicleWarning,0:No warning "Vehicle not immobilized" display request;1:Warning "Vehicle not immobilized" display request ,18DAF12D,24,31,1,0,0,,224D22,624D22,ff,EPB.NotTightenedWarning,0:No EPB not tightened warning display requested;1:EPB not tightened warning display requested ,18DAF12D,24,31,1,0,0,,224D23,624D23,ff,EPBTightenRequestUnavailable,0:No EPB tightened request unavailable warning requested;1:EPB tightened request unavailable warning requested;3:EPB tightened request unavailable warning re-emission requested ,18DAF12D,24,31,1,0,0,,224D24,624D24,ff,EPB.BrakePedalRequestDisplay,0:No "brake pedal Request message" display;1:Brake pedal request message to display;3:Brake pedal request message re-emission requested ,18DAF12D,24,31,1,0,0,,224D25,624D25,ff,EPB.DynamicBrakingDisplay,0:No dynamic braking display Request;1:Dynamic braking display request ,18DAF12D,24,31,1,0,0,,224D26,624D26,ff,EPB.TakeOffInhibitionWarning,0:No take off inhibition warning requested;1:Take off inhibition warning requested;2:Unavailable;3:Take off inhibition warning re-emission requested ,18DAF12D,24,31,1,0,0,,224D27,624D27,ff,EPB.LED_State,0:LED Off;1:LED On;3:LED Flashing ,18DAF12D,24,31,1,0,0,,224D28,624D28,ff,EPB.MalfunctionDisplay,0:No EPB malfunction;1:Minor default;2:Major default;3:Unavailable ,18DAF12D,24,31,1,0,0,,224D29,624D29,ff,EPB.RequestBrakeControl,1:Reserved;3:No EPB dynamic braking requested;4:Reserved 4;5:Reserved 5;6:Reserved 6;7:Reserved 7;9:Reserved 9;10:Reserved 10;11:Reserved 11;12:EPB dynamic braking requested;13:Reserved 13;14:Reserved 14;15:Unavailable ,18DAF12D,24,31,.005,0,3,G,224D2A,624D2A,ff,EPB.RequestTargetDeceleration ,18DAF12D,24,31,1,0,0,,224D2B,624D2B,ff,GADE,0:Sleep or Crank fault- Disable DiagMuxDTC;1:AutoACC fault- Disable DiagMuxDTC;2:All fault- Disable DiagMuxDTC;3:All fault- Enable DiagMuxDTC;7:Unavailable ,18DAF12D,24,31,1,0,0,,224D2C,624D2C,ff,BrakeInfoStatus,0:Not used;1:Brake pedal not pressed;2:Brake pedal pressed;3:Not used 3;4:Brake pedal confirmed pressed;5:Not used 5;6:Not used 6;7:Unavailable ,18DAF12D,31,31,1,0,0,,224D2D,624D2D,ff,EPB_IOSwitchOnLed ,18DAF12D,31,31,1,0,0,,224D2E,624D2E,ff,EPB-IOApplyBothActuator ,18DAF12D,31,31,1,0,0,,224D2F,624D2F,ff,EPB-IOReleaseBothActuator ,18DAF12D,24,24,1,0,0,,224D30,624D30,ff,EPB-RC_AssemblyCheck ,18DAF12D,24,24,1,0,0,,224D31,624D31,ff,EPB-RC_MaintenanceOpen ,18DAF12D,24,24,1,0,0,,224D32,624D32,ff,EPB-RC_MaintenanceClose ,18DAF12D,24,39,1,0,0,,22EF01,62EF01,4ff,Supplier fault code specified ,18DAF12D,24,151,1,0,0,,22F010,62F010,2ff,Fingerprint ,18DAF12D,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,18DAF12D,24,103,1,0,0,,22F012,62F012,2ff,Calibration file reference ,18DAF12D,24,103,1,0,0,,22F013,62F013,2ff,Secondary Operational Reference ,18DAF12D,24,47,.05,0,2,km,22F0D0,62F0D0,1ff,Mileage of the last occurence ,18DAF12D,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC Occurence Counter ,18DAF12D,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,18DAF12D,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,18DAF12D,24,111,1,0,0,,22F180,62F180,2ff,Boot SW identification ,18DAF12D,24,55,1,0,0,,22F182,62F182,2ff,CalibrationNumber ,18DAF12D,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,18DAF12D,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,18DAF12D,24,63,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,18DAF12D,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,18DAF12D,24,159,1,0,0,,22F190,62F190,2ff,VIN ,18DAF12D,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,18DAF12D,24,63,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,18DAF12D,24,207,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,18DAF12D,24,103,1,0,0,,22F196,62F196,2ff,exhaustRegulationOrTypeApprovalNumberDataIdentifier ,18DAF12D,24,279,1,0,0,,22F197,62F197,4ff,SystemNameOrEngineType ,18DAF12D,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,18DAF12D,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,18DAF12D,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigurationDataReferenceAfterConfigurationProcess ,18DAF12D,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/ABS-VDC_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Freq Mod) / PWM (Pulse Width Mod) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/APB_Dtcs.csv ================================================ 5012,FC_WHEELSPEED_FAULT 5033,FC_VOLTAGE 5003,FC_ELECTRONIC_ECU 5001,FC_ACTUATOR_LEFT 5000,FC_ACTUATOR_RIGHT 5030,FC_ASSEMBLY_CHECK_NOT_DONE 5032,FC_MAX_BRAKING 5009,FC_BRAKE_STATE_UNKNOWN 5002,FC_EPB_SWITCH 5004,FC_BRAKE_INCOHERENT 5013,FC_INTERSYSTEM_VDC 5014,FC_INTERSYSTEM_ECM 5015,FC_INTERSYSTEM_BCM 5016,FC_INTERSYSTEM_ATCU 5017,FC_INTERSYSTEM_USM 5018,FC_INTERSYSTEM_METER 5019,FC_INTERSYSTEM_IDM 5023,FC_INTERSYSTEM_CAN E140,Lost Communication with ECM E14E,Lost Communication with METER E148,Lost Communication with VDC E141,Lost Communication with ATCU E14F,Lost Communication with BCM E15B,Lost Communication with USM E176,Lost Communication with IDM 5006,FC_UNKNOWN_DTC ================================================ FILE: app/src/main/assets/ZOE_Ph2/APB_Fields.csv ================================================ ,775,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,775,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming ,775,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnostic ,775,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,775,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,775,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,775,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,775,16,23,1,0,0,,1902AF,5902AF,ff,DTCStatusAvailabilityMask ,775,24,31,1,0,0,,1902AF,5902AF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,775,32,47,1,0,0,,1902AF,5902AF,ff,DTCCount ,775,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,775,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,775,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,775,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,775,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,775,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,775,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,775,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,775,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,775,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,775,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,775,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,775,16,39,1,0,0,,1903000000FF,5903000000FF,4ff,DTCRecord ,775,40,47,1,0,0,,1903000000FF,5903000000FF,4ff,DTCSnapshotRecordNumber ,775,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,775,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,775,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,775,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,775,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,775,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,775,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,775,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,775,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,775,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,775,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,775,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,775,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,775,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,775,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,775,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,775,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,775,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,775,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,775,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,20480:FC_ACTUATOR_RIGHT;20481:FC_ACTUATOR_LEFT;20482:FC_EPB_SWITCH;20483:FC_ELECTRONIC_ECU;20484:FC_BRAKE_INCOHERENT;20489:FC_BRAKE_STATE_UNKNOWN;20498:FC_WHEELSPEED_FAULT;20499:FC_INTERSYSTEM_VDC;20500:FC_INTERSYSTEM_ECM;20501:FC_INTERSYSTEM_BCM;20502:FC_INTERSYSTEM_ATCU;20503:FC_INTERSYSTEM_USM;20504:FC_INTERSYSTEM_METER;20505:FC_INTERSYSTEM_IDM;20515:FC_INTERSYSTEM_CAN;20528:FC_ASSEMBLY_CHECK_NOT_DONE;20530:FC_MAX_BRAKING;20531:FC_VOLTAGE;57664:Lost Communication with ECM;57665:Lost Communication with ATCU;57672:Lost Communication with VDC;57678:Lost Communication with METER;57679:Lost Communication with BCM;57691:Lost Communication with USM;20486:FC_UNKNOWN_DTC;57718:Lost Communication with IDM ,775,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,775,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,775,24,39,.0417,0,2,rpm,220201,620201,ff,VDC.WheelSpeedRL ,775,40,55,.0417,0,2,rpm,220201,620201,ff,VDC.WheelSpeedRR ,775,56,71,.0417,0,2,rpm,220201,620201,ff,VDC.WheelSpeedFL ,775,72,87,.0417,0,2,rpm,220201,620201,ff,VDC.WheelSpeedFR ,775,88,94,1,0,0,,220201,620201,ff,VDC.WheelTopRL ,775,96,102,1,0,0,,220201,620201,ff,VDC.WheelTopRR ,775,104,131,.01,0,2,km,220201,620201,ff,VDC.DistanceTotalizer ,775,136,143,.5,0,1,bar,220201,620201,ff,VDC.BrakingPressure ,775,144,155,.001,2000,3,G,220201,620201,ff,VDC.LongitudinalAccelCorrected ,775,160,161,1,0,0,,220201,620201,ff,VDC.StandStillStatus,0:Vehicle not hold;1:Vehicle hold;2:Vehicle hold not possible;3:Not used ,775,162,163,1,0,0,,220201,620201,ff,VDC.DynamicBrakingAvailability,0:Not used;1:Available for Dynamic Braking;2:Not available for Dynamic Braking;3:Unavailable ,775,164,164,1,0,0,,220201,620201,ff,VDC.DynamicBrakingInProgressForEPB,0:EPB dynamic braking in progress;1:EPB dynamic braking not in progress ,775,165,166,1,0,0,,220201,620201,ff,VDC.ABSinRegulation,0:No ABS Regulation;1:ABS in Regulation ,775,24,39,.125,0,1,rpm,220202,620202,ff,ECM.Parameters.EngineRPM ,775,41,55,2,10000,0,Nm,220202,620202,ff,ECM.ECM_EstimatedPWTWheelTorque ,775,56,65,.125,0,1,%,220202,620202,ff,ECM.RawSensor ,775,68,79,.5,800,1,Nm,220202,620202,ff,ECM.MeanEffectiveTorque ,775,80,86,1,0,0,%,220202,620202,ff,ECM.Parameters.ClutchPositionSensor ,775,88,90,1,0,0,,220202,620202,ff,ECM.StopAutoPhase,0:NotInAutoPhase;1:AutoStart;2:IdleStop;3:AutophaseAborted;4:InjectionStopped;5:StartByInjectionOnly;6:ReflexStart;7:Unavailable ,775,91,92,1,0,0,,220202,620202,ff,ECM.PowerTrainStatus,0:Powertrain Stopped;1:Reserved;2:Powertrain Running;3:Powertrain Starting ,775,24,25,1,0,0,,220203,620203,ff,BCM.WakeUpSleepCommand,0:Go To Sleep;1:Reserved 1;2:Reserved 2;3:Wake Up ,775,26,27,1,0,0,,220203,620203,ff,BCM.DriverSeatStatus,0:Unavailable;1:Driver On Seat Detected;2:Driver On Seat NOT Detected;3:Not Used ,775,28,30,1,0,0,,220203,620203,ff,BCM.WakeUpType,0:Full WakeUp Mode;1:Selective WakeUp Mode 1;2:Selective WakeUp Mode 2;3:Selective WakeUp Mode 3;4:Selective WakeUp Mode 4;5:Selective WakeUp Mode 5;6:Selective WakeUp Mode 6;7:Unavailable ,775,32,35,1,0,0,,220203,620203,ff,BCM.VehicleStates,0:Sleeping;1:Not used 1;2:CutoffPending;3:AutoACC - BatTempoLevel;4:Not used 4;5:IgnitionLevel;6:StartingInProgress;7:PowertrainRunning;8:AutoStart;9:EngineSystemStop;10:Not used 10;11:Not used 11;12:Not used 12;13:Not used 13;14:Not used 14;15:Unavailable ,775,36,36,1,0,0,,220203,620203,ff,BCM.EngineStopDriverRequested,0:No Engine Stop Requested by Driver;1:Nominal Engine Stop Requested by Driver ,775,37,39,1,0,0,,220203,620203,ff,BCM.BrakeInfoStatus,0:Not used;1:Brake pedal not pressed;2:Brake pedal pressed;3:Not used 3;4:Brake pedal confirmed pressed;5:Not used 5;6:Not used 6;7:Unavailable ,775,40,42,1,0,0,,220203,620203,ff,BCM.GADE,0:Sleep or Crank fault- Disable DiagMuxDTC;1:AutoACC fault- Disable DiagMuxDTC;2:All fault- Disable DiagMuxDTC;3:All fault- Enable DiagMuxDTC;4:Not used 4;5:Not used 5;6:Not used 6;7:Unavailable ,775,44,45,1,0,0,,220203,620203,ff,BCM.DriverDoorState,0:Unavailable value;1:Driver door closed;2:Driver door open;3:Not used ,775,46,47,1,0,0,,220203,620203,ff,BCM.PassengerDoorState,0:Unavailable value;1:Passenger door closed;2:Passenger door open;3:Not used ,775,48,50,1,0,0,,220203,620203,ff,BCM.DriverStopRequestWhileBattOff,0:Unavailable;1:Reserved For Safety 1;2:No engine stop requested by driver on disconnected 12V battery;3:Reserved For Safety 3;4:Reserved For Safety 4;5:Engine stop requested by driver on disconnected 12V battery;6:Reserved For Safety 6;7:Reserved For Safety 7 ,775,51,51,1,0,0,,220203,620203,ff,BCM.DriverDoorStatusSupposedFailure,0:no supposed Driver's door failure;1:supposed driver's door failure ,775,52,52,1,0,0,,220203,620203,ff,BCM.EngineStopDriverRequestValid,0:Not valid;1:Valid ,775,53,53,1,0,0,,220203,620203,ff,BCM.ProbableFeedBackNeed,0:Customer feedback probably not needed;1:Customer feedback needed ,775,54,55,1,0,0,,220203,620203,ff,BCM.DriverSafetyBeltBuckleState,0:SB Not monitored;1:SB unfastened;2:SB fastened;3:Unavailable ,775,24,27,1,0,0,,220204,620204,ff,ATCU.TransmRangeEngaged_Current,0:Declutched at rest;1:1st range;2:2nd range;3:3rd range;4:4th range;5:5th range;6:6th range;7:7th range;8:8th range;9:reverse;10:neutral or parking;11:CVT in continuous mode;12:9th range;13:10th range;14:Not used;15:AT in limphome ,775,28,31,1,0,0,,220204,620204,ff,ATCU.GearLeverPosition_v2,0:Parking - P;1:Reverse - R;2:Neutral - N;3:Drive - D;4:Manual mode - M;5:L;6:Ds;7:Confirmed lever position (no switch signal);8:B (Brake);9:Not used 9;10:Not used 10;11:Not used 11;12:Not used 12;13:Not used 13;14:Not used 14;15:Not available (init or lever switched failure) ,775,32,33,1,0,0,,220204,620204,ff,ATCU.AT_ParkPositionCommandState,0:Not Used;1:AT park position command engaged;2:AT park position command not engaged;3:Unavailable value ,775,24,24,1,0,0,,220205,620205,ff,USM.IgnitionSupplyConfirmation,0:no primary ignition supply;1:primary ignition supply on ,775,25,26,1,0,0,,220205,620205,ff,USM.NeutralContact,0:Not Used;1:neutral contact not reached;2:neutral contact reached;3:Unavailable ,775,27,28,1,0,0,,220205,620205,ff,USM.RearGearEngaged,0:Not used;1:Rear Gear not Engaged;2:Rear Gear Engaged;3:Unavailable ,775,32,39,.06,-100,2,V,220205,620205,ff,USM.BatteryVoltage ,775,30,31,1,0,0,,220206,620206,ff,IDM.ParkingBrakeBindingRequest,0:No parking brake binding requested;1:Parking brake binding requested ,775,31,31,1,0,0,,220210,620210,ff,CheckSum_Parameters,0:Checksum of the configuration data not correct;1:All checksums correct ,775,24,95,1,0,0,,220213,620213,4ff,VehicleConfiguration ,775,40,47,.001,0,3,nu,220213,620213,ff,VehicleConfiguration.PHY_RearGearRatio ,775,48,63,1,0,0,kg,220213,620213,ff,VehicleConfiguration.PHY_VehMasse ,775,64,79,.001,0,3,m,220213,620213,ff,VehicleConfiguration.PHY_WheelRadius ,775,80,95,.0001,0,3,Kg*m²,220213,620213,ff,VehicleConfiguration.PHY_EngineInertia ,775,24,31,1,0,0,,220214,620214,ff,Studies_CAN_Frames,0:STD_LOGGER_ON;1:TMO_LOGGER_ON;2:DAA_AG_LOGGER_ON;3:SANDA_LOGGER_ON;255:LOGGER_OFF ,775,24,39,1,0,0,,220220,620220,4ff,EPB.ConfigurationMode ,775,26,27,1,0,0,,220220,620220,ff,EPB.ConfigurationMode.StopAndStartMode,0:Not Stop And Start;1:Stop And Start;3:Not Configured ,775,28,29,1,0,0,,220220,620220,ff,EPB.ConfigurationMode.AutoApplyInhibition,0:AutoApply;1:AutoApplyInhibited;3:Not Configured ,775,30,31,1,0,0,,220220,620220,ff,EPB.ConfigurationMode.GearBoxType,0:MT;1:AT- CVT;2:-;3:Not Configured ,775,36,37,1,0,0,,220220,620220,ff,EPB.ConfigurationMode.ExternalAutoApplyRequest,0:No External Auto Apply request;1:External Auto Apply Request;3:Not Configured ,775,38,39,1,0,0,,220220,620220,ff,EPB.ConfigurationMode.RNConfig,0:Renault;1:Nissan;3:Not Configured ,775,24,239,1,0,0,,220221,620221,2ff,Software_Name ,775,24,31,1,0,0,,220222,620222,ff,FactoryMode,0:Customer Mode;255:Factory Mode ,775,24,31,1,0,0,,220223,620223,ff,RAMDownload,170:Disabled;255:Enabled ,775,24,31,.1,0,1,V,220230,620230,ff,EPB.ActuatorBatteryVoltageRR ,775,24,31,.1,0,1,V,220231,620231,ff,EPB.ActuatorBatteryVoltageRL ,775,24,31,.2,0,1,A,220232,620232,ff,EPB.ActuatorCurrentnominalValueRR ,775,24,31,.2,0,1,A,220233,620233,ff,EPB.ActuatorCurrentnominalValueRL ,775,24,31,1,0,0,%g,220234,620234,1ff,VehicleForwardSlope_ ,775,24,31,.1,0,1,kN,220235,620235,ff,EPB.BrakeForceEstimated ValueRight ,775,24,31,.1,0,1,kN,220236,620236,ff,EPB.BrakeForceEstimated ValueLeft ,775,24,31,1,0,0,%,220237,620237,ff,ClutchPedalPosition ,775,24,31,1,0,0,,220238,620238,ff,EPB.SwitchState,0:Apply cmd request (EPB ON);1:Neutral (no operation);2:Release cmd request (EPB OFF);3:Unavailable ,775,24,31,1,0,0,,220239,620239,ff,EPB.FailureLevel,0:No Failure;1:Orange Warning - Spanner;2:Red Warning - STOP lamp;3:Not Used ,775,24,31,1,0,0,,22023A,62023A,ff,EPB.DynamicBrakingCounter ,775,24,31,1,0,0,,220240,620240,ff,EPB_BrakeStatusLeft,0:Applied;1:Applying;2:Fully Applied;3:Released;4:Releasing;5:Unknown;6:Init;7:Fully Released - Maintenance Mode;8:Wind Back - Release to Fully Released ,775,24,31,1,0,0,,220241,620241,ff,EPB_BrakeStatusRight,0:Applied;1:Applying;2:Fully Applied;3:Released;4:Releasing;5:Unknown;6:Init;7:Fully Released - Maintenance Mode;8:Wind Back - Release to Fully Released ,775,24,39,1,0,0,°C,220242,620242,ff,EPB_BrakeDiscTemperature ,775,24,39,1,0,0,°C,220243,620243,ff,EPB.Highest BrakeDiscTemperature ,775,24,47,1,0,0,km,220244,620244,ff,EPB.MileageAtHighestBrakeDiscTemperature ,775,24,47,1,0,0,,220245,620245,ff,EPB.ManualApplyCounter ,775,24,47,1,0,0,,220246,620246,ff,EPB.ApplyCounterLess5 ,775,24,47,1,0,0,,220247,620247,ff,EPB.ApplyCounterLess10 ,775,24,47,1,0,0,,220248,620248,ff,EPB.ApplyCounterLess20 ,775,24,47,1,0,0,,220249,620249,ff,EPB.ApplyCounterLess25 ,775,24,47,1,0,0,,22024A,62024A,ff,EPB.ApplyCounterMore25 ,775,24,47,1,0,0,,22024B,62024B,ff,EPB.ReclampCounterOdo ,775,24,47,1,0,0,,22024C,62024C,ff,EPB.ReclampCounterHTR ,775,24,39,1,0,0,kph,22024D,62024D,ff,EPB.VehicleSpeedRef ,775,30,31,1,0,0,,22024E,62024E,ff,EPB.ParkingBrakeBindingStatusDisplay,0:Parking Brake Released;1:Parking Brake Applied;2:Unavailable State;3:Re-emission Request ,775,30,31,1,0,0,,22024F,62024F,ff,EPB.ParkingBrakeMalfunctionDisplay,0:No APB Failure;1:Minor APB Failure;2:Major APB Failure ,775,31,31,1,0,0,,220250,620250,ff,EPB.NotImmobilizedVehicleWarning,0:No warning "Vehicle not immobilized" display request;1:Warning "Vehicle not immobilized" display request ,775,31,31,1,0,0,,220251,620251,ff,EPB.NotTightenedWarning,0:No EPB not tightened warning display requested;1:EPB not tightened warning display requested ,775,30,31,1,0,0,,220252,620252,ff,EPB.TightenedRequestUnavailable,0:No Warning display request;1:Tightened request unavailable warning;3:Tightened request unavailable warning re-emission request ,775,30,31,1,0,0,,220253,620253,ff,EPB.BrakePedalRequestDisplay,0:No "brake pedal Request message" display;1:Brake pedal request message to display;2:Not used;3:Brake pedal request message re-emission requested ,775,31,31,1,0,0,,220254,620254,ff,EPB.DynamicBrakingDisplay,0:No dynamic braking display Request;1:Dynamic braking display request ,775,30,31,1,0,0,,220255,620255,ff,EPB.TakeOffInhibitionWarning,0:No take off inhibition warning requested;1:Take off inhibition warning requested;2:Unavailable;3:Take off inhibition warning re-emission requested ,775,30,31,1,0,0,,220256,620256,ff,EPB.LED_State,0:LED Off;1:LED On;3:LED Flashing ,775,30,31,1,0,0,,220257,620257,ff,EPB.MalfunctionDisplay,0:No EPB default;1:Minor EPB default;2:Major EPB default;3:Unavailable ,775,28,31,1,0,0,,220258,620258,ff,EPB.RequestBrakeControl,1:Reserved;3:No EPB dynamic braking requested;4:Reserved 4;5:Reserved 5;6:Reserved 6;7:Reserved 7;9:Reserved 9;10:Reserved 10;11:Reserved 11;12:EPB dynamic braking requested;13:Reserved 13;14:Reserved 14;15:Unavailable ,775,24,31,.005,0,3,,220259,620259,ff,EPB.RequestTargetDeceleration ,775,24,31,1,0,0,,220260,620260,ff,PresenceCounter ,775,29,31,1,0,0,,220262,620262,ff,BrakeInfoStatus,0:Not used;1:Brake pedal not pressed;2:Brake pedal pressed;3:Not used 3;4:Brake pedal confirmed pressed;5:Not used 5;6:Not used 6;7:Unavailable ,775,31,31,1,0,0,,220263,620263,ff,IgnitionSupplyConfirmation,0:no primary ignition supply;1:primary ignition supply on ,775,30,31,1,0,0,,220264,620264,ff,PowerTrainStatus,0:Powertrain Stopped;1:Reserved;2:Powertrain Running;3:Powertrain Starting ,775,29,31,1,0,0,,220265,620265,ff,GADE,0:Sleep or Crank fault- Disable DiagMuxDTC;1:AutoACC fault- Disable DiagMuxDTC;2:All fault- Disable DiagMuxDTC;3:All fault- Enable DiagMuxDTC;4:Not used 4;5:Not used 5;6:Not used 6;7:Unavailable ,775,24,31,1,0,0,,220266,620266,ff,EPBVehicleSpeedRef ,775,26,31,1,0,0,,220267,620267,ff,LastBrakeOperationLeft,0:None (Reset);1:AUTOAPPLY_APPLY_DEMAND;2:AUTOADJUST_APPLY_DEMAND;3:AUTOADJUST_RELEASE_DEMAND;6:DAA_DEMAND;7:DSD_REDUCED_CLAMP_APPLY_DEMAND;8:DSD_APPLY_DEMAND;9:DSD_RELEASE_DEMAND;10:DYNAMIC_SWITCH_RELEASE_DEMAND;12:HTR_DEMAND;13:HU_FUNCTION_APPLY_DEMAND;14:HU_FUNCTION_HOLD;15:HU_FUNCTION_RELEASE_DEMAND;16:LIMP_HOME_SWITCH_RELEASE_DEMAND;17:MCR_DEMAND;18:RECLAMP_DEMAND;19:RCD_APPLY_DEMAND;20:RCD_RELEASE_DEMAND;22:RWU_APPLY_DEMAND;23:RWU_HOLD_DEMAND;24:RWU_RELEASE_DEMAND;25:STATIC_SWITCH_APPLY_DEMAND;26:STATIC_SWITCH_RELEASE_DEMAND;27:STOA_DEMAND;28:DIAG_REL_TO_SERVICE_POSITION_DEMAND;30:DIAG_APPLY_DEMAND;31:DIAG_RELEASE_DEMAND;32:ASSEMBLY_CHECK_DEMAND ,775,24,31,1,0,0,,220268,620268,ff,LeftBrakeState,0:Applied;1:Applying;2:Fully Applied;3:Released;4:Releasing;5:Unknown;6:Init;7:Fully Released - Maintenance Mode;8:Wind Back - Release to Fully Released ,775,24,31,1,0,0,,220269,620269,ff,RightBrakeState,0:Applied;1:Applying;2:Fully Applied;3:Released;4:Releasing;5:Unknown;6:Init;7:Fully Released - Maintenance Mode;8:Wind Back - Release to Fully Released ,775,24,31,.1,0,1,V,220270,620270,ff,BatteryVoltage_AD_Value ,775,24,31,.1,0,1,kN,220271,620271,ff,BrakeForceLeft ,775,24,31,.1,0,1,kN,220272,620272,ff,BrakeForceRight ,775,24,31,1,0,0,%g,220274,620274,1ff,VehicleForwardSlope ,775,28,31,1,0,0,,220276,620276,ff,VehicleStates,0:Sleeping;1:Not used 1;2:CutoffPending;3:AutoACC - BatTempoLevel;4:Not used 4;5:IgnitionLevel;6:StartingInProgress;7:PowertrainRunning;8:AutoStart;9:EngineSystemStop;10:Not used 10;11:Not used 11;12:Not used 12;13:Not used 13;14:Not used 14;15:Unavailable ,775,26,31,1,0,0,,220277,620277,ff,LastBrakeOperationRight,0:None (Reset);1:AUTOAPPLY_APPLY_DEMAND;2:AUTOADJUST_APPLY_DEMAND;3:AUTOADJUST_RELEASE_DEMAND;6:DAA_DEMAND;7:DSD_REDUCED_CLAMP_APPLY_DEMAND;8:DSD_APPLY_DEMAND;9:DSD_RELEASE_DEMAND;10:DYNAMIC_SWITCH_RELEASE_DEMAND;12:HTR_DEMAND;13:HU_FUNCTION_APPLY_DEMAND;14:HU_FUNCTION_HOLD;15:HU_FUNCTION_RELEASE_DEMAND;16:LIMP_HOME_SWITCH_RELEASE_DEMAND;17:MCR_DEMAND;18:RECLAMP_DEMAND;19:RCD_APPLY_DEMAND;20:RCD_RELEASE_DEMAND;22:RWU_APPLY_DEMAND;23:RWU_HOLD_DEMAND;24:RWU_RELEASE_DEMAND;25:STATIC_SWITCH_APPLY_DEMAND;26:STATIC_SWITCH_RELEASE_DEMAND;27:STOA_DEMAND;28:DIAG_REL_TO_SERVICE_POSITION_DEMAND;30:DIAG_APPLY_DEMAND;31:DIAG_RELEASE_DEMAND;32:ASSEMBLY_CHECK_DEMAND ,775,29,31,1,0,0,,220278,620278,ff,BindingStatusDisplay,0:No display request (APB is released);1:APB is tightened;2:APB is tightened re-emission;3:APB state is unknown;4:Not used 4;5:Not used 5;6:Not used 6;7:Unavailable ,775,30,31,1,0,0,,220279,620279,ff,ParkingBrakeMalfunctionDisplay,0:No EPB default;1:Minor EPB default;2:Major EPB default;3:Unavailable ,775,31,31,1,0,0,,220280,620280,ff,NotImmobilizedVehicleWarning,0:No warning "Vehicle not immobilized" display request;1:Warning "Vehicle not immobilized" display request ,775,31,31,1,0,0,,220281,620281,ff,NotTightenedWarning,0:No EPB not tightened warning display requested;1:EPB not tightened warning display requested ,775,30,31,1,0,0,,220282,620282,ff,TightenRequestUnavailable,0:No EPB tightened request unavailable warning requested;1:EPB tightened request unavailable warning requested;2:Not used;3:EPB tightened request unavailable warning re-emission requested ,775,30,31,1,0,0,,220283,620283,ff,APBBrakePedalRequestDisplay,0:No "brake pedal Request message" display;1:Brake pedal request message to display;2:Not used;3:Brake pedal request message re-emission requested ,775,31,31,1,0,0,,220284,620284,ff,DynamicBrakingDisplay,0:No dynamic braking display Request;1:Dynamic braking display request ,775,30,31,1,0,0,,220285,620285,ff,TakeOffInhibitionWarning,0:No take off inhibition warning requested;1:Take off inhibition warning requested;2:Unavailable;3:Take off inhibition warning re-emission requested ,775,30,31,1,0,0,,220286,620286,ff,LED_Status,0:LED Off;1:LED On;3:LED Flashing ,775,24,31,1,0,0,,220287,620287,ff,DTC_Event_Status,0:event buffered (true/false);1:event re-established (true/false) ,775,30,31,1,0,0,,220288,620288,ff,SwitchState,0:Apply cmd Request;1:Neutral position;2:Release cmd Request;3:Unavailable ,775,31,31,1,0,0,,220290,620290,ff,IOCTRL.SwitchOnLed_Start ,775,31,31,1,0,0,,220291,620291,ff,IOCTRL.ApplyBothActuator_Start ,775,31,31,1,0,0,,220292,620292,ff,IOCTRL.ReleaseBothActuator_Start ,775,24,31,1,0,0,,22EF01,62EF01,ff,SupplierFaultID,0:0;1:1;2:2;3:3;4:4;5:5;6:6;7:7;8:8;9:9;10:10;11:11;12:12;13:13;14:14;15:15;16:16;17:17;18:18;19:19;20:20;21:21;22:22;23:23;24:24;25:25;26:26;27:27;28:28;29:29;30:30;31:31;32:32;33:33;34:34;35:35;36:36;37:37;38:38;39:39;40:40;41:41;42:42;43:43;44:44;45:45;46:46;47:47;48:48;49:49;50:50;51:51;52:52;53:53;54:54;55:55;56:56;57:57;58:58;59:59;60:60;61:61;62:62;63:63;64:64;65:65;66:66;67:67;68:68;69:69;70:70;71:71;72:72;73:73;74:74;75:75;76:76;77:77;78:78;79:79;80:80;81:81;82:82;83:83;84:84;85:85;86:86;87:87;88:88;89:89;90:90;91:91;92:92;93:93;94:94;95:95;96:96;97:97;98:98;99:99;100:100;101:101;102:102;103:103;104:104;105:105;106:106;107:107;108:108;109:109;110:110;111:111;112:112;113:113;114:114;115:115;116:116;117:117;118:118;119:119;120:120;121:121;122:122;123:123;124:124;125:125;126:126;127:127;128:128;129:129;130:130;131:131;132:132;133:133;134:134;135:135;136:136;137:137;138:138;139:139;140:140;141:141;142:142;143:143;144:144;145:145;146:146;147:147 ,775,24,151,1,0,0,,22F010,62F010,4ff,programmingOperationFingerPrint ,775,24,95,1,0,0,,22F011,62F011,2ff,IndexSrvData ,775,24,103,1,0,0,,22F012,62F012,2ff,Operational Reference ,775,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,775,28,31,1,0,0,,22F0D1,62F0D1,ff,DTC_Occurrence ,775,24,63,1,0,0,,22F180,62F180,4ff,bootSoftwareIdentification ,775,24,103,1,0,0,,22F182,62F182,2ff,CalibrationNumber ,775,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,775,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,775,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,775,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,775,24,159,1,0,0,,22F190,62F190,2ff,VIN ,775,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,775,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,775,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,775,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,775,24,103,1,0,0,,22F1A1,62F1A1,2ff,SparePartNumberNissan ,775,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigurationFileReferenceLink_N ,775,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/APB_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adj. failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or sys. operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/BCB-OBC_Dtcs.csv ================================================ 043D,Air conditionned Interlock 030C,BCM (Body Control Module) 0680,Blue Led 0309,CAN 0664,Capacity module 0613,Charge yield 0602,Charging stop 046F,Cooling temperature 0466,Cooling Temperature Sensor 0620,CPU temperature 0622,CPU Temperature sensor 0627,Driver Flyback 0668,Earth current sensor 0621,Electronic card voltage supply 0630,Electronic power driver 0631,Electronic power driver temperature 0632,Electronic power driver temperature sensor 030D,EVC 0690,External power supply 043B,Fuse interlock 0654,Hot Spot Input Module Temperature 0437,HV Battery interlock 066B,Input filter i 066A,Input filter temperature 0623,Internal power supply voltage (+5V) 0436,Junction box hood interlock 0305,Lithium Battery Controler 0669,Mains communication line 0646,Mains current regulation 0667,Mains differential current sensor 0663,Mains ground 0640,Mains identification 0648,Mains leakage 0647,Mains locking input line 0662,Mains locking motor command 064D,Mains mono phased voltage sensors 066C,Mains neutral/phase3 0642,Mains phase 1 current 065E,Mains phase 1 current sensor 064A,Mains phase 1 voltage sensor 0643,Mains phase 2 current 065F,Mains phase 2 current sensor 064B,Mains phase 2 voltage sensor 0644,Mains phase 3 current 0660,Mains phase 3 current sensor 064C,Mains phase 3 voltage sensor 0665,Mains phase current sensor 0645,Mains phase mono current 0666,Mains phase voltage sensor 0649,Mains phases voltage 0438,Mains plug interlock 0671,Neutral current regulation 0670,Neutral current sensor 0439,PEB interlock 043A,PEB neutral interlock 06A0,PLGW card 043E,PTC interlock 0626,Rectifier micro-controler 0681,Red Led 043C,Relay box interlock 0612,S2 relay control 0625,SPI communication ================================================ FILE: app/src/main/assets/ZOE_Ph2/BCB-OBC_Fields.csv ================================================ ,18DAF1DE,0,0,1,0,0,,1081,5081,ff,StartDiagnosticSession.Default ,18DAF1DE,0,0,1,0,0,,1085,5085,ff,StartDiagnosticSession.Programming ,18DAF1DE,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.ExtendedDiagnostic ,18DAF1DE,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,18DAF1DE,16,23,1,0,0,,1902AF,5902AF,ff,DTCStatusAvailabilityMask ,18DAF1DE,24,39,1,0,0,,1902AF,5902AF,ff,DTCDeviceAndFailureTypeOBD ,18DAF1DE,40,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature;241:Safety Case 1;242:Safety Case 2;243:Multiple Failure;244:Temperature too Low;245:Negative Loop Error;246:Positive Loop Error;247:Initialisation not valid;248:Overspeed;249:Limp Home;250:Specific Supplier;251:-;252:--;253:Drift low;254:Drift high ,18DAF1DE,44,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType.ManufacturerOrSupplier ,18DAF1DE,48,48,1,0,0,,1902AF,5902AF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,18DAF1DE,49,49,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1DE,50,50,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1DE,51,51,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1DE,52,52,1,0,0,,1902AF,5902AF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1DE,53,53,1,0,0,,1902AF,5902AF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1DE,54,54,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1DE,55,55,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1DE,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,18DAF1DE,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,18DAF1DE,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,18DAF1DE,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,18DAF1DE,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,18DAF1DE,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,18DAF1DE,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,18DAF1DE,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,18DAF1DE,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,18DAF1DE,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,18DAF1DE,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,18DAF1DE,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,18DAF1DE,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,18DAF1DE,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,18DAF1DE,16,39,1,0,0,,190600000084,590600000084,4ff,DTCRecord ,18DAF1DE,40,47,1,0,0,,190600000084,590600000084,ff,StatusOfDTC ,18DAF1DE,56,63,1,0,0,,190600000084,590600000084,ff,DTCExtendedData.DTCOccurrenceCounter_2 ,18DAF1DE,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord ,18DAF1DE,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC ,18DAF1DE,56,79,1,0,0,km,190600000085,590600000085,ff,DTCExtendedData.DTCLastDiseappearMileage ,18DAF1DE,16,39,1,0,0,,190600000086,590600000086,4ff,DTCRecord ,18DAF1DE,40,47,1,0,0,,190600000086,590600000086,ff,StatusOfDTC ,18DAF1DE,56,79,1,0,0,km,190600000086,590600000086,ff,DTCExtendedData.DTCTravelledDistanceFailurePresent ,18DAF1DE,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord ,18DAF1DE,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC ,18DAF1DE,56,79,1,0,0,km,190600000087,590600000087,ff,DTCExtendedData.DTCFirstAppearMileage ,18DAF1DE,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,18DAF1DE,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,18DAF1DE,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,18DAF1DE,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,18DAF1DE,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,18DAF1DE,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,18DAF1DE,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,18DAF1DE,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,18DAF1DE,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,18DAF1DE,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,18DAF1DE,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,18DAF1DE,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,1:296H5;2:296H0 ,18DAF1DE,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,1:296H5 ,18DAF1DE,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,1:HMLGT ,18DAF1DE,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,18DAF1DE,16,151,1,0,0,,2181,6181,2ff,Vin In Ascii ,18DAF1DE,152,167,1,0,0,,2181,6181,4ff,Vin CRC ,18DAF1DE,16,39,1,0,0,,2184,6184,4ff,ITG Supplier Number ,18DAF1DE,40,47,1,0,0,,2184,6184,2ff,Traceability Factory Code ,18DAF1DE,48,143,1,0,0,,2184,6184,2ff,Traceability Serial Number ,18DAF1DE,16,103,1,0,0,,21B7,61B7,4ff,Configuration of Electrical Vehicle Networks ,18DAF1DE,16,103,1,0,0,,21B8,61B8,4ff,List of Electrical Vehicle ECUs with After-sales diagnostic ,18DAF1DE,16,23,1,0,0,,21EF,61EF,2ff,Hardware Part Number 1 ,18DAF1DE,24,31,1,0,0,,21EF,61EF,2ff,Hardware Part Number 2 ,18DAF1DE,32,39,1,0,0,,21EF,61EF,2ff,Hardware Part Number 3 ,18DAF1DE,40,47,1,0,0,,21EF,61EF,2ff,Hardware Part Number 4 ,18DAF1DE,48,55,1,0,0,,21EF,61EF,2ff,Hardware Part Number 5 ,18DAF1DE,56,63,1,0,0,,21EF,61EF,2ff,Hardware Part Number 6 ,18DAF1DE,64,71,1,0,0,,21EF,61EF,2ff,Hardware Part Number 7 ,18DAF1DE,72,79,1,0,0,,21EF,61EF,2ff,Hardware Part Number 8 ,18DAF1DE,80,87,1,0,0,,21EF,61EF,2ff,Hardware Part Number 9 ,18DAF1DE,88,95,1,0,0,,21EF,61EF,2ff,Hardware Part Number 10 ,18DAF1DE,96,103,1,0,0,,21EF,61EF,2ff,Software Part Number 1 ,18DAF1DE,104,111,1,0,0,,21EF,61EF,2ff,Software Part Number 2 ,18DAF1DE,112,119,1,0,0,,21EF,61EF,2ff,Software Part Number 3 ,18DAF1DE,120,127,1,0,0,,21EF,61EF,2ff,Software Part Number 4 ,18DAF1DE,128,135,1,0,0,,21EF,61EF,2ff,Software Part Number 5 ,18DAF1DE,136,143,1,0,0,,21EF,61EF,2ff,Software Part Number 6 ,18DAF1DE,144,151,1,0,0,,21EF,61EF,2ff,Software Part Number 7 ,18DAF1DE,152,159,1,0,0,,21EF,61EF,2ff,Software Part Number 8 ,18DAF1DE,160,167,1,0,0,,21EF,61EF,2ff,Software Part Number 9 ,18DAF1DE,168,175,1,0,0,,21EF,61EF,2ff,Software Part Number 10 ,18DAF1DE,16,55,1,0,0,,21F0,61F0,2ff,PartNumber.LowerPart ,18DAF1DE,56,63,1,0,0,,21F0,61F0,4ff,DiagnosticIdentificationCode ,18DAF1DE,64,87,1,0,0,,21F0,61F0,4ff,SupplierNumber ,18DAF1DE,88,127,1,0,0,,21F0,61F0,2ff,HardwareNumber.LowerPart ,18DAF1DE,128,143,1,0,0,,21F0,61F0,4ff,SoftwareNumber ,18DAF1DE,144,159,1,0,0,,21F0,61F0,4ff,EditionNumber ,18DAF1DE,160,175,1,0,0,,21F0,61F0,4ff,CalibrationNumber ,18DAF1DE,176,183,1,0,0,,21F0,61F0,ff,PartNumber.BasicPartList,1:296H5;2:296H0 ,18DAF1DE,184,191,1,0,0,,21F0,61F0,ff,HardwareNumber.BasicPartList,1:296H5 ,18DAF1DE,192,199,1,0,0,,21F0,61F0,ff,ApprovalNumber.BasicPartList,1:HMLGT ,18DAF1DE,200,207,1,0,0,,21F0,61F0,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,18DAF1DE,16,55,1,0,0,,21F1,61F1,2ff,ApprovalNumber.LowerPart ,18DAF1DE,56,95,1,0,0,,21F1,61F1,2ff,ProgrammingSiteReference ,18DAF1DE,96,135,1,0,0,,21F1,61F1,2ff,ProgrammingToolReference ,18DAF1DE,136,143,1,0,0,,21F1,61F1,ff,NumberOfReprogrammings ,18DAF1DE,144,167,1,0,0,,21F1,61F1,4ff,DateOfReprogramming ,18DAF1DE,168,183,1,0,0,,21F1,61F1,4ff,TimeOfReprogramming ,18DAF1DE,184,191,1,0,0,,21F1,61F1,ff,SaveMarking ,18DAF1DE,192,207,1,0,0,,21F1,61F1,4ff,CrcOfLogSave ,18DAF1DE,24,55,1,0,0,,222000,622000,1ff,DIDs supported in range [$2001 - $2020],0:not supported;1:supported ,18DAF1DE,24,39,.0625,3200,2,A,222001,622001,ff,($2001) Mains phase 1 current RMS value ,18DAF1DE,24,39,.0625,0,2,V,222002,622002,ff,($2002) CPU voltage supply from BI ,18DAF1DE,29,31,1,0,0,,222003,622003,ff,($2003) Junction box 2 state,0:Init;1:Charge;4:Wait;5:Power Off/Sleep ,18DAF1DE,24,31,1,0,0,%,222004,622004,ff,($2004) System Relative Temperature in % ,18DAF1DE,24,39,1,0,0,min,222005,622005,ff,($2005) Relative time since 1st ignition truncated from CAN (HEVC) ,18DAF1DE,24,55,1,0,0,,225000,625000,1ff,DIDs supported in range [$5001 - $5020],0:no supply;1:powered ,18DAF1DE,24,47,1,0,0,,225001,625001,ff,($5001) Plugging counter ,18DAF1DE,24,47,1,0,0,,225002,625002,ff,($5002) Wake Up counter ,18DAF1DE,31,31,1,0,0,,225003,625003,ff,($5003) Raw A/C plug interlock value,0:open;1:closed ,18DAF1DE,31,31,1,0,0,,225004,625004,ff,Buck IGBT drivers power supply activation,0:no supply;1:powered ,18DAF1DE,31,31,1,0,0,,225005,625005,ff,($5005) CAN activity for JB2,0:No activity;1:Activity ,18DAF1DE,31,31,1,0,0,,225006,625006,ff,Ground presence,0:present;1:absent ,18DAF1DE,25,31,1,0,0,%,225007,625007,ff,($5007) MMI Green LED PWM request ,18DAF1DE,31,31,1,0,0,,225008,625008,ff,($5008) Raw JB2 hood plug interlock value,0:open;1:closed ,18DAF1DE,31,31,1,0,0,,225009,625009,ff,($5009) Raw HV Battery plug interlock value,0:open;1:closed ,18DAF1DE,31,31,1,0,0,,22500A,62500A,ff,Raw current limiter switch value,0:no limit;1:limited ,18DAF1DE,31,31,1,0,0,,22500B,62500B,ff,($500B) Raw mains interlock value,0:open;1:closed ,18DAF1DE,31,31,1,0,0,,22500C,62500C,ff,($500C) Mains tri phases permutation,0:v1/v2/v3 off;1:v1/v2/v3 on ,18DAF1DE,31,31,1,0,0,,22500D,62500D,ff,($500D) Mains voltage presence,0:Absent;1:Present ,18DAF1DE,31,31,1,0,0,,22500E,62500E,ff,($500E) Wake-Up request from Mains or plug presence,0:No wake-up request;1:Wake-up request ,18DAF1DE,31,31,1,0,0,,22500F,62500F,ff,($500F) Raw PEB plug interlock value,0:open;1:closed ,18DAF1DE,31,31,1,0,0,,225010,625010,ff,($5010) Raw PEB neutral interlock value,0:open;1:closed ,18DAF1DE,31,31,1,0,0,,225011,625011,ff,($5011) Raw PTC plug interlock value,0:open;1:closed ,18DAF1DE,31,31,1,0,0,,225012,625012,ff,($5012) Mains phase 1-2 voltage presence,0:Absent;1:Present ,18DAF1DE,31,31,1,0,0,,225013,625013,ff,($5013) Mains phase 2-3 voltage presence,0:Absent;1:Present ,18DAF1DE,31,31,1,0,0,,225014,625014,ff,($5014) Mains phase 3-1 voltage presence,0:Absent;1:Present ,18DAF1DE,30,31,1,0,0,,225015,625015,ff,($5015) Wake-Up / Sleep request from EVC,0:GoToSleep;1:Reserved1;2:Reserved2;3:WakeUp ,18DAF1DE,29,31,1,0,0,,225016,625016,ff,($5016) Junction box 2 state request from EVC,0:init;1:Charge;4:Wait;5:Power Off/Sleep ,18DAF1DE,29,31,1,0,0,,225017,625017,ff,($5017) Mains current type,0:Nok;1:AC mono;2:AC tri;3:DC;4:AC bi ,18DAF1DE,30,31,1,0,0,,225018,625018,ff,($5018) Mains plug unlocking CAN request,0:Unavailable;1:Unlock request;2:No unlock request ,18DAF1DE,30,31,1,0,0,,225019,625019,ff,($5019) Memorized value of the wake up activation,1:Wake-up activated;2:Wake-up deactivated ,18DAF1DE,31,31,1,0,0,,22501A,62501A,ff,($501A) BCM wake-up by wire,0:No wake-up;1:Wake-up ,18DAF1DE,31,31,1,0,0,,22501B,62501B,ff,Current limiter illumination request,0:Off;1:On ,18DAF1DE,31,31,1,0,0,,22501C,62501C,ff,($501C) S2 relay control,0:Open;1:Close ,18DAF1DE,30,31,1,0,0,,22501D,62501D,ff,($501D) Charge state request,0:No charge;1:Charge;2:Emergency stop ,18DAF1DE,29,31,1,0,0,,22501E,62501E,ff,($501E) Global system state,0:Init;1:Actif;2:Sleep ,18DAF1DE,30,31,1,0,0,,22501F,62501F,ff,($501F) System Temperature State,0:Ok;1:Derating;2:Nok ,18DAF1DE,24,55,1,0,0,,225020,625020,1ff,DIDs supported in range [$5021 - $5040],0:not supported;1:supported ,18DAF1DE,30,31,1,0,0,,225021,625021,ff,($5021) Cooling Temperature State,0:Ok;1:Derating;2:Nok ,18DAF1DE,30,31,1,0,0,,225022,625022,ff,($5022) Auto wake-up enabling,0:No change;1:Activation;2:Deactivation ,18DAF1DE,24,39,.0625,880,2,°C,225023,625023,ff,($5023) Raw CPU temperature value from BI ,18DAF1DE,24,39,.0625,3200,2,A,225024,625024,ff,($5024) Measured neutral current filtred ,18DAF1DE,24,39,.0625,3200,2,A,225025,625025,ff,($5025) Neutral current value from BI ,18DAF1DE,24,31,.5,0,1,%,225026,625026,ff,($5026) J1772 control pilot raw duty cycle ,18DAF1DE,24,31,.25,60,1,V,225027,625027,ff,($5027) J1772 control pilot raw voltage ,18DAF1DE,24,31,1,40,0,°C,225028,625028,ff,($5028) Mains input filter temperature from SPI ,18DAF1DE,24,39,.0625,3200,2,A,225029,625029,ff,($5029) Raw AC mains phase 1 measured current ,18DAF1DE,24,39,.0625,3200,2,A,22502A,62502A,ff,($502A) Raw AC mains phase 2 measured current ,18DAF1DE,24,39,.0625,3200,2,A,22502B,62502B,ff,($502B) Raw AC mains phase 3 measured current ,18DAF1DE,24,39,.5,32000,1,,22502C,62502C,ff,Raw AC mains phase 1 measured voltage ,18DAF1DE,25,31,1,0,0,%,22502F,62502F,ff,($502F) MMI Red LED PWM request ,18DAF1DE,31,31,1,0,0,,225030,625030,ff,($5030) Raw fuse interlock value,0:open;1:closed ,18DAF1DE,31,31,1,0,0,,225031,625031,ff,($5031) Raw Relay box plug interlock closed,0:open;1:closed ,18DAF1DE,24,39,.015625,0,2,V,225032,625032,ff,($5032) Driver module power supply voltage from BI ,18DAF1DE,24,39,.0002441406,0,3,V,225033,625033,ff,($5033) Raw Detection Logic line value ,18DAF1DE,24,39,.0625,32768,2,mA,225035,625035,ff,($5035) Mains ground current 1st measurement ,18DAF1DE,31,31,1,0,0,,225038,625038,ff,($5038) Mains Plug Locking Switch raw information,0:Unlocked;1:Locked ,18DAF1DE,30,31,1,0,0,,225039,625039,ff,($5039) Mains plug locking control,0:No motion;1:Close;2:Open ,18DAF1DE,24,39,.0625,3200,2,A,22503A,62503A,ff,($503A) Mains phase 2 current RMS value ,18DAF1DE,24,39,.0625,3200,2,A,22503B,62503B,ff,($503B) Mains phase 3 current RMS value ,18DAF1DE,24,39,.0625,3200,2,A,22503C,62503C,ff,($503C) Mains current phase 1 mean value ,18DAF1DE,24,39,.0625,3200,2,A,22503D,62503D,ff,($503D) Mains current phase 2 mean value ,18DAF1DE,24,39,.0625,3200,2,A,22503E,62503E,ff,($503E) Mains current phase 3 mean value ,18DAF1DE,24,39,.015625,0,2,V,22503F,62503F,ff,($503F) Mains phase 1-2 voltage RMS value ,18DAF1DE,24,39,.015625,0,2,V,225041,625041,ff,($5041) Mains phase 2-3 voltage RMS value ,18DAF1DE,24,39,.015625,0,2,V,225042,625042,ff,($5042) Mains phase 3-1 voltage RMS value ,18DAF1DE,24,39,.5,32000,1,V,225043,625043,ff,($5043) AC mains phase 1-2 measured voltage ,18DAF1DE,24,39,.5,32000,1,V,225044,625044,ff,($5044) AC mains phase 2-3 measured voltage ,18DAF1DE,24,39,.5,32000,1,V,225045,625045,ff,($5045) AC mains phase 3-1 measured voltage ,18DAF1DE,24,39,.5,32000,1,V,225046,625046,ff,($5046) Mains phase 1-2 mean voltage ,18DAF1DE,24,39,.5,32000,1,V,225047,625047,ff,($5047) Mains phase 2-3 mean voltage ,18DAF1DE,24,39,.5,32000,1,V,225048,625048,ff,($5048) Mains phase 3-1 mean voltage ,18DAF1DE,24,39,.0078125,-1280,3,Hz,225049,625049,ff,($5049) Mains phase frequency ,18DAF1DE,24,39,1,20000,0,W,22504A,62504A,ff,($504A) Mains active power consumed ,18DAF1DE,24,39,.0625,9600,2,A,22504B,62504B,ff,($504B) Mains current sum ,18DAF1DE,24,39,.5,32000,1,V,22504C,62504C,ff,($504C) Mains voltage sum ,18DAF1DE,24,39,.0625,3200,2,A,22504D,62504D,ff,($504D) HV Network measured current ,18DAF1DE,24,39,1,1023,0,V,22504E,62504E,ff,($504E) HV voltage ,18DAF1DE,24,31,1,0,0,,22504F,62504F,ff,($504F) Mains leakage current strategy state,0:OFF/Init;1:OK;2:NOK ,18DAF1DE,24,24,1,0,0,,225050,625050,ff,($5050) External controls denial status flags.0,0:Reserved for future use_0 ,18DAF1DE,24,31,1,40,0,°C,225051,625051,ff,($5051) CPU temperature value ,18DAF1DE,24,31,1,40,0,°C,225052,625052,ff,($5052) IGBT Buck arm 1 temperature ,18DAF1DE,24,31,1,40,0,°C,225053,625053,ff,($5053) Raw IGBT Buck arm 1 temperature ,18DAF1DE,24,31,1,40,0,°C,225054,625054,ff,($5054) Mains input filter hot spot temperature ,18DAF1DE,24,31,1,40,0,°C,225055,625055,ff,($5055) Mains input filter hot spot temperature from SPI ,18DAF1DE,24,31,1,40,0,°C,225056,625056,ff,($5056) Mains input filter temperature ,18DAF1DE,24,39,.0625,32768,2,mA,225057,625057,ff,($5057) Raw leakage current - DC part measurement ,18DAF1DE,24,39,.0625,32768,2,mA,225058,625058,ff,($5058) Raw leakage current - High Frequency 10kHz part measurement ,18DAF1DE,24,39,.0625,32768,2,mA,225059,625059,ff,($5059) Raw leakage current - High Frequency 1st part measurement ,18DAF1DE,24,39,.0625,32768,2,mA,22505A,62505A,ff,($505A) Raw leakage current - Low Frequency part measurement (50Hz) ,18DAF1DE,31,31,1,0,0,,22505B,62505B,ff,($505B) Virgin neutral current acquisition tuning detection ,18DAF1DE,31,31,1,0,0,,22505C,62505C,ff,($505C) Inform on spi communication error ,18DAF1DE,31,31,1,0,0,,22505D,62505D,ff,($505D) Global checksum result on SPI frames ,18DAF1DE,24,39,1,0,0,,22505E,62505E,ff,($505E) FPGA ident ,18DAF1DE,24,39,1,0,0,ms,22505F,62505F,ff,($505F) High part of CPU clock since power up ,18DAF1DE,24,39,1,0,0,ms,225061,625061,ff,($5061) Low part of CPU clock since power up ,18DAF1DE,24,39,1,0,0,Ohm,225062,625062,ff,($5062) Mains ground resistance ,18DAF1DE,24,31,1,0,0,,225063,625063,ff,($5063) supervisor state memorized for FF,0:Init;1:StandByPowerOn;2:ClosingS2;3:InitType;4:Initlkg;5:StandByPowerOnSetup;6:Charge;7:ZeroAmpMode;8:EndOfCharge;9:OpeningRL;10:STestOK;11:Not used;12:STestWait;13:STestAct;14:WaitRLCHA;15:WaitRLContactorTri;16:OpeningCapaMC;17:No used ,18DAF1DE,24,31,1,0,0,,225064,625064,ff,($5064) Leakage current diagnostic stored completion status,0:init;1:HF10;3:Mains Ground Default;5:Earth Current default;9:Ground Default;17:Means Leakage DC;33:Means Leakage LF;49:Means Leakage DC+LF;65:Means Leakage HF;81:Means Leakage DC+HF;97:Means Leakage LF+HF;113:Means Leakage DC+LF+HF ,18DAF1DE,24,39,.0625,32768,2,mA,225065,625065,ff,($5065) Leakage DC current saved indicator after failure ,18DAF1DE,24,39,.0625,32768,2,mA,225066,625066,ff,($5066) Leakage HF 10kHz current saved indicator after failure ,18DAF1DE,24,39,.0625,32768,2,mA,225067,625067,ff,($5067) Leakage HF current saved indicator after failure ,18DAF1DE,24,39,.0625,32768,2,mA,225068,625068,ff,($5068) Leakage LF current saved indicator after failure ,18DAF1DE,24,31,1,0,0,,225069,625069,ff,($5069) LED absence configuration,0:LED present;1:LED absent ,18DAF1DE,24,31,1,0,0,,22506A,62506A,ff,($506A) Old MMI configuration,0:New MMI;1:Old MMI ,18DAF1DE,24,31,1,0,0,,22506B,62506B,ff,($506B) Vehicle configuration type,0:X10 configuration;1:X07 configuration ,18DAF1DE,24,39,.015625,0,2,,22506C,62506C,ff,($506C) 15V from Driver flyback ,18DAF1DE,24,39,1,0,0,,22506D,62506D,ff,($506D) Saved number of quickdrop values ,18DAF1DE,24,31,1,0,0,,22506E,62506E,ff,($506E) Cosphi regulation enable,0:Disable;1:Enable ,18DAF1DE,24,31,1,0,0,,22506F,62506F,ff,($506F) PLGW card presence,0:Not Present;1:Present ,18DAF1DE,24,31,.25,0,1,A,225070,625070,ff,($5070) max AC current limitation configuration ,18DAF1DE,24,31,1,40,0,°C,225073,625073,ff,($5073) Cooling temperature from BI ,18DAF1DE,24,39,.0625,32768,2,mA,225074,625074,ff,($5074) Leakage current DC part measurement without offset ,18DAF1DE,24,39,.0625,32768,2,mA,225075,625075,ff,($5075) Filtered Leakage current High Frequency measurement ,18DAF1DE,24,39,.0625,32768,2,mA,225076,625076,ff,($5076) Filtered Leakage current -High Frequency 10kHz part measurement ,18DAF1DE,24,39,.0625,32768,2,mA,225077,625077,ff,($5077) Leakage current - Low Frequency part measurement (50Hz) ,18DAF1DE,24,31,1,0,0,,225078,625078,ff,($5078) Supervisor state,0:Init;1:StandByPowerOn;2:STestOK;3:InitType;4:Initlkg;5:StandByPowerOnSetup;6:Charge;7:ZeroAmpMode;8:EndOfCharge;9:OpeningRL;10:Not used10;11:EmergencyStop;12:STestWait;13:STestAct;14:WaitRLCHA;15:WaitRLContactorTri;16:OpeningCapaMC;17:EmergencyStopEndFwl;18:Not used18;19:Not used19;20:Not used20 ,18DAF1DE,31,31,1,0,0,,225079,625079,ff,($5079) Voltage presence between ph1 and ground,0:Voltage Not present;1:Voltage Present ,18DAF1DE,31,31,1,0,0,,225080,625080,ff,($5080) Voltage presence between neutral and ground,0:Voltage Not present;1:Voltage Present ,18DAF1DE,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,18DAF1DE,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,18DAF1DE,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/BCB-OBC_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature F1,Safety Case 1 F2,Safety Case 2 F3,Multiple Failure F4,Temperature too Low F5,Negative Loop Error F6,Positive Loop Error F7,Initialisation not valid F8,Overspeed F9,Limp Home FA,Specific Supplier FB,- FC,-- FD,Drift low FE,Drift high ================================================ FILE: app/src/main/assets/ZOE_Ph2/DCM_Dtcs.csv ================================================ AE09,Ecall Red LED AE08,Ecall Microphone AE0B,Ecall Auto LED AE0C,Ecall Blacklight LED AE0D,Ecall Button AE13,HU/NAVI USB AE14,SMS AE16,PPP Data Communication AE17,Vnext Authentification AE22,SIM AE24,CEP Certificate Expired AE25,CEP Certificate Revoked AE26,CEP Bad Certificate AE27,CEP Certificate Unsupported AE28,CEP Certificate Unknown AE30,CEP Unknown AE32,Audio Head-Unit Failure AE00,Battery Level AE06,Aux_In_Info/Tel_Mute_Out Failure AE34,Cellular Ext Antenna AE23,Cellular Registration Denied AE33,Speaker Failure AE4F,BCM Pairing DTC AE4E,Remote Actuator- PIN code missing AE4C,Remote Actuator without unknown ID AE4B,Remote Actuator without Cipher key AE49,Remote Actuator not Activated AE01,Internal Battery Status AE04,Internal Battery Capacity AE10,MIC OUT SIGNAL AE94,RELAY Control AE0E,System Internal Failure AE36,Accelerometer Failure AE15,VOICE FAILURE AE18,Vnext Functional AE19,Vnext Config AE21,Invalid A-IVC AE38,Vnext Master Authentication NOK AE39,Vnext Regional Authentication NOK AE3A,Vnext Master timeout AE3B,Vnext Regional timeout AE3C,Part ID is unknown AE3D,Bad Pairing A-IVC & VIN AE3E,No Certificate available AE3F,Part Certificate Verification fails AE41,A-IVC Authentication Fails AE42,A-IVC no Region Setting AE43,A-IVC Invalid Region Setting AE44,Region Setting Storage error AE45,A-IVC no Partition Setting AE46,A-IVC Invalid Partition Setting AE47,Partition Setting Storage error AE48,Service Check not complete AE29,CEP ILLEGAL PARAMETER E141,Lost communication with Automatic Transmission E14F,Lost communication with Body Control Module E140,Lost communication with Electronic Control Moteur E159,Lost communication with Electric Powered Steering E118,Lost communication with Hand Free Module E153,Lost communication with Climate Control E14E,Lost communication with Cluster E15B,Lost communication with Underhood Switching Module E148,Lost communication with Electronic Stability Control E143,Lost communication with Hybrid Electric Vehicle Control AE0A,Ecall Green LED AE11,A-IVC Overheat AE12,VIRGIN Configuration AE31,A-IVC Clock AE35,GNSS Ext Antenna C079,CAN V C074,CAN M AE05,Airbag Failure(eCall) AE37,Airbag Hardwire Malfunction AE40,Part Certificate Storage error AE50,HTTP Failures AE51,HTTP Server error AE0F,MODEM FAILURE E150,Lost communication with Airbag Control Unit E144,Lost communication with Lithium-ion Battery Controller E157,Lost communication with DC to DC Converter Control Module 9380,ECU Wifi module ================================================ FILE: app/src/main/assets/ZOE_Ph2/DCM_Fields.csv ================================================ ,7DA,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,7DA,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Reprog ,7DA,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,7DA,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7DA,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,7DA,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTCFormat;1:ISO_14229-1_DTCFormat;2:SAE_J1939-73_DTCFormat;3:ISO_11992-4_DTCFormat;4:SAE_J2012-DA_WWHOBD_DTCFormat ,7DA,32,47,1,0,0,,1901FF,5901FF,4ff,DTCCount ,7DA,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,7DA,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,7DA,40,43,1,0,0,,1902FF,5902FF,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,7DA,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier,0:None ,7DA,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested ,7DA,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle ,7DA,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7DA,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7DA,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7DA,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC ,7DA,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle ,7DA,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,7DA,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,7DA,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7DA,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,7DA,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,7DA,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,7DA,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,7DA,24,31,1,0,0,,220100,620100,ff,USB_connected,0:Not connected;1:Connected or alimented;2:Undefined ,7DA,24,279,1,0,0,,220101,620101,2ff,Application_parameters.Name ,7DA,280,535,1,0,0,,220101,620101,2ff,Application_parameters.Company ,7DA,536,791,1,0,0,,220101,620101,2ff,Application_parameters.Version ,7DA,24,31,1,0,0,,220102,620102,ff,Num_satellites ,7DA,24,31,1,0,0,%,220103,620103,ff,GSM_reception_level ,7DA,24,343,1,0,0,,220104,620104,2ff,Communication Network.Name ,7DA,344,423,1,0,0,,220104,620104,2ff,Communication Network.ID ,7DA,24,143,1,0,0,,220106,620106,2ff,IMEI ,7DA,24,31,1,0,0,,220107,620107,ff,RSSI,0:(< -113 dBm) No Signal;1:(-111dBm) Very Poor Signal;2:(-109 dBm) Very Poor Signal;3:(-107 dBm) Poor Signal;4:(-105 dBm) Poor Signal;5:(-103 dBm) Poor Signal;6:(-101dBm) Poor Signal;7:(-99 dBm) Fair Signal;8:(-97 dBm) Fair Signal;9:(-95 dBm) Fair Signal;10:(-93 dBm) Fair Signal;11:(-91 dBm) Fair Signal;12:(-89 dBm) Fair Signal;13:(-87 dBm) Fair Signal;14:(-85 dBm) Good Signal;15:(-83 dBm) Good Signal;16:(-81 dBm) Good Signal;17:(-79 dBm) Good Signal;18:(-77 dBm) Good Signal;19:(-75 dBm) Good Signal;20:(-73 dBm) Good Signal;21:(-71 dBm) Good Signal;22:(-69 dBm) Excellent Signal;23:(-67 dBm) Excellent Signal;24:(-65 dBm) Excellent Signal;25:(-63 dBm) Excellent Signal;26:(-61 dBm) Excellent Signal;27:(-59 dBm) Excellent Signal;28:(-57 dBm) Excellent Signal;29:(-55 dBm) Excellent Signal;30:(-53 dBm) Excellent Signal;31:(> -51 dBm) Excellent Signal;255:Not known or not detectable ,7DA,24,31,1,0,0,,220108,620108,ff,GNSS_sensing ,7DA,24,47,1,0,0,,220109,620109,ff,GNSS_parameters_status.Latitude position ,7DA,48,55,1,0,0,,220109,620109,2ff,GNSS_parameters_status.Latitude orientation ,7DA,56,79,1,0,0,,220109,620109,ff,GNSS_parameters_status.Longitude position ,7DA,80,87,1,0,0,,220109,620109,2ff,GNSS_parameters_status.Longitude orientation ,7DA,88,103,1,0,0,wk,220109,620109,ff,GNSS_parameters_status.Week_Number ,7DA,104,135,1,0,0,s,220109,620109,1ff,GNSS_parameters_status.Week_Seconds ,7DA,136,143,1,0,0,,220109,620109,2ff,GNSS_parameters_status.Lack ,7DA,24,31,1,0,0,,22010A,62010A,ff,AIVC_state,0:St On;1:StOnRFOff;2:StOnSwap;3:StDisc;4:StDrx;5:StDrxDisc;6:StOffSms;7:StOffData;8:StOff;9:StOffRFOff;10:StOffSwap;11:StFota;12:StECall;13:StCallBack;14:StReprog;15:StOnInit;16:StOnError;17:StOffInit ,7DA,24,279,1,0,0,,22010E,62010E,2ff,EcallChangeLog_SMSfallback.Old_Number ,7DA,280,535,1,0,0,,22010E,62010E,2ff,EcallChangeLog_SMSfallback.New_Number ,7DA,536,791,1,0,0,,22010E,62010E,2ff,EcallChangeLog_SMSfallback.Request_From ,7DA,792,1047,1,0,0,,22010E,62010E,2ff,EcallChangeLog_SMSfallback.Timestamp ,7DA,24,279,1,0,0,,22010F,62010F,2ff,EcallChangeLog_TestNumber.Old_Number ,7DA,280,535,1,0,0,,22010F,62010F,2ff,EcallChangeLog_TestNumber.New_Number ,7DA,536,791,1,0,0,,22010F,62010F,2ff,EcallChangeLog_TestNumber.Request_From ,7DA,792,1047,1,0,0,,22010F,62010F,2ff,EcallChangeLog_TestNumber.Timestamp ,7DA,24,31,1,0,0,,220112,620112,ff,CCS_SERVICE_ACTIVATION,0:Inactive;1:Active ,7DA,24,31,1,0,0,,220113,620113,ff,CCS_CURRENT_RENTAL_STATUS,0:Unavailable;1:Available;2:Reserved;3:Booking Registration;4:In rental;5:Restoration Registration ,7DA,24,31,1,0,0,%,220119,620119,ff,BER ,7DA,24,31,1,0,0,,22011A,62011A,ff,SIM Status.SIM _lock_status,0:SIM lock;1:SIM unlock ,7DA,32,191,1,0,0,,22011A,62011A,2ff,SIM Status.SIM CCID ,7DA,192,311,1,0,0,,22011A,62011A,2ff,SIM Status.SIM identification(IMSI) ,7DA,24,31,1,0,0,,22011B,62011B,ff,Data channel,0:Not connected;1:2G channel open;2:3G channel open;3:4G channel open;4:5G channel open;255:Unknown ,7DA,24,31,1,0,0,,22011C,62011C,ff,IP_address_APN1.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,22011C,62011C,4ff,IP_address_APN1.address ,7DA,24,39,1,0,0,°,220121,620121,ff,GNSS_VEHICLE_DIRECTION ,7DA,24,175,1,0,0,,220123,620123,2ff,NETWORK_MONITORING.NOKtoOK ,7DA,176,327,1,0,0,,220123,620123,2ff,NETWORK_MONITORING.OKtoNOK ,7DA,24,1143,1,0,0,,220124,620124,4ff,GET_ENCODED_MSD ,7DA,24,175,1,0,0,,220125,620125,2ff,LAST_CRASH_DETECTED ,7DA,24,31,1,40,0,°C,220126,620126,1ff,BUB_INTERNAL_TEMPERATURE ,7DA,24,39,1,0,0,mV,220127,620127,ff,BUB_OUTPUT_VOLTAGE ,7DA,24,31,1,0,0,,220129,620129,ff,BUB_CALCULATED_SOH,0:End of Life of the Battery;1:Battery not End of Life ,7DA,24,39,1,0,0,d,22012A,62012A,ff,BUB_AGE ,7DA,24,31,1,0,0,,22012B,62012B,ff,AutomaticEcallMemorizationState,0:No automatic eCall has ever been detected before;1:In progress;2:Sucessful violent Automatic eCall end;3:Successful medium Automatic eCall end;4:Failure automatic eCall end ,7DA,24,31,.1,0,1,V,22012D,62012D,ff,A-IVC input voltage ,7DA,24,39,1,0,0,,22012E,62012E,1ff,GET_ACCELEROMETER_AXIS_VALUES.Xaxis ,7DA,40,55,1,0,0,,22012E,62012E,1ff,GET_ACCELEROMETER_AXIS_VALUES.Yaxis ,7DA,56,71,1,0,0,,22012E,62012E,1ff,GET_ACCELEROMETER_AXIS_VALUES.Zaxis ,7DA,24,39,1,0,0,mg,22012F,62012F,ff,GET_ACCELEROMETER_THRESOLD_VALUES.rolloverzthreshold ,7DA,40,55,1,0,0,,22012F,62012F,ff,GET_ACCELEROMETER_THRESOLD_VALUES.endpositionzthreshold ,7DA,24,31,1,0,0,,220130,620130,ff,Conf_Monitoring,0:De Activated;1:Activated ,7DA,24,39,1,0,0,s,220131,620131,ff,Conf Monitoring Upload Period IGN-ON ,7DA,24,31,1,0,0,h,220132,620132,ff,Conf Monitoring Upload Period IGN_OFF ,7DA,24,39,1,0,0,s,220133,620133,ff,ConfTracking Upload Period IGN_ON ,7DA,24,39,1,0,0,min,220134,620134,ff,ConfTracking Upload Period IGN_OFF ,7DA,24,31,1,0,0,,220135,620135,ff,Conf Tdp Extra Data,0:De Activated;1:Activated ,7DA,24,31,1,0,0,,220137,620137,ff,Service activation status (SVT),0:De Activated;1:Activated ,7DA,24,31,1,0,0,,220138,620138,ff,AT+CREG,0:Not registered- MS is not currently searching for a new operator;1:Registered- home network;2:Not registered- MS currently searching for a base station;3:Registration denied;4:unknown;5:Registered- roaming ,7DA,24,31,1,0,0,,220139,620139,ff,AT+CGREG,0:Not registered- MS is not currently searching for a new operator;1:Registered- home network;2:Not registered- MS currently searching for a base station;3:Registration denied;4:unknown;5:Registered- roaming ,7DA,24,151,1,0,0,,220140,620140,4ff,[OutPut1] Remote order frame ,7DA,24,151,1,0,0,,220141,620141,4ff,[Input2] vehicle ACK frame ,7DA,24,31,1,0,0,,220144,620144,ff,Remote Actuator - WakeUpReqMax ,7DA,24,31,1,0,0,,220145,620145,ff,eUICC_status.PIN used,0:PIN code activated;1:PIN code deactivated ,7DA,32,287,1,0,0,,220145,620145,2ff,eUICC_status.EID ,7DA,288,447,1,0,0,,220145,620145,2ff,eUICC_status.ICCID ,7DA,448,567,1,0,0,,220145,620145,2ff,eUICC_status.IMSI ,7DA,568,687,1,0,0,,220145,620145,2ff,eUICC_status.MSISDN ,7DA,24,31,1,0,0,,220146,620146,ff,IP_address_APN5.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,220146,620146,4ff,IP_address_APN5.address ,7DA,24,31,1,0,0,,220147,620147,ff,IP_address_APN6.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,220147,620147,4ff,IP_address_APN6.address ,7DA,24,31,1,0,0,,220148,620148,ff,IP_address_APN7.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,220148,620148,4ff,IP_address_APN7.address ,7DA,24,31,1,0,0,,220149,620149,ff,IP_address_APN8.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,220149,620149,4ff,IP_address_APN8.address ,7DA,24,31,1,0,0,W.h,22014A,62014A,ff,EMPC Budget ,7DA,24,39,1,0,0,,22014B,62014B,ff,TimerDRX ,7DA,24,31,1,0,0,,22014C,62014C,ff,Remote Charging Activation status,0:Activated;1:Deactivated ,7DA,24,31,1,0,0,,22014E,62014E,ff,BUB_CALCULATED_SOC_B,0:Not available;1:Fully charged (>95%);2:In charge;3:Low charge (<=5%) ,7DA,24,119,1,0,0,,22014F,62014F,4ff,eUICCC Version ,7DA,24,151,1,0,0,,220150,620150,4ff,eUICC SPN ,7DA,24,111,1,0,0,,220151,620151,2ff,SIM_REF_NUMBER ,7DA,24,31,1,0,0,,220154,620154,ff,Key storage status,0:Request pending;1:Requested;2:Stored ,7DA,24,31,1,0,0,,220155,620155,ff,CALL_SWITCH_STATUS,0:OFF;1:ON ,7DA,24,39,1,0,0,,220156,620156,4ff,SW components version part1.SOP version ,7DA,40,103,1,0,0,,220156,620156,4ff,SW components version part1.VUC Version ,7DA,104,167,1,0,0,,220156,620156,4ff,SW components version part1.SOC version ,7DA,168,231,1,0,0,,220156,620156,4ff,SW components version part1.DCM Version ,7DA,232,295,1,0,0,,220156,620156,4ff,SW components version part1.UCD Version ,7DA,296,359,1,0,0,,220156,620156,4ff,SW components version part1.MDD Version ,7DA,360,535,1,0,0,,220156,620156,4ff,SW components version part1.Padding $20 ,7DA,24,87,1,0,0,,220157,620157,4ff,SW components version part2.Whitelist version ,7DA,88,151,1,0,0,,220157,620157,4ff,SW components version part2.TriggerContext ,7DA,152,215,1,0,0,,220157,620157,4ff,SW components version part2.FunctionDB version ,7DA,216,279,1,0,0,,220157,620157,4ff,SW components version part2.MqttTopicConfig version ,7DA,280,343,1,0,0,,220157,620157,4ff,SW components version part2.AivcConfig version ,7DA,344,535,1,0,0,,220157,620157,4ff,SW components version part2.Padding $20 ,7DA,24,31,1,0,0,,220158,620158,ff,Reprogramming Fota by USB (through IVI),0:Reprog on going;1:end of SOC reprog ,7DA,24,31,1,0,0,,220159,620159,ff,DIAG_Part Authentification Skip/Reset,0:Inactive;1:Skip (force the transition from [StOnInit] to [StOn]);2:Reset (force the transition from [StOn] to[StOnInit]) ,7DA,24,31,1,0,0,,224000,624000,ff,Architecture Definition,0:Virgin A-IVC;1:C1A ICE;2:C1A xEV;3:T4VS ICE;4:T4VS xEV;5:GEN5 ICE;6:GEN5 xEV;7:GEN3 ICE;8:GEN3 xEV;9:x07;10:G1;11:C1A-HS ICE;12:C1A-HS xEV ,7DA,24,31,1,0,0,,224003,624003,4ff,Speaker Settings.Codec gain ,7DA,32,39,1,0,0,,224003,624003,4ff,Speaker Settings.Pre-processing gain ,7DA,40,151,1,0,0,,224003,624003,4ff,Speaker Settings.Auto gain control ,7DA,152,279,1,0,0,,224003,624003,4ff,Speaker Settings.FIR ,7DA,280,1239,1,0,0,,224003,624003,4ff,Speaker Settings.IIR ,7DA,1240,1263,1,0,0,,224003,624003,4ff,Speaker Settings.Auto volume control ,7DA,24,31,1,0,0,,224004,624004,4ff,Microphone Settings.Codec gain ,7DA,32,39,1,0,0,,224004,624004,4ff,Microphone Settings.Pre-processing gain ,7DA,40,151,1,0,0,,224004,624004,4ff,Microphone Settings.Auto gain ctrl ,7DA,152,279,1,0,0,,224004,624004,4ff,Microphone Settings.FIR ,7DA,280,1239,1,0,0,,224004,624004,4ff,Microphone Settings.IIR ,7DA,1240,1871,1,0,0,,224004,624004,4ff,Microphone Settings.Echo ,7DA,24,71,1,0,0,,224005,624005,4ff,HPLMN Profile1 ,7DA,24,527,1,0,0,,224006,624006,4ff,APN1 parameters Profile 1.APN1 ,7DA,528,783,1,0,0,,224006,624006,4ff,APN1 parameters Profile 1.APN1UID ,7DA,784,1039,1,0,0,,224006,624006,4ff,APN1 parameters Profile 1.APN1PWD ,7DA,24,39,1,0,0,min,224007,624007,ff,DRX mode duration ,7DA,24,31,1,0,0,,224008,624008,ff,Ecall Vehicle Type,0:Passenger Vehicle (Class M1);1:Buses and Coaches (Class M2);2:Buses and Coaches (Class M3);3:Light Commercial Vehicles (Class N1);4:Heavy Duty Vehicles (Class N2);5:Heavy Duty Vehicles (Class N3);6:Motorcycles (Class L1e);7:Motorcycles (Class L2e);8:Motorcycles (Class L3e);9:Motorcycles (Class L4e);10:Motorcycles (Class L5e);11:Motorcycles (Class L6e);12:Motorcycles (Class L7e);13:Light passenger vehicle ( Classe K1) ,7DA,25,25,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.otherPropulsion,0:Not present;1:Present ,7DA,26,26,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.hydrogen,0:Not present;1:Present ,7DA,27,27,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.electricEnergy,0:Not present;1:Present ,7DA,28,28,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.liquidPropaneGas,0:Not Present;1:Present ,7DA,29,29,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.compressedNaturalGas,0:Not present;1:Present ,7DA,30,30,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.dieselTank,0:Not present;1:Present ,7DA,31,31,1,0,0,,224009,624009,ff,Ecall Vehicle Propulsion Storage.gasolineTank,0:Not Present;1:Present ,7DA,24,279,1,0,0,,22400C,62400C,2ff,SIM SMS Centre1 ,7DA,24,151,1,0,0,,22400D,62400D,2ff,Ecall Number _ Operational ,7DA,24,151,1,0,0,,22400E,62400E,2ff,Ecall Number _ Life cycle Test ,7DA,24,31,1,0,0,,22400F,62400F,ff,Priv_Ecall_Manual_Function_Activation,0:Priv Ecall Manual deactivated;1:Priv Ecall Manual activated ,7DA,24,31,1,0,0,,224010,624010,ff,Priv Ecall Auto Activation.ACN,0:Priv Eecall auto ACN deactivated;1:Priv Ecall auto ACN activated ,7DA,32,39,1,0,0,,224010,624010,ff,Priv Ecall Auto Activation.AACN,0:Priv Ecall auto AACN deactivated;1:Priv Ecall auto AACN activated ,7DA,24,279,1,0,0,,224013,624013,2ff,SIM PIN Code Profile 1 ,7DA,24,31,1,0,0,,224014,624014,ff,SIM PIN Used Profile 1,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,224016,624016,ff,A-IVC Activation Status,1:A-IVC activated;2:A-IVC deactivated;3:Not Available ,7DA,24,31,1,0,0,,22401C,62401C,ff,USB_definition,0:USB cable not mounted;1:USB cable mounted ,7DA,24,31,1,0,0,,22401D,62401D,ff,Ecall Activation Status,0:Reg Ecall deactivated;1:Reg Ecall activated ,7DA,24,151,1,0,0,,22401E,62401E,2ff,ECALL_SMS_FALLBACK_NUMBER ,7DA,24,31,1,0,0,,22401F,62401F,ff,Ecall ZONE,0:Europe;1:Russia;2:China Renault;3:Japan;4:NAM;5:China Nissan;6:China Infiniti;7:Latam;8:Korea;9:Austraria;10:MMC China;99:Master ,7DA,24,31,1,0,0,,224020,624020,ff,ECALL_NO_AUTOMATIC_TRIGGERING,0:False (Reg Auto Ecall activated);1:True (Reg Auto Ecall deactivated) ,7DA,24,31,1,0,0,,224022,624022,ff,ECALL_ABORT_ALLOWED,0:False;1:True ,7DA,24,31,1,0,0,,224023,624023,ff,Ecall H_ENTRIES_NUMBER ,7DA,24,31,1,0,0,,224024,624024,ff,MODIFICATIONS_NUMBER ,7DA,24,31,1,0,0,min,224025,624025,ff,Ecall CLEARDOWN_TIMEOUT ,7DA,24,39,1,0,0,min,224026,624026,ff,Ecall CALL-BACK_TIMEOUT ,7DA,24,31,1,0,0,,224027,624027,ff,Ecall VOICE_REQ_NO_RECEIVED_TIMEOUT ,7DA,24,31,1,0,0,min,224028,624028,ff,Ecall INT MEM TRANSMIT INTERVAL ,7DA,24,31,1,0,0,,224029,624029,ff,Ecall INT MEM TRANSMIT ATTEMPT ,7DA,24,31,1,0,0,s,22402A,62402A,ff,STOP_MSD_TIMEOUT ,7DA,24,39,1,0,0,min,22402B,62402B,ff,NAD_DEREGISTRATION_TIME ,7DA,24,39,1,0,0,s,22402C,62402C,ff,Ecall DIAL DURATION ,7DA,24,31,1,0,0,,22402D,62402D,ff,Ecall AUTO DIAL ATTEMPTS ,7DA,24,31,1,0,0,,22402E,62402E,ff,Ecall MANUAL DIAL ATTEMPTS ,7DA,24,31,1,0,0,,22402F,62402F,ff,MSD_SEND_BY_SMS_IF_NOT_ACK,0:False;1:True ,7DA,24,31,1,0,0,s,224030,624030,ff,SEND_MSD_NO_RECEIVED_TIMEOUT ,7DA,24,39,1,0,0,s,224032,624032,ff,Ecall TEST REGISTRATION PERIOD ,7DA,24,39,1,0,0,m,224033,624033,ff,Ecall TEST MODE END DISTANCE ,7DA,24,31,1,0,0,Hz,224034,624034,ff,Ecall F FAST ,7DA,24,31,1,0,0,Hz,224035,624035,ff,Ecall F SLOW ,7DA,24,31,1,0,0,s,224036,624036,ff,Ecall DURATION LED ON AT START ,7DA,24,31,1,0,0,s,224037,624037,ff,ECALL T LONG PUSH ,7DA,24,31,1,0,0,%,224038,624038,ff,Ecall HMI LUMINOSITY GREEN MIN ,7DA,24,31,1,0,0,%,224039,624039,ff,Ecall HMI LUMINOSITY GREEN MAX ,7DA,24,31,1,0,0,%,22403A,62403A,ff,Ecall HMI LUMINOSITY GREEN DAY ,7DA,24,31,1,0,0,%,22403B,62403B,ff,Ecall HMI LUMINOSITY GREEN NIGHT ,7DA,24,31,1,0,0,%,22403C,62403C,ff,Ecall HMI LUMINOSITY RED MIN ,7DA,24,31,1,0,0,%,22403D,62403D,ff,Ecall HMI LUMINOSITY RED MAX ,7DA,24,31,1,0,0,%,22403E,62403E,ff,Ecall HMI LUMINOSITY RED DAY ,7DA,24,31,1,0,0,%,22403F,62403F,ff,Ecall HMI LUMINOSITY RED NIGHT ,7DA,24,31,1,0,0,%,224040,624040,ff,Ecall HMI LUMINOSITY BACKLIGHT MIN ,7DA,24,31,1,0,0,%,224041,624041,ff,Ecall HMI LUMINOSITY BACKLIGHT MAX ,7DA,24,31,1,0,0,%,224042,624042,ff,Ecall HMI LUMINOSITY BACKLIGHT DEFAULT ,7DA,24,31,1,0,0,%,224043,624043,ff,HMI_LUMINOSITY_BACKLIGHT_DAY ,7DA,24,31,1,0,0,s,224044,624044,ff,Ecall T_HYSTERESIS ,7DA,24,31,1,0,0,,224045,624045,ff,Ecall REMOTE_CALL_BACK_REQUEST,0:False (callback request by sms is not allowed);1:True (callback request by sms is allowed) ,7DA,24,31,1,0,0,,224047,624047,ff,Ecall MSD_REQUEST_BY_SMS,0:False;1:True ,7DA,24,31,1,0,0,,224048,624048,ff,Ecall TEST_MODE_AVAILABLE,0:False (Test Mode NOTavailable);1:True (Test Mode available) ,7DA,24,31,1,0,0,,224050,624050,ff,PPP.ReconnectionConfiguration.ConnectionRetry ,7DA,32,47,1,0,0,s,224050,624050,ff,PPP.ReconnectionConfiguration.FailureTimeout ,7DA,48,63,1,0,0,s,224050,624050,ff,PPP.ReconnectionConfiguration.DisconnectionTimeout ,7DA,64,71,1,0,0,,224050,624050,ff,PPP.ReconnectionConfiguration.RejectionRetry,0:No retry until next ON cycle;1:Retry as PPP sequence timeout ,7DA,24,29,1,0,0,Year,224054,624054,ff,Default A-IVC time.Year ,7DA,30,33,1,0,0,Month,224054,624054,ff,Default A-IVC time.Month ,7DA,34,38,1,0,0,d,224054,624054,ff,Default A-IVC time.Day ,7DA,39,43,1,0,0,h,224054,624054,ff,Default A-IVC time.Hour ,7DA,44,49,1,0,0,min,224054,624054,ff,Default A-IVC time.Minute ,7DA,50,55,1,0,0,s,224054,624054,ff,Default A-IVC time.Seconds ,7DA,24,39,1,0,0,s,224058,624058,ff,Sync gap ,7DA,24,31,1,0,0,s,224059,624059,ff,DRX notification time ,7DA,24,39,1,0,0,s,22405D,62405D,ff,PPP reconnection time ,7DA,24,31,1,0,0,,22405E,62405E,ff,Max SMS treated ,7DA,24,31,1,0,0,,22405F,62405F,ff,Time Synchro activation status,0:Deactivated;1:Activated ,7DA,24,39,1,0,0,s,224060,624060,ff,UTN Time out ,7DA,24,39,1,0,0,s,224061,624061,ff,Sync Latch up ,7DA,24,31,1,0,0,,224062,624062,ff,RNQ service type,0:Transmission Mode 1;1:Transmission Mode 2;2:Transmission Mode 3 ,7DA,24,55,1,0,0,,224063,624063,1ff,SMS Counter1 ,7DA,24,31,1,0,0,,224065,624065,ff,MUTE_BY_CAN,0:mute by wire;1:mute by CAN ,7DA,24,31,1,0,0,,224069,624069,ff,SIMULATE_A-IVC_RADIO_MUTE,0:Radio not muted;1:Radio muted ,7DA,24,31,1,0,0,,22406B,62406B,ff,MULTIPROFILE_MANAGEMENT,0:commercial use (ECALL + Services);1:Glonass Union (ECALL only) ,7DA,24,31,1,0,0,,22406E,62406E,ff,ECALL_INPUT_TYPE,0:Renault Configuration;1:Nissan Configuration ,7DA,24,31,1,0,0,,22406F,62406F,ff,ECALL_OUTPUT_TYPE,0:Renault Configuration;1:Nissan Configuration ,7DA,24,31,1,0,0,s,224070,624070,ff,CANCEL_CALL_PUSH_DURATION ,7DA,24,39,1,0,0,min,224079,624079,ff,StOffDataMaxT2 ,7DA,24,39,1,0,0,ms,22407A,62407A,ff,ECU processing time N_Br ,7DA,24,39,1,0,0,ms,22407B,62407B,ff,ECU processing time N_Cs ,7DA,24,31,1,0,0,,22407C,62407C,ff,CLEAR_DIAG_ECALL,0:No reset requested;1:Reset requested ,7DA,24,39,1,0,0,°,22407E,62407E,ff,A-IVC Mount Angle.MountAngle_X ,7DA,40,55,1,0,0,°,22407E,62407E,ff,A-IVC Mount Angle.MountAngle_Y ,7DA,56,71,1,0,0,°,22407E,62407E,ff,A-IVC Mount Angle.MountAngle_Z ,7DA,24,31,1,0,0,°,224081,624081,ff,SET_ROLLOVER_THRESHOLD_ANGLE ,7DA,24,31,1,0,0,km/h,224082,624082,ff,SET_VEHICLE_SPEED_LIMIT ,7DA,24,31,100,0,0,ms,224083,624083,ff,SET_MIN_ROTATION_DETECTED_TIME ,7DA,24,31,1,0,0,,22408C,62408C,ff,Service activation status (Geofencing),0:De Activated;1:Activated ,7DA,24,31,1,0,0,,22408E,62408E,ff,Detect Stop Infringement For Time Limit,0:De Activated;1:Activated ,7DA,24,39,1,0,0,s,22408F,62408F,ff,Time To Confim Start Infringement For Time Limit ,7DA,24,39,1,0,0,s,224090,624090,ff,Time To Confirm Stop Infringement For Time Limit ,7DA,24,31,1,0,0,,224091,624091,ff,Detect Stop Infringement For Speed Limit,0:De Activated;1:Activated ,7DA,24,39,1,0,0,s,224092,624092,ff,Time To Confim Start Infringement For Speed Limit ,7DA,24,39,1,0,0,s,224093,624093,ff,Time To Confirm Stop Infringement For Speed Limit ,7DA,24,31,1,0,0,,224094,624094,ff,Detect Stop Infringement For Area Limit,0:De Activated;1:Activated ,7DA,24,39,1,0,0,s,224095,624095,ff,Time To Confim StartInfringement For Area Limit ,7DA,24,39,1,0,0,s,224096,624096,ff,Time To Confirm Stop Infringement For Area Limit ,7DA,24,31,1,0,0,,224097,624097,ff,Tow_Service Activation Status,0:De Activated;1:Activated ,7DA,24,39,1,0,0,mg,224098,624098,ff,Tow_ThresholdTiltValue ,7DA,24,39,1,0,0,s,224099,624099,ff,Tow_ParkedDelayConfirmation ,7DA,24,31,1,0,0,,22409A,62409A,ff,Burglar_Service Activation Status,0:De Activated;1:Activated ,7DA,24,39,1,0,0,s,22409B,62409B,ff,Burglar_ConfirmationDelay ,7DA,24,31,1,0,0,,2240A6,6240A6,ff,MQTTsessType,0:Always Connected;1:On demand ,7DA,24,39,1,0,0,s,2240A7,6240A7,ff,MQTTTkeepAlive ,7DA,24,39,1,0,0,s,2240A8,6240A8,ff,MQTTsessionTimeout ,7DA,24,31,1,0,0,min,2240A9,6240A9,ff,MQTTperiodicConnectInterval ,7DA,24,31,1,0,0,,2240AA,6240AA,ff,MQTTpayloadCompression,0:Compression disable;1:Compression enable ,7DA,24,31,1,0,0,s,2240AB,6240AB,ff,MQTTRetryCONNECTInterval ,7DA,24,31,1,0,0,,2240AC,6240AC,ff,MQTTRetryCONNECTOccurrence ,7DA,24,31,1,0,0,,2240AD,6240AD,ff,MQTTRetryPUBLISHInterval ,7DA,24,31,1,0,0,,2240AE,6240AE,ff,MQTTRetryPUBLISHOccurrence ,7DA,24,31,1,0,0,,2240B1,6240B1,ff,VoLTE activation flag,0:voLTE deactivated;1:voLTE activated ,7DA,24,31,1,0,0,°,2240B5,6240B5,ff,GNSS_MIN_ELEVATION ,7DA,24,39,1,0,0,,2240B6,6240B6,ff,CELLULAR NUMBER OF DATA Rx.Number of datas ,7DA,24,39,1,0,0,,2240B7,6240B7,ff,CELLULAR NUMBER OF DATA Tx.Number of datas ,7DA,25,25,1,0,0,,2240B8,6240B8,ff,Conf_Vehicle_WakeUp_timeout.no time/infinite time ,7DA,26,31,1,0,0,s,2240B8,6240B8,ff,Conf_Vehicle_WakeUp_timeout.Time configuration ,7DA,24,24,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Stop_Engine,0:Code not needed;1:Code needed ,7DA,25,25,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Start_Engine,0:Code not needed;1:Code needed ,7DA,26,26,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Forbid_Charge,0:Code not needed;1:Code needed ,7DA,27,27,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Allow_Charge,0:Code not needed;1:Code needed ,7DA,28,28,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Configure_without_Protect_Unprotect,0:Code not needed;1:Code needed ,7DA,29,29,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Configure_with_Protect_Unprotect,0:Code not needed;1:Code needed ,7DA,30,30,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.bye0.Unprotect_Vehicle,0:Code not needed;1:Code needed ,7DA,31,31,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte0.Protect_Vehicle,0:Code not needed;1:Code needed ,7DA,32,32,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Close_Sunroof,0:Code not needed;1:Code needed ,7DA,33,33,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Open_Sunroof,0:Code not needed;1:Code needed ,7DA,34,34,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Unlock_Trunk,0:Code not needed;1:Code needed ,7DA,35,35,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Lock_Trunk,0:Code not needed;1:Code needed ,7DA,36,36,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Lock_Doors,0:Code not needed;1:Code needed ,7DA,37,37,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Unlock_Driver_Door,0:Code not needed;1:Code needed ,7DA,38,38,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Unlock_All_Doors,0:Code not needed;1:Code needed ,7DA,39,39,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte1.Double_Start_Engine,0:Code not needed;1:Code needed ,7DA,40,40,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Remote_Horn&Light_StopRequest,0:Code not needed;1:Code needed ,7DA,41,41,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Start_Horn&Lights,0:Code not needed;1:Code needed ,7DA,42,42,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Start_Lights,0:Code not needed;1:Code needed ,7DA,43,43,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Start_Horn,0:Code not needed;1:Code needed ,7DA,44,44,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Stop_Pre_Conditioning,0:Code not needed;1:Code needed ,7DA,45,45,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Start_Pre_Conditioning,0:Code not needed;1:Code needed ,7DA,46,46,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Close_Windows,0:Code not needed;1:Code needed ,7DA,47,47,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte2.Windows_Open,0:Code not needed;1:Code needed ,7DA,54,54,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte3.Stop_Charging,0:Code not needed;1:Code needed ,7DA,55,55,1,0,0,,2240B9,6240B9,ff,Param_Pin_Code_need.byte3.Start_Charging,0:Code not needed;1:Code needed ,7DA,24,24,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte0.Stop_Engine,0:Presence not needed;1:Presence needed ,7DA,25,25,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte0.Start_Engine,0:Presence not needed;1:Presence needed ,7DA,32,32,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Close_Sunroof,0:Presence not needed;1:Presence needed ,7DA,33,33,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Open_Sunroof,0:Presence not needed;1:Presence needed ,7DA,34,34,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Unlock_Trunk,0:Presence not needed;1:Presence needed ,7DA,35,35,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Lock_Trunk,0:Presence not needed;1:Presence needed ,7DA,36,36,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Lock_Doors,0:Presence not needed;1:Presence needed ,7DA,37,37,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Unlock_Driver_Door,0:Presence not needed;1:Presence needed ,7DA,38,38,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Unlock_All_Doors,0:Presence not needed;1:Presence needed ,7DA,39,39,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte1.Double_Start_Engine,0:Presence not needed;1:Presence needed ,7DA,40,40,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Remote_Horn&Light_StopRequest,0:Presence not needed;1:Presence needed ,7DA,41,41,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Start_Horn&Lights,0:Presence not needed;1:Presence needed ,7DA,42,42,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Start_Lights,0:Presence not needed;1:Presence needed ,7DA,43,43,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Start_Horn,0:Presence not needed;1:Presence needed ,7DA,44,44,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Stop_Pre_Conditioning,0:Presence not needed;1:Presence needed ,7DA,45,45,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Start_Pre_Conditioning,0:Presence not needed;1:Presence needed ,7DA,46,46,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Close_Windows,0:Presence not needed;1:Presence needed ,7DA,47,47,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte2.Windows_Open,0:Presence not needed;1:Presence needed ,7DA,54,54,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte3.Stop_Charging,0:Presence not needed;1:Presence needed ,7DA,55,55,1,0,0,,2240BA,6240BA,ff,Conf_Customer_Presence_need.byte3.Start_Charging,0:Presence not needed;1:Presence needed ,7DA,24,31,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte0.Protect_Vehicle ,7DA,32,39,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte1.Unprotect_Vehicle ,7DA,40,47,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte2.Configure_with_protect_unprotect ,7DA,48,55,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte3.Configure_without_protect_unprotect ,7DA,56,63,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte4.Allow_Charge ,7DA,64,71,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte5.Forbid_Charge ,7DA,72,79,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte6.Start_Engine ,7DA,80,87,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte7.Stop_Engine ,7DA,88,95,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte8.Double_Start_Engine ,7DA,96,103,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte9.Unlock_All_Doors ,7DA,104,111,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte10.Unlock_Driver_Door ,7DA,112,119,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte11.Lock_Doors ,7DA,120,127,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte12.Lock_Trunk ,7DA,128,135,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte13.Unlock_Trunk ,7DA,136,143,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte14.Open_Sunroof ,7DA,144,151,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte15.Close_Sunroof ,7DA,152,159,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte16.Windows_Open ,7DA,160,167,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte17.Close_Windows ,7DA,168,175,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte18.Start_Pre_conditioning ,7DA,176,183,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte19.Stop_Pre_conditioning ,7DA,184,191,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte20.Start_Horn ,7DA,192,199,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte21.Start_Lights ,7DA,200,207,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte22.Start_Horn&Lights ,7DA,208,215,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte23.Remote_Horn&Light_Stop Request ,7DA,216,223,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte24.Start_Charging ,7DA,224,231,1,0,0,min,2240BB,6240BB,ff,Conf_Request_timeout_1.byte25.Stop_Charging ,7DA,24,24,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte0.Stop_Engine,0:not Inhibited on board;1:inhibited on board ,7DA,25,25,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte0.Start_Engine,0:not Inhibited on board;1:inhibited on board ,7DA,32,32,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Close_Sunroof,0:not Inhibited on board;1:inhibited on board ,7DA,33,33,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Open_Sunroof,0:not Inhibited on board;1:inhibited on board ,7DA,34,34,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Unlock_Trunk,0:not Inhibited on board;1:inhibited on board ,7DA,35,35,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Lock_Trunk,0:not Inhibited on board;1:inhibited on board ,7DA,36,36,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Lock_Doors,0:not Inhibited on board;1:inhibited on board ,7DA,37,37,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Unlock_Driver_Door,0:not Inhibited on board;1:inhibited on board ,7DA,38,38,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Unlock_All_Doors,0:not Inhibited on board;1:inhibited on board ,7DA,39,39,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte1.Double_Start_Engine,0:not Inhibited on board;1:inhibited on board ,7DA,40,40,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Remote_Horn&Light_StopRequest,0:not Inhibited on board;1:inhibited on board ,7DA,41,41,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Start_Horn&Lights,0:not Inhibited on board;1:inhibited on board ,7DA,42,42,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Start_Lights,0:not Inhibited on board;1:inhibited on board ,7DA,43,43,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Start_Horn,0:not Inhibited on board;1:inhibited on board ,7DA,44,44,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Stop_Pre_Conditioning,0:not Inhibited on board;1:inhibited on board ,7DA,45,45,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Start_Pre_Conditioning,0:not Inhibited on board;1:inhibited on board ,7DA,46,46,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Close_Windows,0:not Inhibited on board;1:inhibited on board ,7DA,47,47,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte2.Windows_Open,0:not Inhibited on board;1:inhibited on board ,7DA,54,54,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte3.Stop_Charging,0:not Inhibited on board;1:inhibited on board ,7DA,55,55,1,0,0,,2240BC,6240BC,ff,Conf_Remote_function_inhibited_onboard.byte3.Start_Charging,0:not Inhibited on board;1:inhibited on board ,7DA,24,27,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte0.Unprotect_Vehicle ,7DA,28,31,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte0.Protect_Vehicle ,7DA,32,35,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte1.Configure_without_protect_unprotect ,7DA,36,39,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte1.Configure_with_protect_unprotect ,7DA,40,43,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte2.Forbid_Charge ,7DA,44,47,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte2.Allow_Charge ,7DA,48,51,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte3.Stop_Engine ,7DA,52,55,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte3.Start_Engine ,7DA,56,59,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte4.Unlock_All_Doors ,7DA,60,63,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte4.Double_Start_Engine ,7DA,64,67,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte5.Lock_Doors ,7DA,68,71,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte5.Unlock_Driver_Door ,7DA,72,75,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte6.Unlock_Trunk ,7DA,76,79,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte6.Lock_Trunk ,7DA,80,83,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte7.Close_Sunroof ,7DA,84,87,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte7.Open_Sunroof ,7DA,88,91,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte8.Close_Windows ,7DA,92,95,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte8.Windows_Open ,7DA,96,99,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte9.Stop_Pre_conditioning ,7DA,100,103,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte9.Start_Pre_conditioning ,7DA,104,107,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte10.Start_Lights ,7DA,108,111,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte10.Start_Horn ,7DA,112,115,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte11.Remote_Horn&Light_StopRequest ,7DA,116,119,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte11.Start_Horn&Lights ,7DA,120,123,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte12.Stop_Charging ,7DA,124,127,1,0,0,,2240BD,6240BD,ff,Conf_Cipher_secured_retry.byte12.Start_Charging ,7DA,24,31,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte0.Protect_Vehicle ,7DA,32,39,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte1.Unprotect_Vehicle ,7DA,40,47,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte2.Configure_with_protect_unprotect ,7DA,48,55,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte3.Configure_without_protect_unprotect ,7DA,56,63,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte4.Allow_Charge ,7DA,64,71,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte5.Forbid_Charge ,7DA,72,79,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte6.Start_Engine ,7DA,80,87,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte7.Stop_Engine ,7DA,88,95,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte8.Double_Start_Engine ,7DA,96,103,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte9.Unlock_All_Doors ,7DA,104,111,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte10.Unlock_Driver_Door ,7DA,112,119,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte11.Lock_Doors ,7DA,120,127,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte12.Lock_Trunk ,7DA,128,135,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte13.Unlock_Trunk ,7DA,136,143,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte14.Open_Sunroof ,7DA,144,151,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte15.Close_Sunroof ,7DA,152,159,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte16.Windows_Open ,7DA,160,167,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte17.Close_Windows ,7DA,168,175,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte18.Start_Pre_conditioning ,7DA,176,183,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte19.Stop_Pre_conditioning ,7DA,184,191,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte20.Start_Horn ,7DA,192,199,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte21.Start_Lights ,7DA,200,207,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte22.Start_Horn&Lights ,7DA,208,215,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte23.Remote_Horn&Light_StopRequest ,7DA,216,223,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte24.Start_Charging ,7DA,224,231,1,0,0,s,2240BE,6240BE,ff,Conf_Request_comm_timeout.byte25.Stop_Charging ,7DA,24,31,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte0.Protect_Vehicle ,7DA,32,39,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte1.Unprotect_Vehicle ,7DA,40,47,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte2.Configure_with_protect_unprotect ,7DA,48,55,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte3.Configure_without_protect_unprotect ,7DA,56,63,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte4.Allow_Charge ,7DA,64,71,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte5.Forbid_Charge ,7DA,72,79,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte6.Start_Engine ,7DA,80,87,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte7.Stop_Engine ,7DA,88,95,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte8.Double_Start_Engine ,7DA,96,103,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte9.Unlock_All_Doors ,7DA,104,111,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte10.Unlock_Driver_Door ,7DA,112,119,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte11.Lock_Doors ,7DA,120,127,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte12.Lock_Trunk ,7DA,128,135,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte13.Unlock_Trunk ,7DA,136,143,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte14.Open_Sunroof ,7DA,144,151,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte15.Close_Sunroof ,7DA,152,159,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte16.Windows_Open ,7DA,160,167,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte17.Close_Windows ,7DA,168,175,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte18.Start_Pre_conditioning ,7DA,176,183,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte19.Stop_Pre_conditioning ,7DA,184,191,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte20.Start_Horn ,7DA,192,199,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte21.Start_Lights ,7DA,200,207,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte22.Start_Horn&Lights ,7DA,208,215,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte23.Remote_Horn&Light_StopRequest ,7DA,216,223,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte24.Start_Charging ,7DA,224,231,1,0,0,s,2240BF,6240BF,ff,Conf_Cipher_secured_comm_timeout.byte25.Stop_Charging ,7DA,24,527,1,0,0,,2240C2,6240C2,2ff,APN3 parameters Profile 1.APN3 ,7DA,528,783,1,0,0,,2240C2,6240C2,2ff,APN3 parameters Profile 1.APN3UID ,7DA,784,1039,1,0,0,,2240C2,6240C2,2ff,APN3 parameters Profile 1.APN3PWD ,7DA,24,527,1,0,0,,2240C4,6240C4,2ff,APN5 parameters Profile 1.APN5 ,7DA,528,783,1,0,0,,2240C4,6240C4,2ff,APN5 parameters Profile 1.APN5UID ,7DA,784,1039,1,0,0,,2240C4,6240C4,2ff,APN5 parameters Profile 1.APN5PWD ,7DA,24,527,1,0,0,,2240C5,6240C5,2ff,APN6 parameters Profile 1.APN6 ,7DA,528,783,1,0,0,,2240C5,6240C5,2ff,APN6 parameters Profile 1.APN6UID ,7DA,784,1039,1,0,0,,2240C5,6240C5,2ff,APN6 parameters Profile 1.APN6PWD ,7DA,24,527,1,0,0,,2240C6,6240C6,2ff,APN7 parameters Profile 1.APN7 ,7DA,528,783,1,0,0,,2240C6,6240C6,2ff,APN7 parameters Profile 1.APN7UID ,7DA,784,1039,1,0,0,,2240C6,6240C6,2ff,APN7 parameters Profile 1.APN7PWD ,7DA,24,527,1,0,0,,2240C7,6240C7,2ff,APN8 parameters Profile 1.APN8 ,7DA,528,783,1,0,0,,2240C7,6240C7,2ff,APN8 parameters Profile 1.APN8UID ,7DA,784,1039,1,0,0,,2240C7,6240C7,2ff,APN8 parameters Profile 1.APN8PWD ,7DA,24,71,1,0,0,,2240C8,6240C8,2ff,HPLMN profile 2 ,7DA,24,279,1,0,0,,2240C9,6240C9,2ff,SIM PIN Code Profile 2 ,7DA,24,31,1,0,0,,2240CA,6240CA,ff,SIM PIN Used Profile 2,0:Deactivated;1:Activated ,7DA,24,527,1,0,0,,2240CB,6240CB,2ff,APN1 parameters Profile 2.APN1 ,7DA,528,783,1,0,0,,2240CB,6240CB,2ff,APN1 parameters Profile 2.APN1UID ,7DA,784,1039,1,0,0,,2240CB,6240CB,2ff,APN1 parameters Profile 2.APN1PWD ,7DA,24,527,1,0,0,,2240CC,6240CC,2ff,APN3 parameters Profile 2.APN3 ,7DA,528,783,1,0,0,,2240CC,6240CC,2ff,APN3 parameters Profile 2.APN3UID ,7DA,784,1039,1,0,0,,2240CC,6240CC,2ff,APN3 parameters Profile 2.APN3PWD ,7DA,24,527,1,0,0,,2240CD,6240CD,2ff,APN5 parameters Profile 2.APN5 ,7DA,528,783,1,0,0,,2240CD,6240CD,2ff,APN5 parameters Profile 2.APN5UID ,7DA,784,1039,1,0,0,,2240CD,6240CD,2ff,APN5 parameters Profile 2.APN5PWD ,7DA,24,527,1,0,0,,2240CE,6240CE,2ff,APN6 parameters Profile 2.APN6 ,7DA,528,783,1,0,0,,2240CE,6240CE,2ff,APN6 parameters Profile 2.APN6UID ,7DA,784,1039,1,0,0,,2240CE,6240CE,2ff,APN6 parameters Profile 2.APN6PWD ,7DA,24,527,1,0,0,,2240CF,6240CF,2ff,APN7 parameters Profile 2.APN7 ,7DA,528,783,1,0,0,,2240CF,6240CF,2ff,APN7 parameters Profile 2.APN7UID ,7DA,784,1039,1,0,0,,2240CF,6240CF,2ff,APN7 parameters Profile 2.APN7PWD ,7DA,24,527,1,0,0,,2240D0,6240D0,2ff,APN8 parameters Profile 2.APN8 ,7DA,528,783,1,0,0,,2240D0,6240D0,4ff,APN8 parameters Profile 2.APN8UID ,7DA,784,1039,1,0,0,,2240D0,6240D0,2ff,APN8 parameters Profile 2.APN8PWD ,7DA,24,31,1,0,0,,2240E0,6240E0,ff,Radio Wave RF,0:Radio wave RF OFF;1:Radio wave RF ON ,7DA,24,279,1,0,0,,2240E7,6240E7,2ff,MQTTServerPort ,7DA,24,31,1,0,0,,2240EC,6240EC,ff,DRX to Off Notification,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,s,2240ED,6240ED,ff,StOffSmsMaxT ,7DA,24,31,1,0,0,s,2240EF,6240EF,ff,StOffDataMaxT ,7DA,24,31,1,0,0,d,2240F0,6240F0,ff,TowDeactivateTime ,7DA,24,39,1,0,0,s,2240F3,6240F3,ff,DRMdataReqTimeout ,7DA,24,31,1,0,0,,2240F4,6240F4,ff,DRXactStatus,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,km/h,2240F6,6240F6,ff,Speed_Threshold ,7DA,24,39,1,0,0,m,2240F7,6240F7,ff,Distance_threshold ,7DA,24,31,1,0,0,,2240F8,6240F8,ff,Ecall crash detected conf,0:Inactive;1:Active ,7DA,24,31,1,0,0,,2240F9,6240F9,ff,Ecall internal detection conf,0:Inactive;1:Active ,7DA,24,31,1,0,0,,2240FB,6240FB,ff,IP_address_APN3.status,0:IP address not available;1:IPV4 address available;2:IPV6 address available ,7DA,32,159,1,0,0,,2240FB,6240FB,4ff,IP_address_APN3.address ,7DA,24,31,1,0,0,,2240FE,6240FE,ff,Powertype,0:ICE;1:EV;2:HEV;3:PHEV ,7DA,24,31,1,0,0,,2240FF,6240FF,ff,XCALL - Destination_address,1:A_Vnext;2:Call_center ,7DA,24,279,1,0,0,,224100,624100,2ff,Xcall - Offboard_server_number ,7DA,24,287,1,0,0,,224101,624101,2ff,Xcall - Call_center_directory ,7DA,24,183,1,0,0,,224102,624102,2ff,Xcall - Operator Service Primary (w/DTMF) ,7DA,24,183,1,0,0,,224103,624103,2ff,Xcall - Operator Service Secondary (w/DTMF) ,7DA,24,183,1,0,0,,224104,624104,2ff,Xcall - Operator Service voice-only (no DTMF) ,7DA,24,279,1,0,0,,22410D,62410D,2ff,Ecall Private - Ecall_number ,7DA,24,183,1,0,0,,22410F,62410F,2ff,Ecall Private - Airbag Primary (w/DTMF) ,7DA,24,183,1,0,0,,224110,624110,2ff,Ecall Private - Airbag Secondary (w/DTMF) ,7DA,24,183,1,0,0,,224111,624111,2ff,Ecall Private - Airbag voice-only (no DTMF) ,7DA,24,183,1,0,0,,224112,624112,2ff,Ecall Private - Emergency Assistance Primary (w/DTMF) ,7DA,24,183,1,0,0,,224113,624113,2ff,Ecall Private - Emergency Assistance Secondary (w/DTMF) ,7DA,24,183,1,0,0,,224114,624114,2ff,Ecall Private - Emergency Assistance voice-only (no DTMF) ,7DA,24,31,1,0,0,,224115,624115,ff,Ecall Private - Ecall_availability_after_cancelling ,7DA,24,31,1,0,0,s,224117,624117,ff,Ecall Private - Enable_cancelation_timer ,7DA,24,31,1,0,0,,224119,624119,ff,Ecall Private - Audio_Output,0:Dedicated speaker;1:Multimedia speaker ,7DA,24,279,1,0,0,,22411A,62411A,2ff,ACN - acn_call_number ,7DA,24,39,1,0,0,ms,22411B,62411B,ff,ACN - acn_response_time ,7DA,24,279,1,0,0,,22411C,62411C,2ff,AACN - aacn_call_number ,7DA,24,39,100,0,0,ms,22411E,62411E,ff,AACN - aacn_response_time ,7DA,24,31,1,0,0,,22411F,62411F,ff,User_Authtentication - Number_wrong_Pin_Retry ,7DA,24,31,1,0,0,s,224121,624121,ff,User_Authtentication - Timeout4 ,7DA,24,31,1,0,0,s,224122,624122,ff,User_Authtentication - Timeout6 ,7DA,24,31,1,0,0,s,224123,624123,ff,User_Authtentication - Timeout9 ,7DA,24,31,1,0,0,min,224125,624125,ff,User_Authtentication - Timeout_SRP_A-IVC ,7DA,24,31,1,0,0,,224126,624126,ff,IVC Basic Service - MQTT_DownloadTopicArray ,7DA,24,31,1,0,0,,224127,624127,ff,IVC Basic Service - MQTT_UploadTopicArray ,7DA,24,279,1,0,0,,224128,624128,2ff,IVC Basic Service - MQTTUsernameConfig ,7DA,24,279,1,0,0,,224129,624129,2ff,IVC Basic Service - MQTTPasswordConfig ,7DA,24,47,1,0,0,s,22412D,62412D,ff,Remote DIAG - T_ECU_QUESTIONING ,7DA,24,39,1,0,0,,22412E,62412E,ff,RNQ - RNQ Status Data frequency Upload ,7DA,24,31,1,0,0,,224130,624130,ff,IVC Basic Service - Brandswitch,0:Renault;1:Nissan;2:Infinity;3:Mitsubishi ,7DA,24,31,1,0,0,,224131,624131,ff,Wifi Hotspot- Activation status,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,224132,624132,ff,Wifi hotspot available network,0:ALL;1:4G;2:3G ,7DA,24,39,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte0-1: Door_Lock_request_duration ,7DA,40,55,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte2-3: Horn_LIGHT_request_duration ,7DA,56,71,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte4-5: RES_request_duration ,7DA,72,87,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte6-7: Charge_request_duration ,7DA,88,103,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte8-9: PriAirConditioner_request_duration ,7DA,104,119,1,0,0,ms,224133,624133,ff,Remote Actuator - Request_Duration.Byte10-11: Battery_Inhibitor_request_duration ,7DA,24,31,1,0,0,,224134,624134,ff,RNQ transmission Level,0:None;1:Full;2:Partial ,7DA,24,31,1,0,0,,224135,624135,ff,Reg Ecall Audio Output,0:Dedicated Speaker;1:Relay Control ,7DA,24,31,1,0,0,h,224136,624136,ff,MSD_HISTORIC_TIMEOUT ,7DA,24,39,1,0,0,ms,224137,624137,ff,Inter_Request ,7DA,24,31,.1,0,1,V,224138,624138,ff,VEH_CHARGER_THRESHOLD ,7DA,24,31,1,0,0,,224139,624139,ff,Xcall Activation Status.Ccall,0:Deactivated;1:Activated ,7DA,32,39,1,0,0,,224139,624139,ff,Xcall Activation Status.Bcall,0:Deactivated;1:Bcall Activated ,7DA,40,47,1,0,0,,224139,624139,ff,Xcall Activation Status.Bcall_Diag status,0:Deactivated;1:Activated ,7DA,48,55,1,0,0,,224139,624139,ff,Xcall Activation Status.Hcall,0:Deactivated;1:Activated ,7DA,24,279,1,0,0,,22413A,62413A,2ff,Xcall - Ccall_Number ,7DA,24,279,1,0,0,,22413B,62413B,2ff,Xcall - Bcall_Number ,7DA,24,279,1,0,0,,22413C,62413C,2ff,Xcall - Hcall_Number ,7DA,24,31,1,0,0,s,22413D,62413D,ff,T_before_calling ,7DA,24,31,1,0,0,,22413E,62413E,ff,RDIAG Activation Status,0:RDaig Deactivated;1:RDaig activated ,7DA,24,31,1,0,0,,22413F,62413F,ff,MQTT_DownloadZlibTopicArray ,7DA,24,31,1,0,0,s,224141,624141,ff,MQTTConnectionTimeOut ,7DA,24,31,1,0,0,s,224142,624142,ff,MQTTSubscriptionTimeOut ,7DA,24,31,1,0,0,s,224143,624143,ff,MQTTPublishTimeOut ,7DA,24,31,1,0,0,s,224144,624144,ff,EVCAN TimeOut ,7DA,24,39,1,0,0,ms,224145,624145,ff,P2Timer_UDS ,7DA,24,39,1,0,0,ms,224146,624146,ff,P2Timer_BC ,7DA,24,31,1,0,0,,224147,624147,ff,Tx_Mode_Configuration,0:MQTT+SMS;1:MQTT ,7DA,24,151,1,0,0,,224148,624148,2ff,XCALL - SMS FALLBACK NUMBER ,7DA,24,31,1,0,0,°,224149,624149,ff,SET_END_POSITION_THRESHOLD_ANGLE ,7DA,24,31,100,0,0,ms,22414A,62414A,ff,SET_MIN_END_POSITION_DETECTED_TIME ,7DA,24,31,1,0,0,,22414B,62414B,ff,RNQ Service Activation Status,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,22414C,62414C,ff,Geofencing - UseLegacyMPDT,0:Use New MPDT Specification;1:Use Legacy MPDT Message ,7DA,24,31,1,0,0,,22414D,62414D,ff,UCD Activation status,0:Deactivated;1:Activated ,7DA,24,39,1,0,0,s,22414E,62414E,ff,OffToDrxTimeout ,7DA,24,31,1,0,0,s,224150,624150,ff,Priv Ecall T LONG PUSH ,7DA,24,31,1,0,0,s,224151,624151,ff,Priv ECALL - CANCEL_CALL_PUSH_DURATION ,7DA,24,31,.1,0,1,,224152,624152,ff,OffsetCorrectionForAreaLimit ,7DA,24,31,.001,0,3,,224153,624153,ff,OffsetCorrectionForSpeedLimit ,7DA,24,31,1,0,0,,224154,624154,ff,NumNotifByAccCycleForAreaLimit ,7DA,24,31,1,0,0,,224155,624155,ff,NumNotifByAccCycleForSpeedLimit ,7DA,24,31,1,0,0,,224156,624156,ff,NumNotifByAccCycleForTimeLimit ,7DA,24,31,1,0,0,,224157,624157,ff,EPMC Activation,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,224158,624158,ff,InitEPMCBudget ,7DA,24,31,.1,0,1,Wh,224159,624159,ff,PwRemote ,7DA,24,31,.1,0,1,W.h,22415A,62415A,ff,PwFOTA ,7DA,24,31,1,0,0,mA,22415B,62415B,ff,PwDRX ,7DA,24,31,.01,0,2,Wh,22415C,62415C,ff,PwMQTT ,7DA,24,31,1,0,0,Wh,22415D,62415D,ff,ThresholdWarningUser ,7DA,24,31,1,0,0,Wh,22415E,62415E,ff,ThresholdLimit ,7DA,24,39,.1,0,1,Wh,22415F,62415F,ff,ThresholdMQTT ,7DA,24,31,1,0,0,,224160,624160,ff,retry_number_X_CALL ,7DA,24,31,1,0,0,,224161,624161,ff,retry_number_E_CALL ,7DA,24,31,1,0,0,,224162,624162,ff,Cloud_Privacy_Mode,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,224163,624163,ff,FOTA _Enable_Disable,0:FOTA OFF;255:FOTA ON ,7DA,24,31,1,0,0,,224164,624164,ff,FOTA Periodic Check,0:No(Infinite);1:7 days;2:30 days;3:180 days ,7DA,24,31,10,0,0,ms,224166,624166,ff,Timer_CCS_Lock_Unlock_cmd ,7DA,24,31,1,0,0,,224167,624167,ff,MQTTRetrySUBSCRIBEInterval ,7DA,24,31,1,0,0,,224168,624168,ff,MQTTRetrySUBSCRIBEOccurrence ,7DA,24,39,1,0,0,s,22416A,62416A,ff,TLS_EXPBackOffStartDelay ,7DA,24,1047,1,0,0,,22416B,62416B,2ff,URL ,7DA,24,39,1,0,0,,22416C,62416C,ff,PORT ,7DA,24,103,1,0,0,,22416D,62416D,2ff,Data Dictionary(DD) Version ,7DA,24,39,1,0,0,s,22416F,62416F,ff,T_FOTA ,7DA,24,31,1,0,0,s,224170,624170,ff,Ecall_Priv_VOICE_CONNECTION_TIMEOUT ,7DA,24,31,1,0,0,,224171,624171,ff,Panic_Call Activation Status,0:Deactivated;1:Activated ,7DA,24,279,1,0,0,,224172,624172,2ff,Panic_Call number ,7DA,24,31,1,0,0,,224173,624173,ff,ACN_AD call Activation Status,0:Deactivated;1:Activated ,7DA,24,279,1,0,0,,224174,624174,2ff,ACN_AD call number ,7DA,24,31,1,0,0,s,224175,624175,ff,Ecall_Priv Ring Call Back Timer ,7DA,24,31,1,0,0,,224176,624176,ff,Plug In Reminder Activation Status,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,224177,624177,ff,Remote Blocking Charging Activation Status,0:deactivated;1:activated ,7DA,24,31,1,0,0,,224178,624178,ff,IMS Activation,0:Deactivated;1:activated ,7DA,24,31,1,0,0,,224179,624179,ff,SMS over IP Activation,0:Deactivated;1:Activated ,7DA,24,55,1,0,0,,22417A,62417A,1ff,SMS Counter2 ,7DA,24,55,1,0,0,,22417B,62417B,1ff,SMS Counter3 ,7DA,24,55,1,0,0,,22417C,62417C,1ff,SMS Counter4 ,7DA,24,55,1,0,0,,22417D,62417D,1ff,SMS Counter5 ,7DA,24,39,1,0,0,s,22417E,62417E,ff,OffToDrxTimeoutBase ,7DA,24,31,.1,0,1,,22417F,62417F,ff,OffToDrxTimeoutMultiplier ,7DA,24,31,1,0,0,h,224180,624180,ff,OffToDrxTimeoutMax ,7DA,24,39,1,0,0,,224181,624181,ff,OffToDrxMaxRetries ,7DA,24,39,1,0,0,min,224182,624182,ff,Ecall_Priv_call_back Timeout ,7DA,24,279,1,0,0,,224183,624183,2ff,SIM SMS Center 2 ,7DA,24,31,1,0,0,,224184,624184,ff,SMSenActStatus,0:Deactivated;1:Activated ,7DA,24,103,1,0,0,,224200,624200,2ff,Model Code ,7DA,24,1999,1,0,0,,224201,624201,2ff,Current Emergency Call URL Information ,7DA,24,1999,1,0,0,,224202,624202,2ff,Current Inspection URL Information ,7DA,24,1999,1,0,0,,224203,624203,2ff,New Emergency Call URL Information ,7DA,24,1999,1,0,0,,224204,624204,2ff,New Inspection URL Information ,7DA,24,223,1,0,0,,224205,624205,2ff,Scheduled Change Date and Time ,7DA,24,183,1,0,0,,224206,624206,2ff,Center’s Telephone Number ,7DA,24,31,1,0,0,,224207,624207,ff,User_collation_result_of_the_inspection.judge,0:Inspected (Available)-;1:Inspected (Unavailable)-;2:Uninspected ,7DA,24,223,1,0,0,,224208,624208,2ff,Automatic inspection time ,7DA,24,31,1,0,0,,224209,624209,ff,Driver_Info_Upload_Permit,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,,22420A,62420A,ff,Probe_Upload_Permit,0:Deactivated;1:Activated ,7DA,24,55,1,0,0,m,22420B,62420B,1ff,Location Data Mileage No Fixed Location ,7DA,24,1623,1,0,0,,22420C,62420C,2ff,Location Data Acquisition Time1 ,7DA,24,1623,1,0,0,,22420D,62420D,2ff,Location Data Acquisition Time2 ,7DA,24,1623,1,0,0,,22420E,62420E,2ff,Location Data Acquisition Time3 ,7DA,24,1623,1,0,0,,22420F,62420F,2ff,Location Data Acquisition Time4 ,7DA,24,1623,1,0,0,,224210,624210,2ff,Location Data Acquisition Time5 ,7DA,24,1623,1,0,0,,224211,624211,2ff,Location Data Acquisition Time6 ,7DA,24,1623,1,0,0,,224212,624212,2ff,Location Data Acquisition Time7 ,7DA,24,1623,1,0,0,,224213,624213,2ff,Location Data Acquisition Time8 ,7DA,24,535,1,0,0,,224214,624214,4ff,Location Data Difference Between Front Wheels Rotation ,7DA,24,1047,1,0,0,,224215,624215,2ff,Location Data Steering Angle ,7DA,24,55,1,0,0,,224216,624216,2ff,Location Data Vehicle Speed ,7DA,24,4119,1,0,0,,224217,624217,2ff,Emergency Call Data1 ,7DA,24,4119,1,0,0,,224218,624218,2ff,Emergency Call Data2 ,7DA,24,4119,1,0,0,,224219,624219,2ff,Emergency Call Data3 ,7DA,24,4119,1,0,0,,22421A,62421A,2ff,Emergency Call Data4 ,7DA,24,4119,1,0,0,,22421B,62421B,2ff,Emergency Call Data5 ,7DA,24,47,1,0,0,,22421C,62421C,2ff,Emergency Call Log ,7DA,24,31,1,0,0,,22421D,62421D,2ff,Radio reception condition ,7DA,24,39,1,0,0,,22421E,62421E,2ff,Outgoing Call Retry Count ,7DA,24,223,1,0,0,,22421F,62421F,2ff,Error Histoy.TCU ON time ,7DA,224,423,1,0,0,,22421F,62421F,2ff,Error Histoy.TCU OFF time ,7DA,424,623,1,0,0,,22421F,62421F,2ff,Error Histoy.ecall start time ,7DA,624,823,1,0,0,,22421F,62421F,2ff,Error Histoy.ecall end time ,7DA,824,1023,1,0,0,,22421F,62421F,2ff,Error Histoy.failure occurrence time ,7DA,1024,1063,1,0,0,,22421F,62421F,2ff,Error Histoy.failure contents ,7DA,1064,1263,1,0,0,,22421F,62421F,2ff,Error Histoy.Switch to backup battery time ,7DA,24,31,1,0,0,,224220,624220,ff,RA_Presoak_Underhood_Check_Activation_CF,0:INACTIVE;1:ACTIVE ,7DA,24,31,1,0,0,,224221,624221,ff,Privacy_Mode_Activation,0:Activated;1:Deactivated ,7DA,24,31,1,0,0,,224300,624300,ff,Remote Ajustable SOC Activation Status,0:OFF;1:ON ,7DA,24,31,1,0,0,,224301,624301,ff,Remote KeyFob Inhibition Activation Status,0:OFF;1:ON ,7DA,24,31,1,0,0,,224302,624302,ff,Remote KeyFob Inhibition Supported,0:Remote KeyFob Inhibition command is not supported by HFM;1:Remote KeyFob Inhibition command is supported by HFM ,7DA,24,24,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Unlock VU Cargo Zone,0:Code not needed;1:Code needed ,7DA,25,25,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Lock VU Cargo Zone,0:Code not needed;1:Code needed ,7DA,26,26,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Unlock VU Cabin Zone,0:Code not needed;1:Code needed ,7DA,27,27,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Lock VU Cabin Zone,0:Code not needed;1:Code needed ,7DA,29,29,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Lock Driver Door Only,0:Code not needed;1:Code needed ,7DA,36,36,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.ikey_Inhibited,0:Code not needed;1:Code needed ,7DA,37,37,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.ikey_Authorized,0:Code not needed;1:Code needed ,7DA,38,38,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Unlock Superlock,0:Code not needed;1:Code needed ,7DA,39,39,1,0,0,,224303,624303,ff,Param_Pin_Code_need_Extn.Lock Superlock,0:Code not needed;1:Code needed ,7DA,24,24,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Unlock VU Cargo Zone,0:Presence not needed;1:Presence needed ,7DA,25,25,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Lock VU Cargo Zone,0:Presence not needed;1:Presence needed ,7DA,26,26,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Unlock VU Cabin Zone,0:Presence not needed;1:Presence needed ,7DA,27,27,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Lock VU Cabin Zone,0:Presence not needed;1:Presence needed ,7DA,29,29,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Lock Driver Door Only,0:Presence not needed;1:Presence needed ,7DA,36,36,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.ikey_Inhibited,0:Presence not needed;1:Presence needed ,7DA,37,37,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.ikey_Authorized,0:Presence not needed;1:Presence needed ,7DA,38,38,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Unlock Superlock,0:Presence not needed;1:Presence needed ,7DA,39,39,1,0,0,,224304,624304,ff,Conf_Customer_Presence_need_Extn.Lock Superlock,0:Presence not needed;1:Presence needed ,7DA,40,47,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Lock Driver Door Only ,7DA,48,55,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Unlock Driver Door Only ,7DA,56,63,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Lock VU Cabin Zone ,7DA,64,71,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Unlock VU Cabin Zone ,7DA,72,79,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Lock VU Cargo Zone ,7DA,80,87,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Unlock VU Cargo Zone ,7DA,88,95,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Lock Superlock ,7DA,96,103,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.Unlock Superlock ,7DA,104,111,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.ikay_Authorized ,7DA,112,119,1,0,0,min,224305,624305,ff,Conf_Request_timeout_1_Extn.ikey_Inhibited ,7DA,24,24,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Unlock VU Cargo Zone,0:not inhibited on board;1:inhibited on board ,7DA,25,25,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Lock VU Cargo Zone,0:not inhibited on board;1:inhibited on board ,7DA,26,26,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Unlock VU Cabin Zone,0:not inhibited on board;1:inhibited on board ,7DA,27,27,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Lock VU Cabin Zone,0:not inhibited on board;1:inhibited on board ,7DA,28,28,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Unlock Driver Door Only,0:not inhibited on board;1:inhibited on board ,7DA,29,29,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Lock Driver Door Only,0:not inhibited on board;1:inhibited on board ,7DA,36,36,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.ikey_Inhibited,0:not inhibited on board;1:inhibited on board ,7DA,37,37,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.ikay_Authorized,0:not inhibited on board;1:inhibited on board ,7DA,38,38,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Unlock Superlock,0:not inhibited on board;1:inhibited on board ,7DA,39,39,1,0,0,,224306,624306,ff,Conf_Remote_fn_inhibited_onboard_Extn.Lock Superlock,0:not inhibited on board;1:inhibited on board ,7DA,32,35,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Unlock Driver Door Only ,7DA,36,39,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Lock Driver Door Only ,7DA,40,43,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Unlock VU Cabin Zone ,7DA,44,47,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Lock VU Cabin Zone ,7DA,48,51,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Unlock VU Cargo Zone ,7DA,52,55,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Lock VU Cargo Zone ,7DA,56,59,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Unlock Superlock ,7DA,60,63,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.Lock Superlock ,7DA,64,67,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.ikey_Inhibited ,7DA,68,71,1,0,0,,224307,624307,ff,Conf_Cipher_secured_retry_Extn.ikay_Authorized ,7DA,40,47,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Lock Driver Door Only ,7DA,48,55,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Unlock Driver Door Only ,7DA,56,63,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Lock VU Cabin Zone ,7DA,64,71,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Unlock VU Cabin Zone ,7DA,72,79,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Lock VU Cargo Zone ,7DA,80,87,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Unlock VU Cargo Zone ,7DA,88,95,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Lock Superlock ,7DA,96,103,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.Unlock Superlock ,7DA,104,111,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.iKEY_AUTHORIZED ,7DA,112,119,1,0,0,,224308,624308,ff,CipherSecCommTimeout_Extn.iKEY_INHIBITED ,7DA,24,39,1,0,0,h,224309,624309,ff,Technical_Cold_Reboot_Frequency ,7DA,24,31,1,0,0,,224310,624310,ff,SCM_Activation_Status,0:Deactivated;1:Activated ,7DA,24,31,1,0,0,s,224312,624312,ff,RA_KeepRefuseToSleepTime ,7DA,24,24,1,0,0,,226000,626000,ff,DTC Activation.Ecall Microphone,0:Deactivated;1:Activated ,7DA,25,25,1,0,0,,226000,626000,ff,DTC Activation.EMU,0:Deactivated;1:Activated ,7DA,26,26,1,0,0,,226000,626000,ff,DTC Activation.Aux_In_Info/Tel_Mute_Out,0:Deactivated;1:Activated ,7DA,27,27,1,0,0,,226000,626000,ff,DTC Activation.AirbagCAN,0:Deactivated;1:Activated ,7DA,28,28,1,0,0,,226000,626000,ff,DTC Activation.CAN-M,0:Deactivated;1:Activated ,7DA,29,29,1,0,0,,226000,626000,ff,DTC Activation.CAN-V,0:Deactivated;1:Activated ,7DA,30,30,1,0,0,,226000,626000,ff,DTC Activation.InternalBattery status,0:Deactivated;1:Activated ,7DA,31,31,1,0,0,,226000,626000,ff,DTC Activation.Battery,0:Deactivated;1:Activated ,7DA,32,32,1,0,0,,226000,626000,ff,DTC Activation.MIC_OUT,0:Deactivated;1:Activated ,7DA,33,33,1,0,0,,226000,626000,ff,DTC Activation.GNSS COMMUNICATIONS FAILURE,0:Deactivated;1:Activated ,7DA,34,34,1,0,0,,226000,626000,ff,DTC Activation.System Internal Failure,0:Deactivated;1:Activated ,7DA,35,35,1,0,0,,226000,626000,ff,DTC Activation.Ecall Button,0:Deactivated;1:Activated ,7DA,36,36,1,0,0,,226000,626000,ff,DTC Activation.Ecall Blacklight LED,0:Deactivated;1:Activated ,7DA,37,37,1,0,0,,226000,626000,ff,DTC Activation.Ecall Auto LED,0:Deactivated;1:Activated ,7DA,38,38,1,0,0,,226000,626000,ff,DTC Activation.Ecall Green LED,0:Deactivated;1:Activated ,7DA,39,39,1,0,0,,226000,626000,ff,DTC Activation.Ecall Red LED,0:Deactivated;1:Activated ,7DA,40,40,1,0,0,,226000,626000,ff,DTC Activation.Vnext Functional,0:Deactivated;1:Activated ,7DA,41,41,1,0,0,,226000,626000,ff,DTC Activation.Vnext Authentication,0:Deactivated;1:Activated ,7DA,42,42,1,0,0,,226000,626000,ff,DTC Activation.PPP Data Comm. Authentication,0:Deactivated;1:Activated ,7DA,43,43,1,0,0,,226000,626000,ff,DTC Activation.Voice Failure,0:Deactivated;1:Activated ,7DA,44,44,1,0,0,,226000,626000,ff,DTC Activation.SMS,0:Deactivated;1:Activated ,7DA,45,45,1,0,0,,226000,626000,ff,DTC Activation.HU/Navi USB,0:Deactivated;1:Activated ,7DA,46,46,1,0,0,,226000,626000,ff,DTC Activation.Virgin Configuration,0:Deactivated;1:Activated ,7DA,47,47,1,0,0,,226000,626000,ff,DTC Activation.A-IVC OVERHEAT,0:Deactivated;1:Activated ,7DA,48,48,1,0,0,,226000,626000,ff,DTC Activation.Dedicated speaker,0:Deactivated;1:Activated ,7DA,49,49,1,0,0,,226000,626000,ff,DTC Activation.Audio HU,0:Deactivated;1:Activated ,7DA,50,50,1,0,0,,226000,626000,ff,DTC Activation.A-IVC Clock,0:Deactivated;1:Activated ,7DA,51,51,1,0,0,,226000,626000,ff,DTC Activation. Cellular Registration Denied,0:Deactivated;1:Activated ,7DA,52,52,1,0,0,,226000,626000,ff,DTC Activation.SIM Failure,0:Deactivated;1:Activated ,7DA,53,53,1,0,0,,226000,626000,ff,DTC Activation. Invalid A-IVC,0:Deactivated;1:Activated ,7DA,54,54,1,0,0,,226000,626000,ff,DTC Activation.Ext. GNSS Antenna for Splitter,0:Deactivated;1:Activated ,7DA,55,55,1,0,0,,226000,626000,ff,DTC Activation.Vnext Config,0:Deactivated;1:Activated ,7DA,56,56,1,0,0,,226000,626000,ff,DTC Activation.Vnext Regional Timeout,0:Deactivated;1:Activated ,7DA,57,57,1,0,0,,226000,626000,ff,DTC Activation.Vnext Master Timeout,0:Deactivated;1:Activated ,7DA,58,58,1,0,0,,226000,626000,ff,DTC Activation.Vnext Regional Authentication NOK,0:Deactivated;1:Activated ,7DA,59,59,1,0,0,,226000,626000,ff,DTC Activation.Vnext Master Authentication NOK,0:Deactivated;1:Activated ,7DA,60,60,1,0,0,,226000,626000,ff,DTC Activation. Airbag Hardwire,0:Deactivated;1:Activated ,7DA,61,61,1,0,0,,226000,626000,ff,DTC Activation.Acceleromter Failure,0:Deactivated;1:Activated ,7DA,62,62,1,0,0,,226000,626000,ff,DTC Activation.Ext. GNSS Antenna,0:Deactivated;1:Activated ,7DA,63,63,1,0,0,,226000,626000,ff,DTC Activation.Ext. Cellular Antenna,0:Deactivated;1:Activated ,7DA,64,64,1,0,0,,226000,626000,ff,DTC Activation.A-IVC Invalid Region Setting,0:Deactivated;1:Activated ,7DA,65,65,1,0,0,,226000,626000,ff,DTC Activation.A-IVC No Region Setting,0:Deactivated;1:Activated ,7DA,66,66,1,0,0,,226000,626000,ff,DTC Activation.A-IVC Authentication Fails,0:Deactivated;1:Activated ,7DA,67,67,1,0,0,,226000,626000,ff,DTC Activation.Part Certificate Storage Error,0:Deactivated;1:Activated ,7DA,68,68,1,0,0,,226000,626000,ff,DTC Activation.Part Certificate Verification Fails,0:Deactivated;1:Activated ,7DA,69,69,1,0,0,,226000,626000,ff,DTC Activation.No Certificate Available,0:Deactivated;1:Activated ,7DA,70,70,1,0,0,,226000,626000,ff,DTC Activation.Bad Pairing A-IVC & VIN,0:Deactivated;1:Activated ,7DA,71,71,1,0,0,,226000,626000,ff,DTC Activation.Part ID is Unknown,0:Deactivated;1:Activated ,7DA,72,72,1,0,0,,226000,626000,ff,DTC Activation. Remote Actuator not Activated,0:Deactivated;1:Activated ,7DA,73,73,1,0,0,,226000,626000,ff,DTC Activation.Internal Battery Capacity Low_A,0:Deactivated;1:Activated ,7DA,74,74,1,0,0,,226000,626000,ff,DTC Activation.Relay Control,0:Deactivated;1:Activated ,7DA,75,75,1,0,0,,226000,626000,ff,DTC Activation.Service Check Not Complete,0:Deactivated;1:Activated ,7DA,76,76,1,0,0,,226000,626000,ff,DTC Activation.Partition Setting Storage Error,0:Deactivated;1:Activated ,7DA,77,77,1,0,0,,226000,626000,ff,DTC Activation.A-IVC Invalid Partition Setting,0:Deactivated;1:Activated ,7DA,78,78,1,0,0,,226000,626000,ff,DTC Activation.A-IVC No Partition Setting,0:Deactivated;1:Activated ,7DA,79,79,1,0,0,,226000,626000,ff,DTC Activation.Region Setting Storage Error,0:Deactivated;1:Activated ,7DA,80,80,1,0,0,,226000,626000,ff,DTC Activation.Internal HTTP Server Error,0:Deactivated;1:Activated ,7DA,81,81,1,0,0,,226000,626000,ff,DTC Activation.Bad HTTP Request,0:Deactivated;1:Activated ,7DA,82,82,1,0,0,,226000,626000,ff,DTC Activation.BCM Pairing DTC,0:Deactivated;1:Activated ,7DA,83,83,1,0,0,,226000,626000,ff,DTC Activation.Remote Actuator- PIN code missing,0:Deactivated;1:Activated ,7DA,84,84,1,0,0,,226000,626000,ff,DTC Activation. Remote Actuator- CAN failure,0:Deactivated;1:Activated ,7DA,85,85,1,0,0,,226000,626000,ff,DTC Activation.Remote Actuator without unknown ID,0:Deactivated;1:Activated ,7DA,86,86,1,0,0,,226000,626000,ff,DTC Activation. Remote Actuator without Cipher key,0:Deactivated;1:Activated ,7DA,87,87,1,0,0,,226000,626000,ff,DTC Activation.Remote Actuator service activated without ciphering key,0:Deactivated;1:Activated ,7DA,24,39,1,0,0,,227000,627000,4ff,Audio Car Group tunning.CarGroup ,7DA,40,55,1,0,0,,227000,627000,4ff,Audio Car Group tunning.Checksum ,7DA,24,1767,1,0,0,,227001,627001,4ff,Audio Tunning 1.RawData ,7DA,1768,1783,1,0,0,,227001,627001,4ff,Audio Tunning 1.Checksum ,7DA,24,1767,1,0,0,,227002,627002,4ff,Audio Tunning 2.RawData ,7DA,1768,1783,1,0,0,,227002,627002,4ff,Audio Tunning 2.Checksum ,7DA,24,1767,1,0,0,,227003,627003,4ff,Audio Tunning 3.RawData ,7DA,1768,1783,1,0,0,,227003,627003,4ff,Audio Tunning 3.Checksum ,7DA,24,1767,1,0,0,,227004,627004,4ff,Audio Tunning 4.RawData ,7DA,1768,1783,1,0,0,,227004,627004,4ff,Audio Tunning 4.Checksum ,7DA,24,1767,1,0,0,,227005,627005,4ff,Audio Tunning 5.RawData ,7DA,1768,1783,1,0,0,,227005,627005,4ff,Audio Tunning 5.Checksum ,7DA,24,1767,1,0,0,,227006,627006,4ff,Audio Tunning 6.RawData ,7DA,1768,1783,1,0,0,,227006,627006,4ff,Audio Tunning 6.Checksum ,7DA,24,1767,1,0,0,,227007,627007,4ff,Audio Tunning 7.RawData ,7DA,1768,1783,1,0,0,,227007,627007,4ff,Audio Tunning 7.Checksum ,7DA,24,1767,1,0,0,,227008,627008,4ff,Audio Tunning 8.RawData ,7DA,1768,1783,1,0,0,,227008,627008,4ff,Audio Tunning 8.Checksum ,7DA,24,1767,1,0,0,,227009,627009,4ff,Audio Tunning 9.RawData ,7DA,1768,1783,1,0,0,,227009,627009,4ff,Audio Tunning 9.Checksum ,7DA,24,1767,1,0,0,,227010,627010,4ff,Audio Tunning 10.RawData ,7DA,1768,1783,1,0,0,,227010,627010,4ff,Audio Tunning 10.Checksum ,7DA,24,31,1,0,0,,229000,629000,ff,Control of Microphone connection,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK ,7DA,24,31,1,0,0,,229001,629001,ff,Control of Loudspeaker Connection,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK ,7DA,24,31,1,0,0,,229003,629003,ff,CONTROL AUX_IN_INFO OUTPUT,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK ,7DA,24,31,1,0,0,,229006,629006,ff,Control Of Led Ecall,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK;3:No Control done ,7DA,24,31,1,0,0,,229007,629007,ff,Control Of Led Ecall Malfunction Green,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK;3:No Control done ,7DA,24,31,1,0,0,,229008,629008,ff,Control Of Led Ecall Malfunction Red,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK;3:No Control done ,7DA,24,31,1,0,0,,229009,629009,ff,Control Of Led Backlight,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK;3:No Control done ,7DA,24,31,1,0,0,,229100,629100,ff,CONTROL OF Test TEL Number In Validation,0:Control in progress;1:Control Completed and OK;2:Control complete and NOK ,7DA,24,31,1,0,0,,22C000,62C000,ff,USB Timeout ,7DA,24,2495,1,0,0,,22DA00,62DA00,2ff,V-SSD ,7DA,24,599,1,0,0,,22DA10,62DA10,2ff,V-TDD_No.0 ,7DA,24,599,1,0,0,,22DA11,62DA11,2ff,V-TDD_No.1 ,7DA,24,599,1,0,0,,22DA12,62DA12,2ff,V-TDD_No.2 ,7DA,24,599,1,0,0,,22DA13,62DA13,2ff,V-TDD_No.3 ,7DA,24,599,1,0,0,,22DA14,62DA14,2ff,V-TDD_No.4 ,7DA,24,31,1,0,0,,22DAB0,62DAB0,ff,TriggerFrameFunctionActivation,0:Deactivated;170:Activated ,7DA,24,151,1,0,0,,22F010,62F010,4ff,programmingOperationFingerPrint ,7DA,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,7DA,24,103,1,0,0,,22F012,62F012,2ff,Operational Reference ,7DA,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationnalReference ,7DA,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,7DA,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC Occurrence Counter ,7DA,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,7DA,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,7DA,24,279,1,0,0,,22F180,62F180,4ff,Boot Version ,7DA,24,103,1,0,0,,22F182,62F182,2ff,CalibrationNumber ,7DA,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,7DA,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,7DA,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7DA,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,7DA,24,159,1,0,0,,22F190,62F190,2ff,VIN ,7DA,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,7DA,24,127,1,0,0,,22F192,62F192,2ff,ecuHardware.hardware ,7DA,128,151,1,0,0,,22F192,62F192,2ff,ecuHardware.version ,7DA,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7DA,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7DA,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,7DA,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,7DA,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigurationDataReferenceAfterConfigurationProcess ,7DA,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/DCM_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal level out of range/zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component | system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/E-ACT-EBA_Dtcs.csv ================================================ 58F7,VDC CAN Failure 58F5,USM CAN Failure 58F3,Thermal failure 58F0,Supply Line EDLC 58F1,standalone mode 58DF,RunOut in Failure 58EF,RPS Sensor 58EC,Position sensor plausibility in failure 58ED,Motor Power supply in failure E148,Loste communication with VDC on Chassis CAN E143,Loste communication with HEVC on Chassis CAN E140,Loste communication with ECM on Chassis CAN E248,Lost Communication with VDC on Vehicle CAN E15B,Lost Communication with USM on Chassis CAN E14F,Lost Communication with BCM on Chassis CAN 58DE,LIN Communication EDLC Failure 58F6,HEVC CAN Failure 58E3,External Brake in failure 58EB,EDLC Voltage monitoring 58D6,EDLC Failure Wakeup circuit error 58DD,EDLC Failure Vref circuit error 58DB,EDLC Failure Thermister circuit error 58D0,EDLC Failure overvoltage 58D8,EDLC Failure microcomputer error 58D9,EDLC Failure Insulation error 58D3,EDLC Failure Discharging circuit short error 58D2,EDLC Failure Discharging circuit open error 58DA,EDLC Failure Charging control circuit error 58D1,EDLC Failure Charging circuit error 58D4,EDLC Failure Cell short or overvoltage error 58DC,EDLC Failure Capacitor degrading error 58D7,EDLC Failure B-IN circuit and monitor circuit error 58D5,EDLC Failure Backup circuit error 58FF,ECU Failure 2 58FB,ECU Failure 1 58E9,ECU failure 58F8,ECM CAN Failure 58FE,EBA Temperature Sensors Failure 58FD,EBA Temperature Sensor 2 Failure 58FC,EBA Temperature Sensor 1 Failure 58FA,EBA Calibration Failure 58EE,DTS Sensor 58EA,Driver Brake Wish Not Detectable 58E8,Current consumption in EDLC Mode in Failure 58F9,CRBS failure 58E5,CAN V1 Bus OFF 58E6,CAN register 58E4,CAN Chassis Bus off 58F4,BCM CAN Failure 58E2,Battery Voltage compliance 58E7,Battery Voltage 58E1,Actuation Control 58F2,Activation switch EDLC ================================================ FILE: app/src/main/assets/ZOE_Ph2/E-ACT-EBA_Fields.csv ================================================ ,18DAF1E2,0,0,1,0,0,,1000,5000,ff,StartDiagnosticSession.Start Diagnostic Session ,18DAF1E2,8,15,1,0,0,,1001,5001,ff,StartDiagnosticSession.ResponseType,129:Yes ,18DAF1E2,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Start Programming Session ,18DAF1E2,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Start Extended Session ,18DAF1E2,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,18DAF1E2,16,23,1,0,0,,190109,590109,ff,DTCStatusAvailabilityMask ,18DAF1E2,24,31,1,0,0,,190109,590109,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,18DAF1E2,32,47,1,0,0,,190109,590109,ff,DTCCount ,18DAF1E2,16,23,1,0,0,,190201,590201,ff,DTCStatusAvailabilityMask ,18DAF1E2,24,39,1,0,0,,190201,590201,ff,DTCDeviceIdentifier,22753:Actuation Control;22759:Battery Voltage;22754:Battery Voltage compliance;22770:Activation switch EDLC;22756:CAN Chassis Bus off;22758:CAN register;22757:CAN V1 Bus OFF;22772:BCM CAN Failure;22760:Current consumption in EDLC Mode in Failure;22762:Driver Brake Wish Not Detectable;22766:DTS Sensor;22777:CRBS failure;22778:EBA Calibration Failure;22780:EBA Temperature Sensor 1 Failure;22781:EBA Temperature Sensor 2 Failure;22776:ECM CAN Failure;22761:ECU failure;22779:ECU Failure 1;22782:EBA Temperature Sensors Failure;22741:EDLC Failure Backup circuit error;22743:EDLC Failure B-IN circuit and monitor circuit error;22748:EDLC Failure Capacitor degrading error;22740:EDLC Failure Cell short or overvoltage error;22737:EDLC Failure Charging circuit error;22746:EDLC Failure Charging control circuit error;22738:EDLC Failure Discharging circuit open error;22739:EDLC Failure Discharging circuit short error;22745:EDLC Failure Insulation error;22744:EDLC Failure microcomputer error;22736:EDLC Failure overvoltage;22747:EDLC Failure Thermister circuit error;22749:EDLC Failure Vref circuit error;22742:EDLC Failure Wakeup circuit error;22763:EDLC Voltage monitoring;22755:External Brake in failure;22774:HEVC CAN Failure;22750:LIN Communication EDLC Failure;22783:ECU Failure 2;57679:Lost Communication with BCM on Chassis CAN;57691:Lost Communication with USM on Chassis CAN;57664:Loste communication with ECM on Chassis CAN;57667:Loste communication with HEVC on Chassis CAN;57672:Loste communication with VDC on Chassis CAN;22765:Motor Power supply in failure;22764:Position sensor plausibility in failure;22767:RPS Sensor;22751:RunOut in Failure;22769:standalone mode;22768:Supply Line EDLC;22771:Thermal failure;22773:USM CAN Failure;22775:VDC CAN Failure;57928:Lost Communication with VDC on Vehicle CAN ,18DAF1E2,40,43,1,0,0,,190201,590201,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM (Freq Mod) / PWM (Pulse Width Mod) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,18DAF1E2,44,47,1,0,0,,190201,590201,ff,DTCFailureType.ManufacturerOrSupplier ,18DAF1E2,48,55,1,0,0,,190201,590201,ff,StatusOfDTC ,18DAF1E2,49,49,1,0,0,,190201,590201,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1E2,50,50,1,0,0,,190201,590201,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1E2,51,51,1,0,0,,190201,590201,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1E2,52,52,1,0,0,,190201,590201,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1E2,53,53,1,0,0,,190201,590201,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1E2,54,54,1,0,0,,190201,590201,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1E2,55,55,1,0,0,,190201,590201,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1E2,16,23,1,0,0,,190209,590209,ff,DTCStatusAvailabilityMask ,18DAF1E2,24,39,1,0,0,,190209,590209,ff,DTCDeviceIdentifier,22753:Actuation Control;22759:Battery Voltage;22754:Battery Voltage compliance;22770:Activation switch EDLC;22756:CAN Chassis Bus off;22758:CAN register;22757:CAN V1 Bus OFF;22772:BCM CAN Failure;22760:Current consumption in EDLC Mode in Failure;22762:Driver Brake Wish Not Detectable;22766:DTS Sensor;22777:CRBS failure;22778:EBA Calibration Failure;22780:EBA Temperature Sensor 1 Failure;22781:EBA Temperature Sensor 2 Failure;22776:ECM CAN Failure;22761:ECU failure;22779:ECU Failure 1;22782:EBA Temperature Sensors Failure;22741:EDLC Failure Backup circuit error;22743:EDLC Failure B-IN circuit and monitor circuit error;22748:EDLC Failure Capacitor degrading error;22740:EDLC Failure Cell short or overvoltage error;22737:EDLC Failure Charging circuit error;22746:EDLC Failure Charging control circuit error;22738:EDLC Failure Discharging circuit open error;22739:EDLC Failure Discharging circuit short error;22745:EDLC Failure Insulation error;22744:EDLC Failure microcomputer error;22736:EDLC Failure overvoltage;22747:EDLC Failure Thermister circuit error;22749:EDLC Failure Vref circuit error;22742:EDLC Failure Wakeup circuit error;22763:EDLC Voltage monitoring;22755:External Brake in failure;22774:HEVC CAN Failure;22750:LIN Communication EDLC Failure;22783:ECU Failure 2;57679:Lost Communication with BCM on Chassis CAN;57691:Lost Communication with USM on Chassis CAN;57664:Loste communication with ECM on Chassis CAN;57667:Loste communication with HEVC on Chassis CAN;57672:Loste communication with VDC on Chassis CAN;22765:Motor Power supply in failure;22764:Position sensor plausibility in failure;22767:RPS Sensor;22751:RunOut in Failure;22769:standalone mode;22768:Supply Line EDLC;22771:Thermal failure;22773:USM CAN Failure;22775:VDC CAN Failure;57928:Lost Communication with VDC on Vehicle CAN ,18DAF1E2,40,43,1,0,0,,190209,590209,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM (Freq Mod) / PWM (Pulse Width Mod) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,18DAF1E2,44,47,1,0,0,,190209,590209,ff,DTCFailureType.ManufacturerOrSupplier ,18DAF1E2,48,55,1,0,0,,190209,590209,ff,StatusOfDTC ,18DAF1E2,49,49,1,0,0,,190209,590209,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1E2,50,50,1,0,0,,190209,590209,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1E2,51,51,1,0,0,,190209,590209,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1E2,52,52,1,0,0,,190209,590209,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1E2,53,53,1,0,0,,190209,590209,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1E2,54,54,1,0,0,,190209,590209,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1E2,55,55,1,0,0,,190209,590209,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1E2,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,18DAF1E2,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,18DAF1E2,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,18DAF1E2,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,18DAF1E2,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,18DAF1E2,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF1E2,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,18DAF1E2,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,18DAF1E2,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,18DAF1E2,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF1E2,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,18DAF1E2,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,18DAF1E2,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,18DAF1E2,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF1E2,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,18DAF1E2,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord ,18DAF1E2,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC ,18DAF1E2,48,55,1,0,0,,190600000085,590600000085,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF1E2,56,79,1,0,0,km,190600000085,590600000085,ff,DTCExtendedData.DTCLastDiseappearMileage ,18DAF1E2,16,39,1,0,0,,190600000086,590600000086,4ff,DTCRecord ,18DAF1E2,40,47,1,0,0,,190600000086,590600000086,ff,StatusOfDTC ,18DAF1E2,48,55,1,0,0,,190600000086,590600000086,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF1E2,56,79,1,0,0,km,190600000086,590600000086,ff,DTCExtendedData.DTCTravelledDistanceFailurePresent ,18DAF1E2,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord ,18DAF1E2,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC ,18DAF1E2,48,55,1,0,0,,190600000087,590600000087,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF1E2,56,79,1,0,0,km,190600000087,590600000087,ff,DTCExtendedData.DTCFirstAppearMileage ,18DAF1E2,16,39,1,0,0,,190600000088,590600000088,4ff,DTCRecord ,18DAF1E2,40,47,1,0,0,,190600000088,590600000088,ff,StatusOfDTC ,18DAF1E2,48,55,1,0,0,,190600000088,590600000088,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF1E2,56,71,1,0,0,,190600000088,590600000088,ff,DTCExtendedData.IUPRnumerator ,18DAF1E2,16,39,1,0,0,,190600000089,590600000089,4ff,DTCRecord ,18DAF1E2,40,47,1,0,0,,190600000089,590600000089,ff,StatusOfDTC ,18DAF1E2,48,55,1,0,0,,190600000089,590600000089,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF1E2,56,71,1,0,0,,190600000089,590600000089,ff,DTCExtendedData.IUPRdenominator ,18DAF1E2,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,18DAF1E2,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,18DAF1E2,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPR numerator;137:IUPR denominator ,18DAF1E2,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,18DAF1E2,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,18DAF1E2,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,22753:Actuation Control;22759:Battery Voltage;22754:Battery Voltage compliance;22770:Activation switch EDLC;22756:CAN Chassis Bus off;22758:CAN register;22757:CAN V1 Bus OFF;22772:BCM CAN Failure;22760:Current consumption in EDLC Mode in Failure;22762:Driver Brake Wish Not Detectable;22766:DTS Sensor;22777:CRBS failure;22778:EBA Calibration Failure;22780:EBA Temperature Sensor 1 Failure;22781:EBA Temperature Sensor 2 Failure;22776:ECM CAN Failure;22761:ECU failure;22779:ECU Failure 1;22782:EBA Temperature Sensors Failure;22741:EDLC Failure Backup circuit error;22743:EDLC Failure B-IN circuit and monitor circuit error;22748:EDLC Failure Capacitor degrading error;22740:EDLC Failure Cell short or overvoltage error;22737:EDLC Failure Charging circuit error;22746:EDLC Failure Charging control circuit error;22738:EDLC Failure Discharging circuit open error;22739:EDLC Failure Discharging circuit short error;22745:EDLC Failure Insulation error;22744:EDLC Failure microcomputer error;22736:EDLC Failure overvoltage;22747:EDLC Failure Thermister circuit error;22749:EDLC Failure Vref circuit error;22742:EDLC Failure Wakeup circuit error;22763:EDLC Voltage monitoring;22755:External Brake in failure;22774:HEVC CAN Failure;22750:LIN Communication EDLC Failure;22783:ECU Failure 2;57679:Lost Communication with BCM on Chassis CAN;57691:Lost Communication with USM on Chassis CAN;57664:Loste communication with ECM on Chassis CAN;57667:Loste communication with HEVC on Chassis CAN;57672:Loste communication with VDC on Chassis CAN;22765:Motor Power supply in failure;22764:Position sensor plausibility in failure;22767:RPS Sensor;22751:RunOut in Failure;22769:standalone mode;22768:Supply Line EDLC;22771:Thermal failure;22773:USM CAN Failure;22775:VDC CAN Failure;57928:Lost Communication with VDC on Vehicle CAN ,18DAF1E2,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Freq Mod) / PWM (Pulse Width Mod) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or operation obstructed or blocked;152:component or system over temperature ,18DAF1E2,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,18DAF1E2,24,31,1,0,0,,224B18,624B18,ff,After Sales Date ,18DAF1E2,24,31,10,-1,0,s,224B25,624B25,ff,Powerlatch ,18DAF1E2,24,31,.1,0,1,V,22B000,62B000,ff,BatteryVoltage ,18DAF1E2,24,31,.1,0,1,V,22B001,62B001,ff,eDLC_voltage ,18DAF1E2,24,47,.05,0,2,km,22B002,62B002,1ff,Mileage of the first failure ,18DAF1E2,24,31,1,0,0,,22B003,62B003,ff,Aging Counter ,18DAF1E2,28,31,1,0,0,,22B005,62B005,ff,Vehicle Status,0:Asleep;1:Not used 1;2:CutoffPending;3:AutoACC;4:Not used 4;5:IgnitionLevel;6:StartingInProgress;7:PowertrainRunning;8:AutoStart;9:EngineSystemStop;10:Not used 10;11:Not used 11;12:Not used 12;13:Not used 13;14:Not used 14;15:Unavailable ,18DAF1E2,24,31,1,0,0,,22B006,62B006,ff,Function status,0:unused;1:PPU active control / not active control;2:PPU operationnal / not operationnal;3:PFC active control / not active control;4:PFC operationnal / not operationnal;5:EBR permitted by diag / inhibited by diag;6:EBR active control / not active control;7:EBR operationnal / not operationnal ,18DAF1E2,24,39,.01,0,2,km/h,22B007,62B007,ff,VehicleSpeed ,18DAF1E2,24,39,.01,0,2,km/h,22B008,62B008,ff,VehicleSpeedBody ,18DAF1E2,28,39,1,0,0,%,22B009,62B009,ff,BrakePedalPosition ,18DAF1E2,24,31,1000,0,0,kPa,22B00C,62B00C,ff,EBA_PressureRunOut ,18DAF1E2,24,31,1,0,0,,22B00E,62B00E,ff,ABS in regulation,0:no ABS regulation;255:ABS regulation ,18DAF1E2,30,31,1,0,0,,22B00F,62B00F,ff,ExternalBrakeRequestStatus,0:Not initialized;1:Not ready;2:Ready;3:Not used ,18DAF1E2,24,31,1,0,0,,22B010,62B010,ff,EBR inhibition state,0:Activated;170:NotActivated;255:NotConfigured ,18DAF1E2,24,31,1,0,0,,22B011,62B011,4ff,ECU activities.General.Data ,18DAF1E2,24,31,1,0,0,,22B012,62B012,4ff,ECU activities.Activation.counter ,18DAF1E2,24,31,1,0,0,,22B013,62B013,4ff,ECU activities.Activation.Timer ,18DAF1E2,24,39,1,0,0,,22EF01,62EF01,4ff,Supplier fault code specified ,18DAF1E2,24,103,1,0,0,,22F012,62F012,2ff,Calibration file reference ,18DAF1E2,24,47,.05,0,2,km,22F0D0,62F0D0,1ff,Mileage of the last occurence ,18DAF1E2,24,31,1,0,0,,22F0D1,62F0D1,ff,DTCExtendedData.DTCOccurrenceCounter ,18DAF1E2,24,111,1,0,0,,22F180,62F180,2ff,Boot SW identification ,18DAF1E2,24,103,1,0,0,,22F182,62F182,2ff,CalibrationNumber ,18DAF1E2,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,18DAF1E2,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,18DAF1E2,24,47,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,18DAF1E2,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,18DAF1E2,24,79,1,0,0,,22F18E,62F18E,2ff,VehicleManufacturerKitAssemblyPartNumber ,18DAF1E2,24,159,1,0,0,,22F190,62F190,2ff,VIN ,18DAF1E2,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,18DAF1E2,24,63,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,18DAF1E2,24,207,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,18DAF1E2,24,103,1,0,0,,22F196,62F196,2ff,exhaustRegulationOrTypeApprovalNumber ,18DAF1E2,24,31,1,0,0,,22F197,62F197,ff,systemNameorEngineType.01 ,18DAF1E2,32,39,1,0,0,,22F197,62F197,ff,systemNameorEngineType.02 ,18DAF1E2,40,47,1,0,0,,22F197,62F197,ff,systemNameorEngineType.03 ,18DAF1E2,48,55,1,0,0,,22F197,62F197,ff,systemNameorEngineType.04 ,18DAF1E2,56,63,1,0,0,,22F197,62F197,ff,systemNameorEngineType.05 ,18DAF1E2,64,71,1,0,0,,22F197,62F197,ff,systemNameorEngineType.06 ,18DAF1E2,72,79,1,0,0,,22F197,62F197,ff,systemNameorEngineType.07 ,18DAF1E2,80,87,1,0,0,,22F197,62F197,ff,systemNameorEngineType.08 ,18DAF1E2,88,95,1,0,0,,22F197,62F197,ff,systemNameorEngineType.09 ,18DAF1E2,96,103,1,0,0,,22F197,62F197,ff,systemNameorEngineType.10 ,18DAF1E2,104,111,1,0,0,,22F197,62F197,ff,systemNameorEngineType.11 ,18DAF1E2,112,119,1,0,0,,22F197,62F197,ff,systemNameorEngineType.12 ,18DAF1E2,120,127,1,0,0,,22F197,62F197,ff,systemNameorEngineType.13 ,18DAF1E2,128,135,1,0,0,,22F197,62F197,ff,systemNameorEngineType.14 ,18DAF1E2,136,143,1,0,0,,22F197,62F197,ff,systemNameorEngineType.15 ,18DAF1E2,144,151,1,0,0,,22F197,62F197,ff,systemNameorEngineType.16 ,18DAF1E2,152,159,1,0,0,,22F197,62F197,ff,systemNameorEngineType.17 ,18DAF1E2,160,167,1,0,0,,22F197,62F197,ff,systemNameorEngineType.18 ,18DAF1E2,168,175,1,0,0,,22F197,62F197,ff,systemNameorEngineType.19 ,18DAF1E2,176,183,1,0,0,,22F197,62F197,ff,systemNameorEngineType.20 ,18DAF1E2,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,18DAF1E2,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,18DAF1E2,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigurationDataReferenceAfterConfigurationProcess ,18DAF1E2,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/E-ACT-EBA_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Freq Mod) / PWM (Pulse Width Mod) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/EPS_Dtcs.csv ================================================ 5604,EPS_TorqueSensor 5608,EPS_ECU C073,CAN BUSS OFF Fault 5616,EPS Fault - Derating (H)EPS thermal protection Motor 5615,EPS Fault - Derating (H)EPS thermal protection Controller D321,EPS Fault - ECU Not configured 5601,Battery Voltage Fault 5617,Inconsistent LKA request 5606,EPS_Motor 561A,CAN ABS/VDC Fault (Wheel speed) 561B,CAN ABS/VDC Fault (Vehicle speed) E156,DTCMux - CAN Steering Wheel Angle Fault (STRG) 561C,CAN Steering Wheel Angle Fault (STRG) 5634,CAN Steering Wheel Angle Fault (STRG) (Signal Fault) 5603,CAN Steering Wheel Angle Fault (STRG) Calibration Fault) E140,DTCMux - CAN ECM Fault 5623,CAN ECM Fault1 5635,CAN ECM Fault2 E15B,DTCMux - CAN USM Fault 5629,CAN USM Fault E14F,DTCMux - CAN BCM Fault 5621,CAN BCM Fault1 5622,CAN BCM Fault2 5625,CAN BCM Fault3 E154,DTCMux - CAN IVI Fault E165,DTCMux - CAN HFP Fault 5626,CAN HFP Fault C078,CAN BUSS OFF Fault - ADAS 5628,CAN IPA Fault E152,DTCMux - CAN IPA Fault E26B,DTCMux - CAN LKA/LDW fault (FrCamera) 5620,CAN LCA Fault 5637,CAN LCA Fault (Signal Fault 1) 5638,CAN LCA Fault (Signal Fault 2) E252,DTCMux - CAN LCA Fault E14E,DTCMux - CAN Cluster/Meter Fault 562A,CAN Cluster/Meter Fault 5627,CAN LKA/LDW Fault 1 (FrCamera) 5639,CAN LKA/LDW Fault 2 (FrCamera) 5632,CAN G-sensor Fault1 (Signal Fault) 561E,CAN G-sensor Fault 1 5633,CAN G-sensor Fault 2 E148,DTCMux - CAN ABS/VDC Fault 561F,CAN IVI Fault 1 5636,CAN IVI Fault 2 5614,Very_soft_ramp_down (below SafeAssist level) 5624,Very_soft_ramp_down (above SafeAssist level) 561D,CAN ABS/VDC Fault for LCA/TJP 5618,Inconsistent LCA request D323,EPS HOD not compensated D322,EPS HOD not fully configured ================================================ FILE: app/src/main/assets/ZOE_Ph2/EPS_Fields.csv ================================================ ,762,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,762,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming ,762,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnostic ,762,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,762,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,762,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,762,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,762,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,762,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,762,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,762,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,762,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,762,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,762,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,762,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,762,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,762,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,762,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,762,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,762,16,39,1,0,0,,1903000000FF,5903000000FF,4ff,DTCRecord ,762,40,47,1,0,0,,1903000000FF,5903000000FF,ff,StatusOfDTC ,762,16,39,1,0,0,,190400000001,590400000001,4ff,DTCRecord ,762,40,47,1,0,0,,190400000001,590400000001,ff,StatusOfDTC ,762,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,762,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,22017:Battery Voltage Fault;22042:CAN ABS/VDC Fault (Wheel speed);22043:CAN ABS/VDC Fault (Vehicle speed);22045:CAN ABS/VDC Fault for LCA/TJP;22049:CAN BCM Fault1;22050:CAN BCM Fault2;22053:CAN BCM Fault3;49267:CAN BUSS OFF Fault;22058:CAN Cluster/Meter Fault;22051:CAN ECM Fault1;22069:CAN ECM Fault2;22046:CAN G-sensor Fault 1;22067:CAN G-sensor Fault 2;22066:CAN G-sensor Fault1 (Signal Fault);22054:CAN HFP Fault;22056:CAN IPA Fault;22047:CAN IVI Fault 1;22070:CAN IVI Fault 2;22048:CAN LCA Fault;22071:CAN LCA Fault (Signal Fault 1);22072:CAN LCA Fault (Signal Fault 2);22055:CAN LKA/LDW Fault 1 (FrCamera);22073:CAN LKA/LDW Fault 2 (FrCamera);22044:CAN Steering Wheel Angle Fault (STRG);22068:CAN Steering Wheel Angle Fault (STRG) (Signal Fault);22019:CAN Steering Wheel Angle Fault (STRG) Calibration Fault);22057:CAN USM Fault;49272:CAN BUSS OFF Fault - ADAS;57672:DTCMux - CAN ABS/VDC Fault;57678:DTCMux - CAN Cluster/Meter Fault;57664:DTCMux - CAN ECM Fault;57679:DTCMux - CAN BCM Fault;57682:DTCMux - CAN IPA Fault;57684:DTCMux - CAN IVI Fault;57701:DTCMux - CAN HFP Fault;57938:DTCMux - CAN LCA Fault;57686:DTCMux - CAN Steering Wheel Angle Fault (STRG);57691:DTCMux - CAN USM Fault;22037:EPS Fault - Derating (H)EPS thermal protection Controller;22038:EPS Fault - Derating (H)EPS thermal protection Motor;54049:EPS Fault - ECU Not configured;54051:EPS HOD not compensated;54050:EPS HOD not fully configured;22024:EPS_ECU;22022:EPS_Motor;22020:EPS_TorqueSensor;22040:Inconsistent LCA request;22039:Inconsistent LKA request;22052:Very_soft_ramp_down (above SafeAssist level);22036:Very_soft_ramp_down (below SafeAssist level);57963:DTCMux - CAN LKA/LDW fault (FrCamera) ,762,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,762,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,762,24,39,.1,32767,1,°,220100,620100,ff,EPSRelativeSteeringWheelAngle ,762,24,39,.1,32767,1,°/s,220101,620101,ff,Steering wheel velocity ,762,24,26,1,0,0,,220102,620102,ff,Steering wheel angle sensor internal status,0:Not initialized / No failure / Not calibrated;1:Initialized / No failure / Not calibrated;2:Not initialized / Failure / Not calibrated;3:Initialized / Failure / Not calibrated;4:Not initialized / No failure / Calibrated;5:Initialized / No failure / Calibrated;6:Not initialized / Failure / Calibrated;7:Initialized / Failure / Calibrated ,762,24,31,1,127,0,°,220103,620103,ff,Steering wheel angle offset ,762,24,39,.1,32767,1,°,220104,620104,ff,Absolute steering wheel angle ,762,24,39,.1,200,1,,220112,620112,ff,InputTorque ,762,24,31,1,127,0,A,220113,620113,ff,MotorCurrentDemand ,762,24,31,1,0,0,%,220115,620115,ff,AssistanceLevel ,762,24,31,1,0,0,km/h,220118,620118,ff,FilteredVehicleSpeed ,762,24,31,1,0,0,,220119,620119,ff,SystemMode,1:SystemStop;2:PowerUpTests Wait for Assist;3:RampUpNormalOperation;4:VerySoftRampDown Unknow Vehicle State;5:SoftRampDown;6:WaitForShutdown;7:ParkAssist ,762,24,25,1,0,0,,22011A,62011A,ff,EPSWarning,0:No failure;1:Minor failure;2:Major failure;3:Not used ,762,24,31,1,0,0,,22011E,62011E,ff,IgnitionSwitchCounter ,762,24,39,.1,200,1,Nm,22011F,62011F,ff,AssistanceTorqueDemand ,762,24,24,1,0,0,,22012A,62012A,ff,RackEndStop_Activation,0:Disabled;1:Enabled ,762,24,31,1,127,0,A,22012C,62012C,ff,MeasuredMotorCurrent ,762,24,31,1,50,0,°C,22012D,62012D,ff,MotorTemperature ,762,24,31,1,50,0,°C,22012E,62012E,ff,ECUTemperature ,762,24,31,.000390625,0,3,V,22012F,62012F,ff,SupplyVoltage ,762,24,24,1,0,0,,220131,620131,ff,IgnitionStatus,0:OFF;1:ON ,762,24,24,1,0,0,,22014C,62014C,ff,HFP_EnhancedDiagnostic_Activation,0:Disabled;1:Enabled ,762,24,24,1,0,0,,220151,620151,ff,RackEndStop currently active,0:not running;1:Running ,762,24,31,1,0,0,%,220159,620159,ff,DDN level ,762,24,24,1,0,0,,22015A,62015A,ff,ExternalAngleSensor,0:Disabled;1:Enabled ,762,24,31,1,0,0,%,220160,620160,ff,DeratingAssistanceLevel ,762,24,25,1,0,0,,220162,620162,ff,MultidriveTuningMap,0:Slot #0 is currently used;1:Slot #1 is currently used;2:Slot #2 is currently used;3:Slot #3 is currently used ,762,24,39,1,0,0,,220163,620163,4ff,Internal fault code for DTC ,762,30,31,1,0,0,,220164,620164,ff,EPSDongleState,1:EPS ECU Operational- Dongle learnt;2:EPS ECU operational- Dongle blank;3:EPS ECU not operational ,762,30,31,1,0,0,,220165,620165,ff,DonglePairingCounter ,762,30,31,1,0,0,,220166,620166,ff,DongleError,0:No error;1:EEPROM problem on Dongle_ID;2:EEPROM problem on Dongle_pairing_counter;3:Motor disconnected from ECU ,762,24,39,1,0,0,mm,220167,620167,ff,Front wheel circumference ,762,24,39,1,0,0,mm,220168,620168,ff,Rear wheel circumference ,762,24,31,1,0,0,%,220169,620169,ff,MaxCPULoad ,762,24,31,1,0,0,V,220170,620170,ff,HFP_BoostHighVoltage ,762,24,24,1,0,0,,220171,620171,ff,HFP_BoostVehicleVoltage_Activation,0:Disabled;1:Enabled ,762,24,31,1,0,0,V,220172,620172,ff,HFP_BoostLowVoltage ,762,24,31,.5,0,1,A,220173,620173,ff,BatteryCurrent ,762,24,24,1,0,0,,220179,620179,ff,CAN XCP/CCP protocol activation,0:CAN CCP/XCP deactived (default);1:CAN CCP/XCP activated ,762,24,25,1,0,0,,22017D,62017D,ff,MultiDrive_Activation,0:Unavailable;1:Ignore multidrive CAN frame;2:Consider multidrive CAN frame;3:Not used ,762,24,25,1,0,0,,220182,620182,ff,HFP_Activation,0:Disabled;1:Enabled (HFP);2:Enabled (IPA);3:not used ,762,24,39,.1,32767,1,°/s,220185,620185,ff,InternalSteeringWheelVelocity ,762,24,24,1,0,0,,220186,620186,ff,Dedicated TJP steerfeel tuning mode (Slot3) Activation,0:Disabled;1:Enabled ,762,24,39,1,0,0,,220187,620187,4ff,HOD_Compensation_Routine switch counter ,762,24,31,.01,127,2,N·m,220188,620188,ff,HOD TSU Compensation ,762,24,31,1,0,0,%,220189,620189,ff,HOD TSU Comp Ratio ,762,24,31,.01,127,2,N·m,220190,620190,ff,HOD Friction Compensation ,762,24,31,1,0,0,%,220191,620191,ff,HOD Friction Comp Ratio ,762,24,31,.01,127,2,N·m,220192,620192,ff,HOD Friction_th F1 ,762,24,31,.01,127,2,N·m,220193,620193,ff,HOD Friction_th F2 ,762,24,31,.01,127,2,N·m,220194,620194,ff,HOD Friction_th F3 ,762,24,183,1,0,0,,220195,620195,4ff,Internal fault store (last 10 minor faults) ,762,24,26,1,0,0,,220196,620196,ff,HOD Compensation Activation,0:no HOD compensation;1:Apply only TSU Offset Compensation;2:Apply TSU Offset Compensation + Friction Compensation;3:Reset of TSU offset compensation results;4:Reset of Friction compensation results;5:Not used;6:Not used bis;7:Not used ter ,762,24,27,1,0,0,,2201BD,6201BD,ff,LKA_LDW_Activation,0:LKA disabled- LDW disabled- DebugFrame disabled (default);1:LKA disabled- LDW enabled (IVI)- DebugFrame disabled;2:LKA disabled- LDW enabled (Meter)- DebugFrame disabled;3:not used;4:LKA enabled- LDW disabled- DebugFrame disabled;5:LKA enabled- LDW enabled (IVI)- DebugFrame disabled;6:LKA enabled- LDW enabled (Meter)- DebugFrame disabled;7:not used';8:LKA disabled- LDW disabled- DebugFrame enabled;9:LKA disabled- LDW enabled (IVI)- DebugFrame enabled;10:LKA disabled- LDW enabled (Meter)- DebugFrame enabled;11:not used'';12:LKA enabled- LDW disabled- DebugFrame enabled;13:LKA enabled- LDW enabled (IVI)- DebugFrame enabled;14:LKA enabled- LDW enabled (Meter)- DebugFrame enabled;15:not used''' ,762,24,24,1,0,0,,2201C3,6201C3,ff,DongleFrames_Activation,0:Dongle frames not sent;1:Dongle frames sent ,762,24,24,1,0,0,,2201C6,6201C6,ff,CrankingStoppedMode_Activation,0:Disabled;1:Enabled ,762,24,24,1,0,0,,2201C7,6201C7,ff,ClusterWarningLampCheck_Activation,0:Disabled;1:Enabled ,762,24,25,1,0,0,,2201C8,6201C8,ff,ISS Status,0:00- Not Stop Auto Phase;1:01- Auto Start;2:10- Idle Stop;3:11- Auto Phase Aborted ,762,24,24,1,0,0,,2201CA,6201CA,ff,AntiKickBack_Activation,0:Disabled;1:Enabled ,762,24,24,1,0,0,,2201CB,6201CB,ff,TJP_Activation,0:Disabled;1:Enabled ,762,24,24,1,0,0,,2201CC,6201CC,ff,HWP_Activation,0:Disabled;1:Enabled ,762,24,24,1,0,0,,2201CD,6201CD,ff,ExportedSWASWV_Activation,0:Disabled;1:Enabled ,762,24,24,1,0,0,,2201CE,6201CE,ff,TSC_Activation,0:Disabled;1:Enabled ,762,24,31,.1,15,1,,2201CF,6201CF,ff,PullDrift_StaticCompensation_Value ,762,24,24,1,0,0,,2201D0,6201D0,ff,PullDrift_DynamicCompensation_Activation,0:Disabled;1:Enabled ,762,24,39,.01,0,2,kph,2201D1,6201D1,ff,VehicleSpeed ,762,24,25,1,0,0,,2201D2,6201D2,ff,EngineStatus,0:Stopped;1:Reserved;2:Running;3:Driven ,762,24,24,1,0,0,,2201D3,6201D3,ff,CAN_DTC_filter ,762,24,39,1,0,0,,2201D4,6201D4,4ff,Derating counter ,762,24,47,1,0,0,,2201D5,6201D5,4ff,RackEndStop counter ,762,24,47,1,0,0,,2201D6,6201D6,4ff,AntiKickBack counter ,762,24,47,1,0,0,,2201D7,6201D7,4ff,HFP_Activation counter ,762,24,95,1,0,0,,2201D8,6201D8,4ff,HFP_Deactivation counter ,762,24,279,1,0,0,,2201D9,6201D9,4ff,LKA counter ,762,24,271,1,0,0,,2201DA,6201DA,4ff,LDW counter ,762,24,47,1,0,0,,2201DB,6201DB,4ff,TJP simple counter ,762,24,271,1,0,0,,2201DC,6201DC,4ff,TJP counter ,762,24,183,1,0,0,,2201DD,6201DD,4ff,PDC counter ,762,24,39,1,0,0,,2201DE,6201DE,4ff,InternalReset counter ,762,24,39,1,0,0,,2201DF,6201DF,4ff,UnmanagedShutdown counter ,762,24,24,1,0,0,,2201E0,6201E0,ff,AntiKickBack currently active,0:Not active;1:Active ,762,24,24,1,0,0,,2201E1,6201E1,ff,HandFreeParking currently active,0:Function not running;1:Function currently running ,762,24,24,1,0,0,,2201E2,6201E2,ff,LaneKeepingAssist currently active,0:Not active;1:Active ,762,24,24,1,0,0,,2201E3,6201E3,ff,LaneDepartureWarning currently active,0:Not active;1:Active ,762,24,24,1,0,0,,2201E4,6201E4,ff,TrafficJamPilot currently active,0:Not active;1:Active ,762,24,24,1,0,0,,2201E5,6201E5,ff,HighwayPilot currently active,0:Not active;1:Active ,762,24,24,1,0,0,,2201E6,6201E6,ff,PullDriftCompensation currently active,0:Not active;1:Active ,762,24,27,1,0,0,,2201E7,6201E7,ff,CoastStop_IdleStop_Activation,0:All flags disabled;1:Idle_stop flag enabled- others disabled;2:Coast_stop flag enabled- others disabled;4:Torque_on flag enabled- others disabled;5:Idle_stop and Torque_on flags enabled- others disabled;6:Coast_stop and Torque_on flags enabled- others disabled;7:Assist_authorize flag disabled- others enabled;8:Assist_authorize flag enabled- others disabled;9:Idle_stop and Assist_authorize flags enabled- others disabled;10:Coast_stop and Assist_authorize flags enabled- others disabled;11:Torque_on flag disabled- others enabled;12:Idle_stop and Coast_stop flags disabled- others enabled;13:Coast_stop flag disabled- others enabled;14:Idle_stop flag disabled- others enabled;15:All flags enabled ,762,24,47,1,0,0,kph,2201E8,6201E8,ff,MileageAtFirstOccurrence ,762,24,31,1,0,0,,2201EA,6201EA,4ff,CurrentlyActiveFunctions ,762,24,24,1,0,0,,2201EB,6201EB,ff,AbsoluteSteeringWheelAngleCalibration_Activation,0:Calibration not authorized;1:Calibration authorized ,762,24,24,1,0,0,,22C000,62C000,ff,SAF_Activation,0:Disabled;1:Enabled ,762,24,24,1,0,0,,22C200,62C200,ff,ESP Activation,0:Disabled;1:Enabled ,762,24,31,1,0,0,,22D001,62D001,ff,Occurrence Counter ,762,24,71,1,0,0,,22D002,62D002,4ff,DebugInfo_snapshot ,762,24,151,1,0,0,,22F010,62F010,2ff,Fingerprint ,762,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,762,24,103,1,0,0,,22F012,62F012,2ff,OperationalReference ,762,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,762,24,279,1,0,0,,22F180,62F180,4ff,BootVersion ,762,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,762,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,762,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,762,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,762,24,159,1,0,0,,22F190,62F190,2ff,VIN ,762,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,762,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,762,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,762,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,762,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,762,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigurationFileReferenceLink_N ,762,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/EPS_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/EVC-HCM-VCM_Dtcs.csv ================================================ 0534,A/C Compressor 0645,A/C Compressor Control Relay 167A,A/C Compressor HV 0531,A/C Compressor switch 0530,A/C Refrigerant Pressure Sensor 16BB,AC/DC converter 16C6,AC/DC converter HV 1616,ACC and ESP coherency 15E7,ACC force request (from the CAN) 15E8,ACC wheel torque setpoint 0226,Accelerator Pedal Position Sensor 0225,Accelerator Pedal Position Sensor - Track 1 2120,Accelerator Pedal Position Sensor - Track 2 1726,Accessory fuse box temperature of AC charge E25F,Active Emergency Brake System 1717,Actuator main supply switch 0657,Actuators Power Relay 16E2,ACU ECU (Airbag Control Unit) (frame ACU_A2 on PT-FD) 15E6,Adaptif Cruise Control brake request 1633,Additional Fuel Tank Solenoid Control 16A1,Advanced Driving Assist System 16B9,Advanced Driving Assist System 2 16B8,Advanced Driving Assist System 3 16C2,Advanced Driving Assist System 4 15F4,AEB brake request from CM trame 160E,AEB brake request from CM trame2 113F,Aerotherm branch coolant temperature overheating alert lamp 1140,Aerotherm branch coolant temperature sensor 15F6,AGB - Limit Slow torque request ((CAN message)) 15C8,AGB Shaft Selector 15F3,AGB Static Creeping Torque 5009,AGB Torque control type 15F5,AGB torque setpoint (CAN message) 1499,Air Charge Cooler 1500,Air Shutters Circuit 9C32,Airbag Crash Info C250,Airbag messages received on the CAN 169A,Alternator mode 0071,Ambient Air Temperature Sensor Range/Performance 2227,Atmospheric Pressure Function 2226,Atmospheric Pressure Sensor 1665,Auto hold CAN fail 15EB,Auto park force setpoint 16CF,Auto start high speed 16A3,Automatic Brake Parking System 170F,Automatic stop and start supervisor on hybrid vehicle 16FA,Automatic transmission Stop and Start failure flag received on the CAN 16F9,Automatic transmission Stop and Start request received on the CAN 16DC,AutoPark function monitoring 17CD,Available power at infrastructure output 17CC,Available power at the charger output 0483,Back Fan 15C6,Battery Charger E370,Battery Charger Block 1687,Battery Charger Block HV 0D98,Battery Charger Coupler Unlock Control Circuit Performance 15CD,Battery Cooling Electrovalve HV 1683,Battery Current Sensor 15D0,Battery Heater Relay 1 15D1,Battery Heater Relay 2 1691,Battery High Voltage 168A,Battery high voltage power relay A 168B,Battery high voltage power relay A or P1 168C,Battery high voltage power relay A or P2 168D,Battery high voltage power relay P1 168F,Battery high voltage power relay P1 or P2 168E,Battery high voltage power relay P2 0A9B,Battery HV temperature sensor E344,Battery Management System E379,Battery Management System 2 1689,Battery Management System 2 HV 1688,Battery Management System HV 0560,Battery Voltage 15E3,Battery voltage of PM sensor 0833,Begining of Clutch Pedal Move Switch 16A6,Body Control Module C140,Body Control Module 1 167D,Body Control Module HV 1662,Brake parking sensor CAN fail 0504,Brake Pedal 1663,Brake pressure sensor CAN fail 16D6,BSG starter-generator 16D5,BSG starter-generator in alternator mode 16D4,BSG starter-generator in driving mode 16A5,Bus CAN vehicle C073,Bus CAN vehicle - Control Module Communication Bus_A_Off 149A,By-Pass Position Sensor of HP turbocharger Turbine 15CC,Cabin cooling electrovalve HV 16AC,Calculator Dashboard 1681,Calculator Dashboard HV 16AA,Calculator Hand Free Module 16AB,Calculator Integrated Dynamics Control Module 16BA,Calculator Integrated Dynamics Control Module 2 E159,Calculator Power Steering Electronic System E265,Calculator Ultrasonic Park Assist C45A,Calculator Ultrasonic Park Assist 1 15FF,Calculator Ultrasonic Park Assist 2 E15B,Calculator Under Hood Switch Module 1684,Calculator Under Hood Switch Module HV 16AF,Calculator Vehicle Dynamic Control 15E1,Calculator Vehicle Dynamic Control 10 15F7,Calculator Vehicle Dynamic Control 1 16B5,Calculator Vehicle Dynamic Control 2 16B6,Calculator Vehicle Dynamic Control 3 16B7,Calculator Vehicle Dynamic Control 4 16C1,Calculator Vehicle Dynamic Control 5 15F9,Calculator Vehicle Dynamic Control 6 0017,Camshaft Position - Exhaust Camshaft Position Correlation 0016,Camshaft Position - Intake Camshaft Position Correlation 164C,CAN frame ACU_A1 received from Airbag Control Unit (ACU) on CAN V 164D,CAN frame ADAS_A3 received from ADAS on CAN PT 16C7,CAN frame ADASIS_CARTO_N1 received from IVI (In-Vehicle Infotainment) on CAN-PT 16C8,CAN frame ADASIS_Position_N1 received from IVI (In-Vehicle Infotainment) on CAN-PT 164E,CAN frame ATCU_A3 received from automatic transmission on CAN V 164F,CAN frame BCM_A4 received from BCM on CAN V 167E,CAN frame BCM_A4 received from BCM on CAN V HV 166D,CAN frame EBA_A2 received from EBA (Electric Brake Actuator) on CAN-V E14A,CAN frame for 4WD ECU (frame FWD_A103_FD on PT-FD) C248,CAN frame for AAM ECU (accessory module) (frame AAM_R1 on CAN-V) E150,CAN frame for ACU ECU (Airbag Control Unit) (frame ACU_A2 on PT-FD) E152,CAN frame for ADAS ECU (frame ADAS_A104 on PT-FD) E252,CAN frame for ADAS ECU (frame ADAS_A4 on PT-CAN) E141,CAN frame for ATCU ECU (frame ATCU_A103_FD on PT-FD) E241,CAN frame for ATCU ECU (frame ATCU_A104 on PT-CAN) E175,CAN frame for AVM ECU (Around View Monitor) (frame AVM_A101 on PT-FD) E14F,CAN frame for BCM ECU (frame BCM_A111 on PT-FD) E18B,CAN frame for BMS_12V ECU (frame BMS12V_A101 on PT-FD) E258,CAN frame for BSG ECU (Belt Driven Starter Generator) (frame BSG_A101 on PT-CAN) E276,CAN frame for CDM ECU (Chassis Dynamic Module) (frame CDM_A111 on PT-CAN) E176,CAN frame for CDM ECU (Chassis Dynamic Module) (frame FVSyncFrame_CDM_FD on PT-FD) E18C,CAN frame for CGW ECU (Common Gateway) (frame CGW_GeneralStatus_Frame_FD on PT-FD) E259,CAN frame for EPS ECU (Electrical Power Steering) (frame EPS_A101 on PT-CAN) E26B,CAN frame for FrCamera ECU (Front Camera) (frame FRCAMERA_A110 on PT-CAN) E118,CAN frame for HFM ECU (Hand Free Module) (frame HFM_A104 on PT-FD) E153,CAN frame for HVAC_CU ECU (frame HVAC_A1_FD on PT-FD) E154,CAN frame for IVI ECU (In Vehicle Infotainment) (frame IVI_A5_FD on PT-FD) E14E,CAN frame for METER ECU (frame METER_A103_FD on PT-FD) E165,CAN frame for SONAR ECU (frame FVSyncFrame_SONAR_FD on PT-FD) E25B,CAN frame for USM ECU (frame USM_A103_FD on PT-FD) E148,CAN frame for VDC ECU (Vehicle Dynamic Control) (frame VDC_A10 on PT-FD) E248,CAN frame for VDC ECU (Vehicle Dynamic Control) (frame VDC_A2 on PT-CAN) 165A,CAN frame USM_A1 received from USM on CAN V 1685,CAN frame USM_A1 received from USM on CAN V HV 15F1,CAN Gateway 164A,CAN HV bus C07A,CAN powertrain - Control Module Communication Bus 'H' Off 0443,Canister Purge Valve 0420,Catalyst System 1420,Catalyst System 2 1596,Charger Interlock 2504,Charging System Voltage 2502,Charging System Voltage Circuit 2503,Charging System Voltage Low Voltage 16CA,Circuit 12v of Battery Management System 0571,Closed Brake Sensor 0901,Clutch actuator 1711,Clutch actuator primary sensor 1712,Clutch actuator secondary sensor 0806,Clutch Contactor 17C3,Clutch Kiss Point 0805,Clutch position sensor - press hold 15DB,Cold start temperature of PM sensor 1647,Comb voltage terminal 163F,Combo charging stand 160A,Communication Error With Watchdog C299,Communication With DC to DC Converter Control Module A C298,Communication With DCDC 1022,Communication with DCU 15BC,Control pilot frequency 1503,Controlled Air Vents Information (LIN) 2678,Coolant Degassing Valve 2681,Coolant Flow Valve 2600,Coolant Pump Control Circuit 0128,Coolant Thermostat (Coolant Temperature Below Thermostat Regulating Temperature) 1603,COSI adaptation injector 1 1602,COSI adaptation injector 2 1601,COSI adaptation injector 3 1600,COSI adaptation injector 4 1636,Counter for GMV time activation 0335,Crankshaft Position Sensor 0315,Crankshaft Position System Variation Not Learned C551,Crash Signal 16E3,CRC diagnosis for ACU ECU (Airbag Control Unit) (frame ACU_A101 on PT-FD) 16E5,CRC diagnosis for ADAS ECU (frame ADAS_A104 on PT-FD) 16E6,CRC diagnosis for ADAS ECU (frame ADAS_A112 on PT-FD) 16E7,CRC diagnosis for ADAS ECU (frame ADAS_A114 on PT-FD) 16E4,CRC diagnosis for ADAS ECU (frame ADAS_A4 on PT-CAN) 16E8,CRC diagnosis for ATCU ECU (frame ATCU_A104 on PT-CAN) 16E9,CRC diagnosis for ATCU ECU (frame ATCU_A108 on PT-CAN) 16EC,CRC diagnosis for ATCU ECU (frame ATCU_A110 on PT-CAN) 16EA,CRC diagnosis for ATCU ECU (frame ATCU_A111 on PT-CAN) 16EB,CRC diagnosis for ATCU ECU (frame ATCU_A112 on PT-CAN) 16ED,CRC diagnosis for AVM ECU (Around View Monitor) (frame AVM_A101 on PT-FD) 16EE,CRC diagnosis for BCM ECU (frame BCM_A110 on PT-FD) 16EF,CRC diagnosis for BCM ECU (frame BCM_A113 on PT-FD) C469,CRC diagnosis for BSG ECU (Belt Driven Starter Generator) (frame BSG_A101 on PT-CAN) 16F1,CRC diagnosis for CDM ECU (Chassis Dynamic Module) (frame CDM_A111 on PT-CAN) 16F2,CRC diagnosis for USM ECU (frame USM_A101 on PT-FD) C416,CRC diagnosis for VDC ECU (Vehicle Dynamic Control) (frame VDC_A10 on PT-FD) 16F5,CRC diagnosis for VDC ECU (Vehicle Dynamic Control) (frame VDC_A113 on PT-CAN) 16F6,CRC diagnosis for VDC ECU (Vehicle Dynamic Control) (frame VDC_A115 on PT-FD) 16F4,CRC diagnosis for VDC ECU (Vehicle Dynamic Control) (frame VDC_A6 on PT-FD) 16F7,CRC diagnosis for VDC ECU (Vehicle Dynamic Control) (frame VDC_A9 on PT-FD) 0570,Cruise Control Accelerate Signal C235,Cruise Control Front Distance Range Sensor Frame 0525,Cruise Control Servo Control Circuit Range/Performance 15E9,Cruise Control state 0574,Cruise Control/Speed Limiter - Displayed Speed 0564,Cruise Control/Speed Limiter - Paddle Control Button 0575,Cruise Control/Speed Limiter - Switch Button 1525,Cruise Control/Speed Limiter Deactivation 163E,Current supplied by combo terminal 0263,Cylinder 1 Contribution/Balance 1301,Cylinder 1 LPG Misfire Detected 0301,Cylinder 1 Misfire Detected 0266,Cylinder 2 Contribution/Balance 1302,Cylinder 2 LPG Misfire Detected 0302,Cylinder 2 Misfire Detected 0269,Cylinder 3 Contribution/Balance 1303,Cylinder 3 LPG Misfire Detected 0303,Cylinder 3 Misfire Detected 0272,Cylinder 4 Contribution/Balance 1304,Cylinder 4 LPG Misfire Detected 0304,Cylinder 4 Misfire Detected 03DB,Cylinder pressure sensor 0395,Cylinder Pressure Sensor (consolidated with condition 1) 162B,Cylinder Pressure Sensor (consolidated with condition 2) 162C,Cylinder Pressure Sensor (consolidated with condition 3) 1539,Daimler Verlog 15FB,DC Box input high voltage 1722,DC chademo charge swich d1 1723,DC chademo charge swich d2 1724,DC chademo charger 0D99,DC charge plug temperature 1627,DC charger interlock connector charge type 161D,DC Charger interlock traction type connector 166C,DC Power Combo Terminal 1518,DCDC command E357,DCDC high voltage converter 16C3,DCDC high voltage converter HV 9900,DCDC input circuit 1 9901,DCDC input circuit 2 9904,DCDC internal 9902,DCDC output circuit 1 9903,DCDC output circuit 2 2C21,Default for oil temperature out of range error from sensor 15A6,DetLogic signal 2002,Diesel Particulate Filter System 3032,Diesel Particulate Filter Temperature Sensor Correlation 2525,Differential Tank Pressure Sensor 158B,Double Flywheel Clutch 2470,Downstream Gas temperature out of minimum range 165C,Downstream underfloor NOx sensor 165D,Downstream underfloor O2 sensor 165E,Downstream underfloor sensor heater 165F,Downstream underfloor sensor wire 149F,Downstream Upstream O2 NOX Sensor Coherency 1401,Downstream Upstream O2 Sensor Coherency 1455,DPF forced regeneration switch located on the dashboard 15AD,Driver Inducement System Valve coolant flow 1678,Driver Safety Belt Buckle State (from BCM) 1679,Driver seat belt failure state (from BCM) 9261,Driver’s seat sensor 1671,Drivers door open (from BCM) 1672,Drivers door status supposed failure (from the BCM) 15C1,Driving Cycle Charging Interlock 16C9,Dual battery coupler 16DA,Dual battery coupler wire circuit 16A0,Dynamic mode switch (CAN) 16D2,ECM to CAN powertrain connection 16DD,EGR DUAL Diagnosis C417,Electric brake actuator 1695,Electric Motor Prestation E255,Electric Parking Brake 163A,Electrical blue LED 15B8,Electrical Energy Management System 15A2,Electrical motor prestation 15A0,Electrical motor speed 1588,Electrical pump unit for automatic gear box 1023,Electrical pump unit for SCR cooling 1028,Electrical pump unit low temperature 1639,Electrical Red LED 1656,Electromagnetic Torque Control 15ED,Electromagnetic Torque Control request C11D,Electronic Torque Control for four wheel drive application 1686,eMotor belt broken 0830,End of Clutch Pedal Move Switch 158A,End stroke clutch contactor 16A7,Engine Control Management 060B,Engine Control Module - A/D Converter 060F,Engine Control Module - Coolant Temperature Sensor (Level 2) 0701,Engine Control Module - Detection of inconsistent TCU data 1625,Engine Control Module - Downstream Proportionnal O2 Sensor Control 406C,Engine Control Module - Electronic Stability Program Control Function (Level 2) 061C,Engine Control Module - Fuel Mass Control Function (Level 2) 062B,Engine Control Module - Injector Control 0606,Engine Control Module - Processor 060A,Engine Control Module - Reset 060E,Engine Control Module - Throttle Control Driver 061A,Engine Control Module - Torque Control Function 1620,Engine Control Module - Upstream Proportionnal O2 Sensor Control 0685,Engine Control Module Power Relay 16C0,Engine Coolant Low Temperature 0217,Engine Coolant Temperature 1675,Engine coolant temperature (second threshold) 0115,Engine Coolant Temperature Sensor 0597,Engine Coolant Thermostat 16BC,Engine Coolant Thermostat Low Temperature 1673,Engine hood open (from the BCM) 0524,Engine Oil Circuit Pressure 253F,Engine Oil Deteriorated 0298,Engine Oil overheat 0520,Engine Oil Pressure sensor 0195,Engine Oil Temperature Sensor 16DB,Engine Oil Temperature Sensor A Entry 0219,Engine over-revving 0654,Engine RPM Exit From Engine Control Module 15A4,Engine sailing idle 1661,Engine speed sensor CAN fail 1676,Engine state wired ouput 1668,Estimated engine torque CAN fail 1677,ETS Engine coolant temperature 0440,Evaporative Emission System 0449,Evaporative Emission System Vent Valve 1480,Exhaust Air Flap Control Function 148C,Exhaust Air Flap Control Function (Intrusive Diagnostic) 1481,Exhaust Air Flap H Bridge 1483,Exhaust Air Flap Offset Learning 1482,Exhaust Air Flap Position Sensor 0365,Exhaust Camshaft Position Sensor 0013,Exhaust Camshaft Variable Valve Timing Control Function 0014,Exhaust Camshaft Variable Valve Timing Solenoid Valve 1205,Exhaust Fuel Injector Control Circuit 0471,Exhaust Gas Pressure Control Function 047B,Exhaust Gas Pressure Function - Upstream Particullate Filter 047A,Exhaust Gas Pressure Sensor - Upstream Particulate Filter 0470,Exhaust Gas Pressure Sensor - Upstream Turbine 245A,Exhaust Gas Recirculation Cooler Bypass 245B,Exhaust Gas Recirculation Cooler Bypass 2 2457,Exhaust Gas Recirculation Cooling Control Function 2425,Exhaust Gas Recirculation First Cooling Water Pump Control Circuit 049B,Exhaust Gas Recirculation Flow 0402,Exhaust Gas Recirculation Flow Excessive Detected 0400,Exhaust Gas Recirculation HP Flow 049A,Exhaust Gas Recirculation LP Flow 1425,Exhaust Gas Recirculation Second Cooling Water Pump Control Circuit 040A,Exhaust Gas Recirculation Temperature Sensor - Downstream Cooler 0403,Exhaust Gas Recirculation Valve Control - H Bridge 0488,Exhaust Gas Recirculation Valve Control Function 0487,Exhaust Gas Recirculation Valve Offset Learning 0409,Exhaust Gas Recirculation Valve Position Sensor 2080,Exhaust Gas Temperature Control Function - Upstream First Catalyser 1545,Exhaust Gas Temperature Function - Upstream Particulate Filter 1546,Exhaust Gas Temperature Monitoring - Upstream Particulate Filter 2034,Exhaust Gas Temperature Sensor - Downstream First Catalyser 242A,Exhaust Gas Temperature Sensor - Upstream 2nd catalyser 2031,Exhaust Gas Temperature Sensor - Upstream First Catalyser 1544,Exhaust Gas Temperature Sensor - Upstream Particulate Filter 0544,Exhaust Gas Temperature Sensor - Upstream Turbine 3080,Exhaust Gas Temperature Sensor Circuit - Bank 1 Sensor 5 1632,Exhaust Injector Pump Control 0480,Fan 1 Control Relay 0481,Fan 2 Control Relay 159A,First cooling pump 24A7,First Exhaust Gas Recirculation Coolant Pump 1320,First ignition timer 1654,Four Thermoplunger in failure E16B,Front camera 0457,Fuel Cap 1670,Fuel consumption 2687,Fuel heater 112E,Fuel heating control unit 112F,Fuel heating control unit’s mosfet command 1138,Fuel heating glow plug 1 1139,Fuel heating glow plug 2 113A,Fuel heating glow plug 3 113B,Fuel heating glow plug 4 112C,Fuel heating power supply relay 112D,Fuel heating power supply relay command 0461,Fuel Level Sensor 2265,Fuel Level Sensor_ 0089,Fuel Pressure Regulation Control Function 0627,Fuel Pump Control 025B,Fuel Pump Module Control Circuit 025A,Fuel Pump Module Control Circuit_ 0005,Fuel Rail Over Pressure Valve 0190,Fuel Rail Pressure Sensor 0088,Fuel Rail/System Pressure - Too High 0087,Fuel Rail/System Pressure - Too Low 2688,Fuel Supply Heater Control Circuit 1030,Fuel Tank Pressure sensor 1031,Fuel Tank Temperature sensor 0186,Fuel temperature downstream sensor 15AB,Fuel temperature retain 0180,Fuel Temperature Sensor 0181,Fuel temperature upstream sensor 0170,Fuel Trim 1148,Fuel Trim Control Response 0001,Fuel Volume Regulator Control Actuator 0002,Fuel Volume Regulator Control Regulation Function 1316,Gasoline pump relay 0911,Gate Select Actuator 0904,Gate Select Position Sensor 1608,Gaz Control Unit - Injectors Driver 0618,Gaz Control Unit - Memory 1610,Gaz Control Unit - Power Supply 1612,Gaz Control Unit power supply sensor 2293,Gaz Pressure Regulation Control Function 2294,Gaz Pressure Regulator Valve 018A,Gaz Pressure Sensor 0184,Gaz Temperature Function 0185,Gaz Temperature Sensor 17CF,GBA Primary Claw 17D0,GBA Secondary Claw 17D1,GBA Shaft Selector 1666,GBT Switch type S3 of vehicle connector 17CE,Gear Box Actuator 1589,Gear box neutral contactor 17C0,Gear lever 17C1,Gear lever track 1 17C2,Gear lever track 2 1718,Gear Position switch 0731,Gear Ratio 1 0732,Gear Ratio 2 0733,Gear Ratio 3 0734,Gear Ratio 4 0735,Gear Ratio 5 0736,Gear Ratio R 1713,Gear select actuator primary sensor 1714,Gear select actuator secondary sensor 0915,Gear shift actuator 1715,Gear shift actuator primary sensor 1716,Gear shift actuator secondary sensor 0914,Gear Shift Position Sensor E247,Gear Shifting Control Unit 1682,Gear Shifting Control Unit HV 171F,Gear synchronizer actuator 160B,Gearbox sencosrs learning diagnosis 0380,Glow Plug Circuit 246F,GPF downstream temperature sensor 226D,GPF removal detection (based on Pdiff) 24FD,GPF Removal detection (based on TDiff) 242B,GPF upstream temperature sensor 1318,GPL Low Pressure Leakage 17C4,Grid teach in 15EC,Hand free parking force setpoint 15EA,Hand free parking with break force request (CAN message) 1611,Hardware has Reseted 1657,Hardware voltage battery 12v failure 1617,HBA Calculator 1592,Heater valve 15CB,Heater valve HV 1613,HEVC Analogic Numeric Converter 16D3,HEVC to CAN powertrain connection 0A81,High Battery Voltage Cooling fan Relay 1605,High level charge communication time out 148A,High Pressure Exhaust Gas Recirculation Valve Control Function (Intrusive Diagnostic) 0094,High Pressure Fuel Leakage (Routine Aftersale Test) 11C3,High Pressure Turbocharger Boost Control - H Bridge 004A,High Pressure Turbocharger Boost Control Solenoid Valve 11C4,High Pressure Turbocharger Boost Control Solenoid Valve (Turbine side) 004B,High Pressure Turbocharger Boost Control Solenoid Valve.(Turbine side) 004C,High Pressure Turbocharger By-Pass Offset Learning 16D9,High voltage batterie SOC for hybrid vehicule 1690,High Voltage Battery 1699,High Voltage Battery Fan 1692,High voltage network 1664,Hill assist CAN fail 1516,HP Pump Stop and Start Function 16D8,HSCO Powertrain shutdown for safety 15D6,HSG (Hybrid Starter Generator) Inverter 1597,HV battery interlock 159D,HV battery SOC 15A1,HV battery voltage sensor 16BD,HV compressor insulation resistance 1626,HV fuel pump relay 159E,HV network voltage (2 sensors) 159F,HV network voltage (3 sensors) 15C3,HV PEB Interlock 0B33,HV Relay Connection TimeOUT E340,Hybrid Engine Control Management 16B4,Hybrid Engine Control Management 2 0A10,Hybrid Engine Vehicle Control 15CE,Hybrid Vehicle, Oil Pressure Pump pwm Command 0C42,Hybrid/EV Battery Pack Coolant Temperature Sensor 'A' Circuit A081,Hybrid/EV Battery Pack Cooling Fan 1 Control Circuit/Open A096,Hybrid/EV Battery Pack Cooling Fan 2 Control Circuit/Open 1637,Hybrid/EV DCBOX temperature sensor 15F0,Hybrid/EV locked trap through which the battery is charged 0AE1,Hybrid/EV one DCBOX relay block clos 1638,Hybrid/EV Temperature sensor of Plug in DC 0AE2,Hybrid/EV two DCBOX relay block clos 1514,ICR Relay 1517,ICR Relay command 1513,ICR Relay Differential Voltage 0506,Idle Speed Control 1562,Idle speed control in warm up phase 113C,ignition coil 1 and 4 diagnostic 0351,Ignition Coil 1 or Ignition Coil - Cylinder 1 and 4 113D,ignition coil 2 and 3 diagnostic 0352,Ignition Coil 2 or Ignition Coil - Cylinder 2 and 3_ 0353,Ignition Coil 3 or Ignition Coil - Cylinder 2 and 4 0354,Ignition Coil 4 or Ignition Coil - Cylinder 1 and 4 F00A,Ignition Switch 1535,Immobilizer communication 1536,Immobilizer e2prom 1538,Immobilizer lock mode 1537,Immobilizer wrong code E00C,In Vehicle Infotainment System E20C,In Vehicle Infotainment System 2 167C,In Vehicle Infotainment System 2 HV 167B,In Vehicle Infotainment System HV 15FC,information cohenrency sent by the locking sensor ot the plug 0216,Injection Mode 1221,Injector - Cylinder 1 and 4 1222,Injector - Cylinder 2 and 3 062D,Injector Bank1 Driver 062E,Injector Bank2 Driver 10AA,Injector Boost Voltage Control Function 0201,Injector Circuit - Cylinder 1 1319,Injector Circuit – Cylinder 1 diag condition 1 131A,Injector Circuit – Cylinder 1 diag condition 2 0202,Injector Circuit - Cylinder 2 131B,Injector Circuit – Cylinder 2 diag condition 1 131C,Injector Circuit – Cylinder 2 diag condition 2 0203,Injector Circuit - Cylinder 3 131D,Injector Circuit – Cylinder 3 diag condition 1 131E,Injector Circuit – Cylinder 3 diag condition 2 0204,Injector Circuit - Cylinder 4 131F,Injector Circuit – Cylinder 4 diag condition 1 1321,Injector Circuit – Cylinder 4 diag condition 2 0200,Injectors Circuit 1719,Input pin 1 of Gear position switch 171A,Input pin 2 of Gear position switch 171B,Input pin 3 of Gear position switch 0715,Input/Turbine Speed Sensor 0125,Insufficient Coolant Temperature for Closed Loop Fuel Control 148D,Intake Air Flap Control Function (Intrusive Diagnostic) 2279,Intake Air System 0110,Intake Air Temperature Sensor 0095,Intake Air Temperature Sensor - Upstream Air Flap 0340,Intake Camshaft Position Sensor 0011,Intake Camshaft Variable Valve Timing Control Function 0010,Intake Camshaft Variable Valve Timing Solenoid Valve 2100,Intake Throttle Actuator Control - H Bridge 0638,Intake Throttle Actuator Control Function 2119,Intake Throttle Actuator Offset Learning 0120,Intake Throttle Position Sensor 0220,Intake Throttle Position Sensor - Track 2 1598,Interlock 16BF,Interlock between inverter and Air conditioning Unit 16BE,Interlock betwen inverter and Electric motor 15BF,Interlock BMS HV Charger Connector 15C0,Interlock BMS HV Charger Fuse Lid 15BE,Interlock BMS service plug 15C4,Interlock Electrical motor 1 15C2,Interlock Electrical motor 2 15C5,Interlock HV accessories 15D3,Interlock PEB PTC 061E,Internal Control Module Brake Signal Performance 061B,Internal Control Module Torque Calculation (Level2) 062C,Internal Control Module Vehicle Speed Performance 160D,Internal Controle Module Error - Power Supply 160C,Internal Engine Control Module Error 161C,Internal HEVC Monitoring Processor Performance 0667,Internal Temperature Sensor Engine Control Module C415,Invalid Data Received From Anti-Lock Brake System Control Module C402,Invalid Data Received From Transmission Control Module E342,Inverter 1628,Inverter 2 E346,Inverter HSG 16C5,Inverter HSG HV 16C4,Inverter HV 1698,Inverter monitoring 1696,Inverter temperature 1697,Inverter voltage 1515,IS Relay 0AA6,Isolation level failure of HEV Battery 0325,Knock Sensor 17CB,Lane Departure Prevention 16DF,Level 2 detection for battery lamp lighting 15B7,Lid fuse interlock 163D,Lighting Control Module 163C,Lighting Control Module 1 163B,Lighting Control Module 2 C019,LIN bus off 16D7,LIN communication of DBC network switch 15E4,LIN connected electrical oil pump 10A4,Line to by-pass gasoline injector 1 10A5,Line to by-pass gasoline injector 2 10A6,Line to by-pass gasoline injector 3 10A7,Line to by-pass gasoline injector 4 1693,Lithium Battery Controler 1694,Lithium Battery Controler (reductant diagnosis) 15FA,Locking plug control 1604,Locking plug mecanism 15FD,Locking trap mecanism 1587,Longitudinal accelerometer sensor E200,Lost Communication With Alternative Fuel Control Module C121,Lost Communication With Anti-Lock Brake System (ABS) Control Module C112,Lost Communication With Battery Current Sensor from LIN C111,Lost Communication With Battery Energy from LIN C129,Lost Communication With Brake System Control Module C104,Lost Communication With Cruise Control Module C109,Lost Communication With Fuel Pump Control Module 1629,Lost communication with rectifier C120,Lost Communication With Stop and Start Control module C101,Lost Communication with Transmission Control Module 160F,Lost Communication with Transmission Control Module 6 15B9,Low Coolant Temperature Sensor 1501,Low pressure EGR cooler 1451,Low Pressure EGR Differential pressure 1489,Low Pressure Exhaust Gas Recirculation Temperature Sensor - Downstream Cooler 1484,Low Pressure Exhaust Gas Recirculation Valve 1488,Low Pressure Exhaust Gas Recirculation Valve - Control Function 1485,Low Pressure Exhaust Gas Recirculation Valve - H Bridge 1487,Low Pressure Exhaust Gas Recirculation Valve - Offset Learning 1486,Low Pressure Exhaust Gas Recirculation Valve - Position Sensor 148B,Low Pressure Exhaust Gas Recirculation Valve Control Function (Intrusive Diagnostic) 149B,Low Pressure Exhaust Gas Recirculation Valve Temperature sensor 018C,Low Pressure Fuel Sensor 15A5,Low speed pre-ignition avoidance strategy 162F,Low speed pre-ignition avoidance strategy. 15AE,Low temperature sensor 161A,Low temperature thermoplunger 1 Control 1619,Low temperature thermoplunger 2 Control 1618,Low temperature thermoplunger 3 Control 1590,Low voltage power supply relay 1171,LPG Fuel Adaptative Function 1170,LPG Fuel Trim Function 10A0,LPG injector 1 Circuit 10A1,LPG injector 2 Circuit 10A2,LPG injector 3 Circuit 10A3,LPG injector 4 Circuit 109A,LPG Safety Relay 1570,LPG switch 2666,LPG Tank Solenoide Valve 1572,LPG Vaporizer Shut off Valve 15A7,Mains control pilot voltage 15A9,Mains RMS voltage 0650,Malfunction Indicator Lamp (MIL) Control Circuit 0106,Manifold Absolute Pressure Function 0105,Manifold Absolute Pressure Sensor 2413,Mass Air Flow Control Function 0101,Mass Air Flow Function 0100,Mass Air Flow Sensor 2526,Mastervac pressure switch 166A,Maximum dynamique engine torque CAN fail 15EE,Maximum electromagnetic wheel torque control setpoint 1669,Maximum engine torque CAN fail 166B,Minimum engine torque CAN fail 0313,Misfire Detected with Low Fuel 1744,Monitoring of clutch actuator and driver's will 1742,Monitoring of crancking authorization 1745,Monitoring of primary shaft speed and clutch position 1743,Monitoring of transmission actuators and driver's will 1747,Monostable lever inputs diagnosis from SCU 1132,Mosfet 1 of the fuel heating control unit 1133,Mosfet 2 of the fuel heating control unit 1134,Mosfet 3 of the fuel heating control unit 1137,Mosfet 4 of the fuel heating control unit 1593,Multiways valve command 1594,Multiways valve command H bridge 1591,Multiways valve position sensor 16CE,MVAC HEVC diagnostic 16CD,MVAC HEVC diagnostic with pump on 16CC,MVAC HEVC diagnostic with pump off 16E0,Mvac pump wear alert level 1 16E1,Mvac pump wear alert level 2 15DE,Negative interdigital electrode of the SCU with the supply OFF 15DD,Negative interdigital electrode of the SCU with the supply ON 15CA,Nissan Engine Coolant Temperature 1659,Non desactivation de l' ACC 14A0,NOX Proportionnal Sensor - Downstream 2000,NOx Trap System 114A,O2 Downstream Proportionnal Sensor - Analog signal 114E,O2 Downstream Proportionnal Sensor - Measured signal 114B,O2 Downstream Proportionnal Sensor - Nernst cell 114C,O2 Downstream Proportionnal Sensor - Pumping current 114D,O2 Downstream Proportionnal Sensor - Virtual ground 2626,O2 proportional Sensor Pumping Current 1130,O2 Proportionnal Sensor - Upstream 1135,O2 Proportionnal Sensor - Downstream 1172,O2 Proportionnal Sensor -Downstream 1136,O2 Proportionnal Sensor Temperature - Downstream 1131,O2 Proportionnal Sensor Temperature - Upstream 0136,O2 Sensor - Downstream 0130,O2 Sensor - Upstream 0140,O2 Sensor Circuit Activity 0139,O2 Sensor Circuit Response 0133,O2 Sensor Circuit Slow Response 0141,O2 Sensor Heater - Downstream 0135,O2 Sensor Heater - Upstream 2A06,O2 Sensor Negative Voltage 114F,O2 Upstream Proportionnal Sensor - Nernst cell 1150,O2 Upstream Proportionnal Sensor - Pumping current 165B,Oil engine for flexfuel purpose 16FE,Oil level out of range error 250A,Oil level sensor 16FB,Oil mass alert 16DE,Oil pan sensor acquisition SCB/SCG error 1524,Oil Pressure Pump pwm Command 0521,Oil pressure switch 1560,Oil pump solenoid valve 1651,One Thermoplunger in failure 0703,Open Brake Pedal Switch 15D8,Output gearbox Speed Sensor Circuit 171C,Output pin 1 of Gear position switch 171D,Output pin 2 of Gear position switch 171E,Output pin 3 of Gear position switch 0720,Output Speed Sensor Circuit 1453,Particulate Filter Differential Pressure Control Function 2452,Particulate Filter Differential Pressure Sensor 2458,Particulate Filter Regeneration Mode 2463,Particulate Filter Restriction - Soot Accumulation E39C,Particulate Matter Sensor 24AE,Particulate Matter Sensor Circuit 15D9,Particulate Matter Sensor Efficiency 24B7,Particulate Matter Sensor Heater 24C6,Particulate Matter Sensor Temperature Circuit 2453,PDiff sensor of GPF 1624,PEB access trap fuse lid interlock state on rectifier 1623,PEB access trap interlock state on inverter 15C7,PEB Charging Interlock 1622,PEB to accessories interlock 1621,PEB to PTC interlock 16D0,Plug proximity detection line 15A8,Plug temperature 15DF,PM Sensor Control Unit 15E2,PM sensor diagnosis 053A,Positive Crankcase Ventilation Heater Control Circuit 15DC,Positive interdigital electrode of the SCU 15D2,Power Electronic Block Coolant temperature 0641,Power Supply 1 0651,Power Supply 2 0697,Power Supply 3 06A3,Power Supply 4 17C6,Powertrain Electrical Vehicle relay 1454,Pressure Before Compressor 1452,Pressure Before Compressor Sensor 0090,Pressure rail actuator component 1615,Primary Claw 1607,Primary Claw in neutral position 17C9,Primary Claw Sensor 15E5,Protection tube of Particulate Meter Sensor 166E,Pump 1 durability counter 1630,Pump 3 durability counter 1502,Quantity Balance Ajustement Torque control limitation 1300,Random/Multiple Cylinder LPG Misfire Detected 0300,Random/Multiple Cylinder Misfire Detected 16FF,Raw value of Oil Pan Level outside the SRC Max and Min Range 1707,Raw value of Oil Pan temperature outside the SRC Max and Min Range 24D1,Regeneration of PM sensor 1599,Relay closure 1644,Relay of Air Heater Passenger Compartment 1 1645,Relay of Air Heater Passenger Compartment 2 1646,Relay of Air Heater Passenger Compartment 3 15BA,Relay s2 and Relay s2’ 15BB,Relay s2’ 1720,Reverse light relay 1649,Reversing lights 1149,Richness double loop Function 15AA,S2 relay control 15B0,Safety DLS target 17C5,Safety gear lever 11C1,Safety overheating on GPF 1631,Safety primary claw position sensor 1634,Safety secondary claw position sensor 15AF,Safety start starter 15B3,Safety torque Electrical motor 15B4,Safety torque Electrical motor 2 15B2,Safety torque ice 15B1,Safety torque setpoint 1635,Safety transfert claw position sensor 162D,SCR heater 1021,SCR remaining distance range 1024,SCR System 16F8,SCR under Floor 113E,SCRF downstream temperature 1142,SCRF upstream temperature 159B,Second cooling pump 24A8,Second Exhaust Gas Recirculation Coolant Pump 241F,Second Exhaust Gas Recirculation Cooling Control 2632,Second fuel Pump Control for additional fuel tank 1614,Secondary Claw 1606,Secondary Claw in neutral position 17C7,Secondary Claw Sensor 15A3,SED Engine overboost 15D7,SED Engine overboost gearbox 15EF,Sensor Control unit relay 17CA,Shaft Selector Sensor 164B,Shifter Control Unit (SCU) Park actuation 1314,Single Cylinder LPG Misfire (Cylinder not Specified) 0314,Single Cylinder Misfire (Cylinder not Specified) C305,Software Incompatibility with Cruise Control Module 15C9,Solenoid insulation of low temperature water cooling system between PEB and battery 170E,Speed clamping Ecomode 1512,Starter 1519,Starter command 15B6,Starter relays 0A1E,Starter/Generator Control Module 05BD,Stop-Start Mode 1010,Swirl Flap Control Function 1011,Swirl Flap H bridge 1012,Swirl Flap Offset Learning 1013,Swirl Flap Position Sensor 15BD,Temperature inlet sensor 11C2,Temperature sensor after compressor 11C5,Temperature sensor between the two HP EGR coolers 1641,Thermoplunger 1 Control 1642,Thermoplunger 2 Control 1643,Thermoplunger 3 Control 1650,Thermoplunger in failure (not Specified) 159C,Third cooling pump 1653,Three Thermoplunger in failure 2135,Throttle Correlation Between The Two Sensors 0741,Torque Converter Clutch Gain 15F8,Total gear ratio 17C8,Transmission Claw Sensor 15F2,Transmission Friction of gear box 1667,Trap opening button for vehicle LOCO 2263,Turbocharger Boost Control Function 148E,Turbocharger Boost Control Function (intrusive Diagnostic) 11CE,Turbocharger Boost Offset Learning 0033,Turbocharger ByPass Valve 149E,Turbocharger compressor element low pressure duct pressure downstream sensor 023A,Turbocharger Coolant Pump Control 149D,Turbocharger cooler temperature downstream sensor 112A,Turbocharger Exhaust Pressure Control 22D2,Turbocharger Turbine Inlet Control Function 22CF,Turbocharger Turbine Inlet Valve H-bridge 22D5,Turbocharger Turbine Inlet Valve Offset Learning 22D4,Turbocharger Turbine Inlet Valve Position Sensor 0243,Turbocharger Wastegate Solenoid 00C0,Turbocharger/Supercharger Boost Control HBDG 0045,Turbocharger/Supercharger Boost Control Solenoid Valve 1173,Turbocharger/Supercharger Boost Control Solenoid Valve speed Sensor 012B,Turbocharger/Supercharger Inlet Pressure Function 012A,Turbocharger/Supercharger Inlet Pressure Sensor 10AB,Twin Injector 1 10AC,Twin Injector 2 10AD,Twin Injector 3 10AE,Twin Injector 4 1652,Two Thermoplunger in failure 15AC,UPCU relay 242C,Upstream Gas temperature out of minimum range 2200,Upstream NOX Sensor proportional - Analog signal 2243,Upstream proportional oxygen sensor - Nernst Cell Circuit 2244,Upstream proportional oxygen sensor Circuit 0096,Upstream throttle air temperature sensor 14A2,Urea Pump Control Unit 14A1,Urea Pump Control Unit consumption 14A3,Urea quality 1557,Vacuum pressure sensor 1555,Vacuum Pump Circuit 1556,Vacuum Pump Relay Control 2527,Vacuum Reservoir Pressure Sensor Circuit 0555,Vacuum System Control C315,Vehicle Speed 1746,Vehicle speed plausibility in level 2 0500,Vehicle Speed Sensor 1674,Vehicle speed sign 0834,Very Begining of Clutch Pedal Move Switch 0482,Very low speed engine fan control relay 112B,VNT sensor 16FC,Voltage out of range error from oil pan sensor 162A,Voltage signals from shift lever 0421,Warm Up Catalyst Efficiency 161B,Water heater temperature sensor 2264,Water in Fuel Sensor 1648,Water pump cabin heating circuit of PHEV/HEV 1353,Water Pump GPL 1354,Water Pump GPL command 161E,Wired Interlock from PEB output to clim compressor and charger 162E,Wired Interlock from PEB to access trap 161F,Wired Interlock from RCS 800 to PEB input 2505,Wired load alternator output 15FE,Information coherency sent by the locking sensor of the plug 0BBF,Water Cooling Fan Supply Voltage E281,PLC V-CAN loss communication E181,PLC PT-CAN loss communication 167F,PLC V-CAN loss communication under CHG condition 1680,PLC PT-CAN loss communication under CHG condition ================================================ FILE: app/src/main/assets/ZOE_Ph2/EVC-HCM-VCM_Fields.csv ================================================ ,18DAF1DA,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,18DAF1DA,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming ,18DAF1DA,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnostic ,18DAF1DA,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,18DAF1DA,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,18DAF1DA,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,18DAF1DA,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,18DAF1DA,16,23,1,0,0,,1902AF,5902AF,ff,DTCStatusAvailabilityMask ,18DAF1DA,24,39,1,0,0,,1902AF,5902AF,ff,DTCDeviceAndFailureTypeOBD ,18DAF1DA,40,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature;241:Safety Case 1;242:Safety Case 2;243:Multiple Failure;244:Temperature too Low;245:Negative Loop Error;246:Positive Loop Error;247:Initialisation not valid;248:Catalyst Destructive;249:Limp Home;250:Specific Supplier;251:Upstream lambda sensor pumping current;252:Downstream lambda sensor pumping current ,18DAF1DA,44,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType.ManufacturerOrSupplier ,18DAF1DA,48,48,1,0,0,,1902AF,5902AF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,18DAF1DA,49,49,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1DA,50,50,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1DA,51,51,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1DA,52,52,1,0,0,,1902AF,5902AF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1DA,53,53,1,0,0,,1902AF,5902AF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1DA,54,54,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1DA,55,55,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1DA,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,18DAF1DA,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,18DAF1DA,16,39,1,0,0,,190401300901,590401300901,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,190401300901,590401300901,ff,StatusOfDTC ,18DAF1DA,41,41,1,0,0,,190401300901,590401300901,ff,Oxygen sensor monitoring (YES : complete , NO: not complete),0:Yes;1:No ,18DAF1DA,16,39,1,0,0,,190401331601,590401331601,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,190401331601,590401331601,ff,StatusOfDTC ,18DAF1DA,41,41,1,0,0,,190401331601,590401331601,ff,Oxygen sensor monitoring (YES : complete , NO: not complete),0:Yes;1:No ,18DAF1DA,16,39,1,0,0,,190401331701,590401331701,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,190401331701,590401331701,ff,StatusOfDTC ,18DAF1DA,41,41,1,0,0,,190401331701,590401331701,ff,Oxygen sensor monitoring (YES : complete , NO: not complete),0:Yes;1:No ,18DAF1DA,16,39,1,0,0,,190404200901,590404200901,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,190404200901,590404200901,ff,StatusOfDTC ,18DAF1DA,41,41,1,0,0,,190404200901,590404200901,ff,Catalyst monitoring (YES: complete , NO: not complete),0:Yes;1:No ,18DAF1DA,16,39,1,0,0,,190600000001,590600000001,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,190600000001,590600000001,ff,StatusOfDTC ,18DAF1DA,48,55,1,0,0,,190600000001,590600000001,ff,DTCExtendedDataRecordNumber,1:DTCMileageAtFirstOccurrence;2:Mileage;5:DTCOccurenceCounter;6:IUMPRnumerator;7:IUMPRdenominator ,18DAF1DA,56,79,1,0,0,km,190600000001,590600000001,ff,DTCExtendedData.DTCMileageAtFirstOccurrence ,18DAF1DA,16,39,1,0,0,,190600000002,590600000002,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,190600000002,590600000002,ff,StatusOfDTC ,18DAF1DA,48,55,1,0,0,,190600000002,590600000002,ff,DTCExtendedDataRecordNumber,1:DTCMileageAtFirstOccurrence;2:Mileage;5:DTCOccurenceCounter;6:IUMPRnumerator;7:IUMPRdenominator ,18DAF1DA,56,79,1,0,0,km,190600000002,590600000002,ff,DTCExtendedData.Mileage ,18DAF1DA,16,39,1,0,0,,190600000005,590600000005,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,190600000005,590600000005,ff,StatusOfDTC ,18DAF1DA,48,55,1,0,0,,190600000005,590600000005,ff,DTCExtendedDataRecordNumber,1:DTCMileageAtFirstOccurrence;2:Mileage;5:DTCOccurenceCounter;6:IUMPRnumerator;7:IUMPRdenominator ,18DAF1DA,56,63,1,0,0,,190600000005,590600000005,ff,DTCExtendedData.DTCOccurenceCounter ,18DAF1DA,16,39,1,0,0,,190600000006,590600000006,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,190600000006,590600000006,ff,StatusOfDTC ,18DAF1DA,48,55,1,0,0,,190600000006,590600000006,ff,DTCExtendedDataRecordNumber,1:DTCMileageAtFirstOccurrence;2:Mileage;5:DTCOccurenceCounter;6:IUMPRnumerator;7:IUMPRdenominator ,18DAF1DA,56,71,1,0,0,,190600000006,590600000006,ff,DTCExtendedData.IUMPRnumerator ,18DAF1DA,16,39,1,0,0,,190600000007,590600000007,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,190600000007,590600000007,ff,StatusOfDTC ,18DAF1DA,48,55,1,0,0,,190600000007,590600000007,ff,DTCExtendedDataRecordNumber,1:DTCMileageAtFirstOccurrence;2:Mileage;5:DTCOccurenceCounter;6:IUMPRnumerator;7:IUMPRdenominator ,18DAF1DA,56,71,1,0,0,,190600000007,590600000007,ff,DTCExtendedData.IUMPRdenominator ,18DAF1DA,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,18DAF1DA,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,18DAF1DA,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,1:DTCMileageAtFirstOccurrence;2:Mileage;5:DTCOccurenceCounter;6:IUMPRnumerator;7:IUMPRdenominator ,18DAF1DA,56,71,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.IUMPRnumerator ,18DAF1DA,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,18DAF1DA,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,1:Fuel Volume Regulator Control Actuator;2:Fuel Volume Regulator Control Regulation Function;5:Fuel Rail Over Pressure Valve;16:Intake Camshaft Variable Valve Timing Solenoid Valve;17:Intake Camshaft Variable Valve Timing Control Function;19:Exhaust Camshaft Variable Valve Timing Control Function;20:Exhaust Camshaft Variable Valve Timing Solenoid Valve;22:Camshaft Position - Intake Camshaft Position Correlation;23:Camshaft Position - Exhaust Camshaft Position Correlation;51:Turbocharger ByPass Valve;69:Turbocharger/Supercharger Boost Control Solenoid Valve;74:High Pressure Turbocharger Boost Control Solenoid Valve;75:High Pressure Turbocharger Boost Control Solenoid Valve.(Turbine side);76:High Pressure Turbocharger By-Pass Offset Learning;113:Ambient Air Temperature Sensor Range/Performance;135:Fuel Rail/System Pressure - Too Low;136:Fuel Rail/System Pressure - Too High;137:Fuel Pressure Regulation Control Function;144:Pressure rail actuator component;148:High Pressure Fuel Leakage (Routine Aftersale Test);149:Intake Air Temperature Sensor - Upstream Air Flap;150:Upstream throttle air temperature sensor;192:Turbocharger/Supercharger Boost Control HBDG;256:Mass Air Flow Sensor;257:Mass Air Flow Function;261:Manifold Absolute Pressure Sensor;262:Manifold Absolute Pressure Function;272:Intake Air Temperature Sensor;277:Engine Coolant Temperature Sensor;288:Intake Throttle Position Sensor;293:Insufficient Coolant Temperature for Closed Loop Fuel Control;296:Coolant Thermostat (Coolant Temperature Below Thermostat Regulating Temperature);298:Turbocharger/Supercharger Inlet Pressure Sensor;299:Turbocharger/Supercharger Inlet Pressure Function;304:O2 Sensor - Upstream;307:O2 Sensor Circuit Slow Response;309:O2 Sensor Heater - Upstream;310:O2 Sensor - Downstream;313:O2 Sensor Circuit Response;320:O2 Sensor Circuit Activity;321:O2 Sensor Heater - Downstream;368:Fuel Trim;384:Fuel Temperature Sensor;385:Fuel temperature upstream sensor;388:Gaz Temperature Function;389:Gaz Temperature Sensor;390:Fuel temperature downstream sensor;394:Gaz Pressure Sensor;396:Low Pressure Fuel Sensor;400:Fuel Rail Pressure Sensor;405:Engine Oil Temperature Sensor;512:Injectors Circuit;513:Injector Circuit - Cylinder 1;514:Injector Circuit - Cylinder 2;515:Injector Circuit - Cylinder 3;516:Injector Circuit - Cylinder 4;534:Injection Mode;535:Engine Coolant Temperature;537:Engine over-revving;544:Intake Throttle Position Sensor - Track 2;549:Accelerator Pedal Position Sensor - Track 1;550:Accelerator Pedal Position Sensor;570:Turbocharger Coolant Pump Control;579:Turbocharger Wastegate Solenoid;602:Fuel Pump Module Control Circuit_;603:Fuel Pump Module Control Circuit;611:Cylinder 1 Contribution/Balance;614:Cylinder 2 Contribution/Balance;617:Cylinder 3 Contribution/Balance;626:Cylinder 4 Contribution/Balance;664:Engine Oil overheat;768:Random/Multiple Cylinder Misfire Detected;769:Cylinder 1 Misfire Detected;770:Cylinder 2 Misfire Detected;771:Cylinder 3 Misfire Detected;772:Cylinder 4 Misfire Detected;787:Misfire Detected with Low Fuel;788:Single Cylinder Misfire (Cylinder not Specified);789:Crankshaft Position System Variation Not Learned;805:Knock Sensor;821:Crankshaft Position Sensor;832:Intake Camshaft Position Sensor;849:Ignition Coil 1 or Ignition Coil - Cylinder 1 and 4;850:Ignition Coil 2 or Ignition Coil - Cylinder 2 and 3_;851:Ignition Coil 3 or Ignition Coil - Cylinder 2 and 4;852:Ignition Coil 4 or Ignition Coil - Cylinder 1 and 4;869:Exhaust Camshaft Position Sensor;896:Glow Plug Circuit;917:Cylinder Pressure Sensor (consolidated with condition 1);987:Cylinder pressure sensor;1024:Exhaust Gas Recirculation HP Flow;1026:Exhaust Gas Recirculation Flow Excessive Detected;1027:Exhaust Gas Recirculation Valve Control - H Bridge;1033:Exhaust Gas Recirculation Valve Position Sensor;1034:Exhaust Gas Recirculation Temperature Sensor - Downstream Cooler;1056:Catalyst System;1057:Warm Up Catalyst Efficiency;1088:Evaporative Emission System;1091:Canister Purge Valve;1097:Evaporative Emission System Vent Valve;1111:Fuel Cap;1121:Fuel Level Sensor;1136:Exhaust Gas Pressure Sensor - Upstream Turbine;1137:Exhaust Gas Pressure Control Function;1146:Exhaust Gas Pressure Sensor - Upstream Particulate Filter;1147:Exhaust Gas Pressure Function - Upstream Particullate Filter;1152:Fan 1 Control Relay;1153:Fan 2 Control Relay;1154:Very low speed engine fan control relay;1155:Back Fan;1159:Exhaust Gas Recirculation Valve Offset Learning;1160:Exhaust Gas Recirculation Valve Control Function;1178:Exhaust Gas Recirculation LP Flow;1179:Exhaust Gas Recirculation Flow;1280:Vehicle Speed Sensor;1284:Brake Pedal;1286:Idle Speed Control;1312:Engine Oil Pressure sensor;1313:Oil pressure switch;1316:Engine Oil Circuit Pressure;1317:Cruise Control Servo Control Circuit Range/Performance;1328:A/C Refrigerant Pressure Sensor;1329:A/C Compressor switch;1332:A/C Compressor;1338:Positive Crankcase Ventilation Heater Control Circuit;1348:Exhaust Gas Temperature Sensor - Upstream Turbine;1365:Vacuum System Control;1376:Battery Voltage;1380:Cruise Control/Speed Limiter - Paddle Control Button;1392:Cruise Control Accelerate Signal;1393:Closed Brake Sensor;1396:Cruise Control/Speed Limiter - Displayed Speed;1397:Cruise Control/Speed Limiter - Switch Button;1431:Engine Coolant Thermostat;1469:Stop-Start Mode;1542:Engine Control Module - Processor;1546:Engine Control Module - Reset;1547:Engine Control Module - A/D Converter;1550:Engine Control Module - Throttle Control Driver;1551:Engine Control Module - Coolant Temperature Sensor (Level 2);1560:Gaz Control Unit - Memory;1562:Engine Control Module - Torque Control Function;1563:Internal Control Module Torque Calculation (Level2);1564:Engine Control Module - Fuel Mass Control Function (Level 2);1566:Internal Control Module Brake Signal Performance;1575:Fuel Pump Control;1579:Engine Control Module - Injector Control;1580:Internal Control Module Vehicle Speed Performance;1581:Injector Bank1 Driver;1582:Injector Bank2 Driver;1592:Intake Throttle Actuator Control Function;1601:Power Supply 1;1605:A/C Compressor Control Relay;1616:Malfunction Indicator Lamp (MIL) Control Circuit;1617:Power Supply 2;1620:Engine RPM Exit From Engine Control Module;1623:Actuators Power Relay;1639:Internal Temperature Sensor Engine Control Module;1669:Engine Control Module Power Relay;1687:Power Supply 3;1699:Power Supply 4;1793:Engine Control Module - Detection of inconsistent TCU data;1795:Open Brake Pedal Switch;1813:Input/Turbine Speed Sensor;1824:Output Speed Sensor Circuit;1841:Gear Ratio 1;1842:Gear Ratio 2;1843:Gear Ratio 3;1844:Gear Ratio 4;1845:Gear Ratio 5;1846:Gear Ratio R;1857:Torque Converter Clutch Gain;2053:Clutch position sensor - press hold;2054:Clutch Contactor;2096:End of Clutch Pedal Move Switch;2099:Begining of Clutch Pedal Move Switch;2100:Very Begining of Clutch Pedal Move Switch;2305:Clutch actuator;2308:Gate Select Position Sensor;2321:Gate Select Actuator;2324:Gear Shift Position Sensor;2325:Gear shift actuator;2576:Hybrid Engine Vehicle Control;2590:Starter/Generator Control Module;2689:High Battery Voltage Cooling fan Relay;2715:Battery HV temperature sensor;2726:Isolation level failure of HEV Battery;2785:Hybrid/EV one DCBOX relay block clos;2786:Hybrid/EV two DCBOX relay block clos;2867:HV Relay Connection TimeOUT;3007:Water Cooling Fan Supply Voltage;3138:Hybrid/EV Battery Pack Coolant Temperature Sensor "A" Circuit;3480:Battery Charger Coupler Unlock Control Circuit Performance;3481:DC charge plug temperature;4112:Swirl Flap Control Function;4113:Swirl Flap H bridge;4114:Swirl Flap Offset Learning;4115:Swirl Flap Position Sensor;4129:SCR remaining distance range;4130:Communication with DCU;4131:Electrical pump unit for SCR cooling;4132:SCR System;4136:Electrical pump unit low temperature;4144:Fuel Tank Pressure sensor;4145:Fuel Tank Temperature sensor;4250:LPG Safety Relay;4256:LPG injector 1 Circuit;4257:LPG injector 2 Circuit;4258:LPG injector 3 Circuit;4259:LPG injector 4 Circuit;4260:Line to by-pass gasoline injector 1;4261:Line to by-pass gasoline injector 2;4262:Line to by-pass gasoline injector 3;4263:Line to by-pass gasoline injector 4;4266:Injector Boost Voltage Control Function;4267:Twin Injector 1;4268:Twin Injector 2;4269:Twin Injector 3;4270:Twin Injector 4;4394:Turbocharger Exhaust Pressure Control;4395:VNT sensor;4396:Fuel heating power supply relay;4397:Fuel heating power supply relay command;4398:Fuel heating control unit;4399:Fuel heating control unit’s mosfet command;4400:O2 Proportionnal Sensor - Upstream;4401:O2 Proportionnal Sensor Temperature - Upstream;4402:Mosfet 1 of the fuel heating control unit;4403:Mosfet 2 of the fuel heating control unit;4404:Mosfet 3 of the fuel heating control unit;4405:O2 Proportionnal Sensor - Downstream;4406:O2 Proportionnal Sensor Temperature - Downstream;4407:Mosfet 4 of the fuel heating control unit;4408:Fuel heating glow plug 1;4409:Fuel heating glow plug 2;4410:Fuel heating glow plug 3;4411:Fuel heating glow plug 4;4412:ignition coil 1 and 4 diagnostic;4413:ignition coil 2 and 3 diagnostic;4414:SCRF downstream temperature;4415:Aerotherm branch coolant temperature overheating alert lamp;4416:Aerotherm branch coolant temperature sensor;4418:SCRF upstream temperature;4424:Fuel Trim Control Response;4425:Richness double loop Function;4426:O2 Downstream Proportionnal Sensor - Analog signal;4427:O2 Downstream Proportionnal Sensor - Nernst cell;4428:O2 Downstream Proportionnal Sensor - Pumping current;4429:O2 Downstream Proportionnal Sensor - Virtual ground;4430:O2 Downstream Proportionnal Sensor - Measured signal;4431:O2 Upstream Proportionnal Sensor - Nernst cell;4432:O2 Upstream Proportionnal Sensor - Pumping current;4464:LPG Fuel Trim Function;4465:LPG Fuel Adaptative Function;4466:O2 Proportionnal Sensor -Downstream;4467:Turbocharger/Supercharger Boost Control Solenoid Valve speed Sensor;4545:Safety overheating on GPF;4546:Temperature sensor after compressor;4547:High Pressure Turbocharger Boost Control - H Bridge;4548:High Pressure Turbocharger Boost Control Solenoid Valve (Turbine side);4549:Temperature sensor between the two HP EGR coolers;4558:Turbocharger Boost Offset Learning;4613:Exhaust Fuel Injector Control Circuit;4641:Injector - Cylinder 1 and 4;4642:Injector - Cylinder 2 and 3;4864:Random/Multiple Cylinder LPG Misfire Detected;4865:Cylinder 1 LPG Misfire Detected;4866:Cylinder 2 LPG Misfire Detected;4867:Cylinder 3 LPG Misfire Detected;4868:Cylinder 4 LPG Misfire Detected;4884:Single Cylinder LPG Misfire (Cylinder not Specified);4886:Gasoline pump relay;4888:GPL Low Pressure Leakage;4889:Injector Circuit – Cylinder 1 diag condition 1;4890:Injector Circuit – Cylinder 1 diag condition 2;4891:Injector Circuit – Cylinder 2 diag condition 1;4892:Injector Circuit – Cylinder 2 diag condition 2;4893:Injector Circuit – Cylinder 3 diag condition 1;4894:Injector Circuit – Cylinder 3 diag condition 2;4895:Injector Circuit – Cylinder 4 diag condition 1;4896:First ignition timer;4897:Injector Circuit – Cylinder 4 diag condition 2;4947:Water Pump GPL;4948:Water Pump GPL command;5121:Downstream Upstream O2 Sensor Coherency;5152:Catalyst System 2;5157:Exhaust Gas Recirculation Second Cooling Water Pump Control Circuit;5201:Low Pressure EGR Differential pressure;5202:Pressure Before Compressor Sensor;5203:Particulate Filter Differential Pressure Control Function;5204:Pressure Before Compressor;5205:DPF forced regeneration switch located on the dashboard;5248:Exhaust Air Flap Control Function;5249:Exhaust Air Flap H Bridge;5250:Exhaust Air Flap Position Sensor;5251:Exhaust Air Flap Offset Learning;5252:Low Pressure Exhaust Gas Recirculation Valve;5253:Low Pressure Exhaust Gas Recirculation Valve - H Bridge;5254:Low Pressure Exhaust Gas Recirculation Valve - Position Sensor;5255:Low Pressure Exhaust Gas Recirculation Valve - Offset Learning;5256:Low Pressure Exhaust Gas Recirculation Valve - Control Function;5257:Low Pressure Exhaust Gas Recirculation Temperature Sensor - Downstream Cooler;5258:High Pressure Exhaust Gas Recirculation Valve Control Function (Intrusive Diagnostic);5259:Low Pressure Exhaust Gas Recirculation Valve Control Function (Intrusive Diagnostic);5260:Exhaust Air Flap Control Function (Intrusive Diagnostic);5261:Intake Air Flap Control Function (Intrusive Diagnostic);5262:Turbocharger Boost Control Function (intrusive Diagnostic);5273:Air Charge Cooler;5274:By-Pass Position Sensor of HP turbocharger Turbine;5275:Low Pressure Exhaust Gas Recirculation Valve Temperature sensor;5277:Turbocharger cooler temperature downstream sensor;5278:Turbocharger compressor element low pressure duct pressure downstream sensor;5279:Downstream Upstream O2 NOX Sensor Coherency;5280:NOX Proportionnal Sensor - Downstream;5281:Urea Pump Control Unit consumption;5282:Urea Pump Control Unit;5283:Urea quality;5376:Air Shutters Circuit;5377:Low pressure EGR cooler;5378:Quantity Balance Ajustement Torque control limitation;5379:Controlled Air Vents Information (LIN);5394:Starter;5395:ICR Relay Differential Voltage;5396:ICR Relay;5397:IS Relay;5398:HP Pump Stop and Start Function;5399:ICR Relay command;5400:DCDC command;5401:Starter command;5412:Oil Pressure Pump pwm Command;5413:Cruise Control/Speed Limiter Deactivation;5429:Immobilizer communication;5430:Immobilizer e2prom;5431:Immobilizer wrong code;5432:Immobilizer lock mode;5433:Daimler Verlog;5444:Exhaust Gas Temperature Sensor - Upstream Particulate Filter;5445:Exhaust Gas Temperature Function - Upstream Particulate Filter;5446:Exhaust Gas Temperature Monitoring - Upstream Particulate Filter;5461:Vacuum Pump Circuit;5462:Vacuum Pump Relay Control;5463:Vacuum pressure sensor;5472:Oil pump solenoid valve;5474:Idle speed control in warm up phase;5488:LPG switch;5490:LPG Vaporizer Shut off Valve;5511:Longitudinal accelerometer sensor;5512:Electrical pump unit for automatic gear box;5513:Gear box neutral contactor;5514:End stroke clutch contactor;5515:Double Flywheel Clutch;5520:Low voltage power supply relay;5521:Multiways valve position sensor;5522:Heater valve;5523:Multiways valve command;5524:Multiways valve command H bridge;5526:Charger Interlock;5527:HV battery interlock;5528:Interlock;5529:Relay closure;5530:First cooling pump;5531:Second cooling pump;5532:Third cooling pump;5533:HV battery SOC;5534:HV network voltage (2 sensors);5535:HV network voltage (3 sensors);5536:Electrical motor speed;5537:HV battery voltage sensor;5538:Electrical motor prestation;5539:SED Engine overboost;5540:Engine sailing idle;5541:Low speed pre-ignition avoidance strategy;5542:DetLogic signal;5543:Mains control pilot voltage;5544:Plug temperature;5545:Mains RMS voltage;5546:S2 relay control;5547:Fuel temperature retain;5548:UPCU relay;5549:Driver Inducement System Valve coolant flow;5550:Low temperature sensor;5551:Safety start starter;5552:Safety DLS target;5553:Safety torque setpoint;5554:Safety torque ice;5555:Safety torque Electrical motor;5556:Safety torque Electrical motor 2;5558:Starter relays;5559:Lid fuse interlock;5560:Electrical Energy Management System;5561:Low Coolant Temperature Sensor;5562:Relay s2 and Relay s2’;5563:Relay s2’;5564:Control pilot frequency;5565:Temperature inlet sensor;5566:Interlock BMS service plug;5567:Interlock BMS HV Charger Connector;5568:Interlock BMS HV Charger Fuse Lid;5569:Driving Cycle Charging Interlock;5570:Interlock Electrical motor 2;5571:HV PEB Interlock;5572:Interlock Electrical motor 1;5573:Interlock HV accessories;5574:Battery Charger;5575:PEB Charging Interlock;5576:AGB Shaft Selector;5577:Solenoid insulation of low temperature water cooling system between PEB and battery;5578:Nissan Engine Coolant Temperature;5579:Heater valve HV;5580:Cabin cooling electrovalve HV;5581:Battery Cooling Electrovalve HV;5582:Hybrid Vehicle- Oil Pressure Pump pwm Command;5584:Battery Heater Relay 1;5585:Battery Heater Relay 2;5586:Power Electronic Block Coolant temperature;5587:Interlock PEB PTC;5590:HSG (Hybrid Starter Generator) Inverter;5591:SED Engine overboost gearbox;5592:Output gearbox Speed Sensor Circuit;5593:Particulate Matter Sensor Efficiency;5595:Cold start temperature of PM sensor;5596:Positive interdigital electrode of the SCU;5597:Negative interdigital electrode of the SCU with the supply ON;5598:Negative interdigital electrode of the SCU with the supply OFF;5599:PM Sensor Control Unit;5601:Calculator Vehicle Dynamic Control 10;5602:PM sensor diagnosis;5603:Battery voltage of PM sensor;5604:LIN connected electrical oil pump;5605:Protection tube of Particulate Meter Sensor;5606:Adaptif Cruise Control brake request;5607:ACC force request (from the CAN);5608:ACC wheel torque setpoint;5609:Cruise Control state;5610:Hand free parking with break force request (CAN message);5611:Auto park force setpoint;5612:Hand free parking force setpoint;5613:Electromagnetic Torque Control request;5614:Maximum electromagnetic wheel torque control setpoint;5615:Sensor Control unit relay;5616:Hybrid/EV locked trap through which the battery is charged;5617:CAN Gateway;5618:Transmission Friction of gear box;5619:AGB Static Creeping Torque;5620:AEB brake request from CM trame;5621:AGB torque setpoint (CAN message);5622:AGB - Limit Slow torque request ((CAN message));5623:Calculator Vehicle Dynamic Control 1;5624:Total gear ratio;5625:Calculator Vehicle Dynamic Control 6;5626:Locking plug control;5627:DC Box input high voltage;5628:information cohenrency sent by the locking sensor ot the plug;5629:Locking trap mecanism;5630:Information coherency sent by the locking sensor of the plug;5631:Calculator Ultrasonic Park Assist 2;5632:COSI adaptation injector 4;5633:COSI adaptation injector 3;5634:COSI adaptation injector 2;5635:COSI adaptation injector 1;5636:Locking plug mecanism;5637:High level charge communication time out;5638:Secondary Claw in neutral position;5639:Primary Claw in neutral position;5640:Gaz Control Unit - Injectors Driver;5642:Communication Error With Watchdog;5643:Gearbox sencosrs learning diagnosis;5644:Internal Engine Control Module Error;5645:Internal Controle Module Error - Power Supply;5646:AEB brake request from CM trame2;5647:Lost Communication with Transmission Control Module 6;5648:Gaz Control Unit - Power Supply;5649:Hardware has Reseted;5650:Gaz Control Unit power supply sensor;5651:HEVC Analogic Numeric Converter;5652:Secondary Claw;5653:Primary Claw;5654:ACC and ESP coherency;5655:HBA Calculator;5656:Low temperature thermoplunger 3 Control;5657:Low temperature thermoplunger 2 Control;5658:Low temperature thermoplunger 1 Control;5659:Water heater temperature sensor;5660:Internal HEVC Monitoring Processor Performance;5661:DC Charger interlock traction type connector;5662:Wired Interlock from PEB output to clim compressor and charger;5663:Wired Interlock from RCS 800 to PEB input;5664:Engine Control Module - Upstream Proportionnal O2 Sensor Control;5665:PEB to PTC interlock;5666:PEB to accessories interlock;5667:PEB access trap interlock state on inverter;5668:PEB access trap fuse lid interlock state on rectifier;5669:Engine Control Module - Downstream Proportionnal O2 Sensor Control;5670:HV fuel pump relay;5671:DC charger interlock connector charge type;5672:Inverter 2;5673:Lost communication with rectifier;5674:Voltage signals from shift lever;5675:Cylinder Pressure Sensor (consolidated with condition 2);5676:Cylinder Pressure Sensor (consolidated with condition 3);5677:SCR heater;5678:Wired Interlock from PEB to access trap;5679:Low speed pre-ignition avoidance strategy.;5680:Pump 3 durability counter;5681:Safety primary claw position sensor;5682:Exhaust Injector Pump Control;5683:Additional Fuel Tank Solenoid Control;5684:Safety secondary claw position sensor;5685:Safety transfert claw position sensor;5686:Counter for GMV time activation;5687:Hybrid/EV DCBOX temperature sensor;5688:Hybrid/EV Temperature sensor of Plug in DC;5689:Electrical Red LED;5690:Electrical blue LED;5691:Lighting Control Module 2;5692:Lighting Control Module 1;5693:Lighting Control Module;5694:Current supplied by combo terminal;5695:Combo charging stand;5697:Thermoplunger 1 Control;5698:Thermoplunger 2 Control;5699:Thermoplunger 3 Control;5700:Relay of Air Heater Passenger Compartment 1;5701:Relay of Air Heater Passenger Compartment 2;5702:Relay of Air Heater Passenger Compartment 3;5703:Comb voltage terminal;5704:Water pump cabin heating circuit of PHEV/HEV;5705:Reversing lights;5706:CAN HV bus;5707:Shifter Control Unit (SCU) Park actuation;5708:CAN frame ACU_A1 received from Airbag Control Unit (ACU) on CAN V;5709:CAN frame ADAS_A3 received from ADAS on CAN PT;5710:CAN frame ATCU_A3 received from automatic transmission on CAN V;5711:CAN frame BCM_A4 received from BCM on CAN V;5712:Thermoplunger in failure (not Specified);5713:One Thermoplunger in failure;5714:Two Thermoplunger in failure;5715:Three Thermoplunger in failure;5716:Four Thermoplunger in failure;5718:Electromagnetic Torque Control;5719:Hardware voltage battery 12v failure;5721:Non desactivation de l' ACC;5722:CAN frame USM_A1 received from USM on CAN V;5723:Oil engine for flexfuel purpose;5724:Downstream underfloor NOx sensor;5725:Downstream underfloor O2 sensor;5726:Downstream underfloor sensor heater;5727:Downstream underfloor sensor wire;5729:Engine speed sensor CAN fail;5730:Brake parking sensor CAN fail;5731:Brake pressure sensor CAN fail;5732:Hill assist CAN fail;5733:Auto hold CAN fail;5734:GBT Switch type S3 of vehicle connector;5735:Trap opening button for vehicle LOCO;5736:Estimated engine torque CAN fail;5737:Maximum engine torque CAN fail;5738:Maximum dynamique engine torque CAN fail;5739:Minimum engine torque CAN fail;5740:DC Power Combo Terminal;5741:CAN frame EBA_A2 received from EBA (Electric Brake Actuator) on CAN-V;5742:Pump 1 durability counter;5744:Fuel consumption;5745:Drivers door open (from BCM);5746:Drivers door status supposed failure (from the BCM);5747:Engine hood open (from the BCM);5748:Vehicle speed sign;5749:Engine coolant temperature (second threshold);5750:Engine state wired ouput;5751:ETS Engine coolant temperature;5752:Driver Safety Belt Buckle State (from BCM);5753:Driver seat belt failure state (from BCM);5754:A/C Compressor HV;5755:In Vehicle Infotainment System HV;5756:In Vehicle Infotainment System 2 HV;5757:Body Control Module HV;5758:CAN frame BCM_A4 received from BCM on CAN V HV;5759:PLC V-CAN loss communication under CHG condition;5760:PLC PT-CAN loss communication under CHG condition;5761:Calculator Dashboard HV;5762:Gear Shifting Control Unit HV;5763:Battery Current Sensor;5764:Calculator Under Hood Switch Module HV;5765:CAN frame USM_A1 received from USM on CAN V HV;5766:eMotor belt broken;5767:Battery Charger Block HV;5768:Battery Management System HV;5769:Battery Management System 2 HV;5770:Battery high voltage power relay A;5771:Battery high voltage power relay A or P1;5772:Battery high voltage power relay A or P2;5773:Battery high voltage power relay P1;5774:Battery high voltage power relay P2;5775:Battery high voltage power relay P1 or P2;5776:High Voltage Battery;5777:Battery High Voltage;5778:High voltage network;5779:Lithium Battery Controler;5780:Lithium Battery Controler (reductant diagnosis);5781:Electric Motor Prestation;5782:Inverter temperature;5783:Inverter voltage;5784:Inverter monitoring;5785:High Voltage Battery Fan;5786:Alternator mode;5792:Dynamic mode switch (CAN);5793:Advanced Driving Assist System;5795:Automatic Brake Parking System;5797:Bus CAN vehicle;5798:Body Control Module;5799:Engine Control Management;5802:Calculator Hand Free Module;5803:Calculator Integrated Dynamics Control Module;5804:Calculator Dashboard;5807:Calculator Vehicle Dynamic Control;5812:Hybrid Engine Control Management 2;5813:Calculator Vehicle Dynamic Control 2;5814:Calculator Vehicle Dynamic Control 3;5815:Calculator Vehicle Dynamic Control 4;5816:Advanced Driving Assist System 3;5817:Advanced Driving Assist System 2;5818:Calculator Integrated Dynamics Control Module 2;5819:AC/DC converter;5820:Engine Coolant Thermostat Low Temperature;5821:HV compressor insulation resistance;5822:Interlock betwen inverter and Electric motor;5823:Interlock between inverter and Air conditioning Unit;5824:Engine Coolant Low Temperature;5825:Calculator Vehicle Dynamic Control 5;5826:Advanced Driving Assist System 4;5827:DCDC high voltage converter HV;5828:Inverter HV;5829:Inverter HSG HV;5830:AC/DC converter HV;5831:CAN frame ADASIS_CARTO_N1 received from IVI (In-Vehicle Infotainment) on CAN-PT;5832:CAN frame ADASIS_Position_N1 received from IVI (In-Vehicle Infotainment) on CAN-PT;5833:Dual battery coupler;5834:Circuit 12v of Battery Management System;5836:MVAC HEVC diagnostic with pump off;5837:MVAC HEVC diagnostic with pump on;5838:MVAC HEVC diagnostic;5839:Auto start high speed;5840:Plug proximity detection line;5842:ECM to CAN powertrain connection;5843:HEVC to CAN powertrain connection;5844:BSG starter-generator in driving mode;5845:BSG starter-generator in alternator mode;5846:BSG starter-generator;5847:LIN communication of DBC network switch;5848:HSCO Powertrain shutdown for safety;5849:High voltage batterie SOC for hybrid vehicule;5850:Dual battery coupler wire circuit;5851:Engine Oil Temperature Sensor A Entry;5852:AutoPark function monitoring;5853:EGR DUAL Diagnosis;5854:Oil pan sensor acquisition SCB/SCG error;5855:Level 2 detection for battery lamp lighting;5856:Mvac pump wear alert level 1;5857:Mvac pump wear alert level 2;5858:ACU ECU (Airbag Control Unit) (frame ACU_A2 on PT-FD);5859:CRC diagnosis for ACU ECU (Airbag Control Unit) (frame ACU_A101 on PT-FD);5860:CRC diagnosis for ADAS ECU (frame ADAS_A4 on PT-CAN);5861:CRC diagnosis for ADAS ECU (frame ADAS_A104 on PT-FD);5862:CRC diagnosis for ADAS ECU (frame ADAS_A112 on PT-FD);5863:CRC diagnosis for ADAS ECU (frame ADAS_A114 on PT-FD);5864:CRC diagnosis for ATCU ECU (frame ATCU_A104 on PT-CAN);5865:CRC diagnosis for ATCU ECU (frame ATCU_A108 on PT-CAN);5866:CRC diagnosis for ATCU ECU (frame ATCU_A111 on PT-CAN);5867:CRC diagnosis for ATCU ECU (frame ATCU_A112 on PT-CAN);5868:CRC diagnosis for ATCU ECU (frame ATCU_A110 on PT-CAN);5869:CRC diagnosis for AVM ECU (Around View Monitor) (frame AVM_A101 on PT-FD);5870:CRC diagnosis for BCM ECU (frame BCM_A110 on PT-FD);5871:CRC diagnosis for BCM ECU (frame BCM_A113 on PT-FD);5873:CRC diagnosis for CDM ECU (Chassis Dynamic Module) (frame CDM_A111 on PT-CAN);5874:CRC diagnosis for USM ECU (frame USM_A101 on PT-FD);5876:CRC diagnosis for VDC ECU (Vehicle Dynamic Control) (frame VDC_A6 on PT-FD);5877:CRC diagnosis for VDC ECU (Vehicle Dynamic Control) (frame VDC_A113 on PT-CAN);5878:CRC diagnosis for VDC ECU (Vehicle Dynamic Control) (frame VDC_A115 on PT-FD);5879:CRC diagnosis for VDC ECU (Vehicle Dynamic Control) (frame VDC_A9 on PT-FD);5880:SCR under Floor;5881:Automatic transmission Stop and Start request received on the CAN;5882:Automatic transmission Stop and Start failure flag received on the CAN;5883:Oil mass alert;5884:Voltage out of range error from oil pan sensor;5886:Oil level out of range error;5887:Raw value of Oil Pan Level outside the SRC Max and Min Range;5895:Raw value of Oil Pan temperature outside the SRC Max and Min Range;5902:Speed clamping Ecomode;5903:Automatic stop and start supervisor on hybrid vehicle;5905:Clutch actuator primary sensor;5906:Clutch actuator secondary sensor;5907:Gear select actuator primary sensor;5908:Gear select actuator secondary sensor;5909:Gear shift actuator primary sensor;5910:Gear shift actuator secondary sensor;5911:Actuator main supply switch;5912:Gear Position switch;5913:Input pin 1 of Gear position switch;5914:Input pin 2 of Gear position switch;5915:Input pin 3 of Gear position switch;5916:Output pin 1 of Gear position switch;5917:Output pin 2 of Gear position switch;5918:Output pin 3 of Gear position switch;5919:Gear synchronizer actuator;5920:Reverse light relay;5922:DC chademo charge swich d1;5923:DC chademo charge swich d2;5924:DC chademo charger;5926:Accessory fuse box temperature of AC charge;5954:Monitoring of crancking authorization;5955:Monitoring of transmission actuators and driver's will;5956:Monitoring of clutch actuator and driver's will;5957:Monitoring of primary shaft speed and clutch position;5958:Vehicle speed plausibility in level 2;5959:Monostable lever inputs diagnosis from SCU;6080:Gear lever;6081:Gear lever track 1;6082:Gear lever track 2;6083:Clutch Kiss Point;6084:Grid teach in;6085:Safety gear lever;6086:Powertrain Electrical Vehicle relay;6087:Secondary Claw Sensor;6088:Transmission Claw Sensor;6089:Primary Claw Sensor;6090:Shaft Selector Sensor;6091:Lane Departure Prevention;6092:Available power at the charger output;6093:Available power at infrastructure output;6094:Gear Box Actuator;6095:GBA Primary Claw;6096:GBA Secondary Claw;6097:GBA Shaft Selector;8192:NOx Trap System;8194:Diesel Particulate Filter System;8241:Exhaust Gas Temperature Sensor - Upstream First Catalyser;8244:Exhaust Gas Temperature Sensor - Downstream First Catalyser;8320:Exhaust Gas Temperature Control Function - Upstream First Catalyser;8448:Intake Throttle Actuator Control - H Bridge;8473:Intake Throttle Actuator Offset Learning;8480:Accelerator Pedal Position Sensor - Track 2;8501:Throttle Correlation Between The Two Sensors;8704:Upstream NOX Sensor proportional - Analog signal;8742:Atmospheric Pressure Sensor;8743:Atmospheric Pressure Function;8771:Upstream proportional oxygen sensor - Nernst Cell Circuit;8772:Upstream proportional oxygen sensor Circuit;8803:Turbocharger Boost Control Function;8804:Water in Fuel Sensor;8805:Fuel Level Sensor_;8813:GPF removal detection (based on Pdiff);8825:Intake Air System;8851:Gaz Pressure Regulation Control Function;8852:Gaz Pressure Regulator Valve;8911:Turbocharger Turbine Inlet Valve H-bridge;8914:Turbocharger Turbine Inlet Control Function;8916:Turbocharger Turbine Inlet Valve Position Sensor;8917:Turbocharger Turbine Inlet V ,18DAF1DA,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature;241:Safety Case 1;242:Safety Case 2;243:Multiple Failure;244:Temperature too Low;245:Negative Loop Error;246:Positive Loop Error;247:Initialisation not valid;248:Catalyst Destructive;249:Limp Home;250:Specific Supplier;251:Upstream lambda sensor pumping current;252:Downstream lambda sensor pumping current ,18DAF1DA,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,18DAF1DA,24,55,1,0,0,,220100,620100,4ff,DIDs supported in range [$0100 - $0120] ,18DAF1DA,24,55,1,0,0,,222000,622000,4ff,DIDs supported in range 2001 - 2020 ,18DAF1DA,24,39,.1,2730,1,,222001,622001,ff,Engine coolant temperature ,18DAF1DA,24,39,.25,0,1,rpm,222002,622002,ff,Engine speed ,18DAF1DA,24,39,.01,0,2,km/h,222003,622003,ff,Vehicle speed ,18DAF1DA,24,39,.03125,12800,2,N·m,222004,622004,ff,Estimated effective engine torque ,18DAF1DA,24,39,.01,0,2,V,222005,622005,ff,Battery voltage ,18DAF1DA,24,47,1,0,0,km,222006,622006,ff,Total vehicle distance ,18DAF1DA,24,39,.1,2730,1,,222007,622007,ff,Oil temperature - engine ,18DAF1DA,24,39,.1,2730,1,,222008,622008,ff,Fuel temperature ,18DAF1DA,24,39,1,0,0,mbar,222009,622009,ff,Atmospheric pressure ,18DAF1DA,24,39,1,0,0,mV,22200B,62200B,ff,Accelerator pedal voltage track 1 ,18DAF1DA,24,39,1,0,0,mV,22200C,62200C,ff,Accelerator pedal voltage track 2 ,18DAF1DA,24,39,.01,0,2,V,22200D,62200D,ff,Freon pressure sensor voltage ,18DAF1DA,31,31,1,0,0,,22200E,62200E,ff,Key state,0:key off;1:key on ,18DAF1DA,28,31,1,0,0,,22200F,62200F,ff,Brake pedal - switches consolidation state,0:no pressed;1:pressed;2:confirmed pressed ,18DAF1DA,24,31,1,0,0,,222010,622010,ff,Engine status,0:engine stopped;16:engine driven;32:engine stalled;48:engine autonomious ,18DAF1DA,29,29,1,0,0,,22201D,62201D,ff,Thermoplungers command state.2,0:No thermoplunger 3 activation;1:thermoplunger 3 activation ,18DAF1DA,30,30,1,0,0,,22201D,62201D,ff,Thermoplungers command state.1,0:No thermoplunger 2 activation;1:thermoplunger 2 activation ,18DAF1DA,31,31,1,0,0,,22201D,62201D,ff,Thermoplungers command state.0,0:No thermoplunger 1 activation;1:Thermoplunger 1 activation ,18DAF1DA,31,31,1,0,0,,22201E,62201E,ff,Air conditioning state.value,0:deactivated;1:activated ,18DAF1DA,24,55,1,0,0,,222020,622020,4ff,DIDs supported in range 2021 - 2040 ,18DAF1DA,24,39,1,0,0,mV,222021,622021,ff,Sensors supply voltage 1 ,18DAF1DA,24,39,1,0,0,mV,222022,622022,ff,Sensors supply voltage 2 ,18DAF1DA,24,39,1,0,0,mV,222023,622023,ff,Sensors supply voltage 3 ,18DAF1DA,24,39,.25,0,1,rpm,222024,622024,ff,Idle engine speed setpoint.value ,18DAF1DA,30,31,1,0,0,,222026,622026,ff,Brake pedal - open active switch state,0:reserved;1:not pressed;2:pressed ,18DAF1DA,30,31,1,0,0,,222027,622027,ff,Clutch pedal - minimum travel switch state - CAN,0:not pressed;1:pressed;2:invalid ,18DAF1DA,31,31,1,0,0,,22202D,62202D,ff,Protected state,0:not protected;1:protected ,18DAF1DA,24,39,.00125,0,3,,22202E,62202E,ff,Accelerator pedal position ,18DAF1DA,24,39,.01,0,2,%,222033,622033,ff,Intake camshaft phaser PWM command.value ,18DAF1DA,24,31,1,0,0,km/h,222035,622035,ff,CCSL - Cruise control speed setpoint ,18DAF1DA,24,31,1,0,0,,222036,622036,ff,Counter of inconsistencies between accelerator pedal and brake ,18DAF1DA,24,39,1,0,0,mV,222039,622039,ff,CCSL - Steering wheel push buttons voltage ,18DAF1DA,31,31,1,0,0,,22203A,62203A,ff,Configuration - Cruise control (option),0:without;1:with ,18DAF1DA,31,31,1,0,0,,22203B,62203B,ff,Configuration - Cruise control (On---Off button),0:without;1:with ,18DAF1DA,31,31,1,0,0,,22203C,62203C,ff,Cruise control On---Off button state,0:off;1:on ,18DAF1DA,31,31,1,0,0,,22203D,62203D,ff,Configuration - Speed limiter (option),0:without;1:with ,18DAF1DA,31,31,1,0,0,,22203E,62203E,ff,Configuration - Speed limiter (On---Off button),0:without;1:with ,18DAF1DA,31,31,1,0,0,,22203F,62203F,ff,Speed limiter On---Off button state,0:off;1:on ,18DAF1DA,24,55,1,0,0,,222040,622040,4ff,DIDs supported in range 2041 - 2060 ,18DAF1DA,31,31,1,0,0,,222041,622041,ff,Configuration - CCSL steering wheel push buttons,0:without;1:with ,18DAF1DA,31,31,1,0,0,,222042,622042,ff,Configuration - Air conditioning control unit,0:without;1:with ,18DAF1DA,31,31,1,0,0,,222043,622043,ff,Configuration - Freon pressure sensor,0:without;1:with ,18DAF1DA,24,39,.00125,0,3,,222044,622044,ff,Powertrain setpoint ,18DAF1DA,30,31,1,0,0,,222045,622045,ff,Clutch pedal - maximum travel switch state,0:not pressed;1:pressed;2:invalid ,18DAF1DA,29,31,1,0,0,,222048,622048,ff,Cranking autorisation status,0:not allowed;1:allowed;2:stop request;3:norequest;4:forbidden ,18DAF1DA,24,24,1,0,0,,22204A,62204A,ff,Motor-fans requests.7,0:no fan 2 final CAN request;1:fan 2 final CAN request ,18DAF1DA,25,25,1,0,0,,22204A,62204A,ff,Motor-fans requests.6,0:no fan 1 final CAN request;1:fan 1 final CAN request ,18DAF1DA,26,26,1,0,0,,22204A,62204A,ff,Motor-fans requests.5,0:no fan 2 request from automatic gearbox;1:fan 2 request from automatic gearbox ,18DAF1DA,27,27,1,0,0,,22204A,62204A,ff,Motor-fans requests.4,0:no fan 1 request from automatic gearbox;1:fan 1 request from automatic gearbox ,18DAF1DA,28,28,1,0,0,,22204A,62204A,ff,Motor-fans requests.3,0:no fan 2 request from air conditioning;1:fan 2 request from air conditioning ,18DAF1DA,29,29,1,0,0,,22204A,62204A,ff,Motor-fans requests.2,0:no fan 1 request from air conditioning;1:fan 1 request from air conditioning ,18DAF1DA,30,30,1,0,0,,22204A,62204A,ff,Motor-fans requests.1,0:no fan 2 request from ECM;1:fan 2 request from ECM ,18DAF1DA,31,31,1,0,0,,22204A,62204A,ff,Motor-fans requests.0,0:no fan 1 request from ECM;1:fan 1 request from ECM ,18DAF1DA,29,31,1,0,0,,22204B,62204B,ff,CCSL - Steering wheel push buttons state,0:unpressed;1:invalid voltage;2:open circuit;3:suspend boutton pressed;4:set - button pressed;5:set + button pressed;6:resume button pressed;7:distance button pressed ,18DAF1DA,29,31,1,0,0,,22204C,62204C,ff,CCSL - Status,0:CC and SL off;1:SL on (active or over-speed);2:SL on (awaiting or supsended);3:SL requested and in failure;4:CC on (active);5:CC on (awaiting or supsended);6:CC requested and in failure;7:CC and SL not present ,18DAF1DA,24,24,1,0,0,,22204E,62204E,ff,CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.7,0:Not activated;1:AT in limp-home mode or absent (in case of SL) ,18DAF1DA,25,25,1,0,0,,22204E,62204E,ff,CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.6,0:Not activated;1:Invalid check of vehicle speed ,18DAF1DA,26,26,1,0,0,,22204E,62204E,ff,CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.5,0:Not activated;1:SL engine inhibition ,18DAF1DA,27,27,1,0,0,,22204E,62204E,ff,CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.4,0:Not activated;1:change of the displayed speed unit ,18DAF1DA,28,28,1,0,0,,22204E,62204E,ff,CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.3,0:Not activated;1:displayed vehicle speed absence ,18DAF1DA,29,29,1,0,0,,22204E,62204E,ff,CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.2,0:Not activated;1:real vehicle speed absence ,18DAF1DA,30,30,1,0,0,,22204E,62204E,ff,CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.1,0:Not activated;1:displayed vehicle speed unavailable ,18DAF1DA,31,31,1,0,0,,22204E,62204E,ff,CCSL - State of the reversible failures not due to CCSL which cause CCSL failure.0,0:real vehicle speed available;1:real vehicle speed unavailable ,18DAF1DA,24,24,1,0,0,,22204F,62204F,ff,CCSL - State of the reversible failures not due to CC which cause CC failure.7,0:Not activated;1:CC engine inhibition ,18DAF1DA,25,25,1,0,0,,22204F,62204F,ff,CCSL - State of the reversible failures not due to CC which cause CC failure.6,0:Not activated;1:gearbox in limp home mode ,18DAF1DA,26,26,1,0,0,,22204F,62204F,ff,CCSL - State of the reversible failures not due to CC which cause CC failure.5,0:Not activated;1:sudden braking detected without brake information ,18DAF1DA,27,27,1,0,0,,22204F,62204F,ff,CCSL - State of the reversible failures not due to CC which cause CC failure.4,0:Not activated;1:braking detected without brake information ,18DAF1DA,28,28,1,0,0,,22204F,62204F,ff,CCSL - State of the reversible failures not due to CC which cause CC failure.3,0:Not activated;1:brake information absence ,18DAF1DA,29,29,1,0,0,,22204F,62204F,ff,CCSL - State of the reversible failures not due to CC which cause CC failure.2,0:Not activated;1:brake information unavailable ,18DAF1DA,30,30,1,0,0,,22204F,62204F,ff,CCSL - State of the reversible failures not due to CC which cause CC failure.1,0:Not activated;1:clutch information absence ,18DAF1DA,31,31,1,0,0,,22204F,62204F,ff,CCSL - State of the reversible failures not due to CC which cause CC failure.0,0:clutch information available;1:clutch information unavailable ,18DAF1DA,24,39,.01,0,2,km/h,222050,622050,ff,Displayed vehicle speed received on the CAN network ,18DAF1DA,31,31,1,0,0,,222051,622051,ff,Displayed vehicle speed unit,0:km/h;1:mph ,18DAF1DA,24,31,.392156863,0,1,%,222052,622052,ff,Heating glow plugs PWM command.value ,18DAF1DA,24,39,10,0,0,W,222057,622057,ff,Alternator power ,18DAF1DA,31,31,1,0,0,,222059,622059,ff,Clutch pedal - minimum travel switch state - wire,0:released;1:pressed ,18DAF1DA,24,31,1,0,0,,22205A,62205A,ff,Idle engine speed regulation status,2:out of idle speed regulation;4:take off state;8:start state;16:after start state;32:condition state;64:activation state ,18DAF1DA,31,31,1,0,0,,22205D,62205D,ff,No driver request state (pedal---CCSL),0:pressed or CCSL activated;1:foot up and CCSL deactivated ,18DAF1DA,24,55,1,0,0,,222060,622060,4ff,DIDs supported in range 2061 - 2080 ,18DAF1DA,24,39,.03125,12800,2,N·m,222061,622061,ff,Effective engine torque target requested by real (pedal) and virtual (ACC/CC/SL) drivers ,18DAF1DA,24,39,.03125,12800,2,N·m,222063,622063,ff,Minimum engine torque ,18DAF1DA,24,39,.03125,12800,2,N·m,222064,622064,ff,Maximum engine torque ,18DAF1DA,24,39,.03125,12800,2,N·m,222065,622065,ff,Maximum engine torque with dynamic limitations ,18DAF1DA,24,39,.03125,0,2,N·m,222066,622066,ff,Engine torque losses ,18DAF1DA,31,31,1,0,0,,22206D,62206D,ff,Configuration - Clutch pedal - minimum travel switch,0:not connected;1:connected ,18DAF1DA,31,31,1,0,0,,22206E,62206E,ff,Configuration - Brake pedal - open active switch,0:without;1:with ,18DAF1DA,24,31,1,0,0,,22206F,62206F,ff,Synthesis of engine stop requests,51:airbag crash stop request;85:injection system stop;90:anti-panic strategy stop request;165:BVR stop request;170:stop&go stop request;204:Verlog stop request;240:no request ,18DAF1DA,31,31,1,0,0,,222070,622070,ff,Immobilizer - diagnosis availability,0:unavailable;1:available ,18DAF1DA,24,31,1,0,0,,222071,622071,ff,Immobilizer - Byte 1 used to allow diagnosis ,18DAF1DA,24,31,1,0,0,,222072,622072,ff,Immobilizer - Byte 2 used to allow diagnosis ,18DAF1DA,25,25,1,0,0,,222073,622073,ff,Immobilizer - Byte 3 used to allow diagnosis.6,0:ECM not protected;1:ECM protected ,18DAF1DA,26,27,1,0,0,,222073,622073,ff,Immobilizer - Byte 3 used to allow diagnosis.4-5,0:ECM virgin - Secret key not learnt;1:Not used;2:Not virgin ECM - Secret key learnt in erasable area;3:Not virgin ECM - Secret key learnt in non erasable area ,18DAF1DA,29,29,1,0,0,,222073,622073,ff,Immobilizer - Byte 3 used to allow diagnosis.2,0:Cleappli not set;1:Cleappli set ,18DAF1DA,31,31,1,0,0,,222073,622073,ff,Immobilizer - Byte 3 used to allow diagnosis.0,0:Immobilizer engine running forbidden;1:Immobilizer engine running authorized ,18DAF1DA,31,31,1,0,0,,222074,622074,ff,Immobilizer - engine not running due to ECM,0:no;1:yes ,18DAF1DA,31,31,1,0,0,,222075,622075,ff,Immobilizer - engine not running due to BCM in secure mode,0:no;1:yes ,18DAF1DA,31,31,1,0,0,,222076,622076,ff,Immobilizer - engine not running due to no BCM authorization,0:no;1:yes ,18DAF1DA,31,31,1,0,0,,222077,622077,ff,Immobilizer - engine not running due to a CAN network problem with the BCM,0:no;1:yes ,18DAF1DA,27,27,1,0,0,,222078,622078,ff,CCSL - State of the causes for normal CCSL deactivation.4,0:gearbox not in neutral position;1:gearbox on a neutral position ,18DAF1DA,28,28,1,0,0,,222078,622078,ff,CCSL - State of the causes for normal CCSL deactivation.3,0:clutch pedal not pressed;1:clutch pedal pressed ,18DAF1DA,29,29,1,0,0,,222078,622078,ff,CCSL - State of the causes for normal CCSL deactivation.2,0:Not braking;1:braking ,18DAF1DA,30,30,1,0,0,,222078,622078,ff,CCSL - State of the causes for normal CCSL deactivation.1,0:Suspend button not pressed;1:Suspend button pressed ,18DAF1DA,31,31,1,0,0,,222078,622078,ff,CCSL - State of the causes for normal CCSL deactivation.0,0:no main switch changed;1:main switch changed ,18DAF1DA,24,31,1,0,0,,222079,622079,ff,CCSL - State of the system causes for normal CCSL deactivation.7,0:Airbag Crash Not Happened;1:Airbag Crash Happened ,18DAF1DA,25,25,1,0,0,,222079,622079,ff,CCSL - State of the system causes for normal CCSL deactivation.6,0:No SL system engine control inhibition;1:SL system engine control inhibition ,18DAF1DA,26,26,1,0,0,,222079,622079,ff,CCSL - State of the system causes for normal CCSL deactivation.5,0:No CC system engine control inhibition;1:CC system engine control inhibition ,18DAF1DA,27,27,1,0,0,,222079,622079,ff,CCSL - State of the system causes for normal CCSL deactivation.4,0:No assisted or manual parking brake;1:Assisted or manual parking brake ,18DAF1DA,28,28,1,0,0,,222079,622079,ff,CCSL - State of the system causes for normal CCSL deactivation.3,0:Speed / setpoint ratio not too small;1:Speed / setpoint ratio too small ,18DAF1DA,29,29,1,0,0,,222079,622079,ff,CCSL - State of the system causes for normal CCSL deactivation.2,0:ASR or AYC not in regulation;1:ASR or AYC in regulation ,18DAF1DA,30,30,1,0,0,,222079,622079,ff,CCSL - State of the system causes for normal CCSL deactivation.1,0:Gearbox not on a reverse position;1:Gearbox on a reverse position ,18DAF1DA,31,31,1,0,0,,222079,622079,ff,CCSL - State of the system causes for normal CCSL deactivation.0,0:Start button not pressed;1:Start button pressed ,18DAF1DA,24,31,1,0,0,s,22207A,62207A,ff,Maximum duration of resume button pressed ,18DAF1DA,24,31,1,0,0,s,22207B,62207B,ff,Maximum duration of set + button pressed ,18DAF1DA,24,31,1,0,0,s,22207C,62207C,ff,Maximum duration of set - button pressed ,18DAF1DA,24,31,1,0,0,s,22207D,62207D,ff,Maximum duration of suspend button pressed ,18DAF1DA,24,31,1,0,0,,22207E,62207E,ff,Maximum value of blocked button detection counter ,18DAF1DA,24,55,1,0,0,,222080,622080,4ff,DIDs supported in range 2081 - 20A0 ,18DAF1DA,31,31,1,0,0,,222081,622081,ff,Configuration - AGB (automatic gearbox),0:without;1:with ,18DAF1DA,31,31,1,0,0,,222082,622082,ff,Configuration - ACC (adaptative cruise control),0:without;1:with ,18DAF1DA,31,31,1,0,0,,222083,622083,ff,Configuration - SDL (speed and distance limiter),0:without;1:with ,18DAF1DA,31,31,1,0,0,,222084,622084,ff,Configuration - USM (underhood switching module),0:without;1:with ,18DAF1DA,31,31,1,0,0,,222085,622085,ff,Configuration - BCM (body control module),0:without;1:with ,18DAF1DA,31,31,1,0,0,,222087,622087,ff,Configuration - Cluster control unit,0:without;1:with ,18DAF1DA,31,31,1,0,0,,222088,622088,ff,Configuration - ABS---ESP,0:without;1:with ,18DAF1DA,24,31,1,0,0,s,22208C,62208C,ff,Maximum duration of ASCD button press ,18DAF1DA,31,31,1,0,0,,22208D,62208D,ff,Detection of option presence enabled,0:without;1:with ,18DAF1DA,24,31,1,5,0,,22208E,62208E,ff,Current gear engaged (01) ,18DAF1DA,24,31,1,5,0,,22208F,62208F,ff,Anticipated gear engaged ,18DAF1DA,24,31,1,0,0,,222090,622090,ff,Coherent airbag crash frame detection,15:not detected;240:detected ,18DAF1DA,24,31,1,0,0,,222091,622091,ff,Coherent airbag crash frame memorization,15:not memorized;240:memorized ,18DAF1DA,31,31,1,0,0,,222092,622092,ff,Air conditioning request,0:no;1:yes ,18DAF1DA,31,31,1,0,0,,222095,622095,ff,Combination of all engine air conditioning compressor inhibitions,0:no;1:yes ,18DAF1DA,24,39,.25,0,1,rpm,222098,622098,ff,Accelerated idle speed requested by air conditioning ,18DAF1DA,24,31,.3921569,0,1,%,222099,622099,ff,Alternator load ,18DAF1DA,24,55,1,0,0,,2220A0,6220A0,4ff,DIDs supported in range [$20A1 - $20C0] ,18DAF1DA,29,31,1,0,0,,2220A3,6220A3,ff,Brake pedal states received on the CAN,1:Brake pedal not pressed;2:Brake pedal pressed;4:Brake pedal confirmed pressed;7:Brake pedal invalid (this state never happens) ,18DAF1DA,24,39,1,0,0,mV,2220A4,6220A4,ff,Sensors power supply 4 voltage raw acquisition ,18DAF1DA,24,39,1,0,0,km,2220A5,6220A5,ff,Travelled distance in road and highway from the last oil drain ,18DAF1DA,24,39,1,0,0,,2220A6,6220A6,ff,Travelled distance in depollution zone from the last oil drain ,18DAF1DA,24,39,.0000762951,0,3,%,2220A8,6220A8,ff,Oil soot rate max model ,18DAF1DA,24,55,1,-2147483647.5,0,s,2220A9,6220A9,1ff,Total time in richness 1 mode ,18DAF1DA,31,31,1,0,0,,2220AD,6220AD,ff,Activation request of mastervac diagnosis sequence (vacuum pump and analog sensor),0:Mastervac diagnosis sequence not requested;1:Mastervac diagnosis sequence requested ,18DAF1DA,31,31,1,0,0,,2220B2,6220B2,ff,HV network disabled,0:no inhibition of Stop and Start by HV network;1:inhibition of Stop and Start by HV network ,18DAF1DA,31,31,1,0,0,,2220B3,6220B3,ff,StopAuto forbidden by HV network,0:StopAuto authorized by HV network;1:StopAuto inhibited by HV network ,18DAF1DA,31,31,1,0,0,,2220B4,6220B4,ff,DCDC activation required by Electrical Energy Management,0:DCDC not activated;1:DCDC activated ,18DAF1DA,24,39,1,32767,0,A,2220B5,6220B5,ff,DCDC Input Current (taken on high voltage network) send by CAN ,18DAF1DA,24,39,.1,0,1,V,2220B6,6220B6,ff,DCDC Voltage on High Voltage Network send by CAN ,18DAF1DA,24,31,1,0,0,A,2220B7,6220B7,ff,Low voltage power supply current supply by DCDC send by CAN ,18DAF1DA,24,31,1,0,0,A,2220B8,6220B8,ff,Maximum current available by system on low voltage power supply send by CAN ,18DAF1DA,29,31,1,0,0,,2220B9,6220B9,ff,DCDC Fault type from CAN,0:No DCDC default;1:DCDC Fault type 1 DCDC Stopped C Class;2:DCDC Fault type 2 DCDC Stopped D Class;3:DCDC Fault type 3 Unballast;4:DCDC Fault type 4 Safety Barrier Lost;5:DCDC Fault type 5 Alert ,18DAF1DA,29,31,1,0,0,,2220BA,6220BA,ff,DCDC state send by CAN network,0:DCDC initializing status;1:DCDC standby status;2:DCDC operating status;3:DCDC failure status ,18DAF1DA,31,31,1,0,0,,2220BB,6220BB,ff,Request for starter relay 1 (safety),0:Relay Opened;1:Relay Closed ,18DAF1DA,30,31,1,0,0,,2220BD,6220BD,ff,Electrical Energy Management Stop and Start type,0:Vehicle not in stop auto phase;1:Stop Auto phase. Battery 14 V discharge allowed;2:Stop Auto phase. Battery 48 V discharge allowed ,18DAF1DA,24,39,.02,0,2,%,2220BE,6220BE,ff,State of charge of high voltage battery ,18DAF1DA,24,55,1,0,0,,2220C0,6220C0,4ff,DIDs supported in range [$20C1 - $20E0] ,18DAF1DA,31,31,1,0,0,,2220C1,6220C1,ff,DCDC wakeup request.value,0:No DCDC wakeup request;1:DCDC wakeup request ,18DAF1DA,31,31,1,0,0,,2220C3,6220C3,ff,Request of update (concerning Vxx_eng_last_cge_km) following a change of engine,0:No request;1:Request of updating following a change of engine ,18DAF1DA,24,39,1,0,0,hPa,2220C8,6220C8,ff,Gas pressure (Manifold level) ,18DAF1DA,24,47,.00256,0,3,mg,2220C9,6220C9,ff,Injected LPG mass setpoint disrigarding sylinder (wall wetting to be added) ,18DAF1DA,29,31,1,0,0,,2220CA,6220CA,ff,Bench mode to apply default on upstream O2 sensor richness signal for OBD needs ,18DAF1DA,31,31,1,0,0,,2220CB,6220CB,ff,Variable memorized in EEPROM to configure the THP scheduler activation,0:Thermoplungers absent;1:Thermoplungers present ,18DAF1DA,31,31,1,0,0,,2220CC,6220CC,ff,4 of the 5 zones engine learned (01),0:No;1:Yes ,18DAF1DA,31,31,1,0,0,,2220CD,6220CD,ff,Boolean indicating than offset correction is currently on learning,0:No offset on learning;1:Offset on learning ,18DAF1DA,24,31,.002604167,-256,3,,2220CE,6220CE,ff,Mean adaptation factor on injection time for binary sensor ,18DAF1DA,24,31,4,128,0,,2220CF,6220CF,ff,Mean adaptation offset on injection time for binary sensor ,18DAF1DA,24,39,.0000101725,-65536,3,,2220D0,6220D0,ff,Raw adaptation factor on injection time with proportionnal upstream O2 sensor ,18DAF1DA,24,39,.0000030518,32768,3,,2220D1,6220D1,ff,Adaptation raw offset on injection time with proportionnal upstream O2 sensor (Bosch calculation value) ,18DAF1DA,24,39,.001,0,3,,2220D3,6220D3,ff,Factor to correct UEGO signal aging shifting ,18DAF1DA,31,31,1,0,0,,2220D4,6220D4,ff,Indicator of UEGO sensor signal first gain correction achieved when sensor is changed,0:UEGO upstream sensor is changed - first gain correction calculation is requested;1:UEGO upstream sensor - first gain correction has been processed ,18DAF1DA,31,31,1,0,0,,2220D9,6220D9,ff,Boolean for Tank Shut Off Valve Cycles Counter Reset,0:desactivated;1:activated ,18DAF1DA,31,31,1,0,0,,2220DA,6220DA,ff,Boolean for Vaporizer Shut Off Valve Cycles Counter Reset,0:desactivated;1:activated ,18DAF1DA,31,31,1,0,0,,2220DB,6220DB,ff,Boolean Reset LPG Adaptivity,0:desactivated;1:activated ,18DAF1DA,31,31,1,0,0,,2220DC,6220DC,ff,Air flap configuration boolean,0:air flap absent;1:air flap present ,18DAF1DA,31,31,1,0,0,,2220DD,6220DD,ff,Variable for presence of oil heater vapours conf choice,0:absent;1:present ,18DAF1DA,24,39,.1,2730,1,,2220DE,6220DE,ff,Ambient temperature ,18DAF1DA,24,55,1,0,0,,2220E0,6220E0,4ff,DIDs supported in range [$20E1 - $2100] ,18DAF1DA,24,31,1,5,0,,2220E1,6220E1,ff,Next gear position by shift pattern ,18DAF1DA,31,31,1,0,0,,2220E8,6220E8,ff,Maintenance mode status Roller bench mode information,0:Roller bench mode NOT activated;1:Roller bench mode activated ,18DAF1DA,24,39,.05,0,2,%,2220F1,6220F1,ff,Position setpoint of the inlet throttle sent by the monitoring system.value ,18DAF1DA,24,55,1,-2147483648,0,,2220F4,6220F4,1ff,Distance vehicle non resetable calculated by the ECM in decameter ,18DAF1DA,24,39,.00125,0,3,,2220F5,6220F5,ff,Ice powertrain setpoint elaborated from RAW ,18DAF1DA,24,39,.01,32768,2,%,2220F8,6220F8,ff,Final position setpoint for multiways valve.value ,18DAF1DA,24,31,1,0,0,,2220FA,6220FA,ff,Supervisor for thermo management,0:zero flow;1:bypass winter;2:bypass summer;3:heater winter;4:regulation winter;5:regulation summer;6:Stop Key off;7:Choucage ,18DAF1DA,31,31,1,0,0,,2220FB,6220FB,ff,Heater valve flow command.value,0:NO command requested;1:command requested ,18DAF1DA,31,31,1,0,0,,2220FC,6220FC,ff,After sale request to erase main relay opening under current counter,0:NO command requested;1:command requested ,18DAF1DA,24,39,.1,0,1,V,2220FD,6220FD,ff,Inverter side High Voltage Network Voltage ,18DAF1DA,24,39,.1,0,1,V,2220FE,6220FE,ff,High voltage bus Battery side consolidated voltage ,18DAF1DA,24,55,1,0,0,,222100,622100,4ff,DIDs supported in range [$2101 - $2120] ,18DAF1DA,29,31,1,0,0,,222105,622105,ff,OWE - Request of change of geographic zone,1:European zone;2:international zone;3:international + zone;4:zone for future use;5:deactivated ,18DAF1DA,24,55,1.16415321826935E-09,-2147483648,3,%,22211F,62211F,1ff,OWE - Oil soot rate ,18DAF1DA,24,55,1,0,0,,222120,622120,4ff,DIDs supported in range 2121 - 2140 ,18DAF1DA,24,55,1,0,0,,222140,622140,4ff,DIDs supported in range 2141 - 2160 ,18DAF1DA,24,39,1,0,0,,222141,622141,ff,TRZ-Value of beta corr by adapt strategy during half-turn of cyl1and4 for tq computation assoc with the cyl2and3 comb ,18DAF1DA,31,31,1,0,0,,222142,622142,ff,TRZ - the learning trz beta correction is validated,0:not learned;1:learned ,18DAF1DA,24,39,1,0,0,,222143,622143,ff,TRZ-Value of beta corr by adapt strategy during half-turn of cyl2and3 for tq computation assoc with the cyl1and4 comb ,18DAF1DA,24,39,1,0,0,,222144,622144,ff,TRZ - Learning crankshaft defaults half turn counter ,18DAF1DA,24,39,1,0,0,,222145,622145,ff,TRZ adaptive corr for torque calc when cyl1and4 in combustion,filtered beta for cyl1and4 equal to 16degree ad_b1 beta ,18DAF1DA,24,39,1,0,0,,222146,622146,ff,TRZ adaptive corr for torque calc when cyl2and3 in combustion,filtered beta for cyl2and3 equal to 16degree ad_b1 beta ,18DAF1DA,30,31,1,0,0,,222147,622147,ff,TLZ - Status of target adaptive process,0:process NOT done;1:process done- torque correction factor OK;2:process done- but wrong- torque correction factor NOK;3:not used ,18DAF1DA,24,55,1,0,0,,222148,622148,1ff,TLZ - Filtered adaptive value for cyl 1 and 4 in the first speed range ,18DAF1DA,24,55,1,0,0,,222149,622149,1ff,TLZ - Filtered adaptive value for cyl 2 and 3 in the first speed range ,18DAF1DA,24,55,1,0,0,,22214A,62214A,1ff,TLZ - Filtered adaptive value for cyl 1 and 4 in the second speed range ,18DAF1DA,24,55,1,0,0,,22214B,62214B,1ff,TLZ - Filtered adaptive value for cyl 2 and 3 in the second speed range ,18DAF1DA,24,55,1,0,0,,22214C,62214C,1ff,TLZ - Filtered adaptive value for cyl 1 and 4 in the third speed range ,18DAF1DA,24,55,1,0,0,,22214D,62214D,1ff,TLZ - Filtered adaptive value for cyl 2 and 3 in the third speed range ,18DAF1DA,24,55,1,0,0,,22214E,62214E,1ff,TLZ - Filtered adaptive value for cyl 1 and 4 in the 4th speed range ,18DAF1DA,24,55,1,0,0,,22214F,62214F,1ff,TLZ - Filtered adaptive value for cyl 2 and 3 in the 4th speed range ,18DAF1DA,24,55,1,0,0,,222150,622150,1ff,TLZ - Filtered adaptive value for cyl 1 and 4 in the 5th speed range ,18DAF1DA,24,55,1,0,0,,222151,622151,1ff,TLZ - Filtered adaptive value for cyl 2 and 3 in the 5th speed range ,18DAF1DA,24,55,1,0,0,,222152,622152,1ff,TLZ - Filtered adaptive value for cyl 1 and 4 in the 6th speed range ,18DAF1DA,24,55,1,0,0,,222153,622153,1ff,TLZ - Filtered adaptive value for cyl 2 and 3 in the 6th speed range ,18DAF1DA,24,39,1,0,0,,222154,622154,ff,TLZ - TDC counter for slow TLZBETA1 adaptive process ,18DAF1DA,24,39,1,0,0,,222155,622155,ff,TLZ - TDC counter for TLZBETA2 fast adaptive process ,18DAF1DA,29,31,1,0,0,,222156,622156,ff,TLZ - Last achieved adaptive value ,18DAF1DA,24,39,.25,0,1,rpm,222157,622157,ff,TLZ - Maximum engine speed for misfiring detection strategy ,18DAF1DA,24,55,1,0,0,,222158,622158,1ff,TLZ - Filtered adaptive value for cylinders 1 and 4 during slow adaptive process ,18DAF1DA,24,55,1,0,0,,222159,622159,1ff,TLZ - Filtered adaptive value for cylinders 2 and 3 during slow adaptive process ,18DAF1DA,24,39,1,0,0,,22215A,62215A,ff,TLZ - Learning counter for realized half-turn default ,18DAF1DA,31,31,1,0,0,,22215B,62215B,ff,TLZ - Learning half-turn default state,0:not learned;1:learned ,18DAF1DA,24,39,1,32768,0,,22215C,62215C,ff,TLZ - learning filtered value ,18DAF1DA,24,39,1,32768,0,,22215D,62215D,ff,TLZ - TLZ adaptive correction ,18DAF1DA,24,47,.2777778,0,1,m,22215E,62215E,ff,Distance driven since torque meter init ,18DAF1DA,24,55,1,0,0,,222160,622160,4ff,DIDs supported in range 2161 - 2180 ,18DAF1DA,31,31,1,0,0,,222165,622165,ff,TLZ - High speed and fast adaptative crank shaft learning strategy finished,0:Not enabled;1:Enabled ,18DAF1DA,31,31,1,0,0,,222166,622166,ff,External controls safety authorization flag,0:Not enabled;1:Enabled ,18DAF1DA,24,39,.01,0,2,%,222167,622167,ff,Oil pump monitored command.value ,18DAF1DA,24,55,.01,-2147483648,2,km,22216C,62216C,1ff,Distance vehicle non resetable calculated by the ECM ,18DAF1DA,26,26,1,0,0,,222170,622170,ff,CCSL - State of the system causes for normal CCSL deactivation (2nd byte).5,0:no Engine control request for speed limiter abnormal deactivation;1:Engine control request for speed limiter abnormal deactivation ,18DAF1DA,27,27,1,0,0,,222170,622170,ff,CCSL - State of the system causes for normal CCSL deactivation (2nd byte).4,0:no Engine control request for cruise control abnormal deactivation;1:Engine control request for cruise control abnormal deactivation ,18DAF1DA,28,28,1,0,0,,222170,622170,ff,CCSL - State of the system causes for normal CCSL deactivation (2nd byte).3,0:no Change of displayed speed unit during CC/SL activation;1:Change of displayed speed unit during CC/SL activation ,18DAF1DA,29,29,1,0,0,,222170,622170,ff,CCSL - State of the system causes for normal CCSL deactivation (2nd byte).2,0:no AEBS request;1:AEBS request ,18DAF1DA,30,30,1,0,0,,222170,622170,ff,CCSL - State of the system causes for normal CCSL deactivation (2nd byte).1,0:no emergency stop request;1:emergency stop request ,18DAF1DA,31,31,1,0,0,,222170,622170,ff,CCSL - State of the system causes for normal CCSL deactivation (2nd byte).0,0:no vehicle STOP information on the cluster;1:vehicle STOP information on the cluster ,18DAF1DA,24,31,1,0,0,,222172,622172,4ff,Reference software calbration number used by tunning team (VMAP) ,18DAF1DA,31,31,1,0,0,,222174,622174,ff,ACC Force request confirmed from CAN,0:not confirmed;1:confirmed ,18DAF1DA,28,31,1,0,0,,222175,622175,ff,ACC status from CAN,0:ACC status not available;1:ACC off;2:ACC waiting;3:ACC suspended;4:ACC in brake only mode;5:ACC in regulation;6:ACC Driver Override;7:ACC malfunction;8:ACC stop;9:ACC take off ,18DAF1DA,30,31,1,0,0,,222176,622176,ff,Vehicle acceleration state form CAN,0:ACC acceleration status ok;1:ACC max acceleration exceeded;2:ACC max deceleration exceeded ,18DAF1DA,29,31,1,0,0,,222177,622177,ff,Pressure Request status from ACC,0:ACC no brake request;1:ACC brake torque request;2:ACC moderate brake request;3:ACC strong brake request;4:ACC brake city torque request;5:ACC max break request ,18DAF1DA,24,39,2,10000,0,N,222178,622178,ff,Force request from ACC ,18DAF1DA,24,39,2,10000,0,N,222179,622179,ff,Driver force setpoint ,18DAF1DA,31,31,1,0,0,,22217B,62217B,ff,ACC steering wheel switches connection detection. Stored in EEPROM.,0:not present;1:present ,18DAF1DA,31,31,1,0,0,,22217C,62217C,ff,Detect ACC option with security on configuration detection. Stored in EEPROM.,0:not present;1:present ,18DAF1DA,24,31,1,0,0,s,22217D,62217D,ff,Maximum duration of DISTANCE button press ,18DAF1DA,24,31,1,0,0,,22217E,62217E,ff,CCSL - State of the failures which cause irreversible CC safety failure (level 2) ,18DAF1DA,24,31,1,0,0,,22217F,62217F,ff,Carrier for safety failure dignostic for safety monitoring ,18DAF1DA,24,55,1,0,0,,222180,622180,4ff,DIDs supported in range 2181 - 21A0 ,18DAF1DA,24,55,.1,-2147483648,1,km,222181,622181,1ff,Mileage recording ,18DAF1DA,24,39,.01,0,2,km/h,222184,622184,ff,Requested speed setpoint for FSL function ,18DAF1DA,31,31,1,0,0,,222186,622186,ff,Idle speed for LCV accessories activation requested by BCM,0:not activated;1:activated ,18DAF1DA,31,31,1,0,0,,222187,622187,ff,State of the CTP cutoff,0:not activated;1:activated ,18DAF1DA,31,31,1,0,0,,222188,622188,ff,State of the CTP unicing.value,0:not activated;1:activated ,18DAF1DA,29,31,1,0,0,,22218D,62218D,ff,Final PTC level,0:no PTCs activated;1:only PTC 1 activated;2:only PTC 2 actived;3:PTC 1 and 2 activated;4:PTC 2 and 3 activated;5:All PTCs activated (1-2-3) ,18DAF1DA,31,31,1,0,0,,22218E,62218E,ff,PTC freeze request,0:not activated;1:activated ,18DAF1DA,31,31,1,0,0,,22218F,62218F,ff,PTC cut off request,0:not activated;1:activated ,18DAF1DA,24,39,10,0,0,W,222191,622191,ff,Power consumed by PTC ,18DAF1DA,31,31,1,0,0,,222192,622192,ff,PTC cabin fan state,0:not activated;1:activated ,18DAF1DA,31,31,1,0,0,,222195,622195,ff,PTC engine idle speed increase request,0:not activated;1:activated ,18DAF1DA,31,31,1,0,0,,222199,622199,ff,Fuel pump activation state,0:Pump not cut off;1:Pump cut off ,18DAF1DA,24,55,1,0,0,,2221A0,6221A0,4ff,DIDs supported in range 21A1 - 21C0 ,18DAF1DA,31,31,1,0,0,,2221A3,6221A3,ff,Validity of the learned default value,0:not validated;1:validated ,18DAF1DA,24,55,1,0,0,,2221C0,6221C0,4ff,DIDs supported in range 21C1 - 21E0 ,18DAF1DA,24,39,.25,0,1,rpm,2221C6,6221C6,ff,Maximum engine speed for misfiring detection strategy ,18DAF1DA,24,47,1,0,0,km,2221C7,6221C7,ff,Vehicle distance at last succesfull detection test (Fuel level or Vehicle distance) ,18DAF1DA,31,31,1,0,0,,2221C9,6221C9,ff,Feedback main (p1) relay status from BMS by CAN,0:0- Relay Opened;1:1- Relay Closed ,18DAF1DA,31,31,1,0,0,,2221CA,6221CA,ff,Feedback auxiliary relay status from BMS by CAN,0:0- Relay Opened;1:1- Relay Closed ,18DAF1DA,31,31,1,0,0,,2221CB,6221CB,ff,DCDC Activation,0:0- DCDC desactived;1:1- DCDC Activated ,18DAF1DA,24,39,.25,2000,1,A,2221CC,6221CC,ff,High voltage battery Current measured consolidated ,18DAF1DA,24,39,1,0,0,%,2221CD,6221CD,ff,User SOC ,18DAF1DA,30,31,1,0,0,,2221CE,6221CE,ff,Electrical Energy Management DCDC status,0:0- DCDC init state;1:1- DCDC standby state;2:2- DCDC run state;3:3- DCDC fail state ,18DAF1DA,29,31,1,0,0,,2221CF,6221CF,ff,Electric motor inverter request,1:1- Inverter request off;2:2- Inverter request on;3:3- Inverter request decharge;4:4- Inverter request alternator mode;5:5- Inverter request ready to sleep ,18DAF1DA,24,31,1,40,0,,2221D0,6221D0,ff,DCDC temperature ,18DAF1DA,24,39,.01,0,2,V,2221D1,6221D1,ff,Minimum mesured battery cell voltage ,18DAF1DA,30,31,1,0,0,,2221D2,6221D2,ff,State of DCDC Unit for CAN failure detection,0:0- ECU status present;1:1- ECU status absent;2:2- ECU status confirmed absent ,18DAF1DA,24,39,1,32767,0,A,2221D3,6221D3,ff,DCDC Input Current (taken on high voltage network) ,18DAF1DA,30,31,1,0,0,,2221D4,6221D4,ff,ECM Wake Up Sleep Command,0:0- Sleep command Go to Sleep;3:3- Sleep Command Wake Up ,18DAF1DA,24,39,.01,0,2,V,2221D5,6221D5,ff,Maximum mesured battery cell voltage ,18DAF1DA,24,39,.03125,32768,2,N·m,2221D6,6221D6,ff,Effective electric motor (SED) torque setpoint without application of the reduction ratio ,18DAF1DA,24,31,1,40,0,,2221D7,6221D7,ff,High voltage battery maximum temperature ,18DAF1DA,24,31,1,40,0,,2221D8,6221D8,ff,High voltage battery minimum temperature ,18DAF1DA,29,31,1,0,0,,2221D9,6221D9,ff,Consolidated Battery feedback state,1:1- Slow Charge mode High Voltage battery;2:2- Fast Charge mode High Voltage battery;3:3- Init charge mode High Voltage battery;4:4- transitory mode High Voltage battery;5:5- normal Mode High Voltage battery;6:6- quick drop mode High Voltage battery ,18DAF1DA,24,39,.25,2000,1,A,2221DA,6221DA,ff,Inverter 1 side high voltage consolidated Current ,18DAF1DA,24,31,1,40,0,,2221DB,6221DB,ff,Inverter Input Water Temperature ,18DAF1DA,31,31,1,0,0,,2221DC,6221DC,ff,High voltage relay p1 request,0:0- no request;1:1- request ,18DAF1DA,30,31,1,0,0,,2221DD,6221DD,ff,Battery Management System 2 ECU state,0:0- ECU status present;1:1- ECU status absent;2:2- ECU status confirmed absent ,18DAF1DA,29,31,1,0,0,,2221DE,6221DE,ff,Water pump state,0:0- Life beat status;1:1- Stall or unsufficient speed status;2:2- Pump over temperature status;3:3- Pump over temperature warning status;4:4- Internal error over and under voltage status;5:5- Dry run state;6:6- No pump feed back status ,18DAF1DA,24,39,1,32767,0,A,2221DF,6221DF,ff,Low voltage power supply current supply by DCDC ,18DAF1DA,24,55,1,0,0,,2221E0,6221E0,4ff,DIDs supported in range [$21E1 - $2200] ,18DAF1DA,24,55,1,0,0,,222200,622200,4ff,DIDs supported in range 2201 - 2220 ,18DAF1DA,24,39,1,0,0,,222204,622204,ff,Torque structure failure detection ,18DAF1DA,24,39,1,0,0,,222205,622205,ff,Torque structure failure detection. ,18DAF1DA,31,31,1,0,0,,222207,622207,ff,Motor fan failure status on the CAN,0:0- No motor fan failure on the CAN;1:1- Motor fan failure on the CAN ,18DAF1DA,30,31,1,0,0,,22220A,62220A,ff,State of Inverter Unit for CAN failure detection,0:0- ECU status present;1:1- ECU status absent;2:2- ECU status confirmed absent ,18DAF1DA,24,31,1,40,0,,22220B,62220B,ff,Inverter output water temperature ,18DAF1DA,31,31,1,0,0,,22220C,62220C,ff,Alternator mode activation,0:0- No Mode activation;1:1- Mode activation ,18DAF1DA,30,31,1,0,0,,22220D,62220D,ff,HV Connection State,0:0- HV state open;1:1- HV state med;2:2- HV state connected ,18DAF1DA,31,31,1,0,0,,22220E,62220E,ff,High Voltage auxiliary relay request,0:0- no request;1:1- request ,18DAF1DA,30,31,1,0,0,,22220F,62220F,ff,Diag elec state IVLD,0:0- PumpElecDiagStatus CAN message validated absent;1:1- Nominal;2:2- PumpElecDiagStatus CAN message absent ,18DAF1DA,31,31,1,0,0,,222210,622210,ff,PumpElecDiagStatus OC on GND pump power supply,0:0- PumpElecDiagStatus OC on GND pump power supply;1:1- Nominal ,18DAF1DA,31,31,1,0,0,,222211,622211,ff,PumpElecDiagStatus OC on 12V pump power supply,0:0- PumpElecDiagStatus OC on 12V pump power supply;1:1- Nominal ,18DAF1DA,31,31,1,0,0,,222212,622212,ff,PumpElecDiagStatus CC 0V or CC 12V on 12V pump power supply,0:0- PumpElecDiagStatus CC 0V or CC 12V on 12V pump power supply;1:1- Nominal ,18DAF1DA,31,31,1,0,0,,222213,622213,ff,PumpElecDiagStatus CC 12V on GND pump power supply,0:0- PumpElecDiagStatus CC 12V on GND pump power supply;1:1- Nominal ,18DAF1DA,31,31,1,0,0,,222214,622214,ff,PumpElecDiagStatus CC 12V on 12V pump power supply,0:0- PumpElecDiagStatus CC 12V on 12V pump power supply;1:1- Nominal ,18DAF1DA,31,31,1,0,0,,222215,622215,ff,PumpElecDiagStatus OC on PWM,0:0- Open circuit on PWM;1:1- Nominal ,18DAF1DA,31,31,1,0,0,,222216,622216,ff,PumpElecDiagStatus CC 0V on PWM,0:0- PumpElecDiagStatus CC 0V on PWM;1:1- Nominal ,18DAF1DA,31,31,1,0,0,,222217,622217,ff,PumpElecDiagStatus CC 12V on PWM,0:0- PumpElecDiagStatus CC 12V on PWM;1:1- Nominal ,18DAF1DA,24,39,.1,2730,1,,222218,622218,ff,Environmental temperature ,18DAF1DA,24,39,.05,0,2,kW,222219,622219,ff,Available power in discharge ,18DAF1DA,30,31,1,0,0,,22221A,62221A,ff,State of BMS Unit for CAN failure detection,0:0- ECU status present;1:1- ECU status absent;2:2- ECU status confirmed absent ,18DAF1DA,24,39,.1,0,1,%,22221C,62221C,ff,Cooling pump set point ,18DAF1DA,28,31,1,0,0,,22221D,62221D,ff,Electrical motor 1 inverter state,0:0- Power Off Electrical PowerTrain Management;2:2- Inverter state stand by mode;4:4- Power On Electrical PowerTrain Management;5:5- Inverter state alternator mode;6:6- Prepare to sleep ,18DAF1DA,24,31,1,0,0,,22221E,62221E,ff,Emergency engine stop request ,18DAF1DA,24,39,.05,0,2,kW,22221F,62221F,ff,Battery available charge power ,18DAF1DA,24,55,1,0,0,,222220,622220,4ff,DIDs supported in range 2221 - 2240 ,18DAF1DA,31,31,1,0,0,,222221,622221,ff,Brake pedal states validity indicator is in the limp home data status,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222222,622222,ff,Filtered unavailable clutch pedal status information,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222223,622223,ff,Engine control request for cruise control abnormal deactivation,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222224,622224,ff,Engine control request for cruise control system deactivation,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222225,622225,ff,Vehicle speed received on the CAN network not available after a filtering time,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222226,622226,ff,Displayed vehicle speed received on the CAN network not available after a filtering time,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222227,622227,ff,Engine control request for speed limiter abnormal deactivation,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222228,622228,ff,Engine control request for speed limiter system deactivation,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222229,622229,ff,Air conditioning request detection,0:deactivated;1:activated ,18DAF1DA,24,39,.1,0,1,bar,22222A,62222A,ff,Relative air conditioning pressure ,18DAF1DA,31,31,1,0,0,,22222B,62222B,ff,Automatic or manual parking brake detected,0:deactivated;1:activated ,18DAF1DA,30,31,1,0,0,,22222C,62222C,ff,Begin stroke clutch pedal switch for cruise control safety,0:off;1:on;2:no norm ,18DAF1DA,30,31,1,0,0,,22222D,62222D,ff,Begin stroke clutch pedal switch for cruise control,0:off;1:on;2:no norm ,18DAF1DA,30,31,1,0,0,,22222E,62222E,ff,Neutral engaged switch for manual gearbox,0:off;1:on;2:no norm ,18DAF1DA,31,31,1,0,0,,22222F,62222F,ff,Authorization to connect cruise control and speed limiter options,0:Disabled;1:Enabled ,18DAF1DA,24,31,.5,0,1,bar,22223E,62223E,ff,Consolidated braking pressure ,18DAF1DA,24,55,1,0,0,,222240,622240,4ff,DIDs supported in range 2241 - 2260 ,18DAF1DA,31,31,1,0,0,,222248,622248,ff,Immobilizer 2 Failure of coded line.Immobilizer 2 Failure of coded line,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222249,622249,ff,Immobilizer 2 ECM is locked.Immobilizer 2 ECM is locked,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,22224A,62224A,ff,Immobilizer 2 ECM is protected.Immobilizer 2 ECM is protected,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,22224B,62224B,ff,Immobilizer 2 Failure of EEPROM area.Immobilizer 2 Failure of EEPROM area,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,22224C,62224C,ff,Immobilizer 2 Secret key learnt.Immobilizer 2 Secret key learnt,0:deactivated;1:activated ,18DAF1DA,24,39,.01,0,2,%,22224D,62224D,ff,PWM control applied to the driver of the exhaust VVTC solenoid valve.value ,18DAF1DA,24,39,.02,0,2,,222255,622255,ff,Filtered angular position of the exhaust VVTC system ,18DAF1DA,24,39,.1,0,1,V,22225F,62225F,ff,High voltage battery bus after relay voltage ,18DAF1DA,24,55,1,0,0,,222260,622260,4ff,DIDs supported in range 2261 - 2280 ,18DAF1DA,31,31,1,0,0,,222261,622261,ff,Power steering manostat activation,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222262,622262,ff,Activation request solenoid valve of additional fuel tank.value ,18DAF1DA,24,31,.3921569,0,1,%,222263,622263,ff,Activation request pump of additional fuel tank.value ,18DAF1DA,31,31,1,0,0,,222264,622264,ff,Flow water valve command of water system.value ,18DAF1DA,31,31,1,0,0,,222268,622268,ff,High Voltage Battery connection Authorization state,0:0- Not authorized;1:1- Authorized ,18DAF1DA,24,39,.1,0,1,,222269,622269,ff,Inverter setpoint while in alternator mode ,18DAF1DA,31,31,1,0,0,,22226A,62226A,ff,Electronic control unit of battery refuse to sleep,0:0- without;1:1- with ,18DAF1DA,29,31,1,0,0,,22226B,62226B,ff,High voltage battery state request,0:0- No mode request;1:1- Slow charge request;2:2- Fast Charge request;3:3- Normal mode request;4:4- Quick drop request ,18DAF1DA,31,31,1,0,0,,22226C,62226C,ff,Alternator mode initialisation,0:0- No phase initialisation;1:1- Phase initialisation ,18DAF1DA,24,39,.25,2000,1,A,22226D,62226D,ff,High Voltage Battery Current calculated ,18DAF1DA,24,31,1,0,0,,22226E,62226E,ff,Deconnection fail counter est ,18DAF1DA,24,55,1,0,0,,222280,622280,4ff,DIDs supported in range 2281 - 22A0 ,18DAF1DA,24,39,1,0,0,km,222298,622298,ff,Oil potential kilometers calculated ,18DAF1DA,24,55,1,0,0,km,222299,622299,1ff,Calculated oil potential in kilometers (can be negative) ,18DAF1DA,24,55,1,0,0,,2222A0,6222A0,4ff,DIDs supported in range 22A1 - 22C0 ,18DAF1DA,24,39,1,0,0,,2222AC,6222AC,ff,Cause of the failsafe reaction triggered by level 2 monitoring. ,18DAF1DA,24,39,1,0,0,,2222AD,6222AD,ff,First context data for level 2 monitoring function failure. ,18DAF1DA,24,39,1,0,0,,2222AE,6222AE,ff,Second context data for level 2 monitoring function failure. ,18DAF1DA,24,39,1,0,0,,2222AF,6222AF,ff,Third context data for level 2 monitoring function failure. ,18DAF1DA,24,39,1,0,0,,2222B0,6222B0,ff,Fourth context data for level 2 monitoring function failure. ,18DAF1DA,28,31,1,0,0,,2222B1,6222B1,ff,State of vehicle speed frame (for safety),0:diag level 1 NOK;1:diag OK;2:frame absent;5:Checksum/CRC failure;6:clock failure ,18DAF1DA,28,31,1,0,0,,2222B8,6222B8,ff,Anticipated coupler state,1:closed;2:sliding;8:open ,18DAF1DA,31,31,1,0,0,,2222BC,6222BC,ff,Dynamic mode request received on the CAN,0:No dynamic mode requested;1:Dynamic mode requested ,18DAF1DA,31,31,1,0,0,,2222BD,6222BD,ff,Eco mode request received on the CAN,0:No Eco mode requested;1:Eco mode requested ,18DAF1DA,29,31,1,0,0,,2222BE,6222BE,ff,Drive mode received on the CAN,0:Normal drive mode request;1:Eco mode request;2:Dynamic mode request;3:Race mode request;4:Invalid drive mode request ,18DAF1DA,24,39,1,0,0,mV,2222BF,6222BF,ff,Power supply voltage raw acquisition of cylinder pressure sensor ,18DAF1DA,24,55,1,0,0,,222400,622400,4ff,DIDs supported in range 2401 - 2420 ,18DAF1DA,24,39,.01,0,2,%,222403,622403,ff,Boost pressure PWM command (diesel).value ,18DAF1DA,24,39,.0488,32768,2,%,222405,622405,ff,Inlet throttle position setpoint.value ,18DAF1DA,24,39,.01,32768,2,%,222406,622406,ff,Inlet throttle PWM command ,18DAF1DA,24,39,.01,32768,2,%,222408,622408,ff,EGR valve position setpoint.value ,18DAF1DA,24,39,.1,2730,1,,22240D,62240D,ff,Intake air temperature ,18DAF1DA,24,39,.05,0,2,%,222414,622414,ff,Throttle valve position setpoint.value ,18DAF1DA,24,55,1,0,0,,222420,622420,4ff,DIDs supported in range 2421 - 2440 ,18DAF1DA,24,39,.05,0,2,kg/h,222422,622422,ff,Amount of air pumped into cylinder ,18DAF1DA,24,39,.2,32768,1,mV,22243A,62243A,ff,Temperature before turbine sensor voltage ,18DAF1DA,24,55,1,0,0,,222440,622440,4ff,DIDs supported in range 2441 - 2460 ,18DAF1DA,24,39,1,0,0,mbar,222448,622448,ff,Pressure before turbine ,18DAF1DA,24,39,1,0,0,mV,222449,622449,ff,Catalyst exhaust gas upstream oxygen sensor voltage ,18DAF1DA,24,31,.3921569,0,1,%,22244B,62244B,ff,Catalyst exhaust gas upstream oxygen resistance heater PWM command.value ,18DAF1DA,24,31,.3921569,0,1,%,22244C,62244C,ff,Catalyst exhaust gas downstream oxygen resistance heater PWM command.value ,18DAF1DA,24,39,.05,0,2,%,222457,622457,ff,Throttle valve offset - min position - track 1 ,18DAF1DA,24,39,.05,0,2,%,222458,622458,ff,Throttle valve offset - min position - track 2 ,18DAF1DA,24,39,.05,0,2,%,222459,622459,ff,Throttle valve offset - limp home position - track 1 ,18DAF1DA,24,39,.05,0,2,%,22245A,62245A,ff,Throttle valve offset - limp home position - track 2 ,18DAF1DA,24,39,.05,0,2,%,22245B,62245B,ff,Throttle valve offset - max position - track 1 ,18DAF1DA,24,39,.05,0,2,%,22245C,62245C,ff,Throttle valve offset - max position - track 2 ,18DAF1DA,31,31,1,0,0,,22245D,62245D,ff,Throttle valve offset - first learnings successfully done,0:no;1:yes ,18DAF1DA,24,39,.00006103516,0,3,,22245E,62245E,ff,Engine air load ,18DAF1DA,24,55,1,0,0,,222460,622460,4ff,DIDs supported in range 2461 - 2480 ,18DAF1DA,24,39,.01,32768,2,%,22246E,62246E,ff,EGR cooling bypass PWM command.value ,18DAF1DA,24,47,.01,8388608,2,mV,22246F,62246F,ff,Throttle valve voltage command ,18DAF1DA,24,55,1,0,0,,222480,622480,4ff,DIDs supported in range 2481 - 24A0 ,18DAF1DA,30,31,1,0,0,,222494,622494,ff,Result of the catalyst exhaust gas upstream oxygen sensor diagnostic after-sales routine,0:initial value;1:intermediate;2:good;3:bad ,18DAF1DA,24,55,1,0,0,,2224A0,6224A0,4ff,DIDs supported in range 24A1 - 24C0 ,18DAF1DA,24,55,1,0,0,,2224C0,6224C0,4ff,DIDs supported in range 24C1 - 24E0 ,18DAF1DA,24,39,1,0,0,,2224C4,6224C4,ff,Time expected to switch on the heating of the upstream sensor ,18DAF1DA,24,39,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.16 ,18DAF1DA,40,55,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.15 ,18DAF1DA,56,71,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.14 ,18DAF1DA,72,87,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.13 ,18DAF1DA,88,103,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.12 ,18DAF1DA,104,119,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.11 ,18DAF1DA,120,135,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.10 ,18DAF1DA,136,151,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.09 ,18DAF1DA,152,167,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.08 ,18DAF1DA,168,183,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.07 ,18DAF1DA,184,199,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.06 ,18DAF1DA,200,215,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.05 ,18DAF1DA,216,231,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.04 ,18DAF1DA,232,247,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.03 ,18DAF1DA,248,263,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.02 ,18DAF1DA,264,279,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.01 ,18DAF1DA,280,295,.0000000596,0,3,,2224C5,6224C5,ff,Variable table for throttle area curve.00 ,18DAF1DA,24,39,.05,0,2,%,2224C9,6224C9,ff,Limp home position of the inlet throttle ,18DAF1DA,24,39,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).16 ,18DAF1DA,40,55,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).15 ,18DAF1DA,56,71,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).14 ,18DAF1DA,72,87,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).13 ,18DAF1DA,88,103,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).12 ,18DAF1DA,104,119,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).11 ,18DAF1DA,120,135,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).10 ,18DAF1DA,136,151,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).09 ,18DAF1DA,152,167,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).08 ,18DAF1DA,168,183,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).07 ,18DAF1DA,184,199,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).06 ,18DAF1DA,200,215,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).05 ,18DAF1DA,216,231,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).04 ,18DAF1DA,232,247,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).03 ,18DAF1DA,248,263,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).02 ,18DAF1DA,264,279,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).01 ,18DAF1DA,280,295,.0000000596,0,3,,2224DD,6224DD,ff,Variable table for throttle area curve (01).00 ,18DAF1DA,24,55,1,0,0,,2224E0,6224E0,4ff,DIDs supported in range [$24E1 - $2500] ,18DAF1DA,24,31,.3921569,0,1,%,2224E5,6224E5,ff,Boost pressure PWM command (gasoline).value ,18DAF1DA,24,55,1,0,0,,222500,622500,4ff,DIDs supported in range 2501 - 2520 ,18DAF1DA,31,31,1,0,0,,222501,622501,ff,End of the first learning phase, after first key on,0:false;1:true ,18DAF1DA,24,39,1,0,0,,222502,622502,ff,Offset Deviation detected failure local counter ,18DAF1DA,31,31,1,0,0,,222503,622503,ff,Request to relearn on next power latch phase,0:not learned;1:learned ,18DAF1DA,24,39,1,0,0,,222504,622504,ff,Springs check detected failure local counter ,18DAF1DA,24,39,1,0,0,,222505,622505,ff,First Offset detected failure local counter ,18DAF1DA,30,31,1,0,0,,222507,622507,ff,Heater strategy indicator,0:cold sensor;1:start strategy applied;2:restart ,18DAF1DA,24,31,.392156863,0,1,%,222512,622512,ff,PWM value for the sensor heater.value ,18DAF1DA,31,31,1,0,0,,22251A,62251A,ff,Upstream lambda sensor is heated.,0:Sensor Cold;1:Sensor Hot ,18DAF1DA,24,39,.1,2730,1,,22251B,62251B,ff,Mean value of internal upstream proportional sensor temperature in a window ,18DAF1DA,24,39,.1,2730,1,,22251D,62251D,ff,Internal sensor temperature ,18DAF1DA,24,39,.0000305176,0,3,,22251E,62251E,ff,Raw UEGO Air Fuel ratio measurement ,18DAF1DA,31,31,1,0,0,,22251F,62251F,ff,Vehicle speed threshold detected,0:Vehicle speed threshold not detected;1:Vehicle speed threshold detected ,18DAF1DA,24,55,1,0,0,,222520,622520,4ff,DIDs supported in range 2521 - 2540 ,18DAF1DA,24,39,.01,0,2,%,222524,622524,ff,Pwm command for inlet throttle ,18DAF1DA,24,39,1,0,0,hPa,222533,622533,ff,Command of manifold pressure calculated by the torque structure ,18DAF1DA,24,39,.05,0,2,%,222536,622536,ff,First value of closed thrust position of the inlet throttle ,18DAF1DA,24,39,.001,0,3,,22253E,62253E,ff,Displayed vehicle speed factor ,18DAF1DA,24,31,.1,0,1,km/h,22253F,62253F,ff,Displayed vehicle speed offset ,18DAF1DA,24,55,1,0,0,,222540,622540,4ff,DIDs supported in range 2541 - 2560 ,18DAF1DA,24,55,1,0,0,,222560,622560,4ff,DIDs supported in range 2561 - 2580 ,18DAF1DA,24,39,.0488,32768,2,%,22256A,62256A,ff,Exhaust Air Flap - ET throttle postion setpoint used by the monitoring system.value ,18DAF1DA,24,39,.0000101725,32768,3,,222573,622573,ff,Double loop offset ,18DAF1DA,24,55,1,0,0,,222580,622580,4ff,DIDs supported in range 2581 - 25A0 ,18DAF1DA,24,39,.0488,32768,2,%,22259A,62259A,ff,Low Pressure EMTV - EGR BP valve control setpoint used by the monitoring system.value ,18DAF1DA,24,39,.0488,34817,2,%,22259C,62259C,ff,Swirl Flap - Swirl throttle postion setpoint used by the monitoring system.value ,18DAF1DA,24,55,1,0,0,,2225A0,6225A0,4ff,DIDs supported in range 25A1 - 25C0 ,18DAF1DA,24,47,1,0,0,min,2225B1,6225B1,ff,Absolute time since the first ignition ,18DAF1DA,30,31,1,0,0,,2225B2,6225B2,ff,Drive mode switch status detection,0:Nominal mode constante value;1:Economic mode constante value;2:Dynamic mode constante value ,18DAF1DA,24,39,.001,0,3,bar,2225B9,6225B9,ff,Oil pressure mesured ,18DAF1DA,24,31,1,50,0,%,2225BD,6225BD,ff,Road slope value ,18DAF1DA,31,31,1,0,0,,2225BF,6225BF,ff,Request for starter relay 1.value,0:Opened;1:Closed ,18DAF1DA,24,55,1,0,0,,2225C0,6225C0,4ff,DIDs supported in range 25C1 - 25E0 ,18DAF1DA,31,31,1,0,0,,2225D6,6225D6,ff,Circulation request of the coolant for engine,0:No Cooling request;1:Cooling request ,18DAF1DA,24,55,1,0,0,,2225E0,6225E0,4ff,DIDs supported in range 25E1 - 2600 ,18DAF1DA,24,55,1,0,0,,222600,622600,4ff,DIDs supported in range 2601 - 2620 ,18DAF1DA,24,55,1,0,0,,222620,622620,4ff,DIDs supported in range 2621 - 2640 ,18DAF1DA,24,55,1,0,0,,222800,622800,4ff,DIDs supported in range 2801 - 2820 ,18DAF1DA,24,47,4,0,0,,222804,622804,ff,Main injection period ,18DAF1DA,24,31,.375,63,1,,222807,622807,ff,Ignition advance ,18DAF1DA,31,31,1,0,0,,22281B,62281B,ff,Fuel low level,0:ok;1:low ,18DAF1DA,31,31,1,0,0,,22281C,62281C,ff,Gas pump command state.value,0:OFF;1:ON ,18DAF1DA,24,55,1,0,0,,222820,622820,4ff,DIDs supported in range 2821 - 2840 ,18DAF1DA,24,39,.001525902,0,3,%,222822,622822,ff,Canister drain valve command.value ,18DAF1DA,24,39,.01,0,2,%,222826,622826,ff,5th injector PWM command.value ,18DAF1DA,24,39,.0000183108,-21845,3,,22283F,62283F,ff,Fuel System diagnosis criterion (global deviation of richness closed loop control) ,18DAF1DA,24,55,1,0,0,,222840,622840,4ff,DIDs supported in range 2841 - 2860 ,18DAF1DA,24,39,1,0,0,,222841,622841,ff,Misfire counter - cylinder 1 ,18DAF1DA,24,39,1,0,0,,222842,622842,ff,Misfire counter - cylinder 2 ,18DAF1DA,24,39,1,0,0,,222843,622843,ff,Misfire counter - cylinder 3 ,18DAF1DA,24,39,1,0,0,,222844,622844,ff,Misfire counter - cylinder 4 ,18DAF1DA,24,39,1,0,0,,222847,622847,ff,Knock counter detection - cylinder 1 ,18DAF1DA,24,39,1,0,0,,222848,622848,ff,Knock counter detection - cylinder 2 ,18DAF1DA,24,39,1,0,0,,222849,622849,ff,Knock counter detection - cylinder 3 ,18DAF1DA,24,39,1,0,0,,22284A,62284A,ff,Knock counter detection - cylinder 4 ,18DAF1DA,24,31,1,0,0,,22284D,62284D,ff,Mean knock noise ,18DAF1DA,24,31,1,0,0,,22284E,62284E,ff,Richness regulation status,1:starting mode;2:open loop mode;4:full load mode;8:before closed loop mode;16:closed loop mode;32:Richness state machine is in obd mode ,18DAF1DA,24,39,.0000101725,-65535,3,%,222850,622850,ff,Richness regulation correction ,18DAF1DA,24,31,.002604167,-256,3,,222851,622851,ff,Richness adaptation factor ,18DAF1DA,24,31,4,128,0,,222852,622852,ff,Richness adaptation offset ,18DAF1DA,24,47,4,0,0,,222854,622854,ff,Injection time - cylinder 1 - 1st injection ,18DAF1DA,24,47,4,0,0,,222855,622855,ff,Injection time - cylinder 2 - 1st injection ,18DAF1DA,24,47,4,0,0,,222856,622856,ff,Injection time - cylinder 3 - 1st injection ,18DAF1DA,24,47,4,0,0,,222857,622857,ff,Injection time - cylinder 4 - 1st injection ,18DAF1DA,24,31,3,0,0,,22285A,62285A,ff,Opening angle - cylinder 1 - 1st injection ,18DAF1DA,24,31,3,0,0,,22285B,62285B,ff,Opening angle - cylinder 2 - 1st injection ,18DAF1DA,24,31,3,0,0,,22285C,62285C,ff,Opening angle - cylinder 3 - 1st injection ,18DAF1DA,24,31,3,0,0,,22285D,62285D,ff,Opening angle - cylinder 4- 1st injection ,18DAF1DA,24,31,.375,0,1,,22285E,62285E,ff,Maximum ignition timing correction of the slow loop for all the cylinders ,18DAF1DA,24,31,4,128,0,,22285F,62285F,ff,Adaptation offset on injection time ,18DAF1DA,24,55,1,0,0,,222860,622860,4ff,DIDs supported in range 2861 - 2880 ,18DAF1DA,31,31,1,0,0,,222861,622861,ff,Gas pump priming state,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222862,622862,ff,Gas pump priming done,0:no;1:yes ,18DAF1DA,24,31,1,0,0,,222863,622863,ff,Minimum gap compared to the initial linear.04 ,18DAF1DA,32,39,1,0,0,,222863,622863,ff,Minimum gap compared to the initial linear.03 ,18DAF1DA,40,47,1,0,0,,222863,622863,ff,Minimum gap compared to the initial linear.02 ,18DAF1DA,48,55,1,0,0,,222863,622863,ff,Minimum gap compared to the initial linear.01 ,18DAF1DA,56,63,1,0,0,,222863,622863,ff,Minimum gap compared to the initial linear.00 ,18DAF1DA,24,31,1,0,0,,222864,622864,ff,Maximum gap compared to the initial linear.04 ,18DAF1DA,32,39,1,0,0,,222864,622864,ff,Maximum gap compared to the initial linear.03 ,18DAF1DA,40,47,1,0,0,,222864,622864,ff,Maximum gap compared to the initial linear.02 ,18DAF1DA,48,55,1,0,0,,222864,622864,ff,Maximum gap compared to the initial linear.01 ,18DAF1DA,56,63,1,0,0,,222864,622864,ff,Maximum gap compared to the initial linear.00 ,18DAF1DA,31,31,1,0,0,,222865,622865,ff,Boolean for information at least one learning in the zone.04,0:no learning in the zone;1:at least one learning ,18DAF1DA,39,39,1,0,0,,222865,622865,ff,Boolean for information at least one learning in the zone.03,0:no learning in the zone;1:at least one learning ,18DAF1DA,47,47,1,0,0,,222865,622865,ff,Boolean for information at least one learning in the zone.02,0:no learning in the zone;1:at least one learning ,18DAF1DA,55,55,1,0,0,,222865,622865,ff,Boolean for information at least one learning in the zone.01,0:no learning in the zone;1:at least one learning ,18DAF1DA,63,63,1,0,0,,222865,622865,ff,Boolean for information at least one learning in the zone.00,0:no learning in the zone;1:at least one learning ,18DAF1DA,31,31,1,0,0,,222866,622866,ff,4 of the 5 zones engine learned,0:no;1:yes ,18DAF1DA,24,39,1,0,0,,222867,622867,ff,Learning counter to adaptive least square method ,18DAF1DA,24,47,4,0,0,,222869,622869,ff,Injection time - cylinder 1 - 2nd injection ,18DAF1DA,24,47,4,0,0,,22286A,62286A,ff,Injection time - cylinder 2 - 2nd injection ,18DAF1DA,24,47,4,0,0,,22286B,62286B,ff,Injection time - cylinder 3 - 2nd injection ,18DAF1DA,24,47,4,0,0,,22286C,62286C,ff,Injection time - cylinder 4 - 2nd injection ,18DAF1DA,24,31,3,0,0,,22286D,62286D,ff,Opening angle - cylinder 1 - 2nd injection ,18DAF1DA,24,31,3,0,0,,22286E,62286E,ff,Opening angle - cylinder 2 - 2nd injection ,18DAF1DA,24,31,3,0,0,,22286F,62286F,ff,Opening angle - cylinder 3 - 2nd injection ,18DAF1DA,24,31,3,0,0,,222870,622870,ff,Opening angle - cylinder 4 - 2nd injection ,18DAF1DA,24,31,.3921569,0,1,%,222871,622871,ff,Piloted thermostat PWM command.value ,18DAF1DA,24,39,.001,0,3,,222872,622872,ff,Corrective factor depending on exotic fuel quantity. For injection time ,18DAF1DA,24,39,.00001017253,-65535,3,,222873,622873,ff,Corrected average ALFACL for memorized fuel system diagnostic ,18DAF1DA,24,39,1,0,0,,222874,622874,ff,Misfire counter ,18DAF1DA,24,24,1,0,0,,222875,622875,ff,External controls denial status flag.7,0:Temperature before turbine correcte;1:Temperature before turbine too high ,18DAF1DA,25,25,1,0,0,,222875,622875,ff,External controls denial status flag.6,0:Pression turbo correcte;1:Turbocharger/Manifold overpressure ,18DAF1DA,26,26,1,0,0,,222875,622875,ff,External controls denial status flag.5,0:Normal Engine Speed;1:Engine overspeed ,18DAF1DA,27,27,1,0,0,,222875,622875,ff,External controls denial status flag.4,0:Stop and Start not ON;1:Stop and Start not OFF ,18DAF1DA,28,28,1,0,0,,222875,622875,ff,External controls denial status flag.3,0:Not null vehicle speed;1:Unavailable vehicle speed ,18DAF1DA,29,29,1,0,0,,222875,622875,ff,External controls denial status flag.2,0:Accelerator pedal Not presed;1:Pressed accelerator pedal ,18DAF1DA,30,30,1,0,0,,222875,622875,ff,External controls denial status flag.1,0:Ignition in ON position;1:Ignition in OFF position ,18DAF1DA,31,31,1,0,0,,222875,622875,ff,External controls denial status flag.0,0:MGB in neutral position OR other kind of transmission in park or in neutral position;1:BVA/BVR en position autre que N ou P ,18DAF1DA,32,32,1,0,0,,222875,622875,ff,External controls denial status flag.15,0:-;1:reserved fot futur use ,18DAF1DA,33,33,1,0,0,,222875,622875,ff,External controls denial status flag.14,0:-;1:reserved fot futur use ,18DAF1DA,34,34,1,0,0,,222875,622875,ff,External controls denial status flag.13,0:-;1:reserved fot futur use ,18DAF1DA,35,35,1,0,0,,222875,622875,ff,External controls denial status flag.12,0:-;1:reserved fot futur use ,18DAF1DA,36,36,1,0,0,,222875,622875,ff,External controls denial status flag.11,0:brake pedal not pressed;1:brake pedal pressed ,18DAF1DA,37,37,1,0,0,,222875,622875,ff,External controls denial status flag.10,0:Normal coolant temperature;1:Excessive coolant temperature ,18DAF1DA,38,38,1,0,0,,222875,622875,ff,External controls denial status flag.9,0:Normal Manifold pressure;1:Manifold overpressure ,18DAF1DA,39,39,1,0,0,,222875,622875,ff,External controls denial status flag.8,0:pression rail correcte;1:Excessive rail pressure ,18DAF1DA,31,31,1,0,0,,222878,622878,ff,5th injector solenoid valve command.value,0:deactivated;1:activated ,18DAF1DA,24,39,.001525902,0,3,%,22287B,62287B,ff,Final alcohol adaptive ,18DAF1DA,24,31,1,0,0,,22287C,62287C,ff,Current value of the counter of slow alcohol adaptive computing phases ,18DAF1DA,24,31,1,0,0,,22287F,62287F,ff,Memorized variable of the fuel level ,18DAF1DA,24,55,1,0,0,,222880,622880,4ff,DIDs supported in range 2881 - 28A0 ,18DAF1DA,24,39,.001525902,0,3,%,222881,622881,ff,Alcohol rate for the after sell ,18DAF1DA,31,31,1,0,0,,222882,622882,ff,State of the fuel pump relay control.value,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222884,622884,ff,Minimum level of the additional fuel tank detected,0:non detected;1:detected ,18DAF1DA,24,39,.01,0,2,%,222887,622887,ff,PWM of fuel pump actuator.value ,18DAF1DA,24,31,.392156863,0,1,,222888,622888,ff,PCU pwm feedback ,18DAF1DA,24,39,1,32640,0,,22288D,62288D,ff,Minimum gap compared to the initial_linear.00 ,18DAF1DA,40,55,1,32640,0,,22288D,62288D,ff,Minimum gap compared to the initial_linear.01 ,18DAF1DA,56,71,1,32640,0,,22288D,62288D,ff,Minimum gap compared to the initial_linear.02 ,18DAF1DA,72,87,1,32640,0,,22288D,62288D,ff,Minimum gap compared to the initial_linear.03 ,18DAF1DA,88,103,1,32640,0,,22288D,62288D,ff,Minimum gap compared to the initial_linear.04 ,18DAF1DA,24,39,1,32640,0,,22288E,62288E,ff,Maximum gap compared to the initial_linear.00 ,18DAF1DA,40,55,1,32640,0,,22288E,62288E,ff,Maximum gap compared to the initial_linear.01 ,18DAF1DA,56,71,1,32640,0,,22288E,62288E,ff,Maximum gap compared to the initial_linear.02 ,18DAF1DA,72,87,1,32640,0,,22288E,62288E,ff,Maximum gap compared to the initial_linear.03 ,18DAF1DA,88,103,1,32640,0,,22288E,62288E,ff,Maximum gap compared to the initial_linear.04 ,18DAF1DA,31,31,1,0,0,,22288F,62288F,ff,Activation request of mastervac factory diagnostic sequence (at first power supply of ECU),0:no request;1:request ,18DAF1DA,31,31,1,0,0,,222891,622891,ff,Mastervac vacuum pump activation request,0:no activation request;1:activation request ,18DAF1DA,24,31,5,0,0,kPa,222893,622893,ff,Mastervac pressure received on CAN ,18DAF1DA,31,31,1,0,0,,222897,622897,ff,Turbo water pump configuration boolean,0:Turbo water pump absent;1:Turbo water pump present ,18DAF1DA,24,55,1,0,0,,2228A0,6228A0,4ff,DIDs supported in range 28A1 - 28C0 ,18DAF1DA,24,47,.00256,0,3,mg,2228A3,6228A3,ff,Mass to be injected on cylinder 1 on pulse 1 of injection ,18DAF1DA,24,47,.00256,0,3,mg,2228A4,6228A4,ff,Mass to be injected on cylinder 1 on pulse 2 of injection ,18DAF1DA,24,47,.00256,0,3,mg,2228A5,6228A5,ff,Mass to be injected on cylinder 2 on pulse 1 of injection ,18DAF1DA,24,47,.00256,0,3,mg,2228A6,6228A6,ff,Mass to be injected on cylinder 2 on pulse 2 of injection ,18DAF1DA,24,47,.00256,0,3,mg,2228A7,6228A7,ff,Mass to be injected on cylinder 3 on pulse 1 of injection ,18DAF1DA,24,47,.00256,0,3,mg,2228A8,6228A8,ff,Mass to be injected on cylinder 3 on pulse 2 of injection ,18DAF1DA,24,47,.00256,0,3,mg,2228A9,6228A9,ff,Mass to be injected on cylinder 4 on pulse 1 of injection ,18DAF1DA,24,47,.00256,0,3,mg,2228AA,6228AA,ff,Mass to be injected on cylinder 4 on pulse 2 of injection ,18DAF1DA,31,31,1,0,0,,2228AB,6228AB,ff,Gasoline to LPG transition,0:No transition;1:Transition ,18DAF1DA,31,31,1,0,0,,2228AC,6228AC,ff,Gasoline mode,0:LPG mode;1:Gasoline mode ,18DAF1DA,31,31,1,0,0,,2228AD,6228AD,ff,LPG to Gasoline transition,0:No transition;1:Transition ,18DAF1DA,31,31,1,0,0,,2228AE,6228AE,ff,LPG mode,0:Gasoline mode;1:LPG mode ,18DAF1DA,31,31,1,0,0,,2228AF,6228AF,ff,LPG Fuel low level,0:No low level;1:Low level ,18DAF1DA,31,31,1,0,0,,2228B0,6228B0,ff,LPG Switch Position,0:Switch on Gasoline mode;1:Switch on LPG mode ,18DAF1DA,24,39,.1,2730,1,,2228B1,6228B1,ff,Gas temperature (manifold level) ,18DAF1DA,24,39,.1,0,1,bar,2228BD,6228BD,ff,GDI - Fuel Rail Pressure ,18DAF1DA,24,31,.002604167,-256,3,,2228BF,6228BF,ff,Long Term Fuel Trim - Bank 1 ,18DAF1DA,24,55,1,0,0,,2228C0,6228C0,4ff,DIDs supported in range 28C1 - 28E0 ,18DAF1DA,24,31,1,0,0,,2228C1,6228C1,ff,Indicator relative to vehicle acceleration for economical scoring ,18DAF1DA,24,31,1,0,0,,2228C2,6228C2,ff,Indicator relative to anticipation for economical scoring ,18DAF1DA,24,31,1,0,0,,2228C3,6228C3,ff,Indicator relative to GSI respect for economical scoring ,18DAF1DA,24,31,1,0,0,,2228C4,6228C4,ff,Indicator of economical monitoring ,18DAF1DA,24,39,.0000305175,0,3,,2228C5,6228C5,ff,A/F Ratio ,18DAF1DA,24,39,.08192,0,2,,2228C6,6228C6,ff,Global injected fuel mass request ,18DAF1DA,24,31,.392156863,0,1,%,2228C7,6228C7,ff,Air flaps PWM command.value ,18DAF1DA,31,31,1,0,0,,2228D4,6228D4,ff,DMS order (Normal, sport),0:Normal mode;1:Sport mode ,18DAF1DA,30,31,1,0,0,,2228D6,6228D6,ff,RS mode request (Normal, sport or Race),0:Normal mode;1:Sport mode;2:Race mode ,18DAF1DA,30,31,1,0,0,,2228DA,6228DA,ff,Wire begin high clutch contactor state,0:Contactor is not used (normal permanent state);1:Contactor is used (non permanent state);2:There is no contactor ,18DAF1DA,24,39,.01,0,2,V,2228DC,6228DC,ff,Alternator voltage set-point ,18DAF1DA,24,39,.01,0,2,V,2228DD,6228DD,ff,After-sale alternator voltage set-point ,18DAF1DA,24,31,.05,0,2,A,2228DF,6228DF,ff,Filtered alternator rotor current ,18DAF1DA,24,55,1,0,0,,2228E0,6228E0,4ff,DIDs supported in range [$28E1 - $2900] ,18DAF1DA,24,31,.392156863,0,1,%,2228E1,6228E1,ff,Alternator_load ,18DAF1DA,24,39,.01,0,2,V,2228EF,6228EF,ff,Reference battery voltage not saturated ,18DAF1DA,24,39,1,0,0,mV,2228F4,6228F4,ff,Raw value of accelerator pedal potentiometer, track 1, before ECU reset ,18DAF1DA,24,39,.03125,0,2,N·m,2228F5,6228F5,ff,Estimated torque at level 2 monitoring function, before ECU reset. ,18DAF1DA,24,31,32,0,0,rpm,2228F6,6228F6,ff,Engine speed before ECU reset. ,18DAF1DA,24,39,1,0,0,,2228F7,6228F7,ff,Error code identifying the type of incoherence between applicative functions(lvl1) and monitoring function(lvl2) ,18DAF1DA,24,39,.03125,0,2,N·m,2228F8,6228F8,ff,Admissible torque at level 2 monitoring function, before ECU reset. ,18DAF1DA,24,55,1,0,0,,222900,622900,4ff,DIDs supported in range [$2901 - $2920] ,18DAF1DA,31,31,1,0,0,,222901,622901,ff,EGR water pump 1 command.value,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222902,622902,ff,EGR water pump 2 command.value,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,22291C,62291C,ff,ADOC configuration,0:ADOC strategy deactivated;1:ADOC strategy activated ,18DAF1DA,29,31,1,0,0,,22291D,62291D,ff,Fuel ignition advance state,0:High RON level;1:Middle high RON level;2:Midddle low RON level;3:Low RON level ,18DAF1DA,24,39,1,0,0,,22291E,62291E,ff,State counter value for each RON level.3 ,18DAF1DA,40,55,1,0,0,,22291E,62291E,ff,State counter value for each RON level.2 ,18DAF1DA,56,71,1,0,0,,22291E,62291E,ff,State counter value for each RON level.1 ,18DAF1DA,72,87,1,0,0,,22291E,62291E,ff,State counter value for each RON level.0 ,18DAF1DA,24,55,1,0,0,,222920,622920,4ff,DIDs supported in range [$2921 - $2940] ,18DAF1DA,31,31,1,0,0,,222921,622921,ff,FAN 1 activation.value,0:FAN 1 activation no requested;1:FAN 1 activation requested ,18DAF1DA,31,31,1,0,0,,222922,622922,ff,FAN 2 activation.value,0:FAN 2 activation no requested;1:FAN 2 activation requested ,18DAF1DA,31,31,1,0,0,,222923,622923,ff,Mux Network configuration detection: AIRBAG status,0:without;1:with ,18DAF1DA,24,31,.392156863,0,1,%,222927,622927,ff,Motor driven fan setpoint.value ,18DAF1DA,24,31,1,0,0,,222928,622928,ff,Functionnal state of the vehicle with Stop and Start system,0:Stop and Start management not active;10:Engine running- Stop and Start management active;15:Stop and Start stop request received- engine still running;20:Engine stopping- engine relaunch still possible;22:Engine stopping- too late for engine relaunch;23:Engine ready for reflex start;24:Engine stalled;26:Engine stopped- restart expected soon;28:Engine stalled without stop auto;30:Engine relaunch;32:Stop and start failure;34:Torque estimated for start;36:Idle start;38:Take-off start;40:Engine restart ,18DAF1DA,31,31,1,0,0,,22292A,62292A,ff,Activation ICR request.value,0:no request;1:request ,18DAF1DA,31,31,1,0,0,,22292B,62292B,ff,Activation voltage stabilizer request.value,0:no request;1:request ,18DAF1DA,31,31,1,0,0,,222934,622934,ff,Boolean indicating that upstream lambda heater close loop control is enabled,0:Opened Loop;1:Closed Loop ,18DAF1DA,24,31,.392156863,0,1,%,222935,622935,ff,EGR Water Cooling Pump PWM Command.value ,18DAF1DA,24,39,.08,0,2,mL,22293E,62293E,ff,Quantity of fuel consumed since last tank fill up ,18DAF1DA,24,55,1,0,0,,222940,622940,4ff,DIDs supported in range [$2941 - $2960] ,18DAF1DA,31,31,1,0,0,,222941,622941,ff,Boolean to indicate that there is a possible change of fuel in course,0:not detected;1:detected ,18DAF1DA,31,31,1,0,0,,222945,622945,ff,Drive door state,0:driver door closed;1:driver door opened ,18DAF1DA,31,31,1,0,0,,222946,622946,ff,Drive seat state,0:driver not seated;1:driver seated ,18DAF1DA,31,31,1,0,0,,222947,622947,ff,Engine hood state,0:engine hood closed;1:engine hood opened ,18DAF1DA,30,31,1,0,0,,222948,622948,ff,Drive seat belt reminder,0:Driver seat belt no warning;1:Driver seat belt warning level 1;2:Driver seat belt warning level 2 ,18DAF1DA,31,31,1,0,0,,222954,622954,ff,Vehicle whit key or keyless vehicle,0:Vehicle with a smartkey;1:Vehicle with a mechanical key ,18DAF1DA,31,31,1,0,0,,222955,622955,ff,Stop auto inhibition via automatic air conditioner,0:Automatic air conditionning authorizes StopAuto;1:StopAuto forbidden by automatic air conditionning ,18DAF1DA,24,31,.5,0,1,%,222958,622958,ff,Battery state of charge ,18DAF1DA,24,55,1,0,0,,222960,622960,4ff,DIDs supported in range [$2961 - $2980] ,18DAF1DA,24,55,1,0,0,,222980,622980,4ff,DIDs supported in range [$2981 - $29A0] ,18DAF1DA,24,31,10,0,0,s,222990,622990,ff,Maximum duration the engine can stay automatically stopped ,18DAF1DA,24,39,1,0,0,hPa,222991,622991,ff,Ambiant pressure high threshold below which auto stop is forbidden ,18DAF1DA,24,39,1,0,0,hPa,222992,622992,ff,Ambiant pressure low threshold below which auto stop is forbidden ,18DAF1DA,24,31,1,0,0,km/h,222993,622993,ff,Minimum speed threshold to go to StopAuto after a deactivation of 4WD function ,18DAF1DA,24,31,.1,0,1,s,222994,622994,ff,Maximum delay to confirm a StopAuto request by the driver (by braking pressure) ,18DAF1DA,24,31,.1,0,1,s,222995,622995,ff,Delay before prompting auto stop MMI ,18DAF1DA,24,55,1,-2147483648,0,,222996,622996,1ff,Maximun number of start for the high pressure pump to inhibite Stop and start ,18DAF1DA,24,31,1,50,0,%,222997,622997,ff,Maximum slope value to authorize StopAuto (negative value) ,18DAF1DA,24,31,1,50,0,%,222998,622998,ff,Maximum slope value to authorize StopAuto (positive value) ,18DAF1DA,24,31,.01,0,2,s,222999,622999,ff,Delay to detect rear gear engaged ,18DAF1DA,24,55,1,-2147483648,0,,22299A,62299A,1ff,Maximun number of activation of starter to inhibite Stop and start ,18DAF1DA,24,39,.1,2730,1,,22299B,62299B,ff,Maximal environment temperature inhibiting the StopAuto ,18DAF1DA,24,39,.1,2730,1,,22299C,62299C,ff,Maximal environment temperature authorising the StopAuto ,18DAF1DA,24,39,.1,2730,1,,22299D,62299D,ff,Minimal environment temperature inhibiting the StopAuto ,18DAF1DA,24,39,.1,2730,1,,22299E,62299E,ff,Minimal environment temperature authorising the StopAuto ,18DAF1DA,24,31,.1,0,1,km/h,22299F,62299F,ff,Maximum vehicle speed to keep the engine automatically stopped ,18DAF1DA,24,55,1,0,0,,2229A0,6229A0,4ff,DIDs supported in range [$29A1 - $29C0] ,18DAF1DA,24,31,.1,0,1,s,2229A1,6229A1,ff,Delay to confirm that the vehicle is stoped (consolidation of slope value) ,18DAF1DA,24,31,.1,0,1,km/h,2229A2,6229A2,ff,Vehicle speed threshold to validate the minimum travel conditions ,18DAF1DA,24,31,.1,0,1,km/h,2229A3,6229A3,ff,Vehicle speed threshold to validate the minimum travel conditions in rear detected ,18DAF1DA,24,31,.1,0,1,km/h,2229A4,6229A4,ff,Vehicle speed threshold to authorize automatic stop ,18DAF1DA,30,31,1,0,0,,2229A7,6229A7,ff,StopAuto status (StopAutoPhase),0:not in Auto Phase;1:Start Auto;2:Stop Auto;3:Stop Auto aborted ,18DAF1DA,31,31,1,0,0,,2229A8,6229A8,ff,Auto stop forbidden by CLIM ECU,0:stop auto authorize;1:stop auto forbidden by AC ,18DAF1DA,24,31,1,5,0,,2229A9,6229A9,ff,Gear lever position received on the CAN ,18DAF1DA,30,31,1,0,0,,2229B0,6229B0,ff,CC strategy requested by the driver for Daimler type,0:CC stop initial step;1:CC stop;2:CC running In case of default detection for Daimler specification- this label indicates the CC state. ,18DAF1DA,31,31,1,0,0,,2229B1,6229B1,ff,CC Main Switch Coherence detected failure for Daimler type,0:CC Main Switch Coherence without failure;1:CC Main Switch Coherence failure detected ,18DAF1DA,24,55,1,0,0,,2229C0,6229C0,4ff,DIDs supported in range [$29C1 - $29E0] ,18DAF1DA,24,39,1,0,0,km,2229DF,6229DF,ff,Distance driven since TLZ initialization ,18DAF1DA,24,55,1,0,0,,2229E0,6229E0,4ff,DIDs supported in range [$29E1 - $2A00] ,18DAF1DA,31,31,1,0,0,,2229E2,6229E2,ff,Misfire bench mode activation boolean,0:deactivated;1:activated ,18DAF1DA,24,31,1,0,0,,2229E3,6229E3,ff,Rate of Misfire bench mode ,18DAF1DA,29,31,1,0,0,,2229E4,6229E4,ff,Physical cylinder number selected to be cut if no specific cylinder cut is needed set to 0 ,18DAF1DA,24,31,.0078125,0,3,,2229E5,6229E5,ff,Bench value to adapt richness on all cylinders ,18DAF1DA,31,31,1,0,0,,2229E6,6229E6,ff,Delay before authorizing richness closed loop after start bench mode required for homologation,0:no change;1:an offset is applied ,18DAF1DA,31,31,1,0,0,,2229E7,6229E7,ff,Boolean enabling the canister purge fault bench mode,0:Disabled;1:Enabled ,18DAF1DA,24,39,1,0,0,mV,2229E9,6229E9,ff,The weighted average voltage of master vacuum absolute pressure sensor ,18DAF1DA,24,31,1,0,0,,2229F6,6229F6,ff,Alternator number ,18DAF1DA,24,39,1,0,0,rpm,2229F7,6229F7,ff,Electrical Energy Management minimum idle speed on sailing ,18DAF1DA,24,39,10,0,0,W,2229F8,6229F8,ff,Alternator power (01) ,18DAF1DA,24,39,10,0,0,,2229F9,6229F9,ff,Power slope sent to the USM ,18DAF1DA,24,31,.392156863,0,1,%,2229FA,6229FA,ff,DCDC load ,18DAF1DA,24,31,1,0,0,A,2229FB,6229FB,ff,Maximum current available by system on low voltage power supply ,18DAF1DA,24,39,.01,32768,2,A,2229FD,6229FD,ff,Battery current ,18DAF1DA,24,39,.01,0,2,V,2229FE,6229FE,ff,Reference battery voltage ,18DAF1DA,30,31,1,0,0,,2229FF,6229FF,ff,Battery Setpoint generator status,0:Nominal mode;1:EEM detected faillure for battery set point generation;2:EEM confirmed faillure for battery set point generation;3:Battery disconnetion ,18DAF1DA,24,55,1,0,0,,222A00,622A00,4ff,DIDs supported in range [$2A01 - $2A20] ,18DAF1DA,24,31,.01,-150,2,,222A01,622A01,ff,Mechanical ratio between alternator and engine ,18DAF1DA,29,31,1,0,0,,222A02,622A02,ff,DCDC Fault type,0:Validity data at NOK_0 state;1:Validity data at nominal state;2:Validity data at Fail_2 state;3:Validity data at Fail_3 state;4:Validity data at Fail_4 state;5:Validity data at Fail_5 state;6:Validity data at Fail_6 state ,18DAF1DA,30,31,1,0,0,,222A03,622A03,ff,DCDC to ECM CAN communication validity status,0:Validity data at NOK_0 state;1:Validity data at nominal state;2:Validity data at Fail_2 state ,18DAF1DA,30,31,1,0,0,,222A04,622A04,ff,DCDC EEM activation request satisfaction status,0:Validity data at NOK_0 state;1:Validity data at nominal state;2:Validity data at Fail_2 state ,18DAF1DA,30,31,1,0,0,,222A05,622A05,ff,DCDC electrical components faillure status,0:Validity data at NOK_0 state;1:Validity data at nominal state;2:Validity data at Fail_2 state ,18DAF1DA,30,31,1,0,0,,222A06,622A06,ff,Electrical Energy Management 14V producer lost,0:Validity data at NOK_0 state;1:Validity data at nominal state;2:Validity data at Fail_2 state;3:Validity data at Fail_3 state ,18DAF1DA,24,31,.3921568627,0,1,%,222A08,622A08,ff,Filtered alternator load ,18DAF1DA,24,39,10,0,0,W,222A09,622A09,ff,Electrical consumer electrical power ,18DAF1DA,28,31,1,0,0,,222A0B,622A0B,ff,The five last causes of cranking failure are memorized and they can be read by using a diagnostic tool.04 ,18DAF1DA,36,39,1,0,0,,222A0B,622A0B,ff,The five last causes of cranking failure are memorized and they can be read by using a diagnostic tool.03 ,18DAF1DA,44,47,1,0,0,,222A0B,622A0B,ff,The five last causes of cranking failure are memorized and they can be read by using a diagnostic tool.02 ,18DAF1DA,52,55,1,0,0,,222A0B,622A0B,ff,The five last causes of cranking failure are memorized and they can be read by using a diagnostic tool.01 ,18DAF1DA,60,63,1,0,0,,222A0B,622A0B,ff,The five last causes of cranking failure are memorized and they can be read by using a diagnostic tool.00 ,18DAF1DA,24,39,.0000101725,32768,3,,222A0D,622A0D,ff,LSU offset correction ,18DAF1DA,30,31,1,0,0,,222A0E,622A0E,ff,14V network relative undervoltage status,0:Validity data at NOK_0 state;1:Validity data at nominal state;2:Validity data at Fail_2 state;3:Validity data at Fail_3 state ,18DAF1DA,30,31,1,0,0,,222A0F,622A0F,ff,14V Network absolute undervoltage fault status,0:Validity data at NOK_0 state;1:Validity data at nominal state;2:Validity data at Fail_2 state;3:Validity data at Fail_3 state ,18DAF1DA,24,47,1,0,0,km,222A10,622A10,ff,distance counter when overboost is active and torque in gearbox exceeds nominal limitation on gear 1 ,18DAF1DA,24,47,1,0,0,km,222A11,622A11,ff,distance counter when overboost is active and torque in gearbox exceeds nominal limitation on gear 2 ,18DAF1DA,24,47,1,0,0,km,222A12,622A12,ff,distance counter when overboost is active and torque in gearbox exceeds nominal limitation on gear 3 ,18DAF1DA,24,47,1,0,0,km,222A13,622A13,ff,distance counter when overboost is active and torque in gearbox exceeds nominal limitation on gear 4 ,18DAF1DA,24,47,1,0,0,km,222A14,622A14,ff,distance counter when overboost is active and torque in gearbox exceeds nominal limitation on gear 5 ,18DAF1DA,24,47,1,0,0,km,222A15,622A15,ff,distance counter when overboost is active and torque in gearbox exceeds nominal limitation on gear 6 ,18DAF1DA,24,47,1,0,0,km,222A16,622A16,ff,distance counter when overboost is active and torque in gearbox exceeds nominal limitation on gear 7 ,18DAF1DA,31,31,1,0,0,,222A18,622A18,ff,Very low speed engine fan delayed command,0:Very low speed engine FAN deactivated;1:Very low speed engine FAN activated ,18DAF1DA,24,39,1,0,0,,222A1C,622A1C,ff,Counter for number of times the injection is switched off because of fast path of pre ignition detection.4 ,18DAF1DA,40,55,1,0,0,,222A1C,622A1C,ff,Counter for number of times the injection is switched off because of fast path of pre ignition detection.3 ,18DAF1DA,56,71,1,0,0,,222A1C,622A1C,ff,Counter for number of times the injection is switched off because of fast path of pre ignition detection.2 ,18DAF1DA,72,87,1,0,0,,222A1C,622A1C,ff,Counter for number of times the injection is switched off because of fast path of pre ignition detection.1 ,18DAF1DA,24,39,1,0,0,,222A1D,622A1D,ff,Counter for number of times the injection is switched off because of slow path of pre ignition detection.4 ,18DAF1DA,40,55,1,0,0,,222A1D,622A1D,ff,Counter for number of times the injection is switched off because of slow path of pre ignition detection.3 ,18DAF1DA,56,71,1,0,0,,222A1D,622A1D,ff,Counter for number of times the injection is switched off because of slow path of pre ignition detection.2 ,18DAF1DA,72,87,1,0,0,,222A1D,622A1D,ff,Counter for number of times the injection is switched off because of slow path of pre ignition detection.1 ,18DAF1DA,24,39,1,0,0,,222A1E,622A1E,ff,Counter for number of times the CAM correction is triggered because of pre ignition detection.4 ,18DAF1DA,40,55,1,0,0,,222A1E,622A1E,ff,Counter for number of times the CAM correction is triggered because of pre ignition detection.3 ,18DAF1DA,56,71,1,0,0,,222A1E,622A1E,ff,Counter for number of times the CAM correction is triggered because of pre ignition detection.2 ,18DAF1DA,72,87,1,0,0,,222A1E,622A1E,ff,Counter for number of times the CAM correction is triggered because of pre ignition detection.1 ,18DAF1DA,24,39,1,0,0,,222A1F,622A1F,ff,Counter for number of times the rich richness is triggered because of pre ignition detection.4 ,18DAF1DA,40,55,1,0,0,,222A1F,622A1F,ff,Counter for number of times the rich richness is triggered because of pre ignition detection.3 ,18DAF1DA,56,71,1,0,0,,222A1F,622A1F,ff,Counter for number of times the rich richness is triggered because of pre ignition detection.2 ,18DAF1DA,72,87,1,0,0,,222A1F,622A1F,ff,Counter for number of times the rich richness is triggered because of pre ignition detection.1 ,18DAF1DA,24,55,1,0,0,,222A20,622A20,4ff,DIDs supported in range [$2A21 - $2A40] ,18DAF1DA,24,39,1,0,0,,222A21,622A21,ff,Counter for number of times the TQ reduction is triggered because of pre ignition detection.4 ,18DAF1DA,40,55,1,0,0,,222A21,622A21,ff,Counter for number of times the TQ reduction is triggered because of pre ignition detection.3 ,18DAF1DA,56,71,1,0,0,,222A21,622A21,ff,Counter for number of times the TQ reduction is triggered because of pre ignition detection.2 ,18DAF1DA,72,87,1,0,0,,222A21,622A21,ff,Counter for number of times the TQ reduction is triggered because of pre ignition detection.1 ,18DAF1DA,24,39,.1,0,1,%,222A2A,622A2A,ff,Low temperature cooling loop water pump PWM command ,18DAF1DA,28,31,1,0,0,,222A2E,622A2E,ff,Anti theft configuration,3:Software lock Nissan;4:Software lock 5;7:Software lock 6 ,18DAF1DA,31,31,1,0,0,,222A2F,622A2F,ff,Consolidated request to open the dissociation valve,0:Dissociation valve closed;1:Dissociation valve opened ,18DAF1DA,24,39,.1,0,1,%,222A30,622A30,ff,The PWM command of the water pump of the low temperature cooling loop ,18DAF1DA,31,31,1,0,0,,222A31,622A31,ff,Lane Departure Prevention enable,0:Lane Departure Prevention disabled;1:Lane Departure Prevention enabled ,18DAF1DA,24,39,1,0,0,,222A38,622A38,ff,Offset Dirt Detection on closed thrust detected failure local counter ,18DAF1DA,24,39,1.52590218966964E-03,0,3,%,222A39,622A39,ff,PWM for the canister purge valve ,18DAF1DA,24,39,1.01725001716609E-05,0,3,,222A3A,622A3A,ff,Canister charge ,18DAF1DA,24,55,1,0,0,,222A40,622A40,4ff,DIDs supported in range [$2A41 - $2A60] ,18DAF1DA,24,47,1.52590000002002E-06,.1,3,,222A44,622A44,ff,Multi zones richness correction from OS regulation.03 ,18DAF1DA,48,71,1.52590000002002E-06,.1,3,,222A44,622A44,ff,Multi zones richness correction from OS regulation.02 ,18DAF1DA,72,95,1.52590000002002E-06,.1,3,,222A44,622A44,ff,Multi zones richness correction from OS regulation.01 ,18DAF1DA,96,119,1.52590000002002E-06,.1,3,,222A44,622A44,ff,Multi zones richness correction from OS regulation.00 ,18DAF1DA,24,39,1.52590218966964E-05,0,3,,222A45,622A45,ff,Ageing factor of the main catalyst ,18DAF1DA,24,39,.1,0,1,mg,222A46,622A46,ff,Total OSC measured value of main catalyst ,18DAF1DA,31,31,1,0,0,,222A5B,622A5B,ff,Variable for Wire acquisition of continuous stroke clutch contactor presence,0:Wire acquisition of continuous stroke clutch contactor absent;1:Wire acquisition of continuous stroke clutch contactor present ,18DAF1DA,31,31,1,0,0,,222A5C,622A5C,ff,Flag to indicate Bench mode activated to decrease heater performance of upstream binary sensor for OBD needs,0:deactivated;1:activated ,18DAF1DA,31,31,1,0,0,,222A5D,622A5D,ff,Upstream binary sensor bench mode required for homologation,0:Nominal PWM heating is applied;1:Factor is applied on heating PWM to decrease heating performance ,18DAF1DA,24,31,3.92156862745098E-03,0,3,,222A5E,622A5E,ff,Factor value to apply on heating PWM to decrease heater performance (OBD bench mode) ,18DAF1DA,24,31,3.92156862745098E-03,0,3,,222A5F,622A5F,ff,Factor value to apply on heating PWM to decrease heater performance ,18DAF1DA,24,55,1,0,0,,222A60,622A60,4ff,DIDs supported in range [$2A61 - $2A80] ,18DAF1DA,24,31,1,0,0,s,222A78,622A78,ff,Maximum duration of SL MAIN button press ,18DAF1DA,24,31,1,0,0,s,222A79,622A79,ff,Maximum duration of CRU MAIN button press ,18DAF1DA,24,31,1,0,0,,222A7A,622A7A,ff,Carrier of all the failures which cause CC SL failure ,18DAF1DA,24,39,.1,0,1,%,222A7B,622A7B,ff,Pump 2 PWM Control.value ,18DAF1DA,24,39,.01,0,2,V,222A7C,622A7C,ff,Electrical Energy Management Battery Voltage ,18DAF1DA,30,31,1,0,0,,222A7D,622A7D,ff,Request status of activation of the regulation loop for EEM needs,0:No activation;1:Level 1 activation;2:Level 2 activation ,18DAF1DA,29,31,1,0,0,,222A7E,622A7E,ff,Vehicle state for EEM,0:Sleeping;1:Customer Wake-up;2:E-motor running;3:Powertrain running;4:Auto Start;5:Auto Stop;6:Unavailable ,18DAF1DA,24,39,.01,0,2,V,222A7F,622A7F,ff,Producer voltage setpoint ,18DAF1DA,24,55,1,0,0,,222A80,622A80,4ff,DIDs supported in range [$2A81 - $2AA0] ,18DAF1DA,24,39,10,0,0,,222A81,622A81,ff,Alternator negative power gradient authorized by ECM ,18DAF1DA,24,31,.05,0,2,A,222A82,622A82,ff,DCDC output current ,18DAF1DA,24,31,1,0,0,A,222A83,622A83,ff,EEM Maximum current available by system consolidated ,18DAF1DA,24,39,10,0,0,W,222A84,622A84,ff,Alternator maximum power authorized by the ECM ,18DAF1DA,31,31,1,0,0,,222A85,622A85,ff,High Voltage availability requested by Electrical Energy Management,0:No request;1:Request ,18DAF1DA,28,31,1,0,0,,222A86,622A86,ff,Voltage regulation status,0:Not initialized;1:Starting sequence;2:No failure on 14V electrical network;3:Limitation;4:EEM producer communication lost detected failure;5:EEM producer communication lost confirmed failure;6:Low voltage power network producer detected failure;7:Low voltage power network producer confirmed failure;8:Low voltage power network under voltage detected failure;9:Low voltage power network under voltage confirmed failure;10:Low voltage power network over voltage detected failure;11:Low voltage power network over voltage confirmed failure;12:EEM Body Ecu communication lost detected failure;13:EEM Body Ecu communication lost confirmed failure;15:Unavailable ,18DAF1DA,24,39,.01,0,2,V,222A87,622A87,ff,DCDC voltage setpoint ,18DAF1DA,31,31,1,0,0,,222A88,622A88,ff,EV Charge activation request from EEM system,0:No request;1:Request ,18DAF1DA,24,39,.01,0,2,V,222A89,622A89,ff,Optimum voltage of the 12V producer ,18DAF1DA,29,31,1,0,0,,222A8A,622A8A,ff,Voltage rate limitation requested by Powertrain,0:No request;1:Voltage rate request Rate 1;2:Voltage rate request Rate 2;3:Voltage rate request Rate 3;4:Voltage rate request Rate 4 ,18DAF1DA,24,31,.392156862745098,0,1,%,222A8B,622A8B,ff,Alternator load (01) ,18DAF1DA,24,31,1,0,0,A,222A8C,622A8C,ff,Producer current ,18DAF1DA,24,39,.01,0,2,V,222A8D,622A8D,ff,Maximum reference voltage ,18DAF1DA,31,31,1,0,0,,222A8E,622A8E,ff,HV authorization to ask to close the HV relays,0:Not authorized;1:Authorized ,18DAF1DA,31,31,1,0,0,,222A8F,622A8F,ff,Indicates if the charge is available,0:Unavailable;1:Available ,18DAF1DA,29,31,1,0,0,,222A90,622A90,ff,Battery Setpoint Generator Status (01),0:Battery disconnection confirmed;1:Nominal;2:Absolute undervoltage confirmed;3:Relative undervoltage confirmed;4:Overvoltage confirmed;5:Voltage measurement fault confirmed in 12V EEM ECU;6:Producer fault confirmed C1R specific ,18DAF1DA,28,31,1,0,0,,222A92,622A92,ff,State of the steering wheel buttons when the main switch is placed on the steering wheel not filtered,0:unpressed;1:invalid voltage;2:open circuit;3:Resume or plus button pressed;4:set minus button pressed;5:suspend button pressed;6:Speed Limiter button pressed;7:Cruise Control button pressed;8:distance button pressed ,18DAF1DA,31,31,1,0,0,,222A9F,622A9F,ff,IVI ECU present configuration,0:IVI ECU is absent;1:IVI ECU is present ,18DAF1DA,24,55,1,0,0,,222AA0,622AA0,4ff,DIDs supported in range [$2AA1 - $2AC0] ,18DAF1DA,24,39,3.05175999999203E-05,0,3,,222AA2,622AA2,ff,UEGO richness corrected or not by OBD test mode ,18DAF1DA,24,39,.001,10000,3,mA,222AA3,622AA3,ff,Temporary raw UEGO current taking into account OBD mode ,18DAF1DA,24,39,.001,10000,3,mA,222AA4,622AA4,ff,Raw UEGO current ,18DAF1DA,24,31,1,0,0,,222AA5,622AA5,ff,Upstream sensor Status of heater patern applied,0:oxygen sensor heating is off;1:low oxygen sensor heating for dewpoint condition;2:Normal oxygen sensor heating (including warmup patern);4:oxygen sensor specific heating for Stop and Start condition;8:oxygen sensor heating in high exhaust gaz temperature (heating off);16:oxygen sensor heating in aftersale condition;32:oxygen sensor specific heating in case of battery voltage default;64:oxygen sensor heating under specific OBD test condition ,18DAF1DA,24,31,1,50,0,%,222AA6,622AA6,ff,Upstream binary oxygen sensor _ heater applied PWM ,18DAF1DA,31,31,1,0,0,,222AAF,622AAF,ff,Charger AC type (0 AC insulated and 1 AC not insulated),0:AC CHARGER insulated;1:AC CHARGER not insulated ,18DAF1DA,24,31,1,0,0,,222AB0,622AB0,ff,Charger DC type (0 DC absent _ 1 DC Chademo _ 2 DC Combo),0:DC absent;1:DC Chademo;2:DC Combo ,18DAF1DA,24,31,1,0,0,,222AB1,622AB1,ff,electical valve request for battery cooling,0:electrical_valve close for battery cooling;1:electrical_valve open for battery cooling ,18DAF1DA,31,31,1,0,0,,222AB2,622AB2,ff,electical valve request for cabin heating,0:not active;1:active ,18DAF1DA,24,31,1,0,0,,222AB3,622AB3,ff,electical valve request for cabin cooling,0:electrical_valve closed for cabin cooling;1:electrical_valve open for cabin cooling ,18DAF1DA,24,39,.1,0,1,%,222AB4,622AB4,ff,Pump 3 PWM Control.value ,18DAF1DA,31,31,1,0,0,,222AB5,622AB5,ff,Low temperature circuit Electrovalve control,0:Electrovalve Closed;1:Electrovalve Opened ,18DAF1DA,24,31,1,0,0,,222ABA,622ABA,ff,Consolidated state indicating activation of bench mode by driver sequence,0:No maintenance mode activated;1:Maintenance mode 1 or 2 or 3;2:Maintenance mode 2 or 3;3:Maintenance mode 3 ,18DAF1DA,24,39,.1,32768,1,N·m,222ABC,622ABC,ff,Value of applied offset correction ,18DAF1DA,24,39,3.0517600001783E-05,0,3,,222ABD,622ABD,ff,Amplitude of upstream lambda richness signal ,18DAF1DA,24,55,1,0,0,,222AC0,622AC0,4ff,DIDs supported in range [$2AC1 - $2AE0] ,18DAF1DA,24,39,10,0,0,W,222AC7,622AC7,ff,Optimal alternator power setpoint ,18DAF1DA,24,31,1,0,0,,222AC8,622AC8,ff,CC deactivation cause ,18DAF1DA,24,31,.392156862745098,0,1,%,222ACA,622ACA,ff,Fan pwm command ,18DAF1DA,24,31,1,0,0,,222AD0,622AD0,ff,Electrical Energy Management minimum idle speed on sailing validity status,0:Electrical Energy Management minimum idle speed on sailing signal is NOT VALID;1:Electrical Energy Management minimum idle speed on sailing signal is VALID ,18DAF1DA,24,39,.01,0,2,V,222ADA,622ADA,ff,After sales producer voltage setpoint ,18DAF1DA,31,31,1,0,0,,222ADC,622ADC,ff,HV ready available status,0:HV ready status unavailable;1:HV ready status available ,18DAF1DA,24,55,1,0,0,,222AE0,622AE0,4ff,DIDs supported in range [$2AE1-$2AG0] ,18DAF1DA,24,39,.1,400,1,,222AE7,622AE7,ff,Internal raw sensor temperature ,18DAF1DA,31,31,1,0,0,,222AE8,622AE8,ff,Conf ego/ueg,0:Binary oxygen sensor;1:Linear oxygen sensor ,18DAF1DA,31,31,1,0,0,,222AF9,622AF9,ff,Diagnosis Parameter Clear Request for distance with neutral gear position calculation,0:No request;1:Request ,18DAF1DA,31,31,1,0,0,,222AFC,622AFC,ff,HFPB ECU present configuration,0:conf absent;1:conf present ,18DAF1DA,31,31,1,0,0,,222AFD,622AFD,ff,AEb ECU present configuration,0:conf absent;1:conf present ,18DAF1DA,31,31,1,0,0,,222AFF,622AFF,ff,Disabling of automatic park request by after sale tool,0:Automatic park function activate;1:Inhibition of automatic park activation ,18DAF1DA,24,55,1,0,0,,222B00,622B00,4ff,DIDs supported in range [$2B01 - $2B20] ,18DAF1DA,31,31,1,0,0,,222B02,622B02,ff,DriverSafetyBeltBuckleState bypass for the Stop and Start system,0:Use an intern ECM variable;1:Bypass the variable ,18DAF1DA,24,55,1,0,0,,222B20,622B20,4ff,DIDs supported in range [$2B21 - $2B40] ,18DAF1DA,31,31,1,0,0,,222B22,622B22,ff,ETC mode implying inhibition of Stop Auto when equal to 1,0:Nominal;1:Inhibition of Stop and Start ,18DAF1DA,24,31,1,0,0,,222B23,622B23,ff,Reverse gear engaged switch for manual gearbox,0:Contactor is not used (normal permanent state);1:Contactor is used (non permanent state);2:There is no contactor ,18DAF1DA,31,31,1,0,0,,222B2F,622B2F,ff,Technical restart request by drivers exit,0:Not requested;1:Requested ,18DAF1DA,31,31,1,0,0,,222B31,622B31,ff,VehicleSpeedBody bypass for the Stop and Start system,0:Use an intern ECM variable;1:Bypass the variable ,18DAF1DA,31,31,1,0,0,,222B34,622B34,ff,Reset the EEPROM variables for RVLV ,18DAF1DA,31,31,1,0,0,,222B36,622B36,ff,HFPB or APK configuration,0:Not activated;1:Activated ,18DAF1DA,24,31,.0001,0,3,m,222B38,622B38,1ff,top-left position of primary fork memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B39,622B39,1ff,top-right position of primary fork memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B3A,622B3A,1ff,top-left position of primary actuator memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B3B,622B3B,1ff,top-right position of primary actuator memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B3C,622B3C,1ff,bottom-left position of primary fork memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B3D,622B3D,1ff,bottom-right position of primary fork memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B3E,622B3E,1ff,bottom-left position of primary actuator memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B3F,622B3F,1ff,bottom-right position of primary actuator memorised during offset-learning sequence ,18DAF1DA,24,55,1,0,0,,222B40,622B40,4ff,DIDs supported in range [$2B41 - $2B60] ,18DAF1DA,24,31,.0001,0,3,m,222B41,622B41,1ff,left position of secondary fork memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B42,622B42,1ff,right position of secondary fork memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B43,622B43,1ff,left position of secondary actuator memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B44,622B44,1ff,right position of secondary actuator memorised during offset-learning sequence ,18DAF1DA,24,31,.0001,0,3,m,222B45,622B45,1ff,memorised offset on the selection ,18DAF1DA,24,31,.0001,0,3,m,222B46,622B46,1ff,threshold for selection high ,18DAF1DA,31,31,1,0,0,,222B47,622B47,ff,Opening of the trap command ,18DAF1DA,29,31,1,0,0,,222B48,622B48,ff,Commandre de Verouillage / dévrouillage du plug,0:No Unlocking/Locking Requested;1:Unlocking Requested;2:Locking Requested ,18DAF1DA,31,31,1,0,0,,222B49,622B49,ff,offset-learning routine KO information for operator,0:Routine NOK;1:Routine OK ,18DAF1DA,30,31,1,0,0,,222B4A,622B4A,ff,state of the information on the primary rotor,0:invalid data;1:valid data ,18DAF1DA,30,31,1,0,0,,222B4B,622B4B,ff,state of the information on the secondary rotor,0:invalid data;1:valid data ,18DAF1DA,31,31,1,0,0,,222B4C,622B4C,ff,offset-learning failure due to missed raise of rotor-2-blocked flag,0:flag appears;1:missed raise of rotor-2-blocked flag ,18DAF1DA,31,31,1,0,0,,222B4D,622B4D,ff,offset-learning failure due to missed raise of rotor-1-blocked flag,0:flag appears;1:missed raise of rotor-2-blocked flag ,18DAF1DA,29,31,1,0,0,,222B4E,622B4E,ff,Warning Lights Status consolidated,0:Warning Lights Status Off;1:Warning Lights Status ON ,18DAF1DA,31,31,1,0,0,,222B4F,622B4F,ff,MultiDrive mode presence configuration boolean (1 = MultiDrive present),0:Multi-drive absent;1:Multi-drive present ,18DAF1DA,31,31,1,0,0,,222B51,622B51,ff,Emergency charge stop requested by rectifier,0:No request;1:Stop request ,18DAF1DA,24,31,1,0,0,,222B52,622B52,ff,Validity status of CAN parameter LeakageCurrentEmergencyStop consolidated,0:invalid data;1:valid data;2:limp valid data ,18DAF1DA,24,31,1,0,0,,222B53,622B53,ff,limited performance history memorized in EEPROM.10 ,18DAF1DA,32,39,1,0,0,,222B53,622B53,ff,limited performance history memorized in EEPROM.09 ,18DAF1DA,40,47,1,0,0,,222B53,622B53,ff,limited performance history memorized in EEPROM.08 ,18DAF1DA,48,55,1,0,0,,222B53,622B53,ff,limited performance history memorized in EEPROM.07 ,18DAF1DA,56,63,1,0,0,,222B53,622B53,ff,limited performance history memorized in EEPROM.06 ,18DAF1DA,64,71,1,0,0,,222B53,622B53,ff,limited performance history memorized in EEPROM.05 ,18DAF1DA,72,79,1,0,0,,222B53,622B53,ff,limited performance history memorized in EEPROM.04 ,18DAF1DA,80,87,1,0,0,,222B53,622B53,ff,limited performance history memorized in EEPROM.03 ,18DAF1DA,88,95,1,0,0,,222B53,622B53,ff,limited performance history memorized in EEPROM.02 ,18DAF1DA,96,103,1,0,0,,222B53,622B53,ff,limited performance history memorized in EEPROM.01 ,18DAF1DA,24,55,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.40 ,18DAF1DA,56,87,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.39 ,18DAF1DA,88,119,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.38 ,18DAF1DA,120,151,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.37 ,18DAF1DA,152,183,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.36 ,18DAF1DA,184,215,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.35 ,18DAF1DA,216,247,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.34 ,18DAF1DA,248,279,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.33 ,18DAF1DA,280,311,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.32 ,18DAF1DA,312,343,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.31 ,18DAF1DA,344,375,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.30 ,18DAF1DA,376,407,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.29 ,18DAF1DA,408,439,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.28 ,18DAF1DA,440,471,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.27 ,18DAF1DA,472,503,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.26 ,18DAF1DA,504,535,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.25 ,18DAF1DA,536,567,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.24 ,18DAF1DA,568,599,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.23 ,18DAF1DA,600,631,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.22 ,18DAF1DA,632,663,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.21 ,18DAF1DA,664,695,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.20 ,18DAF1DA,696,727,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.19 ,18DAF1DA,728,759,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.18 ,18DAF1DA,760,791,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.17 ,18DAF1DA,792,823,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.16 ,18DAF1DA,824,855,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.15 ,18DAF1DA,856,887,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.14 ,18DAF1DA,888,919,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.13 ,18DAF1DA,920,951,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.12 ,18DAF1DA,952,983,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.11 ,18DAF1DA,984,1015,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.10 ,18DAF1DA,1016,1047,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.09 ,18DAF1DA,1048,1079,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.08 ,18DAF1DA,1080,1111,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.07 ,18DAF1DA,1112,1143,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.06 ,18DAF1DA,1144,1175,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.05 ,18DAF1DA,1176,1207,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.04 ,18DAF1DA,1208,1239,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.03 ,18DAF1DA,1240,1271,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.02 ,18DAF1DA,1272,1303,.1,0,1,,222B54,622B54,1ff,Consumption data (Auxiliary consumption) matrix stored in EEPROM.01 ,18DAF1DA,24,31,1,0,0,,222B55,622B55,ff,Relay S2 state,0:S2 closed;1:S2 open | BSW fast opening line;2:S2 open | Vbx_s2_rdcy_rly_ctl request (lvl1);3:S2 open | Vbx_sfty_s2_rdcy_rly_oc request;4:4- S2 open | Predrive check ,18DAF1DA,31,31,1,0,0,,222B59,622B59,ff,stubb in case of no presence of aebs system, to permit the activation of sailing idle system,0:system is not activated;1:activation of sailing idle system ,18DAF1DA,31,31,1,0,0,,222B5A,622B5A,ff,Charge LED Intel 01 response error,0:No Response_Error;1:Response_Error ,18DAF1DA,24,31,1,0,0,rpm,222B5B,622B5B,ff,Speed setpoint to control the HSG oil pump ,18DAF1DA,31,31,1,0,0,,222B5C,622B5C,ff,Overstress Temperature of charge LED Inlet 02,0:No overstress temperature;1:Overstress temperature ,18DAF1DA,31,31,1,0,0,,222B5D,622B5D,ff,Overstress Temperature of charge LED Inlet 01,0:No overstress temperature;1:Overstress temperature ,18DAF1DA,31,31,1,0,0,,222B5E,622B5E,ff,Critical temperature of charge LED Inlet 02,0:No critical temperature;1:Critical temperature ,18DAF1DA,31,31,1,0,0,,222B5F,622B5F,ff,Open circuit on the charge LED Inlet 02,0:No open circuit;1:Open circuit detected ,18DAF1DA,24,55,1,0,0,,222B60,622B60,4ff,DIDs supported in range [$2B61 - $2B80] ,18DAF1DA,24,55,.1,0,1,s,222B61,622B61,1ff,counter of the pump 1 for PHEV configuration ,18DAF1DA,24,55,.1,0,1,s,222B62,622B62,1ff,counter of the pump 3 for PHEV configuration ,18DAF1DA,24,39,.1,0,1,%,222B66,622B66,ff,Heater water pump 5 PWM control ,18DAF1DA,31,31,1,0,0,,222B6A,622B6A,ff,Open circuit of charge LED Inlet 01,0:No open circuit;1:Open circuit detected ,18DAF1DA,31,31,1,0,0,,222B6B,622B6B,ff,Short Circuit on charge LED Inlet 02,0:No open circuit;1:Open circuit detected ,18DAF1DA,31,31,1,0,0,,222B6C,622B6C,ff,Short Circuit on charge LED Inlet 01,0:No open circuit;1:Open circuit detected ,18DAF1DA,28,31,1,0,0,,222B6D,622B6D,ff,Charge MMI States,0:No Charge;1:Waiting a planned charge;2:Ended charge;3:Charge in progress;4:Charge failure;5:Waiting for current charge;6:Energy flap openend - welcome MMI;7:Unavailable Value;8:Charge preparation ,18DAF1DA,31,31,1,0,0,,222B6E,622B6E,ff,This variable activates meter to display charging informations,0:No activation;1:Activates meter to display charging informations ,18DAF1DA,30,31,1,0,0,,222B6F,622B6F,ff,HEVC Presoak Activation Status,0:forbiden presoak status;1:No presoak in progress;2:presoak in progress ok ,18DAF1DA,24,31,.1,0,1,mm,222B70,622B70,1ff,primary-claw position set-point ,18DAF1DA,24,31,.1,0,1,mm,222B71,622B71,1ff,secondary-claw position set-point ,18DAF1DA,31,31,1,0,0,,222B72,622B72,ff,consolidated selector position set-point,0:Low position;1:High position ,18DAF1DA,24,31,1,0,0,A,222B73,622B73,ff,MotorCurrentLimit HEVCLINGBA.R.01: current limitation of claw motor actuator ,18DAF1DA,24,31,.01,0,2,m/s,222B74,622B74,ff,MotorSpeedLimit HEVC_LINGBA_R_01: speed limitation of claw motor actuator ,18DAF1DA,29,31,1,0,0,,222B75,622B75,ff,water pump state(2),0:CoolingPumpStatus Life beat status;1:CoolingPumpStatus Stall or unsufficient speed status;2:CoolingPumpStatus Pump over temperature status;3:CoolingPumpStatus Pump over temperature warning status;4:CoolingPumpStatus Internal error / over / under voltage status;5:CoolingPumpStatus Dry run state;6:not used;7:CoolingPumpStatus No pump feed back status ,18DAF1DA,31,31,1,0,0,,222B76,622B76,ff,activation hvb cooling by radiator,0:no activation;1:Activation ,18DAF1DA,30,31,1,0,0,,222B77,622B77,ff,HV Battery Conditionning Mode,0:Blowing Requested;1:Cooling Conditionning Requested;2:Heating Conditionning requested;3:No cooling conditionning request ,18DAF1DA,31,31,1,0,0,,222B78,622B78,ff,Activation chiller request,0:no activation;1:Activation ,18DAF1DA,24,39,1,0,0,W,222B79,622B79,ff,thermal comfort power consumption ,18DAF1DA,29,31,1,0,0,,222B7A,622B7A,ff,Charge type for internal use,0:Charge type no charge;1:Charge type AC no isolated;2:Charge type AC isolated;3:Charge type DC Chademo;4:Charge type DC Combo ,18DAF1DA,31,31,1,0,0,,222B7C,622B7C,ff,CAN Vehicle wake-up request by charge,0:no request;1:request ON ,18DAF1DA,24,31,1,0,0,,222B7D,622B7D,ff,Final driveline state target,0:Driveline state in neutral;1:Driveline state in 1;2:Driveline state in 2;3:Driveline state in 3;4:Driveline state in 4;5:Driveline state in 5;6:Driveline state in 6;7:Driveline state in 7;8:Driveline state in 8;9:Driveline state in 9;10:Driveline state in 10;11:Driveline state in 11;12:Driveline state in 12;13:Driveline state in 13;14:Driveline state in 14;15:Driveline state in 15;16:Driveline state in 16;17:Driveline state in 17;18:Driveline state in 18;19:Driveline state in 19;20:Driveline state in 20;21:Driveline state in 21;22:Driveline state in 22;23:Driveline state in 23;24:Driveline state in 24;25:Driveline state in 25;26:Driveline state in 26;253:Driveline state in reverse 2.;254:Driveline state in reverse 1 ,18DAF1DA,31,31,1,0,0,,222B7E,622B7E,ff,Critical temperature of charge LED Inlet 01,0:No critical temperature;1:Critical temperature ,18DAF1DA,31,31,1,0,0,,222B7F,622B7F,ff,Charge LED Intel 02 response error,0:No Response_Error;1:Response_Error ,18DAF1DA,24,55,1,0,0,,222B80,622B80,4ff,DIDs supported in range [$2B81 - $2BA0] ,18DAF1DA,31,31,1,0,0,,222B81,622B81,ff,request to refuse to sleep end ready to sleep,0:Ready to sleep;1:Refuse to sleep ,18DAF1DA,31,31,1,0,0,,222B82,622B82,ff,Inhibition of the Wake-up by infrastructure,0:no inhibition;1:inhibition ,18DAF1DA,30,31,1,0,0,,222B83,622B83,ff,UnlockChargingPlug,0:Unavailable;1:Unlock Requested;2:Unlock Not Requested ,18DAF1DA,31,31,1,0,0,,222B84,622B84,ff,The availability of the hv network for the thermal comfort,0:Not available;1:available ,18DAF1DA,31,31,1,0,0,,222B85,622B85,ff,Mains plug presence,0:Not present;1:present ,18DAF1DA,29,31,1,0,0,,222B86,622B86,ff,CHGStateRequest,0:Standby;1:Power On;2:Charge;3:Unavailable ,18DAF1DA,29,31,1,0,0,,222B87,622B87,ff,Consolidated Charge Load State (1:Charge 4:StandBy)Nsx_chg_stt_stby = 4 Nsx_chg_stt_chg = 1,1:Charge;2:Power on;4:Standby ,18DAF1DA,31,31,1,0,0,,222B88,622B88,ff,Capteur de presence,absence tension HV DC situe dans la DC box cote borne,0:Not present;1:present ,18DAF1DA,31,31,1,0,0,,222B89,622B89,ff,Trap Closed Switch,0:Not present;1:present ,18DAF1DA,24,39,.5,0,1,V,222B8A,622B8A,ff,Consolidated MainsRMSVoltage ,18DAF1DA,29,31,1,0,0,,222B8B,622B8B,ff,Consolidated CHGFault_Type,0:Invalid data;1:Valid data;2:Limp home data (1);3:Limp home data (2);4:Limp home data (3);5:Limp home data (4);6:Limp home data (5);7:Limp home data (6) ,18DAF1DA,31,31,1,0,0,,222B8C,622B8C,ff,Charge Prohibition By Rental_HFM,0:NOK;1:OK ,18DAF1DA,31,31,1,0,0,,222B8D,622B8D,ff,Charge Prohibition By Rental BCM,0:NOK;1:OK ,18DAF1DA,30,30,1,0,0,,222B8E,622B8E,ff,The 10 lastest values of the flag which indicates that a charge profile is applied.09,0:not applied;1:applied ,18DAF1DA,31,31,1,0,0,,222B8E,622B8E,ff,The 10 lastest values of the flag which indicates that a charge profile is applied.08,0:not applied;1:applied ,18DAF1DA,32,32,1,0,0,,222B8E,622B8E,ff,The 10 lastest values of the flag which indicates that a charge profile is applied.07,0:not applied;1:applied ,18DAF1DA,33,33,1,0,0,,222B8E,622B8E,ff,The 10 lastest values of the flag which indicates that a charge profile is applied.06,0:not applied;1:applied ,18DAF1DA,34,34,1,0,0,,222B8E,622B8E,ff,The 10 lastest values of the flag which indicates that a charge profile is applied.05,0:not applied;1:applied ,18DAF1DA,35,35,1,0,0,,222B8E,622B8E,ff,The 10 lastest values of the flag which indicates that a charge profile is applied.04,0:not applied;1:applied ,18DAF1DA,36,36,1,0,0,,222B8E,622B8E,ff,The 10 lastest values of the flag which indicates that a charge profile is applied.03,0:not applied;1:applied ,18DAF1DA,37,37,1,0,0,,222B8E,622B8E,ff,The 10 lastest values of the flag which indicates that a charge profile is applied.02,0:not applied;1:applied ,18DAF1DA,38,38,1,0,0,,222B8E,622B8E,ff,The 10 lastest values of the flag which indicates that a charge profile is applied.01,0:not applied;1:applied ,18DAF1DA,39,39,1,0,0,,222B8E,622B8E,ff,The 10 lastest values of the flag which indicates that a charge profile is applied.00,0:not applied;1:applied ,18DAF1DA,28,31,1,0,0,,222B8F,622B8F,ff,CPLC_FaultType,0:NoFault;1:Contract NOK;2:Energy Transfer mode type not supported;3:PLC comm failure state;4:EVSE comm Failure;5:EVSE Not Ready;6:EVSE Utility Interrupt Event-;7:EVSE Utility Interrupt Event;8:EVSE Isolation Monitoring Active;9:EVSE Emergency Shutdown;10:EVSE Malfunction Protocol with EVSE (Station charging);11:EVSE_Renegociate of profil charge ,18DAF1DA,24,47,1,0,0,min,222B90,622B90,ff,The 10 lastest absolute times memorized at the end/interruption of battery charge.09 ,18DAF1DA,48,71,1,0,0,min,222B90,622B90,ff,The 10 lastest absolute times memorized at the end/interruption of battery charge.08 ,18DAF1DA,72,95,1,0,0,min,222B90,622B90,ff,The 10 lastest absolute times memorized at the end/interruption of battery charge.07 ,18DAF1DA,96,119,1,0,0,min,222B90,622B90,ff,The 10 lastest absolute times memorized at the end/interruption of battery charge.06 ,18DAF1DA,120,143,1,0,0,min,222B90,622B90,ff,The 10 lastest absolute times memorized at the end/interruption of battery charge.05 ,18DAF1DA,144,167,1,0,0,min,222B90,622B90,ff,The 10 lastest absolute times memorized at the end/interruption of battery charge.04 ,18DAF1DA,168,191,1,0,0,min,222B90,622B90,ff,The 10 lastest absolute times memorized at the end/interruption of battery charge.03 ,18DAF1DA,192,215,1,0,0,min,222B90,622B90,ff,The 10 lastest absolute times memorized at the end/interruption of battery charge.02 ,18DAF1DA,216,239,1,0,0,min,222B90,622B90,ff,The 10 lastest absolute times memorized at the end/interruption of battery charge.01 ,18DAF1DA,240,263,1,0,0,min,222B90,622B90,ff,The 10 lastest absolute times memorized at the end/interruption of battery charge.00 ,18DAF1DA,28,31,1,0,0,,222B91,622B91,ff,Combo_EVchargeHLCRequest CAN consolidated,0:No HLC Request state;1:Communicationservice setting request sattet;2:ChargeparameterDiscovery requeststate;3:CableCheck request state;4:Precharge request state;5:Power delivery request state;6:Current demand request state;7:Metering receipt request;8:Welding detection request state;9:Session stop request state;10:Reset matching process counter at unplug ,18DAF1DA,24,39,.1,0,1,A,222B92,622B92,ff,ComboEVTargetCurrent ,18DAF1DA,28,31,1,0,0,,222B93,622B93,ff,Combo_EVSEchargeHLCState,0:No HLC communication is established;1:Communication Service setting is established ;2:ChargeparameterDiscovery res state ;3:CableCheck res state ;4:Precharge res state ;5:Power delivery res state ;6:Current demande res state ;7:Metering receipt response ;8:Welding detection res state ;9:Session stop res ,18DAF1DA,29,31,1,0,0,,222B94,622B94,ff,CPLC_CommunicationStatus,0:No HLC communication is established;1:HLC communication is initializing;2:HLC communication is ready to charge state;3:HLC communication is stopped (gestion pauses-opt);4:HLC communication error state ,18DAF1DA,24,39,.1,0,1,V,222B95,622B95,ff,ComboEVMaximumVoltageLimit ,18DAF1DA,24,39,.1,0,1,A,222B96,622B96,ff,ComboEVMaximumCurrentLimit ,18DAF1DA,24,39,.1,0,1,V,222B97,622B97,ff,ComboEVTargetVoltage ,18DAF1DA,31,31,1,0,0,,222B98,622B98,ff,Battery HVAC EV 2 command ,18DAF1DA,29,31,1,0,0,,222B99,622B99,ff,CPLC_ChargeProgress,0:Stop state of CPLC_ChargeProgress parameter;1:CPLC_ChargeProgress state;2:CPLC_ChargeProgress;7:Not available state of CPLC_ChargeProgress parameter ,18DAF1DA,31,31,1,0,0,,222B9A,622B9A,ff,S2prime relay Command,0:Open Request;1:Close Request ,18DAF1DA,31,31,1,0,0,,222B9B,622B9B,ff,Battery HVAC EV 2 command2 ,18DAF1DA,31,31,1,0,0,,222B9C,622B9C,ff,S2 relay command,0:Open Request;1:Close Request ,18DAF1DA,31,31,1,0,0,,222B9D,622B9D,ff,HV available request for charge,0:Open Request;1:Close Request ,18DAF1DA,30,31,1,0,0,,222B9E,622B9E,ff,toggle test states,0:Toggle test is on going;1:Toggle test is done;2:Toggle test is failed;3:Toggle test is unvailable ,18DAF1DA,24,39,.0001,0,3,,222B9F,622B9F,ff,GearShift Lever pwm ratio measured in plant ,18DAF1DA,24,55,1,0,0,,222BA0,622BA0,4ff,DIDs supported in range [$2BA1 - $2BC0] ,18DAF1DA,28,28,1,0,0,,222BB1,622BB1,ff,Journaling Vbx_driv_cho_urb_zev_mod in case of Optimization Failure.04 ,18DAF1DA,29,29,1,0,0,,222BB1,622BB1,ff,Journaling Vbx_driv_cho_urb_zev_mod in case of Optimization Failure.03 ,18DAF1DA,30,30,1,0,0,,222BB1,622BB1,ff,Journaling Vbx_driv_cho_urb_zev_mod in case of Optimization Failure.02 ,18DAF1DA,31,31,1,0,0,,222BB1,622BB1,ff,Journaling Vbx_driv_cho_urb_zev_mod in case of Optimization Failure.00 ,18DAF1DA,30,31,1,0,0,,222BBB,622BBB,ff,EM2 control mode set-point,0:Auto_Nsx_emot_2_ctl_no_req;1:Auto_Nsx_emot_2_ctl_tq_typ;2:Auto_Nsx_emot_2_ctl_spd_typ ,18DAF1DA,24,39,10,2000,0,rpm,222BBC,622BBC,ff,HSG Speed Request CAN message ,18DAF1DA,30,31,1,0,0,,222BBD,622BBD,ff,EM1 control mode set-point,0:Auto_Nsx_emot_2_ctl_no_req;1:Auto_Nsx_emot_2_ctl_tq_typ;2:Auto_Nsx_emot_2_ctl_spd_typ ,18DAF1DA,24,39,10,2000,0,rpm,222BBE,622BBE,ff,Electrical machine speed control input ,18DAF1DA,24,55,1,0,0,,222BC0,622BC0,4ff,DIDs supported in range [$2BC1 - $2BE0] ,18DAF1DA,24,55,1,-2147483648,0,s,222BC1,622BC1,1ff,Time of use of the vacuum pump (hev) ,18DAF1DA,24,39,.1,0,1,%,222BC4,622BC4,ff,Battery HVAC Fan Out ,18DAF1DA,31,31,1,0,0,,222BC5,622BC5,ff,Battery Heater Relay 1 request,0:no activated;1:activated ,18DAF1DA,31,31,1,0,0,,222BC6,622BC6,ff,Battery Heater Relay 2 request,0:no activated;1:activated ,18DAF1DA,31,31,1,0,0,,222BCB,622BCB,ff,Variable for HandFreeParkBraking or Full HandFreePark (APK) presence,0:absent;1:present ,18DAF1DA,30,31,1,0,0,,222BCC,622BCC,ff,vector of selected-motor-flag values at transition failures.04 ,18DAF1DA,32,33,1,0,0,,222BCC,622BCC,ff,vector of selected-motor-flag values at transition failures.03 ,18DAF1DA,34,35,1,0,0,,222BCC,622BCC,ff,vector of selected-motor-flag values at transition failures.02 ,18DAF1DA,36,37,1,0,0,,222BCC,622BCC,ff,vector of selected-motor-flag values at transition failures.01 ,18DAF1DA,38,39,1,0,0,,222BCC,622BCC,ff,vector of selected-motor-flag values at transition failures.00 ,18DAF1DA,24,31,.1,0,1,mm,222BCD,622BCD,1ff,vector of claw motor set-point position values at transition failures.04 ,18DAF1DA,32,39,.1,0,1,mm,222BCD,622BCD,1ff,vector of claw motor set-point position values at transition failures.03 ,18DAF1DA,40,47,.1,0,1,mm,222BCD,622BCD,1ff,vector of claw motor set-point position values at transition failures.02 ,18DAF1DA,48,55,.1,0,1,mm,222BCD,622BCD,1ff,vector of claw motor set-point position values at transition failures.01 ,18DAF1DA,56,63,.1,0,1,mm,222BCD,622BCD,1ff,vector of claw motor set-point position values at transition failures.00 ,18DAF1DA,25,27,1,0,0,,222BCE,622BCE,ff,vector of SCM-actuators-control-mode values at transition failures.04 ,18DAF1DA,28,30,1,0,0,,222BCE,622BCE,ff,vector of SCM-actuators-control-mode values at transition failures.03 ,18DAF1DA,31,33,1,0,0,,222BCE,622BCE,ff,vector of SCM-actuators-control-mode values at transition failures.02 ,18DAF1DA,34,36,1,0,0,,222BCE,622BCE,ff,vector of SCM-actuators-control-mode values at transition failures.01 ,18DAF1DA,37,39,1,0,0,,222BCE,622BCE,ff,vector of SCM-actuators-control-mode values at transition failures.00 ,18DAF1DA,24,31,1,0,0,,222BD7,622BD7,ff,Device Driver State Machine Status,0:Sleep mode of the Heating Control Unit;10:Device Driver State Machine in offline mode;11:Device Driver State Machine in delay mode;12:Device Driver State Machine in online mode;20:Device Driver State Machine in calculation mode ,18DAF1DA,24,31,1,0,0,,222BD8,622BD8,ff,Error code saved in PRE DRIVE mode ,18DAF1DA,24,31,.00390625,0,3,Ohm,222BD9,622BD9,ff,Array with current Glow Plugs electrical resistance.03 ,18DAF1DA,32,39,.00390625,0,3,Ohm,222BD9,622BD9,ff,Array with current Glow Plugs electrical resistance.02 ,18DAF1DA,40,47,.00390625,0,3,Ohm,222BD9,622BD9,ff,Array with current Glow Plugs electrical resistance.01 ,18DAF1DA,48,55,.00390625,0,3,Ohm,222BD9,622BD9,ff,Array with current Glow Plugs electrical resistance.00 ,18DAF1DA,24,31,.009785,0,3,V,222BDA,622BDA,ff,Value of glow voltage.00 ,18DAF1DA,32,39,.009785,0,3,V,222BDA,622BDA,ff,Value of glow voltage.01 ,18DAF1DA,40,47,.009785,0,3,V,222BDA,622BDA,ff,Value of glow voltage.02 ,18DAF1DA,48,55,.009785,0,3,V,222BDA,622BDA,ff,Value of glow voltage.03 ,18DAF1DA,30,31,1,0,0,,222BDB,622BDB,ff,Connector plug Type configuration,0:Connector plug Type1;1:Connector plug Type2;2:Connector plug Type GBT ,18DAF1DA,31,31,1,0,0,,222BDC,622BDC,ff,Desired motor configuration for plug lock delay selection,0:False- selection of Cxx_dly_plg_lck_dc;1:True- selection of Cxx_dly_plg_lck_ac ,18DAF1DA,31,31,1,0,0,,222BDE,622BDE,ff,Electromagnetic Traction Control configuration boolean,0:ETC absent;1:ETC present ,18DAF1DA,24,55,1,0,0,,222BE0,622BE0,4ff,DIDs supported in range [$2BE1 - $2C00] ,18DAF1DA,31,31,1,0,0,,222BE2,622BE2,ff,Driver door open information filtered for fuel heating system wake-up phase ,18DAF1DA,30,31,1,0,0,,222BE4,622BE4,ff,Current system/ECU sub-state,0:ECU on offline mode;1:Nsx_ecu_sub_pre_drv;2:ECU on classic mode;3:ECU on post-drive state ,18DAF1DA,25,27,1,0,0,,222BE5,622BE5,ff,Journaling Vsx_econav_trpdata_lih.04 ,18DAF1DA,28,30,1,0,0,,222BE5,622BE5,ff,Journaling Vsx_econav_trpdata_lih.03 ,18DAF1DA,31,33,1,0,0,,222BE5,622BE5,ff,Journaling Vsx_econav_trpdata_lih.02 ,18DAF1DA,34,36,1,0,0,,222BE5,622BE5,ff,Journaling Vsx_econav_trpdata_lih.01 ,18DAF1DA,37,39,1,0,0,,222BE5,622BE5,ff,Journaling Vsx_econav_trpdata_lih.00 ,18DAF1DA,24,39,.03125,32768,2,N·m,222BF3,622BF3,ff,Effective torque setpoint of cranck electrical engine component ,18DAF1DA,24,39,.03125,32768,2,N·m,222BF4,622BF4,ff,Effective torque setpoint of secondary electrical engine component ,18DAF1DA,31,31,1,0,0,,222BF5,622BF5,ff,Fuel Heating System Diagnostic Tool Switch-on condition status ,18DAF1DA,24,39,.03125,0,2,W,222BF6,622BF6,ff,Power dissipated on each glow plug as informed by the Heating Control Unit ,18DAF1DA,31,31,1,0,0,,222BF7,622BF7,ff,Indication if Fuel Heating System is active (end of line procedure finished with success) ,18DAF1DA,31,31,1,0,0,,222BF8,622BF8,ff,Fuel Heating System battery charge reset time ended ,18DAF1DA,24,31,1,0,0,,222BF9,622BF9,ff,Number of consecutive incorrect Preheating procedure ,18DAF1DA,24,39,1,0,0,,222BFD,622BFD,ff,Journaling Vnx_nr_tot_rcpt_nav_road_seg in case of optimization failure.04 ,18DAF1DA,40,55,1,0,0,,222BFD,622BFD,ff,Journaling Vnx_nr_tot_rcpt_nav_road_seg in case of optimization failure.03 ,18DAF1DA,56,71,1,0,0,,222BFD,622BFD,ff,Journaling Vnx_nr_tot_rcpt_nav_road_seg in case of optimization failure.02 ,18DAF1DA,72,87,1,0,0,,222BFD,622BFD,ff,Journaling Vnx_nr_tot_rcpt_nav_road_seg in case of optimization failure.01 ,18DAF1DA,88,103,1,0,0,,222BFD,622BFD,ff,Journaling Vnx_nr_tot_rcpt_nav_road_seg in case of optimization failure.00 ,18DAF1DA,24,39,.1,0,1,km,222BFE,622BFE,ff,Journaling Vxx_lgth_rcpt_nav_road in case of optimization failure.04 ,18DAF1DA,40,55,.1,0,1,km,222BFE,622BFE,ff,Journaling Vxx_lgth_rcpt_nav_road in case of optimization failure.03 ,18DAF1DA,56,71,.1,0,1,km,222BFE,622BFE,ff,Journaling Vxx_lgth_rcpt_nav_road in case of optimization failure.02 ,18DAF1DA,72,87,.1,0,1,km,222BFE,622BFE,ff,Journaling Vxx_lgth_rcpt_nav_road in case of optimization failure.01 ,18DAF1DA,88,103,.1,0,1,km,222BFE,622BFE,ff,Journaling Vxx_lgth_rcpt_nav_road in case of optimization failure.00 ,18DAF1DA,27,27,1,0,0,,222BFF,622BFF,ff,Journaling Vbx_zev_zon_road in case of optimization failure.04 ,18DAF1DA,28,28,1,0,0,,222BFF,622BFF,ff,Journaling Vbx_zev_zon_road in case of optimization failure.03 ,18DAF1DA,29,29,1,0,0,,222BFF,622BFF,ff,Journaling Vbx_zev_zon_road in case of optimization failure.02 ,18DAF1DA,30,30,1,0,0,,222BFF,622BFF,ff,Journaling Vbx_zev_zon_road in case of optimization failure.01 ,18DAF1DA,31,31,1,0,0,,222BFF,622BFF,ff,Journaling Vbx_zev_zon_road in case of optimization failure.00 ,18DAF1DA,24,55,1,0,0,,222C00,622C00,4ff,DIDs supported in range 2C01 - 2C20 ,18DAF1DA,29,31,1,1,0,,222C03,622C03,ff,Targetted gear engaged ,18DAF1DA,29,31,1,1,0,,222C04,622C04,ff,Current gear engaged ,18DAF1DA,24,55,1,0,0,,222C20,622C20,4ff,DIDs supported in range 2C21 - 2C40 ,18DAF1DA,31,31,1,0,0,,222C2C,622C2C,ff,Kick down state,0:no kick down;1:kick down ,18DAF1DA,24,55,1,0,0,,222C40,622C40,4ff,DIDs supported in range 2C41 - 2C60 ,18DAF1DA,30,31,1,0,0,,222C4F,622C4F,ff,ACC steering wheel commands validity transmitted to ACC ECU,0:ACC is unavailable;1:ACC is ok;2:ACC is nok ,18DAF1DA,29,31,1,0,0,,222C50,622C50,ff,ACC steering wheel commands transmitted to ACC ECU,0:No steering wheel switch is pressed;1:ACC is unavailable;3:The suspend switch is pressed;4:Set- is pressed;5:Set+ is pressed;6:Resume is pressed;7:Distance is pressed ,18DAF1DA,30,31,1,0,0,,222C51,622C51,ff,ACC speed limiter main switch position transmitted to ACC ECU,0:ACC is unavailable;1:Main switch is on SL;2:Main switch on ACC;3:ACC is off ,18DAF1DA,24,31,1,5,0,,222C57,622C57,ff,Driving gear on active shaft ,18DAF1DA,24,31,1,0,0,,222C59,622C59,ff,State of active clutch,0:Transmission coupler state is unavailable;1:Transmission coupler is closed;2:Transmission coupler is sliding;8:Coupler State open ,18DAF1DA,24,39,1,32768,0,,222C5C,622C5C,ff,Automatic transmission range output for display ,18DAF1DA,24,31,1,5,0,,222C5D,622C5D,ff,Target gear for active shaft ,18DAF1DA,24,55,1,0,0,,222C60,622C60,4ff,DIDs supported in range 2C61 - 2C80 ,18DAF1DA,24,55,1,0,0,,222C80,622C80,4ff,DIDs supported in range [$2C81 - $2CA0] ,18DAF1DA,24,39,1,0,0,rpm,222C9B,622C9B,ff,Automatic Transmission output shaft revolution speed ,18DAF1DA,24,55,1,0,0,,222D00,622D00,4ff,DIDs supported in range 2D01 - 2D20 ,18DAF1DA,24,55,1,0,0,,222D40,622D40,4ff,DIDs supported in range 2D41 - 2D60 ,18DAF1DA,24,55,1,0,0,,222D80,622D80,4ff,DIDs supported in range [$2D81 - $2DA0] ,18DAF1DA,24,55,1,0,0,,222E00,622E00,4ff,DIDs supported in range 2E01 - 2E20 ,18DAF1DA,24,55,1,0,0,,222E20,622E20,4ff,DIDs supported in range [$2E21 - $2E40] ,18DAF1DA,24,55,1,0,0,,222F00,622F00,4ff,DIDs supported in range [$2F01 - $2F20] ,18DAF1DA,24,55,1,0,0,,222F20,622F20,4ff,DIDs supported in range [$2F21 - $2F40] ,18DAF1DA,24,55,1,0,0,,222F40,622F40,4ff,DIDs supported in range [$2F41 - $2F60] ,18DAF1DA,24,55,1,0,0,,222F60,622F60,4ff,DIDs supported in range [$2F61 - $2F80] ,18DAF1DA,24,55,1,0,0,,223000,623000,4ff,DIDs supported in range [$3001 - $3020] ,18DAF1DA,30,31,1,0,0,,223001,623001,ff,Handshake Stateflow States,0:init state of Handshake supervisor;1:Hand shake state of Handshake superviso;2:Hand shake 2 state of the Handshake supervisor ,18DAF1DA,29,31,1,0,0,,223002,623002,ff,ChargingPlugs_Status,0:Plug Abscent;2:Plug Present;4:Plug Locked;6:2plugs present ,18DAF1DA,31,31,1,0,0,,223003,623003,ff,Consolidated FastChargeRelayStatus,0:No Failure;1:Failure detected ,18DAF1DA,24,39,.1,400,1,,223004,623004,ff,Temperature monitoring of DC combo inlet ,18DAF1DA,24,39,.1,400,1,,223005,623005,ff,Temperature monitoring of DCbox inlet consolidated ,18DAF1DA,24,39,50,0,0,W,223006,623006,ff,ComboEVSEMaximumPowerLimit ,18DAF1DA,30,31,1,0,0,,223007,623007,ff,Combo_DCExtendedConnectStatus parameter,1:DC extended not detected;2:DC extended detected state ,18DAF1DA,24,39,.1,0,1,V,223008,623008,ff,ComboEVSEMaximumVoltageLimit ,18DAF1DA,24,39,.1,0,1,A,223009,623009,ff,ComboEVSEMinimumCurrentLimit ,18DAF1DA,24,39,.1,0,1,A,22300A,62300A,ff,ComboEVSEMaximumCurrentLimit ,18DAF1DA,30,31,1,0,0,,22300B,62300B,ff,Consolidated with validity status of NumberOfPhasesUsed,0:one phase;1:two phases;2:three Phases;3:Unvailable Value ,18DAF1DA,31,31,1,0,0,,22300C,62300C,ff,Delivery mode information for Stop And Start - adapted for the S&S system,0:no inhibition;1:Inhibition of stop auto ,18DAF1DA,24,39,.1,0,1,A,22300D,62300D,ff,ConsolidatedMainsRMSCurrent ,18DAF1DA,24,39,.015625,0,2,kW,22300E,62300E,ff,Available power of charge AC ,18DAF1DA,24,39,.025,0,2,kW,22300F,62300F,ff,Available Charging Power AC ,18DAF1DA,31,31,1,0,0,,223010,623010,ff,reset bloc chargeur de batterie,0:no reset;1:Reset ,18DAF1DA,31,31,1,0,0,,223011,623011,ff,Slave,RefuseToSleep =RefuseToSleep sending condition on VEH CAN,1:RefuseToSleep ,18DAF1DA,30,31,1,0,0,,223012,623012,ff,Wake up and Sleep command from BCM (Master_WakeUpSleepCmd),0:Sleep command Go to Sleep;3:Wake up command for the CAN ,18DAF1DA,24,31,.0001,0,3,m,223013,623013,1ff,primaryClaw position on transfer shaft measured by the sensor ,18DAF1DA,24,31,.0001,0,3,m,223014,623014,1ff,primaryClaw position measured by the sensor ,18DAF1DA,24,31,.1,0,1,mm,223015,623015,1ff,MotorICEPosition: position of the ICE claw actuators ,18DAF1DA,24,31,.1,0,1,mm,223016,623016,1ff,MotorZEVPosition: position of the ZEV claw actuator ,18DAF1DA,24,31,.0001,0,3,m,223017,623017,1ff,secondaryClaw position measured by the sensor ,18DAF1DA,24,39,1,0,0,rpm,223018,623018,1ff,internal secondaryShaft speed ,18DAF1DA,24,39,.25,0,1,rpm,223019,623019,1ff,internal primaryShaft speed ,18DAF1DA,28,31,1,0,0,,22301A,62301A,ff,Vehicle states,5:Cut off pending;7:Auto start;2:Nsx_vh_stt_el_wkp;6:Powertrain running;3:Preparation to drive- initial starting in progress;1:Starting In Progress;4:Technical Wake up;0:Vehicle Electrically Asleep;8:Engine System Stop ,18DAF1DA,24,39,1,0,0,N·m,22301B,62301B,1ff,setpoint torque request at wheels ,18DAF1DA,24,39,.03125,12800,2,N·m,22301C,62301C,ff,Target torque for the internal combustion engine, after torque distribution at crankshaft ,18DAF1DA,24,39,.03125,12800,2,N·m,22301D,62301D,ff,Setpoint torque for the internal combustion engine, after torque distribution at crankshaft ,18DAF1DA,29,31,1,0,0,,22301E,62301E,ff,Current gear on secondary shaft electrical engine provided by SCM (Shift Control Management),0:neutral gear;1:ZEV1 gear engaged;2:ZEV2 gear engaged;3:Undefined 1;4:Undefined 2 ,18DAF1DA,29,31,1,0,0,,22301F,62301F,ff,Current gear on thermal engine provided by SCM (Shift Control Management),0:neutral gear;1:ICE1 gear engaged;2:ICE2 gear engaged;3:ICE3 gear engaged;4:ICE4 gear engaged;5:Undefined Left;6:Undefined Right ,18DAF1DA,24,55,1,0,0,,223020,623020,4ff,DIDs supported in range [$3021 - $3040] ,18DAF1DA,29,31,1,0,0,,223021,623021,ff,SCM actuators control mode,0:no request;1:position control;2:current control (offset learning);3:default mode;4:open-loop control;5:reset mod;6:speed control (offset learning ,18DAF1DA,24,31,.1,0,1,mm,223022,623022,1ff,MotorPositionCmd: Set point position of the claw motor_HEVC_LINGBA_R_01 ,18DAF1DA,30,31,1,0,0,,223023,623023,ff,state of selector position regulation,0:no request;1:activation to shift to high position;2:hold high position ,18DAF1DA,30,31,1,0,0,,223024,623024,ff,State of the shift control management actuor (or claw) selection,0:no request;1:electric motor selected;2:thermal engine selected ,18DAF1DA,30,31,1,0,0,,223025,623025,ff,Validity status of primary line fork sensor information,0:NOK;1:OK;2:Fail2 ,18DAF1DA,30,31,1,0,0,,223026,623026,ff,validity status of secondary fork sensor information,0:NOK;1:OK;2:Fail2 ,18DAF1DA,30,31,1,0,0,,223027,623027,ff,validity status of transfer line fork sensor information,0:NOK;1:OK;2:Fail2 ,18DAF1DA,29,31,1,0,0,,223028,623028,ff,Motor_ICE_Diag: diagnostic of the ICE claw actuators,0:No error;2:GBA-out-of-order state for secondary actuator LIN diagnostic;3:downgraded-performance state for secondary actuator LIN diagnostic;4:loop-command-only state for secondary actuator LIN diagnostic ,18DAF1DA,29,31,1,0,0,,223029,623029,ff,Motor_ZEV_Diag: diagnostic of the ZEV claw actuator,0:No error;2:GBA-out-of-order state for secondary actuator LIN diagnostic;3:downgraded-performance state for secondary actuator LIN diagnostic;4:loop-command-only state for secondary actuator LIN diagnostic ,18DAF1DA,24,31,.0001,0,3,m,22302A,62302A,1ff,selector position with offset taken into account ,18DAF1DA,24,31,.0001,0,3,m,22302B,62302B,1ff,consolidated position of the low-primary claw ,18DAF1DA,24,31,.0001,0,3,m,22302C,62302C,1ff,consolidated position of the high-primary claw ,18DAF1DA,24,31,.0001,0,3,m,22302D,62302D,1ff,signed instantaneous position of secondary claw ,18DAF1DA,28,31,1,0,0,,22302E,62302E,ff,identifier of the type of current transition,0:inactive;1:torque give-over;2:ICE torque zeroing;3:ICE disengagement;4:ICE synchronisation;5:ICE 1-3 selectio;6:ICE engagement;7:ZEV torque zeroing;8:ZEV disengagement;9:ZEV synchronisation;10:ZEV engagement ,18DAF1DA,24,31,1,0,0,,22302F,62302F,ff,next kinematic mode at the current step of the tansition sequence,0:neutral mode indicator;1:ZEV-1 mode indicator;2:ZEV-2 mode indicator;10:recharge mode indicator (1-0);11:hybrid 1-1 mode indicator;12:hybrid 3P2 mode indicator (1-2);20:hybrid 2 mode indicator (2-0);21:hybrid 2-1 mode indicator;22:hybrid 2-2 mode indicator;30:hybrid 3 mode indicator (3-0);31:hybrid 3-1 mode indicator;32:hybrid 3-2 mode indicator;40:hybrid 4 mode indicator (4-0);41:hybrid 4-1 mode indicator;42:hybrid 4-2 mode indicator ,18DAF1DA,31,31,1,0,0,,223030,623030,ff,Engine drying has timed out,0:no time out;1:time out ,18DAF1DA,31,31,1,0,0,,223031,623031,ff,Engine drying request,0:no time out;1:time out ,18DAF1DA,31,31,1,0,0,,223032,623032,ff,HV ready request for traction consolidated with AfterSales signals,0:no request;1:request ,18DAF1DA,24,39,.1,0,1,N·m,223033,623033,1ff,Max charge limitation of torque of E-motor2 according to the E-motor2 temperature ,18DAF1DA,24,39,.03125,32768,2,N·m,223034,623034,ff,EMotor 2 available torque charge theshold limitation ,18DAF1DA,24,39,.1,0,1,N·m,223035,623035,1ff,Max charge limitation of torque of E-motor according to the E-motor temperature ,18DAF1DA,24,39,.03125,0,2,N·m,223036,623036,ff,EMotor 1 available torque charge theshold limitation ,18DAF1DA,31,31,1,0,0,,22303C,62303C,ff,Inverter refuse to sleep flag,0:Inverter ready to sleep.;1:Inventor refuse to sleep ,18DAF1DA,24,39,100,0,0,Ohm,22303D,62303D,ff,Measured insulation resistance of the HVB (High Voltage Battery) ,18DAF1DA,24,39,.00005,0,3,,22303E,62303E,ff,Equivalent energy of 1% SOC(state of charge) ,18DAF1DA,24,31,1,40,0,,22303F,62303F,ff,Temperature of the HVB (High Voltage Battery) ,18DAF1DA,24,55,1,0,0,,223040,623040,4ff,DIDs supported in range [$3041 - $3060] ,18DAF1DA,29,31,1,0,0,,223041,623041,ff,Validity of status of the HVB (High Voltage Battery),0:HVB VLD;1:HVBSafety;2:MainBMSCommLoss;3:MainPRUNFault;4:BMSChgOpTypeFai;5:BMSNormalOpTypeFail;6:HVBFail;7:HVBWarn ,18DAF1DA,24,39,.1,0,1,V,223042,623042,ff,Voltage of HV Bus before the close of relay ,18DAF1DA,31,31,1,0,0,,223043,623043,ff,Flag of PEB Cooling Water Temperature is on when PEB temperature is out of range,0:Cooling Water Temperature of PEB is in its range;1:Cooling Water Temperature of PEB is out of its range ,18DAF1DA,24,39,.1,0,1,kW,223044,623044,ff,Available power of the HVB (High Voltage Battery) for external charge ,18DAF1DA,24,31,1,40,0,,223045,623045,ff,Cooling water temperature of the HVB (High Voltage Battery) ,18DAF1DA,24,39,.1,0,1,V,223046,623046,ff,Triangulation voltage of the HV Bus ,18DAF1DA,29,31,1,0,0,,223047,623047,ff,hv connection req,0:Nsx hv relay deconnection emg req;1:Nsx hv relay connection med req;3:Nsx hv relay connection norm req;4:Nsx hv relay deconnection norm req ,18DAF1DA,31,31,1,0,0,,223048,623048,ff,hv relay p2 req,0:no request;1:request for h2 relay ,18DAF1DA,30,31,1,0,0,,223049,623049,ff,MOTOR1_POSITION CAN message validity status,0:ECU sending the parameter is seen as validated absent on the CAN and Corresponding CAN parameter value is frozen OR The message has been received from the CAN with the unavailable value and Corresponding CAN parameter value has been frozen-;1:CAN frame present and valid value received (no unavailable value);2:ECU sending the parameter is seen as absent on the CAN and Corresponding CAN parameter value is frozen ,18DAF1DA,30,31,1,0,0,,22304A,62304A,ff,MOTOR2_POSITION LIN message validity,0:ECU sending the parameter is seen as validated absent on the CAN and Corresponding CAN parameter value is frozen OR The message has been received from the CAN with the unavailable value and Corresponding CAN parameter value has been frozen-;1:CAN frame present and valid value received (no unavailable value);2:ECU sending the parameter is seen as absent on the CAN and Corresponding CAN parameter value is frozen ,18DAF1DA,31,31,1,0,0,,22304B,62304B,ff,HV to PEB input interlock connector,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,22304C,62304C,ff,DC Charger interlock (charge type) connector state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,22304D,62304D,ff,Interlock of fuse Lid of the HV BMS state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,22304E,62304E,ff,PEB to PTC and Compressor interlock state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,22304F,62304F,ff,Electrical engine interlock state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,223050,623050,ff,Compressor interlock status,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,223051,623051,ff,PTC interlock state mux,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,223052,623052,ff,HSG interlock state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,223053,623053,ff,PEB to PTC interlock state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,223054,623054,ff,PEB to accessories interlock state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,223055,623055,ff,PEB access trap interlock state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,223056,623056,ff,PEB access trap fuse state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,223057,623057,ff,Internal charger loading interlock state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,223058,623058,ff,DC Charger interlock (traction type) connector state,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,223059,623059,ff,Interlock of connector( plug in) service of the BMS,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,22305A,62305A,ff,HV Battery interlock status,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,22305B,62305B,ff,Interlock of load of the HV BMS,0:closed;1:opened ,18DAF1DA,31,31,1,0,0,,22305C,62305C,ff,Insulation check for charge feedback,0:false-No RIsol Check Mod;1:true- RIsol Check Mode ,18DAF1DA,24,39,.5,0,1,N·m,22305D,62305D,1ff,Electrical Machine 2 Motor Torque ,18DAF1DA,24,55,1,0,0,,223060,623060,4ff,DIDs supported in range [$3061 - $3080] ,18DAF1DA,24,39,.02,0,2,%,223061,623061,ff,Inverter temperature ,18DAF1DA,24,39,.5,0,1,N·m,223062,623062,1ff,Electrical motor torque ,18DAF1DA,24,39,.02,0,2,%,223063,623063,ff,Electrical moteur temperature ,18DAF1DA,24,39,1,0,0,rpm,223064,623064,1ff,Electrical motor engine speed ,18DAF1DA,28,31,1,0,0,,223065,623065,ff,Inverter fault type,0:No Fault type Inverter;1:Fault type 1 INV Stopped C Class;2:Fault type 2 INV Stopped D Class;4:Fault type 3 Safety Barrier Lost;5:Fault type 4 Alert Service;6:Fault type 5 Charge Stop Alert4 ,18DAF1DA,24,39,.02,0,2,%,223066,623066,ff,HSG Electrical Machine Temperature ,18DAF1DA,24,39,.02,0,2,%,223067,623067,ff,HSG Inverter Temperature ,18DAF1DA,24,39,.5,0,1,N·m,223068,623068,1ff,HSGElectrical Machine Maximum Generative Torque.v2 ,18DAF1DA,24,39,1,0,0,rpm,223069,623069,1ff,Secondary electrical motor engine speed ,18DAF1DA,24,39,.03125,32768,2,N·m,22306A,62306A,ff,ElecMachineMotorTorque ,18DAF1DA,24,39,.5,0,1,N·m,22306B,62306B,1ff,Electrical moteur torque maximum charging ,18DAF1DA,24,31,1,40,0,,22306C,62306C,ff,inverter water temperature ,18DAF1DA,24,39,.5,0,1,N·m,22306D,62306D,1ff,HSGElectrical Machine Maximum Motor Torque.v2 ,18DAF1DA,24,39,.03125,32768,2,N·m,22306E,62306E,ff,Limitation of max discharge torque of EMachine 2 ,18DAF1DA,24,39,.03125,32768,2,N·m,22306F,62306F,ff,E-motor 2 available torque discharge theshold limitation ,18DAF1DA,24,39,.03125,32768,2,N·m,223070,623070,ff,Max discharge limitation of torque of E-motor according to the E-motor temperature ,18DAF1DA,24,39,.03125,0,2,N·m,223071,623071,ff,E-Motor 1 available torque discharge theshold limitation ,18DAF1DA,24,39,.1,400,1,,22307B,62307B,ff,The 10 lastest temperatures monitoring of Dcbox inletmemorized at end/interruption of battery charge.09 ,18DAF1DA,40,55,.1,400,1,,22307B,62307B,ff,The 10 lastest temperatures monitoring of Dcbox inletmemorized at end/interruption of battery charge.08 ,18DAF1DA,56,71,.1,400,1,,22307B,62307B,ff,The 10 lastest temperatures monitoring of Dcbox inletmemorized at end/interruption of battery charge.07 ,18DAF1DA,72,87,.1,400,1,,22307B,62307B,ff,The 10 lastest temperatures monitoring of Dcbox inletmemorized at end/interruption of battery charge.06 ,18DAF1DA,88,103,.1,400,1,,22307B,62307B,ff,The 10 lastest temperatures monitoring of Dcbox inletmemorized at end/interruption of battery charge.05 ,18DAF1DA,104,119,.1,400,1,,22307B,62307B,ff,The 10 lastest temperatures monitoring of Dcbox inletmemorized at end/interruption of battery charge.04 ,18DAF1DA,120,135,.1,400,1,,22307B,62307B,ff,The 10 lastest temperatures monitoring of Dcbox inletmemorized at end/interruption of battery charge.03 ,18DAF1DA,136,151,.1,400,1,,22307B,62307B,ff,The 10 lastest temperatures monitoring of Dcbox inletmemorized at end/interruption of battery charge.02 ,18DAF1DA,152,167,.1,400,1,,22307B,62307B,ff,The 10 lastest temperatures monitoring of Dcbox inletmemorized at end/interruption of battery charge.01 ,18DAF1DA,168,183,.1,400,1,,22307B,62307B,ff,The 10 lastest temperatures monitoring of Dcbox inletmemorized at end/interruption of battery charge.00 ,18DAF1DA,24,39,1,0,0,,22307C,62307C,ff,The 10 lastest mean values of available chg spot power during the chg AC OR chg DC memorized at end of battery chg.09,0:not requested;1:requested ,18DAF1DA,40,55,1,0,0,,22307C,62307C,ff,The 10 lastest mean values of available chg spot power during the chg AC OR chg DC memorized at end of battery chg.08,0:not requested;1:requested ,18DAF1DA,56,71,1,0,0,,22307C,62307C,ff,The 10 lastest mean values of available chg spot power during the chg AC OR chg DC memorized at end of battery chg.07,0:not requested;1:requested ,18DAF1DA,72,87,1,0,0,,22307C,62307C,ff,The 10 lastest mean values of available chg spot power during the chg AC OR chg DC memorized at end of battery chg.06,0:not requested;1:requested ,18DAF1DA,88,103,1,0,0,,22307C,62307C,ff,The 10 lastest mean values of available chg spot power during the chg AC OR chg DC memorized at end of battery chg.05,0:not requested;1:requested ,18DAF1DA,104,119,1,0,0,,22307C,62307C,ff,The 10 lastest mean values of available chg spot power during the chg AC OR chg DC memorized at end of battery chg.04,0:not requested;1:requested ,18DAF1DA,120,135,1,0,0,,22307C,62307C,ff,The 10 lastest mean values of available chg spot power during the chg AC OR chg DC memorized at end of battery chg.03,0:not requested;1:requested ,18DAF1DA,136,151,1,0,0,,22307C,62307C,ff,The 10 lastest mean values of available chg spot power during the chg AC OR chg DC memorized at end of battery chg.02,0:not requested;1:requested ,18DAF1DA,152,167,1,0,0,,22307C,62307C,ff,The 10 lastest mean values of available chg spot power during the chg AC OR chg DC memorized at end of battery chg.01,0:not requested;1:requested ,18DAF1DA,168,183,1,0,0,,22307C,62307C,ff,The 10 lastest mean values of available chg spot power during the chg AC OR chg DC memorized at end of battery chg.00,0:not requested;1:requested ,18DAF1DA,24,27,1,0,0,,22307D,62307D,ff,10 lastest charge interruption reason.09,0:not requested;1:requested ,18DAF1DA,28,31,1,0,0,,22307D,62307D,ff,10 lastest charge interruption reason.08,0:not requested;1:requested ,18DAF1DA,32,35,1,0,0,,22307D,62307D,ff,10 lastest charge interruption reason.07,0:not requested;1:requested ,18DAF1DA,36,39,1,0,0,,22307D,62307D,ff,10 lastest charge interruption reason.06,0:not requested;1:requested ,18DAF1DA,40,43,1,0,0,,22307D,62307D,ff,10 lastest charge interruption reason.05,0:not requested;1:requested ,18DAF1DA,44,47,1,0,0,,22307D,62307D,ff,10 lastest charge interruption reason.04,0:not requested;1:requested ,18DAF1DA,48,51,1,0,0,,22307D,62307D,ff,10 lastest charge interruption reason.03,0:not requested;1:requested ,18DAF1DA,52,55,1,0,0,,22307D,62307D,ff,10 lastest charge interruption reason.02,0:not requested;1:requested ,18DAF1DA,56,59,1,0,0,,22307D,62307D,ff,10 lastest charge interruption reason.01,0:not requested;1:requested ,18DAF1DA,60,63,1,0,0,,22307D,62307D,ff,10 lastest charge interruption reason.00,0:not requested;1:requested ,18DAF1DA,24,39,1,0,0,,22307E,62307E,ff,The 10 lastest max values of the available chg spot power during the chg AC OR chg DC at end of battery chg.09,0:not requested;1:requested ,18DAF1DA,40,55,1,0,0,,22307E,62307E,ff,The 10 lastest max values of the available chg spot power during the chg AC OR chg DC at end of battery chg.08,0:not requested;1:requested ,18DAF1DA,56,71,1,0,0,,22307E,62307E,ff,The 10 lastest max values of the available chg spot power during the chg AC OR chg DC at end of battery chg.07,0:not requested;1:requested ,18DAF1DA,72,87,1,0,0,,22307E,62307E,ff,The 10 lastest max values of the available chg spot power during the chg AC OR chg DC at end of battery chg.06,0:not requested;1:requested ,18DAF1DA,88,103,1,0,0,,22307E,62307E,ff,The 10 lastest max values of the available chg spot power during the chg AC OR chg DC at end of battery chg.05,0:not requested;1:requested ,18DAF1DA,104,119,1,0,0,,22307E,62307E,ff,The 10 lastest max values of the available chg spot power during the chg AC OR chg DC at end of battery chg.04,0:not requested;1:requested ,18DAF1DA,120,135,1,0,0,,22307E,62307E,ff,The 10 lastest max values of the available chg spot power during the chg AC OR chg DC at end of battery chg.03,0:not requested;1:requested ,18DAF1DA,136,151,1,0,0,,22307E,62307E,ff,The 10 lastest max values of the available chg spot power during the chg AC OR chg DC at end of battery chg.02,0:not requested;1:requested ,18DAF1DA,152,167,1,0,0,,22307E,62307E,ff,The 10 lastest max values of the available chg spot power during the chg AC OR chg DC at end of battery chg.01,0:not requested;1:requested ,18DAF1DA,168,183,1,0,0,,22307E,62307E,ff,The 10 lastest max values of the available chg spot power during the chg AC OR chg DC at end of battery chg.00,0:not requested;1:requested ,18DAF1DA,24,39,.1,400,1,,22307F,62307F,ff,The 10 lastest chg inlet temp_AC during the chg AC OR inlet temp_DC during the chg DC memorized at the end of batt chg.09 ,18DAF1DA,40,55,.1,400,1,,22307F,62307F,ff,The 10 lastest chg inlet temp_AC during the chg AC OR inlet temp_DC during the chg DC memorized at the end of batt chg.08 ,18DAF1DA,56,71,.1,400,1,,22307F,62307F,ff,The 10 lastest chg inlet temp_AC during the chg AC OR inlet temp_DC during the chg DC memorized at the end of batt chg.07 ,18DAF1DA,72,87,.1,400,1,,22307F,62307F,ff,The 10 lastest chg inlet temp_AC during the chg AC OR inlet temp_DC during the chg DC memorized at the end of batt chg.06 ,18DAF1DA,88,103,.1,400,1,,22307F,62307F,ff,The 10 lastest chg inlet temp_AC during the chg AC OR inlet temp_DC during the chg DC memorized at the end of batt chg.05 ,18DAF1DA,104,119,.1,400,1,,22307F,62307F,ff,The 10 lastest chg inlet temp_AC during the chg AC OR inlet temp_DC during the chg DC memorized at the end of batt chg.04 ,18DAF1DA,120,135,.1,400,1,,22307F,62307F,ff,The 10 lastest chg inlet temp_AC during the chg AC OR inlet temp_DC during the chg DC memorized at the end of batt chg.03 ,18DAF1DA,136,151,.1,400,1,,22307F,62307F,ff,The 10 lastest chg inlet temp_AC during the chg AC OR inlet temp_DC during the chg DC memorized at the end of batt chg.02 ,18DAF1DA,152,167,.1,400,1,,22307F,62307F,ff,The 10 lastest chg inlet temp_AC during the chg AC OR inlet temp_DC during the chg DC memorized at the end of batt chg.01 ,18DAF1DA,168,183,.1,400,1,,22307F,62307F,ff,The 10 lastest chg inlet temp_AC during the chg AC OR inlet temp_DC during the chg DC memorized at the end of batt chg.00 ,18DAF1DA,24,55,1,0,0,,223080,623080,4ff,DIDs supported in range [$3081 - $30A0] ,18DAF1DA,24,47,1,0,0,min,223081,623081,ff,The 10 lastest Absolute times at the start of battery charge memorized at the end/interruption of battery charge.09 ,18DAF1DA,48,71,1,0,0,min,223081,623081,ff,The 10 lastest Absolute times at the start of battery charge memorized at the end/interruption of battery charge.08 ,18DAF1DA,72,95,1,0,0,min,223081,623081,ff,The 10 lastest Absolute times at the start of battery charge memorized at the end/interruption of battery charge.07 ,18DAF1DA,96,119,1,0,0,min,223081,623081,ff,The 10 lastest Absolute times at the start of battery charge memorized at the end/interruption of battery charge.06 ,18DAF1DA,120,143,1,0,0,min,223081,623081,ff,The 10 lastest Absolute times at the start of battery charge memorized at the end/interruption of battery charge.05 ,18DAF1DA,144,167,1,0,0,min,223081,623081,ff,The 10 lastest Absolute times at the start of battery charge memorized at the end/interruption of battery charge.04 ,18DAF1DA,168,191,1,0,0,min,223081,623081,ff,The 10 lastest Absolute times at the start of battery charge memorized at the end/interruption of battery charge.03 ,18DAF1DA,192,215,1,0,0,min,223081,623081,ff,The 10 lastest Absolute times at the start of battery charge memorized at the end/interruption of battery charge.02 ,18DAF1DA,216,239,1,0,0,min,223081,623081,ff,The 10 lastest Absolute times at the start of battery charge memorized at the end/interruption of battery charge.01 ,18DAF1DA,240,263,1,0,0,min,223081,623081,ff,The 10 lastest Absolute times at the start of battery charge memorized at the end/interruption of battery charge.00 ,18DAF1DA,24,31,1,40,0,,223082,623082,ff,The 10 lastest maximum temperatures of the HVB at start of charge memorized at the end/interruption of battery charge.09 ,18DAF1DA,32,39,1,40,0,,223082,623082,ff,The 10 lastest maximum temperatures of the HVB at start of charge memorized at the end/interruption of battery charge.08 ,18DAF1DA,40,47,1,40,0,,223082,623082,ff,The 10 lastest maximum temperatures of the HVB at start of charge memorized at the end/interruption of battery charge.07 ,18DAF1DA,48,55,1,40,0,,223082,623082,ff,The 10 lastest maximum temperatures of the HVB at start of charge memorized at the end/interruption of battery charge.06 ,18DAF1DA,56,63,1,40,0,,223082,623082,ff,The 10 lastest maximum temperatures of the HVB at start of charge memorized at the end/interruption of battery charge.05 ,18DAF1DA,64,71,1,40,0,,223082,623082,ff,The 10 lastest maximum temperatures of the HVB at start of charge memorized at the end/interruption of battery charge.04 ,18DAF1DA,72,79,1,40,0,,223082,623082,ff,The 10 lastest maximum temperatures of the HVB at start of charge memorized at the end/interruption of battery charge.03 ,18DAF1DA,80,87,1,40,0,,223082,623082,ff,The 10 lastest maximum temperatures of the HVB at start of charge memorized at the end/interruption of battery charge.02 ,18DAF1DA,88,95,1,40,0,,223082,623082,ff,The 10 lastest maximum temperatures of the HVB at start of charge memorized at the end/interruption of battery charge.01 ,18DAF1DA,96,103,1,40,0,,223082,623082,ff,The 10 lastest maximum temperatures of the HVB at start of charge memorized at the end/interruption of battery charge.00 ,18DAF1DA,24,39,.02,0,2,%,223083,623083,ff,The 10 lastest estimated percentages of SOC at start of charge memorized at the end/interruption of battery charge.09 ,18DAF1DA,40,55,.02,0,2,%,223083,623083,ff,The 10 lastest estimated percentages of SOC at start of charge memorized at the end/interruption of battery charge.08 ,18DAF1DA,56,71,.02,0,2,%,223083,623083,ff,The 10 lastest estimated percentages of SOC at start of charge memorized at the end/interruption of battery charge.07 ,18DAF1DA,72,87,.02,0,2,%,223083,623083,ff,The 10 lastest estimated percentages of SOC at start of charge memorized at the end/interruption of battery charge.06 ,18DAF1DA,88,103,.02,0,2,%,223083,623083,ff,The 10 lastest estimated percentages of SOC at start of charge memorized at the end/interruption of battery charge.05 ,18DAF1DA,104,119,.02,0,2,%,223083,623083,ff,The 10 lastest estimated percentages of SOC at start of charge memorized at the end/interruption of battery charge.04 ,18DAF1DA,120,135,.02,0,2,%,223083,623083,ff,The 10 lastest estimated percentages of SOC at start of charge memorized at the end/interruption of battery charge.03 ,18DAF1DA,136,151,.02,0,2,%,223083,623083,ff,The 10 lastest estimated percentages of SOC at start of charge memorized at the end/interruption of battery charge.02 ,18DAF1DA,152,167,.02,0,2,%,223083,623083,ff,The 10 lastest estimated percentages of SOC at start of charge memorized at the end/interruption of battery charge.01 ,18DAF1DA,168,183,.02,0,2,%,223083,623083,ff,The 10 lastest estimated percentages of SOC at start of charge memorized at the end/interruption of battery charge.00 ,18DAF1DA,28,29,1,0,0,,223084,623084,ff,The 10 lastest type of charge memorized at end/interruption of battery charge.09 ,18DAF1DA,30,31,1,0,0,,223084,623084,ff,The 10 lastest type of charge memorized at end/interruption of battery charge.08 ,18DAF1DA,32,33,1,0,0,,223084,623084,ff,The 10 lastest type of charge memorized at end/interruption of battery charge.07 ,18DAF1DA,34,35,1,0,0,,223084,623084,ff,The 10 lastest type of charge memorized at end/interruption of battery charge.06 ,18DAF1DA,36,37,1,0,0,,223084,623084,ff,The 10 lastest type of charge memorized at end/interruption of battery charge.05 ,18DAF1DA,38,39,1,0,0,,223084,623084,ff,The 10 lastest type of charge memorized at end/interruption of battery charge.04 ,18DAF1DA,40,41,1,0,0,,223084,623084,ff,The 10 lastest type of charge memorized at end/interruption of battery charge.03 ,18DAF1DA,42,43,1,0,0,,223084,623084,ff,The 10 lastest type of charge memorized at end/interruption of battery charge.02 ,18DAF1DA,44,45,1,0,0,,223084,623084,ff,The 10 lastest type of charge memorized at end/interruption of battery charge.01 ,18DAF1DA,46,47,1,0,0,,223084,623084,ff,The 10 lastest type of charge memorized at end/interruption of battery charge.00 ,18DAF1DA,24,47,1,0,0,km,223085,623085,ff,The 10 lastest total vehicle distances memorized at the end/interruption of battery charge.09 ,18DAF1DA,48,71,1,0,0,km,223085,623085,ff,The 10 lastest total vehicle distances memorized at the end/interruption of battery charge.08 ,18DAF1DA,72,95,1,0,0,km,223085,623085,ff,The 10 lastest total vehicle distances memorized at the end/interruption of battery charge.07 ,18DAF1DA,96,119,1,0,0,km,223085,623085,ff,The 10 lastest total vehicle distances memorized at the end/interruption of battery charge.06 ,18DAF1DA,120,143,1,0,0,km,223085,623085,ff,The 10 lastest total vehicle distances memorized at the end/interruption of battery charge.05 ,18DAF1DA,144,167,1,0,0,km,223085,623085,ff,The 10 lastest total vehicle distances memorized at the end/interruption of battery charge.04 ,18DAF1DA,168,191,1,0,0,km,223085,623085,ff,The 10 lastest total vehicle distances memorized at the end/interruption of battery charge.03 ,18DAF1DA,192,215,1,0,0,km,223085,623085,ff,The 10 lastest total vehicle distances memorized at the end/interruption of battery charge.02 ,18DAF1DA,216,239,1,0,0,km,223085,623085,ff,The 10 lastest total vehicle distances memorized at the end/interruption of battery charge.01 ,18DAF1DA,240,263,1,0,0,km,223085,623085,ff,The 10 lastest total vehicle distances memorized at the end/interruption of battery charge.00 ,18DAF1DA,24,39,1,0,0,min,223086,623086,ff,The 10 lastest values of the charge duration memorized at end/interruption of battery charge.09 ,18DAF1DA,40,55,1,0,0,min,223086,623086,ff,The 10 lastest values of the charge duration memorized at end/interruption of battery charge.08 ,18DAF1DA,56,71,1,0,0,min,223086,623086,ff,The 10 lastest values of the charge duration memorized at end/interruption of battery charge.07 ,18DAF1DA,72,87,1,0,0,min,223086,623086,ff,The 10 lastest values of the charge duration memorized at end/interruption of battery charge.06 ,18DAF1DA,88,103,1,0,0,min,223086,623086,ff,The 10 lastest values of the charge duration memorized at end/interruption of battery charge.05 ,18DAF1DA,104,119,1,0,0,min,223086,623086,ff,The 10 lastest values of the charge duration memorized at end/interruption of battery charge.04 ,18DAF1DA,120,135,1,0,0,min,223086,623086,ff,The 10 lastest values of the charge duration memorized at end/interruption of battery charge.03 ,18DAF1DA,136,151,1,0,0,min,223086,623086,ff,The 10 lastest values of the charge duration memorized at end/interruption of battery charge.02 ,18DAF1DA,152,167,1,0,0,min,223086,623086,ff,The 10 lastest values of the charge duration memorized at end/interruption of battery charge.01 ,18DAF1DA,168,183,1,0,0,min,223086,623086,ff,The 10 lastest values of the charge duration memorized at end/interruption of battery charge.00 ,18DAF1DA,24,39,.5,0,1,Hz,223087,623087,ff,J1772 control pilot raw frequency ,18DAF1DA,24,31,.5,0,1,%,223088,623088,ff,J1772 control pilot raw duty cycle ,18DAF1DA,24,31,.25,0,1,V,223089,623089,1ff,J1772 control pilot voltage ,18DAF1DA,24,39,.01,0,2,V,22308A,62308A,ff,Mains detection logic V ,18DAF1DA,24,31,1,40,0,,22308B,62308B,ff,temperature of the vehicle plug ,18DAF1DA,31,31,1,0,0,,22308C,62308C,ff,Over current flag for the electrical oil pump,0:false- no over current;1:true- over current ,18DAF1DA,24,31,1,0,0,rpm,22308D,62308D,ff,feedback of the oil pump ,18DAF1DA,24,39,.1,400,1,,22308E,62308E,ff,actual electronic temperature of the electrical oil pump ,18DAF1DA,24,31,1,0,0,,22308F,62308F,ff,Vehicle driveline status,0:Driveline state in neutral;1:Driveline state in 1;2:Driveline state in 2;3:Driveline state in 3;4:Driveline state in 4;5:Driveline state in 5;6:Driveline state in 6;7:Driveline state in 7;8:Driveline state in 8;9:Driveline state in 9;10:Driveline state in 10;11:Driveline state in 11;12:Driveline state in 12;13:Driveline state in 13;14:Driveline state in 14;15:Driveline state in 15;16:Driveline state in 16;17:Driveline state in 17;18:Driveline state in 18;19:Driveline state in 19;20:Driveline state in 20;21:Driveline state in 21;22:Driveline state in 22;23:Driveline state in 23;24:Driveline state in 24;25:Driveline state in 25;26:Driveline state in 26;253:Driveline state in reverse 2.;254:Driveline state in reverse 1 ,18DAF1DA,30,31,1,0,0,,223090,623090,ff,Journaling Vsx_chg_dri in case of Optimization Failure.04 ,18DAF1DA,32,33,1,0,0,,223090,623090,ff,Journaling Vsx_chg_dri in case of Optimization Failure.03 ,18DAF1DA,34,35,1,0,0,,223090,623090,ff,Journaling Vsx_chg_dri in case of Optimization Failure.02 ,18DAF1DA,36,37,1,0,0,,223090,623090,ff,Journaling Vsx_chg_dri in case of Optimization Failure.01 ,18DAF1DA,38,39,1,0,0,,223090,623090,ff,Journaling Vsx_chg_dri in case of Optimization Failure.00 ,18DAF1DA,31,31,1,0,0,,223095,623095,ff,MHA Network configuration detection : ADAS Unit status ,18DAF1DA,29,31,1,0,0,,223096,623096,ff,diagnostic of the ZEV claw actuator(alias of Motor_ZEV_Diag CAN message),0:no error;2:GBA-out-of-order state for secondary actuator;3:downgraded-performance state for secondary actuator;4:loop-command-only state for secondary actuator ,18DAF1DA,24,31,1,0,0,,223097,623097,ff,Number of consecutive correct Preheating procedure ,18DAF1DA,31,31,1,0,0,,22309A,62309A,ff,Fuel Heating System operating in power reduction mode ,18DAF1DA,31,31,1,0,0,,22309B,62309B,ff,Low Priority error present in the Fuel Heating System ,18DAF1DA,31,31,1,0,0,,22309C,62309C,ff,High Priority error present in the Fuel Heating System ,18DAF1DA,24,31,1,0,0,,22309D,62309D,ff,Fuel Heating System number of pre-heating performed in PREDRIVE mode ,18DAF1DA,24,31,1,0,0,,22309E,62309E,ff,Fuel Heating System External release conditions logic state ,18DAF1DA,24,55,1,0,0,,2230A0,6230A0,4ff,DIDs supported in range [$30A1 - $30C0] ,18DAF1DA,31,31,1,0,0,,2230A2,6230A2,ff,Fuel heating for flex-fuel engines is present or not ,18DAF1DA,24,31,.75,64,1,,2230A3,6230A3,ff,Fuel temperature setpoint ,18DAF1DA,24,31,.75,64,1,,2230A4,6230A4,ff,Model value of fuel temperature ,18DAF1DA,30,31,1,0,0,,2230A5,6230A5,ff,Requested state for the transmission of power requests to the HCU,0:Sleep mode of the Heating Control Unit;1:Standby mode of the Heating Control Unit;2:Active mode of the Heating Control Unit ,18DAF1DA,29,31,1,0,0,,2230A6,6230A6,ff,Fuel heating for flex fuel engines information lamp state,0:State of no light demanded for fuel heating system for flex fuel engines;1:State of pre-heating phase light demanded for fuel heating system for flex fuel engines;2:State of hold phase light demanded for fuel heating system for flex fuel engines;3:State of post-heating phase light demanded for fuel heating system for flex fuel engines;4:State of failure light demanded for fuel heating system for flex fuel engines ,18DAF1DA,24,31,1,0,0,,2230A7,6230A7,ff,Fuel Heating System Current State,0:Initialization;1:Normal operation hierarchy state;2:Pos-drive Mode;4:Major error detected hierarchy state;6:EOL activation - hierarchy state;11:Initialization for normal operation mode;13:Nsx_ctrl_log_pre_heat;14:Engine start released hierarchy state;15:Post heating phase;17:Start blocked after re-heating attempts exceeded;41:Major error detected and engine not running;42:Major error detected and engine running;61:Wait for cranking event;62:Monitor cranking time to assure filled rail;63:EOL test. Wake Heating Control Unit to standby mode;64:EOL test. Active mode. Turn heaters on;65:EOL test. Active mode. Turn heaters off;66:EOL test. Return Heating Control Unit to standby mode;111:Release start and wait for cranking;112:Release start and resume heating during cranking;121:Self-test. Reset communication with Heating Control Unit;122:Self-test. Wake Heating Control Unit to standby mode;123:Self-test. Active mode. Turn heaters on.;124:Self-test. Active mode. Turn heaters off;125:Self-test. Return Heating Control Unit to standby mode ,18DAF1DA,31,31,1,0,0,,2230B1,6230B1,ff,Auto Braking is activated,0:Auto braking disabled;1:Auto braking enabled ,18DAF1DA,29,31,1,0,0,,2230B6,6230B6,ff,diagnostic of the ICE claw actuators(alias of Motor_ICE_Diag CAN message),0:no error;2:GBA-out-of-order state for secondary actuator;3:downgraded-performance state for secondary actuator;4:loop-command-only state for secondary actuator ,18DAF1DA,24,31,1,0,0,,2230B7,6230B7,ff,The number of DC Charge relays opening with DC current still present [DC_chg_relay_number_of_opening_with_current] ,18DAF1DA,24,39,1,0,0,,2230B8,6230B8,ff,The charge system[supervisor] shall transmit to the connectivity system [BLMS] the nb of DC Charge relays opening ,18DAF1DA,24,39,1,0,0,,2230B9,6230B9,ff,The number of DC Charge relays closing [DC_chg_relay_number_of_closing] ,18DAF1DA,24,31,1,0,0,,2230BA,6230BA,ff,S2 Relay state,0:S2 closed;1:S2 open | Vbx_s2_rdcy_rly_ctl request (lvl1);2:S2 open | BSW fast opening line;3:S2 open | Vbx_sfty_s2_rdcy_rly_oc request;4:S2 open | Predrive check;5:S2 redundancy Predrive check failed ,18DAF1DA,24,39,1,0,0,,2230BB,6230BB,ff,The number of AC Charger starts ,18DAF1DA,24,39,.0001,0,3,,2230BC,6230BC,ff,PWM gearbox lever track 1 ratio value ,18DAF1DA,31,31,1,0,0,,2230BF,6230BF,ff,End Of Line AC charge Test,0:Test not performed 0;1:Test performed 1 ,18DAF1DA,24,55,1,0,0,,2230C0,6230C0,4ff,DIDs supported in range [$30C1 - $30E0] ,18DAF1DA,24,39,1,0,0,,2230C5,6230C5,ff,Tenth context data for level 2 monitoring function failure ,18DAF1DA,24,39,1,0,0,,2230C6,6230C6,ff,Ninth context data for level 2 monitoring function failure ,18DAF1DA,24,39,1,0,0,,2230C7,6230C7,ff,Eighth context data for level 2 monitoring function failure. ,18DAF1DA,24,39,1,0,0,,2230C8,6230C8,ff,Seventh context data for level 2 monitoring function failure. ,18DAF1DA,24,39,1,0,0,,2230C9,6230C9,ff,Sixth context data for level 2 monitoring function failure. ,18DAF1DA,24,39,1,0,0,,2230CA,6230CA,ff,Fifth context data for level 2 monitoring function failure. ,18DAF1DA,24,39,1,0,0,,2230CB,6230CB,ff,Freeze frame data (4) for level 2 failure diagnosis ,18DAF1DA,24,39,1,0,0,,2230CC,6230CC,ff,Freeze frame data (3) for level 2 failure diagnosis ,18DAF1DA,24,39,1,0,0,,2230CD,6230CD,ff,Freeze frame data (2) for level 2 failure diagnosis ,18DAF1DA,24,39,1,0,0,,2230CE,6230CE,ff,Freeze frame data (1) for level 2 failure diagnosis ,18DAF1DA,24,39,1,0,0,,2230CF,6230CF,ff,Freeze frame data (0) for level 2 failure diagnosis ,18DAF1DA,24,55,1,-2147483648,0,s,2230D5,6230D5,1ff,Total boost time HEVC to BMS ,18DAF1DA,24,55,1,0,0,,2230E0,6230E0,4ff,DIDs supported in range [$30E1 - $3100] ,18DAF1DA,31,31,1,0,0,,2230F4,6230F4,ff,End Of Line DC combo charge Test,0:DC test not performed;1:DC test performed ,18DAF1DA,24,31,1,0,0,,2230F5,6230F5,ff,Plug locking mechanism configuration,0:Nsx_hv_plg_lck_typ_2297a (Kiekert mechanism);1:Nsx_hv_plg_lck_typ_2297b (Kuester mechanism);2:Nsx_hv_plg_lck_typ_2297c  (Tyco locking mechanism);3:Nsx_hv_plg_lck_typ_2297d (Nissan Type1 locking mechanism) ,18DAF1DA,31,31,1,0,0,,2230F6,6230F6,ff,Data indicating the presence of the tachygraph in the vehicle ,18DAF1DA,31,31,1,0,0,,2230F7,6230F7,ff,Air conditioning ECU type (True from BCM False from HVAC) ,18DAF1DA,31,31,1,0,0,,2230F8,6230F8,ff,[Stop and Start Gen2] Sailing Stop MPU Status,0:Deactivated;1:Activated ,18DAF1DA,24,39,1,0,0,mV,2230FD,6230FD,ff,Power supply voltage raw acquisition of mastervac pressure sensor ,18DAF1DA,24,55,1,0,0,,223100,623100,4ff,DIDs supported in range [$3101 - $3120] ,18DAF1DA,24,39,.001525902,0,3,,22310E,62310E,ff,Ratio of filtered MAP signal for CPS check ,18DAF1DA,24,39,.1,0,1,,223110,623110,ff,Vector of the consumption data (Auxiliary consumption).00 ,18DAF1DA,40,55,.1,0,1,,223110,623110,ff,Vector of the consumption data (Auxiliary consumption).01 ,18DAF1DA,56,71,.1,0,1,,223110,623110,ff,Vector of the consumption data (Auxiliary consumption).02 ,18DAF1DA,72,87,.1,0,1,,223110,623110,ff,Vector of the consumption data (Auxiliary consumption).03 ,18DAF1DA,88,103,.1,0,1,,223110,623110,ff,Vector of the consumption data (Auxiliary consumption).04 ,18DAF1DA,104,119,.1,0,1,,223110,623110,ff,Vector of the consumption data (Auxiliary consumption).05 ,18DAF1DA,120,135,.1,0,1,,223110,623110,ff,Vector of the consumption data (Auxiliary consumption).06 ,18DAF1DA,136,151,.1,0,1,,223110,623110,ff,Vector of the consumption data (Auxiliary consumption).07 ,18DAF1DA,152,167,.1,0,1,,223110,623110,ff,Vector of the consumption data (Auxiliary consumption).08 ,18DAF1DA,168,183,.1,0,1,,223110,623110,ff,Vector of the consumption data (Auxiliary consumption).09 ,18DAF1DA,24,39,.1,0,1,,223111,623111,ff,Vector of the consumption data stored in EEPROM.00 ,18DAF1DA,40,55,.1,0,1,,223111,623111,ff,Vector of the consumption data stored in EEPROM.01 ,18DAF1DA,56,71,.1,0,1,,223111,623111,ff,Vector of the consumption data stored in EEPROM.02 ,18DAF1DA,72,87,.1,0,1,,223111,623111,ff,Vector of the consumption data stored in EEPROM.03 ,18DAF1DA,88,103,.1,0,1,,223111,623111,ff,Vector of the consumption data stored in EEPROM.04 ,18DAF1DA,104,119,.1,0,1,,223111,623111,ff,Vector of the consumption data stored in EEPROM.05 ,18DAF1DA,120,135,.1,0,1,,223111,623111,ff,Vector of the consumption data stored in EEPROM.06 ,18DAF1DA,136,151,.1,0,1,,223111,623111,ff,Vector of the consumption data stored in EEPROM.07 ,18DAF1DA,152,167,.1,0,1,,223111,623111,ff,Vector of the consumption data stored in EEPROM.08 ,18DAF1DA,168,183,.1,0,1,,223111,623111,ff,Vector of the consumption data stored in EEPROM.09 ,18DAF1DA,24,55,.1,-2147483648,1,km,223112,623112,1ff,Vector of the consumption data(driven distance in HEV mode) stored in EEPROM.00 ,18DAF1DA,56,87,.1,-2147483648,1,km,223112,623112,1ff,Vector of the consumption data(driven distance in HEV mode) stored in EEPROM.01 ,18DAF1DA,88,119,.1,-2147483648,1,km,223112,623112,1ff,Vector of the consumption data(driven distance in HEV mode) stored in EEPROM.02 ,18DAF1DA,120,151,.1,-2147483648,1,km,223112,623112,1ff,Vector of the consumption data(driven distance in HEV mode) stored in EEPROM.03 ,18DAF1DA,152,183,.1,-2147483648,1,km,223112,623112,1ff,Vector of the consumption data(driven distance in HEV mode) stored in EEPROM.04 ,18DAF1DA,184,215,.1,-2147483648,1,km,223112,623112,1ff,Vector of the consumption data(driven distance in HEV mode) stored in EEPROM.05 ,18DAF1DA,216,247,.1,-2147483648,1,km,223112,623112,1ff,Vector of the consumption data(driven distance in HEV mode) stored in EEPROM.06 ,18DAF1DA,248,279,.1,-2147483648,1,km,223112,623112,1ff,Vector of the consumption data(driven distance in HEV mode) stored in EEPROM.07 ,18DAF1DA,280,311,.1,-2147483648,1,km,223112,623112,1ff,Vector of the consumption data(driven distance in HEV mode) stored in EEPROM.08 ,18DAF1DA,312,343,.1,-2147483648,1,km,223112,623112,1ff,Vector of the consumption data(driven distance in HEV mode) stored in EEPROM.09 ,18DAF1DA,24,55,.1,-2147483648,1,km,223113,623113,1ff,Vector of the consumption data (driven distance in ZEV mode) stored in EEPROM.00 ,18DAF1DA,56,87,.1,-2147483648,1,km,223113,623113,1ff,Vector of the consumption data (driven distance in ZEV mode) stored in EEPROM.01 ,18DAF1DA,88,119,.1,-2147483648,1,km,223113,623113,1ff,Vector of the consumption data (driven distance in ZEV mode) stored in EEPROM.02 ,18DAF1DA,120,151,.1,-2147483648,1,km,223113,623113,1ff,Vector of the consumption data (driven distance in ZEV mode) stored in EEPROM.03 ,18DAF1DA,152,183,.1,-2147483648,1,km,223113,623113,1ff,Vector of the consumption data (driven distance in ZEV mode) stored in EEPROM.04 ,18DAF1DA,184,215,.1,-2147483648,1,km,223113,623113,1ff,Vector of the consumption data (driven distance in ZEV mode) stored in EEPROM.05 ,18DAF1DA,216,247,.1,-2147483648,1,km,223113,623113,1ff,Vector of the consumption data (driven distance in ZEV mode) stored in EEPROM.06 ,18DAF1DA,248,279,.1,-2147483648,1,km,223113,623113,1ff,Vector of the consumption data (driven distance in ZEV mode) stored in EEPROM.07 ,18DAF1DA,280,311,.1,-2147483648,1,km,223113,623113,1ff,Vector of the consumption data (driven distance in ZEV mode) stored in EEPROM.08 ,18DAF1DA,312,343,.1,-2147483648,1,km,223113,623113,1ff,Vector of the consumption data (driven distance in ZEV mode) stored in EEPROM.09 ,18DAF1DA,24,31,1,40,0,,223115,623115,ff,Battery HVAC Temperature senzor value ,18DAF1DA,24,31,2,0,0,%,223116,623116,ff,Battery HVAC Fan In value ,18DAF1DA,31,31,1,0,0,,223117,623117,ff,Relay request of battery HVAC fan,0:request open;1:request close ,18DAF1DA,24,39,1,0,0,,22311B,62311B,ff,CCSL - State of the failures which cause irreversible CC safety failure (level 2) (a) ,18DAF1DA,24,39,1,0,0,,22311C,62311C,ff,Carrier for safety failure dignostic for safety monitoring (a) ,18DAF1DA,24,55,1,0,0,,223120,623120,4ff,DIDs supported in range [$3121 - $3140] ,18DAF1DA,24,31,1,0,0,,22312F,62312F,ff,BSG temperature diagnosis,0:BSG overheat;1:BSG nominal temperature;2:BSG temperature high ,18DAF1DA,31,31,1,0,0,,223137,623137,ff,Water pumps and DCDC plants/ ASD activation Stored value,0:pumps deactivation for before factory plant / ASD in case off coolant circuit is empty;1:pumps activation for after factory plant / ASD after the filling of the coolant circuit ,18DAF1DA,31,31,1,0,0,,22313A,62313A,ff,Wire frame accessories accelerated idle speed request presence configuration boolean (1 = wire frame present),0:wire frame not present;1:wire frame present ,18DAF1DA,31,31,1,0,0,,22313C,62313C,ff,EEM activation request in function of the vehicle state for HV ready request,0:EEM desactivation request for HV ready request;1:EEM activation request for HV ready request ,18DAF1DA,24,39,1,0,0,kg,22313D,62313D,ff,Engine oil mass ,18DAF1DA,24,55,1,0,0,,223140,623140,4ff,DIDs supported in range [$3141 - $3160] ,18DAF1DA,31,31,1,0,0,,223149,623149,ff,HMI guidance enable ,18DAF1DA,24,31,1,0,0,,22314A,62314A,ff,Carrier of all the failures which cause SL EcoMode failure ,18DAF1DA,24,39,.01,0,2,km/h,22314B,62314B,ff,Requested speed for SL ecomode ,18DAF1DA,24,31,1,0,0,,22314C,62314C,ff,Insulation failure status,0:No insulation failure state;1:Insulation failure state level 1;2:Insulation failure state level 2;3:Insulation failure state level 3 ,18DAF1DA,24,39,1,0,0,,22314D,62314D,ff,Default interlock type detection 1 ( interlock defaults values sum ) ,18DAF1DA,24,39,1,0,0,,22314E,62314E,ff,Default interlock type detection 2 ( interlock defaults values sum ) ,18DAF1DA,24,31,250,0,0,W,22314F,62314F,ff,High voltage PTC power consumption ,18DAF1DA,24,39,.02,0,2,%,223150,623150,ff,The 10 lastest estimated percentages of SOC at end of charge memorized at the end/interruption of battery charge.09 ,18DAF1DA,40,55,.02,0,2,%,223150,623150,ff,The 10 lastest estimated percentages of SOC at end of charge memorized at the end/interruption of battery charge.08 ,18DAF1DA,56,71,.02,0,2,%,223150,623150,ff,The 10 lastest estimated percentages of SOC at end of charge memorized at the end/interruption of battery charge.07 ,18DAF1DA,72,87,.02,0,2,%,223150,623150,ff,The 10 lastest estimated percentages of SOC at end of charge memorized at the end/interruption of battery charge.06 ,18DAF1DA,88,103,.02,0,2,%,223150,623150,ff,The 10 lastest estimated percentages of SOC at end of charge memorized at the end/interruption of battery charge.05 ,18DAF1DA,104,119,.02,0,2,%,223150,623150,ff,The 10 lastest estimated percentages of SOC at end of charge memorized at the end/interruption of battery charge.04 ,18DAF1DA,120,135,.02,0,2,%,223150,623150,ff,The 10 lastest estimated percentages of SOC at end of charge memorized at the end/interruption of battery charge.03 ,18DAF1DA,136,151,.02,0,2,%,223150,623150,ff,The 10 lastest estimated percentages of SOC at end of charge memorized at the end/interruption of battery charge.02 ,18DAF1DA,152,167,.02,0,2,%,223150,623150,ff,The 10 lastest estimated percentages of SOC at end of charge memorized at the end/interruption of battery charge.01 ,18DAF1DA,168,183,.02,0,2,%,223150,623150,ff,The 10 lastest estimated percentages of SOC at end of charge memorized at the end/interruption of battery charge.00 ,18DAF1DA,31,31,1,0,0,,223244,623244,ff,variable for Shift by wire type,0:desactivated;1:activated ,18DAF1DA,31,31,1,0,0,,22324E,62324E,ff,DC COMBO charge dysfunctional exit memorized ,18DAF1DA,31,31,1,0,0,,2232D6,6232D6,ff,Management of water pump1 configuration for B10 ,18DAF1DA,31,31,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.9,0:spot not present;1:spot present ,18DAF1DA,39,39,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.8,0:spot not present;1:spot present ,18DAF1DA,47,47,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.7,0:spot not present;1:spot present ,18DAF1DA,55,55,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.6,0:spot not present;1:spot present ,18DAF1DA,63,63,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.5,0:spot not present;1:spot present ,18DAF1DA,71,71,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.4,0:spot not present;1:spot present ,18DAF1DA,79,79,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.3,0:spot not present;1:spot present ,18DAF1DA,87,87,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.2,0:spot not present;1:spot present ,18DAF1DA,95,95,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.1,0:spot not present;1:spot present ,18DAF1DA,103,103,1,0,0,,2233D3,6233D3,ff,($33D3) BPLC spot presence status to be read by diag tool.0,0:spot not present;1:spot present ,18DAF1DA,24,47,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.9 ,18DAF1DA,48,71,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.8 ,18DAF1DA,72,95,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.7 ,18DAF1DA,96,119,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.6 ,18DAF1DA,120,143,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.5 ,18DAF1DA,144,167,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.4 ,18DAF1DA,168,191,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.3 ,18DAF1DA,192,215,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.2 ,18DAF1DA,216,239,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.1 ,18DAF1DA,240,263,1,0,0,km,2233D4,6233D4,ff,($33D4) Total travelled distance to be read by diag tool.0 ,18DAF1DA,24,31,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.9,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,18DAF1DA,32,39,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.8,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,18DAF1DA,40,47,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.7,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,18DAF1DA,48,55,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.6,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,18DAF1DA,56,63,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.5,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,18DAF1DA,64,71,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.4,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,18DAF1DA,72,79,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.3,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,18DAF1DA,80,87,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.2,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,18DAF1DA,88,95,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.1,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,18DAF1DA,96,103,1,0,0,,2233D5,6233D5,ff,($33D5) Reason of end of charge to be read by diag tool.0,0:Nominal end of charge (battery full);1:Unplugged (Vehicle side);2:PowerCut (Spot side);3:Failure (except charger fault);4:Scheduled Charge;5:ChargerFaultType1;6:ChargerFaultType2;7:ChargerFaultType3;8:ChargerFaultType4;9:ChargerFaultType5;10:ChargerFaultType6 ,18DAF1DA,24,31,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.9,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,18DAF1DA,32,39,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.8,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,18DAF1DA,40,47,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.7,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,18DAF1DA,48,55,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.6,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,18DAF1DA,56,63,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.5,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,18DAF1DA,64,71,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.4,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,18DAF1DA,72,79,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.3,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,18DAF1DA,80,87,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.2,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,18DAF1DA,88,95,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.1,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,18DAF1DA,96,103,1,0,0,,2233D6,6233D6,ff,($33D6) Type of charge to be read by diag tool.0,0:Slow Charge;1:Quick Charge;2:Quick Drop;3:Unknown;4:Charge scheduled ,18DAF1DA,24,39,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.9 ,18DAF1DA,40,55,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.8 ,18DAF1DA,56,71,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.7 ,18DAF1DA,72,87,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.6 ,18DAF1DA,88,103,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.5 ,18DAF1DA,104,119,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.4 ,18DAF1DA,120,135,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.3 ,18DAF1DA,136,151,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.2 ,18DAF1DA,152,167,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.1 ,18DAF1DA,168,183,.2,0,1,%,2233D7,6233D7,ff,($33D7) State of charge (UserSOC) to be read by diag tool.0 ,18DAF1DA,24,31,1,40,0,,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.9 ,18DAF1DA,32,39,1,40,0,,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.8 ,18DAF1DA,40,47,1,40,0,,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.7 ,18DAF1DA,48,55,1,40,0,,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.6 ,18DAF1DA,56,63,1,40,0,,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.5 ,18DAF1DA,64,71,1,40,0,,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.4 ,18DAF1DA,72,79,1,40,0,,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.3 ,18DAF1DA,80,87,1,40,0,,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.2 ,18DAF1DA,88,95,1,40,0,,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.1 ,18DAF1DA,96,103,1,40,0,,2233D8,6233D8,ff,($33D8) Battery temperature to be read by diag tool.0 ,18DAF1DA,24,39,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.9 ,18DAF1DA,40,55,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.8 ,18DAF1DA,56,71,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.7 ,18DAF1DA,72,87,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.6 ,18DAF1DA,88,103,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.5 ,18DAF1DA,104,119,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.4 ,18DAF1DA,120,135,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.3 ,18DAF1DA,136,151,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.2 ,18DAF1DA,152,167,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.1 ,18DAF1DA,168,183,1,0,0,min,2233D9,6233D9,ff,($33D9) Total duration of the charge sequence to be read by diag tool.0 ,18DAF1DA,24,55,1,0,0,,223400,623400,4ff,DIDs supported in range 3401 - 3420 ,18DAF1DA,24,39,1,0,0,,223401,623401,ff,SFD Vector 1.47 ,18DAF1DA,40,55,1,0,0,,223401,623401,ff,SFD Vector 1.46 ,18DAF1DA,56,71,1,0,0,,223401,623401,ff,SFD Vector 1.45 ,18DAF1DA,72,87,1,0,0,,223401,623401,ff,SFD Vector 1.44 ,18DAF1DA,88,103,1,0,0,,223401,623401,ff,SFD Vector 1.43 ,18DAF1DA,104,119,1,0,0,,223401,623401,ff,SFD Vector 1.42 ,18DAF1DA,120,135,1,0,0,,223401,623401,ff,SFD Vector 1.41 ,18DAF1DA,136,151,1,0,0,,223401,623401,ff,SFD Vector 1.40 ,18DAF1DA,152,167,1,0,0,,223401,623401,ff,SFD Vector 1.39 ,18DAF1DA,168,183,1,0,0,,223401,623401,ff,SFD Vector 1.38 ,18DAF1DA,184,199,1,0,0,,223401,623401,ff,SFD Vector 1.37 ,18DAF1DA,200,215,1,0,0,,223401,623401,ff,SFD Vector 1.36 ,18DAF1DA,216,231,1,0,0,,223401,623401,ff,SFD Vector 1.35 ,18DAF1DA,232,247,1,0,0,,223401,623401,ff,SFD Vector 1.34 ,18DAF1DA,248,263,1,0,0,,223401,623401,ff,SFD Vector 1.33 ,18DAF1DA,264,279,1,0,0,,223401,623401,ff,SFD Vector 1.32 ,18DAF1DA,280,295,1,0,0,,223401,623401,ff,SFD Vector 1.31 ,18DAF1DA,296,311,1,0,0,,223401,623401,ff,SFD Vector 1.30 ,18DAF1DA,312,327,1,0,0,,223401,623401,ff,SFD Vector 1.29 ,18DAF1DA,328,343,1,0,0,,223401,623401,ff,SFD Vector 1.28 ,18DAF1DA,344,359,1,0,0,,223401,623401,ff,SFD Vector 1.27 ,18DAF1DA,360,375,1,0,0,,223401,623401,ff,SFD Vector 1.26 ,18DAF1DA,376,391,1,0,0,,223401,623401,ff,SFD Vector 1.25 ,18DAF1DA,392,407,1,0,0,,223401,623401,ff,SFD Vector 1.24 ,18DAF1DA,408,423,1,0,0,,223401,623401,ff,SFD Vector 1.23 ,18DAF1DA,424,439,1,0,0,,223401,623401,ff,SFD Vector 1.22 ,18DAF1DA,440,455,1,0,0,,223401,623401,ff,SFD Vector 1.21 ,18DAF1DA,456,471,1,0,0,,223401,623401,ff,SFD Vector 1.20 ,18DAF1DA,472,487,1,0,0,,223401,623401,ff,SFD Vector 1.19 ,18DAF1DA,488,503,1,0,0,,223401,623401,ff,SFD Vector 1.18 ,18DAF1DA,504,519,1,0,0,,223401,623401,ff,SFD Vector 1.17 ,18DAF1DA,520,535,1,0,0,,223401,623401,ff,SFD Vector 1.16 ,18DAF1DA,536,551,1,0,0,,223401,623401,ff,SFD Vector 1.15 ,18DAF1DA,552,567,1,0,0,,223401,623401,ff,SFD Vector 1.14 ,18DAF1DA,568,583,1,0,0,,223401,623401,ff,SFD Vector 1.13 ,18DAF1DA,584,599,1,0,0,,223401,623401,ff,SFD Vector 1.12 ,18DAF1DA,600,615,1,0,0,,223401,623401,ff,SFD Vector 1.11 ,18DAF1DA,616,631,1,0,0,,223401,623401,ff,SFD Vector 1.10 ,18DAF1DA,632,647,1,0,0,,223401,623401,ff,SFD Vector 1.9 ,18DAF1DA,648,663,1,0,0,,223401,623401,ff,SFD Vector 1.8 ,18DAF1DA,664,679,1,0,0,,223401,623401,ff,SFD Vector 1.7 ,18DAF1DA,680,695,1,0,0,,223401,623401,ff,SFD Vector 1.6 ,18DAF1DA,696,711,1,0,0,,223401,623401,ff,SFD Vector 1.5 ,18DAF1DA,712,727,1,0,0,,223401,623401,ff,SFD Vector 1.4 ,18DAF1DA,728,743,1,0,0,,223401,623401,ff,SFD Vector 1.3 ,18DAF1DA,744,759,1,0,0,,223401,623401,ff,SFD Vector 1.2 ,18DAF1DA,760,775,1,0,0,,223401,623401,ff,SFD Vector 1.1 ,18DAF1DA,776,791,1,0,0,,223401,623401,ff,SFD Vector 1.0 ,18DAF1DA,24,39,1,0,0,,223402,623402,ff,SFD Vector 2.47 ,18DAF1DA,40,55,1,0,0,,223402,623402,ff,SFD Vector 2.46 ,18DAF1DA,56,71,1,0,0,,223402,623402,ff,SFD Vector 2.45 ,18DAF1DA,72,87,1,0,0,,223402,623402,ff,SFD Vector 2.44 ,18DAF1DA,88,103,1,0,0,,223402,623402,ff,SFD Vector 2.43 ,18DAF1DA,104,119,1,0,0,,223402,623402,ff,SFD Vector 2.42 ,18DAF1DA,120,135,1,0,0,,223402,623402,ff,SFD Vector 2.41 ,18DAF1DA,136,151,1,0,0,,223402,623402,ff,SFD Vector 2.40 ,18DAF1DA,152,167,1,0,0,,223402,623402,ff,SFD Vector 2.39 ,18DAF1DA,168,183,1,0,0,,223402,623402,ff,SFD Vector 2.38 ,18DAF1DA,184,199,1,0,0,,223402,623402,ff,SFD Vector 2.37 ,18DAF1DA,200,215,1,0,0,,223402,623402,ff,SFD Vector 2.36 ,18DAF1DA,216,231,1,0,0,,223402,623402,ff,SFD Vector 2.35 ,18DAF1DA,232,247,1,0,0,,223402,623402,ff,SFD Vector 2.34 ,18DAF1DA,248,263,1,0,0,,223402,623402,ff,SFD Vector 2.33 ,18DAF1DA,264,279,1,0,0,,223402,623402,ff,SFD Vector 2.32 ,18DAF1DA,280,295,1,0,0,,223402,623402,ff,SFD Vector 2.31 ,18DAF1DA,296,311,1,0,0,,223402,623402,ff,SFD Vector 2.30 ,18DAF1DA,312,327,1,0,0,,223402,623402,ff,SFD Vector 2.29 ,18DAF1DA,328,343,1,0,0,,223402,623402,ff,SFD Vector 2.28 ,18DAF1DA,344,359,1,0,0,,223402,623402,ff,SFD Vector 2.27 ,18DAF1DA,360,375,1,0,0,,223402,623402,ff,SFD Vector 2.26 ,18DAF1DA,376,391,1,0,0,,223402,623402,ff,SFD Vector 2.25 ,18DAF1DA,392,407,1,0,0,,223402,623402,ff,SFD Vector 2.24 ,18DAF1DA,408,423,1,0,0,,223402,623402,ff,SFD Vector 2.23 ,18DAF1DA,424,439,1,0,0,,223402,623402,ff,SFD Vector 2.22 ,18DAF1DA,440,455,1,0,0,,223402,623402,ff,SFD Vector 2.21 ,18DAF1DA,456,471,1,0,0,,223402,623402,ff,SFD Vector 2.20 ,18DAF1DA,472,487,1,0,0,,223402,623402,ff,SFD Vector 2.19 ,18DAF1DA,488,503,1,0,0,,223402,623402,ff,SFD Vector 2.18 ,18DAF1DA,504,519,1,0,0,,223402,623402,ff,SFD Vector 2.17 ,18DAF1DA,520,535,1,0,0,,223402,623402,ff,SFD Vector 2.16 ,18DAF1DA,536,551,1,0,0,,223402,623402,ff,SFD Vector 2.15 ,18DAF1DA,552,567,1,0,0,,223402,623402,ff,SFD Vector 2.14 ,18DAF1DA,568,583,1,0,0,,223402,623402,ff,SFD Vector 2.13 ,18DAF1DA,584,599,1,0,0,,223402,623402,ff,SFD Vector 2.12 ,18DAF1DA,600,615,1,0,0,,223402,623402,ff,SFD Vector 2.11 ,18DAF1DA,616,631,1,0,0,,223402,623402,ff,SFD Vector 2.10 ,18DAF1DA,632,647,1,0,0,,223402,623402,ff,SFD Vector 2.09 ,18DAF1DA,648,663,1,0,0,,223402,623402,ff,SFD Vector 2.08 ,18DAF1DA,664,679,1,0,0,,223402,623402,ff,SFD Vector 2.07 ,18DAF1DA,680,695,1,0,0,,223402,623402,ff,SFD Vector 2.06 ,18DAF1DA,696,711,1,0,0,,223402,623402,ff,SFD Vector 2.05 ,18DAF1DA,712,727,1,0,0,,223402,623402,ff,SFD Vector 2.04 ,18DAF1DA,728,743,1,0,0,,223402,623402,ff,SFD Vector 2.03 ,18DAF1DA,744,759,1,0,0,,223402,623402,ff,SFD Vector 2.02 ,18DAF1DA,760,775,1,0,0,,223402,623402,ff,SFD Vector 2.01 ,18DAF1DA,776,791,1,0,0,,223402,623402,ff,SFD Vector 2.00 ,18DAF1DA,24,39,1,0,0,,223403,623403,ff,SFD Vector 3.47 ,18DAF1DA,40,55,1,0,0,,223403,623403,ff,SFD Vector 3.46 ,18DAF1DA,56,71,1,0,0,,223403,623403,ff,SFD Vector 3.45 ,18DAF1DA,72,87,1,0,0,,223403,623403,ff,SFD Vector 3.44 ,18DAF1DA,88,103,1,0,0,,223403,623403,ff,SFD Vector 3.43 ,18DAF1DA,104,119,1,0,0,,223403,623403,ff,SFD Vector 3.42 ,18DAF1DA,120,135,1,0,0,,223403,623403,ff,SFD Vector 3.41 ,18DAF1DA,136,151,1,0,0,,223403,623403,ff,SFD Vector 3.40 ,18DAF1DA,152,167,1,0,0,,223403,623403,ff,SFD Vector 3.39 ,18DAF1DA,168,183,1,0,0,,223403,623403,ff,SFD Vector 3.38 ,18DAF1DA,184,199,1,0,0,,223403,623403,ff,SFD Vector 3.37 ,18DAF1DA,200,215,1,0,0,,223403,623403,ff,SFD Vector 3.36 ,18DAF1DA,216,231,1,0,0,,223403,623403,ff,SFD Vector 3.35 ,18DAF1DA,232,247,1,0,0,,223403,623403,ff,SFD Vector 3.34 ,18DAF1DA,248,263,1,0,0,,223403,623403,ff,SFD Vector 3.33 ,18DAF1DA,264,279,1,0,0,,223403,623403,ff,SFD Vector 3.32 ,18DAF1DA,280,295,1,0,0,,223403,623403,ff,SFD Vector 3.31 ,18DAF1DA,296,311,1,0,0,,223403,623403,ff,SFD Vector 3.30 ,18DAF1DA,312,327,1,0,0,,223403,623403,ff,SFD Vector 3.29 ,18DAF1DA,328,343,1,0,0,,223403,623403,ff,SFD Vector 3.28 ,18DAF1DA,344,359,1,0,0,,223403,623403,ff,SFD Vector 3.27 ,18DAF1DA,360,375,1,0,0,,223403,623403,ff,SFD Vector 3.26 ,18DAF1DA,376,391,1,0,0,,223403,623403,ff,SFD Vector 3.25 ,18DAF1DA,392,407,1,0,0,,223403,623403,ff,SFD Vector 3.24 ,18DAF1DA,408,423,1,0,0,,223403,623403,ff,SFD Vector 3.23 ,18DAF1DA,424,439,1,0,0,,223403,623403,ff,SFD Vector 3.22 ,18DAF1DA,440,455,1,0,0,,223403,623403,ff,SFD Vector 3.21 ,18DAF1DA,456,471,1,0,0,,223403,623403,ff,SFD Vector 3.20 ,18DAF1DA,472,487,1,0,0,,223403,623403,ff,SFD Vector 3.19 ,18DAF1DA,488,503,1,0,0,,223403,623403,ff,SFD Vector 3.18 ,18DAF1DA,504,519,1,0,0,,223403,623403,ff,SFD Vector 3.17 ,18DAF1DA,520,535,1,0,0,,223403,623403,ff,SFD Vector 3.16 ,18DAF1DA,536,551,1,0,0,,223403,623403,ff,SFD Vector 3.15 ,18DAF1DA,552,567,1,0,0,,223403,623403,ff,SFD Vector 3.14 ,18DAF1DA,568,583,1,0,0,,223403,623403,ff,SFD Vector 3.13 ,18DAF1DA,584,599,1,0,0,,223403,623403,ff,SFD Vector 3.12 ,18DAF1DA,600,615,1,0,0,,223403,623403,ff,SFD Vector 3.11 ,18DAF1DA,616,631,1,0,0,,223403,623403,ff,SFD Vector 3.10 ,18DAF1DA,632,647,1,0,0,,223403,623403,ff,SFD Vector 3.09 ,18DAF1DA,648,663,1,0,0,,223403,623403,ff,SFD Vector 3.08 ,18DAF1DA,664,679,1,0,0,,223403,623403,ff,SFD Vector 3.07 ,18DAF1DA,680,695,1,0,0,,223403,623403,ff,SFD Vector 3.06 ,18DAF1DA,696,711,1,0,0,,223403,623403,ff,SFD Vector 3.05 ,18DAF1DA,712,727,1,0,0,,223403,623403,ff,SFD Vector 3.04 ,18DAF1DA,728,743,1,0,0,,223403,623403,ff,SFD Vector 3.03 ,18DAF1DA,744,759,1,0,0,,223403,623403,ff,SFD Vector 3.02 ,18DAF1DA,760,775,1,0,0,,223403,623403,ff,SFD Vector 3.01 ,18DAF1DA,776,791,1,0,0,,223403,623403,ff,SFD Vector 3.00 ,18DAF1DA,24,39,1,0,0,,223404,623404,ff,SFD Vector 4.47 ,18DAF1DA,40,55,1,0,0,,223404,623404,ff,SFD Vector 4.46 ,18DAF1DA,56,71,1,0,0,,223404,623404,ff,SFD Vector 4.45 ,18DAF1DA,72,87,1,0,0,,223404,623404,ff,SFD Vector 4.44 ,18DAF1DA,88,103,1,0,0,,223404,623404,ff,SFD Vector 4.43 ,18DAF1DA,104,119,1,0,0,,223404,623404,ff,SFD Vector 4.42 ,18DAF1DA,120,135,1,0,0,,223404,623404,ff,SFD Vector 4.41 ,18DAF1DA,136,151,1,0,0,,223404,623404,ff,SFD Vector 4.40 ,18DAF1DA,152,167,1,0,0,,223404,623404,ff,SFD Vector 4.39 ,18DAF1DA,168,183,1,0,0,,223404,623404,ff,SFD Vector 4.38 ,18DAF1DA,184,199,1,0,0,,223404,623404,ff,SFD Vector 4.37 ,18DAF1DA,200,215,1,0,0,,223404,623404,ff,SFD Vector 4.36 ,18DAF1DA,216,231,1,0,0,,223404,623404,ff,SFD Vector 4.35 ,18DAF1DA,232,247,1,0,0,,223404,623404,ff,SFD Vector 4.34 ,18DAF1DA,248,263,1,0,0,,223404,623404,ff,SFD Vector 4.33 ,18DAF1DA,264,279,1,0,0,,223404,623404,ff,SFD Vector 4.32 ,18DAF1DA,280,295,1,0,0,,223404,623404,ff,SFD Vector 4.31 ,18DAF1DA,296,311,1,0,0,,223404,623404,ff,SFD Vector 4.30 ,18DAF1DA,312,327,1,0,0,,223404,623404,ff,SFD Vector 4.29 ,18DAF1DA,328,343,1,0,0,,223404,623404,ff,SFD Vector 4.28 ,18DAF1DA,344,359,1,0,0,,223404,623404,ff,SFD Vector 4.27 ,18DAF1DA,360,375,1,0,0,,223404,623404,ff,SFD Vector 4.26 ,18DAF1DA,376,391,1,0,0,,223404,623404,ff,SFD Vector 4.25 ,18DAF1DA,392,407,1,0,0,,223404,623404,ff,SFD Vector 4.24 ,18DAF1DA,408,423,1,0,0,,223404,623404,ff,SFD Vector 4.23 ,18DAF1DA,424,439,1,0,0,,223404,623404,ff,SFD Vector 4.22 ,18DAF1DA,440,455,1,0,0,,223404,623404,ff,SFD Vector 4.21 ,18DAF1DA,456,471,1,0,0,,223404,623404,ff,SFD Vector 4.20 ,18DAF1DA,472,487,1,0,0,,223404,623404,ff,SFD Vector 4.19 ,18DAF1DA,488,503,1,0,0,,223404,623404,ff,SFD Vector 4.18 ,18DAF1DA,504,519,1,0,0,,223404,623404,ff,SFD Vector 4.17 ,18DAF1DA,520,535,1,0,0,,223404,623404,ff,SFD Vector 4.16 ,18DAF1DA,536,551,1,0,0,,223404,623404,ff,SFD Vector 4.15 ,18DAF1DA,552,567,1,0,0,,223404,623404,ff,SFD Vector 4.14 ,18DAF1DA,568,583,1,0,0,,223404,623404,ff,SFD Vector 4.13 ,18DAF1DA,584,599,1,0,0,,223404,623404,ff,SFD Vector 4.12 ,18DAF1DA,600,615,1,0,0,,223404,623404,ff,SFD Vector 4.11 ,18DAF1DA,616,631,1,0,0,,223404,623404,ff,SFD Vector 4.10 ,18DAF1DA,632,647,1,0,0,,223404,623404,ff,SFD Vector 4.09 ,18DAF1DA,648,663,1,0,0,,223404,623404,ff,SFD Vector 4.08 ,18DAF1DA,664,679,1,0,0,,223404,623404,ff,SFD Vector 4.07 ,18DAF1DA,680,695,1,0,0,,223404,623404,ff,SFD Vector 4.06 ,18DAF1DA,696,711,1,0,0,,223404,623404,ff,SFD Vector 4.05 ,18DAF1DA,712,727,1,0,0,,223404,623404,ff,SFD Vector 4.04 ,18DAF1DA,728,743,1,0,0,,223404,623404,ff,SFD Vector 4.03 ,18DAF1DA,744,759,1,0,0,,223404,623404,ff,SFD Vector 4.02 ,18DAF1DA,760,775,1,0,0,,223404,623404,ff,SFD Vector 4.01 ,18DAF1DA,776,791,1,0,0,,223404,623404,ff,SFD Vector 4.00 ,18DAF1DA,24,55,1,0,0,,223420,623420,4ff,DIDs supported in range [$3421 - $3440] ,18DAF1DA,24,55,1,0,0,,223440,623440,4ff,DIDs supported in range [$3441 - $3460] ,18DAF1DA,24,31,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.01 ,18DAF1DA,32,39,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.02 ,18DAF1DA,40,47,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.03 ,18DAF1DA,48,55,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.04 ,18DAF1DA,56,63,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.05 ,18DAF1DA,64,71,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.06 ,18DAF1DA,72,79,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.07 ,18DAF1DA,80,87,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.08 ,18DAF1DA,88,95,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.09 ,18DAF1DA,96,103,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.10 ,18DAF1DA,104,111,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.11 ,18DAF1DA,112,119,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.12 ,18DAF1DA,120,127,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.13 ,18DAF1DA,128,135,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.14 ,18DAF1DA,136,143,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.15 ,18DAF1DA,144,151,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.16 ,18DAF1DA,152,159,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.17 ,18DAF1DA,160,167,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.18 ,18DAF1DA,168,175,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.19 ,18DAF1DA,176,183,.01,0,2,,22345E,62345E,ff,Ratio IUPR classe pool.20 ,18DAF1DA,24,39,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.01 ,18DAF1DA,40,55,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.02 ,18DAF1DA,56,71,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.03 ,18DAF1DA,72,87,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.04 ,18DAF1DA,88,103,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.05 ,18DAF1DA,104,119,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.06 ,18DAF1DA,120,135,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.07 ,18DAF1DA,136,151,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.08 ,18DAF1DA,152,167,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.09 ,18DAF1DA,168,183,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.10 ,18DAF1DA,184,199,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.11 ,18DAF1DA,200,215,1,0,0,,22345F,62345F,ff,Numerateur et denominateur des IUPR pour les classes private.12 ,18DAF1DA,24,39,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.9 ,18DAF1DA,40,55,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.8 ,18DAF1DA,56,71,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.7 ,18DAF1DA,72,87,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.6 ,18DAF1DA,88,103,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.5 ,18DAF1DA,104,119,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.4 ,18DAF1DA,120,135,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.3 ,18DAF1DA,136,151,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.2 ,18DAF1DA,152,167,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.1 ,18DAF1DA,168,183,.1,0,1,kW,2234E4,6234E4,ff,($34E4) Charge power available.0 ,18DAF1DA,24,55,1,0,0,,22EE00,62EE00,4ff,DIDs supported in range [EE01 - EE20] ,18DAF1DA,24,55,1,0,0,,22EE20,62EE20,4ff,DIDs supported in range [EE21 - EE40] ,18DAF1DA,24,55,1,0,0,,22EE40,62EE40,4ff,DIDs supported in range [$EE41 - $EE60] ,18DAF1DA,24,55,1,0,0,,22EE60,62EE60,4ff,DIDs supported in range [$EE61 - $EE80] ,18DAF1DA,24,31,1,125,0,%,22EE61,62EE61,ff,$02 - Driver's Demand Engine - Percent Torque ,18DAF1DA,24,55,1,0,0,,22EE80,62EE80,4ff,DIDs supported in range [$EE81 - $EEA0] ,18DAF1DA,24,55,1,0,0,,22EEA0,62EEA0,4ff,DIDs supported in range [$EEA1 - $EEC0] ,18DAF1DA,24,55,1,0,0,,22EF80,62EF80,4ff,DIDs supported in range [$EF81 - $EFA0] ,18DAF1DA,24,55,1,0,0,,22F000,62F000,4ff,DIDs supported in range [$F001 - $F020] ,18DAF1DA,24,31,1,0,0,,22F010,62F010,ff,Fingerprint information.01 ,18DAF1DA,32,39,1,0,0,,22F010,62F010,ff,Fingerprint information.02 ,18DAF1DA,40,47,1,0,0,,22F010,62F010,ff,Fingerprint information.03 ,18DAF1DA,48,55,1,0,0,,22F010,62F010,ff,Fingerprint information.04 ,18DAF1DA,56,63,1,0,0,,22F010,62F010,ff,Fingerprint information.05 ,18DAF1DA,64,71,1,0,0,,22F010,62F010,ff,Fingerprint information.06 ,18DAF1DA,72,79,1,0,0,,22F010,62F010,ff,Fingerprint information.07 ,18DAF1DA,80,87,1,0,0,,22F010,62F010,ff,Fingerprint information.08 ,18DAF1DA,88,103,1,0,0,,22F010,62F010,ff,Fingerprint information.09 ,18DAF1DA,96,103,1,0,0,,22F010,62F010,ff,Fingerprint information.10 ,18DAF1DA,104,111,1,0,0,,22F010,62F010,ff,Fingerprint information.11 ,18DAF1DA,112,119,1,0,0,,22F010,62F010,ff,Fingerprint information.12 ,18DAF1DA,120,127,1,0,0,,22F010,62F010,ff,Fingerprint information.13 ,18DAF1DA,128,135,1,0,0,,22F010,62F010,ff,Fingerprint information.14 ,18DAF1DA,136,143,1,0,0,,22F010,62F010,ff,Fingerprint information.15 ,18DAF1DA,144,151,1,0,0,,22F010,62F010,ff,Fingerprint information.16 ,18DAF1DA,24,31,1,0,0,,22F011,62F011,ff,the IndexSrvData.01 ,18DAF1DA,32,39,1,0,0,,22F011,62F011,ff,the IndexSrvData.02 ,18DAF1DA,40,47,1,0,0,,22F011,62F011,ff,the IndexSrvData.03 ,18DAF1DA,48,55,1,0,0,,22F011,62F011,ff,the IndexSrvData.04 ,18DAF1DA,56,63,1,0,0,,22F011,62F011,ff,the IndexSrvData.05 ,18DAF1DA,64,71,1,0,0,,22F011,62F011,ff,the IndexSrvData.06 ,18DAF1DA,72,79,1,0,0,,22F011,62F011,ff,the IndexSrvData.07 ,18DAF1DA,80,87,1,0,0,,22F011,62F011,ff,the IndexSrvData.08 ,18DAF1DA,88,95,1,0,0,,22F011,62F011,ff,the IndexSrvData.09 ,18DAF1DA,96,103,1,0,0,,22F011,62F011,ff,the IndexSrvData.10 ,18DAF1DA,24,31,1,0,0,,22F012,62F012,ff,VehicleManufacturerECUSoftwareNumber (Ref C).10 ,18DAF1DA,32,39,1,0,0,,22F012,62F012,ff,VehicleManufacturerECUSoftwareNumber (Ref C).09 ,18DAF1DA,40,47,1,0,0,,22F012,62F012,ff,VehicleManufacturerECUSoftwareNumber (Ref C).08 ,18DAF1DA,48,55,1,0,0,,22F012,62F012,ff,VehicleManufacturerECUSoftwareNumber (Ref C).07 ,18DAF1DA,56,63,1,0,0,,22F012,62F012,ff,VehicleManufacturerECUSoftwareNumber (Ref C).06 ,18DAF1DA,64,71,1,0,0,,22F012,62F012,ff,VehicleManufacturerECUSoftwareNumber (Ref C).05 ,18DAF1DA,72,79,1,0,0,,22F012,62F012,ff,VehicleManufacturerECUSoftwareNumber (Ref C).04 ,18DAF1DA,80,87,1,0,0,,22F012,62F012,ff,VehicleManufacturerECUSoftwareNumber (Ref C).03 ,18DAF1DA,88,95,1,0,0,,22F012,62F012,ff,VehicleManufacturerECUSoftwareNumber (Ref C).02 ,18DAF1DA,96,103,1,0,0,,22F012,62F012,ff,VehicleManufacturerECUSoftwareNumber (Ref C).01 ,18DAF1DA,24,55,1,0,0,,22F0E0,62F0E0,4ff,DIDs supported in range [$F0E1 - $F1000] ,18DAF1DA,24,31,1,0,0,,22F10D,62F10D,ff,UDS - Diagnostic Protocol Version MBN 10747.1 ,18DAF1DA,32,39,1,0,0,,22F10D,62F10D,ff,UDS - Diagnostic Protocol Version MBN 10747.2 ,18DAF1DA,40,47,1,0,0,,22F10D,62F10D,ff,UDS - Diagnostic Protocol Version MBN 10747.3 ,18DAF1DA,24,31,1,0,0,,22F111,62F111,ff,Hardware Part Number (10 characters).09 ,18DAF1DA,32,39,1,0,0,,22F111,62F111,ff,Hardware Part Number (10 characters).08 ,18DAF1DA,40,47,1,0,0,,22F111,62F111,ff,Hardware Part Number (10 characters).07 ,18DAF1DA,48,55,1,0,0,,22F111,62F111,ff,Hardware Part Number (10 characters).06 ,18DAF1DA,56,63,1,0,0,,22F111,62F111,ff,Hardware Part Number (10 characters).05 ,18DAF1DA,64,71,1,0,0,,22F111,62F111,ff,Hardware Part Number (10 characters).04 ,18DAF1DA,72,79,1,0,0,,22F111,62F111,ff,Hardware Part Number (10 characters).03 ,18DAF1DA,80,87,1,0,0,,22F111,62F111,ff,Hardware Part Number (10 characters).02 ,18DAF1DA,88,95,1,0,0,,22F111,62F111,ff,Hardware Part Number (10 characters).01 ,18DAF1DA,96,103,1,0,0,,22F111,62F111,ff,Hardware Part Number (10 characters).00 ,18DAF1DA,24,55,1,0,0,,22F120,62F120,4ff,DIDs supported in range [$F121 - $F140] ,18DAF1DA,24,31,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).01 ,18DAF1DA,32,39,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).02 ,18DAF1DA,40,47,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).03 ,18DAF1DA,48,55,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).04 ,18DAF1DA,56,63,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).05 ,18DAF1DA,64,71,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).06 ,18DAF1DA,72,79,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).07 ,18DAF1DA,80,87,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).08 ,18DAF1DA,88,95,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).09 ,18DAF1DA,96,103,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).10 ,18DAF1DA,104,111,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).11 ,18DAF1DA,112,119,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).12 ,18DAF1DA,120,127,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).13 ,18DAF1DA,128,135,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).14 ,18DAF1DA,136,143,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).15 ,18DAF1DA,144,151,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).16 ,18DAF1DA,152,159,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).17 ,18DAF1DA,160,167,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).18 ,18DAF1DA,168,175,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).19 ,18DAF1DA,176,183,1,0,0,,22F121,62F121,2ff,Software Part Number (20 characters).20 ,18DAF1DA,24,55,1,0,0,,22F140,62F140,4ff,DIDs supported in range [$F141 - $F160] ,18DAF1DA,24,47,1,0,0,,22F150,62F150,ff,Data Bytes 0, 1 and 2 of Hardware Version Information ,18DAF1DA,24,47,1,0,0,,22F151,62F151,4ff,Software Version Information.0_hex ,18DAF1DA,48,71,1,0,0,,22F151,62F151,4ff,Software Version Information.1_hex ,18DAF1DA,24,47,1,0,0,,22F153,62F153,ff,Boot Software Version Information ,18DAF1DA,24,39,1,0,0,,22F154,62F154,ff,Data Bytes 0 and 1 of Hardware Supplier Identification ,18DAF1DA,24,39,1,0,0,,22F155,62F155,ff,Software Supplier Identification.(Logical Block).1 ,18DAF1DA,40,55,1,0,0,,22F155,62F155,ff,Software Supplier Identification.(Logical Block).0 ,18DAF1DA,24,31,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).19 ,18DAF1DA,32,39,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).18 ,18DAF1DA,40,47,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).17 ,18DAF1DA,48,55,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).16 ,18DAF1DA,56,63,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).15 ,18DAF1DA,64,71,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).14 ,18DAF1DA,72,79,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).13 ,18DAF1DA,80,87,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).12 ,18DAF1DA,88,95,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).11 ,18DAF1DA,96,103,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).10 ,18DAF1DA,104,111,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).09 ,18DAF1DA,112,119,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).08 ,18DAF1DA,120,127,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).07 ,18DAF1DA,128,135,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).06 ,18DAF1DA,136,143,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).05 ,18DAF1DA,144,151,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).04 ,18DAF1DA,152,159,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).03 ,18DAF1DA,160,167,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).02 ,18DAF1DA,168,175,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).01 ,18DAF1DA,176,183,1,0,0,,22F15B,62F15B,ff,Software Fingerprints (Logical Block).00 ,18DAF1DA,24,279,1,0,0,,22F180,62F180,2ff,Boot identification ,18DAF1DA,32,111,1,0,0,,22F181,62F181,2ff,applicationSoftwareIdentification ,18DAF1DA,24,39,1,0,0,,22F182,62F182,4ff,applicationDataIdentification ,18DAF1DA,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,18DAF1DA,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,18DAF1DA,24,223,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,18DAF1DA,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,18DAF1DA,24,103,1,0,0,,22F18E,62F18E,2ff,VehicleManufacturerKitAssemblyPartNumber ,18DAF1DA,24,159,1,0,0,,22F190,62F190,2ff,VIN ,18DAF1DA,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,18DAF1DA,24,279,1,0,0,,22F192,62F192,2ff,systemSupplierECUHardwareNumber ,18DAF1DA,24,55,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,18DAF1DA,24,55,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,18DAF1DA,24,103,1,0,0,,22F196,62F196,2ff,exhaustRegulationOrTypeApprovalNumber ,18DAF1DA,24,31,1,0,0,,22F197,62F197,ff,systemNameorEngineType.01 ,18DAF1DA,32,39,1,0,0,,22F197,62F197,ff,systemNameorEngineType.02 ,18DAF1DA,40,47,1,0,0,,22F197,62F197,ff,systemNameorEngineType.03 ,18DAF1DA,48,55,1,0,0,,22F197,62F197,ff,systemNameorEngineType.04 ,18DAF1DA,56,63,1,0,0,,22F197,62F197,ff,systemNameorEngineType.05 ,18DAF1DA,64,71,1,0,0,,22F197,62F197,ff,systemNameorEngineType.06 ,18DAF1DA,72,79,1,0,0,,22F197,62F197,ff,systemNameorEngineType.07 ,18DAF1DA,80,87,1,0,0,,22F197,62F197,ff,systemNameorEngineType.08 ,18DAF1DA,88,95,1,0,0,,22F197,62F197,ff,systemNameorEngineType.09 ,18DAF1DA,96,103,1,0,0,,22F197,62F197,ff,systemNameorEngineType.10 ,18DAF1DA,104,111,1,0,0,,22F197,62F197,ff,systemNameorEngineType.11 ,18DAF1DA,112,119,1,0,0,,22F197,62F197,ff,systemNameorEngineType.12 ,18DAF1DA,120,127,1,0,0,,22F197,62F197,ff,systemNameorEngineType.13 ,18DAF1DA,128,135,1,0,0,,22F197,62F197,ff,systemNameorEngineType.14 ,18DAF1DA,136,143,1,0,0,,22F197,62F197,ff,systemNameorEngineType.15 ,18DAF1DA,144,151,1,0,0,,22F197,62F197,ff,systemNameorEngineType.16 ,18DAF1DA,152,159,1,0,0,,22F197,62F197,ff,systemNameorEngineType.17 ,18DAF1DA,160,167,1,0,0,,22F197,62F197,ff,systemNameorEngineType.18 ,18DAF1DA,168,175,1,0,0,,22F197,62F197,ff,systemNameorEngineType.19 ,18DAF1DA,176,183,1,0,0,,22F197,62F197,ff,systemNameorEngineType.20 ,18DAF1DA,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,18DAF1DA,24,31,1,0,0,,22F1A1,62F1A1,ff,Nissan vehicle Spare Part Number.00 ,18DAF1DA,32,39,1,0,0,,22F1A1,62F1A1,ff,Nissan vehicle Spare Part Number.01 ,18DAF1DA,40,47,1,0,0,,22F1A1,62F1A1,ff,Nissan vehicle Spare Part Number.02 ,18DAF1DA,48,55,1,0,0,,22F1A1,62F1A1,ff,Nissan vehicle Spare Part Number.03 ,18DAF1DA,56,63,1,0,0,,22F1A1,62F1A1,ff,Nissan vehicle Spare Part Number.04 ,18DAF1DA,64,71,1,0,0,,22F1A1,62F1A1,ff,Nissan vehicle Spare Part Number.05 ,18DAF1DA,72,79,1,0,0,,22F1A1,62F1A1,ff,Nissan vehicle Spare Part Number.06 ,18DAF1DA,80,87,1,0,0,,22F1A1,62F1A1,ff,Nissan vehicle Spare Part Number.07 ,18DAF1DA,88,95,1,0,0,,22F1A1,62F1A1,ff,Nissan vehicle Spare Part Number.08 ,18DAF1DA,96,103,1,0,0,,22F1A1,62F1A1,ff,Nissan vehicle Spare Part Number.09 ,18DAF1DA,24,31,1,0,0,,22F1A2,62F1A2,ff,Configuration file reference information written for Nissan vehicles in plant.10 ,18DAF1DA,32,39,1,0,0,,22F1A2,62F1A2,ff,Configuration file reference information written for Nissan vehicles in plant.09 ,18DAF1DA,40,47,1,0,0,,22F1A2,62F1A2,ff,Configuration file reference information written for Nissan vehicles in plant.08 ,18DAF1DA,48,55,1,0,0,,22F1A2,62F1A2,ff,Configuration file reference information written for Nissan vehicles in plant.07 ,18DAF1DA,56,63,1,0,0,,22F1A2,62F1A2,ff,Configuration file reference information written for Nissan vehicles in plant.06 ,18DAF1DA,64,71,1,0,0,,22F1A2,62F1A2,ff,Configuration file reference information written for Nissan vehicles in plant.05 ,18DAF1DA,72,79,1,0,0,,22F1A2,62F1A2,ff,Configuration file reference information written for Nissan vehicles in plant.04 ,18DAF1DA,80,87,1,0,0,,22F1A2,62F1A2,ff,Configuration file reference information written for Nissan vehicles in plant.03 ,18DAF1DA,88,95,1,0,0,,22F1A2,62F1A2,ff,Configuration file reference information written for Nissan vehicles in plant.02 ,18DAF1DA,96,103,1,0,0,,22F1A2,62F1A2,ff,Configuration file reference information written for Nissan vehicles in plant.01 ,18DAF1DA,24,55,1,0,0,,22F400,62F400,4ff,DIDs supported in range F401 - F420 ,18DAF1DA,24,24,1,0,0,,22F401,62F401,ff,PID_$F401.7,0:Vbx_mil_prmt_req = OFF or Vbx_mil_flsh_req = OFF;1:Vbx_mil_prmt_req = ON or Vbx_mil_flsh_req = ON ,18DAF1DA,25,31,1,0,0,,22F401,62F401,ff,PID_$F401.0 ,18DAF1DA,32,32,1,0,0,,22F401,62F401,ff,PID_$F401.15,0:---;1:Test not complete ,18DAF1DA,33,33,1,0,0,,22F401,62F401,ff,PID_$F401.14,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,34,34,1,0,0,,22F401,62F401,ff,PID_$F401.13,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,35,35,1,0,0,,22F401,62F401,ff,PID_$F401.12,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,36,36,1,0,0,,22F401,62F401,ff,PID_$F401.11,0:spark;1:compression ,18DAF1DA,37,37,1,0,0,,22F401,62F401,ff,PID_$F401.10,0:Not supported;1:Supported ,18DAF1DA,38,38,1,0,0,,22F401,62F401,ff,PID_$F401.9,0:Not supported;1:Supported ,18DAF1DA,39,39,1,0,0,,22F401,62F401,ff,PID_$F401.8,0:Not supported;1:Supported ,18DAF1DA,40,47,1,0,0,,22F401,62F401,ff,PID_$F401.16 ,18DAF1DA,48,48,1,0,0,,22F401,62F401,ff,PID_$F401.24,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,49,49,1,0,0,,22F401,62F401,ff,PID_$F401.23,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,50,50,1,0,0,,22F401,62F401,ff,PID_$F401.22,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,51,51,1,0,0,,22F401,62F401,ff,PID_$F401.21,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,52,52,1,0,0,,22F401,62F401,ff,PID_$F401.20,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,53,53,1,0,0,,22F401,62F401,ff,PID_$F401.19,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,54,54,1,0,0,,22F401,62F401,ff,PID_$F401.18,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,55,55,1,0,0,,22F401,62F401,ff,PID_$F401.17,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,24,24,1,0,0,,22F403,62F403,ff,Fuel_system status.07 ,18DAF1DA,25,25,1,0,0,,22F403,62F403,ff,Fuel_system status.06 ,18DAF1DA,26,26,1,0,0,,22F403,62F403,ff,Fuel_system status.05 ,18DAF1DA,27,27,1,0,0,,22F403,62F403,ff,Fuel_system status.04 ,18DAF1DA,28,28,1,0,0,,22F403,62F403,ff,Fuel_system status.03 ,18DAF1DA,29,29,1,0,0,,22F403,62F403,ff,Fuel_system status.02 ,18DAF1DA,30,30,1,0,0,,22F403,62F403,ff,Fuel_system status.01 ,18DAF1DA,31,31,1,0,0,,22F403,62F403,ff,Fuel_system status.00 ,18DAF1DA,32,32,1,0,0,,22F403,62F403,ff,Fuel_system status.15 ,18DAF1DA,33,33,1,0,0,,22F403,62F403,ff,Fuel_system status.14 ,18DAF1DA,34,34,1,0,0,,22F403,62F403,ff,Fuel_system status.13 ,18DAF1DA,35,35,1,0,0,,22F403,62F403,ff,Fuel_system status.12 ,18DAF1DA,36,36,1,0,0,,22F403,62F403,ff,Fuel_system status.11 ,18DAF1DA,37,37,1,0,0,,22F403,62F403,ff,Fuel_system status.10 ,18DAF1DA,38,38,1,0,0,,22F403,62F403,ff,Fuel_system status.09 ,18DAF1DA,39,39,1,0,0,,22F403,62F403,ff,Fuel_system status.08 ,18DAF1DA,24,31,.392156863,0,1,%,22F404,62F404,ff,Calculated_LOAD value ,18DAF1DA,24,31,1,40,0,,22F405,62F405,ff,Engine coolant temperature (OBD$F405) ,18DAF1DA,24,31,.78125,128,1,%,22F406,62F406,ff,$01 - Short Term Fuel Trim – Bank 1 ,18DAF1DA,24,31,.78125,128,1,%,22F407,62F407,ff,$01 - Long Term Fuel Trim – Bank 1 ,18DAF1DA,24,31,3,0,0,kPa,22F40A,62F40A,ff,$01 - Fuel Pressure (Gauge) ,18DAF1DA,24,39,.25,0,1,rpm,22F40C,62F40C,ff,Engine RPM. ,18DAF1DA,24,31,1,0,0,km/h,22F40D,62F40D,ff,Vehicle speed sensor (OBD$F40D) ,18DAF1DA,24,31,.5,256,1,,22F40E,62F40E,ff,Ignition timing advance for cylinder 1 ,18DAF1DA,24,31,1,40,0,,22F40F,62F40F,ff,Intake Air Temperature (OBD$F40F) ,18DAF1DA,24,31,.392156862745098,0,1,%,22F411,62F411,ff,Absolute throttle position ,18DAF1DA,24,24,1,0,0,,22F413,62F413,ff,Location of oxygen sensors.00 ,18DAF1DA,25,25,1,0,0,,22F413,62F413,ff,Location of oxygen sensors.01 ,18DAF1DA,26,26,1,0,0,,22F413,62F413,ff,Location of oxygen sensors.02 ,18DAF1DA,27,27,1,0,0,,22F413,62F413,ff,Location of oxygen sensors.03 ,18DAF1DA,28,28,1,0,0,,22F413,62F413,ff,Location of oxygen sensors.04 ,18DAF1DA,29,29,1,0,0,,22F413,62F413,ff,Location of oxygen sensors.05 ,18DAF1DA,30,30,1,0,0,,22F413,62F413,ff,Location of oxygen sensors.06 ,18DAF1DA,31,31,1,0,0,,22F413,62F413,ff,Location of oxygen sensors.07 ,18DAF1DA,24,31,.005,0,3,V,22F414,62F414,ff,Bank 1 - Sensor 1.00 ,18DAF1DA,32,39,.78125,164,1,%,22F414,62F414,ff,Bank 1 - Sensor 1.01 ,18DAF1DA,24,31,1,0,0,,22F41C,62F41C,ff,OBD requirements to wich vehicle is designed,1:OBD II;2:OBD;3:OBD ans OBD II;4:OBD I;5:NO OBD;6:EOBD;7:EOBD and OBD II;8:EOBD and OBD;9:EOBD- OBD and OBD II;11:EMD;12:EMD+;13:HD OBD-C;14:HD OBD;15:WWH OBD;16:SAE/ISO reserved;17:HD EOBD-I;18:HD EOBD-I N;19:HD EOBD-II;20:IOBD II;21:HD EOBD-VI ,18DAF1DA,24,31,1,0,0,,22F41E,62F41E,ff,$01 - Auxiliary Input Status,0:PTO not active (OFF);1:PTO active (ON) ,18DAF1DA,24,39,1,0,0,s,22F41F,62F41F,ff,$01 - Time Since Engine Start ,18DAF1DA,24,55,1,0,0,,22F420,62F420,4ff,DIDs supported in range F421 - F440 ,18DAF1DA,24,39,1,0,0,km,22F421,62F421,ff,Distance travelled while MIL is activated ,18DAF1DA,24,39,.0790112154,0,2,kPa,22F422,62F422,ff,$01 - Fuel Pressure relative to manifold vacuum ,18DAF1DA,24,39,10,0,0,kPa,22F423,62F423,ff,Fuel rail pressure ,18DAF1DA,24,39,.0000305,0,3,,22F424,62F424,ff,Oxygen sensor monitoring - Sensor 1.00 ,18DAF1DA,40,55,.000122,0,3,V,22F424,62F424,ff,Oxygen sensor monitoring - Sensor 1.01 ,18DAF1DA,24,31,.3921568627,0,1,%,22F42E,62F42E,ff,$01 - Commanded Evaporative Purge ,18DAF1DA,24,31,.3921568627,0,1,%,22F42F,62F42F,ff,$01 - Fuel Level Input ,18DAF1DA,24,31,1,0,0,kPa,22F433,62F433,ff,$01 - Barometric Pressure ,18DAF1DA,24,55,1,0,0,,22F440,62F440,4ff,DIDs supported in range F441 - F460 ,18DAF1DA,24,24,1,0,0,,22F441,62F441,ff,PID_$F441.24,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,25,25,1,0,0,,22F441,62F441,ff,PID_$F441.23,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,26,26,1,0,0,,22F441,62F441,ff,PID_$F441.22,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,27,27,1,0,0,,22F441,62F441,ff,PID_$F441.21,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,28,28,1,0,0,,22F441,62F441,ff,PID_$F441.20,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,29,29,1,0,0,,22F441,62F441,ff,PID_$F441.19,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,30,30,1,0,0,,22F441,62F441,ff,PID_$F441.18,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,31,31,1,0,0,,22F441,62F441,ff,PID_$F441.17,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,32,39,1,0,0,,22F441,62F441,ff,PID_$F441.16 ,18DAF1DA,40,40,1,0,0,,22F441,62F441,ff,PID_$F441.15,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,41,41,1,0,0,,22F441,62F441,ff,PID_$F441.14,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,42,42,1,0,0,,22F441,62F441,ff,PID_$F441.13,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,43,43,1,0,0,,22F441,62F441,ff,PID_$F441.12,0:Test complete or not applicable;1:Test not complete ,18DAF1DA,44,44,1,0,0,,22F441,62F441,ff,PID_$F441.11,0:spark;1:compression ,18DAF1DA,45,45,1,0,0,,22F441,62F441,ff,PID_$F441.10,0:Not supported;1:Supported ,18DAF1DA,46,46,1,0,0,,22F441,62F441,ff,PID_$F441.9,0:Not supported;1:Supported ,18DAF1DA,47,47,1,0,0,,22F441,62F441,ff,PID_$F441.8,0:Not supported;1:Supported ,18DAF1DA,48,55,1,0,0,,22F441,62F441,ff,PID_$F441.0 ,18DAF1DA,24,39,.001,0,3,V,22F442,62F442,ff,Control module voltage ,18DAF1DA,24,39,.392156862745098,0,1,%,22F443,62F443,ff,Absolute Load Value ,18DAF1DA,24,39,.0000305,0,3,,22F444,62F444,ff,Fuel/Air Commanded Equivalence Ratio ,18DAF1DA,24,31,.392156862745098,0,1,%,22F445,62F445,ff,Relative Throttle Position ,18DAF1DA,24,31,1,40,0,,22F446,62F446,ff,Ambient air temperature ,18DAF1DA,24,31,.392156862745098,0,1,%,22F447,62F447,ff,Absolute Throttle Position B ,18DAF1DA,24,31,.392156862745098,0,1,%,22F449,62F449,ff,Accelerator Pedal Position D ,18DAF1DA,24,31,.392156862745098,0,1,%,22F44A,62F44A,ff,Accelerator Pedal Position E ,18DAF1DA,24,31,.392156862745098,0,1,%,22F44C,62F44C,ff,Commanded Throttle Actuator Control ,18DAF1DA,24,31,10,0,0,kPa,22F44F,62F44F,ff,Maximum value for Intake Manifold Absolute Pressure ,18DAF1DA,24,31,1,0,0,,22F451,62F451,ff,$01 - Type of fuel currently being utilized by the vehicle ,18DAF1DA,24,31,.392156862745098,0,1,%,22F452,62F452,ff,$01 - Alcohol fuel percentage ,18DAF1DA,24,39,.005,0,3,kPa,22F453,62F453,ff,$01 - Absolute Evap System Vapor Pressure ,18DAF1DA,24,31,.78125,128,1,%,22F455,62F455,ff,$01 - Short term secondary O2 sensor fuel trim ,18DAF1DA,24,31,.78125,128,1,%,22F456,62F456,ff,$01 - Long term secondary O2 sensor fuel trim ,18DAF1DA,24,39,10,0,0,kPa,22F459,62F459,ff,$01 - Fuel Rail Pressure (absolute) ,18DAF1DA,24,31,.392156862745098,0,1,%,22F45B,62F45B,ff,$01 - Hybrid/EV Battery Pack Remaining Charge ,18DAF1DA,24,31,1,40,0,,22F45C,62F45C,ff,$01 - Engine Oil Temperature ,18DAF1DA,24,55,1,0,0,,22F460,62F460,4ff,DIDs supported in range [$F461 - $F480] ,18DAF1DA,24,31,1,0,0,,22F465,62F465,ff,$01 - Glow plug lamp status.01 ,18DAF1DA,32,39,1,0,0,,22F465,62F465,ff,$01 - Glow plug lamp status.02 ,18DAF1DA,24,31,1,0,0,,22F46C,62F46C,ff,$01 - Commanded Throttle Actuator Control and Relative Throttle Position.01 ,18DAF1DA,32,39,.3921568627,0,1,,22F46C,62F46C,ff,$01 - Commanded Throttle Actuator Control and Relative Throttle Position.02 ,18DAF1DA,40,47,.3921568627,0,1,,22F46C,62F46C,ff,$01 - Commanded Throttle Actuator Control and Relative Throttle Position.03 ,18DAF1DA,48,55,.3921568627,0,1,,22F46C,62F46C,ff,$01 - Commanded Throttle Actuator Control and Relative Throttle Position.04 ,18DAF1DA,56,63,.3921568627,0,1,,22F46C,62F46C,ff,$01 - Commanded Throttle Actuator Control and Relative Throttle Position.05 ,18DAF1DA,24,31,1,0,0,,22F46E,62F46E,ff,$01 - Commanded injection control pressure.01 ,18DAF1DA,32,47,10,0,0,kPa,22F46E,62F46E,ff,$01 - Commanded injection control pressure.02 ,18DAF1DA,48,63,10,0,0,kPa,22F46E,62F46E,ff,$01 - Commanded injection control pressure.03 ,18DAF1DA,64,79,10,0,0,kPa,22F46E,62F46E,ff,$01 - Commanded injection control pressure.04 ,18DAF1DA,80,95,10,0,0,kPa,22F46E,62F46E,ff,$01 - Commanded injection control pressure.05 ,18DAF1DA,24,55,1,0,0,,22F480,62F480,4ff,DIDs supported in range [$F481 - $F4A0] ,18DAF1DA,24,39,1,32767,0,A,22F49A,62F49A,ff,$01 - Hybrid/EV Vehicle System Data for OBD.04 ,18DAF1DA,40,71,.01,0,2,V,22F49A,62F49A,1ff,$01 - Hybrid/EV Vehicle System Data for OBD.03 ,18DAF1DA,72,79,1,0,0,,22F49A,62F49A,ff,$01 - Hybrid/EV Vehicle System Data for OBD.02 ,18DAF1DA,80,87,1,0,0,,22F49A,62F49A,ff,$01 - Hybrid/EV Vehicle System Data for OBD.01 ,18DAF1DA,24,39,.02,0,2,g,22F49D,62F49D,ff,$01 - Engine Fuel Rate (except fuel injected directly into the after treatment system ).01 ,18DAF1DA,40,55,.02,0,2,g,22F49D,62F49D,ff,$01 - Engine Fuel Rate (except fuel injected directly into the after treatment system ).02 ,18DAF1DA,24,55,1,0,0,,22F4A0,62F4A0,4ff,DIDs supported in range [$F4A1 - $F4C0] ,18DAF1DA,24,39,.03125,0,2,,22F4A2,62F4A2,ff,$01 - cylinder fuel rate ,18DAF1DA,24,55,1,0,0,,22F600,62F600,4ff,DIDs supported in range [$F601 - $F620] ,18DAF1DA,24,31,1,0,0,,22F601,62F601,ff,OBDMID-Oxygen sensor diagnostic for service $06 (OBD $F601).1 ,18DAF1DA,32,39,1,0,0,,22F601,62F601,ff,OBDMID-Oxygen sensor diagnostic for service $06 (OBD $F601).2 ,18DAF1DA,40,55,1,0,0,,22F601,62F601,ff,OBDMID-Oxygen sensor diagnostic for service $06 (OBD $F601).3 ,18DAF1DA,56,71,1,0,0,,22F601,62F601,ff,OBDMID-Oxygen sensor diagnostic for service $06 (OBD $F601).4 ,18DAF1DA,72,87,1,0,0,,22F601,62F601,ff,OBDMID-Oxygen sensor diagnostic for service $06 (OBD $F601).5 ,18DAF1DA,24,55,1,0,0,,22F620,62F620,4ff,DIDs supported in range F621 - F640 ,18DAF1DA,24,39,1,0,0,,22F621,62F621,ff,$06 - Catalyst diagnostic.05 ,18DAF1DA,40,55,1,0,0,,22F621,62F621,ff,$06 - Catalyst diagnostic.04 ,18DAF1DA,56,71,1,0,0,,22F621,62F621,ff,$06 - Catalyst diagnostic.03 ,18DAF1DA,72,79,1,0,0,,22F621,62F621,ff,$06 - Catalyst diagnostic.02 ,18DAF1DA,80,87,1,0,0,,22F621,62F621,ff,$06 - Catalyst diagnostic.01 ,18DAF1DA,24,39,1,0,0,,22F631,62F631,ff,$06 - EGR System Diagnostic.09 ,18DAF1DA,40,55,1,0,0,,22F631,62F631,ff,$06 - EGR System Diagnostic.08 ,18DAF1DA,56,71,1,0,0,,22F631,62F631,ff,$06 - EGR System Diagnostic.07 ,18DAF1DA,72,79,.01,0,2,,22F631,62F631,ff,$06 - EGR System Diagnostic.06 ,18DAF1DA,80,87,1,0,0,,22F631,62F631,ff,$06 - EGR System Diagnostic.05 ,18DAF1DA,96,111,1,0,0,,22F631,62F631,ff,$06 - EGR System Diagnostic.04 ,18DAF1DA,112,127,1,0,0,,22F631,62F631,ff,$06 - EGR System Diagnostic.03 ,18DAF1DA,128,143,1,0,0,,22F631,62F631,ff,$06 - EGR System Diagnostic.02 ,18DAF1DA,144,151,.01,0,2,,22F631,62F631,ff,$06 - EGR System Diagnostic.01 ,18DAF1DA,152,159,1,0,0,,22F631,62F631,ff,$06 - EGR System Diagnostic.00 ,18DAF1DA,24,55,1,0,0,,22F640,62F640,4ff,DIDs supported in range F641- F660 ,18DAF1DA,24,55,1,0,0,,22F641,62F641,1ff,Downstream Oxygen sensor heater monitoring.01 ,18DAF1DA,56,87,1,0,0,,22F641,62F641,1ff,Downstream Oxygen sensor heater monitoring.00 ,18DAF1DA,24,55,1,0,0,,22F660,62F660,4ff,DIDs supported in range F661- F680 ,18DAF1DA,24,55,1,0,0,,22F680,62F680,4ff,DIDs supported in range F681- F6A0 ,18DAF1DA,24,39,1,0,0,,22F681,62F681,ff,$06 - Fuel system diagnostic.09 ,18DAF1DA,40,55,1,0,0,,22F681,62F681,ff,$06 - Fuel system diagnostic.08 ,18DAF1DA,56,71,1,0,0,,22F681,62F681,ff,$06 - Fuel system diagnostic.07 ,18DAF1DA,72,79,.1,32768,1,,22F681,62F681,ff,$06 - Fuel system diagnostic.06 ,18DAF1DA,80,87,1,0,0,,22F681,62F681,ff,$06 - Fuel system diagnostic.05 ,18DAF1DA,88,103,1,0,0,,22F681,62F681,ff,$06 - Fuel system diagnostic.04 ,18DAF1DA,104,119,1,0,0,,22F681,62F681,ff,$06 - Fuel system diagnostic.03 ,18DAF1DA,120,135,1,0,0,,22F681,62F681,ff,$06 - Fuel system diagnostic.02 ,18DAF1DA,136,143,.0000305,0,3,,22F681,62F681,ff,$06 - Fuel system diagnostic.01 ,18DAF1DA,144,151,1,0,0,,22F681,62F681,ff,$06 - Fuel system diagnostic.00 ,18DAF1DA,24,31,1,0,0,,22F685,62F685,4ff,Turbocharger Monitor diagnostic.21 (82h Test ID) ,18DAF1DA,32,39,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.22 (04h Unit and Scaling) ,18DAF1DA,40,55,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.23 (TEST VALUE) ,18DAF1DA,56,71,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.24 (TEST LIMIT MIN) ,18DAF1DA,72,87,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.25 (TEST LIMIT MAX) ,18DAF1DA,96,103,1,0,0,,22F685,62F685,4ff,Turbocharger Monitor diagnostic.11 (81h Test ID) ,18DAF1DA,104,111,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.12 (04h Unit and Scaling) ,18DAF1DA,112,127,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.13 (TEST VALUE) ,18DAF1DA,128,143,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.14 (TEST LIMIT MIN) ,18DAF1DA,144,159,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.15 (TEST LIMIT MAX) ,18DAF1DA,168,175,1,0,0,,22F685,62F685,4ff,Turbocharger Monitor diagnostic.01 (80h Test ID) ,18DAF1DA,176,183,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.02 (02h Unit and Scaling) ,18DAF1DA,184,199,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.03 (TEST VALUE) ,18DAF1DA,200,215,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.04 (TEST LIMIT MIN) ,18DAF1DA,216,231,1,0,0,,22F685,62F685,ff,Turbocharger Monitor diagnostic.05 (TEST LIMIT MAX) ,18DAF1DA,24,55,1,0,0,,22F6A0,62F6A0,4ff,DIDs supported in range F6A1- F6C0 ,18DAF1DA,24,39,1,0,0,,22F6A1,62F6A1,ff,$06 - Misfire diagnostic.05 ,18DAF1DA,40,55,1,0,0,,22F6A1,62F6A1,ff,$06 - Misfire diagnostic.04 ,18DAF1DA,56,71,1,0,0,,22F6A1,62F6A1,ff,$06 - Misfire diagnostic.03 ,18DAF1DA,72,79,1,0,0,,22F6A1,62F6A1,ff,$06 - Misfire diagnostic.02 ,18DAF1DA,80,87,1,0,0,,22F6A1,62F6A1,ff,$06 - Misfire diagnostic.01 ,18DAF1DA,24,55,1,0,0,,22F6C0,62F6C0,4ff,DIDs supported in range F6C1- F6E0 ,18DAF1DA,24,55,1,0,0,,22F6E0,62F6E0,4ff,DIDs supported in range [$F6E1- $F700] ,18DAF1DA,24,31,1,0,0,,22F6E3,62F6E3,ff,EGR Low Pressure System Diagnostic ,18DAF1DA,24,31,1,0,0,,22F6E5,62F6E5,4ff,Engine Cooling Temperature Monitoring.1 (Test ID) ,18DAF1DA,32,39,1,0,0,,22F6E5,62F6E5,ff,Engine Cooling Temperature Monitoring.2 (Unit and Scaling) ,18DAF1DA,40,55,1,0,0,,22F6E5,62F6E5,ff,Engine Cooling Temperature Monitoring.3 (TEST VALUE) ,18DAF1DA,56,71,1,0,0,,22F6E5,62F6E5,ff,Engine Cooling Temperature Monitoring.4 (TEST LIMIT MIN) ,18DAF1DA,72,87,1,0,0,,22F6E5,62F6E5,ff,Engine Cooling Temperature Monitoring.5 (TEST LIMIT MAX) ,18DAF1DA,24,31,1,0,0,,22F6E6,62F6E6,ff,$06 - Inlet throttle diagnosis.(Test ID) ,18DAF1DA,32,39,1,0,0,,22F6E6,62F6E6,ff,$06 - Inlet throttle diagnosis.(Unit and Scaling) ,18DAF1DA,40,55,1,0,0,,22F6E6,62F6E6,ff,$06 - Inlet throttle diagnosis.(TEST VALUE) ,18DAF1DA,56,71,1,0,0,,22F6E6,62F6E6,ff,$06 - Inlet throttle diagnosis.(TEST LIMIT MIN) ,18DAF1DA,72,87,1,0,0,,22F6E6,62F6E6,ff,$06 - Inlet throttle diagnosis.(TEST LIMIT MAX) ,18DAF1DA,24,31,1,0,0,,22F6E7,62F6E7,ff,$06 - Exhaust throttle diagnosis.(Test ID) ,18DAF1DA,32,39,1,0,0,,22F6E7,62F6E7,ff,$06 - Exhaust throttle diagnosis.(Unit and Scaling) ,18DAF1DA,40,55,1,0,0,,22F6E7,62F6E7,ff,$06 - Exhaust throttle diagnosis.(TEST VALUE) ,18DAF1DA,56,71,1,0,0,,22F6E7,62F6E7,ff,$06 - Exhaust throttle diagnosis.(TEST LIMIT MIN) ,18DAF1DA,72,87,1,0,0,,22F6E7,62F6E7,ff,$06 - Exhaust throttle diagnosis.(TEST LIMIT MAX) ,18DAF1DA,24,31,1,0,0,,22F6E8,62F6E8,ff,$06 - Evaporation diagnosis.(Test ID) ,18DAF1DA,32,39,1,0,0,,22F6E8,62F6E8,ff,$06 - Evaporation diagnosis.(Unit and Scaling) ,18DAF1DA,40,55,1,0,0,,22F6E8,62F6E8,ff,$06 - Evaporation diagnosis.(TEST VALUE) ,18DAF1DA,56,71,1,0,0,,22F6E8,62F6E8,ff,$06 - Evaporation diagnosis.(TEST LIMIT MIN) ,18DAF1DA,72,87,1,0,0,,22F6E8,62F6E8,ff,$06 - Evaporation diagnosis.(TEST LIMIT MAX) ,18DAF1DA,24,55,1,0,0,,22F800,62F800,4ff,DIDs supported in range [$F801 - $F820] ,18DAF1DA,32,167,1,0,0,,22F802,62F802,2ff,OBDMID-Vehicle identification number.1 ,18DAF1DA,24,31,1,0,0,,22F804,62F804,ff,OBD calibration identifications.0 ,18DAF1DA,32,159,1,0,0,,22F804,62F804,2ff,OBD calibration identifications.1 ,18DAF1DA,32,63,1,0,0,,22F806,62F806,4ff,Calibration verification numbers ,18DAF1DA,24,31,1,0,0,,22F808,62F808,ff,IUPR gasoline.00_nr ,18DAF1DA,32,47,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : general denominator ,18DAF1DA,48,63,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Ignition counter ,18DAF1DA,64,79,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Num Classe 0 ,18DAF1DA,80,95,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Den Classe 0 ,18DAF1DA,96,111,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Num Classe 1 ,18DAF1DA,112,127,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Den Classe 1 ,18DAF1DA,128,143,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Num Classe 2 ,18DAF1DA,144,159,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Den Classe 2 ,18DAF1DA,160,175,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Num Classe 3 ,18DAF1DA,176,191,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Den Classe 3 ,18DAF1DA,192,207,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Num Classe 4 ,18DAF1DA,208,223,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Den Classe 4 ,18DAF1DA,224,239,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Num Classe 5 ,18DAF1DA,240,255,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Den Classe 5 ,18DAF1DA,256,271,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Num Classe 6 ,18DAF1DA,272,287,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Den Classe 6 ,18DAF1DA,288,303,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Num Classe 7 ,18DAF1DA,304,319,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Den Classe 7 ,18DAF1DA,320,335,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Num Classe 8 ,18DAF1DA,336,351,1,0,0,,22F808,62F808,ff,IUPR gasoline.IUPR : Den Classe 8 ,18DAF1DA,24,31,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.00 ,18DAF1DA,32,39,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.01 ,18DAF1DA,40,47,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.02 ,18DAF1DA,48,55,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.03 ,18DAF1DA,56,63,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.04 ,18DAF1DA,64,71,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.05 ,18DAF1DA,72,79,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.06 ,18DAF1DA,80,87,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.08 ,18DAF1DA,88,95,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.07 ,18DAF1DA,96,103,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.09 ,18DAF1DA,104,111,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.10 ,18DAF1DA,112,119,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.11 ,18DAF1DA,120,127,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.12 ,18DAF1DA,128,135,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.13 ,18DAF1DA,136,143,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.14 ,18DAF1DA,144,151,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.15 ,18DAF1DA,152,159,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.16 ,18DAF1DA,160,167,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.17 ,18DAF1DA,168,175,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.18 ,18DAF1DA,176,183,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.19 ,18DAF1DA,184,191,1,0,0,,22F80A,62F80A,2ff,$09 - systemNameorEngineType.20 ,18DAF1DA,24,31,1,0,0,,22F80B,62F80B,ff,IUPR diesel.00_nr ,18DAF1DA,32,47,1,0,0,,22F80B,62F80B,ff,IUPR diesel.00 ,18DAF1DA,48,63,1,0,0,,22F80B,62F80B,ff,IUPR diesel.01 ,18DAF1DA,64,79,1,0,0,,22F80B,62F80B,ff,IUPR diesel.02 ,18DAF1DA,80,95,1,0,0,,22F80B,62F80B,ff,IUPR diesel.03 ,18DAF1DA,96,111,1,0,0,,22F80B,62F80B,ff,IUPR diesel.04 ,18DAF1DA,112,127,1,0,0,,22F80B,62F80B,ff,IUPR diesel.05 ,18DAF1DA,128,143,1,0,0,,22F80B,62F80B,ff,IUPR diesel.06 ,18DAF1DA,144,159,1,0,0,,22F80B,62F80B,ff,IUPR diesel.07 ,18DAF1DA,160,175,1,0,0,,22F80B,62F80B,ff,IUPR diesel.08 ,18DAF1DA,176,191,1,0,0,,22F80B,62F80B,ff,IUPR diesel.09 ,18DAF1DA,192,207,1,0,0,,22F80B,62F80B,ff,IUPR diesel.10 ,18DAF1DA,208,223,1,0,0,,22F80B,62F80B,ff,IUPR diesel.11 ,18DAF1DA,224,239,1,0,0,,22F80B,62F80B,ff,IUPR diesel.12 ,18DAF1DA,240,255,1,0,0,,22F80B,62F80B,ff,IUPR diesel.13 ,18DAF1DA,256,271,1,0,0,,22F80B,62F80B,ff,IUPR diesel.14 ,18DAF1DA,272,287,1,0,0,,22F80B,62F80B,ff,IUPR diesel.15 ,18DAF1DA,288,303,1,0,0,,22F80B,62F80B,ff,IUPR diesel.16 ,18DAF1DA,304,319,1,0,0,,22F80B,62F80B,ff,IUPR diesel.17 ,18DAF1DA,24,31,1,0,0,,22F80F,62F80F,4ff,$09 - exhaustRegulationorTypeApprovalNumber.00 ,18DAF1DA,88,167,1,0,0,,22F80F,62F80F,2ff,$09 - exhaustRegulationorTypeApprovalNumber.01 ,18DAF1DA,24,31,1,0,0,,22F810,62F810,2ff,$09 - PROTOCOL IDENTIFICATION ,18DAF1DA,24,31,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.11 ,18DAF1DA,32,39,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.10 ,18DAF1DA,40,47,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.09 ,18DAF1DA,48,55,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.08 ,18DAF1DA,56,63,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.07 ,18DAF1DA,64,71,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.06 ,18DAF1DA,72,79,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.05 ,18DAF1DA,80,87,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.04 ,18DAF1DA,88,95,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.03 ,18DAF1DA,96,103,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.02 ,18DAF1DA,104,111,1,0,0,,22F811,62F811,2ff,$09 - WWH OBD GTR NUMBER.01 ,18DAF1DA,24,55,1,0,0,,22FD90,62FD90,4ff,DIDs supported in range [$FD91 - $FD9F] ,18DAF1DA,24,39,.09765625,0,2,%,22FD91,62FD91,ff,Current CPU load for P0 ,18DAF1DA,24,39,.09765625,0,2,%,22FD92,62FD92,ff,Maximum detected CPU load for P0 ,18DAF1DA,24,39,.09765625,0,2,%,22FD93,62FD93,ff,Current CPU load for S1 ,18DAF1DA,24,39,.09765625,0,2,%,22FD94,62FD94,ff,Maximum detected CPU load for S1 ,18DAF1DA,24,39,.09765625,0,2,%,22FD95,62FD95,ff,Current CPU load for S2 ,18DAF1DA,24,39,.09765625,0,2,%,22FD96,62FD96,ff,Maximum detected CPU load for S2 ,18DAF1DA,24,31,1,0,0,,22FD97,62FD97,ff,Error code, which represents a failure detected by MC ,18DAF1DA,24,31,1,0,0,,22FD98,62FD98,ff,Error code which represents an error on MC detected by MU ,18DAF1DA,24,55,1,0,0,,22FEE0,62FEE0,4ff,DIDs supported in range FD01 - FEFF ,18DAF1DA,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/EVC-HCM-VCM_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature F1,Safety Case 1 F2,Safety Case 2 F3,Multiple Failure F4,Temperature too Low F5,Negative Loop Error F6,Positive Loop Error F7,Initialisation not valid F8,Catalyst Destructive F9,Limp Home FA,Specific Supplier FB,Upstream lambda sensor pumping current FC,Downstream lambda sensor pumping current ================================================ FILE: app/src/main/assets/ZOE_Ph2/FCAM_Dtcs.csv ================================================ 6507,LDW switch 6502,Incomplete configuration E14F,BCM_V1_Lost_Communication E259,EPS_IC_Lost_Communication E159,EPS_V1_Lost_Communication E140,ECM_V1_Lost_Communication E148,VDC_V1_Lost_Communication E14E,METER_V1_Lost_Communication E104,4WS_CH_Lost_Communication E152,ADAS_IC_Lost_Communication E15B,USM_V1_Lost_Communication E176,IDM_IC_Lost_Communication E16E,BSWR_Lost_Communication 650A,BCM_Error 650B,EPS_Error 650C,ECM_Error 650D,VDC_Error 650E,METER_Error 650F,4WS_Error 6510,RADIO_Error 6511,ADAS_Error 6512,ATCU_Error 6513,IDM_Error 6514,RADAR_Error 6515,USM_Error 6518,BSWR_Error 6519,IC_CAN_ComFailure 651A,ITS_CAN_ComFailure E150,Airbag_Lost_Communication 6516,Airbag_Error 6517,BSWL_Error 6501,ECU_Overheating 6570,ECU_Overheating - DEV 6571,Camera Misalignement - DEV 6572,Sensor_Blockage - DEV 6504,Sensor_Blockage E16C,BSWL_Lost_Communication 6576,Oily Windshield - DEV 6573,Weather_Disturbances - DEV 6574,Out Of Focus 6575,Out of Focus - DEV 6500,ECU_InternalFailure 6503,Camera misaligned or never aligned 6508,Power Voltage Disturbances E141,ATCU_V1_Lost_Communication ================================================ FILE: app/src/main/assets/ZOE_Ph2/FCAM_Fields.csv ================================================ ,7DD,0,0,1,0,0,,1000,5000,ff,StartDiagnosticSession ,7DD,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,7DD,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming ,7DD,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnostic ,7DD,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7DD,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,7DD,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,1:ISO_14229-1_DTCFormat;2:SAE_J1939-73_DTCFormat;0:SAE_J2012-DA_DTCFormat;3:ISO_11992-4_DTCFormat;4:SAE_J2012-DA_WWHOBD_DTCFormat ,7DD,32,47,1,0,0,,1901FF,5901FF,4ff,DTCCount ,7DD,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,7DD,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,25856:ECU_InternalFailure;25857:ECU_Overheating;25858:Incomplete configuration;25859:Camera misaligned or never aligned;25860:Sensor_Blockage;25863:LDW switch;25864:Power Voltage Disturbances;25866:BCM_Error;25867:EPS_Error;25868:ECM_Error;25869:VDC_Error;25870:METER_Error;25871:4WS_Error;25872:RADIO_Error;25873:ADAS_Error;25874:ATCU_Error;25875:IDM_Error;25876:RADAR_Error;25877:USM_Error;25878:Airbag_Error;25879:BSWL_Error;25880:BSWR_Error;25881:IC_CAN_ComFailure;25882:ITS_CAN_ComFailure;25968:ECU_Overheating - DEV;25969:Camera Misalignement - DEV;25970:Sensor_Blockage - DEV;25971:Weather_Disturbances - DEV;25972:Out Of Focus;25973:Out of Focus - DEV;25974:Oily Windshield - DEV;57604:4WS_CH_Lost_Communication;57664:ECM_V1_Lost_Communication;57665:ATCU_V1_Lost_Communication;57672:VDC_V1_Lost_Communication;57678:METER_V1_Lost_Communication;57679:BCM_V1_Lost_Communication;57680:Airbag_Lost_Communication;57682:ADAS_IC_Lost_Communication;57689:EPS_V1_Lost_Communication;57691:USM_V1_Lost_Communication;57708:BSWL_Lost_Communication;57710:BSWR_Lost_Communication;57718:IDM_IC_Lost_Communication;57945:EPS_IC_Lost_Communication ,7DD,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,7DD,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,7DD,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,7DD,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7DD,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7DD,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7DD,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,7DD,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,7DD,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,7DD,16,39,1,0,0,,1903000000FF,5903000000FF,4ff,DTCRecord ,7DD,40,47,1,0,0,,1903000000FF,5903000000FF,4ff,DTCSnapshotRecordNumber ,7DD,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7DD,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,7DD,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,7DD,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,7DD,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,7DD,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,7DD,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,7DD,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,7DD,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,7DD,56,63,1,0,0,,190600000082,590600000082,ff,DTCOccurrenceCounter ,7DD,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,7DD,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,25856:ECU_InternalFailure;25857:ECU_Overheating;25858:Incomplete configuration;25859:Camera misaligned or never aligned;25860:Sensor_Blockage;25863:LDW switch;25864:Power Voltage Disturbances;25866:BCM_Error;25867:EPS_Error;25868:ECM_Error;25869:VDC_Error;25870:METER_Error;25871:4WS_Error;25872:RADIO_Error;25873:ADAS_Error;25874:ATCU_Error;25875:IDM_Error;25876:RADAR_Error;25877:USM_Error;25878:Airbag_Error;25879:BSWL_Error;25880:BSWR_Error;25881:IC_CAN_ComFailure;25882:ITS_CAN_ComFailure;25968:ECU_Overheating - DEV;25969:Camera Misalignement - DEV;25970:Sensor_Blockage - DEV;25971:Weather_Disturbances - DEV;25972:Out Of Focus;25973:Out of Focus - DEV;25974:Oily Windshield - DEV;57604:4WS_CH_Lost_Communication;57664:ECM_V1_Lost_Communication;57665:ATCU_V1_Lost_Communication;57672:VDC_V1_Lost_Communication;57678:METER_V1_Lost_Communication;57679:BCM_V1_Lost_Communication;57680:Airbag_Lost_Communication;57682:ADAS_IC_Lost_Communication;57689:EPS_V1_Lost_Communication;57691:USM_V1_Lost_Communication;57708:BSWL_Lost_Communication;57710:BSWR_Lost_Communication;57718:IDM_IC_Lost_Communication;57945:EPS_IC_Lost_Communication ,7DD,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,7DD,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,7DD,28,55,.01,0,2,km,220105,620105,ff,Mileage_snapshot.Mileage_snapshot ,7DD,31,31,1,0,0,,22010C,62010C,ff,Aiming_Done,0:Aiming Not Finished;1:Aiming Finished ,7DD,31,31,1,0,0,,22010D,62010D,ff,Aiming_Result,0:Aiming NOK;1:OK ,7DD,26,31,1,0,0,,22010E,62010E,ff,Aiming_NG_Reason,0:Undefined;1:Aiming OK;2:Not all targets are detected;3:TAC converged successfully but the result exceeds the max roll angle threshold;4:TAC converged successfully but the result exceed the min/max horizon and/or yaw;5:Failure loading parameters;6:Distance to target out of valid range;7:Square side size (or radius) is out of valid logical range - defined target size is too small to be recognized;8:TAC2 converged successfully but the result exceeds the min/max yaw;9:TAC2 converged successfully but the result exceeds the min/max horizon;10:Too many targets;11:General Run Error ,7DD,26,31,1,0,0,,22010F,62010F,ff,SPC_NG_Reason,0:Unavailable;1:SPC error (SPC out of range);2:SPC OK (success);3:SPC running;4:SPC timeout;5:SPC paused ,7DD,24,39,.0004,0,3,°,220113,620113,1ff,Check_Aiming_Yaw ,7DD,24,39,.0004,0,3,°,220114,620114,1ff,Check_Aiming_Roll ,7DD,24,39,.0004,0,3,°,220115,620115,1ff,Check_Aiming_Pitch ,7DD,24,39,.0004,0,3,°,220116,620116,1ff,Factory_Aiming_Yaw ,7DD,24,39,.0004,0,3,°,220117,620117,1ff,Factory_Aiming_Roll ,7DD,24,39,.0004,0,3,°,220118,620118,1ff,Factory_Aiming_Pitch ,7DD,24,25,1,0,0,,221000,621000,ff,DID_Dev.Dev frames_TargetSimulationMode,0:OFF;1:Fusion track simulation on CAN - Polar Co-ordinates;2:Fusion track simulation on CAN - Cartesean Co-ordinates ,7DD,26,26,1,0,0,,221000,621000,ff,DID_Dev.Dev frames_Communication Interface Version,0:OFF;1:ON ,7DD,27,30,1,0,0,,221000,621000,ff,DID_Dev.Number of tracks ,7DD,32,32,1,0,0,,221000,621000,ff,DID_Dev.Debug frames simulink,0:OFF;1:ON ,7DD,33,33,1,0,0,,221000,621000,ff,DID_Dev.Debug frames Supplier,0:OFF;1:ON ,7DD,34,34,1,0,0,,221000,621000,ff,DID_Dev.LineDetectionSimulationMode,0:OFF;1:ON ,7DD,36,36,1,0,0,,221000,621000,ff,DID_Dev.LKA,0:OFF;1:ON ,7DD,37,39,1,0,0,,221000,621000,ff,DID_Dev.OSP,0:No Dev Frame Emiitted;1:Dev Frame Emitted ,7DD,40,40,1,0,0,,221000,621000,ff,DID_Dev.targets,0:OFF;1:ON ,7DD,31,31,1,0,0,,221001,621001,ff,Blindness_algorithm.Blindness_algorithm,0:Blindness algorithm OFF;1:Blindness algorithm ON ,7DD,31,31,1,0,0,,221002,621002,ff,XCP_Protocol_Activation,0:XCP protocol OFF;1:XCP protocol ON ,7DD,31,31,1,0,0,,222010,622010,ff,Supplier_Dev_Mode,0:Supplier Dev Mode Deactivated;1:Supplier Dev Mode Activated ,7DD,31,31,1,0,0,,222012,622012,ff,param_veh_gearbox.P_sys_x_GearboxType,0:Manual Gearbox;1:Automatic Gearbox ,7DD,25,31,.02,-4000,2,m,222013,622013,ff,param_veh.P_sys_m_VehicleWidth ,7DD,38,38,1,0,0,,222013,622013,ff,param_veh.P_sys_x_FourWheelSteering,0:OFF;1:ON ,7DD,39,39,1,0,0,,222013,622013,ff,param_veh.P_sys_x_LeftRightSteeringWheel,0:Steering Wheel on Right Side;1:Steering Wheel on Left Side ,7DD,28,28,1,0,0,,222044,622044,ff,Configuration_finished.P_sys_x_SupplierCalibFinished,0:ECU is not calibrated in supplier plant;1:ECU is calibrated in supplier plant ,7DD,29,29,1,0,0,,222044,622044,ff,Configuration_finished.P_sys_x_SupplierConfigFinished,0:ECU is not configured in supplier plant;1:ECU is configured in supplier plant ,7DD,30,30,1,0,0,,222044,622044,ff,Configuration_finished.P_sys_x_RenaultCalibFinished,0:ECU is not calibrated in Renault plant;1:ECU is calibrated in Renault plant ,7DD,31,31,1,0,0,,222044,622044,ff,Configuration_finished.P_sys_x_RenaultConfigFinished,0:ECU is not configured in Renault plant;1:ECU is configured in Renault plant ,7DD,27,39,1,0,0,°,222057,622057,1ff,Steering_wheel_angle.Steering_wheel_angle ,7DD,31,31,1,0,0,,222059,622059,ff,Radnav.Radnav_configuration_status,0:Radnav not present;1:Radnav present ,7DD,31,31,1,0,0,,222060,622060,ff,EDR_Activation_Status.EDR_Activation_Status,0:EDR deactivated;1:EDR activated ,7DD,31,31,1,0,0,,222061,622061,ff,ELKA_Configuration_Status,0:ELKA Deactivated;1:ELKA Activated ,7DD,31,31,1,0,0,,222062,622062,ff,AEBS.AEB_Configuration,0:AEB not present;1:AEB present ,7DD,31,31,1,0,0,,222063,622063,ff,ACC.ACC_Configuration,0:ACC not present;1:ACC present ,7DD,31,31,1,0,0,,222064,622064,ff,TJP.TJP_Configuration,0:TJP not present;1:TJP present ,7DD,24,31,.1,0,1,V,222065,622065,ff,Supply_voltage.Supply_voltage ,7DD,24,31,1,0,0,,222068,622068,ff,Vehicle_type.Vehicle_type,0:BJA;1:KJA;2:X10neo;3:HJB;4:HJE;5:JFC ph2;6:BFB ph2;7:KFB ph2;8:LJL;9:LJH;10:X82ph2;11:LFF ph2;13:LFD ph2;14:KFD ph2;15:P13A;16:L21B;255:Not Used ,7DD,31,31,1,0,0,,222069,622069,ff,ADB.ADB_enable,0:ADB Not Present;1:ADB Present ,7DD,25,31,1,0,0,lux,222070,622070,ff,ADB_Reflector_Brightness.ADB_Reflector_Brightness_factor_THRES ,7DD,39,39,1,0,0,,222074,622074,ff,ADB_clustering.ADB_Enable_clustering,0:Clustering is disabled;1:Clustering is enabled ,7DD,31,31,1,0,0,,222079,622079,ff,AHL.AHL_enable,0:AHL Not Present;1:AHL Present ,7DD,30,31,1,0,0,,222080,622080,ff,OSP_TSR.OSP_TSR_enable,0:Not Present;1:OSP/TSR Present;2:Reserved ,7DD,24,28,25,-16,0,m,222081,622081,ff,AHL_tuning.AHL_MAX_ON_COMING_DISTANCE_DUAL ,7DD,29,33,25,-16,0,m,222081,622081,ff,AHL_tuning.AHL_MAX_ON_COMING_DISTANCE_DUAL_LB ,7DD,34,38,25,-16,0,m,222081,622081,ff,AHL_tuning.AHL_MAX_ON_COMING_DISTANCE_SINGLE ,7DD,39,43,25,-16,0,m,222081,622081,ff,AHL_tuning.AHL_MAX_ON_COMING_DISTANCE_SINGLE_LB ,7DD,44,48,25,-4,0,m,222081,622081,ff,AHL_tuning.AHL_MAX_LEADING_DISTANCE_DUAL ,7DD,49,53,25,-4,0,m,222081,622081,ff,AHL_tuning.AHL_MAX_LEADING_DISTANCE_DUAL_LB ,7DD,54,58,25,-4,0,m,222081,622081,ff,AHL_tuning.AHL_MAX_LEADING_DISTANCE_SINGLE ,7DD,59,63,25,-4,0,m,222081,622081,ff,AHL_tuning.AHL_MAX_LEADING_DISTANCE_SINGLE_LB ,7DD,64,71,.1,0,1,,222081,622081,ff,AHL_tuning.AHL_LIT_AREA_THRES_IN ,7DD,72,79,.1,0,1,,222081,622081,ff,AHL_tuning.AHL_LIT_AREA_THRES_OUT ,7DD,85,89,.5,0,1,s,222081,622081,ff,AHL_tuning.AHL_DELAY_OPPOSITE ,7DD,90,94,.5,0,1,m,222081,622081,ff,AHL_tuning.AHL_DELAY_OVERTAKING ,7DD,95,99,.5,0,1,s,222081,622081,ff,AHL_tuning.AHL_DELAY_LOST ,7DD,100,104,5,0,0,Km/h,222081,622081,ff,AHL_tuning.AHL_SPEED_THRES_INF ,7DD,105,109,5,0,0,Km/h,222081,622081,ff,AHL_tuning.AHL_SPEED_THRES_SUP ,7DD,110,117,.1,0,1,,222081,622081,ff,AHL_tuning.AHL_AMBIENT_LIGHT_THRES_SUP ,7DD,118,125,.1,0,1,,222081,622081,ff,AHL_tuning.AHL_AMBIENT_LIGHT_THRES_INF ,7DD,31,31,1,0,0,,222084,622084,ff,OSP_NAVSPEEDSELECTION.OSP_NAVSPEEDSELECTION,0:use of only verified speed limits;1:use of all speed_limits ,7DD,31,31,1,0,0,,222086,622086,ff,OSP_TSR_Mode.OSP_TSR_Mode,0:TSR Mode;1:OSP mode ,7DD,31,31,1,0,0,,222093,622093,ff,LKA.LKA_configuration_Status,0:LKA not present;1:LKA present ,7DD,31,31,1,0,0,,222094,622094,ff,LKA.LKA_ActivationState_memorized,0:LKA OFF;1:LKA ON ,7DD,31,31,1,0,0,,222095,622095,ff,LDW.LDW_ActivationState_memorized,0:LDW OFF;1:LDW ON ,7DD,30,31,1,0,0,,222096,622096,ff,LDW.LDW_SensibilityState,1:Low time requested;0:Not used;2:Middle time requested;3:High time requested ,7DD,30,31,1,0,0,,222097,622097,ff,LDW.LDW_configuration_Status,0:LDW not present;1:LDW present - sonor;2:LDW present - haptique ,7DD,24,31,.08,0,2,,222098,622098,ff,LSS.Button_Voltage ,7DD,24,31,1,0,0,,222109,622109,ff,Country_Code.Country_Code,0:UNKNOWN;1:ABU DHABI;2:AFGHANISTAN;3:ALBANIA;4:ALGERIA;5:AMERICAN SAMOA;6:ANGOLA;7:ANTIGUA AND BARBUDA;8:ARGENTINA;9:ARMENIA;10:ARUBA;11:AUSTRALIA;12:AUSTRIA;13:AZERBAIDJAN;14:BAHAMAS;15:BAHRAIN;16:BARBADOS;17:BELARUS;18:BELGIUM;19:BELIZE;20:BENELUX;21:BENIN;22:BENGLADESH;23:BERMUDA;24:BHUTAN;25:BOLIVIA;26:BOSNIA AND HERZEGOVINA;27:BOTSWANA;28:BRAZIL;29:BRUNEI;30:BULGARIA;31:BURKINA FASO;32:BURUNDI;33:CAMBODIA;34:CAMEROON;35:CANADA;36:CAPE VERDE;37:CAYMAN ISLANDS;38:CENTRAL AFRICAN REPUBLIC;39:CHAD;40:CHILE;41:CHINA;42:COLOMBIA;43:COMOROS;44:CONGO;45:COOK ISLANDS;46:COSTA RICA;47:CROATIA;48:CUBA;49:CURACAO;50:CYPRUS;51:CZEH REPUBLIC;52:DEMOCRATIC REPUBLIC OF THE CONGO;53:DENMARK;54:DJIBOUTI;55:DOMINICA;56:DOMINICAN REPUBLIC;57:DUBAI;58:EAST EUROPA;59:ECUADOR;60:EGYPT;61:EL SALVADOR;62:EQUATORIAL GUINEA;63:ERYTRHREA;64:ESTONIA;65:ETHIOPIA;66:FEROA ISLANDS;67:FIJI;68:FINLAND;69:FRANCE;70:FRENCH GUYANA;71:FRENCH POLYNESIA;72:GABON;73:GAMBIA;74:GEORGIA;75:GERMANY;76:GHANA;77:GREECE;78:GRENADA;79:GUADELOUPE;80:GUAM;81:GUATEMALA;82:GUINEA;83:GUINEA BISSAU;84:GUYANA;85:HAITI;86:HONDURAS;87:HONG KONG;88:HUNGARY;89:IBERIAN PENINSULA;90:ICELAND;91:INDIA;92:INDIES;93:INDONESIA;94:IRAK;95:IRAN;96:IRELAND;97:ISRAEL;98:ITALY;99:IVORY COAST;100:JAMAICA;101:JAPAN;102:JORDANIA;103:KAZAKHSTAN;104:KENYA;105:KIRIBATI;106:KOREA;107:KUWAIT;108:KYRGHYZSTAN;109:LAOS;110:LATVIA;111:LEBANON;112:LESOTHO;113:LIBERIA;114:LIBYA;115:LITUANIA;116:LUXEMBOURG;117:MACAO;118:MADAGASCAR1;119:MALAWI;120:MALAYSIA;121:MALDIVES;122:MALI;123:MALTA;124:MARTINIQUE;125:MAURITANIA;126:MAURITIUS;127:MAYOTTE;128:MADAGASCAR2;129:MACEDONIA;130:MEXICO;131:MIDDLE EUROPA;132:MOLDAVIA;133:MONGOLIA;134:MONTENEGRO;135:MONTSERRAT;136:MOROCCO;137:MOZAMBIQUE;138:MYANMAR;139:NAMIBIA;140:NAURU;141:NEPAL;142:NETHERLANDS;143:NEW CALEDONIA;144:NEW ZEALAND;145:NICARAGUA;146:NIGER;147:NIGERIA;148:NORFOLK ISLAND;149:NORTH KOREA;150:NORWAY;151:NOTHERN AND BALTIC EUROPE;152:OMAN;153:PAKISTAN;154:PALESTINE;155:PANAMA;156:PAPUA NEW GUINEA;157:PARAGUAY;158:PERU;159:PHILIPPINES;160:POLAND;161:PORTO RICO;162:PORTUGAL;163:QATAR;164:REPUBLIC OF THE CONGO;165:REUNION;166:ROMANIA;167:RUSSIA;168:RWANDA;169:SAINT CHRISTOPHER AND NEVIS;170:SAINT LUCIA;171:SAINT MARTIN;172:SAINT PIERRE AND MIQUELON;173:SAINT VINCENT;174:SAIPAN;175:SAMOA;176:SAO TOME AND PRINCIPE;177:SAUDI ARABIA;178:SENEGAL;179:SERBIA;180:SEYCHELLES;181:SIERRA LEONE;182:SINGAPORE;183:SLOVAKIA;184:SLOVENIA;185:SOLOMON ISLAND;186:SOMALIA;187:SOUTH AFRICA;188:SPAIN;189:SRI LANKA;190:SUDAN;191:SURINAME;192:SWAZILAND;193:SWEDEN;194:SWITZERLAND;195:SYRIA;196:TADZHIKISTAN;197:TAIWAN;198:TANZANIA;199:THAILAND;200:TOGO;201:TONGA;202:TRINIDAD AND TOBAGO;203:TUNISIA;204:TURKEY;205:TURKMENISTAN;206:TURKS AND CAICOS ISLANDS;207:TUVALU;208:UGANDA;209:UKRAINE;210:UNITED ARAB EMIRATES;211:UZBEKISTAN;212:UNITED KINGDOM;213:URUGUAY;214:USA;215:VANUATU;216:VENEZUELA;217:VIET NAM;218:VIRGIN ISLANDS;219:WESTERN SAHARA;220:YEMEN;221:ZAMBIA;222:ZIMBABWE;223:UNITED STATES TERRITORY ,7DD,28,39,.001,0,3,m,22210A,62210A,ff,Distance_camera_front_axle_center.Distance_camera_front_axle_center ,7DD,24,31,2,0,0,mm,22210B,62210B,1ff,Dh ,7DD,28,39,.001,0,3,m,22210C,62210C,1ff,Distance_camera_vehicle_centerline.Distance_camera_vehicle_centerline ,7DD,30,39,.001,-300,3,m,22210D,62210D,ff,Distance_front_axle_to_bumper.Distance_front_axle_to_bumper ,7DD,24,31,1,0,0,pixels,22210E,62210E,ff,Bottom ,7DD,28,39,.001,0,3,m,22210F,62210F,ff,Camera_Height.Camera_Height ,7DD,24,31,1,0,0,min,222201,622201,ff,CameraBlockageTimer ,7DD,28,31,1,0,0,,222202,622202,ff,CameraBlockageMissionCounter ,7DD,24,31,1,0,0,min,222203,622203,ff,CameraOverheatingTimer ,7DD,24,31,1,0,0,min,222204,622204,ff,CameraMisalignmentTimer ,7DD,28,31,1,0,0,,222205,622205,ff,CameraMisalignmentMissionCounter ,7DD,24,31,1,0,0,min,222206,622206,ff,CameraOutOfFocusTimer ,7DD,28,31,1,0,0,,222207,622207,ff,CameraOutOfFocusMissionCounter ,7DD,24,31,1,0,0,min,222208,622208,ff,CameraOilyWindshieldTimer ,7DD,28,31,1,0,0,,222209,622209,ff,CameraOilyWindshieldMissionCounter ,7DD,24,31,1,0,0,min,222210,622210,ff,CameraWeatherDisturbancesTimer ,7DD,28,31,1,0,0,,222211,622211,ff,CameraWeatherDisturbancesMissionCounter ,7DD,25,39,.001,15000,3,°,222302,622302,ff,Camera_Pitch_Angle.Camera_Pitch_Angle ,7DD,28,39,.001,0,3,m,222303,622303,ff,Referential_z_Translation_Parameter ,7DD,24,39,5.49324788281071E-03,0,3,°,222304,622304,ff,Referential_Yaw_Rotation_Parameter ,7DD,24,39,5.49324788281071E-03,0,3,°,222305,622305,ff,Referential_Pitch_Rotation_Parameter ,7DD,24,39,5.49324788281071E-03,0,3,°,222306,622306,ff,Referential_Roll_Rotation_Parameter ,7DD,24,55,1,0,0,,222400,622400,1ff,Supplier_Fault_Code.Supplier_Fault_Code ,7DD,24,31,1,0,0,,222401,622401,ff,Ageing_Counter.Ageing_Counter ,7DD,24,39,.01,0,2,,222402,622402,ff,Snapshot_Vehicle_Speed.Vehicle_Speed ,7DD,24,25,1,0,0,,222403,622403,ff,Snapshot_Vehicle.Vehicle_Warning_State,0:No global vehicle Fault;1:"SERV" is ON (alert type R3);2:"STOP" is ON (alert type D3);3:"SERV" and "STOP" are ON (alert type R3& D3) ,7DD,26,27,1,0,0,,222403,622403,ff,Snapshot_Vehicle.Vehicle_Driving_Status,0:Vehicle standing;1:Vehicle driving forwards;2:Vehicle driving backwards;3:Vehicle driving- without being able to determine direction ,7DD,24,31,1,0,0,,222404,622404,ff,Absolute_Time_Since_First_Ignition.Absolute_Time_Since_First_Ignition ,7DD,29,39,.1,1000,1,°/s,222405,622405,ff,Snapshot_Yaw_Rate ,7DD,24,31,.5,0,1,bar,222406,622406,ff,Snapshot_Braking_Pressure ,7DD,24,31,1,0,0,,222407,622407,ff,snapshot_non_connue ,7DD,26,27,1,0,0,,222408,622408,ff,Snapshot.LDW_LKA_Activation_Status.LDW_AlertStatus,0:No Alert;1:Right Alert;2:Left Alert;3:Not Used ,7DD,28,28,1,0,0,,222408,622408,ff,Snapshot.LDW_LKA_Activation_Status.ELKA_configuration_Status,0:ELKA Not Configured;1:ELKA Configured ,7DD,29,30,1,0,0,,222408,622408,ff,Snapshot.LDW_LKA_Activation_Status.LDW_configuration_Status,0:LDW Not Configured;1:Sound LDW Configured;2:Haptic LDW Configured;3:Not Used ,7DD,31,31,1,0,0,,222408,622408,ff,Snapshot.LDW_LKA_Activation_Status.LKA_configuration_Status,0:LKA Not Configured;1:LKA Configured ,7DD,32,46,.01,10000,2,Nm,222408,622408,ff,Snapshot.LDW_LKA_Activation_Status.LKA_SteeringTorqueRequest ,7DD,48,48,1,0,0,,222408,622408,ff,Snapshot.LDW_LKA_Activation_Status.LKA_SteeringTorqueRequestFlag,0:Not Requested;1:Requested ,7DD,52,53,1,0,0,,222408,622408,ff,Snapshot.LDW_LKA_Activation_Status.E-LKA_AlertRight,0:No Alert;1:Alert Level 1;2:Alert Level 2;3:Not Used ,7DD,54,55,1,0,0,,222408,622408,ff,Snapshot.LDW_LKA_Activation_Status.E-LKA_AlertLeft,0:No Alert;1:Alert Level 1;2:Alert Level 2;3:Not Used ,7DD,24,31,1,0,0,,222409,622409,ff,Blindness_Status.Blindness_Status ,7DD,24,31,1,0,0,min,222410,622410,ff,Snapshot_Blindness_Timer ,7DD,24,27,1,0,0,,222411,622411,ff,Snapshot_Blindness_Mission_Counter ,7DD,24,31,1,0,0,min,222412,622412,ff,Overheating_Status.Overheating_Status ,7DD,24,31,1,0,0,min,222413,622413,ff,Snapshot_Overheating_Timer ,7DD,24,31,1,0,0,,222414,622414,ff,Misalignment_Status.Misalignment_Status ,7DD,24,31,1,0,0,min,222415,622415,ff,Snapshot_Misalignment_Timer ,7DD,24,27,1,0,0,,222416,622416,ff,Snapshot_Misalignment_Mission_Counter ,7DD,24,31,1,0,0,,222417,622417,ff,Out_Of_Focus_Status ,7DD,24,31,1,0,0,min,222418,622418,ff,Snapshot_Out_Of_Focus_Timer ,7DD,24,27,1,0,0,,222419,622419,ff,Snapshot_Out_Of_Focus_Mission_Counter ,7DD,26,26,1,0,0,,222421,622421,ff,Snapshot_Side_Radars_Status.BSWrad_RightStatusForBSI,0:No permission for BSI control;1:Permission for BSI control ,7DD,27,27,1,0,0,,222421,622421,ff,Snapshot_Side_Radars_Status.SideRadarRight_InitStatus,0:Not under initialization;1:Under initialization ,7DD,28,28,1,0,0,,222421,622421,ff,Snapshot_Side_Radars_Status.SideRadarRight_Failure,0:No Failure;1:Failure ,7DD,29,29,1,0,0,,222421,622421,ff,Snapshot_Side_Radars_Status.BSWrad_LeftStatusForBSI,0:No permission for BSI control;1:Permission for BSI control ,7DD,30,30,1,0,0,,222421,622421,ff,Snapshot_Side_Radars_Status.SideRadarLeft_InitStatus,0:Not under initialization;1:Under initialization ,7DD,31,31,1,0,0,,222421,622421,ff,Snapshot_Side_Radars_Status.SideRadarLeft_Failure,0:No Failure;1:Failure ,7DD,25,25,1,0,0,,222422,622422,ff,Snapshot_Side_Radars_Misalignment.Left_Side_Radar_Misalignment,0:No blockage;1:Blockage ,7DD,30,30,1,0,0,,222422,622422,ff,Snapshot_Side_Radars_Misalignment.Right_Side_Radar_Misalignment,0:No blockage;1:Blockage ,7DD,30,31,1,0,0,,222500,622500,ff,OEM.DID_OEM,0:RENAULT;1:NISSAN;2:RENAULT SPORT;3:NOT USED ,7DD,24,28,1,0,0,,224008,624008,ff,SNOW_MAX_TEMPERATURE ,7DD,31,31,1,0,0,,224011,624011,ff,EXTERNAL_TEMPERATURE_STRATEGY,0:No ExternalTemperature filter;1:ExternalTemperature filter ,7DD,31,31,1,0,0,,224012,624012,ff,TRAILER_STRATEGY,0:No TrailerPresence filter;1:TrailerPresence filter ,7DD,24,35,1,0,0,,224014,624014,ff,NO_OVERTAKE.BEGIN ,7DD,36,47,1,0,0,,224014,624014,ff,NO_OVERTAKE.END ,7DD,48,48,1,0,0,,224014,624014,ff,NO_OVERTAKE.BEGIN_MODE,0:seconde;1:meter ,7DD,49,49,1,0,0,,224014,624014,ff,NO_OVERTAKE.END_MODE,0:seconde;1:meter ,7DD,24,24,1,0,0,,224015,624015,ff,NATIONALSPEED.START_ACTIVATION_STATUS,0:previous status;1:default ON ,7DD,25,36,1,0,0,,224015,624015,ff,NATIONALSPEED.TYPE_COUNTER ,7DD,37,37,1,0,0,,224015,624015,ff,NATIONALSPEED.TYPE_COUNTER_MODE,0:timer in time;1:timer in distance ,7DD,31,31,1,0,0,,224016,624016,ff,OSP_SL_LINK,0:OSP_SL_LINK not present;1:OSP_SL_LINK present ,7DD,31,31,1,0,0,,224017,624017,ff,EXT_TRAFFIC_SIGN,0:False = Extented Traffic Sign zone not active;1:True = Extented Traffic Sign zone active ,7DD,24,31,1,0,0,s,224018,624018,ff,rain_strategy_selection.max_period_intermittent ,7DD,32,39,1,0,0,,224018,624018,ff,rain_strategy_selection.maxcountwipers ,7DD,40,47,100,0,0,ms,224018,624018,ff,rain_strategy_selection.rain_active_delay ,7DD,48,55,100,0,0,ms,224018,624018,ff,rain_strategy_selection.rain_not_active_delay ,7DD,63,63,1,0,0,,224018,624018,ff,rain_strategy_selection.rain_strategy_selection,0:external signal rain vehicle status;1:internal strategy based on front wiping status ,7DD,24,25,1,0,0,,224019,624019,ff,LDW_ButtonCounter,0:0;1:1;2:2;3:3 ,7DD,24,31,1,0,0,,224020,624020,ff,CamAlignTM.camera_align_tm,0:3 targets mode;1:2 targets mode;2:1 target mode;3:autocalibrate;4:autocalibrate mode with roll angle calibration ,7DD,24,39,.0004,0,3,°,224021,624021,1ff,FLCAlignResults.Aiming_Yaw_dynamic ,7DD,40,55,.0004,0,3,°,224021,624021,1ff,FLCAlignResults.Aiming_Pitch_dynamic ,7DD,56,63,1,0,0,°,224021,624021,1ff,FLCAlignResults.roll_delta_error ,7DD,64,71,1,0,0,pixel,224021,624021,1ff,FLCAlignResults.yaw_delta_error ,7DD,72,87,.0004,0,3,°,224021,624021,1ff,FLCAlignResults.Aiming_Roll_dynamic ,7DD,88,95,1,0,0,pixel,224021,624021,1ff,FLCAlignResults.pitch_delta_error ,7DD,96,96,1,0,0,,224021,624021,ff,FLCAlignResults.Autofix_Returned_First_Value,0:first value not returned;1:first value returned ,7DD,24,39,2,0,0,mm,224022,624022,ff,FLCAlignData.targets_separation_distance ,7DD,40,47,50,0,0,mm,224022,624022,ff,FLCAlignData.targets_distance_to_front_axle ,7DD,48,55,10,0,0,mm,224022,624022,ff,FLCAlignData.targets_upper_height ,7DD,56,63,10,0,0,mm,224022,624022,ff,FLCAlignData.targets_lower_height ,7DD,64,71,10,0,0,mm,224022,624022,ff,FLCAlignData.targets_size ,7DD,72,76,1,0,0,,224022,624022,ff,FLCAlignData.type_of_targets,1:Horizontal Rects w/ 2 SP- car shall be aligned to center of targets' panel;2:Round Targets w/ 1 SP- car shall be aligned to right target ,7DD,24,34,1,0,0,pixel,224023,624023,1ff,Focal_Length ,7DD,24,39,1,0,0,m,224025,624025,ff,TIMER.OVER_130_SL DISPLAY MAX DIST ,7DD,40,47,1,0,0,s,224025,624025,ff,TIMER.OVER_130_SL_MIN_TIME ,7DD,48,55,1,0,0,s,224025,624025,ff,TIMER.OVER_130_SL_EXT_TIME ,7DD,56,71,1,0,0,m,224025,624025,ff,TIMER.90_130_HW_SL DISPLAY MAX DIST ,7DD,72,79,1,0,0,s,224025,624025,ff,TIMER.90_130_HW_SL_MIN_TIME ,7DD,80,87,1,0,0,s,224025,624025,ff,TIMER.90_130_HW_SL_EXT_TIME ,7DD,88,103,1,0,0,m,224025,624025,ff,TIMER.90_130_NOT_HW_SL DISPLAY MAX DIST ,7DD,104,111,1,0,0,s,224025,624025,ff,TIMER.90_130_NOT_HW_SL_MIN_TIME ,7DD,112,119,1,0,0,s,224025,624025,ff,TIMER.90_130_NOT_HW_SL_EXT_TIME ,7DD,120,135,1,0,0,m,224025,624025,ff,TIMER.60_80_HW_SL DISPLAY MAX DIST ,7DD,136,143,1,0,0,s,224025,624025,ff,TIMER.60_80_HW_SL_MIN_TIME ,7DD,144,151,1,0,0,s,224025,624025,ff,TIMER.60_80_HW_SL_EXT_TIME ,7DD,152,167,1,0,0,m,224025,624025,ff,TIMER.60_80_NOT_HW_SL DISPLAY MAX DIST ,7DD,168,175,1,0,0,s,224025,624025,ff,TIMER.60_80_NOT_HW_SL_MIN_TIME ,7DD,176,183,1,0,0,s,224025,624025,ff,TIMER.60_80_NOT_HW_SL_EXT_TIME ,7DD,184,199,1,0,0,m,224025,624025,ff,TIMER.10_50_HW_SL_DISPLAY_MAX_DIST ,7DD,200,207,1,0,0,s,224025,624025,ff,TIMER.10_50_HW_SL_MIN_TIME ,7DD,208,215,1,0,0,s,224025,624025,ff,TIMER.10_50_HW_SL_EXT_TIME ,7DD,216,231,1,0,0,m,224025,624025,ff,TIMER.10_50_NOT_HW_SL DISPLAY MAX DIST ,7DD,232,239,1,0,0,s,224025,624025,ff,TIMER.10_50_NOT_HW_SL_MIN_TIME ,7DD,240,247,1,0,0,s,224025,624025,ff,TIMER.10_50_NOT_HW_SL_EXT_TIME ,7DD,248,263,1,0,0,m,224025,624025,ff,TIMER.ENDOF_HW_SL_DISPLAY_MAX_DIST ,7DD,264,271,1,0,0,s,224025,624025,ff,TIMER.ENDOF_HW_SL_MIN_TIME ,7DD,272,279,1,0,0,s,224025,624025,ff,TIMER.ENDOF_HW_SL_EXT_TIME ,7DD,280,295,1,0,0,m,224025,624025,ff,TIMER.ENDOF_NOT_HW_SL_DISPLAY_MAX_DIST ,7DD,296,303,1,0,0,,224025,624025,ff,TIMER.ENDOF_NOT_HW_SL_MIN_TIME ,7DD,304,311,1,0,0,s,224025,624025,ff,TIMER.ENDOF_NOT_HW_SL_EXT_TIME ,7DD,24,31,1,-1,0,s,224026,624026,ff,SL DISPLAY MAX TIME ,7DD,24,39,1,0,0,m,224027,624027,ff,Fusion_Timer.90_130 HW ,7DD,40,55,1,0,0,m,224027,624027,ff,Fusion_Timer.60_80 HW ,7DD,56,71,1,0,0,m,224027,624027,ff,Fusion_Timer.10_50 HW ,7DD,72,87,1,0,0,m,224027,624027,ff,Fusion_Timer.90_130 NOT HW ,7DD,88,103,1,0,0,m,224027,624027,ff,Fusion_Timer.60_80 NOT HW ,7DD,104,119,1,0,0,m,224027,624027,ff,Fusion_Timer.10_50 NOT HW ,7DD,120,135,1,0,0,m,224027,624027,ff,Fusion_Timer.SL_WITH_SUPP ,7DD,24,39,1,0,0,km/h,224028,624028,ff,SL_LOW.THRESHOLD_KPH ,7DD,40,55,1,0,0,mph,224028,624028,ff,SL_LOW.THRESHOLD_MPH ,7DD,27,31,1,0,0,km/h,224029,624029,ff,RECORD_SPEED_THD ,7DD,24,35,.1,0,1,s,224030,624030,ff,Overspeed.Overspeed_detect_time ,7DD,36,47,.1,0,1,km/h,224030,624030,ff,Overspeed.Overspeed_tolerance_kmh ,7DD,48,59,.1,0,1,mph,224030,624030,ff,Overspeed.Overspeed_tolerance_mph ,7DD,60,67,1,0,0,s,224030,624030,ff,Overspeed.Rain_Start_detect_rain ,7DD,68,75,1,0,0,s,224030,624030,ff,Overspeed.Rain_Stop_detect_rain ,7DD,24,24,1,0,0,,224031,624031,ff,Autofix_Activation.Autofix_Activation,0:Autofix is deactivated;1:Autofix is activated ,7DD,31,31,1,0,0,-,224072,624072,ff,DiagAddOn_RW_LKA.Diag_add_on_LKA_ena ,7DD,28,55,.01,0,2,km,224073,624073,ff,DiagAddOn_EEPROM_act_buf_LKA_N0.Mileage_N0 ,7DD,56,71,.01,0,2,km/h,224073,624073,ff,DiagAddOn_EEPROM_act_buf_LKA_N0.V_mes_kmh_VehicleSpeed_N0 ,7DD,75,79,.001,0,3,1/m,224073,624073,ff,DiagAddOn_EEPROM_act_buf_LKA_N0.V_mes_pm_Curvature_Average_N0 ,7DD,81,85,.1,-20,1,m,224073,624073,ff,DiagAddOn_EEPROM_act_buf_LKA_N0.V_calc_m_LaneWidth_N0 ,7DD,86,95,.01,100,2,m,224073,624073,ff,DiagAddOn_EEPROM_act_buf_LKA_N0.V_mes_m_Distance_Lane_Left_N0 ,7DD,96,105,.01,100,2,m,224073,624073,ff,DiagAddOn_EEPROM_act_buf_LKA_N0.V_mes_m_Distance_Lane_Right_N0 ,7DD,106,107,1,0,0,-,224073,624073,ff,DiagAddOn_EEPROM_act_buf_LKA_N0.V_flag_2bit_LDWLKASensibility_N0 ,7DD,108,111,.1,0,1,m/s,224073,624073,ff,DiagAddOn_EEPROM_act_buf_LKA_N0.V_est_mps_LatSpeed_left_N0 ,7DD,112,115,.1,0,1,m/s,224073,624073,ff,DiagAddOn_EEPROM_act_buf_LKA_N0.V_est_mps_LatSpeed_right_N0 ,7DD,116,119,1,0,0,-,224073,624073,ff,DiagAddOn_EEPROM_act_buf_LKA_N0.V_req_5bit_LDW_LKA_Display_N0 ,7DD,28,55,.01,0,2,km,224074,624074,ff,DiagAddOn_EEPROM_act_buf_LKA_N1.Mileage_N1 ,7DD,56,71,.01,0,2,km/h,224074,624074,ff,DiagAddOn_EEPROM_act_buf_LKA_N1.V_mes_kmh_VehicleSpeed_N1 ,7DD,75,79,.001,0,3,1/m,224074,624074,ff,DiagAddOn_EEPROM_act_buf_LKA_N1.V_mes_pm_Curvature_Average_N1 ,7DD,81,85,.1,-20,1,m,224074,624074,ff,DiagAddOn_EEPROM_act_buf_LKA_N1.V_calc_m_LaneWidth_N1 ,7DD,86,95,.01,100,2,m,224074,624074,ff,DiagAddOn_EEPROM_act_buf_LKA_N1.V_mes_m_Distance_Lane_Left_N1 ,7DD,96,105,.01,100,2,m,224074,624074,ff,DiagAddOn_EEPROM_act_buf_LKA_N1.V_mes_m_Distance_Lane_Right_N1 ,7DD,106,107,1,0,0,-,224074,624074,ff,DiagAddOn_EEPROM_act_buf_LKA_N1.V_flag_2bit_LDWLKASensibility_N1 ,7DD,108,111,.1,0,1,m/s,224074,624074,ff,DiagAddOn_EEPROM_act_buf_LKA_N1.V_est_mps_LatSpeed_left_N1 ,7DD,112,115,.1,0,1,m/s,224074,624074,ff,DiagAddOn_EEPROM_act_buf_LKA_N1.V_est_mps_LatSpeed_right_N1 ,7DD,116,119,1,0,0,-,224074,624074,ff,DiagAddOn_EEPROM_act_buf_LKA_N1.V_req_5bit_LDW_LKA_Display_N1 ,7DD,28,55,.01,0,2,km,224075,624075,ff,DiagAddOn_EEPROM_act_buf_LKA_N2.Mileage_N2 ,7DD,56,71,.01,0,2,km/h,224075,624075,ff,DiagAddOn_EEPROM_act_buf_LKA_N2.V_mes_kmh_VehicleSpeed_N2 ,7DD,75,79,.001,0,3,1/m,224075,624075,ff,DiagAddOn_EEPROM_act_buf_LKA_N2.V_mes_pm_Curvature_Average_N2 ,7DD,81,85,.1,-20,1,m,224075,624075,ff,DiagAddOn_EEPROM_act_buf_LKA_N2.V_calc_m_LaneWidth_N2 ,7DD,86,95,.01,100,2,m,224075,624075,ff,DiagAddOn_EEPROM_act_buf_LKA_N2.V_mes_m_Distance_Lane_Left_N2 ,7DD,96,105,.01,100,2,m,224075,624075,ff,DiagAddOn_EEPROM_act_buf_LKA_N2.V_mes_m_Distance_Lane_Right_N2 ,7DD,106,107,1,0,0,-,224075,624075,ff,DiagAddOn_EEPROM_act_buf_LKA_N2.V_flag_2bit_LDWLKASensibility_N2 ,7DD,108,111,.1,0,1,m/s,224075,624075,ff,DiagAddOn_EEPROM_act_buf_LKA_N2.V_est_mps_LatSpeed_left_N2 ,7DD,112,115,.1,0,1,m/s,224075,624075,ff,DiagAddOn_EEPROM_act_buf_LKA_N2.V_est_mps_LatSpeed_right_N2 ,7DD,116,119,1,0,0,-,224075,624075,ff,DiagAddOn_EEPROM_act_buf_LKA_N2.V_req_5bit_LDW_LKA_Display_N2 ,7DD,28,55,.01,0,2,km,224076,624076,ff,DiagAddOn_EEPROM_act_buf_LKA_N3.Mileage_N3 ,7DD,56,71,.01,0,2,km/h,224076,624076,ff,DiagAddOn_EEPROM_act_buf_LKA_N3.V_mes_kmh_VehicleSpeed_N3 ,7DD,75,79,.001,0,3,1/m,224076,624076,ff,DiagAddOn_EEPROM_act_buf_LKA_N3.V_mes_pm_Curvature_Average_N3 ,7DD,81,85,.1,-20,1,m,224076,624076,ff,DiagAddOn_EEPROM_act_buf_LKA_N3.V_calc_m_LaneWidth_N3 ,7DD,86,95,.01,100,2,m,224076,624076,ff,DiagAddOn_EEPROM_act_buf_LKA_N3.V_mes_m_Distance_Lane_Left_N3 ,7DD,96,105,.01,100,2,m,224076,624076,ff,DiagAddOn_EEPROM_act_buf_LKA_N3.V_mes_m_Distance_Lane_Right_N3 ,7DD,106,107,1,0,0,-,224076,624076,ff,DiagAddOn_EEPROM_act_buf_LKA_N3.V_flag_2bit_LDWLKASensibility_N3 ,7DD,108,111,.1,0,1,m/s,224076,624076,ff,DiagAddOn_EEPROM_act_buf_LKA_N3.V_est_mps_LatSpeed_left_N3 ,7DD,112,115,.1,0,1,m/s,224076,624076,ff,DiagAddOn_EEPROM_act_buf_LKA_N3.V_est_mps_LatSpeed_right_N3 ,7DD,116,119,1,0,0,-,224076,624076,ff,DiagAddOn_EEPROM_act_buf_LKA_N3.V_req_5bit_LDW_LKA_Display_N3 ,7DD,28,55,.01,0,2,km,224077,624077,ff,DiagAddOn_EEPROM_act_buf_LKA_N4.Mileage_N4 ,7DD,56,71,.01,0,2,km/h,224077,624077,ff,DiagAddOn_EEPROM_act_buf_LKA_N4.V_mes_kmh_VehicleSpeed_N4 ,7DD,75,79,.001,0,3,1/m,224077,624077,ff,DiagAddOn_EEPROM_act_buf_LKA_N4.V_mes_pm_Curvature_Average_N4 ,7DD,81,85,.1,-20,1,m,224077,624077,ff,DiagAddOn_EEPROM_act_buf_LKA_N4.V_calc_m_LaneWidth_N4 ,7DD,86,95,.01,100,2,m,224077,624077,ff,DiagAddOn_EEPROM_act_buf_LKA_N4.V_mes_m_Distance_Lane_Left_N4 ,7DD,96,105,.01,100,2,m,224077,624077,ff,DiagAddOn_EEPROM_act_buf_LKA_N4.V_mes_m_Distance_Lane_Right_N4 ,7DD,106,107,1,0,0,-,224077,624077,ff,DiagAddOn_EEPROM_act_buf_LKA_N4.V_flag_2bit_LDWLKASensibility_N4 ,7DD,108,111,.1,0,1,m/s,224077,624077,ff,DiagAddOn_EEPROM_act_buf_LKA_N4.V_est_mps_LatSpeed_left_N4 ,7DD,112,115,.1,0,1,m/s,224077,624077,ff,DiagAddOn_EEPROM_act_buf_LKA_N4.V_est_mps_LatSpeed_right_N4 ,7DD,116,119,1,0,0,-,224077,624077,ff,DiagAddOn_EEPROM_act_buf_LKA_N4.V_req_5bit_LDW_LKA_Display_N4 ,7DD,28,55,.01,0,2,km,224078,624078,ff,DiagAddOn_EEPROM_act_buf_LKA_N5.Mileage_N5 ,7DD,56,71,.01,0,2,km/h,224078,624078,ff,DiagAddOn_EEPROM_act_buf_LKA_N5.V_mes_kmh_VehicleSpeed_N5 ,7DD,75,79,.001,0,3,1/m,224078,624078,ff,DiagAddOn_EEPROM_act_buf_LKA_N5.V_mes_pm_Curvature_Average_N5 ,7DD,81,85,.1,-20,1,m,224078,624078,ff,DiagAddOn_EEPROM_act_buf_LKA_N5.V_calc_m_LaneWidth_N5 ,7DD,86,95,.01,100,2,m,224078,624078,ff,DiagAddOn_EEPROM_act_buf_LKA_N5.V_mes_m_Distance_Lane_Left_N5 ,7DD,96,105,.01,100,2,m,224078,624078,ff,DiagAddOn_EEPROM_act_buf_LKA_N5.V_mes_m_Distance_Lane_Right_N5 ,7DD,106,107,1,0,0,-,224078,624078,ff,DiagAddOn_EEPROM_act_buf_LKA_N5.V_flag_2bit_LDWLKASensibility_N5 ,7DD,108,111,.1,0,1,m/s,224078,624078,ff,DiagAddOn_EEPROM_act_buf_LKA_N5.V_est_mps_LatSpeed_left_N5 ,7DD,112,115,.1,0,1,m/s,224078,624078,ff,DiagAddOn_EEPROM_act_buf_LKA_N5.V_est_mps_LatSpeed_right_N5 ,7DD,116,119,1,0,0,-,224078,624078,ff,DiagAddOn_EEPROM_act_buf_LKA_N5.V_req_5bit_LDW_LKA_Display_N5 ,7DD,28,55,.01,0,2,km,224079,624079,ff,DiagAddOn_EEPROM_act_buf_LKA_N6.Mileage_N6 ,7DD,56,71,.01,0,2,km/h,224079,624079,ff,DiagAddOn_EEPROM_act_buf_LKA_N6.V_mes_kmh_VehicleSpeed_N6 ,7DD,75,79,.001,0,3,1/m,224079,624079,ff,DiagAddOn_EEPROM_act_buf_LKA_N6.V_mes_pm_Curvature_Average_N6 ,7DD,81,85,.1,-20,1,m,224079,624079,ff,DiagAddOn_EEPROM_act_buf_LKA_N6.V_calc_m_LaneWidth_N6 ,7DD,86,95,.01,100,2,m,224079,624079,ff,DiagAddOn_EEPROM_act_buf_LKA_N6.V_mes_m_Distance_Lane_Left_N6 ,7DD,96,105,.01,100,2,m,224079,624079,ff,DiagAddOn_EEPROM_act_buf_LKA_N6.V_mes_m_Distance_Lane_Right_N6 ,7DD,106,107,1,0,0,-,224079,624079,ff,DiagAddOn_EEPROM_act_buf_LKA_N6.V_flag_2bit_LDWLKASensibility_N6 ,7DD,108,111,.1,0,1,m/s,224079,624079,ff,DiagAddOn_EEPROM_act_buf_LKA_N6.V_est_mps_LatSpeed_left_N6 ,7DD,112,115,.1,0,1,m/s,224079,624079,ff,DiagAddOn_EEPROM_act_buf_LKA_N6.V_est_mps_LatSpeed_right_N6 ,7DD,116,119,1,0,0,-,224079,624079,ff,DiagAddOn_EEPROM_act_buf_LKA_N6.V_req_5bit_LDW_LKA_Display_N6 ,7DD,28,55,.01,0,2,km,22407A,62407A,ff,DiagAddOn_EEPROM_act_buf_LKA_N7.Mileage_N7 ,7DD,56,71,.01,0,2,km/h,22407A,62407A,ff,DiagAddOn_EEPROM_act_buf_LKA_N7.V_mes_kmh_VehicleSpeed_N7 ,7DD,75,79,.001,0,3,1/m,22407A,62407A,ff,DiagAddOn_EEPROM_act_buf_LKA_N7.V_mes_pm_Curvature_Average_N7 ,7DD,81,85,.1,-20,1,m,22407A,62407A,ff,DiagAddOn_EEPROM_act_buf_LKA_N7.V_calc_m_LaneWidth_N7 ,7DD,86,95,.01,100,2,m,22407A,62407A,ff,DiagAddOn_EEPROM_act_buf_LKA_N7.V_mes_m_Distance_Lane_Left_N7 ,7DD,96,105,.01,100,2,m,22407A,62407A,ff,DiagAddOn_EEPROM_act_buf_LKA_N7.V_mes_m_Distance_Lane_Right_N7 ,7DD,106,107,1,0,0,-,22407A,62407A,ff,DiagAddOn_EEPROM_act_buf_LKA_N7.V_flag_2bit_LDWLKASensibility_N7 ,7DD,108,111,.1,0,1,m/s,22407A,62407A,ff,DiagAddOn_EEPROM_act_buf_LKA_N7.V_est_mps_LatSpeed_left_N7 ,7DD,112,115,.1,0,1,m/s,22407A,62407A,ff,DiagAddOn_EEPROM_act_buf_LKA_N7.V_est_mps_LatSpeed_right_N7 ,7DD,116,119,1,0,0,-,22407A,62407A,ff,DiagAddOn_EEPROM_act_buf_LKA_N7.V_req_5bit_LDW_LKA_Display_N7 ,7DD,28,55,.01,0,2,km,22407B,62407B,ff,DiagAddOn_EEPROM_act_buf_LKA_N8.Mileage_N8 ,7DD,56,71,.01,0,2,km/h,22407B,62407B,ff,DiagAddOn_EEPROM_act_buf_LKA_N8.V_mes_kmh_VehicleSpeed_N8 ,7DD,75,79,.001,0,3,1/m,22407B,62407B,ff,DiagAddOn_EEPROM_act_buf_LKA_N8.V_mes_pm_Curvature_Average_N8 ,7DD,81,85,.1,-20,1,m,22407B,62407B,ff,DiagAddOn_EEPROM_act_buf_LKA_N8.V_calc_m_LaneWidth_N8 ,7DD,86,95,.01,100,2,m,22407B,62407B,ff,DiagAddOn_EEPROM_act_buf_LKA_N8.V_mes_m_Distance_Lane_Left_N8 ,7DD,96,105,.01,100,2,m,22407B,62407B,ff,DiagAddOn_EEPROM_act_buf_LKA_N8.V_mes_m_Distance_Lane_Right_N8 ,7DD,106,107,1,0,0,-,22407B,62407B,ff,DiagAddOn_EEPROM_act_buf_LKA_N8.V_flag_2bit_LDWLKASensibility_N8 ,7DD,108,111,.1,0,1,m/s,22407B,62407B,ff,DiagAddOn_EEPROM_act_buf_LKA_N8.V_est_mps_LatSpeed_left_N8 ,7DD,112,115,.1,0,1,m/s,22407B,62407B,ff,DiagAddOn_EEPROM_act_buf_LKA_N8.V_est_mps_LatSpeed_right_N8 ,7DD,116,119,1,0,0,-,22407B,62407B,ff,DiagAddOn_EEPROM_act_buf_LKA_N8.V_req_5bit_LDW_LKA_Display_N8 ,7DD,28,55,.01,0,2,km,22407C,62407C,ff,DiagAddOn_EEPROM_act_buf_LKA_N9.Mileage_N9 ,7DD,56,71,.01,0,2,km/h,22407C,62407C,ff,DiagAddOn_EEPROM_act_buf_LKA_N9.V_mes_kmh_VehicleSpeed_N9 ,7DD,75,79,.001,0,3,1/m,22407C,62407C,ff,DiagAddOn_EEPROM_act_buf_LKA_N9.V_mes_pm_Curvature_Average_N9 ,7DD,81,85,.1,-20,1,m,22407C,62407C,ff,DiagAddOn_EEPROM_act_buf_LKA_N9.V_calc_m_LaneWidth_N9 ,7DD,86,95,.01,100,2,m,22407C,62407C,ff,DiagAddOn_EEPROM_act_buf_LKA_N9.V_mes_m_Distance_Lane_Left_N9 ,7DD,96,105,.01,100,2,m,22407C,62407C,ff,DiagAddOn_EEPROM_act_buf_LKA_N9.V_mes_m_Distance_Lane_Right_N9 ,7DD,106,107,1,0,0,-,22407C,62407C,ff,DiagAddOn_EEPROM_act_buf_LKA_N9.V_flag_2bit_LDWLKASensibility_N9 ,7DD,108,111,.1,0,1,m/s,22407C,62407C,ff,DiagAddOn_EEPROM_act_buf_LKA_N9.V_est_mps_LatSpeed_left_N9 ,7DD,112,115,.1,0,1,m/s,22407C,62407C,ff,DiagAddOn_EEPROM_act_buf_LKA_N9.V_est_mps_LatSpeed_right_N9 ,7DD,116,119,1,0,0,-,22407C,62407C,ff,DiagAddOn_EEPROM_act_buf_LKA_N9.V_req_5bit_LDW_LKA_Display_N9 ,7DD,28,55,.01,0,2,km,22407D,62407D,ff,DiagAddOn_EEPROM_act_buf_LKA_N10.Mileage_N10 ,7DD,56,71,.01,0,2,km/h,22407D,62407D,ff,DiagAddOn_EEPROM_act_buf_LKA_N10.V_mes_kmh_VehicleSpeed_N10 ,7DD,75,79,.001,0,3,1/m,22407D,62407D,ff,DiagAddOn_EEPROM_act_buf_LKA_N10.V_mes_pm_Curvature_Average_N10 ,7DD,81,85,.1,-20,1,m,22407D,62407D,ff,DiagAddOn_EEPROM_act_buf_LKA_N10.V_calc_m_LaneWidth_N10 ,7DD,86,95,.01,100,2,m,22407D,62407D,ff,DiagAddOn_EEPROM_act_buf_LKA_N10.V_mes_m_Distance_Lane_Left_N10 ,7DD,96,105,.01,100,2,m,22407D,62407D,ff,DiagAddOn_EEPROM_act_buf_LKA_N10.V_mes_m_Distance_Lane_Right_N10 ,7DD,106,107,1,0,0,-,22407D,62407D,ff,DiagAddOn_EEPROM_act_buf_LKA_N10.V_flag_2bit_LDWLKASensibility_N10 ,7DD,108,111,.1,0,1,m/s,22407D,62407D,ff,DiagAddOn_EEPROM_act_buf_LKA_N10.V_est_mps_LatSpeed_left_N10 ,7DD,112,115,.1,0,1,m/s,22407D,62407D,ff,DiagAddOn_EEPROM_act_buf_LKA_N10.V_est_mps_LatSpeed_right_N10 ,7DD,116,119,1,0,0,-,22407D,62407D,ff,DiagAddOn_EEPROM_act_buf_LKA_N10.V_req_5bit_LDW_LKA_Display_N10 ,7DD,28,55,.01,0,2,km,22407E,62407E,ff,DiagAddOn_EEPROM_act_buf_LKA_N11.Mileage_N11 ,7DD,56,71,.01,0,2,km/h,22407E,62407E,ff,DiagAddOn_EEPROM_act_buf_LKA_N11.V_mes_kmh_VehicleSpeed_N11 ,7DD,75,79,.001,0,3,1/m,22407E,62407E,ff,DiagAddOn_EEPROM_act_buf_LKA_N11.V_mes_pm_Curvature_Average_N11 ,7DD,81,85,.1,-20,1,m,22407E,62407E,ff,DiagAddOn_EEPROM_act_buf_LKA_N11.V_calc_m_LaneWidth_N11 ,7DD,86,95,.01,100,2,m,22407E,62407E,ff,DiagAddOn_EEPROM_act_buf_LKA_N11.V_mes_m_Distance_Lane_Left_N11 ,7DD,96,105,.01,100,2,m,22407E,62407E,ff,DiagAddOn_EEPROM_act_buf_LKA_N11.V_mes_m_Distance_Lane_Right_N11 ,7DD,106,107,1,0,0,-,22407E,62407E,ff,DiagAddOn_EEPROM_act_buf_LKA_N11.V_flag_2bit_LDWLKASensibility_N11 ,7DD,108,111,.1,0,1,m/s,22407E,62407E,ff,DiagAddOn_EEPROM_act_buf_LKA_N11.V_est_mps_LatSpeed_left_N11 ,7DD,112,115,.1,0,1,m/s,22407E,62407E,ff,DiagAddOn_EEPROM_act_buf_LKA_N11.V_est_mps_LatSpeed_right_N11 ,7DD,116,119,1,0,0,-,22407E,62407E,ff,DiagAddOn_EEPROM_act_buf_LKA_N11.V_req_5bit_LDW_LKA_Display_N11 ,7DD,28,55,.01,0,2,km,22407F,62407F,ff,DiagAddOn_EEPROM_act_buf_LKA_N12.Mileage_N12 ,7DD,56,71,.01,0,2,km/h,22407F,62407F,ff,DiagAddOn_EEPROM_act_buf_LKA_N12.V_mes_kmh_VehicleSpeed_N12 ,7DD,75,79,.001,0,3,1/m,22407F,62407F,ff,DiagAddOn_EEPROM_act_buf_LKA_N12.V_mes_pm_Curvature_Average_N12 ,7DD,81,85,.1,-20,1,m,22407F,62407F,ff,DiagAddOn_EEPROM_act_buf_LKA_N12.V_calc_m_LaneWidth_N12 ,7DD,86,95,.01,100,2,m,22407F,62407F,ff,DiagAddOn_EEPROM_act_buf_LKA_N12.V_mes_m_Distance_Lane_Left_N12 ,7DD,96,105,.01,100,2,m,22407F,62407F,ff,DiagAddOn_EEPROM_act_buf_LKA_N12.V_mes_m_Distance_Lane_Right_N12 ,7DD,106,107,1,0,0,-,22407F,62407F,ff,DiagAddOn_EEPROM_act_buf_LKA_N12.V_flag_2bit_LDWLKASensibility_N12 ,7DD,108,111,.1,0,1,m/s,22407F,62407F,ff,DiagAddOn_EEPROM_act_buf_LKA_N12.V_est_mps_LatSpeed_left_N12 ,7DD,112,115,.1,0,1,m/s,22407F,62407F,ff,DiagAddOn_EEPROM_act_buf_LKA_N12.V_est_mps_LatSpeed_right_N12 ,7DD,116,119,1,0,0,-,22407F,62407F,ff,DiagAddOn_EEPROM_act_buf_LKA_N12.V_req_5bit_LDW_LKA_Display_N12 ,7DD,28,55,.01,0,2,km,224080,624080,ff,DiagAddOn_EEPROM_act_buf_LKA_N13.Mileage_N13 ,7DD,56,71,.01,0,2,km/h,224080,624080,ff,DiagAddOn_EEPROM_act_buf_LKA_N13.V_mes_kmh_VehicleSpeed_N13 ,7DD,75,79,.001,0,3,1/m,224080,624080,ff,DiagAddOn_EEPROM_act_buf_LKA_N13.V_mes_pm_Curvature_Average_N13 ,7DD,81,85,.1,-20,1,m,224080,624080,ff,DiagAddOn_EEPROM_act_buf_LKA_N13.V_calc_m_LaneWidth_N13 ,7DD,86,95,.01,100,2,m,224080,624080,ff,DiagAddOn_EEPROM_act_buf_LKA_N13.V_mes_m_Distance_Lane_Left_N13 ,7DD,96,105,.01,100,2,m,224080,624080,ff,DiagAddOn_EEPROM_act_buf_LKA_N13.V_mes_m_Distance_Lane_Right_N13 ,7DD,106,107,1,0,0,-,224080,624080,ff,DiagAddOn_EEPROM_act_buf_LKA_N13.V_flag_2bit_LDWLKASensibility_N13 ,7DD,108,111,.1,0,1,m/s,224080,624080,ff,DiagAddOn_EEPROM_act_buf_LKA_N13.V_est_mps_LatSpeed_left_N13 ,7DD,112,115,.1,0,1,m/s,224080,624080,ff,DiagAddOn_EEPROM_act_buf_LKA_N13.V_est_mps_LatSpeed_right_N13 ,7DD,116,119,1,0,0,-,224080,624080,ff,DiagAddOn_EEPROM_act_buf_LKA_N13.V_req_5bit_LDW_LKA_Display_N13 ,7DD,28,55,.01,0,2,km,224081,624081,ff,DiagAddOn_EEPROM_act_buf_LKA_N14.Mileage_N14 ,7DD,56,71,.01,0,2,km/h,224081,624081,ff,DiagAddOn_EEPROM_act_buf_LKA_N14.V_mes_kmh_VehicleSpeed_N14 ,7DD,75,79,.001,0,3,1/m,224081,624081,ff,DiagAddOn_EEPROM_act_buf_LKA_N14.V_mes_pm_Curvature_Average_N14 ,7DD,81,85,.1,-20,1,m,224081,624081,ff,DiagAddOn_EEPROM_act_buf_LKA_N14.V_calc_m_LaneWidth_N14 ,7DD,86,95,.01,100,2,m,224081,624081,ff,DiagAddOn_EEPROM_act_buf_LKA_N14.V_mes_m_Distance_Lane_Left_N14 ,7DD,96,105,.01,100,2,m,224081,624081,ff,DiagAddOn_EEPROM_act_buf_LKA_N14.V_mes_m_Distance_Lane_Right_N14 ,7DD,106,107,1,0,0,-,224081,624081,ff,DiagAddOn_EEPROM_act_buf_LKA_N14.V_flag_2bit_LDWLKASensibility_N14 ,7DD,108,111,.1,0,1,m/s,224081,624081,ff,DiagAddOn_EEPROM_act_buf_LKA_N14.V_est_mps_LatSpeed_left_N14 ,7DD,112,115,.1,0,1,m/s,224081,624081,ff,DiagAddOn_EEPROM_act_buf_LKA_N14.V_est_mps_LatSpeed_right_N14 ,7DD,116,119,1,0,0,-,224081,624081,ff,DiagAddOn_EEPROM_act_buf_LKA_N14.V_req_5bit_LDW_LKA_Display_N14 ,7DD,28,55,.01,0,2,km,224082,624082,ff,DiagAddOn_EEPROM_act_buf_LKA_N15.Mileage_N15 ,7DD,56,71,.01,0,2,km/h,224082,624082,ff,DiagAddOn_EEPROM_act_buf_LKA_N15.V_mes_kmh_VehicleSpeed_N15 ,7DD,75,79,.001,0,3,1/m,224082,624082,ff,DiagAddOn_EEPROM_act_buf_LKA_N15.V_mes_pm_Curvature_Average_N15 ,7DD,81,85,.1,-20,1,m,224082,624082,ff,DiagAddOn_EEPROM_act_buf_LKA_N15.V_calc_m_LaneWidth_N15 ,7DD,86,95,.01,100,2,m,224082,624082,ff,DiagAddOn_EEPROM_act_buf_LKA_N15.V_mes_m_Distance_Lane_Left_N15 ,7DD,96,105,.01,100,2,m,224082,624082,ff,DiagAddOn_EEPROM_act_buf_LKA_N15.V_mes_m_Distance_Lane_Right_N15 ,7DD,106,107,1,0,0,-,224082,624082,ff,DiagAddOn_EEPROM_act_buf_LKA_N15.V_flag_2bit_LDWLKASensibility_N15 ,7DD,108,111,.1,0,1,m/s,224082,624082,ff,DiagAddOn_EEPROM_act_buf_LKA_N15.V_est_mps_LatSpeed_left_N15 ,7DD,112,115,.1,0,1,m/s,224082,624082,ff,DiagAddOn_EEPROM_act_buf_LKA_N15.V_est_mps_LatSpeed_right_N15 ,7DD,116,119,1,0,0,-,224082,624082,ff,DiagAddOn_EEPROM_act_buf_LKA_N15.V_req_5bit_LDW_LKA_Display_N15 ,7DD,28,55,.01,0,2,km,224083,624083,ff,DiagAddOn_EEPROM_act_buf_LKA_N16.Mileage_N16 ,7DD,56,71,.01,0,2,km/h,224083,624083,ff,DiagAddOn_EEPROM_act_buf_LKA_N16.V_mes_kmh_VehicleSpeed_N16 ,7DD,75,79,.001,0,3,1/m,224083,624083,ff,DiagAddOn_EEPROM_act_buf_LKA_N16.V_mes_pm_Curvature_Average_N16 ,7DD,81,85,.1,-20,1,m,224083,624083,ff,DiagAddOn_EEPROM_act_buf_LKA_N16.V_calc_m_LaneWidth_N16 ,7DD,86,95,.01,100,2,m,224083,624083,ff,DiagAddOn_EEPROM_act_buf_LKA_N16.V_mes_m_Distance_Lane_Left_N16 ,7DD,96,105,.01,100,2,m,224083,624083,ff,DiagAddOn_EEPROM_act_buf_LKA_N16.V_mes_m_Distance_Lane_Right_N16 ,7DD,106,107,1,0,0,-,224083,624083,ff,DiagAddOn_EEPROM_act_buf_LKA_N16.V_flag_2bit_LDWLKASensibility_N16 ,7DD,108,111,.1,0,1,m/s,224083,624083,ff,DiagAddOn_EEPROM_act_buf_LKA_N16.V_est_mps_LatSpeed_left_N16 ,7DD,112,115,.1,0,1,m/s,224083,624083,ff,DiagAddOn_EEPROM_act_buf_LKA_N16.V_est_mps_LatSpeed_right_N16 ,7DD,116,119,1,0,0,-,224083,624083,ff,DiagAddOn_EEPROM_act_buf_LKA_N16.V_req_5bit_LDW_LKA_Display_N16 ,7DD,28,55,.01,0,2,km,224084,624084,ff,DiagAddOn_EEPROM_act_buf_LKA_N17.Mileage_N17 ,7DD,56,71,.01,0,2,km/h,224084,624084,ff,DiagAddOn_EEPROM_act_buf_LKA_N17.V_mes_kmh_VehicleSpeed_N17 ,7DD,75,79,.001,0,3,1/m,224084,624084,ff,DiagAddOn_EEPROM_act_buf_LKA_N17.V_mes_pm_Curvature_Average_N17 ,7DD,81,85,.1,-20,1,m,224084,624084,ff,DiagAddOn_EEPROM_act_buf_LKA_N17.V_calc_m_LaneWidth_N17 ,7DD,86,95,.01,100,2,m,224084,624084,ff,DiagAddOn_EEPROM_act_buf_LKA_N17.V_mes_m_Distance_Lane_Left_N17 ,7DD,96,105,.01,100,2,m,224084,624084,ff,DiagAddOn_EEPROM_act_buf_LKA_N17.V_mes_m_Distance_Lane_Right_N17 ,7DD,106,107,1,0,0,-,224084,624084,ff,DiagAddOn_EEPROM_act_buf_LKA_N17.V_flag_2bit_LDWLKASensibility_N17 ,7DD,108,111,.1,0,1,m/s,224084,624084,ff,DiagAddOn_EEPROM_act_buf_LKA_N17.V_est_mps_LatSpeed_left_N17 ,7DD,112,115,.1,0,1,m/s,224084,624084,ff,DiagAddOn_EEPROM_act_buf_LKA_N17.V_est_mps_LatSpeed_right_N17 ,7DD,116,119,1,0,0,-,224084,624084,ff,DiagAddOn_EEPROM_act_buf_LKA_N17.V_req_5bit_LDW_LKA_Display_N17 ,7DD,28,55,.01,0,2,km,224085,624085,ff,DiagAddOn_EEPROM_act_buf_LKA_N18.Mileage_N18 ,7DD,56,71,.01,0,2,km/h,224085,624085,ff,DiagAddOn_EEPROM_act_buf_LKA_N18.V_mes_kmh_VehicleSpeed_N18 ,7DD,75,79,.001,0,3,1/m,224085,624085,ff,DiagAddOn_EEPROM_act_buf_LKA_N18.V_mes_pm_Curvature_Average_N18 ,7DD,81,85,.1,-20,1,m,224085,624085,ff,DiagAddOn_EEPROM_act_buf_LKA_N18.V_calc_m_LaneWidth_N18 ,7DD,86,95,.01,100,2,m,224085,624085,ff,DiagAddOn_EEPROM_act_buf_LKA_N18.V_mes_m_Distance_Lane_Left_N18 ,7DD,96,105,.01,100,2,m,224085,624085,ff,DiagAddOn_EEPROM_act_buf_LKA_N18.V_mes_m_Distance_Lane_Right_N18 ,7DD,106,107,1,0,0,-,224085,624085,ff,DiagAddOn_EEPROM_act_buf_LKA_N18.V_flag_2bit_LDWLKASensibility_N18 ,7DD,108,111,.1,0,1,m/s,224085,624085,ff,DiagAddOn_EEPROM_act_buf_LKA_N18.V_est_mps_LatSpeed_left_N18 ,7DD,112,115,.1,0,1,m/s,224085,624085,ff,DiagAddOn_EEPROM_act_buf_LKA_N18.V_est_mps_LatSpeed_right_N18 ,7DD,116,119,1,0,0,-,224085,624085,ff,DiagAddOn_EEPROM_act_buf_LKA_N18.V_req_5bit_LDW_LKA_Display_N18 ,7DD,28,55,.01,0,2,km,224086,624086,ff,DiagAddOn_EEPROM_act_buf_LKA_N19.Mileage_N19 ,7DD,56,71,.01,0,2,km/h,224086,624086,ff,DiagAddOn_EEPROM_act_buf_LKA_N19.V_mes_kmh_VehicleSpeed_N19 ,7DD,75,79,.001,0,3,1/m,224086,624086,ff,DiagAddOn_EEPROM_act_buf_LKA_N19.V_mes_pm_Curvature_Average_N19 ,7DD,81,85,.1,-20,1,m,224086,624086,ff,DiagAddOn_EEPROM_act_buf_LKA_N19.V_calc_m_LaneWidth_N19 ,7DD,86,95,.01,100,2,m,224086,624086,ff,DiagAddOn_EEPROM_act_buf_LKA_N19.V_mes_m_Distance_Lane_Left_N19 ,7DD,96,105,.01,100,2,m,224086,624086,ff,DiagAddOn_EEPROM_act_buf_LKA_N19.V_mes_m_Distance_Lane_Right_N19 ,7DD,106,107,1,0,0,-,224086,624086,ff,DiagAddOn_EEPROM_act_buf_LKA_N19.V_flag_2bit_LDWLKASensibility_N19 ,7DD,108,111,.1,0,1,m/s,224086,624086,ff,DiagAddOn_EEPROM_act_buf_LKA_N19.V_est_mps_LatSpeed_left_N19 ,7DD,112,115,.1,0,1,m/s,224086,624086,ff,DiagAddOn_EEPROM_act_buf_LKA_N19.V_est_mps_LatSpeed_right_N19 ,7DD,116,119,1,0,0,-,224086,624086,ff,DiagAddOn_EEPROM_act_buf_LKA_N19.V_req_5bit_LDW_LKA_Display_N19 ,7DD,27,31,1,0,0,-,224087,624087,ff,DiagAddOn_EEPROM_deact_buf_LKA_N0.Rootcause_N0 ,7DD,35,39,.5,0,1,s,224087,624087,ff,DiagAddOn_EEPROM_deact_buf_LKA_N0.Duration_N0 ,7DD,44,71,.01,0,2,km,224087,624087,ff,DiagAddOn_EEPROM_deact_buf_LKA_N0.Mileage_N0 ,7DD,27,31,1,0,0,-,224088,624088,ff,DiagAddOn_EEPROM_deact_buf_LKA_N1.Rootcause_N1 ,7DD,35,39,.5,0,1,s,224088,624088,ff,DiagAddOn_EEPROM_deact_buf_LKA_N1.Duration_N1 ,7DD,44,71,.01,0,2,km,224088,624088,ff,DiagAddOn_EEPROM_deact_buf_LKA_N1.Mileage_N1 ,7DD,27,31,1,0,0,-,224089,624089,ff,DiagAddOn_EEPROM_deact_buf_LKA_N2.Rootcause_N2 ,7DD,35,39,.5,0,1,s,224089,624089,ff,DiagAddOn_EEPROM_deact_buf_LKA_N2.Duration_N2 ,7DD,44,71,.01,0,2,km,224089,624089,ff,DiagAddOn_EEPROM_deact_buf_LKA_N2.Mileage_N2 ,7DD,27,31,1,0,0,-,22408A,62408A,ff,DiagAddOn_EEPROM_deact_buf_LKA_N3.Rootcause_N3 ,7DD,35,39,.5,0,1,s,22408A,62408A,ff,DiagAddOn_EEPROM_deact_buf_LKA_N3.Duration_N3 ,7DD,44,71,.01,0,2,km,22408A,62408A,ff,DiagAddOn_EEPROM_deact_buf_LKA_N3.Mileage_N3 ,7DD,27,31,1,0,0,-,22408B,62408B,ff,DiagAddOn_EEPROM_deact_buf_LKA_N4.Rootcause_N4 ,7DD,35,39,.5,0,1,s,22408B,62408B,ff,DiagAddOn_EEPROM_deact_buf_LKA_N4.Duration_N4 ,7DD,44,71,.01,0,2,km,22408B,62408B,ff,DiagAddOn_EEPROM_deact_buf_LKA_N4.Mileage_N4 ,7DD,27,31,1,0,0,-,22408C,62408C,ff,DiagAddOn_EEPROM_deact_buf_LKA_N5.Rootcause_N5 ,7DD,35,39,.5,0,1,s,22408C,62408C,ff,DiagAddOn_EEPROM_deact_buf_LKA_N5.Duration_N5 ,7DD,44,71,.01,0,2,km,22408C,62408C,ff,DiagAddOn_EEPROM_deact_buf_LKA_N5.Mileage_N5 ,7DD,27,31,1,0,0,-,22408D,62408D,ff,DiagAddOn_EEPROM_deact_buf_LKA_N6.Rootcause_N6 ,7DD,35,39,.5,0,1,s,22408D,62408D,ff,DiagAddOn_EEPROM_deact_buf_LKA_N6.Duration_N6 ,7DD,44,71,.01,0,2,km,22408D,62408D,ff,DiagAddOn_EEPROM_deact_buf_LKA_N6.Mileage_N6 ,7DD,27,31,1,0,0,-,22408E,62408E,ff,DiagAddOn_EEPROM_deact_buf_LKA_N7.Rootcause_N7 ,7DD,35,39,.5,0,1,s,22408E,62408E,ff,DiagAddOn_EEPROM_deact_buf_LKA_N7.Duration_N7 ,7DD,44,71,.01,0,2,km,22408E,62408E,ff,DiagAddOn_EEPROM_deact_buf_LKA_N7.Mileage_N7 ,7DD,27,31,1,0,0,-,22408F,62408F,ff,DiagAddOn_EEPROM_deact_buf_LKA_N8.Rootcause_N8 ,7DD,35,39,.5,0,1,s,22408F,62408F,ff,DiagAddOn_EEPROM_deact_buf_LKA_N8.Duration_N8 ,7DD,44,71,.01,0,2,km,22408F,62408F,ff,DiagAddOn_EEPROM_deact_buf_LKA_N8.Mileage_N8 ,7DD,27,31,1,0,0,-,224090,624090,ff,DiagAddOn_EEPROM_deact_buf_LKA_N9.Rootcause_N9 ,7DD,35,39,.5,0,1,s,224090,624090,ff,DiagAddOn_EEPROM_deact_buf_LKA_N9.Duration_N9 ,7DD,44,71,.01,0,2,km,224090,624090,ff,DiagAddOn_EEPROM_deact_buf_LKA_N9.Mileage_N9 ,7DD,27,31,1,0,0,-,224091,624091,ff,DiagAddOn_EEPROM_deact_buf_LKA_N10.Rootcause_N10 ,7DD,35,39,.5,0,1,s,224091,624091,ff,DiagAddOn_EEPROM_deact_buf_LKA_N10.Duration_N10 ,7DD,44,71,.01,0,2,km,224091,624091,ff,DiagAddOn_EEPROM_deact_buf_LKA_N10.Mileage_N10 ,7DD,27,31,1,0,0,-,224092,624092,ff,DiagAddOn_EEPROM_deact_buf_LKA_N11.Rootcause_N11 ,7DD,35,39,.5,0,1,s,224092,624092,ff,DiagAddOn_EEPROM_deact_buf_LKA_N11.Duration_N11 ,7DD,44,71,.01,0,2,km,224092,624092,ff,DiagAddOn_EEPROM_deact_buf_LKA_N11.Mileage_N11 ,7DD,27,31,1,0,0,-,224093,624093,ff,DiagAddOn_EEPROM_deact_buf_LKA_N12.Rootcause_N12 ,7DD,35,39,.5,0,1,s,224093,624093,ff,DiagAddOn_EEPROM_deact_buf_LKA_N12.Duration_N12 ,7DD,44,71,.01,0,2,km,224093,624093,ff,DiagAddOn_EEPROM_deact_buf_LKA_N12.Mileage_N12 ,7DD,27,31,1,0,0,-,224094,624094,ff,DiagAddOn_EEPROM_deact_buf_LKA_N13.Rootcause_N13 ,7DD,35,39,.5,0,1,s,224094,624094,ff,DiagAddOn_EEPROM_deact_buf_LKA_N13.Duration_N13 ,7DD,44,71,.01,0,2,km,224094,624094,ff,DiagAddOn_EEPROM_deact_buf_LKA_N13.Mileage_N13 ,7DD,27,31,1,0,0,-,224095,624095,ff,DiagAddOn_EEPROM_deact_buf_LKA_N14.Rootcause_N14 ,7DD,35,39,.5,0,1,s,224095,624095,ff,DiagAddOn_EEPROM_deact_buf_LKA_N14.Duration_N14 ,7DD,44,71,.01,0,2,km,224095,624095,ff,DiagAddOn_EEPROM_deact_buf_LKA_N14.Mileage_N14 ,7DD,27,31,1,0,0,-,224096,624096,ff,DiagAddOn_EEPROM_deact_buf_LKA_N15.Rootcause_N15 ,7DD,35,39,.5,0,1,s,224096,624096,ff,DiagAddOn_EEPROM_deact_buf_LKA_N15.Duration_N15 ,7DD,44,71,.01,0,2,km,224096,624096,ff,DiagAddOn_EEPROM_deact_buf_LKA_N15.Mileage_N15 ,7DD,27,31,1,0,0,-,224097,624097,ff,DiagAddOn_EEPROM_deact_buf_LKA_N16.Rootcause_N16 ,7DD,35,39,.5,0,1,s,224097,624097,ff,DiagAddOn_EEPROM_deact_buf_LKA_N16.Duration_N16 ,7DD,44,71,.01,0,2,km,224097,624097,ff,DiagAddOn_EEPROM_deact_buf_LKA_N16.Mileage_N16 ,7DD,27,31,1,0,0,-,224098,624098,ff,DiagAddOn_EEPROM_deact_buf_LKA_N17.Rootcause_N17 ,7DD,35,39,.5,0,1,s,224098,624098,ff,DiagAddOn_EEPROM_deact_buf_LKA_N17.Duration_N17 ,7DD,44,71,.01,0,2,km,224098,624098,ff,DiagAddOn_EEPROM_deact_buf_LKA_N17.Mileage_N17 ,7DD,27,31,1,0,0,-,224099,624099,ff,DiagAddOn_EEPROM_deact_buf_LKA_N18.Rootcause_N18 ,7DD,35,39,.5,0,1,s,224099,624099,ff,DiagAddOn_EEPROM_deact_buf_LKA_N18.Duration_N18 ,7DD,44,71,.01,0,2,km,224099,624099,ff,DiagAddOn_EEPROM_deact_buf_LKA_N18.Mileage_N18 ,7DD,27,31,1,0,0,-,22409A,62409A,ff,DiagAddOn_EEPROM_deact_buf_LKA_N19.Rootcause_N19 ,7DD,35,39,.5,0,1,s,22409A,62409A,ff,DiagAddOn_EEPROM_deact_buf_LKA_N19.Duration_N19 ,7DD,44,71,.01,0,2,km,22409A,62409A,ff,DiagAddOn_EEPROM_deact_buf_LKA_N19.Mileage_N19 ,7DD,0,0,1,0,0,,224455,624455,ff,DataRead.DID_4455 ,7DD,0,0,1,0,0,,224456,624456,ff,DataRead.DID_4456 ,7DD,0,0,1,0,0,,224457,624457,ff,DataRead.DID_4457 ,7DD,24,215,1,0,0,,22D900,62D900,4ff,Active_Fault_Table.24-byte_array_of_currently_active_faults ,7DD,28,39,.1,2047,1,°/s,22D90A,62D90A,ff,Yaw_Rate.Yaw_Rate ,7DD,24,39,.01,0,2,km/h,22D90C,62D90C,ff,Vehicle_Speed.Vehicle_Speed ,7DD,24,39,1,0,0,,22D915,62D915,ff,VFP_reset_counts.VFP_Category_1_reset_count ,7DD,24,39,1,0,0,,22D922,62D922,ff,Ignition_Cycles.Ignition_Cycles ,7DD,24,151,1,0,0,,22F010,62F010,4ff,programmingOperationFingerPrint ,7DD,24,103,1,0,0,,22F011,62F011,2ff,secutity accessFingerPrint ,7DD,24,103,1,0,0,,22F012,62F012,2ff,OperationnalReference ,7DD,24,55,1,0,0,km,22F0D0,62F0D0,1ff,Snapshot_DTC_Mileage_First_Occurence ,7DD,24,31,1,0,0,,22F0D1,62F0D1,ff,Snapshot_DTC_Occurence_Counter ,7DD,32,111,1,0,0,,22F182,62F182,2ff,applicationDataIdentification ,7DD,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,7DD,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,7DD,24,47,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7DD,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,7DD,24,103,1,0,0,,22F18E,62F18E,2ff,vehicleManufacturerKitAssemblyPartNumber ,7DD,24,159,1,0,0,,22F190,62F190,2ff,VIN ,7DD,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,7DD,24,87,1,0,0,,22F192,62F192,2ff,systemSupplierECUHardwareNumber ,7DD,24,79,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7DD,24,151,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7DD,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,7DD,31,31,1,0,0,,22FD01,62FD01,ff,Force_Aiming_Done,0:Aiming Not Done;1:Aiming Done ,7DD,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/FCAM_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/FRRAD_Dtcs.csv ================================================ 6580,ECU_InternalFailure 6581,Radar Misalignement 6582,Sensor Blindness 6583,Crash detection 6587,Power Voltage Disturbance 6589,ATCU Error 658A,ACU Error 658B,HEVC Error 658C,SBW Error 658D,IDM Error 658E,VDC Error 658F,USM Error 6590,METER Error 6591,BCM Error 6592,ECM Error 6593,4WS Error 6594,IVI Error 6595,ADAS_IC Error 6596,Fr_Camera Error 65A0,AEB_DegradedMode 65A1,DW_DegradedMode E14F,Lost Communication BCM_V1 E26B,Lost Communication Fr_Camera_ITS ================================================ FILE: app/src/main/assets/ZOE_Ph2/FRRAD_Fields.csv ================================================ ,735,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,735,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming ,735,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession ,735,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,735,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,735,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,735,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,735,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,735,24,39,1,0,0,,1902FF,5902FF,4ff,DTCDeviceAndFailureTypeOBD ,735,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,735,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,735,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,735,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,735,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,735,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,735,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,735,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,735,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,735,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,735,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,735,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,735,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,735,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,735,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,25994:ACU Error;26003:4WS Error;26005:ADAS_IC Error;25993:ATCU Error;26001:BCM Error;25987:Crash detection;26016:AEB_DegradedMode;26002:ECM Error;25984:ECU_InternalFailure;26006:Fr_Camera Error;25995:HEVC Error;25997:IDM Error;26004:IVI Error;26017:DW_DegradedMode;57679:Lost Communication BCM_V1;26000:METER Error;25991:Power Voltage Disturbance;25985:Radar Misalignement;25996:SBW Error;25986:Sensor Blindness;25999:USM Error;25998:VDC Error;57963:Lost Communication Fr_Camera_ITS ,735,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,735,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,735,24,39,.01,0,2,°,220100,620100,1ff,Plant Alignment checking.Horizontal Alignment value on EEPROM-factory ,735,40,55,.01,0,2,°,220100,620100,1ff,Plant Alignment checking.Vertical Alignment value on EEPROM-factory ,735,56,71,.01,0,2,°,220100,620100,1ff,Plant Alignment checking.Horizontal Alignment value on EEPROM ,735,72,87,.01,0,2,°,220100,620100,1ff,Plant Alignment checking.Vertical Alignment value on EEPROM ,735,88,95,1,0,0,,220100,620100,ff,Plant Alignment checking.Status for Alignment,0:00- Alignment conditions set;1:01- Alignment not ready-Vehicle moving;2:02- Alignment not ready-System Failure detected;3:03- Not ready-System Failure and vehicle moving ,735,96,103,1,0,0,,220100,620100,ff,Plant Alignment checking.State of radar in alignment,0:00- Alignment in process;1:01- Alignment complete;2:02- Abnormal condition- end alignment;3:03- Iinitializing for alignment ,735,104,111,1,0,0,,220100,620100,ff,Plant Alignment checking.Error content,0:00-normal;1:01-Target undetected;2:02-Target setting offset in horizontal direction;3:03-EEPROM writing error;4:04- Mirror kept in the same Position. ,735,112,119,1,0,0,,220100,620100,ff,Plant Alignment checking.Alignment state,0:00- initial state;1:01- Alignment at Position1 complete;2:02- Alignment at Position2 complete;3:03- Alignment at Position3 complete ,735,24,26,1,0,0,-,220102,620102,ff,Failures_status_1.DriverBrakingPressure_Status ,735,27,29,1,0,0,-,220102,620102,ff,Failures_status_1.AEB_BrakingPerformanceStatus_Status ,735,30,32,1,0,0,-,220102,620102,ff,Failures_status_1.YawRateRaw_Status ,735,33,35,1,0,0,-,220102,620102,ff,Failures_status_1.VehicleSpeed_Status ,735,36,38,1,0,0,-,220102,620102,ff,Failures_status_1.ABSinRegulation_Status ,735,39,41,1,0,0,-,220102,620102,ff,Failures_status_1.ASRinRegulation_Status ,735,42,44,1,0,0,-,220102,620102,ff,Failures_status_1.AYCinRegulation_Status ,735,45,47,1,0,0,-,220102,620102,ff,Failures_status_1.MSRinRegulation_Status ,735,48,50,1,0,0,-,220102,620102,ff,Failures_status_1.DistanceTotalizer_Status ,735,51,53,1,0,0,-,220102,620102,ff,Failures_status_1.WheelSpeedFR_Status ,735,56,58,1,0,0,-,220102,620102,ff,Failures_status_1.WheelSpeedFL_Status ,735,59,61,1,0,0,-,220102,620102,ff,Failures_status_1.WheelSpeedRL_Status ,735,62,64,1,0,0,-,220102,620102,ff,Failures_status_1.WheelSpeedRR_Status ,735,65,67,1,0,0,-,220102,620102,ff,Failures_status_1.AirbagCrashOrder_v3_Status ,735,68,70,1,0,0,-,220102,620102,ff,Failures_status_1.RearWheelAnglePosition_Status ,735,71,73,1,0,0,-,220102,620102,ff,Failures_status_1.TransversalAccelCorrected_Status ,735,74,76,1,0,0,-,220102,620102,ff,Failures_status_1.GADE_Status ,735,77,79,1,0,0,-,220102,620102,ff,Failures_status_1.CruiseControlStatus_forTM_Status ,735,80,82,1,0,0,-,220102,620102,ff,Failures_status_1.Maintenance_Mode_Status_Status ,735,83,85,1,0,0,-,220102,620102,ff,Failures_status_1.VDC_Deactivated_Status ,735,88,90,1,0,0,-,220102,620102,ff,Failures_status_1.SteeringWheelAngleCorrected_Status ,735,91,93,1,0,0,-,220102,620102,ff,Failures_status_1.AEB_FCWactivationRequest_Status ,735,94,96,1,0,0,-,220102,620102,ff,Failures_status_1.AEB_FCWactivationRequest2_Status ,735,97,99,1,0,0,-,220102,620102,ff,Failures_status_1.GearLeverPosition_Status ,735,100,102,1,0,0,-,220102,620102,ff,Failures_status_1.RawSensor_Status ,735,103,105,1,0,0,-,220102,620102,ff,Failures_status_1.NeutralContact_Status ,735,106,108,1,0,0,-,220102,620102,ff,Failures_status_1.RearGearEngaged_Status ,735,109,111,1,0,0,-,220102,620102,ff,Failures_status_1.ParkingBrakeStatus_Status ,735,112,114,1,0,0,-,220102,620102,ff,Failures_status_1.BrakeInfoStatus_Status ,735,115,117,1,0,0,-,220102,620102,ff,Failures_status_1.ClutchSwitchMinimumTravel_Status ,735,120,122,1,0,0,-,220102,620102,ff,Failures_status_1.FlashingIndicaCommandPos_Status ,735,123,125,1,0,0,-,220102,620102,ff,Failures_status_1.MinPowerTrainWheelTorque_Status ,735,126,128,1,0,0,-,220102,620102,ff,Failures_status_1.ACC_Status_Status ,735,129,131,1,0,0,-,220102,620102,ff,Failures_status_1.AEB_DWInhibitionRequest_status ,735,132,134,1,0,0,-,220102,620102,ff,Failures_status_1.ADAS_VehicleDrivingStatus_status ,735,135,137,1,0,0,-,220102,620102,ff,Failures_status_1.AEB_CancelInfo_status ,735,138,140,1,0,0,-,220102,620102,ff,Failures_status_1.VehicleStates_status ,735,141,143,1,0,0,-,220102,620102,ff,Failures_status_1.FrontWiperStatus_BCM_status ,735,144,146,1,0,0,-,220102,620102,ff,Failures_status_1.PedalError_status ,735,147,149,1,0,0,-,220102,620102,ff,Failures_status_1.SteerByWire_Unreliable_status ,735,152,154,1,0,0,-,220102,620102,ff,Failures_status_1.DW_ActivationRequest2_status ,735,155,157,1,0,0,-,220102,620102,ff,Failures_status_1.DW_ActivationRequest_status ,735,158,160,1,0,0,-,220102,620102,ff,Failures_status_1.SwaSensorInternalStatus_status ,735,161,163,1,0,0,-,220102,620102,ff,Failures_status_1.SteeringWheelRotationSpeed_status ,735,164,166,1,0,0,-,220102,620102,ff,Failures_status_1.IgnitionSupplyConfirmation_status ,735,167,169,1,0,0,-,220102,620102,ff,Failures_status_1.BatteryVoltage_status ,735,170,172,1,0,0,-,220102,620102,ff,Failures_status_1.WheelTopFL_status ,735,173,175,1,0,0,-,220102,620102,ff,Failures_status_1.WheelTopFR_status ,735,176,178,1,0,0,-,220102,620102,ff,Failures_status_1.WheelTopRL_status ,735,179,181,1,0,0,-,220102,620102,ff,Failures_status_1.WheelTopRR_status ,735,184,186,1,0,0,-,220102,620102,ff,Failures_status_1.WheelDirectionRL_status ,735,187,189,1,0,0,-,220102,620102,ff,Failures_status_1.WheelDirectionRR_status ,735,190,192,1,0,0,-,220102,620102,ff,Failures_status_1.LongitudinalAccelCorrected_status ,735,193,195,1,0,0,-,220102,620102,ff,Failures_status_1.YawRateCorrected_status ,735,196,198,1,0,0,-,220102,620102,ff,Failures_status_1.AEB_CameraStatus_Status ,735,199,201,1,0,0,-,220102,620102,ff,Failures_status_1.CameraInitialised_Status ,735,24,51,.01,0,2,km,220103,620103,ff,Failures_status_2.DistanceTotalizer ,735,52,52,1,0,0,-,220103,620103,ff,Failures_status_2.ABSinRegulation ,735,53,53,1,0,0,-,220103,620103,ff,Failures_status_2.ASRinRegulation ,735,54,54,1,0,0,-,220103,620103,ff,Failures_status_2.AYCinRegulation ,735,55,55,1,0,0,-,220103,620103,ff,Failures_status_2.MSRinRegulation ,735,56,71,.01,0,2,kph,220103,620103,ff,Failures_status_2.VehicleSpeed ,735,72,87,.041667,0,2,rpm,220103,620103,ff,Failures_status_2.WheelSpeedFR ,735,88,103,.041667,0,2,rpm,220103,620103,ff,Failures_status_2.WheelSpeedFL ,735,104,119,.041667,0,2,rpm,220103,620103,ff,Failures_status_2.WheelSpeedRL ,735,120,135,.041667,0,2,rpm,220103,620103,ff,Failures_status_2.WheelSpeedRR ,735,136,151,.1,32770,1,°/s,220103,620103,ff,Failures_status_2.SteeringWheelRotationSpeed ,735,152,163,.001,2000,3,-,220103,620103,ff,Failures_status_2.LongitudinalAccelCorrected ,735,164,171,.5,0,1,Bar,220103,620103,ff,Failures_status_2.DriverBrakingPressure ,735,172,179,.06,-10000,2,V,220103,620103,ff,Failures_status_2.BatteryVoltage ,735,180,181,1,0,0,-,220103,620103,ff,Failures_status_2.AEB_BrakingPerformanceStatus_Data ,735,182,183,1,0,0,-,220103,620103,ff,Failures_status_2.Maintenance_Mode ,735,184,189,1,0,0,-,220103,620103,ff,Failures_status_2.AirbagCrashOrder_v3 ,735,190,190,1,0,0,-,220103,620103,ff,Failures_status_2.VDC_Deactivated ,735,191,193,1,0,0,-,220103,620103,ff,Failures_status_2.AEB_FCWactivationRequest ,735,194,196,1,0,0,-,220103,620103,ff,Failures_status_2.AEB_FCWactivationRequest2 ,735,197,200,1,0,0,-,220103,620103,ff,Failures_status_2.GearLeverPosition ,735,201,202,1,0,0,-,220103,620103,ff,Failures_status_2.NeutralContact ,735,203,204,1,0,0,-,220103,620103,ff,Failures_status_2.RearGearEngaged ,735,205,206,1,0,0,-,220103,620103,ff,Failures_status_2.ParkingBrakeStatus ,735,207,209,1,0,0,-,220103,620103,ff,Failures_status_2.BrakeInfoStatus ,735,210,211,1,0,0,-,220103,620103,ff,Failures_status_2.ClutchSwitchMinimumTravel ,735,212,215,1,0,0,-,220103,620103,ff,Failures_status_2.ACC_status ,735,216,217,1,0,0,-,220103,620103,ff,Failures_status_2.FlashingIndicaCommandPos ,735,218,218,1,0,0,-,220103,620103,ff,Failures_status_2.AEB_DWInhibitionRequest ,735,219,220,1,0,0,-,220103,620103,ff,Failures_status_2.ADAS_VehicleDrivingStatus ,735,221,222,1,0,0,-,220103,620103,ff,Failures_status_2.AEB_CancelInfo ,735,223,225,1,0,0,-,220103,620103,ff,Failures_status_2.AEB_CancelReason ,735,226,227,1,0,0,-,220103,620103,ff,Failures_status_2.AEB_RadarCancelReason ,735,228,231,1,0,0,-,220103,620103,ff,Failures_status_2.VehicleStates ,735,232,233,1,0,0,-,220103,620103,ff,Failures_status_2.PedalError ,735,234,234,1,0,0,-,220103,620103,ff,Failures_status_2.SteerByWire_Unreliable ,735,235,236,1,0,0,-,220103,620103,ff,Failures_status_2.DW_ActivationRequest2 ,735,237,238,1,0,0,-,220103,620103,ff,Failures_status_2.DW_ActivationRequest ,735,239,241,1,0,0,-,220103,620103,ff,Failures_status_2.SwaSensorInternalStatus ,735,242,243,1,0,0,-,220103,620103,ff,Failures_status_2.WheelDirectionRL ,735,244,245,1,0,0,-,220103,620103,ff,Failures_status_2.WheelDirectionRR ,735,246,247,1,0,0,-,220103,620103,ff,Failures_status_2.AEB_CameraStatus ,735,248,248,1,0,0,-,220103,620103,ff,Failures_status_2.CameraInitialised ,735,249,249,1,0,0,-,220103,620103,ff,Failures_status_2.CameraCalibrationStatus ,735,31,31,1,0,0,-,220104,620104,ff,Radar_Status.ACC activation status ,735,32,32,1,0,0,-,220104,620104,ff,Radar_Status.ACC failure status ,735,33,33,1,0,0,-,220104,620104,ff,Radar_Status.ACC configuration status ,735,34,34,1,0,0,-,220104,620104,ff,Radar_Status.AEB activation status ,735,35,35,1,0,0,-,220104,620104,ff,Radar_Status.AEB failure status ,735,36,36,1,0,0,-,220104,620104,ff,Radar_Status.AEB configuration status ,735,37,37,1,0,0,-,220104,620104,ff,Radar_Status.DW activation status ,735,38,38,1,0,0,-,220104,620104,ff,Radar_Status.DW failure status ,735,39,39,1,0,0,-,220104,620104,ff,Radar_Status.DW configuration status ,735,28,55,.01,0,2,km,220300,620300,ff,DA_veh1.mileage at AEB start T1 ,735,56,83,.01,0,2,,220300,620300,ff,DA_veh1.mileage at AEB stop T2 ,735,84,99,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB start T1 ,735,100,115,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB start T1 + 200ms ,735,116,131,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB start T1 + 400ms ,735,132,147,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB start T1 + 600ms ,735,148,163,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB start T1 + 800ms ,735,164,179,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB start T1 + 1s ,735,180,195,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB start T1 + 1.2s ,735,196,211,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB start T1 + 1.4s ,735,212,227,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB start T1 + 1.6s ,735,228,243,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB start T1 + 1.8s ,735,244,259,.01,0,2,km/h,220300,620300,ff,DA_veh1.Vehicle speed at AEB stop T2 ,735,260,270,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB start T1 ,735,271,281,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB start T1 + 200ms ,735,282,292,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB start T1 + 400ms ,735,293,303,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB start T1 + 600ms ,735,304,314,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB start T1 + 800ms ,735,315,325,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB start T1 + 1s ,735,326,336,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB start T1 + 1.2s ,735,337,347,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB start T1 + 1.4s ,735,348,358,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB start T1 + 1.6s ,735,359,369,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB start T1 + 1.8s ,735,370,380,.1,1000,1,°/s,220300,620300,ff,DA_veh1.YawRate_Raw at AEB stop T2 ,735,381,390,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB start T1 ,735,391,400,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB start T1 + 200ms ,735,401,410,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB start T1 + 400ms ,735,411,420,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB start T1 + 600ms ,735,421,430,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB start T1 + 800ms ,735,431,440,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB start T1 + 1s ,735,441,450,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB start T1 + 1.2s ,735,451,460,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB start T1 + 1.4s ,735,461,470,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB start T1 + 1.6s ,735,471,480,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB start T1 + 1.8s ,735,481,490,.125,0,1,%,220300,620300,ff,DA_veh1.RawSensor at AEB stop T2 ,735,491,498,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB start T1 ,735,499,506,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB start T1 + 200ms ,735,507,514,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB start T1 + 400ms ,735,515,522,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB start T1 + 600ms ,735,523,530,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB start T1 + 800ms ,735,531,538,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB start T1 + 1s ,735,539,546,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB start T1 + 1.2s ,735,547,554,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB start T1 + 1.4s ,735,555,562,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB start T1 + 1.6s ,735,563,570,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB start T1 + 1.8s ,735,571,578,.5,0,1,bar,220300,620300,ff,DA_veh1.DriverBrakingPressure at AEB stop T2 ,735,579,593,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB start T1 ,735,594,608,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB start T1 + 200ms ,735,609,623,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB start T1 + 400ms ,735,624,638,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB start T1 + 600ms ,735,639,653,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB start T1 + 800ms ,735,654,668,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB start T1 + 1s ,735,669,683,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB start T1 + 1.2s ,735,684,698,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB start T1 + 1.4s ,735,699,713,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB start T1 + 1.6s ,735,714,728,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB start T1 + 1.8s ,735,729,743,.1,10800,1,°,220300,620300,ff,DA_veh1.SteeringWheelAngle at AEB stop T2 ,735,744,745,1,0,0,,220300,620300,ff,DA_veh1.RearGearEngaged at AEB start T1 ,735,746,747,1,0,0,,220300,620300,ff,DA_veh1.RearGearEngaged at AEB stop T2 ,735,748,749,1,0,0,,220300,620300,ff,DA_veh1.NeutralContact at AEB start T1 ,735,750,751,1,0,0,,220300,620300,ff,DA_veh1.NeutralContact at AEB stop T2 ,735,752,752,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_SharplyTurnedWheel at T1 ,735,753,753,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_SharplyTurnedWheel at T2 ,735,754,754,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_MarkedGasPedalPush at T1 ,735,755,755,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_MarkedGasPedalPush at T2 ,735,756,756,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_StrongGasPedalPush at T1 ,735,757,757,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_StrongGasPedalPush at T2 ,735,758,758,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_CrashAndStopDetected at T1 ,735,759,759,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_CrashAndStopDetected at T2 ,735,760,760,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_AebsStateEnable at T1 ,735,761,761,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_AebsStateEnable at T2 ,735,762,762,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_AebsCityStateEnable at T1 ,735,763,763,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_AebsCityStateEnable at T2 ,735,764,764,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_AebsPedStateEnable at T1 ,735,765,765,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_AebsPedStateEnable at T2 ,735,766,766,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_AebsCycStateEnable at T1 ,735,767,767,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_AebsCycStateEnable at T2 ,735,768,768,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_Aebs1 at T1 ,735,769,769,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_Aebs1 at T2 ,735,770,770,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_Aebs2 at T1 ,735,771,771,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_Aebs2 at T2 ,735,772,772,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_AebsCity at T1 ,735,773,773,1,0,0,,220300,620300,ff,DA_veh1.V_flag_x_AebsCity at T2 ,735,774,774,1,0,0,,220300,620300,ff,DA_veh1.V_Flag_x_AEBSped at T1 ,735,775,775,1,0,0,,220300,620300,ff,DA_veh1.V_Flag_x_AEBSped at T2 ,735,776,776,1,0,0,,220300,620300,ff,DA_veh1.V_Flag_x_AEBScyc at T1 ,735,777,777,1,0,0,,220300,620300,ff,DA_veh1.V_Flag_x_AEBScyc at T2 ,735,778,781,1,0,0,,220300,620300,ff,DA_veh1.GearLeverPosition at AEB start T1 ,735,782,785,1,0,0,,220300,620300,ff,DA_veh1.GearLeverPosition at AEB stop T2 ,735,786,797,1,0,0,,220300,620300,ff,DA_veh1.TransversalAcceleration at AEB start T1 ,735,798,809,1,0,0,,220300,620300,ff,DA_veh1.TransversalAcceleration at AEB start T2 ,735,810,811,1,0,0,,220300,620300,ff,DA_veh1.ClutchSwitchMinimumTravel at AEB start T1 ,735,812,813,1,0,0,,220300,620300,ff,DA_veh1.ClutchSwitchMinimumTravel at AEB stop T2 ,735,814,815,1,0,0,,220300,620300,ff,DA_veh1.AEBS_FailureStatus at AEB start T1 ,735,816,817,1,0,0,,220300,620300,ff,DA_veh1.AEBS_FailureStatus at AEB stop T2 ,735,818,823,1,0,0,,220300,620300,ff,DA_veh1.AirbagCrashOrder at AEB start T1 ,735,824,829,1,0,0,,220300,620300,ff,DA_veh1.AirbagCrashOrder at AEB stop T2 ,735,830,832,1,0,0,,220300,620300,ff,DA_veh1.BrakeInfoStatus at AEB start T1 ,735,833,835,1,0,0,,220300,620300,ff,DA_veh1.BrakeInfoStatus at AEB stop T2 ,735,836,838,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder at AEB start T1      ,735,839,841,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder at AEB start T1 + 200ms     ,735,842,844,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder at AEB start T1 + 400ms     ,735,845,847,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder at AEB start T1 + 600ms     ,735,848,850,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder . at AEB start T1 + 800ms     ,735,851,853,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder at AEB start T1 + 1s            ,735,854,856,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder at AEB start T1 + 1.2s          ,735,857,859,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder at AEB start T1 + 1.4s          ,735,860,862,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder at AEB start T1 + 1.6s          ,735,863,865,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder at AEB start T1 + 1.8s          ,735,866,868,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeWheelTorqueOrder at AEB stop T2      ,735,869,883,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelerationRequest at AEB start T1  ,735,884,898,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelerationRequest at AEB start T1 + 200ms  ,735,899,913,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelarationRequest at AEB start T1 + 400ms  ,735,914,928,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelerationRequest at AEB start T1 + 600ms  ,735,929,943,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelerationRequest at AEB start T1 + 800ms  ,735,944,958,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelerationRequest at AEB start T1 + 1s          ,735,959,973,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelerationRequest at AEB start T1 + 1.2s      ,735,974,988,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelerationRequest at AEB start T1 + 1.4s      ,735,989,1003,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelerationRequest at AEB start T1 + 1.6s      ,735,1004,1018,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelerationRequest at AEB start T1 + 1.8s      ,735,1019,1033,1,0,0,,220300,620300,ff,DA_veh1.AEB_BrakeDecelerationRequest at AEB stop T2   ,735,24,35,.05,0,2,m,220302,620302,ff,DA_AEB.MCP_Xped_rel at AEB start T1 ,735,36,47,.05,0,2,m,220302,620302,ff,DA_AEB.MCP_Xped_rel at AEB stop T2 ,735,48,55,.1,127,1,mps,220302,620302,ff,DA_AEB.MCP_Vxped_rel at AEB start T1 ,735,56,63,.1,127,1,mps,220302,620302,ff,DA_AEB.MCP_Vxped_rel at AEB stop T2 ,735,64,70,1,0,0,%,220302,620302,ff,DA_AEB.MCP_Safety_Confidence_Level at AEB start T1 ,735,71,77,1,0,0,%,220302,620302,ff,DA_AEB.MCP_Safety_Confidence_Level at AEB stop T2 ,735,78,87,.01,0,2,s,220302,620302,ff,DA_AEB.MCP_TTC at AEB start T1 ,735,88,97,.01,0,2,s,220302,620302,ff,DA_AEB.MCP_TTC at AEB stop T2 ,735,98,111,.01,0,2,,220302,620302,ff,DA_AEB.MCC_Ycyc_rel at AEB start T1 ,735,112,125,.01,0,2,,220302,620302,ff,DA_AEB.MCC_Ycyc_rel at AEB stop T2 ,735,126,136,.1,0,1,mps,220302,620302,ff,DA_AEB.MCP_Vyped_rel at AEB start T1 ,735,137,147,.1,0,1,mps,220302,620302,ff,DA_AEB.MCP_Vyped_rel at AEB stop T2 ,735,148,158,.05,0,2,m,220302,620302,ff,DA_AEB.MCC_Xcyc_rel at AEB start T1 ,735,159,169,.05,0,2,m,220302,620302,ff,DA_AEB.MCC_Xcyc_rel at AEB stop T2 ,735,170,180,.1,0,1,mps,220302,620302,ff,DA_AEB.MCC_Vxcyc_rel at AEB start T1 ,735,181,191,.1,0,1,mps,220302,620302,ff,DA_AEB.MCC_Vxcyc_rel at AEB stop T2 ,735,192,198,1,0,0,%,220302,620302,ff,DA_AEB.MCC_Safety_Confidence_Level at AEB start T1 ,735,199,205,1,0,0,%,220302,620302,ff,DA_AEB.MCC_Safety_Confidence_Level at AEB stop T2 ,735,206,215,.01,0,2,s,220302,620302,ff,DA_AEB.MCC_TTC at AEB start T1 ,735,216,225,.01,0,2,s,220302,620302,ff,DA_AEB.MCC_TTC at AEB stop T2 ,735,226,236,.1,0,1,mps,220302,620302,ff,DA_AEB.MCC_Vycyc_rel at AEB start T1 ,735,237,247,.1,0,1,mps,220302,620302,ff,DA_AEB.MCC_Vycyc_rel at AEB stop T2 ,735,248,248,1,0,0,,220302,620302,ff,DA_AEB.V_flag_x_WarningPedestrian at AEB start T1 ,735,249,249,1,0,0,,220302,620302,ff,DA_AEB.V_flag_x_WarningPedestrian at AEB stop T2 ,735,250,250,1,0,0,,220302,620302,ff,DA_AEB.V_flag_x_WarningCyclist at AEB start T1 ,735,251,251,1,0,0,,220302,620302,ff,DA_AEB.V_flag_x_WarningCyclist at AEB stop T2 ,735,252,265,.01,5120,2,mps,220302,620302,ff,DA_AEB.MCV_rel_speed at AEB start T1 ,735,266,279,.01,5120,2,mps,220302,620302,ff,DA_AEB.MCV_rel_speed at AEB stop T2 ,735,280,293,.02,0,2,m,220302,620302,ff,DA_AEB.MCV_distance at AEB start T1 ,735,294,307,.02,0,2,m,220302,620302,ff,DA_AEB.MCV_distance at AEB stop T2 ,735,308,309,1,0,0,,220302,620302,ff,DA_AEB.MCV_object_category at AEB start T1 ,735,310,311,1,0,0,,220302,620302,ff,DA_AEB.MCV_object_category at AEB stop T2 ,735,312,318,1,0,0,%,220302,620302,ff,DA_AEB.MCV_confidence at AEB start T1 ,735,319,325,1,0,0,%,220302,620302,ff,DA_AEB.MCV_confidence at AEB stop T2 ,735,326,335,.01,0,2,s,220302,620302,ff,DA_AEB.MCV_TTC at AEB start T1 ,735,336,345,.01,0,2,s,220302,620302,ff,DA_AEB.MCV_TTC at AEB stop T2 ,735,346,354,.05,25600,2,m,220302,620302,ff,DA_AEB.MCV_cor_lateral_position at AEB start T1 ,735,355,363,.05,25600,2,m,220302,620302,ff,DA_AEB.MCV_cor_lateral_position at AEB stop T2 ,735,364,372,.1,260,1,mps,220302,620302,ff,DA_AEB.MCV_lat_speed at AEB start T1 ,735,373,381,.1,260,1,mps,220302,620302,ff,DA_AEB.MCV_lat_speed at AEB start T12 ,735,31,31,1,0,0,-,220303,620303,ff,DA_flag.Flag Recording terminated ,735,28,55,.01,0,2,km,220304,620304,ff,DA_veh_Ev2.mileage at AEB start T1 ,735,56,83,.01,0,2,,220304,620304,ff,DA_veh_Ev2.mileage at AEB stop T2 ,735,84,99,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB start T1 ,735,100,115,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB start T1 + 200ms ,735,116,131,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB start T1 + 400ms ,735,132,147,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB start T1 + 600ms ,735,148,163,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB start T1 + 800ms ,735,164,179,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB start T1 + 1s ,735,180,195,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB start T1 + 1.2s ,735,196,211,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB start T1 + 1.4s ,735,212,227,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB start T1 + 1.6s ,735,228,243,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB start T1 + 1.8s ,735,244,259,.01,0,2,km/h,220304,620304,ff,DA_veh_Ev2.Vehicle speed at AEB stop T2 ,735,260,270,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB start T1 ,735,271,281,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB start T1 + 200ms ,735,282,292,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB start T1 + 400ms ,735,293,303,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB start T1 + 600ms ,735,304,314,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB start T1 + 800ms ,735,315,325,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB start T1 + 1s ,735,326,336,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB start T1 + 1.2s ,735,337,347,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB start T1 + 1.4s ,735,348,358,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB start T1 + 1.6s ,735,359,369,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB start T1 + 1.8s ,735,370,380,.1,1000,1,°/s,220304,620304,ff,DA_veh_Ev2.YawRate_Raw at AEB stop T2 ,735,381,390,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB start T1 ,735,391,400,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB start T1 + 200ms ,735,401,410,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB start T1 + 400ms ,735,411,420,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB start T1 + 600ms ,735,421,430,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB start T1 + 800ms ,735,431,440,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB start T1 + 1s ,735,441,450,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB start T1 + 1.2s ,735,451,460,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB start T1 + 1.4s ,735,461,470,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB start T1 + 1.6s ,735,471,480,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB start T1 + 1.8s ,735,481,490,.125,0,1,%,220304,620304,ff,DA_veh_Ev2.RawSensor at AEB stop T2 ,735,491,498,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB start T1 ,735,499,506,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB start T1 + 200ms ,735,507,514,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB start T1 + 400ms ,735,515,522,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB start T1 + 600ms ,735,523,530,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB start T1 + 800ms ,735,531,538,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB start T1 + 1s ,735,539,546,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB start T1 + 1.2s ,735,547,554,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB start T1 + 1.4s ,735,555,562,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB start T1 + 1.6s ,735,563,570,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB start T1 + 1.8s ,735,571,578,.5,0,1,bar,220304,620304,ff,DA_veh_Ev2.DriverBrakingPressure at AEB stop T2 ,735,579,593,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB start T1 ,735,594,608,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB start T1 + 200ms ,735,609,623,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB start T1 + 400ms ,735,624,638,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB start T1 + 600ms ,735,639,653,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB start T1 + 800ms ,735,654,668,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB start T1 + 1s ,735,669,683,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB start T1 + 1.2s ,735,684,698,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB start T1 + 1.4s ,735,699,713,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB start T1 + 1.6s ,735,714,728,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB start T1 + 1.8s ,735,729,743,.1,10800,1,°,220304,620304,ff,DA_veh_Ev2.SteeringWheelAngle at AEB stop T2 ,735,744,745,1,0,0,,220304,620304,ff,DA_veh_Ev2.RearGearEngaged at AEB start T1 ,735,746,747,1,0,0,,220304,620304,ff,DA_veh_Ev2.RearGearEngaged at AEB stop T2 ,735,748,749,1,0,0,,220304,620304,ff,DA_veh_Ev2.NeutralContact at AEB start T1 ,735,750,751,1,0,0,,220304,620304,ff,DA_veh_Ev2.NeutralContact at AEB stop T2 ,735,752,752,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_SharplyTurnedWheel at T1 ,735,753,753,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_SharplyTurnedWheel at T2 ,735,754,754,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_MarkedGasPedalPush at T1 ,735,755,755,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_MarkedGasPedalPush at T2 ,735,756,756,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_StrongGasPedalPush at T1 ,735,757,757,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_StrongGasPedalPush at T2 ,735,758,758,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_CrashAndStopDetected at T1 ,735,759,759,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_CrashAndStopDetected at T2 ,735,760,760,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_AebsStateEnable at T1 ,735,761,761,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_AebsStateEnable at T2 ,735,762,762,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_AebsCityStateEnable at T1 ,735,763,763,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_AebsCityStateEnable at T2 ,735,764,764,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_AebsPedStateEnable at T1 ,735,765,765,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_AebsPedStateEnable at T2 ,735,766,766,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_AebsCycStateEnable at T1 ,735,767,767,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_AebsCycStateEnable at T2 ,735,768,768,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_Aebs1 at T1 ,735,769,769,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_Aebs1 at T2 ,735,770,770,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_Aebs2 at T1 ,735,771,771,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_Aebs2 at T2 ,735,772,772,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_AebsCity at T1 ,735,773,773,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_flag_x_AebsCity at T2 ,735,774,774,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_Flag_x_AEBSped at T1 ,735,775,775,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_Flag_x_AEBSped at T2 ,735,776,776,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_Flag_x_AEBScyc at T1 ,735,777,777,1,0,0,,220304,620304,ff,DA_veh_Ev2.V_Flag_x_AEBScyc at T2 ,735,778,781,1,0,0,,220304,620304,ff,DA_veh_Ev2.GearLeverPosition at AEB start T1 ,735,782,785,1,0,0,,220304,620304,ff,DA_veh_Ev2.GearLeverPosition at AEB stop T2 ,735,786,797,1,0,0,,220304,620304,ff,DA_veh_Ev2.TransversalAcceleration at AEB start T1 ,735,798,809,1,0,0,,220304,620304,ff,DA_veh_Ev2.TransversalAcceleration at AEB start T2 ,735,810,811,1,0,0,,220304,620304,ff,DA_veh_Ev2.ClutchSwitchMinimumTravel at AEB start T1 ,735,812,813,1,0,0,,220304,620304,ff,DA_veh_Ev2.ClutchSwitchMinimumTravel at AEB stop T2 ,735,814,815,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEBS_FailureStatus at AEB start T1 ,735,816,817,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEBS_FailureStatus at AEB stop T2 ,735,818,823,1,0,0,,220304,620304,ff,DA_veh_Ev2.AirbagCrashOrder at AEB start T1 ,735,824,829,1,0,0,,220304,620304,ff,DA_veh_Ev2.AirbagCrashOrder at AEB stop T2 ,735,830,832,1,0,0,,220304,620304,ff,DA_veh_Ev2.BrakeInfoStatus at AEB start T1 ,735,833,835,1,0,0,,220304,620304,ff,DA_veh_Ev2.BrakeInfoStatus at AEB stop T2 ,735,836,838,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB start T1      ,735,839,841,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB start T1 + 200ms     ,735,842,844,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB start T1 + 400ms     ,735,845,847,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB start T1 + 600ms     ,735,848,850,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB start T1 + 800ms     ,735,851,853,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB start T1 + 1s            ,735,854,856,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB start T1 + 1.2s          ,735,857,859,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB start T1 + 1.4s          ,735,860,862,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB start T1 + 1.6s          ,735,863,865,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB start T1 + 1.8s          ,735,866,868,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeWheelTorqueOrder at AEB stop T2      ,735,869,883,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelerationRequest at AEB start T1  ,735,884,898,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelerationRequest at AEB start T1 + 200ms  ,735,899,913,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelarationRequest at AEB start T1 + 400ms  ,735,914,928,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelerationRequest at AEB start T1 + 600ms  ,735,929,943,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelerationRequest at AEB start T1 + 800ms  ,735,944,958,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelerationRequest at AEB start T1 + 1s          ,735,959,973,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelerationRequest at AEB start T1 + 1.2s      ,735,974,988,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelerationRequest at AEB start T1 + 1.4s      ,735,989,1003,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelerationRequest at AEB start T1 + 1.6s      ,735,1004,1018,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelerationRequest at AEB start T1 + 1.8s      ,735,1019,1033,1,0,0,,220304,620304,ff,DA_veh_Ev2.AEB_BrakeDecelerationRequest at AEB stop T2   ,735,24,35,.05,0,2,m,220306,620306,ff,DA_AEB_Ev2.MCP_Xped_rel at AEB start T1 ,735,36,47,.05,0,2,m,220306,620306,ff,DA_AEB_Ev2.MCP_Xped_rel at AEB stop T2 ,735,48,55,.1,127,1,mps,220306,620306,ff,DA_AEB_Ev2.MCP_Vxped_rel at AEB start T1 ,735,56,63,.1,127,1,mps,220306,620306,ff,DA_AEB_Ev2.MCP_Vxped_rel at AEB stop T2 ,735,64,70,1,0,0,%,220306,620306,ff,DA_AEB_Ev2.MCP_Safety_Confidence_Level at AEB start T1 ,735,71,77,1,0,0,%,220306,620306,ff,DA_AEB_Ev2.MCP_Safety_Confidence_Level at AEB stop T2 ,735,78,87,.01,0,2,s,220306,620306,ff,DA_AEB_Ev2.MCP_TTC at AEB start T1 ,735,88,97,.01,0,2,s,220306,620306,ff,DA_AEB_Ev2.MCP_TTC at AEB stop T2 ,735,98,111,.01,0,2,,220306,620306,ff,DA_AEB_Ev2.MCC_Ycyc_rel at AEB start T1 ,735,112,125,.01,0,2,,220306,620306,ff,DA_AEB_Ev2.MCC_Ycyc_rel at AEB stop T2 ,735,126,136,.1,0,1,mps,220306,620306,ff,DA_AEB_Ev2.MCP_Vyped_rel at AEB start T1 ,735,137,147,.1,0,1,mps,220306,620306,ff,DA_AEB_Ev2.MCP_Vyped_rel at AEB stop T2 ,735,148,158,.05,0,2,m,220306,620306,ff,DA_AEB_Ev2.MCC_Xcyc_rel at AEB start T1 ,735,159,169,.05,0,2,m,220306,620306,ff,DA_AEB_Ev2.MCC_Xcyc_rel at AEB stop T2 ,735,170,180,.1,0,1,mps,220306,620306,ff,DA_AEB_Ev2.MCC_Vxcyc_rel at AEB start T1 ,735,181,191,.1,0,1,mps,220306,620306,ff,DA_AEB_Ev2.MCC_Vxcyc_rel at AEB stop T2 ,735,192,198,1,0,0,%,220306,620306,ff,DA_AEB_Ev2.MCC_Safety_Confidence_Level at AEB start T1 ,735,199,205,1,0,0,%,220306,620306,ff,DA_AEB_Ev2.MCC_Safety_Confidence_Level at AEB stop T2 ,735,206,215,.01,0,2,s,220306,620306,ff,DA_AEB_Ev2.MCC_TTC at AEB start T1 ,735,216,225,.01,0,2,s,220306,620306,ff,DA_AEB_Ev2.MCC_TTC at AEB stop T2 ,735,226,236,.1,0,1,mps,220306,620306,ff,DA_AEB_Ev2.MCC_Vycyc_rel at AEB start T1 ,735,237,247,.1,0,1,mps,220306,620306,ff,DA_AEB_Ev2.MCC_Vycyc_rel at AEB stop T2 ,735,248,248,1,0,0,,220306,620306,ff,DA_AEB_Ev2.V_flag_x_WarningPedestrian at AEB start T1 ,735,249,249,1,0,0,,220306,620306,ff,DA_AEB_Ev2.V_flag_x_WarningPedestrian at AEB stop T2 ,735,250,250,1,0,0,,220306,620306,ff,DA_AEB_Ev2.V_flag_x_WarningCyclist at AEB start T1 ,735,251,251,1,0,0,,220306,620306,ff,DA_AEB_Ev2.V_flag_x_WarningCyclist at AEB stop T2 ,735,252,265,.01,5120,2,mps,220306,620306,ff,DA_AEB_Ev2.MCV_rel_speed at AEB start T1 ,735,266,279,.01,5120,2,mps,220306,620306,ff,DA_AEB_Ev2.MCV_rel_speed at AEB stop T2 ,735,280,293,.02,0,2,m,220306,620306,ff,DA_AEB_Ev2.MCV_distance at AEB start T1 ,735,294,307,.02,0,2,m,220306,620306,ff,DA_AEB_Ev2.MCV_distance at AEB stop T2 ,735,308,309,1,0,0,,220306,620306,ff,DA_AEB_Ev2.MCV_object_category at AEB start T1 ,735,310,311,1,0,0,,220306,620306,ff,DA_AEB_Ev2.MCV_object_category at AEB stop T2 ,735,312,318,1,0,0,%,220306,620306,ff,DA_AEB_Ev2.MCV_confidence at AEB start T1 ,735,319,325,1,0,0,%,220306,620306,ff,DA_AEB_Ev2.MCV_confidence at AEB stop T2 ,735,326,335,.01,0,2,s,220306,620306,ff,DA_AEB_Ev2.MCV_TTC at AEB start T1 ,735,336,345,.01,0,2,s,220306,620306,ff,DA_AEB_Ev2.MCV_TTC at AEB stop T2 ,735,346,354,.05,25600,2,m,220306,620306,ff,DA_AEB_Ev2.MCV_cor_lateral_position at AEB start T1 ,735,355,363,.05,25600,2,m,220306,620306,ff,DA_AEB_Ev2.MCV_cor_lateral_position at AEB stop T2 ,735,364,372,.1,260,1,mps,220306,620306,ff,DA_AEB_Ev2.MCV_lat_speed at AEB start T1 ,735,373,381,.1,260,1,mps,220306,620306,ff,DA_AEB_Ev2.MCV_lat_speed at AEB start T12 ,735,31,31,1,0,0,-,220307,620307,ff,Dad_flag_Ev2.Flag Recording terminated ,735,28,55,.01,0,2,km,220308,620308,ff,DA_veh_Ev3.mileageatAEBstartT1 ,735,56,83,.01,0,2,km,220308,620308,ff,DA_veh_Ev3.mileageatAEBstopT2 ,735,84,99,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstartT1 ,735,100,115,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstartT1+200ms ,735,116,131,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstartT1+400ms ,735,132,147,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstartT1+600ms ,735,148,163,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstartT1+800ms ,735,164,179,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstartT1+1s ,735,180,195,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstartT1+1.2s ,735,196,211,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstartT1+1.4s ,735,212,227,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstartT1+1.6s ,735,228,243,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstartT1+1.8s ,735,244,259,.01,0,2,km/h,220308,620308,ff,DA_veh_Ev3.VehiclespeedAEBstopT2 ,735,260,270,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstartT1 ,735,271,281,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstartT1+200ms ,735,282,292,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstartT1+400ms ,735,293,303,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstartT1+600ms ,735,304,314,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstartT1+800ms ,735,315,325,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstartT1+1s ,735,326,336,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstartT1+1.2s ,735,337,347,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstartT1+1.4s ,735,348,358,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstartT1+1.6s ,735,359,369,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstartT1+1.8s ,735,370,380,.1,1000,1,°/s,220308,620308,ff,DA_veh_Ev3.YawRate_RawAEBstopT2 ,735,381,390,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstartT1 ,735,391,400,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstartT1+200ms ,735,401,410,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstartT1+400ms ,735,411,420,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstartT1+600ms ,735,421,430,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstartT1+800ms ,735,431,440,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstartT1+1s ,735,441,450,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstartT1+1.2s ,735,451,460,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstartT1+1.4s ,735,461,470,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstartT1+1.6s ,735,471,480,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstartT1+1.8s ,735,481,490,.125,0,1,%,220308,620308,ff,DA_veh_Ev3.RawSensorAEBstopT2 ,735,491,498,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstartT1 ,735,499,506,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstartT1+200ms ,735,507,514,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstartT1+400ms ,735,515,522,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstartT1+600ms ,735,523,530,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstartT1+800ms ,735,531,538,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstartT1+1s ,735,539,546,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstartT1+1.2s ,735,547,554,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstartT1+1.4s ,735,555,562,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstartT1+1.6s ,735,563,570,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstartT1+1.8s ,735,571,578,.5,0,1,bar,220308,620308,ff,DA_veh_Ev3.DriverBrakingPressureAEBstopT2 ,735,579,593,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstartT1 ,735,594,608,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstartT1+200ms ,735,609,623,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstartT1+400ms ,735,624,638,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstartT1+600ms ,735,639,653,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstartT1+800ms ,735,654,668,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstartT1+1s ,735,669,683,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstartT1+1.2s ,735,684,698,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstartT1+1.4s ,735,699,713,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstartT1+1.6s ,735,714,728,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstartT1+1.8s ,735,729,743,.1,10800,1,°,220308,620308,ff,DA_veh_Ev3.SteeringWheelAngleAEBstopT2 ,735,744,745,1,0,0,-,220308,620308,ff,DA_veh_Ev3.RearGearEngagedatAEBstartT1 ,735,746,747,1,0,0,-,220308,620308,ff,DA_veh_Ev3.RearGearEngagedatAEBstopT2 ,735,748,749,1,0,0,-,220308,620308,ff,DA_veh_Ev3.NeutralContactatAEBstartT1 ,735,750,751,1,0,0,-,220308,620308,ff,DA_veh_Ev3.NeutralContactatAEBstopT2 ,735,752,752,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_SharplyTurnedWheelatT1 ,735,753,753,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_SharplyTurnedWheelatT2 ,735,754,754,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_MarkedGasPedalPushatT1 ,735,755,755,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_MarkedGasPedalPushatT2 ,735,756,756,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_StrongGasPedalPushatT1 ,735,757,757,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_StrongGasPedalPushatT2 ,735,758,758,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_CrashAndStopDetectedatT1 ,735,759,759,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_CrashAndStopDetectedatT2 ,735,760,760,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_AebsStateEnableatT1 ,735,761,761,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_AebsStateEnableatT2 ,735,762,762,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_AebsCityStateEnableatT1 ,735,763,763,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_AebsCityStateEnableatT2 ,735,764,764,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_AebsPedStateEnableatT1 ,735,765,765,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_AebsPedStateEnableatT2 ,735,766,766,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_AebsCycStateEnableatT1 ,735,767,767,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_AebsCycStateEnableatT2 ,735,768,768,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_Aebs1atT1 ,735,769,769,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_Aebs1atT2 ,735,770,770,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_Aebs2atT1 ,735,771,771,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_Aebs2atT2 ,735,772,772,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_AebsCityatT1 ,735,773,773,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_flag_x_AebsCityatT2 ,735,774,774,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_Flag_x_AEBSpedatT1 ,735,775,775,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_Flag_x_AEBSpedatT2 ,735,776,776,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_Flag_x_AEBScycatT1 ,735,777,777,1,0,0,-,220308,620308,ff,DA_veh_Ev3.V_Flag_x_AEBScycatT2 ,735,778,781,1,0,0,-,220308,620308,ff,DA_veh_Ev3.GearLeverPositionatAEBstartT1 ,735,782,785,1,0,0,-,220308,620308,ff,DA_veh_Ev3.GearLeverPositionatAEBstopT2 ,735,786,797,.001,2000,3,G,220308,620308,ff,DA_veh_Ev3.TransversalAccelerationatAEBstartT1 ,735,798,809,.001,2000,3,G,220308,620308,ff,DA_veh_Ev3.TransversalAccelerationatAEBstartT2 ,735,810,811,1,0,0,-,220308,620308,ff,DA_veh_Ev3.ClutchSwitchMinimumTravelatAEBstartT1 ,735,812,813,1,0,0,-,220308,620308,ff,DA_veh_Ev3.ClutchSwitchMinimumTravelatAEBstopT2 ,735,814,815,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEBS_FailureStatusatAEBstartT1 ,735,816,817,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEBS_FailureStatusatAEBstopT2 ,735,818,823,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AirbagCrashOrderatAEBstartT1 ,735,824,829,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AirbagCrashOrderatAEBstopT2 ,735,830,832,1,0,0,-,220308,620308,ff,DA_veh_Ev3.BrakeInfoStatusatAEBstartT1 ,735,833,835,1,0,0,-,220308,620308,ff,DA_veh_Ev3.BrakeInfoStatusatAEBstopT2 ,735,836,838,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstartT1      ,735,839,841,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstartT1+200ms     ,735,842,844,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstartT1+400ms     ,735,845,847,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstartT1+600ms     ,735,848,850,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstartT1+800ms     ,735,851,853,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstartT1+1s            ,735,854,856,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstartT1+1.2s          ,735,857,859,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstartT1+1.4s          ,735,860,862,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstartT1+1.6s          ,735,863,865,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstartT1+1.8s          ,735,866,868,1,0,0,-,220308,620308,ff,DA_veh_Ev3.AEB_BrakeWheelTorqueOrderAEBstopT2      ,735,869,883,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelerationRequestAEBstartT1  ,735,884,898,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelerationRequestAEBstartT1+200ms  ,735,899,913,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelarationRequestAEBstartT1+400ms  ,735,914,928,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelerationRequestAEBstartT1+600ms  ,735,929,943,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelerationRequestAEBstartT1+800ms  ,735,944,958,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelerationRequestAEBstartT1+1s          ,735,959,973,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelerationRequestAEBstartT1+1.2s      ,735,974,988,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelerationRequestAEBstartT1+1.4s      ,735,989,1003,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelerationRequestAEBstartT1+1.6s      ,735,1004,1018,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelerationRequestAEBstartT1+1.8s      ,735,1019,1033,.001,0,3,mps2,220308,620308,ff,DA_veh_Ev3.AEB_BrakeDecelerationRequestAEBstopT2   ,735,24,35,.05,0,2,m,22030A,62030A,ff,DA_AEB_E3.MCP_Xped_rel at AEB start T1 ,735,36,47,.05,0,2,m,22030A,62030A,ff,DA_AEB_E3.MCP_Xped_rel at AEB stop T2 ,735,48,55,.1,127,1,mps,22030A,62030A,ff,DA_AEB_E3.MCP_Vxped_rel at AEB start T1 ,735,56,63,.1,127,1,mps,22030A,62030A,ff,DA_AEB_E3.MCP_Vxped_rel at AEB stop T2 ,735,64,70,1,0,0,%,22030A,62030A,ff,DA_AEB_E3.MCP_Safety_Confidence_Level at AEB start T1 ,735,71,77,1,0,0,%,22030A,62030A,ff,DA_AEB_E3.MCP_Safety_Confidence_Level at AEB stop T2 ,735,78,87,.01,0,2,s,22030A,62030A,ff,DA_AEB_E3.MCP_TTC at AEB start T1 ,735,88,97,.01,0,2,s,22030A,62030A,ff,DA_AEB_E3.MCP_TTC at AEB stop T2 ,735,98,111,.01,0,2,,22030A,62030A,ff,DA_AEB_E3.MCC_Ycyc_rel at AEB start T1 ,735,112,125,.01,0,2,,22030A,62030A,ff,DA_AEB_E3.MCC_Ycyc_rel at AEB stop T2 ,735,126,136,.1,0,1,mps,22030A,62030A,ff,DA_AEB_E3.MCP_Vyped_rel at AEB start T1 ,735,137,147,.1,0,1,mps,22030A,62030A,ff,DA_AEB_E3.MCP_Vyped_rel at AEB stop T2 ,735,148,158,.05,0,2,m,22030A,62030A,ff,DA_AEB_E3.MCC_Xcyc_rel at AEB start T1 ,735,159,169,.05,0,2,m,22030A,62030A,ff,DA_AEB_E3.MCC_Xcyc_rel at AEB stop T2 ,735,170,180,.1,0,1,mps,22030A,62030A,ff,DA_AEB_E3.MCC_Vxcyc_rel at AEB start T1 ,735,181,191,.1,0,1,mps,22030A,62030A,ff,DA_AEB_E3.MCC_Vxcyc_rel at AEB stop T2 ,735,192,198,1,0,0,%,22030A,62030A,ff,DA_AEB_E3.MCC_Safety_Confidence_Level at AEB start T1 ,735,199,205,1,0,0,%,22030A,62030A,ff,DA_AEB_E3.MCC_Safety_Confidence_Level at AEB stop T2 ,735,206,215,.01,0,2,s,22030A,62030A,ff,DA_AEB_E3.MCC_TTC at AEB start T1 ,735,216,225,.01,0,2,s,22030A,62030A,ff,DA_AEB_E3.MCC_TTC at AEB stop T2 ,735,226,236,.1,0,1,mps,22030A,62030A,ff,DA_AEB_E3.MCC_Vycyc_rel at AEB start T1 ,735,237,247,.1,0,1,mps,22030A,62030A,ff,DA_AEB_E3.MCC_Vycyc_rel at AEB stop T2 ,735,248,248,1,0,0,,22030A,62030A,ff,DA_AEB_E3.V_flag_x_WarningPedestrian at AEB start T1 ,735,249,249,1,0,0,,22030A,62030A,ff,DA_AEB_E3.V_flag_x_WarningPedestrian at AEB stop T2 ,735,250,250,1,0,0,,22030A,62030A,ff,DA_AEB_E3.V_flag_x_WarningCyclist at AEB start T1 ,735,251,251,1,0,0,,22030A,62030A,ff,DA_AEB_E3.V_flag_x_WarningCyclist at AEB stop T2 ,735,252,265,.01,5120,2,mps,22030A,62030A,ff,DA_AEB_E3.MCV_rel_speed at AEB start T1 ,735,266,279,.01,5120,2,mps,22030A,62030A,ff,DA_AEB_E3.MCV_rel_speed at AEB stop T2 ,735,280,293,.02,0,2,m,22030A,62030A,ff,DA_AEB_E3.MCV_distance at AEB start T1 ,735,294,307,.02,0,2,m,22030A,62030A,ff,DA_AEB_E3.MCV_distance at AEB stop T2 ,735,308,309,1,0,0,,22030A,62030A,ff,DA_AEB_E3.MCV_object_category at AEB start T1 ,735,310,311,1,0,0,,22030A,62030A,ff,DA_AEB_E3.MCV_object_category at AEB stop T2 ,735,312,318,1,0,0,%,22030A,62030A,ff,DA_AEB_E3.MCV_confidence at AEB start T1 ,735,319,325,1,0,0,%,22030A,62030A,ff,DA_AEB_E3.MCV_confidence at AEB stop T2 ,735,326,335,.01,0,2,s,22030A,62030A,ff,DA_AEB_E3.MCV_TTC at AEB start T1 ,735,336,345,.01,0,2,s,22030A,62030A,ff,DA_AEB_E3.MCV_TTC at AEB stop T2 ,735,346,354,.05,25600,2,m,22030A,62030A,ff,DA_AEB_E3.MCV_cor_lateral_position at AEB start T1 ,735,355,363,.05,25600,2,m,22030A,62030A,ff,DA_AEB_E3.MCV_cor_lateral_position at AEB stop T2 ,735,364,372,.1,260,1,mps,22030A,62030A,ff,DA_AEB_E3.MCV_lat_speed at AEB start T1 ,735,373,381,.1,260,1,mps,22030A,62030A,ff,DA_AEB_E3.MCV_lat_speed at AEB start T12 ,735,31,31,1,0,0,-,22030B,62030B,ff,DA_flag_Ev3.Flag Recording terminated ,735,28,55,.01,0,2,km,22030C,62030C,ff,DA_veh_Ev4.mileageatAEBstartT1 ,735,56,83,.01,0,2,,22030C,62030C,ff,DA_veh_Ev4.mileageatAEBstopT2 ,735,84,99,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstartT1 ,735,100,115,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstartT1+200ms ,735,116,131,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstartT1+400ms ,735,132,147,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstartT1+600ms ,735,148,163,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstartT1+800ms ,735,164,179,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstartT1+1s ,735,180,195,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstartT1+1.2s ,735,196,211,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstartT1+1.4s ,735,212,227,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstartT1+1.6s ,735,228,243,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstartT1+1.8s ,735,244,259,.01,0,2,km/h,22030C,62030C,ff,DA_veh_Ev4.VehiclespeedatAEBstopT2 ,735,260,270,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstartT1 ,735,271,281,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstartT1+200ms ,735,282,292,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstartT1+400ms ,735,293,303,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstartT1+600ms ,735,304,314,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstartT1+800ms ,735,315,325,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstartT1+1s ,735,326,336,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstartT1+1.2s ,735,337,347,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstartT1+1.4s ,735,348,358,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstartT1+1.6s ,735,359,369,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstartT1+1.8s ,735,370,380,.1,1000,1,°/s,22030C,62030C,ff,DA_veh_Ev4.YawRate_RawatAEBstopT2 ,735,381,390,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstartT1 ,735,391,400,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstartT1+200ms ,735,401,410,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstartT1+400ms ,735,411,420,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstartT1+600ms ,735,421,430,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstartT1+800ms ,735,431,440,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstartT1+1s ,735,441,450,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstartT1+1.2s ,735,451,460,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstartT1+1.4s ,735,461,470,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstartT1+1.6s ,735,471,480,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstartT1+1.8s ,735,481,490,.125,0,1,%,22030C,62030C,ff,DA_veh_Ev4.RawSensoratAEBstopT2 ,735,491,498,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstartT1 ,735,499,506,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstartT1+200ms ,735,507,514,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstartT1+400ms ,735,515,522,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstartT1+600ms ,735,523,530,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstartT1+800ms ,735,531,538,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstartT1+1s ,735,539,546,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstartT1+1.2s ,735,547,554,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstartT1+1.4s ,735,555,562,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstartT1+1.6s ,735,563,570,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstartT1+1.8s ,735,571,578,.5,0,1,bar,22030C,62030C,ff,DA_veh_Ev4.DriverBrakingPressureatAEBstopT2 ,735,579,593,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstartT1 ,735,594,608,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstartT1+200ms ,735,609,623,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstartT1+400ms ,735,624,638,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstartT1+600ms ,735,639,653,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstartT1+800ms ,735,654,668,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstartT1+1s ,735,669,683,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstartT1+1.2s ,735,684,698,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstartT1+1.4s ,735,699,713,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstartT1+1.6s ,735,714,728,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstartT1+1.8s ,735,729,743,.1,10800,1,°,22030C,62030C,ff,DA_veh_Ev4.SteeringWheelAngleatAEBstopT2 ,735,744,745,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.RearGearEngagedatAEBstartT1 ,735,746,747,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.RearGearEngagedatAEBstopT2 ,735,748,749,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.NeutralContactatAEBstartT1 ,735,750,751,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.NeutralContactatAEBstopT2 ,735,752,752,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_SharplyTurnedWheelatT1 ,735,753,753,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_SharplyTurnedWheelatT2 ,735,754,754,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_MarkedGasPedalPushatT1 ,735,755,755,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_MarkedGasPedalPushatT2 ,735,756,756,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_StrongGasPedalPushatT1 ,735,757,757,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_StrongGasPedalPushatT2 ,735,758,758,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_CrashAndStopDetectedatT1 ,735,759,759,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_CrashAndStopDetectedatT2 ,735,760,760,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_AebsStateEnableatT1 ,735,761,761,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_AebsStateEnableatT2 ,735,762,762,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_AebsCityStateEnableatT1 ,735,763,763,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_AebsCityStateEnableatT2 ,735,764,764,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_AebsPedStateEnableatT1 ,735,765,765,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_AebsPedStateEnableatT2 ,735,766,766,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_AebsCycStateEnableatT1 ,735,767,767,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_AebsCycStateEnableatT2 ,735,768,768,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_Aebs1atT1 ,735,769,769,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_Aebs1atT2 ,735,770,770,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_Aebs2atT1 ,735,771,771,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_Aebs2atT2 ,735,772,772,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_AebsCityatT1 ,735,773,773,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_flag_x_AebsCityatT2 ,735,774,774,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_Flag_x_AEBSpedatT1 ,735,775,775,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_Flag_x_AEBSpedatT2 ,735,776,776,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_Flag_x_AEBScycatT1 ,735,777,777,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.V_Flag_x_AEBScycatT2 ,735,778,781,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.GearLeverPositionatAEBstartT1 ,735,782,785,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.GearLeverPositionatAEBstopT2 ,735,786,797,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.TransversalAccelerationatAEBstartT1 ,735,798,809,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.TransversalAccelerationatAEBstartT2 ,735,810,811,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.ClutchSwitchMinimumTravelatAEBstartT1 ,735,812,813,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.ClutchSwitchMinimumTravelatAEBstopT2 ,735,814,815,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEBS_FailureStatusatAEBstartT1 ,735,816,817,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEBS_FailureStatusatAEBstopT2 ,735,818,823,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AirbagCrashOrderatAEBstartT1 ,735,824,829,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AirbagCrashOrderatAEBstopT2 ,735,830,832,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.BrakeInfoStatusatAEBstartT1 ,735,833,835,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.BrakeInfoStatusatAEBstopT2 ,735,836,838,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstartT1      ,735,839,841,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstartT1+200ms     ,735,842,844,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstartT1+400ms     ,735,845,847,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstartT1+600ms     ,735,848,850,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstartT1+800ms     ,735,851,853,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstartT1+1s            ,735,854,856,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstartT1+1.2s          ,735,857,859,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstartT1+1.4s          ,735,860,862,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstartT1+1.6s          ,735,863,865,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstartT1+1.8s          ,735,866,868,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeWheelTorqueOrderatAEBstopT2      ,735,869,883,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelerationRequestatAEBstartT1  ,735,884,898,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelerationRequestatAEBstartT1+200ms  ,735,899,913,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelarationRequestatAEBstartT1+400ms  ,735,914,928,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelerationRequestatAEBstartT1+600ms  ,735,929,943,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelerationRequestatAEBstartT1+800ms  ,735,944,958,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelerationRequestatAEBstartT1+1s          ,735,959,973,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelerationRequestatAEBstartT1+1.2s      ,735,974,988,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelerationRequestatAEBstartT1+1.4s      ,735,989,1003,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelerationRequestatAEBstartT1+1.6s      ,735,1004,1018,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelerationRequestatAEBstartT1+1.8s      ,735,1019,1033,1,0,0,,22030C,62030C,ff,DA_veh_Ev4.AEB_BrakeDecelerationRequestatAEBstopT2   ,735,24,35,.05,0,2,m,22030E,62030E,ff,DA_AEB_Ev4.MCP_Xped_rel at AEB start T1 ,735,36,47,.05,0,2,m,22030E,62030E,ff,DA_AEB_Ev4.MCP_Xped_rel at AEB stop T2 ,735,48,55,.1,127,1,mps,22030E,62030E,ff,DA_AEB_Ev4.MCP_Vxped_rel at AEB start T1 ,735,56,63,.1,127,1,mps,22030E,62030E,ff,DA_AEB_Ev4.MCP_Vxped_rel at AEB stop T2 ,735,64,70,1,0,0,%,22030E,62030E,ff,DA_AEB_Ev4.MCP_Safety_Confidence_Level at AEB start T1 ,735,71,77,1,0,0,%,22030E,62030E,ff,DA_AEB_Ev4.MCP_Safety_Confidence_Level at AEB stop T2 ,735,78,87,.01,0,2,s,22030E,62030E,ff,DA_AEB_Ev4.MCP_TTC at AEB start T1 ,735,88,97,.01,0,2,s,22030E,62030E,ff,DA_AEB_Ev4.MCP_TTC at AEB stop T2 ,735,98,111,.01,0,2,,22030E,62030E,ff,DA_AEB_Ev4.MCC_Ycyc_rel at AEB start T1 ,735,112,125,.01,0,2,,22030E,62030E,ff,DA_AEB_Ev4.MCC_Ycyc_rel at AEB stop T2 ,735,126,136,.1,0,1,mps,22030E,62030E,ff,DA_AEB_Ev4.MCP_Vyped_rel at AEB start T1 ,735,137,147,.1,0,1,mps,22030E,62030E,ff,DA_AEB_Ev4.MCP_Vyped_rel at AEB stop T2 ,735,148,158,.05,0,2,m,22030E,62030E,ff,DA_AEB_Ev4.MCC_Xcyc_rel at AEB start T1 ,735,159,169,.05,0,2,m,22030E,62030E,ff,DA_AEB_Ev4.MCC_Xcyc_rel at AEB stop T2 ,735,170,180,.1,0,1,mps,22030E,62030E,ff,DA_AEB_Ev4.MCC_Vxcyc_rel at AEB start T1 ,735,181,191,.1,0,1,mps,22030E,62030E,ff,DA_AEB_Ev4.MCC_Vxcyc_rel at AEB stop T2 ,735,192,198,1,0,0,%,22030E,62030E,ff,DA_AEB_Ev4.MCC_Safety_Confidence_Level at AEB start T1 ,735,199,205,1,0,0,%,22030E,62030E,ff,DA_AEB_Ev4.MCC_Safety_Confidence_Level at AEB stop T2 ,735,206,215,.01,0,2,s,22030E,62030E,ff,DA_AEB_Ev4.MCC_TTC at AEB start T1 ,735,216,225,.01,0,2,s,22030E,62030E,ff,DA_AEB_Ev4.MCC_TTC at AEB stop T2 ,735,226,236,.1,0,1,mps,22030E,62030E,ff,DA_AEB_Ev4.MCC_Vycyc_rel at AEB start T1 ,735,237,247,.1,0,1,mps,22030E,62030E,ff,DA_AEB_Ev4.MCC_Vycyc_rel at AEB stop T2 ,735,248,248,1,0,0,,22030E,62030E,ff,DA_AEB_Ev4.V_flag_x_WarningPedestrian at AEB start T1 ,735,249,249,1,0,0,,22030E,62030E,ff,DA_AEB_Ev4.V_flag_x_WarningPedestrian at AEB stop T2 ,735,250,250,1,0,0,,22030E,62030E,ff,DA_AEB_Ev4.V_flag_x_WarningCyclist at AEB start T1 ,735,251,251,1,0,0,,22030E,62030E,ff,DA_AEB_Ev4.V_flag_x_WarningCyclist at AEB stop T2 ,735,252,265,.01,5120,2,mps,22030E,62030E,ff,DA_AEB_Ev4.MCV_rel_speed at AEB start T1 ,735,266,279,.01,5120,2,mps,22030E,62030E,ff,DA_AEB_Ev4.MCV_rel_speed at AEB stop T2 ,735,280,293,.02,0,2,m,22030E,62030E,ff,DA_AEB_Ev4.MCV_distance at AEB start T1 ,735,294,307,.02,0,2,m,22030E,62030E,ff,DA_AEB_Ev4.MCV_distance at AEB stop T2 ,735,308,309,1,0,0,,22030E,62030E,ff,DA_AEB_Ev4.MCV_object_category at AEB start T1 ,735,310,311,1,0,0,,22030E,62030E,ff,DA_AEB_Ev4.MCV_object_category at AEB stop T2 ,735,312,318,1,0,0,%,22030E,62030E,ff,DA_AEB_Ev4.MCV_confidence at AEB start T1 ,735,319,325,1,0,0,%,22030E,62030E,ff,DA_AEB_Ev4.MCV_confidence at AEB stop T2 ,735,326,335,.01,0,2,s,22030E,62030E,ff,DA_AEB_Ev4.MCV_TTC at AEB start T1 ,735,336,345,.01,0,2,s,22030E,62030E,ff,DA_AEB_Ev4.MCV_TTC at AEB stop T2 ,735,346,354,.05,25600,2,m,22030E,62030E,ff,DA_AEB_Ev4.MCV_cor_lateral_position at AEB start T1 ,735,355,363,.05,25600,2,m,22030E,62030E,ff,DA_AEB_Ev4.MCV_cor_lateral_position at AEB stop T2 ,735,364,372,.1,260,1,mps,22030E,62030E,ff,DA_AEB_Ev4.MCV_lat_speed at AEB start T1 ,735,373,381,.1,260,1,mps,22030E,62030E,ff,DA_AEB_Ev4.MCV_lat_speed at AEB start T12 ,735,31,31,1,0,0,-,22030F,62030F,ff,DAd_flagEv_4.Flag Recording terminated ,735,24,51,.01,0,2,,220310,620310,ff,DA_SD_Ev1.mileage at AEB start T1 ,735,52,79,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.mileage at AEB stop T2 ,735,80,95,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB start T1 ,735,96,111,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB start T1 + 200ms ,735,112,127,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB start T1 + 400ms ,735,128,143,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB start T1 + 600ms ,735,144,159,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB start T1 + 800ms ,735,160,175,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB start T1 + 1s ,735,176,191,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB start T1 + 1.2s ,735,192,207,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB start T1 + 1.4s ,735,208,223,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB start T1 + 1.6s ,735,224,239,.01,0,2,km/h,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB start T1 + 1.8s ,735,240,255,.01,0,2,°/s,220310,620310,ff,DA_SD_Ev1.Vehicle speed AEB stop T2 ,735,256,266,.1,1000,1,°/s,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB start T1 ,735,267,277,.1,1000,1,°/s,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB start T1 + 200ms ,735,278,288,.1,1000,1,°/s,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB start T1 + 400ms ,735,289,299,.1,1000,1,°/s,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB start T1 + 600ms ,735,300,310,.1,1000,1,°/s,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB start T1 + 800ms ,735,311,321,.1,1000,1,°/s,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB start T1 + 1s ,735,322,332,.1,1000,1,°/s,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB start T1 + 1.2s ,735,333,343,.1,1000,1,°/s,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB start T1 + 1.4s ,735,344,354,.1,1000,1,°/s,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB start T1 + 1.6s ,735,355,365,.1,1000,1,°/s,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB start T1 + 1.8s ,735,366,376,.1,1000,1,%,220310,620310,ff,DA_SD_Ev1.YawRate_Raw AEB stop T2 ,735,377,386,.125,0,1,%,220310,620310,ff,DA_SD_Ev1.RawSensor AEB start T1 ,735,387,396,.125,0,1,%,220310,620310,ff,DA_SD_Ev1.RawSensor AEB start T1 + 200ms ,735,397,406,.125,0,1,%,220310,620310,ff,DA_SD_Ev1.RawSensor AEB start T1 + 400ms ,735,407,416,.125,0,1,%,220310,620310,ff,DA_SD_Ev1.RawSensor AEB start T1 + 600ms ,735,417,426,.125,0,1,%,220310,620310,ff,DA_SD_Ev1.RawSensor AEB start T1 + 800ms ,735,427,436,.125,0,1,%,220310,620310,ff,DA_SD_Ev1.RawSensor AEB start T1 + 1s ,735,437,446,.125,0,1,%,220310,620310,ff,DA_SD_Ev1.RawSensor AEB start T1 + 1.2s ,735,447,456,.125,0,1,%,220310,620310,ff,DA_SD_Ev1.RawSensor AEB start T1 + 1.4s ,735,457,466,.125,0,1,%,220310,620310,ff,DA_SD_Ev1.RawSensor AEB start T1 + 1.6s ,735,467,476,.125,0,1,%,220310,620310,ff,DA_SD_Ev1.RawSensor AEB start T1 + 1.8s ,735,477,486,.125,0,1,bar,220310,620310,ff,DA_SD_Ev1.RawSensor AEB stop T2 ,735,487,494,.5,0,1,bar,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB start T1 ,735,495,502,.5,0,1,bar,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB start T1 + 200ms ,735,503,510,.5,0,1,bar,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB start T1 + 400ms ,735,511,518,.5,0,1,bar,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB start T1 + 600ms ,735,519,526,.5,0,1,bar,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB start T1 + 800ms ,735,527,534,.5,0,1,bar,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB start T1 + 1s ,735,535,542,.5,0,1,bar,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB start T1 + 1.2s ,735,543,550,.5,0,1,bar,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB start T1 + 1.4s ,735,551,558,.5,0,1,bar,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB start T1 + 1.6s ,735,559,566,.5,0,1,bar,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB start T1 + 1.8s ,735,567,574,.5,0,1,°,220310,620310,ff,DA_SD_Ev1.DriverBrakingPressure AEB stop T2 ,735,575,589,.1,10800,1,°,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB start T1 ,735,590,604,.1,10800,1,°,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB start T1 + 200ms ,735,605,619,.1,10800,1,°,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB start T1 + 400ms ,735,620,634,.1,10800,1,°,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB start T1 + 600ms ,735,635,649,.1,10800,1,°,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB start T1 + 800ms ,735,650,664,.1,10800,1,°,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB start T1 + 1s ,735,665,679,.1,10800,1,°,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB start T1 + 1.2s ,735,680,694,.1,10800,1,°,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB start T1 + 1.4s ,735,695,709,.1,10800,1,°,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB start T1 + 1.6s ,735,710,724,.1,10800,1,°,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB start T1 + 1.8s ,735,725,739,1,0,0,,220310,620310,ff,DA_SD_Ev1.SteeringWheelAngle AEB stop T2 ,735,740,741,1,0,0,,220310,620310,ff,DA_SD_Ev1.RearGearEngaged at AEB start T1 ,735,742,743,1,0,0,,220310,620310,ff,DA_SD_Ev1.RearGearEngaged at AEB stop T2 ,735,744,745,1,0,0,,220310,620310,ff,DA_SD_Ev1.NeutralContact at AEB start T1 ,735,746,747,1,0,0,,220310,620310,ff,DA_SD_Ev1.NeutralContact at AEB stop T2 ,735,748,748,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_SharplyTurnedWheel at T1 ,735,749,749,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_SharplyTurnedWheel at T2 ,735,750,750,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_MarkedGasPedalPush at T1 ,735,751,751,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_MarkedGasPedalPush at T2 ,735,752,752,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_StrongGasPedalPush at T1 ,735,753,753,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_StrongGasPedalPush at T2 ,735,754,754,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_CrashAndStopDetected at T1 ,735,755,755,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_CrashAndStopDetected at T2 ,735,756,756,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_AebsStateEnable at T1 ,735,757,757,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_AebsStateEnable at T2 ,735,758,758,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_AebsCityStateEnable at T1 ,735,759,759,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_AebsCityStateEnable at T2 ,735,760,760,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_AebsPedStateEnable at T1 ,735,761,761,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_AebsPedStateEnable at T2 ,735,762,762,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_AebsCycStateEnable at T1 ,735,763,763,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_AebsCycStateEnable at T2 ,735,764,764,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_Aebs1 at T1 ,735,765,765,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_Aebs1 at T2 ,735,766,766,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_Aebs2 at T1 ,735,767,767,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_Aebs2 at T2 ,735,768,768,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_AebsCity at T1 ,735,769,769,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_flag_x_AebsCity at T2 ,735,770,770,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_Flag_x_AEBSped at T1 ,735,771,771,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_Flag_x_AEBSped at T2 ,735,772,772,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_Flag_x_AEBScyc at T1 ,735,773,773,1,0,0,,220310,620310,ff,DA_SD_Ev1.V_Flag_x_AEBScyc at T2 ,735,774,777,1,0,0,,220310,620310,ff,DA_SD_Ev1.GearLeverPosition at AEB start T1 ,735,778,781,1,0,0,,220310,620310,ff,DA_SD_Ev1.GearLeverPosition at AEB stop T2 ,735,782,793,1,0,0,,220310,620310,ff,DA_SD_Ev1.TransversalAcceleration at AEB start T1 ,735,794,805,1,0,0,,220310,620310,ff,DA_SD_Ev1.TransversalAcceleration at AEB start T2 ,735,806,807,1,0,0,,220310,620310,ff,DA_SD_Ev1.ClutchSwitchMinimumTravel at AEB start T1 ,735,808,809,1,0,0,,220310,620310,ff,DA_SD_Ev1.ClutchSwitchMinimumTravel at AEB stop T2 ,735,810,811,1,0,0,,220310,620310,ff,DA_SD_Ev1.AEBS_FailureStatus at AEB start T1 ,735,812,813,1,0,0,,220310,620310,ff,DA_SD_Ev1.AEBS_FailureStatus at AEB stop T2 ,735,814,819,1,0,0,,220310,620310,ff,DA_SD_Ev1.AirbagCrashOrder at AEB start T1 ,735,820,825,1,0,0,,220310,620310,ff,DA_SD_Ev1.AirbagCrashOrder at AEB stop T2 ,735,826,828,1,0,0,,220310,620310,ff,DA_SD_Ev1.BrakeInfoStatus at AEB start T1 ,735,829,831,1,0,0,,220310,620310,ff,DA_SD_Ev1.BrakeInfoStatus at AEB stop T2 ,735,24,35,.05,0,2,m,220311,620311,ff,DA_SD_TA1.MCP_Xped_rel at AEB start T1 ,735,36,47,.05,0,2,m,220311,620311,ff,DA_SD_TA1.MCP_Xped_rel at AEB stop T2 ,735,48,55,.1,127,1,mps,220311,620311,ff,DA_SD_TA1.MCP_Vxped_rel at AEB start T1 ,735,56,63,.1,127,1,mps,220311,620311,ff,DA_SD_TA1.MCP_Vxped_rel at AEB stop T2 ,735,64,70,1,0,0,%,220311,620311,ff,DA_SD_TA1.MCP_Safety_Confidence_Level at AEB start T1 ,735,71,77,1,0,0,%,220311,620311,ff,DA_SD_TA1.MCP_Safety_Confidence_Level at AEB stop T2 ,735,78,87,.01,0,2,s,220311,620311,ff,DA_SD_TA1.MCP_TTC at AEB start T1 ,735,88,97,.01,0,2,s,220311,620311,ff,DA_SD_TA1.MCP_TTC at AEB stop T2 ,735,98,111,.01,0,2,,220311,620311,ff,DA_SD_TA1.MCC_Ycyc_rel at AEB start T1 ,735,112,125,1,0,0,,220311,620311,ff,DA_SD_TA1.MCC_Ycyc_rel at AEB stop T2 ,735,126,136,.1,0,1,mps,220311,620311,ff,DA_SD_TA1.MCP_Vyped_rel at AEB start T1 ,735,137,147,.1,0,1,mps,220311,620311,ff,DA_SD_TA1.MCP_Vyped_rel at AEB stop T2 ,735,148,158,.05,0,2,m,220311,620311,ff,DA_SD_TA1.MCC_Xcyc_rel at AEB start T1 ,735,159,169,.05,0,2,m,220311,620311,ff,DA_SD_TA1.MCC_Xcyc_rel at AEB stop T2 ,735,170,180,.1,0,1,mps,220311,620311,ff,DA_SD_TA1.MCC_Vxcyc_rel at AEB start T1 ,735,181,191,.1,0,1,mps,220311,620311,ff,DA_SD_TA1.MCC_Vxcyc_rel at AEB stop T2 ,735,192,198,1,0,0,%,220311,620311,ff,DA_SD_TA1.MCC_Safety_Confidence_Level at AEB start T1 ,735,199,205,1,0,0,%,220311,620311,ff,DA_SD_TA1.MCC_Safety_Confidence_Level at AEB stop T2 ,735,206,215,.01,0,2,s,220311,620311,ff,DA_SD_TA1.MCC_TTC at AEB start T1 ,735,216,225,.01,0,2,s,220311,620311,ff,DA_SD_TA1.MCC_TTC at AEB stop T2 ,735,226,236,.1,0,1,mps,220311,620311,ff,DA_SD_TA1.MCC_Vycyc_rel at AEB start T1 ,735,237,247,.1,0,1,mps,220311,620311,ff,DA_SD_TA1.MCC_Vycyc_rel at AEB stop T2 ,735,248,248,1,0,0,,220311,620311,ff,DA_SD_TA1.V_flag_x_WarningPedestrian at AEB start T1 ,735,249,249,1,0,0,,220311,620311,ff,DA_SD_TA1.V_flag_x_WarningPedestrian at AEB stop T2 ,735,250,250,1,0,0,,220311,620311,ff,DA_SD_TA1.V_flag_x_WarningCyclist at AEB start T1 ,735,251,251,1,0,0,,220311,620311,ff,DA_SD_TA1.V_flag_x_WarningCyclist at AEB stop T2 ,735,252,265,.01,5120,2,mps,220311,620311,ff,DA_SD_TA1.MCV_rel_speed at AEB start T1 ,735,266,279,.01,5120,2,mps,220311,620311,ff,DA_SD_TA1.MCV_rel_speed at AEB stop T2 ,735,280,293,.02,0,2,m,220311,620311,ff,DA_SD_TA1.MCV_distance at AEB start T1 ,735,294,307,.02,0,2,m,220311,620311,ff,DA_SD_TA1.MCV_distance at AEB stop T2 ,735,308,309,1,0,0,,220311,620311,ff,DA_SD_TA1.MCV_object_category at AEB start T1 ,735,310,311,1,0,0,,220311,620311,ff,DA_SD_TA1.MCV_object_category at AEB stop T2 ,735,312,318,1,0,0,%,220311,620311,ff,DA_SD_TA1.MCV_confidence at AEB start T1 ,735,319,325,1,0,0,%,220311,620311,ff,DA_SD_TA1.MCV_confidence at AEB stop T2 ,735,326,335,.01,0,2,s,220311,620311,ff,DA_SD_TA1.MCV_TTC at AEB start T1 ,735,336,345,.01,0,2,s,220311,620311,ff,DA_SD_TA1.MCV_TTC at AEB stop T2 ,735,346,354,.05,25600,2,m,220311,620311,ff,DA_SD_TA1.MCV_cor_lateral_position at AEB start T1 ,735,355,363,.05,25600,2,m,220311,620311,ff,DA_SD_TA1.MCV_cor_lateral_position at AEB stop T2 ,735,364,372,.1,260,1,mps,220311,620311,ff,DA_SD_TA1.MCV_lat_speed at AEB start T1 ,735,373,381,.1,260,1,mps,220311,620311,ff,DA_SD_TA1.MCV_lat_speed at AEB start T12 ,735,382,391,1,0,0,,220311,620311,ff,DA_SD_TA1.padding ,735,24,38,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelerionRequest AEB start T1  ,735,39,53,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelerionRequest AEB start T1 + 200ms  ,735,54,68,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelarionRequest AEB start T1 + 400ms  ,735,69,83,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelerionRequest AEB start T1 + 600ms  ,735,84,98,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelerionRequest AEB start T1 + 800ms  ,735,99,113,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelerionRequest AEB start T1 + 1s          ,735,114,128,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelerionRequest AEB start T1 + 1.2s      ,735,129,143,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelerionRequest AEB start T1 + 1.4s      ,735,144,158,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelerionRequest AEB start T1 + 1.6s      ,735,159,173,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelerionRequest AEB start T1 + 1.8s      ,735,174,188,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeDecelerionRequest AEB stop T2   ,735,189,191,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB start T1      ,735,192,194,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB start T1 + 200ms     ,735,195,197,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB start T1 + 400ms     ,735,198,200,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB start T1 + 600ms     ,735,201,203,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB start T1 + 800ms     ,735,204,206,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB start T1 + 1s            ,735,207,209,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB start T1 + 1.2s          ,735,210,212,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB start T1 + 1.4s          ,735,213,215,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB start T1 + 1.6s          ,735,216,218,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB start T1 + 1.8s          ,735,219,221,1,0,0,,220312,620312,ff,DA_SDV1.AEB_BrakeWheelTorqueOrder AEB stop T2      ,735,222,231,1,0,0,,220312,620312,ff,DA_SDV1.padding ,735,31,31,1,0,0,-,220313,620313,ff,DA_flag_SD_Ev1.Flag Recording terminated ,735,24,51,.01,0,2,km,220314,620314,ff,DAd_SDEv2.mileage at AEB start T1 ,735,52,79,.01,0,2,,220314,620314,ff,DAd_SDEv2.mileage at AEB stop T2 ,735,80,95,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB start T1 ,735,96,111,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB start T1 + 200ms ,735,112,127,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB start T1 + 400ms ,735,128,143,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB start T1 + 600ms ,735,144,159,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB start T1 + 800ms ,735,160,175,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB start T1 + 1s ,735,176,191,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB start T1 + 1.2s ,735,192,207,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB start T1 + 1.4s ,735,208,223,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB start T1 + 1.6s ,735,224,239,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB start T1 + 1.8s ,735,240,255,.01,0,2,km/h,220314,620314,ff,DAd_SDEv2.Vehicle speed value at AEB stop T2 ,735,256,266,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB start T1 ,735,267,277,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB start T1 + 200ms ,735,278,288,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB start T1 + 400ms ,735,289,299,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB start T1 + 600ms ,735,300,310,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB start T1 + 800ms ,735,311,321,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB start T1 + 1s ,735,322,332,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB start T1 + 1.2s ,735,333,343,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB start T1 + 1.4s ,735,344,354,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB start T1 + 1.6s ,735,355,365,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB start T1 + 1.8s ,735,366,376,.1,1000,1,°/s,220314,620314,ff,DAd_SDEv2.YawRate_Raw value at AEB stop T2 ,735,377,386,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB start T1 ,735,387,396,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB start T1 + 200ms ,735,397,406,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB start T1 + 400ms ,735,407,416,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB start T1 + 600ms ,735,417,426,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB start T1 + 800ms ,735,427,436,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB start T1 + 1s ,735,437,446,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB start T1 + 1.2s ,735,447,456,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB start T1 + 1.4s ,735,457,466,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB start T1 + 1.6s ,735,467,476,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB start T1 + 1.8s ,735,477,486,.125,0,1,%,220314,620314,ff,DAd_SDEv2.RawSensor value at AEB stop T2 ,735,487,494,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB start T1 ,735,495,502,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB start T1 + 200ms ,735,503,510,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB start T1 + 400ms ,735,511,518,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB start T1 + 600ms ,735,519,526,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB start T1 + 800ms ,735,527,534,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB start T1 + 1s ,735,535,542,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB start T1 + 1.2s ,735,543,550,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB start T1 + 1.4s ,735,551,558,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB start T1 + 1.6s ,735,559,566,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB start T1 + 1.8s ,735,567,574,.5,0,1,bar,220314,620314,ff,DAd_SDEv2.DriverBrakingPressure value at AEB stop T2 ,735,575,589,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB start T1 ,735,590,604,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB start T1 + 200ms ,735,605,619,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB start T1 + 400ms ,735,620,634,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB start T1 + 600ms ,735,635,649,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB start T1 + 800ms ,735,650,664,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB start T1 + 1s ,735,665,679,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB start T1 + 1.2s ,735,680,694,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB start T1 + 1.4s ,735,695,709,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB start T1 + 1.6s ,735,710,724,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB start T1 + 1.8s ,735,725,739,.1,10800,1,°,220314,620314,ff,DAd_SDEv2.SteeringWheelAngle value at AEB stop T2 ,735,740,741,1,0,0,,220314,620314,ff,DAd_SDEv2.RearGearEngaged at AEB start T1 ,735,742,743,1,0,0,,220314,620314,ff,DAd_SDEv2.RearGearEngaged at AEB stop T2 ,735,744,745,1,0,0,,220314,620314,ff,DAd_SDEv2.NeutralContact at AEB start T1 ,735,746,747,1,0,0,,220314,620314,ff,DAd_SDEv2.NeutralContact at AEB stop T2 ,735,748,748,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_SharplyTurnedWheel at T1 ,735,749,749,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_SharplyTurnedWheel at T2 ,735,750,750,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_MarkedGasPedalPush at T1 ,735,751,751,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_MarkedGasPedalPush at T2 ,735,752,752,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_StrongGasPedalPush at T1 ,735,753,753,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_StrongGasPedalPush at T2 ,735,754,754,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_CrashAndStopDetected at T1 ,735,755,755,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_CrashAndStopDetected at T2 ,735,756,756,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_AebsStateEnable at T1 ,735,757,757,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_AebsStateEnable at T2 ,735,758,758,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_AebsCityStateEnable at T1 ,735,759,759,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_AebsCityStateEnable at T2 ,735,760,760,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_AebsPedStateEnable at T1 ,735,761,761,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_AebsPedStateEnable at T2 ,735,762,762,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_AebsCycStateEnable at T1 ,735,763,763,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_AebsCycStateEnable at T2 ,735,764,764,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_Aebs1 at T1 ,735,765,765,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_Aebs1 at T2 ,735,766,766,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_Aebs2 at T1 ,735,767,767,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_Aebs2 at T2 ,735,768,768,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_AebsCity at T1 ,735,769,769,1,0,0,,220314,620314,ff,DAd_SDEv2.V_flag_x_AebsCity at T2 ,735,770,770,1,0,0,,220314,620314,ff,DAd_SDEv2.V_Flag_x_AEBSped at T1 ,735,771,771,1,0,0,,220314,620314,ff,DAd_SDEv2.V_Flag_x_AEBSped at T2 ,735,772,772,1,0,0,,220314,620314,ff,DAd_SDEv2.V_Flag_x_AEBScyc at T1 ,735,773,773,1,0,0,,220314,620314,ff,DAd_SDEv2.V_Flag_x_AEBScyc at T2 ,735,774,777,1,0,0,,220314,620314,ff,DAd_SDEv2.GearLeverPosition at AEB start T1 ,735,778,781,1,0,0,,220314,620314,ff,DAd_SDEv2.GearLeverPosition at AEB stop T2 ,735,782,793,1,0,0,,220314,620314,ff,DAd_SDEv2.TransversalAcceleration at AEB start T1 ,735,794,805,1,0,0,,220314,620314,ff,DAd_SDEv2.TransversalAcceleration at AEB start T2 ,735,806,807,1,0,0,,220314,620314,ff,DAd_SDEv2.ClutchSwitchMinimumTravel at AEB start T1 ,735,808,809,1,0,0,,220314,620314,ff,DAd_SDEv2.ClutchSwitchMinimumTravel at AEB stop T2 ,735,810,811,1,0,0,,220314,620314,ff,DAd_SDEv2.AEBS_FailureStatus at AEB start T1 ,735,812,813,1,0,0,,220314,620314,ff,DAd_SDEv2.AEBS_FailureStatus at AEB stop T2 ,735,814,819,1,0,0,,220314,620314,ff,DAd_SDEv2.AirbagCrashOrder at AEB start T1 ,735,820,825,1,0,0,,220314,620314,ff,DAd_SDEv2.AirbagCrashOrder at AEB stop T2 ,735,826,828,1,0,0,,220314,620314,ff,DAd_SDEv2.BrakeInfoStatus at AEB start T1 ,735,829,831,1,0,0,,220314,620314,ff,DAd_SDEv2.BrakeInfoStatus at AEB stop T2 ,735,832,841,1,0,0,,220314,620314,ff,DAd_SDEv2.padding ,735,24,35,.05,0,2,m,220315,620315,ff,DA_SD_TA2.MCP_Xped_rel at AEB start T1 ,735,36,47,.05,0,2,m,220315,620315,ff,DA_SD_TA2.MCP_Xped_rel at AEB stop T2 ,735,48,55,.1,127,1,mps,220315,620315,ff,DA_SD_TA2.MCP_Vxped_rel at AEB start T1 ,735,56,63,.1,127,1,mps,220315,620315,ff,DA_SD_TA2.MCP_Vxped_rel at AEB stop T2 ,735,64,70,1,0,0,%,220315,620315,ff,DA_SD_TA2.MCP_Safety_Confidence_Level at AEB start T1 ,735,71,77,1,0,0,%,220315,620315,ff,DA_SD_TA2.MCP_Safety_Confidence_Level at AEB stop T2 ,735,78,87,.01,0,2,s,220315,620315,ff,DA_SD_TA2.MCP_TTC at AEB start T1 ,735,88,97,.01,0,2,s,220315,620315,ff,DA_SD_TA2.MCP_TTC at AEB stop T2 ,735,98,111,.01,0,2,,220315,620315,ff,DA_SD_TA2.MCC_Ycyc_rel at AEB start T1 ,735,112,125,.01,0,2,,220315,620315,ff,DA_SD_TA2.MCC_Ycyc_rel at AEB stop T2 ,735,126,136,.1,0,1,mps,220315,620315,ff,DA_SD_TA2.MCP_Vyped_rel at AEB start T1 ,735,137,147,.1,0,1,mps,220315,620315,ff,DA_SD_TA2.MCP_Vyped_rel at AEB stop T2 ,735,148,158,.05,0,2,m,220315,620315,ff,DA_SD_TA2.MCC_Xcyc_rel at AEB start T1 ,735,159,169,.05,0,2,m,220315,620315,ff,DA_SD_TA2.MCC_Xcyc_rel at AEB stop T2 ,735,170,180,.1,0,1,mps,220315,620315,ff,DA_SD_TA2.MCC_Vxcyc_rel at AEB start T1 ,735,181,191,.1,0,1,mps,220315,620315,ff,DA_SD_TA2.MCC_Vxcyc_rel at AEB stop T2 ,735,192,198,1,0,0,%,220315,620315,ff,DA_SD_TA2.MCC_Safety_Confidence_Level at AEB start T1 ,735,199,205,1,0,0,%,220315,620315,ff,DA_SD_TA2.MCC_Safety_Confidence_Level at AEB stop T2 ,735,206,215,.01,0,2,s,220315,620315,ff,DA_SD_TA2.MCC_TTC at AEB start T1 ,735,216,225,.01,0,2,s,220315,620315,ff,DA_SD_TA2.MCC_TTC at AEB stop T2 ,735,226,236,.1,0,1,mps,220315,620315,ff,DA_SD_TA2.MCC_Vycyc_rel at AEB start T1 ,735,237,247,.1,0,1,mps,220315,620315,ff,DA_SD_TA2.MCC_Vycyc_rel at AEB stop T2 ,735,248,248,1,0,0,,220315,620315,ff,DA_SD_TA2.V_flag_x_WarningPedestrian at AEB start T1 ,735,249,249,1,0,0,,220315,620315,ff,DA_SD_TA2.V_flag_x_WarningPedestrian at AEB stop T2 ,735,250,250,1,0,0,,220315,620315,ff,DA_SD_TA2.V_flag_x_WarningCyclist at AEB start T1 ,735,251,251,1,0,0,,220315,620315,ff,DA_SD_TA2.V_flag_x_WarningCyclist at AEB stop T2 ,735,252,265,.01,5120,2,mps,220315,620315,ff,DA_SD_TA2.MCV_rel_speed at AEB start T1 ,735,266,279,.01,5120,2,mps,220315,620315,ff,DA_SD_TA2.MCV_rel_speed at AEB stop T2 ,735,280,293,.02,0,2,m,220315,620315,ff,DA_SD_TA2.MCV_distance at AEB start T1 ,735,294,307,.02,0,2,m,220315,620315,ff,DA_SD_TA2.MCV_distance at AEB stop T2 ,735,308,309,1,0,0,,220315,620315,ff,DA_SD_TA2.MCV_object_category at AEB start T1 ,735,310,311,1,0,0,,220315,620315,ff,DA_SD_TA2.MCV_object_category at AEB stop T2 ,735,312,318,1,0,0,%,220315,620315,ff,DA_SD_TA2.MCV_confidence at AEB start T1 ,735,319,325,1,0,0,%,220315,620315,ff,DA_SD_TA2.MCV_confidence at AEB stop T2 ,735,326,335,.01,0,2,s,220315,620315,ff,DA_SD_TA2.MCV_TTC at AEB start T1 ,735,336,345,.01,0,2,s,220315,620315,ff,DA_SD_TA2.MCV_TTC at AEB stop T2 ,735,346,354,.05,25600,2,m,220315,620315,ff,DA_SD_TA2.MCV_cor_lateral_position at AEB start T1 ,735,355,363,.05,25600,2,m,220315,620315,ff,DA_SD_TA2.MCV_cor_lateral_position at AEB stop T2 ,735,364,372,.1,260,1,mps,220315,620315,ff,DA_SD_TA2.MCV_lat_speed at AEB start T1 ,735,373,381,.1,260,1,mps,220315,620315,ff,DA_SD_TA2.MCV_lat_speed at AEB start T12 ,735,24,38,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelerationRequest AEB start T1  ,735,39,53,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelerationRequest AEB start T1 + 200ms  ,735,54,68,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelarationRequest AEB start T1 + 400ms  ,735,69,83,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelerationRequest AEB start T1 + 600ms  ,735,84,98,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelerationRequest AEB start T1 + 800ms  ,735,99,113,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelerationRequest AEB start T1 + 1s          ,735,114,128,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelerationRequest AEB start T1 + 1.2s      ,735,129,143,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelerationRequest AEB start T1 + 1.4s      ,735,144,158,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelerationRequest AEB start T1 + 1.6s      ,735,159,173,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelerationRequest AEB start T1 + 1.8s      ,735,174,188,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeDecelerationRequest AEB stop T2   ,735,189,191,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB start T1      ,735,192,194,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB start T1 + 200ms     ,735,195,197,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB start T1 + 400ms     ,735,198,200,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB start T1 + 600ms     ,735,201,203,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB start T1 + 800ms     ,735,204,206,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB start T1 + 1s            ,735,207,209,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB start T1 + 1.2s          ,735,210,212,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB start T1 + 1.4s          ,735,213,215,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB start T1 + 1.6s          ,735,216,218,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB start T1 + 1.8s          ,735,219,221,1,0,0,,220316,620316,ff,DA_SD_V2.AEB_BrakeWheelTorqueOrder AEB stop T2      ,735,31,31,1,0,0,-,220317,620317,ff,DA_flag_SD_E2.Flag Recording terminated ,735,24,31,.1,0,1,,221006,621006,ff,Confidence_AEB_configuration.Diag_BrakeConfTime ,735,32,39,.1,0,1,,221006,621006,ff,Confidence_AEB_configuration.Diag_WarnConfTime ,735,40,40,1,0,0,,221006,621006,ff,Confidence_AEB_configuration.V_flag_x_Diag_Disable_Confidence ,735,41,46,.05,0,2,s,221006,621006,ff,Confidence_AEB_configuration.P_tng_s_max_time_NoConfBrake ,735,24,31,.01,0,2,,221008,621008,ff,Confidence_interruption_Delay ,735,24,31,.1,0,1,mps2,221009,621009,ff,P_tng_x_Conf_Limited_Decel ,735,24,24,1,0,0,,221010,621010,ff,Safety_monitoring.IC_CAN_CRC_enable ,735,25,25,1,0,0,,221010,621010,ff,Safety_monitoring.IC_CAN_Clock_enable ,735,26,26,1,0,0,-,221010,621010,ff,Safety_monitoring.Private_CAN_CRC_enable ,735,27,27,1,0,0,-,221010,621010,ff,Safety_monitoring.Private_CAN_Clock_enable ,735,24,31,1,0,0,,221011,621011,ff,CANMonitoringCamera_Status_enable,0:0 = nominal behavior;1:1 = fixed to 0 ,735,24,31,1,0,0,,221012,621012,ff,DW_Config,0:0- DW disable;1:1- DW enable ,735,24,31,1,0,0,,221013,621013,ff,ACC_Config,0:0- ACC not present;1:1- ACC present ,735,24,24,1,0,0,,221014,621014,ff,AEBS_Config.AEB_Pedestrian_Config,0:0- Deactivated;1:1- Activated ,735,25,25,1,0,0,,221014,621014,ff,AEBS_Config.AEB_Cyclist_Config,0:0- Deactivated;1:1- Activated ,735,26,26,1,0,0,,221014,621014,ff,AEBS_Config.AEB_City_Config,0:0- Deactivated;1:1- Activated ,735,27,27,1,0,0,,221014,621014,ff,AEBS_Config.AEB_IU_Config,0:0- Deactivated;1:1- Activated ,735,28,28,1,0,0,,221014,621014,ff,AEBS_Config.AEB_City_FixTgt_Config,0:0- Deactivated;1:1- Activated ,735,29,29,1,0,0,,221014,621014,ff,AEBS_Config.AEB_IU_FixTgt_Config,0:0- Deactivated;1:1- Activated ,735,30,30,1,0,0,,221014,621014,ff,AEBS_Config.FCW_only_Config,0:0- Deactivated;1:1- Activated ,735,24,24,1,0,0,,221015,621015,ff,Development frame.Target injection AEB,0:0- Deactivated;1:1- Activated ,735,25,25,1,0,0,,221015,621015,ff,Development frame.Target injection ACC,0:0- Deactivated;1:1- Activated ,735,26,26,1,0,0,,221015,621015,ff,Development frame.AEB_Validation_DEV_Frame,0:0- Deactivated;1:1- Activated ,735,27,27,1,0,0,,221015,621015,ff,Development frame.DW_Validation_DEV_Frame,0:0- Deactivated;1:1- Activated ,735,24,31,1,0,0,,221016,621016,ff,XCP_on_CAN_activation,0:0- Deactivated;1:1- Activated ,735,30,39,.01,-1000,2,-,221017,621017,ff,Param_veh_2.Steer_gear_ratio ,735,41,47,.005,-280,3,m,221017,621017,ff,Param_veh_2.TRACK_WIDTH_FRONT ,735,49,55,.005,-280,3,m,221017,621017,ff,Param_veh_2.TRACK_WIDTH_REAR ,735,63,63,2,1,0,-,221017,621017,ff,Param_veh_2.RPLB ,735,65,71,.01,64,2,m,221017,621017,ff,Param_veh_2.Ofpr ,735,72,79,.005,-460,3,m,221017,621017,ff,Param_veh_2.Wheelbase ,735,81,87,.02,-40,2,,221017,621017,ff,Param_veh_2.P_sys_m_VehicleWidth ,735,88,103,.004,0,3,m/s,221017,621017,ff,Param_veh_2.Typical velocity ,735,109,119,1,2047,0,°,221017,621017,ff,Param_veh_2.MinSteeringWheelAngle ,735,125,135,1,0,0,°,221017,621017,ff,Param_veh_2.MaxSteeringWheelAngle ,735,141,142,1,-1,0,-,221017,621017,ff,Param_veh_2.DrivingConcept ,735,143,143,1,0,0,,221017,621017,ff,Param_veh_2.P_sys_x_GearboxType,0:0- Manual gearbox;1:1- Automatic gearbox ,735,144,151,.01,-80,2,,221017,621017,ff,Param_veh_2.P_sys_m_WheelPerimeter ,735,24,39,.008,0,3,m,221019,621019,ff,Param_Sensor.ElevationMountingPosRadarSensor ,735,40,55,.008,32000000,3,m,221019,621019,ff,Param_Sensor.LongiMountingPosRadarSensor ,735,24,31,1,0,0,,22101A,62101A,ff,V_flag_x_Diag_Disable_Dcontrol ,735,24,31,1,0,0,,22101B,62101B,ff,Plant_AEB_deactivation,0:AEB Activated;1:AEB Deactivated ,735,26,31,1,0,0,-,22204B,62204B,ff,Vehicle_Type.Vehicle_Type ,735,32,37,1,0,0,-,22204B,62204B,ff,Vehicle_Type.Variant_type ,735,24,31,1,0,0,,22204E,62204E,ff,Engine_type,0:0- ICE;1:1- EV;2:2- HEV ,735,24,31,1,0,0,,222050,622050,ff,MPU_HMI,0:0- Cluster;1:1- Multimedia (A-IVI) ,735,24,31,1,0,0,,222051,622051,ff,4WS_presence,0:0- Not present;1:1- Present ,735,24,55,1,0,0,-,222053,622053,1ff,AEBCalibrationReference ,735,25,36,.001,-1000,3,m,222200,622200,ff,Param_veh_1.Dyn_wheel_roll ,735,37,49,.001,0,3,m,222200,622200,ff,Param_veh_1.Vehicle_width ,735,50,61,.001,-1000,3,m,222200,622200,ff,Param_veh_1.Vehicle Heigth ,735,62,71,.01,0,2,m,222200,622200,ff,Param_veh_1.Wheel Base ,735,72,81,.01,500,2,m,222200,622200,ff,Param_veh_1.Longitudinal_Displacement ,735,82,91,.005,-200,3,m,222200,622200,ff,Param_veh_1.Wheel_track_front ,735,92,101,.005,-200,3,m,222200,622200,ff,Param_veh_1.Wheel_track_rear ,735,102,103,1,0,0,-,222200,622200,ff,Param_veh_1.Powered_axle ,735,104,113,.00001,-174,3,rad s^2/m,222200,622200,ff,Param_veh_1.Self_steering_gradient ,735,114,137,.005,-200000,3,kg,222200,622200,ff,Param_veh_1.Vehicle_weight ,735,138,146,.01,-20,2,m,222200,622200,ff,Param_veh_1.Center_of_gravity_hgt ,735,147,153,.01,-10,2,-,222200,622200,ff,Param_veh_1.AxisLoadDistr ,735,154,162,.1,-10,1,-,222200,622200,ff,Param_veh_1.Sterring Ratio ,735,163,163,1,0,0,-,222200,622200,ff,Param_veh_1.Sensor_orientation ,735,164,173,.01,500,2,m,222200,622200,ff,Param_veh_1.Lateral_displacement ,735,174,182,.01,0,2,m,222200,622200,ff,Param_veh_1.Vertical_displacement ,735,183,190,1,-1,0,-,222200,622200,ff,Param_veh_1.WhlTcksPerRev ,735,191,199,.01,0,2,m,222200,622200,ff,Param_veh_1.Overhang ,735,200,212,.00125,2512,3,rad,222200,622200,ff,Param_veh_1.PitchAngle ,735,213,225,.00125,2512,3,rad,222200,622200,ff,Param_veh_1.RollAngle ,735,226,238,.00125,2512,3,rad,222200,622200,ff,Param_veh_1.YawAngle ,735,239,247,.01,0,2,-,222200,622200,ff,Param_veh_1.CoverDamping ,735,31,31,1,0,0,-,222201,622201,ff,Dev_blindness ,735,24,51,1,0,0,,223000,623000,ff,Failures_status_3.Odometer of first occurence ,735,52,52,1,0,0,-,223000,623000,ff,Failures_status_3.SensorTemperature ,735,53,53,1,0,0,-,223000,623000,ff,Failures_status_3.InternalDisturbance ,735,54,54,1,0,0,-,223000,623000,ff,Failures_status_3.EcuTemperature ,735,55,55,1,0,0,-,223000,623000,ff,Failures_status_3.NotAligned ,735,56,83,.01,0,2,km,223000,623000,ff,Failures_status_3.Odometer of last occurrence ,735,84,84,1,0,0,-,223000,623000,ff,Failures_status_3.PowerVoltageDisturbance ,735,85,85,1,0,0,-,223000,623000,ff,Failures_status_3.SoftwareConfiguration ,735,88,88,1,0,0,,223000,623000,ff,Failures_status_3.Supply_Voltage ,735,89,89,1,0,0,-,223000,623000,ff,Failures_status_3.Incomplete_Configuration ,735,90,90,1,0,0,-,223000,623000,ff,Failures_status_3.RenaultConfigFinished ,735,91,91,1,0,0,-,223000,623000,ff,Failures_status_3.Camera blindness ,735,92,92,1,0,0,-,223000,623000,ff,Failures_status_3.Camera misalignment ,735,24,26,1,0,0,,223001,623001,ff,Radar_Mode,0:0-Running mode;1:1- Blindness;2:2- Degraded mode 1;3:3- Degraded mode 2;4:4- Degraded mode 3;5:5- Degraded mode 4;6:6- Initialization ,735,24,31,1,0,0,,226000,626000,ff,ABSinRegulation ,735,24,31,1,0,0,,226001,626001,ff,AEB_BrakingPerformanceStatus ,735,24,31,1,0,0,,226002,626002,ff,AEB_FCW_ActivationRequest_Data ,735,24,31,1,0,0,,226003,626003,ff,AEB_FCW_ActivationRequest2_Data ,735,24,31,1,0,0,,226004,626004,ff,ASRinRegulation_data ,735,24,31,1,0,0,,226005,626005,ff,AYCinRegulation_data ,735,24,39,1,0,0,,226006,626006,ff,AirbagCrashOrder_v3 ,735,24,24,1,0,0,,226007,626007,ff,Autofix.HorizonOutOfCalib ,735,25,25,1,0,0,,226007,626007,ff,Autofix.YawOutOfCalib ,735,26,26,1,0,0,,226007,626007,ff,Autofix.BasicPitchAxisMisalignment ,735,27,27,1,0,0,,226007,626007,ff,Autofix.BasicYawAxisMisalignment ,735,28,28,1,0,0,,226007,626007,ff,Autofix.BlurImage ,735,24,31,1,0,0,,226008,626008,ff,BrakeInfoStatus ,735,24,26,1,0,0,-,226009,626009,ff,CAN Inputs status.ABSinRegulation_Status ,735,27,29,1,0,0,-,226009,626009,ff,CAN Inputs status.AEB_BrakingPerformanceStatus_Status ,735,30,32,1,0,0,-,226009,626009,ff,CAN Inputs status.AEB_FCW_ActivationRequest_Status ,735,33,35,1,0,0,-,226009,626009,ff,CAN Inputs status.AEB_FCW_ActivationRequest2_Status ,735,36,38,1,0,0,-,226009,626009,ff,CAN Inputs status.AirbagCrashOrder_v3_Status ,735,39,41,1,0,0,-,226009,626009,ff,CAN Inputs status.ASRinRegulation_Status ,735,42,44,1,0,0,-,226009,626009,ff,CAN Inputs status.AYCinRegulation_Status ,735,45,47,1,0,0,-,226009,626009,ff,CAN Inputs status.BrakeInfoStatus_Status ,735,48,50,1,0,0,-,226009,626009,ff,CAN Inputs status.ClutchSwitchMinimumTravel_Status ,735,51,53,1,0,0,-,226009,626009,ff,CAN Inputs status.CruiseControlStatus_Status ,735,54,56,1,0,0,-,226009,626009,ff,CAN Inputs status.DistanceTotalizer_Status ,735,57,59,1,0,0,-,226009,626009,ff,CAN Inputs status.KickDownActivated_Status ,735,60,62,1,0,0,-,226009,626009,ff,CAN Inputs status.BrakingPressure_Status ,735,63,65,1,0,0,-,226009,626009,ff,CAN Inputs status.MinPowerTrainWheelTorque_Status ,735,66,68,1,0,0,-,226009,626009,ff,CAN Inputs status.FlashingIndicaCommandPos_Status ,735,69,71,1,0,0,-,226009,626009,ff,CAN Inputs status.GADE_Status ,735,72,74,1,0,0,-,226009,626009,ff,CAN Inputs status.GearLeverPosition_V2_Status ,735,75,77,1,0,0,-,226009,626009,ff,CAN Inputs status.Maintenance_Mode_Status_Status ,735,78,80,1,0,0,-,226009,626009,ff,CAN Inputs status.MSRinRegulation_Status ,735,81,83,1,0,0,-,226009,626009,ff,CAN Inputs status.NeutralContact_Status ,735,84,86,1,0,0,-,226009,626009,ff,CAN Inputs status.ParkingBrakeStatus_Status ,735,87,89,1,0,0,-,226009,626009,ff,CAN Inputs status.RawSensor_Status ,735,90,92,1,0,0,-,226009,626009,ff,CAN Inputs status.RearGearEngaged_Status ,735,93,95,1,0,0,-,226009,626009,ff,CAN Inputs status.RearWheelAnglePosition_Status ,735,96,98,1,0,0,-,226009,626009,ff,CAN Inputs status.SteeringWheelAngleCorrected_Status ,735,99,101,1,0,0,-,226009,626009,ff,CAN Inputs status.TransversalAccelCor_Status ,735,102,104,1,0,0,-,226009,626009,ff,CAN Inputs status.VDC_Deactivated_Status ,735,105,107,1,0,0,-,226009,626009,ff,CAN Inputs status.VehicleSpeed_Status ,735,108,110,1,0,0,-,226009,626009,ff,CAN Inputs status.WheelSpeedFL_Status ,735,111,113,1,0,0,-,226009,626009,ff,CAN Inputs status.WheelSpeedFR_Status ,735,114,116,1,0,0,-,226009,626009,ff,CAN Inputs status.WheelSpeedRL_Status ,735,117,119,1,0,0,-,226009,626009,ff,CAN Inputs status.WheelSpeedRR_Status ,735,120,122,1,0,0,-,226009,626009,ff,CAN Inputs status.YawRateRaw_Status ,735,123,125,1,0,0,-,226009,626009,ff,CAN Inputs status.BrakePedalPressedByDriver_Status ,735,126,128,1,0,0,-,226009,626009,ff,CAN Inputs status.PowertrainSetPoint_Status ,735,129,131,1,0,0,-,226009,626009,ff,CAN Inputs status.LongitudinalAccelCor_Status ,735,132,134,1,0,0,-,226009,626009,ff,CAN Inputs status.YawRateCorrected_Status ,735,135,137,1,0,0,-,226009,626009,ff,CAN Inputs status.WheelTopFL_Status ,735,138,140,1,0,0,-,226009,626009,ff,CAN Inputs status.WheelTopFR_Status ,735,141,143,1,0,0,-,226009,626009,ff,CAN Inputs status.WheelTopRL_Status ,735,144,146,1,0,0,-,226009,626009,ff,CAN Inputs status.WheelTopRR_Status ,735,147,149,1,0,0,-,226009,626009,ff,CAN Inputs status.WheelDirectionRL_Status ,735,150,152,1,0,0,-,226009,626009,ff,CAN Inputs status.WheelDirectionRR_Status ,735,153,155,1,0,0,-,226009,626009,ff,CAN Inputs status.ADAS_CameraRecordingStatus_Status ,735,156,158,1,0,0,-,226009,626009,ff,CAN Inputs status.ADAS_EDRflashingStatus_Status ,735,24,31,1,0,0,,22600A,62600A,ff,CalibrationMisalignment ,735,24,24,1,0,0,,22600B,62600B,ff,Camera.CalibrationStatus ,735,25,25,1,0,0,,22600B,62600B,ff,Camera.HighTemperatureStatus ,735,26,26,1,0,0,,22600B,62600B,ff,Camera.Initialised ,735,24,31,1,0,0,,22600C,62600C,ff,ClutchSwitchMinimumTravel ,735,24,31,1,0,0,,22600D,62600D,ff,ConstructionArea ,735,24,55,.01,0,2,,22600E,62600E,1ff,DistanceTotalizer ,735,24,39,.1,2047,1,,22600F,62600F,ff,YawRateCorrected_Data ,735,24,55,1,0,0,,226010,626010,1ff,BrakingPressure_Data ,735,24,31,1,0,0,,226011,626011,ff,FS_BlurredImageLevel ,735,24,31,1,0,0,,226012,626012,ff,FS_FoggySpotsLevel ,735,24,31,1,0,0,,226013,626013,ff,FS_FrozenWindshieldLevel ,735,24,31,1,0,0,,226014,626014,ff,FS_FullBlockageLevel ,735,24,31,1,0,0,,226015,626015,ff,FS_LowSunLevel ,735,24,31,1,0,0,,226016,626016,ff,FS_PartialBlockageLevel ,735,24,31,1,0,0,,226017,626017,ff,FS_RoadSprayLevel ,735,24,31,1,0,0,,226018,626018,ff,FS_SelfGlareLevel ,735,24,31,1,0,0,,226019,626019,ff,FS_SmearedSpotsLevel ,735,24,31,1,0,0,,22601A,62601A,ff,FS_SunRayLevel ,735,24,31,1,0,0,,22601B,62601B,ff,FlashingIndicaCommandPos_Data ,735,24,26,1,0,0,,22601C,62601C,ff,AEB_StatusDisplay ,735,24,24,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.Cam_DayTimeIndicator ,735,25,25,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.BlurImage ,735,26,26,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.SmearedSpots ,735,27,27,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.PartialBlockage ,735,28,28,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.SplashesRoadSpray ,735,29,29,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.SmearImageSelfGlare ,735,30,30,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.SunRay ,735,31,31,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.SpotHalosFrozenWindshield ,735,32,32,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.FoggyLights ,735,33,33,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.FullBlockage ,735,34,34,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.ImspiredVDnight ,735,35,35,1,0,0,,22601D,62601D,ff,FrCam_environment_detection.LowSun ,735,24,31,1,0,0,,22601E,62601E,ff,GADE_Data ,735,24,31,1,0,0,,22601F,62601F,ff,GearLeverPosition_V2_Data ,735,24,31,1,0,0,,226020,626020,ff,CameraInternalFailure ,735,24,47,.01,3000,2,,226022,626022,ff,MCC.MCC_Accel_Long_rel ,735,40,47,1,0,0,,226022,626022,ff,MCC.Confidence_Level ,735,48,55,1,0,0,,226022,626022,ff,MCC.CycAreaDetected ,735,56,63,1,0,0,,226022,626022,ff,MCC.CycLaneDetected ,735,64,71,1,0,0,,226022,626022,ff,MCC.CycPathDetected ,735,72,103,.01,32768,2,,226022,626022,1ff,MCC.Angle ,735,104,111,1,0,0,,226022,626022,ff,MCC.Detection_Type ,735,112,119,1,0,0,,226022,626022,ff,MCC.DistToCycArea ,735,120,127,1,0,0,,226022,626022,ff,MCC.DistToCycLane ,735,128,135,1,0,0,,226022,626022,ff,MCC.DistToCycPath ,735,136,143,1,0,0,,226022,626022,ff,MCC.Dyn_Prop ,735,144,175,1,0,0,,226022,626022,1ff,MCC.Life_Time ,735,176,183,1,0,0,,226022,626022,ff,MCC.New_Target ,735,184,191,1,0,0,,226022,626022,ff,MCC.Object_Category ,735,192,199,1,0,0,,226022,626022,ff,MCC.On_Pavement ,735,200,231,1,0,0,,226022,626022,1ff,MCC.TTC ,735,232,263,1,0,0,,226022,626022,1ff,MCC.Vxcyc_rel ,735,264,295,1,0,0,,226022,626022,1ff,MCC.Vycyc_rel ,735,296,311,.01,3000,2,,226022,626022,1ff,MCC.Accel_Lat_rel ,735,312,319,1,0,0,,226022,626022,ff,MCC.Width ,735,320,351,1,0,0,,226022,626022,1ff,MCC.Xcyc_rel ,735,352,383,1,0,0,,226022,626022,1ff,MCC.Ycyc_rel ,735,384,391,1,0,0,,226022,626022,ff,MCC.Yimpact ,735,392,407,.1,300,1,,226022,626022,ff,MCC.Orientation ,735,24,31,1,0,0,,226023,626023,ff,MCP.Braking_Confidence ,735,32,39,1,0,0,,226023,626023,ff,MCP.Braking_Flag ,735,40,47,1,0,0,,226023,626023,ff,MCP.Braking_Value ,735,48,55,1,0,0,,226023,626023,ff,MCP.Confidence_Level ,735,56,63,1,0,0,,226023,626023,ff,MCP.CrossWalkDetected ,735,64,71,1,0,0,,226023,626023,ff,MCP.Detection_Type ,735,72,103,1,0,0,,226023,626023,1ff,MCP.DistToCrossWalk ,735,104,111,1,0,0,,226023,626023,ff,MCP.DistToPedArea ,735,112,119,1,0,0,,226023,626023,ff,MCP.Dyn_Prop ,735,120,151,1,0,0,,226023,626023,1ff,MCP.Life_Time ,735,152,159,1,0,0,,226023,626023,ff,MCP.New_Target ,735,160,167,1,0,0,,226023,626023,ff,MCP.Object_Category ,735,168,175,1,0,0,,226023,626023,ff,MCP.On_Pavement ,735,176,183,1,0,0,,226023,626023,ff,MCP.PedAreaDetected ,735,184,215,1,0,0,,226023,626023,1ff,MCP.Ped_Azimuth ,735,216,247,1,0,0,,226023,626023,1ff,MCP.TTC ,735,248,279,1,0,0,,226023,626023,1ff,MCP.Vxped_rel ,735,280,311,1,0,0,,226023,626023,1ff,MCP.Vyped_rel ,735,312,319,1,0,0,,226023,626023,ff,MCP.Warning_Confidence ,735,320,327,1,0,0,,226023,626023,ff,MCP.Warning_Flag ,735,328,359,1,0,0,,226023,626023,1ff,MCP.Width ,735,360,391,1,0,0,,226023,626023,1ff,MCP.Xped_rel ,735,392,423,1,0,0,,226023,626023,1ff,MCP.Yimpact ,735,424,455,1,0,0,,226023,626023,1ff,MCP.Yped_rel ,735,24,55,1,0,0,,226024,626024,1ff,MCV.Angle ,735,32,39,1,0,0,,226024,626024,ff,MCV.Azimuth ,735,40,47,1,0,0,,226024,626024,ff,MCV.Braking_Confidence ,735,48,55,1,0,0,,226024,626024,ff,MCV.Braking_Flag ,735,56,63,1,0,0,,226024,626024,ff,MCV.Braking_Value ,735,64,71,1,0,0,,226024,626024,ff,MCV.Confidence ,735,72,103,1,0,0,,226024,626024,1ff,MCV.Cor_Lateral_Position ,735,104,111,1,0,0,,226024,626024,ff,MCV.CrossRoadDetected ,735,112,119,1,0,0,,226024,626024,ff,MCV.CutInDetected ,735,120,127,1,0,0,,226024,626024,ff,MCV.Detection_Type ,735,128,159,1,0,0,,226024,626024,1ff,MCV.DistToCrossRoad ,735,160,191,1,0,0,,226024,626024,1ff,MCV.Distance ,735,192,199,1,0,0,,226024,626024,ff,MCV.Dyn_Prop ,735,200,231,1,0,0,,226024,626024,1ff,MCV.Lat_Speed ,735,232,239,1,0,0,,226024,626024,ff,MCV.LeftTurnDetected ,735,240,271,1,0,0,,226024,626024,1ff,MCV.LeftTurnVehPosition ,735,272,279,1,0,0,,226024,626024,ff,MCV.New_Target ,735,280,287,1,0,0,,226024,626024,ff,MCV.Object_Category ,735,288,295,1,0,0,,226024,626024,ff,MCV.On_Free_Space ,735,296,327,1,0,0,,226024,626024,1ff,MCV.Rel_Speed ,735,328,335,1,0,0,,226024,626024,ff,MCV.Stationary_Object ,735,336,367,1,0,0,,226024,626024,1ff,MCV.TTC ,735,368,399,1,0,0,,226024,626024,1ff,MCV.Warning_Confidence ,735,400,407,1,0,0,,226024,626024,ff,MCV.Warning_Flag ,735,408,439,1,0,0,,226024,626024,1ff,MCV.Width ,735,440,471,1,0,0,,226024,626024,1ff,MCV.Yimpact ,735,24,31,1,0,0,,226025,626025,ff,MSRinRegulation ,735,24,31,1,0,0,,226026,626026,ff,Maintenance_Mode_Status ,735,24,31,1,0,0,,226027,626027,ff,NeutralContact_data ,735,24,31,1,0,0,,226028,626028,ff,NightDetected ,735,24,31,1,0,0,,226029,626029,ff,OutOfFocusStatus ,735,24,31,1,0,0,,22602A,62602A,ff,ParkingBrakeStatus ,735,24,39,.001,1800,3,,22602B,62602B,1ff,LongitudinalAccelCor_Data ,735,24,31,1,-1,0,,22602C,62602C,ff,ADAS_CameraRecordingStatus_Data ,735,24,55,.125,0,1,,22602D,62602D,1ff,RawSensor_data ,735,24,31,1,0,0,,22602E,62602E,ff,RearGearEngaged_data ,735,24,55,.03,127,2,,22602F,62602F,1ff,RearWheelAnglePosition_data ,735,24,31,1,0,0,,226030,626030,ff,CruiseControlStatus_Data ,735,24,31,1,0,0,,226031,626031,ff,SeverePitchAxisMisalignment ,735,24,31,1,0,0,,226032,626032,ff,SevereYawAxisMisalignment ,735,24,31,1,0,0,,226033,626033,ff,AEB_FailureDisplay ,735,24,31,1,0,0,,226034,626034,ff,AEB_CancelReason ,735,24,31,1,0,0,,226035,626035,ff,AEB_RadarCancelReason ,735,24,31,1,0,0,,226036,626036,ff,AEB_CameraCancelReason ,735,24,55,.1,10800,1,,226037,626037,1ff,SteeringWheelAngleCorrected_Data ,735,24,31,1,0,0,,226038,626038,ff,KickDownActivated_Data ,735,24,55,.001,2000,3,,226039,626039,1ff,TransversalAccelCor_Data ,735,24,31,1,0,0,,22603A,62603A,ff,VDC_Deactivated ,735,24,39,1,20000,0,,22603B,62603B,ff,MinPowerTrainWheelTorque_Data ,735,24,31,1,0,0,,22603C,62603C,ff,BrakePedalPressedByDriver_Data ,735,24,39,.125,0,1,,22603D,62603D,1ff,PowertrainSetPoint_Data ,735,24,31,1,0,0,,22603E,62603E,ff,ADAS_EDRflashingStatus_Data ,735,24,55,.041667,0,2,,22603F,62603F,1ff,WheelSpeedFL ,735,24,55,.041667,0,2,,226040,626040,1ff,WheelSpeedFR ,735,24,55,.041667,0,2,,226041,626041,1ff,WheelSpeedRL ,735,24,55,.041667,0,2,,226042,626042,1ff,WheelSpeedRR ,735,24,55,.1,1000,1,,226043,626043,1ff,YawRateRaw_data ,735,24,31,1,0,0,,226044,626044,ff,AEBS_FailureStatus ,735,24,55,.05,-20,2,,226045,626045,1ff,AEB_BrakeTorqueGain ,735,24,31,1,0,0,,226046,626046,ff,AEB_BrakeTorqueGainOrder ,735,24,31,1,0,0,,226047,626047,ff,AEB_BrakeWheelTorqueOrder ,735,24,31,1,0,0,,226048,626048,ff,AEB_BrakeWheelTorqueOrder_EDR ,735,24,39,1,0,0,,226049,626049,ff,AEB_BrakeWheelTorqueRequest ,735,24,31,1,0,0,,22604A,62604A,ff,AEB_CyclistAlertRequest ,735,24,31,1,0,0,,22604B,62604B,ff,AEB_DWInhibitionRequest ,735,24,31,1,0,0,,22604C,62604C,ff,AEB_FCWactivationState ,735,24,31,1,0,0,,22604D,62604D,ff,AEB_InhibitionRequest ,735,24,31,1,0,0,,22604E,62604E,ff,AEB_PedestrianAlertRequest ,735,24,31,1,0,0,,22604F,62604F,ff,AEB_PermanentFailureDisplayReq ,735,24,31,1,0,0,,226050,626050,ff,AEB_TemporaryFailureDisplayReq ,735,24,31,1,0,0,,226051,626051,ff,AEB_VehicleAlertRequest ,735,24,31,1,0,0,,226052,626052,ff,HBAThresholdRequest ,735,24,31,1,0,0,,226053,626053,ff,HydraulicPreFillRequest ,735,24,31,.01,0,2,,226054,626054,ff,VDY_Accel ,735,24,39,1,0,0,,226055,626055,ff,Radar_DeltaSampleTime ,735,24,31,1,0,0,,226188,626188,ff,P_tng_kmh_E_VSMin_AlrtPed ,735,24,39,.01,0,2,,22618A,62618A,ff,P_tng_kmh_VehSpeedMin_AlertCyc ,735,24,39,.1,0,1,,226193,626193,ff,P_tng_kph_EVO_SpeedMinAebsCity ,735,24,39,.1,0,1,,226194,626194,ff,P_tng_kph_EVO_SpeedMinAebsPed ,735,24,39,.01,0,2,,226197,626197,ff,P_tng_kph_SpeedMinAebsCyc ,735,24,39,1,0,0,Nm,2261D1,6261D1,ff,P1.P_tng_Nm_BrkWhlTq.[1][1] ,735,40,55,1,0,0,Nm,2261D1,6261D1,ff,P1.P_tng_Nm_BrkWhlTq.[1][2] ,735,56,71,1,0,0,Nm,2261D1,6261D1,ff,P1.P_tng_Nm_BrkWhlTq.[1][3] ,735,72,87,1,0,0,Nm,2261D1,6261D1,ff,P1.P_tng_Nm_BrkWhlTq.[1][4] ,735,88,103,1,0,0,Nm,2261D1,6261D1,ff,P1.P_tng_Nm_BrkWhlTq.[1][5] ,735,104,119,1,0,0,Nm,2261D1,6261D1,ff,P1.P_tng_Nm_BrkWhlTq.[1][6] ,735,120,135,1,0,0,Nm,2261D1,6261D1,ff,P1.P_tng_Nm_BrkWhlTq.[1][7] ,735,136,151,20,0,0,,2261D1,6261D1,ff,P1.P_tng_Nm_EVO_CityBrakingAebsReq ,735,152,167,20,0,0,,2261D1,6261D1,ff,P1.P_tng_Nm_EVO_MaximumBrakingAebsReq ,735,168,183,20,0,0,,2261D1,6261D1,ff,P1.P_tng_Nm_EVO_ModerateBrakingAebsReq ,735,184,199,20,0,0,,2261D1,6261D1,ff,P1.P_tng_Nm_EVO_StrongBrakingAebsReq ,735,200,207,2,0,0,Nm,2261D1,6261D1,ff,P1.P_tng_Nm_NoBrakingAebsReq ,735,208,223,1,20000,0,Nm,2261D1,6261D1,ff,P1.P_tng_Nm_PWBTMax ,735,224,239,1,20000,0,Nm,2261D1,6261D1,ff,P1.P_tng_Nm_PWBTMin ,735,240,247,1,0,0,Deg,2261D1,6261D1,ff,P1.P_tng_deg_SWAInhibThd ,735,248,255,5,0,0,deg,2261D1,6261D1,ff,P1.P_tng_deg_SWhAglThrDAOn ,735,256,271,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_CityOverlapImp.[1][1] ,735,272,287,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_CityOverlapImp.[1][2] ,735,288,303,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_CityOverlapImp.[1][3] ,735,304,319,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_CityOverlapImp.[1][4] ,735,320,335,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_CityOverlapImp.[1][5] ,735,336,351,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_CityOverlapImp.[1][6] ,735,352,367,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_CityOverlapImp.[1][7] ,735,368,383,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_IUOverlapImp.[1][1] ,735,384,399,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_IUOverlapImp.[1][2] ,735,400,415,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_IUOverlapImp.[1][3] ,735,416,431,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_indm_EVO_IUOverlapImp.[1][4] ,735,432,447,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_City.[1][1] ,735,448,463,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_City.[1][2] ,735,464,479,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_City.[1][3] ,735,480,495,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_City.[1][4] ,735,496,511,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_City.[1][5] ,735,512,527,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_City.[1][6] ,735,528,543,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_City.[1][7] ,735,544,559,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_IU.[1][1] ,735,560,575,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_IU.[1][2] ,735,576,591,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_IU.[1][3] ,735,592,607,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_IU.[1][4] ,735,608,623,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_IU.[1][5] ,735,624,639,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_IU.[1][6] ,735,640,655,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_HostSpeed_IU.[1][7] ,735,656,671,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][1] ,735,672,687,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][2] ,735,688,703,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][3] ,735,704,719,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][4] ,735,720,735,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][5] ,735,736,751,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][6] ,735,752,767,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][7] ,735,768,783,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][8] ,735,784,799,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][9] ,735,800,815,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][10] ,735,816,831,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][11] ,735,832,847,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][12] ,735,848,863,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][13] ,735,864,879,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][14] ,735,880,895,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][15] ,735,896,911,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_City.[1][16] ,735,912,927,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_FCWIU.[1][1] ,735,928,943,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_FCWIU.[1][2] ,735,944,959,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_FCWIU.[1][3] ,735,960,975,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_FCWIU.[1][4] ,735,976,991,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_FCWIU.[1][5] ,735,992,1007,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_FCWIU.[1][6] ,735,1008,1023,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_FCWIU.[1][7] ,735,1024,1039,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_FCWIU.[1][8] ,735,1040,1055,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_IU.[1][1] ,735,1056,1071,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_IU.[1][2] ,735,1072,1087,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_IU.[1][3] ,735,1088,1103,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_IU.[1][4] ,735,1104,1119,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_IU.[1][5] ,735,1120,1135,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_IU.[1][6] ,735,1136,1151,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_IU.[1][7] ,735,1152,1167,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_IU.[1][8] ,735,1168,1183,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_IU.[1][9] ,735,1184,1199,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_RelSpeed_IU.[1][10] ,735,1200,1215,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_City.[1][1] ,735,1216,1231,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_City.[1][2] ,735,1232,1247,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_City.[1][3] ,735,1248,1263,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_City.[1][4] ,735,1264,1279,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_City.[1][5] ,735,1280,1295,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_City.[1][6] ,735,1296,1311,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_IU.[1][1] ,735,1312,1327,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_IU.[1][2] ,735,1328,1343,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_IU.[1][3] ,735,1344,1359,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_IU.[1][4] ,735,1360,1375,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_IU.[1][5] ,735,1376,1391,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_IU.[1][6] ,735,1392,1407,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_TargetSpeed_IU.[1][7] ,735,1408,1415,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_Vyrel_City.[1][1] ,735,1416,1423,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_Vyrel_City.[1][2] ,735,1424,1431,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_Vyrel_City.[1][3] ,735,1432,1439,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_Vyrel_City.[1][4] ,735,1440,1447,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_Vyrel_IU.[1][1] ,735,1448,1455,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_Vyrel_IU.[1][2] ,735,1456,1463,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_Vyrel_IU.[1][3] ,735,1464,1471,.01,0,2,mps,2261D1,6261D1,ff,P1.P_tng_indmps_EVO_Vyrel_IU.[1][4] ,735,1472,1487,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrDrAtPed.[1][1] ,735,1488,1503,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrDrAtPed.[1][2] ,735,1504,1519,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrDrAtPed.[1][3] ,735,1520,1535,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrDrAtPed.[1][4] ,735,1536,1551,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrDrAtPed.[1][5] ,735,1552,1567,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrDrAtPed.[1][6] ,735,1568,1583,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrNoDrAtPed.[1][1] ,735,1584,1599,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrNoDrAtPed.[1][2] ,735,1600,1615,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrNoDrAtPed.[1][3] ,735,1616,1631,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrNoDrAtPed.[1][4] ,735,1632,1647,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrNoDrAtPed.[1][5] ,735,1648,1663,.1,0,1,,2261D1,6261D1,ff,P1.P_tng_kmh_EVO_SpdWCorrNoDrAtPed.[1][6] ,735,1664,1679,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrDrAtCyc.[1][1] ,735,1680,1695,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrDrAtCyc.[1][2] ,735,1696,1711,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrDrAtCyc.[1][3] ,735,1712,1727,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrDrAtCyc.[1][4] ,735,1728,1743,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrDrAtCyc.[1][5] ,735,1744,1759,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrDrAtCyc.[1][6] ,735,1760,1775,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrDrAtCyc.[1][7] ,735,1776,1791,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrDrAtCyc.[1][8] ,735,1792,1807,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrNoDrAtCyc.[1][1] ,735,1808,1823,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrNoDrAtCyc.[1][2] ,735,1824,1839,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrNoDrAtCyc.[1][3] ,735,1840,1855,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrNoDrAtCyc.[1][4] ,735,1856,1871,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrNoDrAtCyc.[1][5] ,735,1872,1887,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrNoDrAtCyc.[1][6] ,735,1888,1903,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrNoDrAtCyc.[1][7] ,735,1904,1919,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kmh_SpdWCorrNoDrAtCyc.[1][8] ,735,1920,1935,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][1] ,735,1936,1951,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][2] ,735,1952,1967,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][3] ,735,1968,1983,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][4] ,735,1984,1999,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][5] ,735,2000,2015,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][6] ,735,2016,2031,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][7] ,735,2032,2047,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][8] ,735,2048,2063,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][9] ,735,2064,2079,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][10] ,735,2080,2095,.01,0,2,,2261D1,6261D1,ff,P1.P_tng_kph_VectBrkAngleZA.[1][11] ,735,2096,2111,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_BrakeNarrowCorThd_car ,735,2112,2127,.01,200,2,m,2261D1,6261D1,ff,P1.P_tng_m_BrakeNarrowCor_car ,735,2128,2143,.01,200,2,,2261D1,6261D1,ff,P1.P_tng_m_BrkCycNaCrdHalfWd ,735,2144,2159,.01,200,2,,2261D1,6261D1,ff,P1.P_tng_m_BrkCycNaCrdHalfWdThd ,735,2160,2175,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[1][1] ,735,2176,2191,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[1][2] ,735,2192,2207,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[1][3] ,735,2208,2223,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[1][4] ,735,2224,2239,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[1][5] ,735,2240,2255,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[2][1] ,735,2256,2271,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[2][2] ,735,2272,2287,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[2][3] ,735,2288,2303,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[2][4] ,735,2304,2319,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[2][5] ,735,2320,2335,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[3][1] ,735,2336,2351,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[3][2] ,735,2352,2367,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[3][3] ,735,2368,2383,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[3][4] ,735,2384,2399,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[3][5] ,735,2400,2415,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[4][1] ,735,2416,2431,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[4][2] ,735,2432,2447,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[4][3] ,735,2448,2463,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[4][4] ,735,2464,2479,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[4][5] ,735,2480,2495,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[5][1] ,735,2496,2511,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[5][2] ,735,2512,2527,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[5][3] ,735,2528,2543,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[5][4] ,735,2544,2559,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[5][5] ,735,2560,2575,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[6][1] ,735,2576,2591,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[6][2] ,735,2592,2607,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[6][3] ,735,2608,2623,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[6][4] ,735,2624,2639,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[6][5] ,735,2640,2655,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[7][1] ,735,2656,2671,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[7][2] ,735,2672,2687,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[7][3] ,735,2688,2703,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[7][4] ,735,2704,2719,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[7][5] ,735,2720,2735,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[8][1] ,735,2736,2751,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[8][2] ,735,2752,2767,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[8][3] ,735,2768,2783,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[8][4] ,735,2784,2799,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[8][5] ,735,2800,2815,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[9][1] ,735,2816,2831,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[9][2] ,735,2832,2847,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[9][3] ,735,2848,2863,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[9][4] ,735,2864,2879,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[9][5] ,735,2880,2895,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[10][1] ,735,2896,2911,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[10][2] ,735,2912,2927,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[10][3] ,735,2928,2943,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[10][4] ,735,2944,2959,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[10][5] ,735,2960,2975,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[11][1] ,735,2976,2991,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[11][2] ,735,2992,3007,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[11][3] ,735,3008,3023,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[11][4] ,735,3024,3039,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[11][5] ,735,3040,3055,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[12][1] ,735,3056,3071,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[12][2] ,735,3072,3087,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[12][3] ,735,3088,3103,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[12][4] ,735,3104,3119,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt.[12][5] ,735,3120,3135,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[1][1] ,735,3136,3151,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[1][2] ,735,3152,3167,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[1][3] ,735,3168,3183,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[1][4] ,735,3184,3199,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[1][5] ,735,3200,3215,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[2][1] ,735,3216,3231,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[2][2] ,735,3232,3247,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[2][3] ,735,3248,3263,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[2][4] ,735,3264,3279,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[2][5] ,735,3280,3295,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[3][1] ,735,3296,3311,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[3][2] ,735,3312,3327,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[3][3] ,735,3328,3343,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[3][4] ,735,3344,3359,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[3][5] ,735,3360,3375,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[4][1] ,735,3376,3391,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[4][2] ,735,3392,3407,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[4][3] ,735,3408,3423,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[4][4] ,735,3424,3439,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[4][5] ,735,3440,3455,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[5][1] ,735,3456,3471,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[5][2] ,735,3472,3487,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[5][3] ,735,3488,3503,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[5][4] ,735,3504,3519,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[5][5] ,735,3520,3535,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[6][1] ,735,3536,3551,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[6][2] ,735,3552,3567,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[6][3] ,735,3568,3583,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[6][4] ,735,3584,3599,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[6][5] ,735,3600,3615,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[7][1] ,735,3616,3631,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[7][2] ,735,3632,3647,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[7][3] ,735,3648,3663,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[7][4] ,735,3664,3679,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[7][5] ,735,3680,3695,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[8][1] ,735,3696,3711,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[8][2] ,735,3712,3727,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[8][3] ,735,3728,3743,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[8][4] ,735,3744,3759,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[8][5] ,735,3760,3775,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[9][1] ,735,3776,3791,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[9][2] ,735,3792,3807,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[9][3] ,735,3808,3823,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[9][4] ,735,3824,3839,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[9][5] ,735,3840,3855,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[10][1] ,735,3856,3871,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[10][2] ,735,3872,3887,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[10][3] ,735,3888,3903,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[10][4] ,735,3904,3919,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[10][5] ,735,3920,3935,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[11][1] ,735,3936,3951,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[11][2] ,735,3952,3967,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[11][3] ,735,3968,3983,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[11][4] ,735,3984,3999,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[11][5] ,735,4000,4015,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[12][1] ,735,4016,4031,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[12][2] ,735,4032,4047,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[12][3] ,735,4048,4063,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[12][4] ,735,4064,4079,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatDrAt_Ni.[12][5] ,735,4080,4095,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[1][1] ,735,4096,4111,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[1][2] ,735,4112,4127,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[1][3] ,735,4128,4143,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[1][4] ,735,4144,4159,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[1][5] ,735,4160,4175,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[2][1] ,735,4176,4191,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[2][2] ,735,4192,4207,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[2][3] ,735,4208,4223,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[2][4] ,735,4224,4239,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[2][5] ,735,4240,4255,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[3][1] ,735,4256,4271,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[3][2] ,735,4272,4287,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[3][3] ,735,4288,4303,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[3][4] ,735,4304,4319,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[3][5] ,735,4320,4335,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[4][1] ,735,4336,4351,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[4][2] ,735,4352,4367,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[4][3] ,735,4368,4383,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[4][4] ,735,4384,4399,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[4][5] ,735,4400,4415,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[5][1] ,735,4416,4431,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[5][2] ,735,4432,4447,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[5][3] ,735,4448,4463,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[5][4] ,735,4464,4479,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[5][5] ,735,4480,4495,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[6][1] ,735,4496,4511,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[6][2] ,735,4512,4527,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[6][3] ,735,4528,4543,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[6][4] ,735,4544,4559,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[6][5] ,735,4560,4575,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[7][1] ,735,4576,4591,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[7][2] ,735,4592,4607,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[7][3] ,735,4608,4623,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[7][4] ,735,4624,4639,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[7][5] ,735,4640,4655,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[8][1] ,735,4656,4671,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[8][2] ,735,4672,4687,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[8][3] ,735,4688,4703,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[8][4] ,735,4704,4719,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[8][5] ,735,4720,4735,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[9][1] ,735,4736,4751,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[9][2] ,735,4752,4767,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[9][3] ,735,4768,4783,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[9][4] ,735,4784,4799,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[9][5] ,735,4800,4815,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[10][1] ,735,4816,4831,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[10][2] ,735,4832,4847,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[10][3] ,735,4848,4863,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[10][4] ,735,4864,4879,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[10][5] ,735,4880,4895,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[11][1] ,735,4896,4911,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[11][2] ,735,4912,4927,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[11][3] ,735,4928,4943,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[11][4] ,735,4944,4959,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[11][5] ,735,4960,4975,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[12][1] ,735,4976,4991,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[12][2] ,735,4992,5007,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[12][3] ,735,5008,5023,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[12][4] ,735,5024,5039,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAt.[12][5] ,735,5040,5055,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[1][1] ,735,5056,5071,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[1][2] ,735,5072,5087,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[1][3] ,735,5088,5103,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[1][4] ,735,5104,5119,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[1][5] ,735,5120,5135,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[2][1] ,735,5136,5151,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[2][2] ,735,5152,5167,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[2][3] ,735,5168,5183,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[2][4] ,735,5184,5199,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[2][5] ,735,5200,5215,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[3][1] ,735,5216,5231,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[3][2] ,735,5232,5247,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[3][3] ,735,5248,5263,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[3][4] ,735,5264,5279,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[3][5] ,735,5280,5295,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[4][1] ,735,5296,5311,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[4][2] ,735,5312,5327,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[4][3] ,735,5328,5343,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[4][4] ,735,5344,5359,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[4][5] ,735,5360,5375,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[5][1] ,735,5376,5391,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[5][2] ,735,5392,5407,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[5][3] ,735,5408,5423,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[5][4] ,735,5424,5439,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[5][5] ,735,5440,5455,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[6][1] ,735,5456,5471,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[6][2] ,735,5472,5487,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[6][3] ,735,5488,5503,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[6][4] ,735,5504,5519,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[6][5] ,735,5520,5535,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[7][1] ,735,5536,5551,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[7][2] ,735,5552,5567,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[7][3] ,735,5568,5583,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[7][4] ,735,5584,5599,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[7][5] ,735,5600,5615,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[8][1] ,735,5616,5631,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[8][2] ,735,5632,5647,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[8][3] ,735,5648,5663,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[8][4] ,735,5664,5679,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[8][5] ,735,5680,5695,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[9][1] ,735,5696,5711,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[9][2] ,735,5712,5727,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[9][3] ,735,5728,5743,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[9][4] ,735,5744,5759,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[9][5] ,735,5760,5775,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[10][1] ,735,5776,5791,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[10][2] ,735,5792,5807,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[10][3] ,735,5808,5823,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[10][4] ,735,5824,5839,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[10][5] ,735,5840,5855,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[11][1] ,735,5856,5871,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[11][2] ,735,5872,5887,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[11][3] ,735,5888,5903,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[11][4] ,735,5904,5919,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[11][5] ,735,5920,5935,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[12][1] ,735,5936,5951,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[12][2] ,735,5952,5967,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[12][3] ,735,5968,5983,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[12][4] ,735,5984,5999,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLatNoDrAtNi.[12][5] ,735,6000,6015,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[1][1] ,735,6016,6031,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[1][2] ,735,6032,6047,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[1][3] ,735,6048,6063,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[1][4] ,735,6064,6079,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[1][5] ,735,6080,6095,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[2][1] ,735,6096,6111,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[2][2] ,735,6112,6127,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[2][3] ,735,6128,6143,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[2][4] ,735,6144,6159,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[2][5] ,735,6160,6175,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[3][1] ,735,6176,6191,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[3][2] ,735,6192,6207,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[3][3] ,735,6208,6223,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[3][4] ,735,6224,6239,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[3][5] ,735,6240,6255,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[4][1] ,735,6256,6271,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[4][2] ,735,6272,6287,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[4][3] ,735,6288,6303,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[4][4] ,735,6304,6319,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[4][5] ,735,6320,6335,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[5][1] ,735,6336,6351,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[5][2] ,735,6352,6367,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[5][3] ,735,6368,6383,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[5][4] ,735,6384,6399,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[5][5] ,735,6400,6415,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[6][1] ,735,6416,6431,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[6][2] ,735,6432,6447,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[6][3] ,735,6448,6463,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[6][4] ,735,6464,6479,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[6][5] ,735,6480,6495,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[7][1] ,735,6496,6511,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[7][2] ,735,6512,6527,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[7][3] ,735,6528,6543,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[7][4] ,735,6544,6559,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[7][5] ,735,6560,6575,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[8][1] ,735,6576,6591,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[8][2] ,735,6592,6607,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[8][3] ,735,6608,6623,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[8][4] ,735,6624,6639,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[8][5] ,735,6640,6655,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[9][1] ,735,6656,6671,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[9][2] ,735,6672,6687,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[9][3] ,735,6688,6703,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[9][4] ,735,6704,6719,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[9][5] ,735,6720,6735,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[10][1] ,735,6736,6751,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[10][2] ,735,6752,6767,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[10][3] ,735,6768,6783,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[10][4] ,735,6784,6799,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[10][5] ,735,6800,6815,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[11][1] ,735,6816,6831,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[11][2] ,735,6832,6847,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[11][3] ,735,6848,6863,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[11][4] ,735,6864,6879,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[11][5] ,735,6880,6895,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[12][1] ,735,6896,6911,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[12][2] ,735,6912,6927,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[12][3] ,735,6928,6943,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[12][4] ,735,6944,6959,.01,0,2,m,2261D1,6261D1,ff,P1.P_tng_m_CdDistAEBCycLonDrAt.[12][5] ,735,24,39,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[1][1] ,735,40,55,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[1][2] ,735,56,71,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[1][3] ,735,72,87,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[1][4] ,735,88,103,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[1][5] ,735,104,119,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[2][1] ,735,120,135,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[2][2] ,735,136,151,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[2][3] ,735,152,167,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[2][4] ,735,168,183,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[2][5] ,735,184,199,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[3][1] ,735,200,215,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[3][2] ,735,216,231,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[3][3] ,735,232,247,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[3][4] ,735,248,263,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[3][5] ,735,264,279,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[4][1] ,735,280,295,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[4][2] ,735,296,311,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[4][3] ,735,312,327,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[4][4] ,735,328,343,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[4][5] ,735,344,359,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[5][1] ,735,360,375,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[5][2] ,735,376,391,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[5][3] ,735,392,407,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[5][4] ,735,408,423,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[5][5] ,735,424,439,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[6][1] ,735,440,455,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[6][2] ,735,456,471,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[6][3] ,735,472,487,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[6][4] ,735,488,503,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[6][5] ,735,504,519,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[7][1] ,735,520,535,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[7][2] ,735,536,551,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[7][3] ,735,552,567,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[7][4] ,735,568,583,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[7][5] ,735,584,599,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[8][1] ,735,600,615,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[8][2] ,735,616,631,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[8][3] ,735,632,647,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[8][4] ,735,648,663,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[8][5] ,735,664,679,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[9][1] ,735,680,695,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[9][2] ,735,696,711,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[9][3] ,735,712,727,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[9][4] ,735,728,743,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[9][5] ,735,744,759,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[10][1] ,735,760,775,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[10][2] ,735,776,791,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[10][3] ,735,792,807,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[10][4] ,735,808,823,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[10][5] ,735,824,839,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[11][1] ,735,840,855,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[11][2] ,735,856,871,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[11][3] ,735,872,887,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[11][4] ,735,888,903,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[11][5] ,735,904,919,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[12][1] ,735,920,935,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[12][2] ,735,936,951,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[12][3] ,735,952,967,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[12][4] ,735,968,983,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonDrAtNi.[12][5] ,735,984,999,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[1][1] ,735,1000,1015,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[1][2] ,735,1016,1031,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[1][3] ,735,1032,1047,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[1][4] ,735,1048,1063,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[1][5] ,735,1064,1079,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[2][1] ,735,1080,1095,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[2][2] ,735,1096,1111,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[2][3] ,735,1112,1127,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[2][4] ,735,1128,1143,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[2][5] ,735,1144,1159,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[3][1] ,735,1160,1175,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[3][2] ,735,1176,1191,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[3][3] ,735,1192,1207,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[3][4] ,735,1208,1223,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[3][5] ,735,1224,1239,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[4][1] ,735,1240,1255,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[4][2] ,735,1256,1271,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[4][3] ,735,1272,1287,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[4][4] ,735,1288,1303,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[4][5] ,735,1304,1319,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[5][1] ,735,1320,1335,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[5][2] ,735,1336,1351,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[5][3] ,735,1352,1367,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[5][4] ,735,1368,1383,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[5][5] ,735,1384,1399,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[6][1] ,735,1400,1415,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[6][2] ,735,1416,1431,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[6][3] ,735,1432,1447,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[6][4] ,735,1448,1463,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[6][5] ,735,1464,1479,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[7][1] ,735,1480,1495,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[7][2] ,735,1496,1511,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[7][3] ,735,1512,1527,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[7][4] ,735,1528,1543,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[7][5] ,735,1544,1559,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[8][1] ,735,1560,1575,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[8][2] ,735,1576,1591,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[8][3] ,735,1592,1607,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[8][4] ,735,1608,1623,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[8][5] ,735,1624,1639,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[9][1] ,735,1640,1655,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[9][2] ,735,1656,1671,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[9][3] ,735,1672,1687,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[9][4] ,735,1688,1703,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[9][5] ,735,1704,1719,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[10][1] ,735,1720,1735,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[10][2] ,735,1736,1751,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[10][3] ,735,1752,1767,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[10][4] ,735,1768,1783,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[10][5] ,735,1784,1799,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[11][1] ,735,1800,1815,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[11][2] ,735,1816,1831,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[11][3] ,735,1832,1847,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[11][4] ,735,1848,1863,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[11][5] ,735,1864,1879,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[12][1] ,735,1880,1895,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[12][2] ,735,1896,1911,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[12][3] ,735,1912,1927,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[12][4] ,735,1928,1943,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAt.[12][5] ,735,1944,1959,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[1][1] ,735,1960,1975,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[1][2] ,735,1976,1991,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[1][3] ,735,1992,2007,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[1][4] ,735,2008,2023,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[1][5] ,735,2024,2039,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[2][1] ,735,2040,2055,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[2][2] ,735,2056,2071,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[2][3] ,735,2072,2087,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[2][4] ,735,2088,2103,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[2][5] ,735,2104,2119,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[3][1] ,735,2120,2135,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[3][2] ,735,2136,2151,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[3][3] ,735,2152,2167,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[3][4] ,735,2168,2183,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[3][5] ,735,2184,2199,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[4][1] ,735,2200,2215,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[4][2] ,735,2216,2231,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[4][3] ,735,2232,2247,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[4][4] ,735,2248,2263,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[4][5] ,735,2264,2279,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[5][1] ,735,2280,2295,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[5][2] ,735,2296,2311,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[5][3] ,735,2312,2327,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[5][4] ,735,2328,2343,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[5][5] ,735,2344,2359,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[6][1] ,735,2360,2375,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[6][2] ,735,2376,2391,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[6][3] ,735,2392,2407,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[6][4] ,735,2408,2423,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[6][5] ,735,2424,2439,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[7][1] ,735,2440,2455,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[7][2] ,735,2456,2471,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[7][3] ,735,2472,2487,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[7][4] ,735,2488,2503,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[7][5] ,735,2504,2519,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[8][1] ,735,2520,2535,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[8][2] ,735,2536,2551,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[8][3] ,735,2552,2567,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[8][4] ,735,2568,2583,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[8][5] ,735,2584,2599,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[9][1] ,735,2600,2615,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[9][2] ,735,2616,2631,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[9][3] ,735,2632,2647,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[9][4] ,735,2648,2663,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[9][5] ,735,2664,2679,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[10][1] ,735,2680,2695,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[10][2] ,735,2696,2711,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[10][3] ,735,2712,2727,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[10][4] ,735,2728,2743,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[10][5] ,735,2744,2759,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[11][1] ,735,2760,2775,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[11][2] ,735,2776,2791,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[11][3] ,735,2792,2807,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[11][4] ,735,2808,2823,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[11][5] ,735,2824,2839,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[12][1] ,735,2840,2855,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[12][2] ,735,2856,2871,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[12][3] ,735,2872,2887,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[12][4] ,735,2888,2903,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonNoDrAtNi.[12][5] ,735,2904,2919,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[1][1] ,735,2920,2935,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[1][2] ,735,2936,2951,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[1][3] ,735,2952,2967,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[1][4] ,735,2968,2983,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[2][1] ,735,2984,2999,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[2][2] ,735,3000,3015,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[2][3] ,735,3016,3031,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[2][4] ,735,3032,3047,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[3][1] ,735,3048,3063,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[3][2] ,735,3064,3079,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[3][3] ,735,3080,3095,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[3][4] ,735,3096,3111,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[4][1] ,735,3112,3127,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[4][2] ,735,3128,3143,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[4][3] ,735,3144,3159,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[4][4] ,735,3160,3175,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[5][1] ,735,3176,3191,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[5][2] ,735,3192,3207,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[5][3] ,735,3208,3223,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[5][4] ,735,3224,3239,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[6][1] ,735,3240,3255,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[6][2] ,735,3256,3271,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[6][3] ,735,3272,3287,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[6][4] ,735,3288,3303,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[7][1] ,735,3304,3319,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[7][2] ,735,3320,3335,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[7][3] ,735,3336,3351,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[7][4] ,735,3352,3367,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[8][1] ,735,3368,3383,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[8][2] ,735,3384,3399,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[8][3] ,735,3400,3415,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[8][4] ,735,3416,3431,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[9][1] ,735,3432,3447,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[9][2] ,735,3448,3463,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[9][3] ,735,3464,3479,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[9][4] ,735,3480,3495,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[10][1] ,735,3496,3511,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[10][2] ,735,3512,3527,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[10][3] ,735,3528,3543,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrn.[10][4] ,735,3544,3559,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[1][1] ,735,3560,3575,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[1][2] ,735,3576,3591,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[1][3] ,735,3592,3607,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[1][4] ,735,3608,3623,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[2][1] ,735,3624,3639,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[2][2] ,735,3640,3655,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[2][3] ,735,3656,3671,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[2][4] ,735,3672,3687,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[3][1] ,735,3688,3703,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[3][2] ,735,3704,3719,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[3][3] ,735,3720,3735,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[3][4] ,735,3736,3751,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[4][1] ,735,3752,3767,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[4][2] ,735,3768,3783,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[4][3] ,735,3784,3799,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[4][4] ,735,3800,3815,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[5][1] ,735,3816,3831,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[5][2] ,735,3832,3847,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[5][3] ,735,3848,3863,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[5][4] ,735,3864,3879,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[6][1] ,735,3880,3895,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[6][2] ,735,3896,3911,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[6][3] ,735,3912,3927,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[6][4] ,735,3928,3943,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[7][1] ,735,3944,3959,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[7][2] ,735,3960,3975,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[7][3] ,735,3976,3991,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[7][4] ,735,3992,4007,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[8][1] ,735,4008,4023,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[8][2] ,735,4024,4039,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[8][3] ,735,4040,4055,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[8][4] ,735,4056,4071,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[9][1] ,735,4072,4087,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[9][2] ,735,4088,4103,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[9][3] ,735,4104,4119,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[9][4] ,735,4120,4135,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[10][1] ,735,4136,4151,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[10][2] ,735,4152,4167,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[10][3] ,735,4168,4183,.01,0,2,m,2261D2,6261D2,ff,P2.P_tng_m_CdDistAEBCycLonWrnNi.[10][4] ,735,24,39,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[1][1] ,735,40,55,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[1][2] ,735,56,71,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[1][3] ,735,72,87,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[1][4] ,735,88,103,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[2][1] ,735,104,119,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[2][2] ,735,120,135,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[2][3] ,735,136,151,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[2][4] ,735,152,167,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[3][1] ,735,168,183,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[3][2] ,735,184,199,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[3][3] ,735,200,215,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[3][4] ,735,216,231,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[4][1] ,735,232,247,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[4][2] ,735,248,263,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[4][3] ,735,264,279,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[4][4] ,735,280,295,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[5][1] ,735,296,311,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[5][2] ,735,312,327,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[5][3] ,735,328,343,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[5][4] ,735,344,359,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[6][1] ,735,360,375,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[6][2] ,735,376,391,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[6][3] ,735,392,407,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[6][4] ,735,408,423,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[7][1] ,735,424,439,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[7][2] ,735,440,455,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[7][3] ,735,456,471,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[7][4] ,735,472,487,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[8][1] ,735,488,503,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[8][2] ,735,504,519,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[8][3] ,735,520,535,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[8][4] ,735,536,551,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[9][1] ,735,552,567,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[9][2] ,735,568,583,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[9][3] ,735,584,599,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[9][4] ,735,600,615,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[10][1] ,735,616,631,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[10][2] ,735,632,647,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[10][3] ,735,648,663,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn.[10][4] ,735,664,679,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[1][1] ,735,680,695,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[1][2] ,735,696,711,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[1][3] ,735,712,727,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[1][4] ,735,728,743,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[2][1] ,735,744,759,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[2][2] ,735,760,775,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[2][3] ,735,776,791,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[2][4] ,735,792,807,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[3][1] ,735,808,823,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[3][2] ,735,824,839,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[3][3] ,735,840,855,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[3][4] ,735,856,871,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[4][1] ,735,872,887,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[4][2] ,735,888,903,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[4][3] ,735,904,919,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[4][4] ,735,920,935,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[5][1] ,735,936,951,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[5][2] ,735,952,967,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[5][3] ,735,968,983,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[5][4] ,735,984,999,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[6][1] ,735,1000,1015,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[6][2] ,735,1016,1031,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[6][3] ,735,1032,1047,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[6][4] ,735,1048,1063,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[7][1] ,735,1064,1079,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[7][2] ,735,1080,1095,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[7][3] ,735,1096,1111,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[7][4] ,735,1112,1127,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[8][1] ,735,1128,1143,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[8][2] ,735,1144,1159,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[8][3] ,735,1160,1175,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[8][4] ,735,1176,1191,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[9][1] ,735,1192,1207,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[9][2] ,735,1208,1223,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[9][3] ,735,1224,1239,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[9][4] ,735,1240,1255,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[10][1] ,735,1256,1271,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[10][2] ,735,1272,1287,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[10][3] ,735,1288,1303,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_CondDistAebsCycLatWarn_Night.[10][4] ,735,1304,1311,.1,0,1,m,2261D3,6261D3,ff,P3.P_tng_m_ConstantTorqueXrel ,735,1312,1327,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[1][1] ,735,1328,1343,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[1][2] ,735,1344,1359,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[1][3] ,735,1360,1375,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[1][4] ,735,1376,1391,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[2][1] ,735,1392,1407,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[2][2] ,735,1408,1423,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[2][3] ,735,1424,1439,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[2][4] ,735,1440,1455,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[3][1] ,735,1456,1471,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[3][2] ,735,1472,1487,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[3][3] ,735,1488,1503,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[3][4] ,735,1504,1519,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[4][1] ,735,1520,1535,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[4][2] ,735,1536,1551,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[4][3] ,735,1552,1567,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[4][4] ,735,1568,1583,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[5][1] ,735,1584,1599,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[5][2] ,735,1600,1615,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[5][3] ,735,1616,1631,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[5][4] ,735,1632,1647,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[6][1] ,735,1648,1663,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[6][2] ,735,1664,1679,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[6][3] ,735,1680,1695,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[6][4] ,735,1696,1711,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[7][1] ,735,1712,1727,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[7][2] ,735,1728,1743,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[7][3] ,735,1744,1759,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU1.[7][4] ,735,1760,1775,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[1][1] ,735,1776,1791,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[1][2] ,735,1792,1807,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[1][3] ,735,1808,1823,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[1][4] ,735,1824,1839,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[2][1] ,735,1840,1855,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[2][2] ,735,1856,1871,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[2][3] ,735,1872,1887,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[2][4] ,735,1888,1903,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[3][1] ,735,1904,1919,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[3][2] ,735,1920,1935,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[3][3] ,735,1936,1951,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[3][4] ,735,1952,1967,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[4][1] ,735,1968,1983,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[4][2] ,735,1984,1999,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[4][3] ,735,2000,2015,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[4][4] ,735,2016,2031,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[5][1] ,735,2032,2047,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[5][2] ,735,2048,2063,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[5][3] ,735,2064,2079,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[5][4] ,735,2080,2095,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[6][1] ,735,2096,2111,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[6][2] ,735,2112,2127,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[6][3] ,735,2128,2143,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[6][4] ,735,2144,2159,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[7][1] ,735,2160,2175,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[7][2] ,735,2176,2191,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[7][3] ,735,2192,2207,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_IU2.[7][4] ,735,2208,2223,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[1][1] ,735,2224,2239,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[1][2] ,735,2240,2255,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[1][3] ,735,2256,2271,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[1][4] ,735,2272,2287,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[2][1] ,735,2288,2303,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[2][2] ,735,2304,2319,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[2][3] ,735,2320,2335,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[2][4] ,735,2336,2351,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[3][1] ,735,2352,2367,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[3][2] ,735,2368,2383,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[3][3] ,735,2384,2399,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[3][4] ,735,2400,2415,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[4][1] ,735,2416,2431,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[4][2] ,735,2432,2447,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[4][3] ,735,2448,2463,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[4][4] ,735,2464,2479,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[5][1] ,735,2480,2495,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[5][2] ,735,2496,2511,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[5][3] ,735,2512,2527,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[5][4] ,735,2528,2543,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[6][1] ,735,2544,2559,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[6][2] ,735,2560,2575,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[6][3] ,735,2576,2591,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[6][4] ,735,2592,2607,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[7][1] ,735,2608,2623,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[7][2] ,735,2624,2639,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[7][3] ,735,2640,2655,.01,200,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_BrakeWCorPerfo_city.[7][4] ,735,2656,2671,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[1][1] ,735,2672,2687,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[1][2] ,735,2688,2703,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[1][3] ,735,2704,2719,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[1][4] ,735,2720,2735,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[2][1] ,735,2736,2751,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[2][2] ,735,2752,2767,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[2][3] ,735,2768,2783,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[2][4] ,735,2784,2799,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[3][1] ,735,2800,2815,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[3][2] ,735,2816,2831,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[3][3] ,735,2832,2847,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[3][4] ,735,2848,2863,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[4][1] ,735,2864,2879,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[4][2] ,735,2880,2895,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[4][3] ,735,2896,2911,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[4][4] ,735,2912,2927,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[5][1] ,735,2928,2943,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[5][2] ,735,2944,2959,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[5][3] ,735,2960,2975,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[5][4] ,735,2976,2991,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[6][1] ,735,2992,3007,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[6][2] ,735,3008,3023,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[6][3] ,735,3024,3039,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[6][4] ,735,3040,3055,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[7][1] ,735,3056,3071,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[7][2] ,735,3072,3087,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[7][3] ,735,3088,3103,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[7][4] ,735,3104,3119,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[8][1] ,735,3120,3135,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[8][2] ,735,3136,3151,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[8][3] ,735,3152,3167,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[8][4] ,735,3168,3183,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[9][1] ,735,3184,3199,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[9][2] ,735,3200,3215,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[9][3] ,735,3216,3231,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[9][4] ,735,3232,3247,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[10][1] ,735,3248,3263,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[10][2] ,735,3264,3279,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[10][3] ,735,3280,3295,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[10][4] ,735,3296,3311,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[11][1] ,735,3312,3327,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[11][2] ,735,3328,3343,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[11][3] ,735,3344,3359,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[11][4] ,735,3360,3375,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[12][1] ,735,3376,3391,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[12][2] ,735,3392,3407,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[12][3] ,735,3408,3423,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAt.[12][4] ,735,3424,3439,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[1][1] ,735,3440,3455,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[1][2] ,735,3456,3471,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[1][3] ,735,3472,3487,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[1][4] ,735,3488,3503,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[2][1] ,735,3504,3519,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[2][2] ,735,3520,3535,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[2][3] ,735,3536,3551,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[2][4] ,735,3552,3567,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[3][1] ,735,3568,3583,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[3][2] ,735,3584,3599,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[3][3] ,735,3600,3615,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[3][4] ,735,3616,3631,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[4][1] ,735,3632,3647,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[4][2] ,735,3648,3663,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[4][3] ,735,3664,3679,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[4][4] ,735,3680,3695,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[5][1] ,735,3696,3711,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[5][2] ,735,3712,3727,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[5][3] ,735,3728,3743,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[5][4] ,735,3744,3759,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[6][1] ,735,3760,3775,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[6][2] ,735,3776,3791,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[6][3] ,735,3792,3807,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[6][4] ,735,3808,3823,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[7][1] ,735,3824,3839,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[7][2] ,735,3840,3855,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[7][3] ,735,3856,3871,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[7][4] ,735,3872,3887,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[8][1] ,735,3888,3903,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[8][2] ,735,3904,3919,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[8][3] ,735,3920,3935,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[8][4] ,735,3936,3951,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[9][1] ,735,3952,3967,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[9][2] ,735,3968,3983,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[9][3] ,735,3984,3999,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[9][4] ,735,4000,4015,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[10][1] ,735,4016,4031,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[10][2] ,735,4032,4047,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[10][3] ,735,4048,4063,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[10][4] ,735,4064,4079,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[11][1] ,735,4080,4095,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[11][2] ,735,4096,4111,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[11][3] ,735,4112,4127,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[11][4] ,735,4128,4143,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[12][1] ,735,4144,4159,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[12][2] ,735,4160,4175,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[12][3] ,735,4176,4191,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatDrAtNi.[12][4] ,735,4192,4207,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[1][1] ,735,4208,4223,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[1][2] ,735,4224,4239,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[1][3] ,735,4240,4255,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[1][4] ,735,4256,4271,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[2][1] ,735,4272,4287,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[2][2] ,735,4288,4303,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[2][3] ,735,4304,4319,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[2][4] ,735,4320,4335,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[3][1] ,735,4336,4351,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[3][2] ,735,4352,4367,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[3][3] ,735,4368,4383,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[3][4] ,735,4384,4399,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[4][1] ,735,4400,4415,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[4][2] ,735,4416,4431,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[4][3] ,735,4432,4447,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[4][4] ,735,4448,4463,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[5][1] ,735,4464,4479,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[5][2] ,735,4480,4495,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[5][3] ,735,4496,4511,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[5][4] ,735,4512,4527,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[6][1] ,735,4528,4543,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[6][2] ,735,4544,4559,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[6][3] ,735,4560,4575,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[6][4] ,735,4576,4591,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[7][1] ,735,4592,4607,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[7][2] ,735,4608,4623,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[7][3] ,735,4624,4639,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn.[7][4] ,735,4640,4655,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[1][1] ,735,4656,4671,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[1][2] ,735,4672,4687,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[1][3] ,735,4688,4703,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[1][4] ,735,4704,4719,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[2][1] ,735,4720,4735,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[2][2] ,735,4736,4751,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[2][3] ,735,4752,4767,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[2][4] ,735,4768,4783,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[3][1] ,735,4784,4799,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[3][2] ,735,4800,4815,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[3][3] ,735,4816,4831,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[3][4] ,735,4832,4847,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[4][1] ,735,4848,4863,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[4][2] ,735,4864,4879,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[4][3] ,735,4880,4895,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[4][4] ,735,4896,4911,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[5][1] ,735,4912,4927,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[5][2] ,735,4928,4943,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[5][3] ,735,4944,4959,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[5][4] ,735,4960,4975,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[6][1] ,735,4976,4991,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[6][2] ,735,4992,5007,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[6][3] ,735,5008,5023,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[6][4] ,735,5024,5039,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[7][1] ,735,5040,5055,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[7][2] ,735,5056,5071,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[7][3] ,735,5072,5087,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLatWrn_Ni.[7][4] ,735,5088,5103,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[1][1] ,735,5104,5119,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[1][2] ,735,5120,5135,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[1][3] ,735,5136,5151,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[1][4] ,735,5152,5167,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[2][1] ,735,5168,5183,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[2][2] ,735,5184,5199,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[2][3] ,735,5200,5215,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[2][4] ,735,5216,5231,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[3][1] ,735,5232,5247,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[3][2] ,735,5248,5263,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[3][3] ,735,5264,5279,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[3][4] ,735,5280,5295,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[4][1] ,735,5296,5311,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[4][2] ,735,5312,5327,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[4][3] ,735,5328,5343,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[4][4] ,735,5344,5359,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[5][1] ,735,5360,5375,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[5][2] ,735,5376,5391,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[5][3] ,735,5392,5407,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[5][4] ,735,5408,5423,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[6][1] ,735,5424,5439,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[6][2] ,735,5440,5455,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[6][3] ,735,5456,5471,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[6][4] ,735,5472,5487,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[7][1] ,735,5488,5503,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[7][2] ,735,5504,5519,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[7][3] ,735,5520,5535,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[7][4] ,735,5536,5551,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[8][1] ,735,5552,5567,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[8][2] ,735,5568,5583,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[8][3] ,735,5584,5599,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[8][4] ,735,5600,5615,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[9][1] ,735,5616,5631,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[9][2] ,735,5632,5647,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[9][3] ,735,5648,5663,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[9][4] ,735,5664,5679,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[10][1] ,735,5680,5695,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[10][2] ,735,5696,5711,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[10][3] ,735,5712,5727,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[10][4] ,735,5728,5743,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[11][1] ,735,5744,5759,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[11][2] ,735,5760,5775,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[11][3] ,735,5776,5791,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[11][4] ,735,5792,5807,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[12][1] ,735,5808,5823,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[12][2] ,735,5824,5839,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[12][3] ,735,5840,5855,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAt.[12][4] ,735,5856,5871,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[1][1] ,735,5872,5887,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[1][2] ,735,5888,5903,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[1][3] ,735,5904,5919,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[1][4] ,735,5920,5935,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[2][1] ,735,5936,5951,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[2][2] ,735,5952,5967,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[2][3] ,735,5968,5983,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[2][4] ,735,5984,5999,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[3][1] ,735,6000,6015,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[3][2] ,735,6016,6031,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[3][3] ,735,6032,6047,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[3][4] ,735,6048,6063,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[4][1] ,735,6064,6079,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[4][2] ,735,6080,6095,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[4][3] ,735,6096,6111,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[4][4] ,735,6112,6127,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[5][1] ,735,6128,6143,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[5][2] ,735,6144,6159,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[5][3] ,735,6160,6175,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[5][4] ,735,6176,6191,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[6][1] ,735,6192,6207,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[6][2] ,735,6208,6223,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[6][3] ,735,6224,6239,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[6][4] ,735,6240,6255,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[7][1] ,735,6256,6271,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[7][2] ,735,6272,6287,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[7][3] ,735,6288,6303,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[7][4] ,735,6304,6319,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[8][1] ,735,6320,6335,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[8][2] ,735,6336,6351,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[8][3] ,735,6352,6367,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[8][4] ,735,6368,6383,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[9][1] ,735,6384,6399,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[9][2] ,735,6400,6415,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[9][3] ,735,6416,6431,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[9][4] ,735,6432,6447,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[10][1] ,735,6448,6463,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[10][2] ,735,6464,6479,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[10][3] ,735,6480,6495,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[10][4] ,735,6496,6511,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[11][1] ,735,6512,6527,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[11][2] ,735,6528,6543,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[11][3] ,735,6544,6559,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[11][4] ,735,6560,6575,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[12][1] ,735,6576,6591,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[12][2] ,735,6592,6607,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[12][3] ,735,6608,6623,.01,0,2,m,2261D3,6261D3,ff,P3.P_tng_m_EVO_CdDistAEBpLonDrAtNi.[12][4] ,735,24,39,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[1][1] ,735,40,55,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[1][2] ,735,56,71,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[1][3] ,735,72,87,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[1][4] ,735,88,103,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[2][1] ,735,104,119,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[2][2] ,735,120,135,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[2][3] ,735,136,151,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[2][4] ,735,152,167,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[3][1] ,735,168,183,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[3][2] ,735,184,199,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[3][3] ,735,200,215,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[3][4] ,735,216,231,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[4][1] ,735,232,247,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[4][2] ,735,248,263,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[4][3] ,735,264,279,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[4][4] ,735,280,295,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[5][1] ,735,296,311,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[5][2] ,735,312,327,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[5][3] ,735,328,343,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[5][4] ,735,344,359,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[6][1] ,735,360,375,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[6][2] ,735,376,391,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[6][3] ,735,392,407,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[6][4] ,735,408,423,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[7][1] ,735,424,439,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[7][2] ,735,440,455,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[7][3] ,735,456,471,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[7][4] ,735,472,487,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[8][1] ,735,488,503,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[8][2] ,735,504,519,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[8][3] ,735,520,535,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[8][4] ,735,536,551,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[9][1] ,735,552,567,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[9][2] ,735,568,583,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[9][3] ,735,584,599,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[9][4] ,735,600,615,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[10][1] ,735,616,631,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[10][2] ,735,632,647,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[10][3] ,735,648,663,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[10][4] ,735,664,679,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[11][1] ,735,680,695,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[11][2] ,735,696,711,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[11][3] ,735,712,727,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[11][4] ,735,728,743,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[12][1] ,735,744,759,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[12][2] ,735,760,775,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[12][3] ,735,776,791,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonNoDrAt.[12][4] ,735,792,807,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[1][1] ,735,808,823,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[1][2] ,735,824,839,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[1][3] ,735,840,855,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[1][4] ,735,856,871,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[2][1] ,735,872,887,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[2][2] ,735,888,903,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[2][3] ,735,904,919,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[2][4] ,735,920,935,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[3][1] ,735,936,951,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[3][2] ,735,952,967,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[3][3] ,735,968,983,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[3][4] ,735,984,999,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[4][1] ,735,1000,1015,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[4][2] ,735,1016,1031,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[4][3] ,735,1032,1047,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[4][4] ,735,1048,1063,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[5][1] ,735,1064,1079,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[5][2] ,735,1080,1095,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[5][3] ,735,1096,1111,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[5][4] ,735,1112,1127,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[6][1] ,735,1128,1143,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[6][2] ,735,1144,1159,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[6][3] ,735,1160,1175,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[6][4] ,735,1176,1191,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[7][1] ,735,1192,1207,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[7][2] ,735,1208,1223,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[7][3] ,735,1224,1239,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrn.[7][4] ,735,1240,1255,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[1][1] ,735,1256,1271,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[1][2] ,735,1272,1287,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[1][3] ,735,1288,1303,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[1][4] ,735,1304,1319,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[2][1] ,735,1320,1335,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[2][2] ,735,1336,1351,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[2][3] ,735,1352,1367,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[2][4] ,735,1368,1383,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[3][1] ,735,1384,1399,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[3][2] ,735,1400,1415,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[3][3] ,735,1416,1431,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[3][4] ,735,1432,1447,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[4][1] ,735,1448,1463,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[4][2] ,735,1464,1479,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[4][3] ,735,1480,1495,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[4][4] ,735,1496,1511,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[5][1] ,735,1512,1527,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[5][2] ,735,1528,1543,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[5][3] ,735,1544,1559,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[5][4] ,735,1560,1575,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[6][1] ,735,1576,1591,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[6][2] ,735,1592,1607,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[6][3] ,735,1608,1623,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[6][4] ,735,1624,1639,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[7][1] ,735,1640,1655,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[7][2] ,735,1656,1671,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[7][3] ,735,1672,1687,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistAEBpLonWrnNi.[7][4] ,735,1688,1703,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[1][1] ,735,1704,1719,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[1][2] ,735,1720,1735,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[1][3] ,735,1736,1751,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[1][4] ,735,1752,1767,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[2][1] ,735,1768,1783,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[2][2] ,735,1784,1799,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[2][3] ,735,1800,1815,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[2][4] ,735,1816,1831,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[3][1] ,735,1832,1847,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[3][2] ,735,1848,1863,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[3][3] ,735,1864,1879,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[3][4] ,735,1880,1895,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[4][1] ,735,1896,1911,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[4][2] ,735,1912,1927,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[4][3] ,735,1928,1943,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[4][4] ,735,1944,1959,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[5][1] ,735,1960,1975,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[5][2] ,735,1976,1991,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[5][3] ,735,1992,2007,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[5][4] ,735,2008,2023,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[6][1] ,735,2024,2039,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[6][2] ,735,2040,2055,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[6][3] ,735,2056,2071,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[6][4] ,735,2072,2087,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[7][1] ,735,2088,2103,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[7][2] ,735,2104,2119,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[7][3] ,735,2120,2135,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[7][4] ,735,2136,2151,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[8][1] ,735,2152,2167,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[8][2] ,735,2168,2183,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[8][3] ,735,2184,2199,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[8][4] ,735,2200,2215,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[9][1] ,735,2216,2231,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[9][2] ,735,2232,2247,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[9][3] ,735,2248,2263,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[9][4] ,735,2264,2279,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[10][1] ,735,2280,2295,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[10][2] ,735,2296,2311,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[10][3] ,735,2312,2327,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[10][4] ,735,2328,2343,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[11][1] ,735,2344,2359,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[11][2] ,735,2360,2375,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[11][3] ,735,2376,2391,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[11][4] ,735,2392,2407,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[12][1] ,735,2408,2423,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[12][2] ,735,2424,2439,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[12][3] ,735,2440,2455,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CdDistPedLatNoDrAt.[12][4] ,735,2456,2471,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[1][1] ,735,2472,2487,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[1][2] ,735,2488,2503,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[1][3] ,735,2504,2519,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[1][4] ,735,2520,2535,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[2][1] ,735,2536,2551,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[2][2] ,735,2552,2567,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[2][3] ,735,2568,2583,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[2][4] ,735,2584,2599,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[3][1] ,735,2600,2615,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[3][2] ,735,2616,2631,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[3][3] ,735,2632,2647,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[3][4] ,735,2648,2663,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[4][1] ,735,2664,2679,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[4][2] ,735,2680,2695,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[4][3] ,735,2696,2711,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[4][4] ,735,2712,2727,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[5][1] ,735,2728,2743,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[5][2] ,735,2744,2759,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[5][3] ,735,2760,2775,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[5][4] ,735,2776,2791,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[6][1] ,735,2792,2807,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[6][2] ,735,2808,2823,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[6][3] ,735,2824,2839,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[6][4] ,735,2840,2855,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[7][1] ,735,2856,2871,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[7][2] ,735,2872,2887,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[7][3] ,735,2888,2903,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityBrakeWCorRbst.[7][4] ,735,2904,2919,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[1][1] ,735,2920,2935,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[1][2] ,735,2936,2951,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[1][3] ,735,2952,2967,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[1][4] ,735,2968,2983,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[2][1] ,735,2984,2999,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[2][2] ,735,3000,3015,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[2][3] ,735,3016,3031,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[2][4] ,735,3032,3047,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[3][1] ,735,3048,3063,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[3][2] ,735,3064,3079,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[3][3] ,735,3080,3095,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[3][4] ,735,3096,3111,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[4][1] ,735,3112,3127,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[4][2] ,735,3128,3143,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[4][3] ,735,3144,3159,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[4][4] ,735,3160,3175,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[5][1] ,735,3176,3191,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[5][2] ,735,3192,3207,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[5][3] ,735,3208,3223,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[5][4] ,735,3224,3239,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[6][1] ,735,3240,3255,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[6][2] ,735,3256,3271,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[6][3] ,735,3272,3287,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[6][4] ,735,3288,3303,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[7][1] ,735,3304,3319,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[7][2] ,735,3320,3335,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[7][3] ,735,3336,3351,.01,200,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CityWarnWCorRbst.[7][4] ,735,3352,3367,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[1][1] ,735,3368,3383,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[1][2] ,735,3384,3399,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[1][3] ,735,3400,3415,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[1][4] ,735,3416,3431,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[1][5] ,735,3432,3447,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[1][6] ,735,3448,3463,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[2][1] ,735,3464,3479,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[2][2] ,735,3480,3495,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[2][3] ,735,3496,3511,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[2][4] ,735,3512,3527,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[2][5] ,735,3528,3543,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[2][6] ,735,3544,3559,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[3][1] ,735,3560,3575,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[3][2] ,735,3576,3591,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[3][3] ,735,3592,3607,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[3][4] ,735,3608,3623,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[3][5] ,735,3624,3639,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[3][6] ,735,3640,3655,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[4][1] ,735,3656,3671,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[4][2] ,735,3672,3687,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[4][3] ,735,3688,3703,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[4][4] ,735,3704,3719,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[4][5] ,735,3720,3735,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[4][6] ,735,3736,3751,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[5][1] ,735,3752,3767,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[5][2] ,735,3768,3783,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[5][3] ,735,3784,3799,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[5][4] ,735,3800,3815,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[5][5] ,735,3816,3831,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[5][6] ,735,3832,3847,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[6][1] ,735,3848,3863,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[6][2] ,735,3864,3879,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[6][3] ,735,3880,3895,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[6][4] ,735,3896,3911,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[6][5] ,735,3912,3927,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[6][6] ,735,3928,3943,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[7][1] ,735,3944,3959,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[7][2] ,735,3960,3975,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[7][3] ,735,3976,3991,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[7][4] ,735,3992,4007,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[7][5] ,735,4008,4023,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[7][6] ,735,4024,4039,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[8][1] ,735,4040,4055,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[8][2] ,735,4056,4071,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[8][3] ,735,4072,4087,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[8][4] ,735,4088,4103,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[8][5] ,735,4104,4119,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[8][6] ,735,4120,4135,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[9][1] ,735,4136,4151,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[9][2] ,735,4152,4167,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[9][3] ,735,4168,4183,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[9][4] ,735,4184,4199,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[9][5] ,735,4200,4215,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[9][6] ,735,4216,4231,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[10][1] ,735,4232,4247,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[10][2] ,735,4248,4263,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[10][3] ,735,4264,4279,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[10][4] ,735,4280,4295,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[10][5] ,735,4296,4311,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[10][6] ,735,4312,4327,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[11][1] ,735,4328,4343,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[11][2] ,735,4344,4359,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[11][3] ,735,4360,4375,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[11][4] ,735,4376,4391,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[11][5] ,735,4392,4407,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[11][6] ,735,4408,4423,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[12][1] ,735,4424,4439,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[12][2] ,735,4440,4455,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[12][3] ,735,4456,4471,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[12][4] ,735,4472,4487,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[12][5] ,735,4488,4503,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[12][6] ,735,4504,4519,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[13][1] ,735,4520,4535,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[13][2] ,735,4536,4551,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[13][3] ,735,4552,4567,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[13][4] ,735,4568,4583,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[13][5] ,735,4584,4599,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[13][6] ,735,4600,4615,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[14][1] ,735,4616,4631,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[14][2] ,735,4632,4647,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[14][3] ,735,4648,4663,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[14][4] ,735,4664,4679,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[14][5] ,735,4680,4695,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[14][6] ,735,4696,4711,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[15][1] ,735,4712,4727,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[15][2] ,735,4728,4743,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[15][3] ,735,4744,4759,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[15][4] ,735,4760,4775,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[15][5] ,735,4776,4791,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[15][6] ,735,4792,4807,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[16][1] ,735,4808,4823,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[16][2] ,735,4824,4839,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[16][3] ,735,4840,4855,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[16][4] ,735,4856,4871,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[16][5] ,735,4872,4887,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityPerfo.[16][6] ,735,4888,4903,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[1][1] ,735,4904,4919,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[1][2] ,735,4920,4935,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[1][3] ,735,4936,4951,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[1][4] ,735,4952,4967,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[1][5] ,735,4968,4983,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[1][6] ,735,4984,4999,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[2][1] ,735,5000,5015,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[2][2] ,735,5016,5031,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[2][3] ,735,5032,5047,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[2][4] ,735,5048,5063,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[2][5] ,735,5064,5079,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[2][6] ,735,5080,5095,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[3][1] ,735,5096,5111,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[3][2] ,735,5112,5127,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[3][3] ,735,5128,5143,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[3][4] ,735,5144,5159,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[3][5] ,735,5160,5175,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[3][6] ,735,5176,5191,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[4][1] ,735,5192,5207,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[4][2] ,735,5208,5223,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[4][3] ,735,5224,5239,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[4][4] ,735,5240,5255,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[4][5] ,735,5256,5271,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[4][6] ,735,5272,5287,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[5][1] ,735,5288,5303,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[5][2] ,735,5304,5319,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[5][3] ,735,5320,5335,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[5][4] ,735,5336,5351,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[5][5] ,735,5352,5367,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[5][6] ,735,5368,5383,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[6][1] ,735,5384,5399,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[6][2] ,735,5400,5415,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[6][3] ,735,5416,5431,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[6][4] ,735,5432,5447,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[6][5] ,735,5448,5463,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[6][6] ,735,5464,5479,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[7][1] ,735,5480,5495,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[7][2] ,735,5496,5511,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[7][3] ,735,5512,5527,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[7][4] ,735,5528,5543,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[7][5] ,735,5544,5559,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[7][6] ,735,5560,5575,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[8][1] ,735,5576,5591,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[8][2] ,735,5592,5607,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[8][3] ,735,5608,5623,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[8][4] ,735,5624,5639,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[8][5] ,735,5640,5655,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[8][6] ,735,5656,5671,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[9][1] ,735,5672,5687,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[9][2] ,735,5688,5703,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[9][3] ,735,5704,5719,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[9][4] ,735,5720,5735,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[9][5] ,735,5736,5751,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[9][6] ,735,5752,5767,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[10][1] ,735,5768,5783,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[10][2] ,735,5784,5799,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[10][3] ,735,5800,5815,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[10][4] ,735,5816,5831,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[10][5] ,735,5832,5847,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[10][6] ,735,5848,5863,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[11][1] ,735,5864,5879,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[11][2] ,735,5880,5895,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[11][3] ,735,5896,5911,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[11][4] ,735,5912,5927,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[11][5] ,735,5928,5943,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[11][6] ,735,5944,5959,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[12][1] ,735,5960,5975,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[12][2] ,735,5976,5991,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[12][3] ,735,5992,6007,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[12][4] ,735,6008,6023,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[12][5] ,735,6024,6039,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[12][6] ,735,6040,6055,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[13][1] ,735,6056,6071,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[13][2] ,735,6072,6087,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[13][3] ,735,6088,6103,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[13][4] ,735,6104,6119,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[13][5] ,735,6120,6135,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[13][6] ,735,6136,6151,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[14][1] ,735,6152,6167,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[14][2] ,735,6168,6183,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[14][3] ,735,6184,6199,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[14][4] ,735,6200,6215,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[14][5] ,735,6216,6231,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[14][6] ,735,6232,6247,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[15][1] ,735,6248,6263,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[15][2] ,735,6264,6279,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[15][3] ,735,6280,6295,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[15][4] ,735,6296,6311,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[15][5] ,735,6312,6327,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[15][6] ,735,6328,6343,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[16][1] ,735,6344,6359,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[16][2] ,735,6360,6375,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[16][3] ,735,6376,6391,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[16][4] ,735,6392,6407,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[16][5] ,735,6408,6423,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKCityRbst.[16][6] ,735,6424,6439,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[1][1] ,735,6440,6455,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[1][2] ,735,6456,6471,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[1][3] ,735,6472,6487,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[1][4] ,735,6488,6503,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[1][5] ,735,6504,6519,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[1][6] ,735,6520,6535,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[1][7] ,735,6536,6551,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[2][1] ,735,6552,6567,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[2][2] ,735,6568,6583,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[2][3] ,735,6584,6599,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[2][4] ,735,6600,6615,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[2][5] ,735,6616,6631,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[2][6] ,735,6632,6647,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[2][7] ,735,6648,6663,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[3][1] ,735,6664,6679,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[3][2] ,735,6680,6695,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[3][3] ,735,6696,6711,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[3][4] ,735,6712,6727,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[3][5] ,735,6728,6743,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[3][6] ,735,6744,6759,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[3][7] ,735,6760,6775,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[4][1] ,735,6776,6791,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[4][2] ,735,6792,6807,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[4][3] ,735,6808,6823,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[4][4] ,735,6824,6839,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[4][5] ,735,6840,6855,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[4][6] ,735,6856,6871,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[4][7] ,735,6872,6887,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[5][1] ,735,6888,6903,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[5][2] ,735,6904,6919,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[5][3] ,735,6920,6935,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[5][4] ,735,6936,6951,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[5][5] ,735,6952,6967,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[5][6] ,735,6968,6983,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[5][7] ,735,6984,6999,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[6][1] ,735,7000,7015,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[6][2] ,735,7016,7031,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[6][3] ,735,7032,7047,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[6][4] ,735,7048,7063,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[6][5] ,735,7064,7079,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[6][6] ,735,7080,7095,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[6][7] ,735,7096,7111,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[7][1] ,735,7112,7127,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[7][2] ,735,7128,7143,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[7][3] ,735,7144,7159,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[7][4] ,735,7160,7175,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[7][5] ,735,7176,7191,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[7][6] ,735,7192,7207,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[7][7] ,735,7208,7223,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[8][1] ,735,7224,7239,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[8][2] ,735,7240,7255,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[8][3] ,735,7256,7271,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[8][4] ,735,7272,7287,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[8][5] ,735,7288,7303,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[8][6] ,735,7304,7319,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[8][7] ,735,7320,7335,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[9][1] ,735,7336,7351,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[9][2] ,735,7352,7367,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[9][3] ,735,7368,7383,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[9][4] ,735,7384,7399,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[9][5] ,735,7400,7415,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[9][6] ,735,7416,7431,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[9][7] ,735,7432,7447,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[10][1] ,735,7448,7463,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[10][2] ,735,7464,7479,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[10][3] ,735,7480,7495,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[10][4] ,735,7496,7511,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[10][5] ,735,7512,7527,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[10][6] ,735,7528,7543,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Perfo.[10][7] ,735,7544,7559,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[1][1] ,735,7560,7575,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[1][2] ,735,7576,7591,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[1][3] ,735,7592,7607,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[1][4] ,735,7608,7623,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[1][5] ,735,7624,7639,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[1][6] ,735,7640,7655,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[1][7] ,735,7656,7671,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[2][1] ,735,7672,7687,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[2][2] ,735,7688,7703,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[2][3] ,735,7704,7719,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[2][4] ,735,7720,7735,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[2][5] ,735,7736,7751,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[2][6] ,735,7752,7767,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[2][7] ,735,7768,7783,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[3][1] ,735,7784,7799,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[3][2] ,735,7800,7815,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[3][3] ,735,7816,7831,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[3][4] ,735,7832,7847,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[3][5] ,735,7848,7863,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[3][6] ,735,7864,7879,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[3][7] ,735,7880,7895,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[4][1] ,735,7896,7911,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[4][2] ,735,7912,7927,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[4][3] ,735,7928,7943,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[4][4] ,735,7944,7959,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[4][5] ,735,7960,7975,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[4][6] ,735,7976,7991,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[4][7] ,735,7992,8007,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[5][1] ,735,8008,8023,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[5][2] ,735,8024,8039,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[5][3] ,735,8040,8055,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[5][4] ,735,8056,8071,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[5][5] ,735,8072,8087,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[5][6] ,735,8088,8103,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[5][7] ,735,8104,8119,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[6][1] ,735,8120,8135,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[6][2] ,735,8136,8151,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[6][3] ,735,8152,8167,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[6][4] ,735,8168,8183,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[6][5] ,735,8184,8199,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[6][6] ,735,8200,8215,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[6][7] ,735,8216,8231,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[7][1] ,735,8232,8247,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[7][2] ,735,8248,8263,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[7][3] ,735,8264,8279,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[7][4] ,735,8280,8295,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[7][5] ,735,8296,8311,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[7][6] ,735,8312,8327,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[7][7] ,735,8328,8343,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[8][1] ,735,8344,8359,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[8][2] ,735,8360,8375,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[8][3] ,735,8376,8391,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[8][4] ,735,8392,8407,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[8][5] ,735,8408,8423,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[8][6] ,735,8424,8439,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[8][7] ,735,8440,8455,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[9][1] ,735,8456,8471,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[9][2] ,735,8472,8487,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[9][3] ,735,8488,8503,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[9][4] ,735,8504,8519,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[9][5] ,735,8520,8535,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[9][6] ,735,8536,8551,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[9][7] ,735,8552,8567,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[10][1] ,735,8568,8583,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[10][2] ,735,8584,8599,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[10][3] ,735,8600,8615,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[10][4] ,735,8616,8631,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[10][5] ,735,8632,8647,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[10][6] ,735,8648,8663,.01,0,2,m,2261D4,6261D4,ff,P4.P_tng_m_EVO_CondDistBRKIU1Rbst.[10][7] ,735,24,39,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[1][1] ,735,40,55,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[1][2] ,735,56,71,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[1][3] ,735,72,87,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[1][4] ,735,88,103,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[1][5] ,735,104,119,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[1][6] ,735,120,135,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[1][7] ,735,136,151,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[2][1] ,735,152,167,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[2][2] ,735,168,183,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[2][3] ,735,184,199,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[2][4] ,735,200,215,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[2][5] ,735,216,231,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[2][6] ,735,232,247,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[2][7] ,735,248,263,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[3][1] ,735,264,279,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[3][2] ,735,280,295,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[3][3] ,735,296,311,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[3][4] ,735,312,327,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[3][5] ,735,328,343,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[3][6] ,735,344,359,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[3][7] ,735,360,375,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[4][1] ,735,376,391,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[4][2] ,735,392,407,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[4][3] ,735,408,423,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[4][4] ,735,424,439,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[4][5] ,735,440,455,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[4][6] ,735,456,471,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[4][7] ,735,472,487,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[5][1] ,735,488,503,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[5][2] ,735,504,519,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[5][3] ,735,520,535,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[5][4] ,735,536,551,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[5][5] ,735,552,567,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[5][6] ,735,568,583,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[5][7] ,735,584,599,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[6][1] ,735,600,615,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[6][2] ,735,616,631,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[6][3] ,735,632,647,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[6][4] ,735,648,663,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[6][5] ,735,664,679,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[6][6] ,735,680,695,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[6][7] ,735,696,711,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[7][1] ,735,712,727,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[7][2] ,735,728,743,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[7][3] ,735,744,759,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[7][4] ,735,760,775,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[7][5] ,735,776,791,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[7][6] ,735,792,807,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[7][7] ,735,808,823,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[8][1] ,735,824,839,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[8][2] ,735,840,855,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[8][3] ,735,856,871,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[8][4] ,735,872,887,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[8][5] ,735,888,903,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[8][6] ,735,904,919,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[8][7] ,735,920,935,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[9][1] ,735,936,951,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[9][2] ,735,952,967,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[9][3] ,735,968,983,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[9][4] ,735,984,999,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[9][5] ,735,1000,1015,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[9][6] ,735,1016,1031,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[9][7] ,735,1032,1047,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[10][1] ,735,1048,1063,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[10][2] ,735,1064,1079,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[10][3] ,735,1080,1095,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[10][4] ,735,1096,1111,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[10][5] ,735,1112,1127,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[10][6] ,735,1128,1143,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Perfo.[10][7] ,735,1144,1159,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[1][1] ,735,1160,1175,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[1][2] ,735,1176,1191,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[1][3] ,735,1192,1207,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[1][4] ,735,1208,1223,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[1][5] ,735,1224,1239,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[1][6] ,735,1240,1255,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[1][7] ,735,1256,1271,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[2][1] ,735,1272,1287,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[2][2] ,735,1288,1303,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[2][3] ,735,1304,1319,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[2][4] ,735,1320,1335,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[2][5] ,735,1336,1351,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[2][6] ,735,1352,1367,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[2][7] ,735,1368,1383,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[3][1] ,735,1384,1399,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[3][2] ,735,1400,1415,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[3][3] ,735,1416,1431,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[3][4] ,735,1432,1447,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[3][5] ,735,1448,1463,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[3][6] ,735,1464,1479,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[3][7] ,735,1480,1495,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[4][1] ,735,1496,1511,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[4][2] ,735,1512,1527,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[4][3] ,735,1528,1543,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[4][4] ,735,1544,1559,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[4][5] ,735,1560,1575,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[4][6] ,735,1576,1591,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[4][7] ,735,1592,1607,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[5][1] ,735,1608,1623,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[5][2] ,735,1624,1639,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[5][3] ,735,1640,1655,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[5][4] ,735,1656,1671,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[5][5] ,735,1672,1687,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[5][6] ,735,1688,1703,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[5][7] ,735,1704,1719,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[6][1] ,735,1720,1735,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[6][2] ,735,1736,1751,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[6][3] ,735,1752,1767,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[6][4] ,735,1768,1783,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[6][5] ,735,1784,1799,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[6][6] ,735,1800,1815,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[6][7] ,735,1816,1831,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[7][1] ,735,1832,1847,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[7][2] ,735,1848,1863,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[7][3] ,735,1864,1879,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[7][4] ,735,1880,1895,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[7][5] ,735,1896,1911,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[7][6] ,735,1912,1927,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[7][7] ,735,1928,1943,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[8][1] ,735,1944,1959,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[8][2] ,735,1960,1975,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[8][3] ,735,1976,1991,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[8][4] ,735,1992,2007,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[8][5] ,735,2008,2023,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[8][6] ,735,2024,2039,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[8][7] ,735,2040,2055,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[9][1] ,735,2056,2071,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[9][2] ,735,2072,2087,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[9][3] ,735,2088,2103,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[9][4] ,735,2104,2119,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[9][5] ,735,2120,2135,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[9][6] ,735,2136,2151,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[9][7] ,735,2152,2167,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[10][1] ,735,2168,2183,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[10][2] ,735,2184,2199,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[10][3] ,735,2200,2215,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[10][4] ,735,2216,2231,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[10][5] ,735,2232,2247,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[10][6] ,735,2248,2263,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistBRKIU2Rbst.[10][7] ,735,2264,2279,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[1][1] ,735,2280,2295,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[1][2] ,735,2296,2311,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[1][3] ,735,2312,2327,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[1][4] ,735,2328,2343,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[1][5] ,735,2344,2359,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[1][6] ,735,2360,2375,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[2][1] ,735,2376,2391,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[2][2] ,735,2392,2407,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[2][3] ,735,2408,2423,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[2][4] ,735,2424,2439,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[2][5] ,735,2440,2455,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[2][6] ,735,2456,2471,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[3][1] ,735,2472,2487,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[3][2] ,735,2488,2503,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[3][3] ,735,2504,2519,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[3][4] ,735,2520,2535,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[3][5] ,735,2536,2551,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[3][6] ,735,2552,2567,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[4][1] ,735,2568,2583,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[4][2] ,735,2584,2599,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[4][3] ,735,2600,2615,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[4][4] ,735,2616,2631,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[4][5] ,735,2632,2647,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[4][6] ,735,2648,2663,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[5][1] ,735,2664,2679,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[5][2] ,735,2680,2695,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[5][3] ,735,2696,2711,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[5][4] ,735,2712,2727,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[5][5] ,735,2728,2743,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[5][6] ,735,2744,2759,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[6][1] ,735,2760,2775,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[6][2] ,735,2776,2791,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[6][3] ,735,2792,2807,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[6][4] ,735,2808,2823,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[6][5] ,735,2824,2839,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[6][6] ,735,2840,2855,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[7][1] ,735,2856,2871,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[7][2] ,735,2872,2887,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[7][3] ,735,2888,2903,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[7][4] ,735,2904,2919,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[7][5] ,735,2920,2935,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[7][6] ,735,2936,2951,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[8][1] ,735,2952,2967,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[8][2] ,735,2968,2983,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[8][3] ,735,2984,2999,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[8][4] ,735,3000,3015,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[8][5] ,735,3016,3031,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[8][6] ,735,3032,3047,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[9][1] ,735,3048,3063,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[9][2] ,735,3064,3079,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[9][3] ,735,3080,3095,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[9][4] ,735,3096,3111,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[9][5] ,735,3112,3127,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[9][6] ,735,3128,3143,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[10][1] ,735,3144,3159,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[10][2] ,735,3160,3175,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[10][3] ,735,3176,3191,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[10][4] ,735,3192,3207,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[10][5] ,735,3208,3223,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[10][6] ,735,3224,3239,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[11][1] ,735,3240,3255,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[11][2] ,735,3256,3271,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[11][3] ,735,3272,3287,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[11][4] ,735,3288,3303,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[11][5] ,735,3304,3319,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[11][6] ,735,3320,3335,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[12][1] ,735,3336,3351,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[12][2] ,735,3352,3367,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[12][3] ,735,3368,3383,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[12][4] ,735,3384,3399,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[12][5] ,735,3400,3415,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[12][6] ,735,3416,3431,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[13][1] ,735,3432,3447,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[13][2] ,735,3448,3463,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[13][3] ,735,3464,3479,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[13][4] ,735,3480,3495,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[13][5] ,735,3496,3511,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[13][6] ,735,3512,3527,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[14][1] ,735,3528,3543,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[14][2] ,735,3544,3559,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[14][3] ,735,3560,3575,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[14][4] ,735,3576,3591,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[14][5] ,735,3592,3607,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[14][6] ,735,3608,3623,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[15][1] ,735,3624,3639,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[15][2] ,735,3640,3655,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[15][3] ,735,3656,3671,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[15][4] ,735,3672,3687,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[15][5] ,735,3688,3703,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[15][6] ,735,3704,3719,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[16][1] ,735,3720,3735,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[16][2] ,735,3736,3751,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[16][3] ,735,3752,3767,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[16][4] ,735,3768,3783,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[16][5] ,735,3784,3799,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityPerfo.[16][6] ,735,3800,3815,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[1][1] ,735,3816,3831,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[1][2] ,735,3832,3847,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[1][3] ,735,3848,3863,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[1][4] ,735,3864,3879,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[1][5] ,735,3880,3895,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[1][6] ,735,3896,3911,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[2][1] ,735,3912,3927,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[2][2] ,735,3928,3943,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[2][3] ,735,3944,3959,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[2][4] ,735,3960,3975,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[2][5] ,735,3976,3991,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[2][6] ,735,3992,4007,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[3][1] ,735,4008,4023,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[3][2] ,735,4024,4039,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[3][3] ,735,4040,4055,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[3][4] ,735,4056,4071,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[3][5] ,735,4072,4087,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[3][6] ,735,4088,4103,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[4][1] ,735,4104,4119,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[4][2] ,735,4120,4135,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[4][3] ,735,4136,4151,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[4][4] ,735,4152,4167,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[4][5] ,735,4168,4183,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[4][6] ,735,4184,4199,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[5][1] ,735,4200,4215,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[5][2] ,735,4216,4231,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[5][3] ,735,4232,4247,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[5][4] ,735,4248,4263,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[5][5] ,735,4264,4279,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[5][6] ,735,4280,4295,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[6][1] ,735,4296,4311,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[6][2] ,735,4312,4327,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[6][3] ,735,4328,4343,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[6][4] ,735,4344,4359,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[6][5] ,735,4360,4375,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[6][6] ,735,4376,4391,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[7][1] ,735,4392,4407,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[7][2] ,735,4408,4423,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[7][3] ,735,4424,4439,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[7][4] ,735,4440,4455,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[7][5] ,735,4456,4471,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[7][6] ,735,4472,4487,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[8][1] ,735,4488,4503,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[8][2] ,735,4504,4519,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[8][3] ,735,4520,4535,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[8][4] ,735,4536,4551,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[8][5] ,735,4552,4567,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[8][6] ,735,4568,4583,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[9][1] ,735,4584,4599,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[9][2] ,735,4600,4615,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[9][3] ,735,4616,4631,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[9][4] ,735,4632,4647,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[9][5] ,735,4648,4663,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[9][6] ,735,4664,4679,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[10][1] ,735,4680,4695,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[10][2] ,735,4696,4711,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[10][3] ,735,4712,4727,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[10][4] ,735,4728,4743,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[10][5] ,735,4744,4759,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[10][6] ,735,4760,4775,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[11][1] ,735,4776,4791,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[11][2] ,735,4792,4807,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[11][3] ,735,4808,4823,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[11][4] ,735,4824,4839,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[11][5] ,735,4840,4855,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[11][6] ,735,4856,4871,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[12][1] ,735,4872,4887,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[12][2] ,735,4888,4903,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[12][3] ,735,4904,4919,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[12][4] ,735,4920,4935,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[12][5] ,735,4936,4951,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[12][6] ,735,4952,4967,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[13][1] ,735,4968,4983,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[13][2] ,735,4984,4999,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[13][3] ,735,5000,5015,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[13][4] ,735,5016,5031,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[13][5] ,735,5032,5047,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[13][6] ,735,5048,5063,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[14][1] ,735,5064,5079,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[14][2] ,735,5080,5095,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[14][3] ,735,5096,5111,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[14][4] ,735,5112,5127,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[14][5] ,735,5128,5143,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[14][6] ,735,5144,5159,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[15][1] ,735,5160,5175,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[15][2] ,735,5176,5191,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[15][3] ,735,5192,5207,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[15][4] ,735,5208,5223,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[15][5] ,735,5224,5239,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[15][6] ,735,5240,5255,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[16][1] ,735,5256,5271,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[16][2] ,735,5272,5287,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[16][3] ,735,5288,5303,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[16][4] ,735,5304,5319,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[16][5] ,735,5320,5335,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWCityRbst.[16][6] ,735,5336,5351,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[1][1] ,735,5352,5367,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[1][2] ,735,5368,5383,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[1][3] ,735,5384,5399,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[1][4] ,735,5400,5415,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[1][5] ,735,5416,5431,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[1][6] ,735,5432,5447,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[1][7] ,735,5448,5463,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[2][1] ,735,5464,5479,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[2][2] ,735,5480,5495,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[2][3] ,735,5496,5511,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[2][4] ,735,5512,5527,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[2][5] ,735,5528,5543,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[2][6] ,735,5544,5559,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[2][7] ,735,5560,5575,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[3][1] ,735,5576,5591,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[3][2] ,735,5592,5607,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[3][3] ,735,5608,5623,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[3][4] ,735,5624,5639,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[3][5] ,735,5640,5655,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[3][6] ,735,5656,5671,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[3][7] ,735,5672,5687,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[4][1] ,735,5688,5703,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[4][2] ,735,5704,5719,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[4][3] ,735,5720,5735,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[4][4] ,735,5736,5751,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[4][5] ,735,5752,5767,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[4][6] ,735,5768,5783,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[4][7] ,735,5784,5799,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[5][1] ,735,5800,5815,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[5][2] ,735,5816,5831,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[5][3] ,735,5832,5847,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[5][4] ,735,5848,5863,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[5][5] ,735,5864,5879,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[5][6] ,735,5880,5895,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[5][7] ,735,5896,5911,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[6][1] ,735,5912,5927,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[6][2] ,735,5928,5943,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[6][3] ,735,5944,5959,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[6][4] ,735,5960,5975,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[6][5] ,735,5976,5991,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[6][6] ,735,5992,6007,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[6][7] ,735,6008,6023,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[7][1] ,735,6024,6039,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[7][2] ,735,6040,6055,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[7][3] ,735,6056,6071,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[7][4] ,735,6072,6087,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[7][5] ,735,6088,6103,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[7][6] ,735,6104,6119,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[7][7] ,735,6120,6135,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[8][1] ,735,6136,6151,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[8][2] ,735,6152,6167,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[8][3] ,735,6168,6183,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[8][4] ,735,6184,6199,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[8][5] ,735,6200,6215,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[8][6] ,735,6216,6231,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIUPerfo.[8][7] ,735,6232,6247,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[1][1] ,735,6248,6263,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[1][2] ,735,6264,6279,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[1][3] ,735,6280,6295,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[1][4] ,735,6296,6311,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[1][5] ,735,6312,6327,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[1][6] ,735,6328,6343,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[1][7] ,735,6344,6359,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[2][1] ,735,6360,6375,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[2][2] ,735,6376,6391,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[2][3] ,735,6392,6407,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[2][4] ,735,6408,6423,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[2][5] ,735,6424,6439,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[2][6] ,735,6440,6455,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[2][7] ,735,6456,6471,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[3][1] ,735,6472,6487,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[3][2] ,735,6488,6503,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[3][3] ,735,6504,6519,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[3][4] ,735,6520,6535,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[3][5] ,735,6536,6551,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[3][6] ,735,6552,6567,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[3][7] ,735,6568,6583,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[4][1] ,735,6584,6599,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[4][2] ,735,6600,6615,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[4][3] ,735,6616,6631,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[4][4] ,735,6632,6647,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[4][5] ,735,6648,6663,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[4][6] ,735,6664,6679,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[4][7] ,735,6680,6695,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[5][1] ,735,6696,6711,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[5][2] ,735,6712,6727,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[5][3] ,735,6728,6743,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[5][4] ,735,6744,6759,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[5][5] ,735,6760,6775,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[5][6] ,735,6776,6791,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[5][7] ,735,6792,6807,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[6][1] ,735,6808,6823,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[6][2] ,735,6824,6839,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[6][3] ,735,6840,6855,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[6][4] ,735,6856,6871,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[6][5] ,735,6872,6887,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[6][6] ,735,6888,6903,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[6][7] ,735,6904,6919,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[7][1] ,735,6920,6935,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[7][2] ,735,6936,6951,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[7][3] ,735,6952,6967,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[7][4] ,735,6968,6983,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[7][5] ,735,6984,6999,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[7][6] ,735,7000,7015,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[7][7] ,735,7016,7031,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[8][1] ,735,7032,7047,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[8][2] ,735,7048,7063,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[8][3] ,735,7064,7079,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[8][4] ,735,7080,7095,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[8][5] ,735,7096,7111,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[8][6] ,735,7112,7127,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_CondDistFCWIURbst.[8][7] ,735,7128,7143,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[1][1] ,735,7144,7159,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[1][2] ,735,7160,7175,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[1][3] ,735,7176,7191,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[1][4] ,735,7192,7207,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[2][1] ,735,7208,7223,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[2][2] ,735,7224,7239,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[2][3] ,735,7240,7255,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[2][4] ,735,7256,7271,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[3][1] ,735,7272,7287,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[3][2] ,735,7288,7303,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[3][3] ,735,7304,7319,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[3][4] ,735,7320,7335,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[4][1] ,735,7336,7351,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[4][2] ,735,7352,7367,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[4][3] ,735,7368,7383,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[4][4] ,735,7384,7399,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[5][1] ,735,7400,7415,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[5][2] ,735,7416,7431,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[5][3] ,735,7432,7447,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[5][4] ,735,7448,7463,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[6][1] ,735,7464,7479,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[6][2] ,735,7480,7495,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[6][3] ,735,7496,7511,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[6][4] ,735,7512,7527,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[7][1] ,735,7528,7543,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[7][2] ,735,7544,7559,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[7][3] ,735,7560,7575,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[7][4] ,735,7576,7591,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[8][1] ,735,7592,7607,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[8][2] ,735,7608,7623,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[8][3] ,735,7624,7639,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[8][4] ,735,7640,7655,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[9][1] ,735,7656,7671,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[9][2] ,735,7672,7687,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[9][3] ,735,7688,7703,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[9][4] ,735,7704,7719,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[10][1] ,735,7720,7735,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[10][2] ,735,7736,7751,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[10][3] ,735,7752,7767,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[10][4] ,735,7768,7783,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[11][1] ,735,7784,7799,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[11][2] ,735,7800,7815,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[11][3] ,735,7816,7831,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[11][4] ,735,7832,7847,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[12][1] ,735,7848,7863,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[12][2] ,735,7864,7879,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[12][3] ,735,7880,7895,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistAEBpLonNoDrAtNi.[12][4] ,735,7896,7911,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[1][1] ,735,7912,7927,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[1][2] ,735,7928,7943,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[1][3] ,735,7944,7959,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[1][4] ,735,7960,7975,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[2][1] ,735,7976,7991,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[2][2] ,735,7992,8007,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[2][3] ,735,8008,8023,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[2][4] ,735,8024,8039,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[3][1] ,735,8040,8055,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[3][2] ,735,8056,8071,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[3][3] ,735,8072,8087,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[3][4] ,735,8088,8103,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[4][1] ,735,8104,8119,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[4][2] ,735,8120,8135,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[4][3] ,735,8136,8151,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[4][4] ,735,8152,8167,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[5][1] ,735,8168,8183,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[5][2] ,735,8184,8199,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[5][3] ,735,8200,8215,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[5][4] ,735,8216,8231,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[6][1] ,735,8232,8247,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[6][2] ,735,8248,8263,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[6][3] ,735,8264,8279,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[6][4] ,735,8280,8295,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[7][1] ,735,8296,8311,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[7][2] ,735,8312,8327,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[7][3] ,735,8328,8343,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[7][4] ,735,8344,8359,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[8][1] ,735,8360,8375,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[8][2] ,735,8376,8391,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[8][3] ,735,8392,8407,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[8][4] ,735,8408,8423,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[9][1] ,735,8424,8439,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[9][2] ,735,8440,8455,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[9][3] ,735,8456,8471,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[9][4] ,735,8472,8487,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[10][1] ,735,8488,8503,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[10][2] ,735,8504,8519,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[10][3] ,735,8520,8535,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[10][4] ,735,8536,8551,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[11][1] ,735,8552,8567,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[11][2] ,735,8568,8583,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[11][3] ,735,8584,8599,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[11][4] ,735,8600,8615,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[12][1] ,735,8616,8631,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[12][2] ,735,8632,8647,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[12][3] ,735,8648,8663,.01,0,2,m,2261D5,6261D5,ff,P5.P_tng_m_EVO_DistPedLatNoDrAtNi.[12][4] ,735,24,39,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[1][1] ,735,40,55,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[1][2] ,735,56,71,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[1][3] ,735,72,87,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[1][4] ,735,88,103,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[2][1] ,735,104,119,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[2][2] ,735,120,135,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[2][3] ,735,136,151,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[2][4] ,735,152,167,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[3][1] ,735,168,183,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[3][2] ,735,184,199,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[3][3] ,735,200,215,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[3][4] ,735,216,231,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[4][1] ,735,232,247,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[4][2] ,735,248,263,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[4][3] ,735,264,279,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[4][4] ,735,280,295,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[5][1] ,735,296,311,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[5][2] ,735,312,327,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[5][3] ,735,328,343,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[5][4] ,735,344,359,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[6][1] ,735,360,375,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[6][2] ,735,376,391,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[6][3] ,735,392,407,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[6][4] ,735,408,423,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[7][1] ,735,424,439,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[7][2] ,735,440,455,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[7][3] ,735,456,471,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU1BrakeWCorRbst.[7][4] ,735,472,487,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[1][1] ,735,488,503,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[1][2] ,735,504,519,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[1][3] ,735,520,535,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[1][4] ,735,536,551,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[2][1] ,735,552,567,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[2][2] ,735,568,583,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[2][3] ,735,584,599,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[2][4] ,735,600,615,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[3][1] ,735,616,631,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[3][2] ,735,632,647,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[3][3] ,735,648,663,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[3][4] ,735,664,679,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[4][1] ,735,680,695,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[4][2] ,735,696,711,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[4][3] ,735,712,727,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[4][4] ,735,728,743,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[5][1] ,735,744,759,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[5][2] ,735,760,775,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[5][3] ,735,776,791,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[5][4] ,735,792,807,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[6][1] ,735,808,823,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[6][2] ,735,824,839,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[6][3] ,735,840,855,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[6][4] ,735,856,871,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[7][1] ,735,872,887,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[7][2] ,735,888,903,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[7][3] ,735,904,919,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IU2BrakeWCorRbst.[7][4] ,735,920,935,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[1][1] ,735,936,951,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[1][2] ,735,952,967,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[1][3] ,735,968,983,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[1][4] ,735,984,999,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[2][1] ,735,1000,1015,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[2][2] ,735,1016,1031,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[2][3] ,735,1032,1047,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[2][4] ,735,1048,1063,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[3][1] ,735,1064,1079,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[3][2] ,735,1080,1095,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[3][3] ,735,1096,1111,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[3][4] ,735,1112,1127,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[4][1] ,735,1128,1143,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[4][2] ,735,1144,1159,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[4][3] ,735,1160,1175,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[4][4] ,735,1176,1191,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[5][1] ,735,1192,1207,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[5][2] ,735,1208,1223,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[5][3] ,735,1224,1239,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[5][4] ,735,1240,1255,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[6][1] ,735,1256,1271,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[6][2] ,735,1272,1287,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[6][3] ,735,1288,1303,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[6][4] ,735,1304,1319,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[7][1] ,735,1320,1335,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[7][2] ,735,1336,1351,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[7][3] ,735,1352,1367,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_IUWarnWCorRbst.[7][4] ,735,1368,1383,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[1][1] ,735,1384,1399,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[1][2] ,735,1400,1415,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[1][3] ,735,1416,1431,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[1][4] ,735,1432,1447,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[1][5] ,735,1448,1463,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[1][6] ,735,1464,1479,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[2][1] ,735,1480,1495,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[2][2] ,735,1496,1511,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[2][3] ,735,1512,1527,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[2][4] ,735,1528,1543,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[2][5] ,735,1544,1559,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[2][6] ,735,1560,1575,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[3][1] ,735,1576,1591,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[3][2] ,735,1592,1607,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[3][3] ,735,1608,1623,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[3][4] ,735,1624,1639,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[3][5] ,735,1640,1655,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[3][6] ,735,1656,1671,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[4][1] ,735,1672,1687,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[4][2] ,735,1688,1703,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[4][3] ,735,1704,1719,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[4][4] ,735,1720,1735,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[4][5] ,735,1736,1751,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[4][6] ,735,1752,1767,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[5][1] ,735,1768,1783,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[5][2] ,735,1784,1799,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[5][3] ,735,1800,1815,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[5][4] ,735,1816,1831,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[5][5] ,735,1832,1847,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[5][6] ,735,1848,1863,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[6][1] ,735,1864,1879,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[6][2] ,735,1880,1895,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[6][3] ,735,1896,1911,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[6][4] ,735,1912,1927,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[6][5] ,735,1928,1943,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtNiPed.[6][6] ,735,1944,1959,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[1][1] ,735,1960,1975,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[1][2] ,735,1976,1991,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[1][3] ,735,1992,2007,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[1][4] ,735,2008,2023,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[1][5] ,735,2024,2039,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[1][6] ,735,2040,2055,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[2][1] ,735,2056,2071,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[2][2] ,735,2072,2087,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[2][3] ,735,2088,2103,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[2][4] ,735,2104,2119,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[2][5] ,735,2120,2135,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[2][6] ,735,2136,2151,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[3][1] ,735,2152,2167,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[3][2] ,735,2168,2183,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[3][3] ,735,2184,2199,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[3][4] ,735,2200,2215,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[3][5] ,735,2216,2231,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[3][6] ,735,2232,2247,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[4][1] ,735,2248,2263,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[4][2] ,735,2264,2279,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[4][3] ,735,2280,2295,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[4][4] ,735,2296,2311,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[4][5] ,735,2312,2327,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[4][6] ,735,2328,2343,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[5][1] ,735,2344,2359,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[5][2] ,735,2360,2375,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[5][3] ,735,2376,2391,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[5][4] ,735,2392,2407,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[5][5] ,735,2408,2423,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[5][6] ,735,2424,2439,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[6][1] ,735,2440,2455,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[6][2] ,735,2456,2471,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[6][3] ,735,2472,2487,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[6][4] ,735,2488,2503,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[6][5] ,735,2504,2519,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorDrAtPed.[6][6] ,735,2520,2535,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[1][1] ,735,2536,2551,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[1][2] ,735,2552,2567,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[1][3] ,735,2568,2583,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[1][4] ,735,2584,2599,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[1][5] ,735,2600,2615,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[1][6] ,735,2616,2631,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[2][1] ,735,2632,2647,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[2][2] ,735,2648,2663,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[2][3] ,735,2664,2679,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[2][4] ,735,2680,2695,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[2][5] ,735,2696,2711,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[2][6] ,735,2712,2727,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[3][1] ,735,2728,2743,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[3][2] ,735,2744,2759,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[3][3] ,735,2760,2775,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[3][4] ,735,2776,2791,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[3][5] ,735,2792,2807,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[3][6] ,735,2808,2823,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[4][1] ,735,2824,2839,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[4][2] ,735,2840,2855,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[4][3] ,735,2856,2871,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[4][4] ,735,2872,2887,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[4][5] ,735,2888,2903,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[4][6] ,735,2904,2919,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[5][1] ,735,2920,2935,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[5][2] ,735,2936,2951,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[5][3] ,735,2952,2967,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[5][4] ,735,2968,2983,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[5][5] ,735,2984,2999,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[5][6] ,735,3000,3015,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[6][1] ,735,3016,3031,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[6][2] ,735,3032,3047,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[6][3] ,735,3048,3063,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[6][4] ,735,3064,3079,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[6][5] ,735,3080,3095,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtNiPed.[6][6] ,735,3096,3111,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[1][1] ,735,3112,3127,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[1][2] ,735,3128,3143,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[1][3] ,735,3144,3159,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[1][4] ,735,3160,3175,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[1][5] ,735,3176,3191,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[1][6] ,735,3192,3207,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[2][1] ,735,3208,3223,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[2][2] ,735,3224,3239,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[2][3] ,735,3240,3255,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[2][4] ,735,3256,3271,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[2][5] ,735,3272,3287,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[2][6] ,735,3288,3303,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[3][1] ,735,3304,3319,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[3][2] ,735,3320,3335,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[3][3] ,735,3336,3351,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[3][4] ,735,3352,3367,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[3][5] ,735,3368,3383,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[3][6] ,735,3384,3399,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[4][1] ,735,3400,3415,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[4][2] ,735,3416,3431,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[4][3] ,735,3432,3447,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[4][4] ,735,3448,3463,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[4][5] ,735,3464,3479,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[4][6] ,735,3480,3495,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[5][1] ,735,3496,3511,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[5][2] ,735,3512,3527,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[5][3] ,735,3528,3543,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[5][4] ,735,3544,3559,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[5][5] ,735,3560,3575,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[5][6] ,735,3576,3591,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[6][1] ,735,3592,3607,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[6][2] ,735,3608,3623,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[6][3] ,735,3624,3639,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[6][4] ,735,3640,3655,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[6][5] ,735,3656,3671,.01,-30,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecBrkWCorNoDrAtPed.[6][6] ,735,3672,3687,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[1][1] ,735,3688,3703,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[1][2] ,735,3704,3719,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[1][3] ,735,3720,3735,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[1][4] ,735,3736,3751,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[1][5] ,735,3752,3767,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[1][6] ,735,3768,3783,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[2][1] ,735,3784,3799,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[2][2] ,735,3800,3815,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[2][3] ,735,3816,3831,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[2][4] ,735,3832,3847,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[2][5] ,735,3848,3863,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[2][6] ,735,3864,3879,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[3][1] ,735,3880,3895,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[3][2] ,735,3896,3911,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[3][3] ,735,3912,3927,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[3][4] ,735,3928,3943,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[3][5] ,735,3944,3959,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[3][6] ,735,3960,3975,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[4][1] ,735,3976,3991,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[4][2] ,735,3992,4007,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[4][3] ,735,4008,4023,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[4][4] ,735,4024,4039,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[4][5] ,735,4040,4055,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[4][6] ,735,4056,4071,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[5][1] ,735,4072,4087,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[5][2] ,735,4088,4103,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[5][3] ,735,4104,4119,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[5][4] ,735,4120,4135,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[5][5] ,735,4136,4151,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[5][6] ,735,4152,4167,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[6][1] ,735,4168,4183,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[6][2] ,735,4184,4199,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[6][3] ,735,4200,4215,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[6][4] ,735,4216,4231,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[6][5] ,735,4232,4247,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPed.[6][6] ,735,4248,4263,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[1][1] ,735,4264,4279,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[1][2] ,735,4280,4295,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[1][3] ,735,4296,4311,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[1][4] ,735,4312,4327,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[1][5] ,735,4328,4343,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[1][6] ,735,4344,4359,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[2][1] ,735,4360,4375,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[2][2] ,735,4376,4391,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[2][3] ,735,4392,4407,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[2][4] ,735,4408,4423,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[2][5] ,735,4424,4439,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[2][6] ,735,4440,4455,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[3][1] ,735,4456,4471,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[3][2] ,735,4472,4487,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[3][3] ,735,4488,4503,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[3][4] ,735,4504,4519,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[3][5] ,735,4520,4535,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[3][6] ,735,4536,4551,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[4][1] ,735,4552,4567,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[4][2] ,735,4568,4583,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[4][3] ,735,4584,4599,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[4][4] ,735,4600,4615,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[4][5] ,735,4616,4631,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[4][6] ,735,4632,4647,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[5][1] ,735,4648,4663,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[5][2] ,735,4664,4679,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[5][3] ,735,4680,4695,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[5][4] ,735,4696,4711,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[5][5] ,735,4712,4727,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[5][6] ,735,4728,4743,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[6][1] ,735,4744,4759,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[6][2] ,735,4760,4775,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[6][3] ,735,4776,4791,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[6][4] ,735,4792,4807,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[6][5] ,735,4808,4823,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_VecWrnWCorPedNi.[6][6] ,735,4824,4839,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[1][1] ,735,4840,4855,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[1][2] ,735,4856,4871,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[1][3] ,735,4872,4887,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[1][4] ,735,4888,4903,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[2][1] ,735,4904,4919,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[2][2] ,735,4920,4935,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[2][3] ,735,4936,4951,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[2][4] ,735,4952,4967,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[3][1] ,735,4968,4983,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[3][2] ,735,4984,4999,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[3][3] ,735,5000,5015,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[3][4] ,735,5016,5031,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[4][1] ,735,5032,5047,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[4][2] ,735,5048,5063,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[4][3] ,735,5064,5079,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[4][4] ,735,5080,5095,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[5][1] ,735,5096,5111,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[5][2] ,735,5112,5127,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[5][3] ,735,5128,5143,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[5][4] ,735,5144,5159,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[6][1] ,735,5160,5175,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[6][2] ,735,5176,5191,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[6][3] ,735,5192,5207,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[6][4] ,735,5208,5223,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[7][1] ,735,5224,5239,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[7][2] ,735,5240,5255,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[7][3] ,735,5256,5271,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_IU.[7][4] ,735,5272,5287,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[1][1] ,735,5288,5303,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[1][2] ,735,5304,5319,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[1][3] ,735,5320,5335,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[1][4] ,735,5336,5351,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[2][1] ,735,5352,5367,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[2][2] ,735,5368,5383,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[2][3] ,735,5384,5399,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[2][4] ,735,5400,5415,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[3][1] ,735,5416,5431,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[3][2] ,735,5432,5447,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[3][3] ,735,5448,5463,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[3][4] ,735,5464,5479,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[4][1] ,735,5480,5495,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[4][2] ,735,5496,5511,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[4][3] ,735,5512,5527,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[4][4] ,735,5528,5543,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[5][1] ,735,5544,5559,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[5][2] ,735,5560,5575,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[5][3] ,735,5576,5591,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[5][4] ,735,5592,5607,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[6][1] ,735,5608,5623,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[6][2] ,735,5624,5639,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[6][3] ,735,5640,5655,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[6][4] ,735,5656,5671,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[7][1] ,735,5672,5687,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[7][2] ,735,5688,5703,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[7][3] ,735,5704,5719,.01,200,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_WarnWCorPerfo_city.[7][4] ,735,5720,5735,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YImpVecPedLonBrk.[1][1] ,735,5736,5751,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YImpVecPedLonBrk.[1][2] ,735,5752,5767,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YImpVecPedLonBrk.[1][3] ,735,5768,5783,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YImpVecPedLonBrk.[1][4] ,735,5784,5799,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YImpVecPedLonWrn.[1][1] ,735,5800,5815,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YImpVecPedLonWrn.[1][2] ,735,5816,5831,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YImpVecPedLonWrn.[1][3] ,735,5832,5847,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YImpVecPedLonWrn.[1][4] ,735,5848,5863,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YimpactVectPedLatBraking.[1][1] ,735,5864,5879,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YimpactVectPedLatBraking.[1][2] ,735,5880,5895,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YimpactVectPedLatBraking.[1][3] ,735,5896,5911,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YimpactVectPedLatBraking.[1][4] ,735,5912,5927,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YimpactVectPedLatWarning.[1][1] ,735,5928,5943,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YimpactVectPedLatWarning.[1][2] ,735,5944,5959,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YimpactVectPedLatWarning.[1][3] ,735,5960,5975,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_EVO_YimpactVectPedLatWarning.[1][4] ,735,5976,5983,.1,0,1,m,2261D6,6261D6,ff,P6.P_tng_m_E_BrkPedNaCrdHalfWd ,735,5984,5999,.01,0,2,m,2261D6,6261D6,ff,P6.P_tng_m_E_BrkPedNaCrdHalfWdThd ,735,6000,6007,.1,0,1,m,2261D6,6261D6,ff,P6.P_tng_m_E_WrnPedNaCrdHalfWd ,735,6008,6023,.01,0,2,kph,2261D6,6261D6,ff,P6.P_tng_m_E_WrnPedNaCrdHalfWdThd ,735,6024,6039,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[1][1] ,735,6040,6055,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[1][2] ,735,6056,6071,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[1][3] ,735,6072,6087,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[1][4] ,735,6088,6103,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[1][5] ,735,6104,6119,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[2][1] ,735,6120,6135,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[2][2] ,735,6136,6151,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[2][3] ,735,6152,6167,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[2][4] ,735,6168,6183,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[2][5] ,735,6184,6199,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[3][1] ,735,6200,6215,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[3][2] ,735,6216,6231,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[3][3] ,735,6232,6247,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[3][4] ,735,6248,6263,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[3][5] ,735,6264,6279,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[4][1] ,735,6280,6295,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[4][2] ,735,6296,6311,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[4][3] ,735,6312,6327,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[4][4] ,735,6328,6343,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[4][5] ,735,6344,6359,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[5][1] ,735,6360,6375,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[5][2] ,735,6376,6391,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[5][3] ,735,6392,6407,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[5][4] ,735,6408,6423,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[5][5] ,735,6424,6439,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[6][1] ,735,6440,6455,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[6][2] ,735,6456,6471,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[6][3] ,735,6472,6487,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[6][4] ,735,6488,6503,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[6][5] ,735,6504,6519,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[7][1] ,735,6520,6535,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[7][2] ,735,6536,6551,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[7][3] ,735,6552,6567,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[7][4] ,735,6568,6583,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[7][5] ,735,6584,6599,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[8][1] ,735,6600,6615,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[8][2] ,735,6616,6631,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[8][3] ,735,6632,6647,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[8][4] ,735,6648,6663,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtCyc.[8][5] ,735,6664,6679,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[1][1] ,735,6680,6695,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[1][2] ,735,6696,6711,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[1][3] ,735,6712,6727,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[1][4] ,735,6728,6743,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[1][5] ,735,6744,6759,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[2][1] ,735,6760,6775,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[2][2] ,735,6776,6791,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[2][3] ,735,6792,6807,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[2][4] ,735,6808,6823,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[2][5] ,735,6824,6839,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[3][1] ,735,6840,6855,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[3][2] ,735,6856,6871,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[3][3] ,735,6872,6887,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[3][4] ,735,6888,6903,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[3][5] ,735,6904,6919,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[4][1] ,735,6920,6935,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[4][2] ,735,6936,6951,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[4][3] ,735,6952,6967,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[4][4] ,735,6968,6983,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[4][5] ,735,6984,6999,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[5][1] ,735,7000,7015,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[5][2] ,735,7016,7031,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[5][3] ,735,7032,7047,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[5][4] ,735,7048,7063,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[5][5] ,735,7064,7079,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[6][1] ,735,7080,7095,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[6][2] ,735,7096,7111,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[6][3] ,735,7112,7127,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[6][4] ,735,7128,7143,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[6][5] ,735,7144,7159,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[7][1] ,735,7160,7175,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[7][2] ,735,7176,7191,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[7][3] ,735,7192,7207,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[7][4] ,735,7208,7223,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[7][5] ,735,7224,7239,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[8][1] ,735,7240,7255,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[8][2] ,735,7256,7271,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[8][3] ,735,7272,7287,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[8][4] ,735,7288,7303,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorDrAtNiCyc.[8][5] ,735,7304,7319,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[1][1] ,735,7320,7335,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[1][2] ,735,7336,7351,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[1][3] ,735,7352,7367,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[1][4] ,735,7368,7383,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[1][5] ,735,7384,7399,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[2][1] ,735,7400,7415,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[2][2] ,735,7416,7431,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[2][3] ,735,7432,7447,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[2][4] ,735,7448,7463,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[2][5] ,735,7464,7479,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[3][1] ,735,7480,7495,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[3][2] ,735,7496,7511,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[3][3] ,735,7512,7527,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[3][4] ,735,7528,7543,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[3][5] ,735,7544,7559,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[4][1] ,735,7560,7575,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[4][2] ,735,7576,7591,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[4][3] ,735,7592,7607,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[4][4] ,735,7608,7623,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[4][5] ,735,7624,7639,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[5][1] ,735,7640,7655,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[5][2] ,735,7656,7671,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[5][3] ,735,7672,7687,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[5][4] ,735,7688,7703,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[5][5] ,735,7704,7719,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[6][1] ,735,7720,7735,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[6][2] ,735,7736,7751,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[6][3] ,735,7752,7767,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[6][4] ,735,7768,7783,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[6][5] ,735,7784,7799,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[7][1] ,735,7800,7815,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[7][2] ,735,7816,7831,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[7][3] ,735,7832,7847,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[7][4] ,735,7848,7863,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[7][5] ,735,7864,7879,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[8][1] ,735,7880,7895,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[8][2] ,735,7896,7911,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[8][3] ,735,7912,7927,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[8][4] ,735,7928,7943,.01,3000,2,m,2261D6,6261D6,ff,P6.P_tng_m_VecBrakWCorNoDrAtCyc.[8][5] ,735,24,39,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[1][1] ,735,40,55,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[1][2] ,735,56,71,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[1][3] ,735,72,87,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[1][4] ,735,88,103,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[1][5] ,735,104,119,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[2][1] ,735,120,135,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[2][2] ,735,136,151,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[2][3] ,735,152,167,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[2][4] ,735,168,183,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[2][5] ,735,184,199,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[3][1] ,735,200,215,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[3][2] ,735,216,231,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[3][3] ,735,232,247,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[3][4] ,735,248,263,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[3][5] ,735,264,279,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[4][1] ,735,280,295,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[4][2] ,735,296,311,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[4][3] ,735,312,327,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[4][4] ,735,328,343,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[4][5] ,735,344,359,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[5][1] ,735,360,375,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[5][2] ,735,376,391,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[5][3] ,735,392,407,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[5][4] ,735,408,423,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[5][5] ,735,424,439,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[6][1] ,735,440,455,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[6][2] ,735,456,471,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[6][3] ,735,472,487,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[6][4] ,735,488,503,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[6][5] ,735,504,519,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[7][1] ,735,520,535,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[7][2] ,735,536,551,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[7][3] ,735,552,567,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[7][4] ,735,568,583,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[7][5] ,735,584,599,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[8][1] ,735,600,615,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[8][2] ,735,616,631,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[8][3] ,735,632,647,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[8][4] ,735,648,663,.01,3000,2,m,2261D7,6261D7,ff,P7.P_tng_m_VecBrakWCorNoDrAtNiCyc.[8][5] ,735,664,679,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[1][1] ,735,680,695,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[1][2] ,735,696,711,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[1][3] ,735,712,727,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[1][4] ,735,728,743,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[1][5] ,735,744,759,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[1][6] ,735,760,775,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[1][7] ,735,776,791,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[2][1] ,735,792,807,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[2][2] ,735,808,823,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[2][3] ,735,824,839,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[2][4] ,735,840,855,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[2][5] ,735,856,871,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[2][6] ,735,872,887,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[2][7] ,735,888,903,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[3][1] ,735,904,919,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[3][2] ,735,920,935,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[3][3] ,735,936,951,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[3][4] ,735,952,967,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[3][5] ,735,968,983,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[3][6] ,735,984,999,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[3][7] ,735,1000,1015,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[4][1] ,735,1016,1031,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[4][2] ,735,1032,1047,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[4][3] ,735,1048,1063,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[4][4] ,735,1064,1079,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[4][5] ,735,1080,1095,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[4][6] ,735,1096,1111,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[4][7] ,735,1112,1127,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[5][1] ,735,1128,1143,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[5][2] ,735,1144,1159,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[5][3] ,735,1160,1175,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[5][4] ,735,1176,1191,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[5][5] ,735,1192,1207,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[5][6] ,735,1208,1223,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[5][7] ,735,1224,1239,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[6][1] ,735,1240,1255,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[6][2] ,735,1256,1271,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[6][3] ,735,1272,1287,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[6][4] ,735,1288,1303,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[6][5] ,735,1304,1319,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[6][6] ,735,1320,1335,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[6][7] ,735,1336,1351,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[7][1] ,735,1352,1367,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[7][2] ,735,1368,1383,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[7][3] ,735,1384,1399,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[7][4] ,735,1400,1415,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[7][5] ,735,1416,1431,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[7][6] ,735,1432,1447,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[7][7] ,735,1448,1463,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[8][1] ,735,1464,1479,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[8][2] ,735,1480,1495,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[8][3] ,735,1496,1511,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[8][4] ,735,1512,1527,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[8][5] ,735,1528,1543,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[8][6] ,735,1544,1559,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WCorAEBCycWrn_Ni.[8][7] ,735,1560,1575,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WarnNarrowCorThd_car ,735,1576,1591,.01,200,2,m,2261D7,6261D7,ff,P7.P_tng_m_WarnNarrowCor_car ,735,1592,1607,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[1][1] ,735,1608,1623,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[1][2] ,735,1624,1639,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[1][3] ,735,1640,1655,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[1][4] ,735,1656,1671,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[1][5] ,735,1672,1687,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[1][6] ,735,1688,1703,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[1][7] ,735,1704,1719,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[2][1] ,735,1720,1735,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[2][2] ,735,1736,1751,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[2][3] ,735,1752,1767,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[2][4] ,735,1768,1783,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[2][5] ,735,1784,1799,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[2][6] ,735,1800,1815,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[2][7] ,735,1816,1831,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[3][1] ,735,1832,1847,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[3][2] ,735,1848,1863,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[3][3] ,735,1864,1879,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[3][4] ,735,1880,1895,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[3][5] ,735,1896,1911,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[3][6] ,735,1912,1927,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[3][7] ,735,1928,1943,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[4][1] ,735,1944,1959,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[4][2] ,735,1960,1975,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[4][3] ,735,1976,1991,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[4][4] ,735,1992,2007,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[4][5] ,735,2008,2023,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[4][6] ,735,2024,2039,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[4][7] ,735,2040,2055,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[5][1] ,735,2056,2071,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[5][2] ,735,2072,2087,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[5][3] ,735,2088,2103,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[5][4] ,735,2104,2119,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[5][5] ,735,2120,2135,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[5][6] ,735,2136,2151,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[5][7] ,735,2152,2167,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[6][1] ,735,2168,2183,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[6][2] ,735,2184,2199,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[6][3] ,735,2200,2215,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[6][4] ,735,2216,2231,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[6][5] ,735,2232,2247,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[6][6] ,735,2248,2263,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[6][7] ,735,2264,2279,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[7][1] ,735,2280,2295,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[7][2] ,735,2296,2311,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[7][3] ,735,2312,2327,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[7][4] ,735,2328,2343,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[7][5] ,735,2344,2359,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[7][6] ,735,2360,2375,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[7][7] ,735,2376,2391,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[8][1] ,735,2392,2407,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[8][2] ,735,2408,2423,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[8][3] ,735,2424,2439,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[8][4] ,735,2440,2455,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[8][5] ,735,2456,2471,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[8][6] ,735,2472,2487,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_WideCorridorAebsCycWarn.[8][7] ,735,2488,2503,.01,200,2,m,2261D7,6261D7,ff,P7.P_tng_m_WrnCycNaCrdHalfWd ,735,2504,2519,.01,200,2,m,2261D7,6261D7,ff,P7.P_tng_m_WrnCycNaCrdHalfWdThd ,735,2520,2535,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLatBraking.[1][1] ,735,2536,2551,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLatBraking.[1][2] ,735,2552,2567,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLatBraking.[1][3] ,735,2568,2583,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLatBraking.[1][4] ,735,2584,2599,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLatBraking.[1][5] ,735,2600,2615,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLatWarning.[1][1] ,735,2616,2631,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLatWarning.[1][2] ,735,2632,2647,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLatWarning.[1][3] ,735,2648,2663,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLatWarning.[1][4] ,735,2664,2679,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLongiBraking.[1][1] ,735,2680,2695,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLongiBraking.[1][2] ,735,2696,2711,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLongiBraking.[1][3] ,735,2712,2727,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLongiBraking.[1][4] ,735,2728,2743,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLongiBraking.[1][5] ,735,2744,2759,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLongiWarning.[1][1] ,735,2760,2775,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLongiWarning.[1][2] ,735,2776,2791,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLongiWarning.[1][3] ,735,2792,2807,.01,0,2,m,2261D7,6261D7,ff,P7.P_tng_m_YimpactVectCycLongiWarning.[1][4] ,735,2808,2823,.1,200,1,mps2,2261D7,6261D7,ff,P7.P_tng_mps2_BrkSysDeclReq.[1][1] ,735,2824,2839,.1,200,1,mps2,2261D7,6261D7,ff,P7.P_tng_mps2_BrkSysDeclReq.[1][2] ,735,2840,2855,.1,200,1,mps2,2261D7,6261D7,ff,P7.P_tng_mps2_BrkSysDeclReq.[1][3] ,735,2856,2871,.1,200,1,mps2,2261D7,6261D7,ff,P7.P_tng_mps2_BrkSysDeclReq.[1][4] ,735,2872,2887,.1,200,1,mps2,2261D7,6261D7,ff,P7.P_tng_mps2_BrkSysDeclReq.[1][5] ,735,2888,2903,.1,200,1,mps2,2261D7,6261D7,ff,P7.P_tng_mps2_BrkSysDeclReq.[1][6] ,735,2904,2919,.1,200,1,mps2,2261D7,6261D7,ff,P7.P_tng_mps2_BrkSysDeclReq.[1][7] ,735,2920,2935,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycCorridorWarning.[1][1] ,735,2936,2951,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycCorridorWarning.[1][2] ,735,2952,2967,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycCorridorWarning.[1][3] ,735,2968,2983,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycCorridorWarning.[1][4] ,735,2984,2999,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycCorridorWarning.[1][5] ,735,3000,3015,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycCorridorWarning.[1][6] ,735,3016,3031,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycCorridorWarning.[1][7] ,735,3032,3047,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][1] ,735,3048,3063,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][2] ,735,3064,3079,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][3] ,735,3080,3095,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][4] ,735,3096,3111,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][5] ,735,3112,3127,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][6] ,735,3128,3143,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][7] ,735,3144,3159,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][8] ,735,3160,3175,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][9] ,735,3176,3191,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][10] ,735,3192,3207,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][11] ,735,3208,3223,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatBraking.[1][12] ,735,3224,3239,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatWarning.[1][1] ,735,3240,3255,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatWarning.[1][2] ,735,3256,3271,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatWarning.[1][3] ,735,3272,3287,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatWarning.[1][4] ,735,3288,3303,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatWarning.[1][5] ,735,3304,3319,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatWarning.[1][6] ,735,3320,3335,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatWarning.[1][7] ,735,3336,3351,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatWarning.[1][8] ,735,3352,3367,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatWarning.[1][9] ,735,3368,3383,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLatWarning.[1][10] ,735,3384,3399,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][1] ,735,3400,3415,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][2] ,735,3416,3431,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][3] ,735,3432,3447,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][4] ,735,3448,3463,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][5] ,735,3464,3479,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][6] ,735,3480,3495,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][7] ,735,3496,3511,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][8] ,735,3512,3527,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][9] ,735,3528,3543,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][10] ,735,3544,3559,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][11] ,735,3560,3575,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiBraking.[1][12] ,735,3576,3591,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiWarning.[1][1] ,735,3592,3607,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiWarning.[1][2] ,735,3608,3623,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiWarning.[1][3] ,735,3624,3639,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiWarning.[1][4] ,735,3640,3655,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiWarning.[1][5] ,735,3656,3671,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiWarning.[1][6] ,735,3672,3687,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiWarning.[1][7] ,735,3688,3703,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiWarning.[1][8] ,735,3704,3719,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiWarning.[1][9] ,735,3720,3735,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_DeltaSpeedCycLongiWarning.[1][10] ,735,3736,3751,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][1] ,735,3752,3767,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][2] ,735,3768,3783,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][3] ,735,3784,3799,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][4] ,735,3800,3815,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][5] ,735,3816,3831,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][6] ,735,3832,3847,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][7] ,735,3848,3863,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][8] ,735,3864,3879,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][9] ,735,3880,3895,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][10] ,735,3896,3911,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][11] ,735,3912,3927,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonBrk.[1][12] ,735,3928,3943,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonWrn.[1][1] ,735,3944,3959,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonWrn.[1][2] ,735,3960,3975,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonWrn.[1][3] ,735,3976,3991,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonWrn.[1][4] ,735,3992,4007,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonWrn.[1][5] ,735,4008,4023,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonWrn.[1][6] ,735,4024,4039,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeSpdPedLonWrn.[1][7] ,735,4040,4055,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][1] ,735,4056,4071,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][2] ,735,4072,4087,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][3] ,735,4088,4103,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][4] ,735,4104,4119,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][5] ,735,4120,4135,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][6] ,735,4136,4151,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][7] ,735,4152,4167,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][8] ,735,4168,4183,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][9] ,735,4184,4199,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][10] ,735,4200,4215,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][11] ,735,4216,4231,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatBraking.[1][12] ,735,4232,4247,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatWarning.[1][1] ,735,4248,4263,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatWarning.[1][2] ,735,4264,4279,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatWarning.[1][3] ,735,4280,4295,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatWarning.[1][4] ,735,4296,4311,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatWarning.[1][5] ,735,4312,4327,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatWarning.[1][6] ,735,4328,4343,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_DeltaSpeedPedLatWarning.[1][7] ,735,4344,4359,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrDrAt.[1][1] ,735,4360,4375,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrDrAt.[1][2] ,735,4376,4391,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrDrAt.[1][3] ,735,4392,4407,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrDrAt.[1][4] ,735,4408,4423,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrDrAt.[1][5] ,735,4424,4439,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrDrAt.[1][6] ,735,4440,4455,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrNoDrAt.[1][1] ,735,4456,4471,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrNoDrAt.[1][2] ,735,4472,4487,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrNoDrAt.[1][3] ,735,4488,4503,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrNoDrAt.[1][4] ,735,4504,4519,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrNoDrAt.[1][5] ,735,4520,4535,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_EVO_SpdPedWCorrNoDrAt.[1][6] ,735,4536,4551,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_SpdCycWCorrDrAt.[1][1] ,735,4552,4567,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_SpdCycWCorrDrAt.[1][2] ,735,4568,4583,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_SpdCycWCorrDrAt.[1][3] ,735,4584,4599,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_SpdCycWCorrDrAt.[1][4] ,735,4600,4615,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_SpdCycWCorrDrAt.[1][5] ,735,4616,4631,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_SpdCycWCorrNoDrAt.[1][1] ,735,4632,4647,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_SpdCycWCorrNoDrAt.[1][2] ,735,4648,4663,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_SpdCycWCorrNoDrAt.[1][3] ,735,4664,4679,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_SpdCycWCorrNoDrAt.[1][4] ,735,4680,4695,.01,0,2,mps,2261D7,6261D7,ff,P7.P_tng_mps_SpdCycWCorrNoDrAt.[1][5] ,735,4696,4703,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_CondDistOff_targetBraking_Car ,735,4704,4711,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[1][1] ,735,4712,4719,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[1][2] ,735,4720,4727,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[1][3] ,735,4728,4735,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[1][4] ,735,4736,4743,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[1][5] ,735,4744,4751,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[1][6] ,735,4752,4759,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[1][7] ,735,4760,4767,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[2][1] ,735,4768,4775,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[2][2] ,735,4776,4783,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[2][3] ,735,4784,4791,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[2][4] ,735,4792,4799,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[2][5] ,735,4800,4807,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[2][6] ,735,4808,4815,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[2][7] ,735,4816,4823,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[3][1] ,735,4824,4831,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[3][2] ,735,4832,4839,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[3][3] ,735,4840,4847,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[3][4] ,735,4848,4855,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[3][5] ,735,4856,4863,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[3][6] ,735,4864,4871,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[3][7] ,735,4872,4879,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[4][1] ,735,4880,4887,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[4][2] ,735,4888,4895,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[4][3] ,735,4896,4903,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[4][4] ,735,4904,4911,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[4][5] ,735,4912,4919,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[4][6] ,735,4920,4927,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[4][7] ,735,4928,4935,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[5][1] ,735,4936,4943,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[5][2] ,735,4944,4951,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[5][3] ,735,4952,4959,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[5][4] ,735,4960,4967,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[5][5] ,735,4968,4975,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[5][6] ,735,4976,4983,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[5][7] ,735,4984,4991,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[6][1] ,735,4992,4999,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[6][2] ,735,5000,5007,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[6][3] ,735,5008,5015,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[6][4] ,735,5016,5023,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[6][5] ,735,5024,5031,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[6][6] ,735,5032,5039,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[6][7] ,735,5040,5047,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[7][1] ,735,5048,5055,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[7][2] ,735,5056,5063,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[7][3] ,735,5064,5071,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[7][4] ,735,5072,5079,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[7][5] ,735,5080,5087,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[7][6] ,735,5088,5095,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[7][7] ,735,5096,5103,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[8][1] ,735,5104,5111,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[8][2] ,735,5112,5119,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[8][3] ,735,5120,5127,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[8][4] ,735,5128,5135,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[8][5] ,735,5136,5143,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[8][6] ,735,5144,5151,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[8][7] ,735,5152,5159,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[9][1] ,735,5160,5167,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[9][2] ,735,5168,5175,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[9][3] ,735,5176,5183,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[9][4] ,735,5184,5191,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[9][5] ,735,5192,5199,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[9][6] ,735,5200,5207,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[9][7] ,735,5208,5215,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[10][1] ,735,5216,5223,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[10][2] ,735,5224,5231,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[10][3] ,735,5232,5239,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[10][4] ,735,5240,5247,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[10][5] ,735,5248,5255,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[10][6] ,735,5256,5263,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[10][7] ,735,5264,5271,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[11][1] ,735,5272,5279,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[11][2] ,735,5280,5287,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[11][3] ,735,5288,5295,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[11][4] ,735,5296,5303,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[11][5] ,735,5304,5311,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[11][6] ,735,5312,5319,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[11][7] ,735,5320,5327,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[12][1] ,735,5328,5335,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[12][2] ,735,5336,5343,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[12][3] ,735,5344,5351,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[12][4] ,735,5352,5359,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[12][5] ,735,5360,5367,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[12][6] ,735,5368,5375,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[12][7] ,735,5376,5383,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[13][1] ,735,5384,5391,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[13][2] ,735,5392,5399,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[13][3] ,735,5400,5407,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[13][4] ,735,5408,5415,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[13][5] ,735,5416,5423,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[13][6] ,735,5424,5431,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[13][7] ,735,5432,5439,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[14][1] ,735,5440,5447,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[14][2] ,735,5448,5455,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[14][3] ,735,5456,5463,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[14][4] ,735,5464,5471,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[14][5] ,735,5472,5479,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[14][6] ,735,5480,5487,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[14][7] ,735,5488,5495,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[15][1] ,735,5496,5503,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[15][2] ,735,5504,5511,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[15][3] ,735,5512,5519,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[15][4] ,735,5520,5527,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[15][5] ,735,5528,5535,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[15][6] ,735,5536,5543,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[15][7] ,735,5544,5551,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[16][1] ,735,5552,5559,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[16][2] ,735,5560,5567,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[16][3] ,735,5568,5575,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[16][4] ,735,5576,5583,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[16][5] ,735,5584,5591,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[16][6] ,735,5592,5599,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKCity.[16][7] ,735,5600,5607,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[1][1] ,735,5608,5615,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[1][2] ,735,5616,5623,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[1][3] ,735,5624,5631,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[1][4] ,735,5632,5639,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[2][1] ,735,5640,5647,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[2][2] ,735,5648,5655,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[2][3] ,735,5656,5663,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[2][4] ,735,5664,5671,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[3][1] ,735,5672,5679,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[3][2] ,735,5680,5687,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[3][3] ,735,5688,5695,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[3][4] ,735,5696,5703,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[4][1] ,735,5704,5711,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[4][2] ,735,5712,5719,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[4][3] ,735,5720,5727,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[4][4] ,735,5728,5735,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[5][1] ,735,5736,5743,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[5][2] ,735,5744,5751,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[5][3] ,735,5752,5759,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[5][4] ,735,5760,5767,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[6][1] ,735,5768,5775,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[6][2] ,735,5776,5783,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[6][3] ,735,5784,5791,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[6][4] ,735,5792,5799,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[7][1] ,735,5800,5807,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[7][2] ,735,5808,5815,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[7][3] ,735,5816,5823,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[7][4] ,735,5824,5831,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[8][1] ,735,5832,5839,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[8][2] ,735,5840,5847,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[8][3] ,735,5848,5855,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[8][4] ,735,5856,5863,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[9][1] ,735,5864,5871,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[9][2] ,735,5872,5879,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[9][3] ,735,5880,5887,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[9][4] ,735,5888,5895,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[10][1] ,735,5896,5903,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[10][2] ,735,5904,5911,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[10][3] ,735,5912,5919,.01,0,2,pct,2261D7,6261D7,ff,P7.P_tng_pct_EVO_GainBRKIU1.[10][4] ,735,24,31,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[1][1] ,735,32,39,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[1][2] ,735,40,47,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[1][3] ,735,48,55,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[1][4] ,735,56,63,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[2][1] ,735,64,71,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[2][2] ,735,72,79,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[2][3] ,735,80,87,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[2][4] ,735,88,95,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[3][1] ,735,96,103,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[3][2] ,735,104,111,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[3][3] ,735,112,119,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[3][4] ,735,120,127,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[4][1] ,735,128,135,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[4][2] ,735,136,143,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[4][3] ,735,144,151,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[4][4] ,735,152,159,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[5][1] ,735,160,167,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[5][2] ,735,168,175,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[5][3] ,735,176,183,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[5][4] ,735,184,191,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[6][1] ,735,192,199,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[6][2] ,735,200,207,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[6][3] ,735,208,215,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[6][4] ,735,216,223,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[7][1] ,735,224,231,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[7][2] ,735,232,239,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[7][3] ,735,240,247,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[7][4] ,735,248,255,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[8][1] ,735,256,263,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[8][2] ,735,264,271,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[8][3] ,735,272,279,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[8][4] ,735,280,287,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[9][1] ,735,288,295,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[9][2] ,735,296,303,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[9][3] ,735,304,311,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[9][4] ,735,312,319,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[10][1] ,735,320,327,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[10][2] ,735,328,335,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[10][3] ,735,336,343,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainBRKIU2.[10][4] ,735,344,351,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[1][1] ,735,352,359,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[1][2] ,735,360,367,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[1][3] ,735,368,375,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[1][4] ,735,376,383,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[1][5] ,735,384,391,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[1][6] ,735,392,399,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[1][7] ,735,400,407,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[2][1] ,735,408,415,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[2][2] ,735,416,423,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[2][3] ,735,424,431,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[2][4] ,735,432,439,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[2][5] ,735,440,447,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[2][6] ,735,448,455,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[2][7] ,735,456,463,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[3][1] ,735,464,471,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[3][2] ,735,472,479,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[3][3] ,735,480,487,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[3][4] ,735,488,495,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[3][5] ,735,496,503,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[3][6] ,735,504,511,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[3][7] ,735,512,519,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[4][1] ,735,520,527,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[4][2] ,735,528,535,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[4][3] ,735,536,543,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[4][4] ,735,544,551,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[4][5] ,735,552,559,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[4][6] ,735,560,567,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[4][7] ,735,568,575,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[5][1] ,735,576,583,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[5][2] ,735,584,591,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[5][3] ,735,592,599,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[5][4] ,735,600,607,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[5][5] ,735,608,615,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[5][6] ,735,616,623,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[5][7] ,735,624,631,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[6][1] ,735,632,639,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[6][2] ,735,640,647,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[6][3] ,735,648,655,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[6][4] ,735,656,663,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[6][5] ,735,664,671,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[6][6] ,735,672,679,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[6][7] ,735,680,687,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[7][1] ,735,688,695,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[7][2] ,735,696,703,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[7][3] ,735,704,711,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[7][4] ,735,712,719,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[7][5] ,735,720,727,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[7][6] ,735,728,735,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[7][7] ,735,736,743,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[8][1] ,735,744,751,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[8][2] ,735,752,759,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[8][3] ,735,760,767,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[8][4] ,735,768,775,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[8][5] ,735,776,783,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[8][6] ,735,784,791,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[8][7] ,735,792,799,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[9][1] ,735,800,807,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[9][2] ,735,808,815,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[9][3] ,735,816,823,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[9][4] ,735,824,831,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[9][5] ,735,832,839,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[9][6] ,735,840,847,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[9][7] ,735,848,855,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[10][1] ,735,856,863,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[10][2] ,735,864,871,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[10][3] ,735,872,879,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[10][4] ,735,880,887,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[10][5] ,735,888,895,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[10][6] ,735,896,903,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[10][7] ,735,904,911,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[11][1] ,735,912,919,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[11][2] ,735,920,927,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[11][3] ,735,928,935,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[11][4] ,735,936,943,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[11][5] ,735,944,951,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[11][6] ,735,952,959,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[11][7] ,735,960,967,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[12][1] ,735,968,975,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[12][2] ,735,976,983,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[12][3] ,735,984,991,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[12][4] ,735,992,999,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[12][5] ,735,1000,1007,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[12][6] ,735,1008,1015,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[12][7] ,735,1016,1023,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[13][1] ,735,1024,1031,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[13][2] ,735,1032,1039,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[13][3] ,735,1040,1047,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[13][4] ,735,1048,1055,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[13][5] ,735,1056,1063,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[13][6] ,735,1064,1071,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[13][7] ,735,1072,1079,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[14][1] ,735,1080,1087,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[14][2] ,735,1088,1095,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[14][3] ,735,1096,1103,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[14][4] ,735,1104,1111,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[14][5] ,735,1112,1119,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[14][6] ,735,1120,1127,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[14][7] ,735,1128,1135,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[15][1] ,735,1136,1143,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[15][2] ,735,1144,1151,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[15][3] ,735,1152,1159,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[15][4] ,735,1160,1167,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[15][5] ,735,1168,1175,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[15][6] ,735,1176,1183,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[15][7] ,735,1184,1191,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[16][1] ,735,1192,1199,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[16][2] ,735,1200,1207,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[16][3] ,735,1208,1215,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[16][4] ,735,1216,1223,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[16][5] ,735,1224,1231,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[16][6] ,735,1232,1239,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWCity.[16][7] ,735,1240,1247,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[1][1] ,735,1248,1255,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[1][2] ,735,1256,1263,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[1][3] ,735,1264,1271,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[1][4] ,735,1272,1279,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[2][1] ,735,1280,1287,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[2][2] ,735,1288,1295,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[2][3] ,735,1296,1303,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[2][4] ,735,1304,1311,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[3][1] ,735,1312,1319,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[3][2] ,735,1320,1327,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[3][3] ,735,1328,1335,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[3][4] ,735,1336,1343,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[4][1] ,735,1344,1351,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[4][2] ,735,1352,1359,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[4][3] ,735,1360,1367,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[4][4] ,735,1368,1375,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[5][1] ,735,1376,1383,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[5][2] ,735,1384,1391,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[5][3] ,735,1392,1399,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[5][4] ,735,1400,1407,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[6][1] ,735,1408,1415,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[6][2] ,735,1416,1423,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[6][3] ,735,1424,1431,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[6][4] ,735,1432,1439,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[7][1] ,735,1440,1447,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[7][2] ,735,1448,1455,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[7][3] ,735,1456,1463,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[7][4] ,735,1464,1471,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[8][1] ,735,1472,1479,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[8][2] ,735,1480,1487,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[8][3] ,735,1488,1495,.01,0,2,pct,2261D8,6261D8,ff,P8.P_tng_pct_EVO_GainFCWIU.[8][4] ,735,1496,1503,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_CarPrefillOfsBfrBrkCdn.[1][1] ,735,1504,1511,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_CarPrefillOfsBfrBrkCdn.[1][2] ,735,1512,1519,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_CarPrefillOfsBfrBrkCdn.[1][3] ,735,1520,1527,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_CarPrefillOfsBfrBrkCdn.[1][4] ,735,1528,1535,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_CarPrefillOfsBfrBrkCdn.[1][5] ,735,1536,1543,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_CarPrefillOfsBfrBrkCdn.[1][6] ,735,1544,1551,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_CarPrefillOfsBfrBrkCdn.[1][7] ,735,1552,1559,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_CarPrefillOfsBfrBrkCdn.[1][8] ,735,1560,1567,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_CarPrefillOfsBfrBrkCdn.[1][9] ,735,1568,1575,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_CarPrefillOfsBfrBrkCdn.[1][10] ,735,1576,1591,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_Cyc_TimeToBrakeVect_BrakeBehaviour_InhibitionThreshold.[1][1] ,735,1592,1607,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_Cyc_TimeToBrakeVect_BrakeBehaviour_InhibitionThreshold.[1][2] ,735,1608,1623,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_Cyc_TimeToBrakeVect_BrakeBehaviour_InhibitionThreshold.[1][3] ,735,1624,1631,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_PedCondDistOffFCW_BrkDrv ,735,1632,1639,.01,0,2,s,2261D8,6261D8,ff,P8.P_tng_s_PedCondDistOff_BrkDrv ,735,1640,1647,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_AEBSEnable ,735,1648,1655,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_AebsC2CCity ,735,1656,1663,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_AebsC2CIU ,735,1664,1671,1,0,0,N/A,2261D8,6261D8,ff,P8.P_tng_x_AebsCyc ,735,1672,1679,1,0,0,N/A,2261D8,6261D8,ff,P8.P_tng_x_AebsPed ,735,1680,1687,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_AlertCycON ,735,1688,1695,1,0,0,N/A,2261D8,6261D8,ff,P8.P_tng_x_BrakeSysCfg ,735,1696,1703,.1,0,1,-,2261D8,6261D8,ff,P8.P_tng_x_BrkPressureSpdDrvDetec ,735,1704,1719,1,0,0,Nm,2261D8,6261D8,ff,P8.P_tng_x_EVO_BrakeWheelTorque.[1][1] ,735,1720,1735,1,0,0,Nm,2261D8,6261D8,ff,P8.P_tng_x_EVO_BrakeWheelTorque.[1][2] ,735,1736,1751,1,0,0,Nm,2261D8,6261D8,ff,P8.P_tng_x_EVO_BrakeWheelTorque.[1][3] ,735,1752,1767,1,0,0,Nm,2261D8,6261D8,ff,P8.P_tng_x_EVO_BrakeWheelTorque.[1][4] ,735,1768,1783,1,0,0,Nm,2261D8,6261D8,ff,P8.P_tng_x_EVO_BrakeWheelTorque.[1][5] ,735,1784,1799,1,0,0,Nm,2261D8,6261D8,ff,P8.P_tng_x_EVO_BrakeWheelTorque.[1][6] ,735,1800,1807,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_EVO_ConfigAlert ,735,1808,1815,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_EVO_FCWPedAlertON ,735,1816,1823,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_EVO_FCWPedGainON ,735,1824,1831,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_EVO_FCWPedHBAON ,735,1832,1839,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_EVO_FCWPedPreFillON ,735,1840,1847,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_EVO_GearBoxFlagConfEna ,735,1848,1855,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_EVO_IUWarnOnStatVehDis ,735,1856,1871,.1,0,1,kmh,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpd.[1][1] ,735,1872,1887,.1,0,1,kmh,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpd.[1][2] ,735,1888,1903,.1,0,1,kmh,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpd.[1][3] ,735,1904,1919,.1,0,1,kmh,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpd.[1][4] ,735,1920,1935,.1,0,1,kmh,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpd.[1][5] ,735,1936,1951,.1,0,1,kmh,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpd.[1][6] ,735,1952,1967,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[1][1] ,735,1968,1983,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[1][2] ,735,1984,1999,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[1][3] ,735,2000,2015,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[1][4] ,735,2016,2031,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[1][5] ,735,2032,2047,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[1][6] ,735,2048,2063,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[2][1] ,735,2064,2079,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[2][2] ,735,2080,2095,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[2][3] ,735,2096,2111,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[2][4] ,735,2112,2127,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[2][5] ,735,2128,2143,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[2][6] ,735,2144,2159,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[3][1] ,735,2160,2175,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[3][2] ,735,2176,2191,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[3][3] ,735,2192,2207,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[3][4] ,735,2208,2223,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[3][5] ,735,2224,2239,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[3][6] ,735,2240,2255,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[4][1] ,735,2256,2271,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[4][2] ,735,2272,2287,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[4][3] ,735,2288,2303,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[4][4] ,735,2304,2319,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[4][5] ,735,2320,2335,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[4][6] ,735,2336,2351,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[5][1] ,735,2352,2367,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[5][2] ,735,2368,2383,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[5][3] ,735,2384,2399,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[5][4] ,735,2400,2415,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[5][5] ,735,2416,2431,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[5][6] ,735,2432,2447,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[6][1] ,735,2448,2463,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[6][2] ,735,2464,2479,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[6][3] ,735,2480,2495,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[6][4] ,735,2496,2511,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[6][5] ,735,2512,2527,.1,0,1,km/h,2261D8,6261D8,ff,P8.P_tng_x_EVO_VehSpdDeltaMax.[6][6] ,735,2528,2535,1,0,0,-,2261D8,6261D8,ff,P8.P_tng_x_GearboxType ,735,24,39,.1,0,1,s,22622E,62622E,ff,P_tng_s_E_HighlyCrtlTTC_Ped ,735,24,31,.1,0,1,s,226233,626233,ff,P_tng_s_EVO_TargetStatusAebsPedTemp ,735,24,39,.01,0,2,s,22624B,62624B,ff,P_tng_s_TargetStatusAebsCycTemp ,735,24,39,.01,0,2,s,22624C,62624C,ff,P_tng_s_TargetStatusAebsVehTemp ,735,24,31,1,0,0,,226260,626260,ff,P_tng_x_AebsC2CCity,0:Deactivated;1:Activated ,735,24,31,1,0,0,,226261,626261,ff,P_tng_x_AebsC2CIU,0:Deactivated;1:Activated ,735,24,31,1,0,0,,226262,626262,ff,P_tng_x_AEBSConfig,0:0-NoAebs;1:1- PedestrianAebsAlone;2:2 -AebsCityAlone;3:3- AebsCityAndPedestrian;4:4- AebsIUAlone;5:5- AebsIUAndPedestrian;6:6- AebsIUAndCity;7:7- AllAebs ,735,24,31,1,0,0,,226263,626263,ff,P_tng_x_AEBSEnable,0:Deactivated;1:Activated ,735,24,31,1,0,0,,22627D,62627D,ff,P_tng_x_EVO_MCPonPavementEnable,0:0- failure AEBS disable;1:1- failure AEBS disable enable ,735,24,31,1,0,0,,22628F,62628F,ff,P_tng_x_GearboxType,0:0- BVM;1:1- BVA ,735,24,31,1,0,0,,2262B6,6262B6,ff,P_tng_x_MCConPavementEnable ,735,24,39,.1,0,1,kph,2262CE,6262CE,ff,P_tng_kmh_E_VSMin_AlrtCar ,735,24,31,.01,0,2,s,22650D,62650D,ff,P_tng_s_CarCondDistOff_BrkDrv ,735,24,31,.01,0,2,s,22650E,62650E,ff,P_tng_s_CycCondDistOff_BrkDrv ,735,24,31,1,0,0,,22651E,62651E,ff,P_tng_x_AebsCyc,0:Deactivated;1:Activated ,735,24,31,1,0,0,,22651F,62651F,ff,P_tng_x_AebsPed,0:Deactivated;1:Activated ,735,24,31,1,-1,0,,226521,626521,ff,P_tng_x_BlindnessAcv ,735,24,31,1,-1,0,,226525,626525,ff,P_tng_x_CANMonitoringCamera ,735,24,31,1,-1,0,,226529,626529,ff,P_tng_x_CamIniAcv ,735,24,39,1,0,0,,22654A,62654A,ff,P_tng_Nm_SatTorqVal ,735,24,31,.01,0,2,s,22655F,62655F,ff,P_tng_s_CarCondDistOffFCW_BrkDrv ,735,24,31,.01,0,2,,226560,626560,ff,P_tng_s_CycCondDistOffFCW_BrkDrv ,735,24,31,1,0,0,,226564,626564,ff,P_tng_x_BlurredImageNightLvl ,735,24,31,1,0,0,,226565,626565,ff,P_tng_x_BrakeInfoConsistencyCheckEnable ,735,24,31,1,0,0,,226571,626571,ff,P_tng_x_LowSunLevel ,735,24,31,1,0,0,,226574,626574,ff,P_tng_x_RoadSprayLevel ,735,24,31,1,0,0,,226578,626578,ff,P_tng_x_SmearedSpotsLevel ,735,24,31,1,0,0,,226579,626579,ff,P_tng_x_SmearedSpotsNightLvl ,735,24,31,1,-1,0,,226594,626594,ff,P_tng_x_CameraInternalFailureAcv ,735,24,31,1,0,0,,22659F,62659F,ff,P_tng_x_YimpactDistBrak,0:0 - Specific Yimpact for Dist Brak;1:1- Yimpact_Proc ,735,24,55,1,0,0,,22F012,62F012,2ff,Operationnal Reference ,735,28,55,.01,0,2,km,22F0D0,62F0D0,ff,Mileage_snapshot.Mileage_snapshot ,735,24,31,1,0,0,,22F0D1,62F0D1,ff,OccurrenceCounter_snapshot ,735,24,55,1,0,0,,22F180,62F180,2ff,BootVersion ,735,24,31,1,0,0,,22F182,62F182,2ff,CalibrationNumber ,735,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,735,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,735,24,47,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,735,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,735,24,159,1,0,0,,22F190,62F190,2ff,VIN ,735,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,735,24,87,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,735,24,87,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,735,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,735,24,55,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,735,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/FRRAD_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adj. failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or sys. operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/HFM_Dtcs.csv ================================================ A059,APC_STATUS_BCM A060,APC_STATUS_USM A070,BCM_APV_CODE E14F,CAN_BCM E140,CAN_ECM E151,CAN_ESCL E14E,CAN_METER E15B,CAN_USM E148,CAN_VDC A033,DONGLE A046,EEPROM A052,ESCL_FUNCTION A056,ESCL_HFM_RELAY A058,ESCL_LOCK_SEQUENCE A051,ESCL_MODULE A054,ESCL_SENSOR_LINE A050,ESCL_SUPPLY A057,ESCL_UNLOCK_SEQUENCE A086,IKEY_BACKDOOR_SWITCH A081,IKEY_FL_SWITCH A083,IKEY_FR_SWITCH A084,IKEY_RL_SWITCH A085,IKEY_RR_SWITCH A03C,INT_ANTENNA A090,KAZASHI A03E,LEFT_ANTENNA A041,LF3_ANTENNA A053,NOT_APC_LINE A010,PWR_ECU A040,REAR_ANTENNA A002,REGISTERS A03F,RIGHT_ANTENNA A001,ROM A080,START_BUTTON A03D,TRUNK_ANTENNA ================================================ FILE: app/src/main/assets/ZOE_Ph2/HFM_Fields.csv ================================================ ,7B9,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.DefaultSession ,7B9,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.ProgrammingSession ,7B9,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnosticSession ,7B9,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7B9,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,7B9,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier ,7B9,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,7B9,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,7B9,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,41049:APC_STATUS_BCM;41056:APC_STATUS_USM;41072:BCM_APV_CODE;57679:CAN_BCM;57664:CAN_ECM;57681:CAN_ESCL;57678:CAN_METER;57691:CAN_USM;57672:CAN_VDC;41011:DONGLE;41030:EEPROM;41042:ESCL_FUNCTION;41046:ESCL_HFM_RELAY;41048:ESCL_LOCK_SEQUENCE;41041:ESCL_MODULE;41044:ESCL_SENSOR_LINE;41040:ESCL_SUPPLY;41047:ESCL_UNLOCK_SEQUENCE;41094:IKEY_BACKDOOR_SWITCH;41089:IKEY_FL_SWITCH;41091:IKEY_FR_SWITCH;41092:IKEY_RL_SWITCH;41093:IKEY_RR_SWITCH;41020:INT_ANTENNA;41104:KAZASHI;41022:LEFT_ANTENNA;41025:LF3_ANTENNA;41043:NOT_APC_LINE;40976:PWR_ECU;41024:REAR_ANTENNA;40962:REGISTERS;41023:RIGHT_ANTENNA;40961:ROM;41088:START_BUTTON;41021:TRUNK_ANTENNA ,7B9,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog / safety µC failure;70:calibration / parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive / sequence counter incorrect / not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions / events;15:Vehicle manufacturer / System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal / Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding/ General Failure Information;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time > maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time < minimum;51:signal low time > maximum;50:signal low time < minimum;49:no signal;37:signal shape / waveform failure;33:signal amplitude < minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude > maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid ,7B9,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,7B9,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,7B9,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,7B9,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7B9,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7B9,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7B9,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,7B9,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,7B9,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,7B9,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,7B9,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7B9,40,40,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,7B9,41,41,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,7B9,42,42,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7B9,43,43,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7B9,44,44,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7B9,45,45,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,7B9,46,46,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,7B9,47,47,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailed,0:No;1:Yes ,7B9,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,7B9,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,41049:APC_STATUS_BCM;41056:APC_STATUS_USM;41072:BCM_APV_CODE;57679:CAN_BCM;57664:CAN_ECM;57681:CAN_ESCL;57678:CAN_METER;57691:CAN_USM;57672:CAN_VDC;41011:DONGLE;41030:EEPROM;41042:ESCL_FUNCTION;41046:ESCL_HFM_RELAY;41048:ESCL_LOCK_SEQUENCE;41041:ESCL_MODULE;41044:ESCL_SENSOR_LINE;41040:ESCL_SUPPLY;41047:ESCL_UNLOCK_SEQUENCE;41094:IKEY_BACKDOOR_SWITCH;41089:IKEY_FL_SWITCH;41091:IKEY_FR_SWITCH;41092:IKEY_RL_SWITCH;41093:IKEY_RR_SWITCH;41020:INT_ANTENNA;41104:KAZASHI;41022:LEFT_ANTENNA;41025:LF3_ANTENNA;41043:NOT_APC_LINE;40976:PWR_ECU;41024:REAR_ANTENNA;40962:REGISTERS;41023:RIGHT_ANTENNA;40961:ROM;41088:START_BUTTON;41021:TRUNK_ANTENNA ,7B9,40,47,1,0,0,,190A,590A,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog / safety µC failure;70:calibration / parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive / sequence counter incorrect / not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions / events;15:Vehicle manufacturer / System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal / Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding/ General Failure Information;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time > maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time < minimum;51:signal low time > maximum;50:signal low time < minimum;49:no signal;37:signal shape / waveform failure;33:signal amplitude < minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude > maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid ,7B9,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,7B9,49,49,1,0,0,,190A,590A,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,7B9,50,50,1,0,0,,190A,590A,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7B9,51,51,1,0,0,,190A,590A,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7B9,52,52,1,0,0,,190A,590A,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7B9,53,53,1,0,0,,190A,590A,ff,DTCStatus.pendingDTC,0:No;1:Yes ,7B9,54,54,1,0,0,,190A,590A,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,7B9,55,55,1,0,0,,190A,590A,ff,DTCStatus.testFailed,0:No;1:Yes ,7B9,24,24,1,0,0,,220300,620300,ff,ESCL_PRESENT_CF,1:true;0:false ,7B9,24,24,1,0,0,,220301,620301,ff,WITH_SR_CF,1:true;0:false ,7B9,24,31,1,0,0,,220302,620302,ff,DONGLE_CF,0:DONGLE_SLAVE_1;1:DONGLE_SLAVE_2;2:DONGLE_SLAVE_3;3:SERIAL_DONGLE ,7B9,24,24,1,0,0,,220303,620303,ff,BRAKE_ECU_PRESENT_CF,1:true;0:false ,7B9,24,24,1,0,0,,220304,620304,ff,KEY_PRESENT_CF,1:true;0:false ,7B9,24,39,1.66666666666667E-04,0,3,min,220305,620305,ff,IMMO_TIMEOUT_AFTER_SALES_MODE_TM_CF ,7B9,24,39,1.66666666666667E-04,0,3,min,220306,620306,ff,IMMO_TIMEOUT_REWORK_MODE_TM_CF ,7B9,24,24,1,0,0,,220307,620307,ff,MODE_APP_CF,1:true;0:false ,7B9,24,31,1,0,0,,220308,620308,ff,IKEY_ACCESS_CF,0:WITHOUT_IKEY_ACCESS;1:WITH_IKEY_ACCESS ,7B9,24,39,.01,0,2,s,220309,620309,ff,HANDFREE_UNLOCK_INVALID_CF ,7B9,24,39,.01,0,2,s,22030A,62030A,ff,HANDFREE_LOCK_INVALID_CF ,7B9,24,31,1,0,0,,22030B,62030B,ff,IKEY_ACCESS_HANDLE_TYPE_CF,0:WITHOUT_BUTTON_OR_SENSOR;1:WITH_BUTTON_FOR_UNLOCK;2:WITH_SENSOR_FOR_UNLOCK ,7B9,24,24,1,0,0,,22030D,62030D,ff,WALK_AWAY_LOCKING_CF,1:true;0:false ,7B9,24,24,1,0,0,,22030E,62030E,ff,WAC_BACKUP_MODE_CF,1:true;0:false ,7B9,24,24,1,0,0,,22030F,62030F,ff,WAC_ACTIVATION_INITIAL_CF,1:true;0:false ,7B9,24,39,10,0,0,ms,220310,620310,ff,WAC_SWITCH_OFF_DISTURBERS_CF ,7B9,24,24,1,0,0,,220311,620311,ff,CUSTOMER_APPROACH_CF,1:true;0:false ,7B9,24,24,1,0,0,,220312,620312,ff,APPROACH_UNLOCK_CF,1:true;0:false ,7B9,24,24,1,0,0,,220313,620313,ff,APRUN_ACTIVATION_INITIAL_CF,1:true;0:false ,7B9,24,31,10,0,0,ms,220314,620314,ff,CAD_MPU_REQUEST_TM_CF ,7B9,24,24,1,0,0,,220315,620315,ff,WELCOME_GOODBYE_CF,1:true;0:false ,7B9,24,24,1,0,0,,220316,620316,ff,EASY_TRUNK_ACCESS_ECU_CF,1:true;0:false ,7B9,24,24,1,0,0,,220317,620317,ff,WITH_SCP_CF,1:true;0:false ,7B9,24,24,1,0,0,,220318,620318,ff,WITH_CCP_CF,1:true;0:false ,7B9,24,39,.01,0,2,s,220319,620319,ff,IMMO_TIME_OUT_LEARNING_KEY_TM_CF ,7B9,24,24,1,0,0,,22031A,62031A,ff,LOCK_CRYPTO_PAGE_CF,1:true;0:false ,7B9,24,24,1,0,0,,22031B,62031B,ff,WITH_DEBUG_FRAME_CF,1:true;0:false ,7B9,24,31,1,0,0,,22031C,62031C,ff,ECHO_RF_CF,5:DEBUG_ECHO_RF_DATA_FOR_ALL_FCT;1:DEBUG_LF_BLINK;2:DEBUG_ECHO_RF_DATA_RKE;3:DEBUG_ECHO_RF_CW;4:DEBUG_PASE_LOGGING;0:DEBUG_NONE;6:DEBUG_PRM_TRIGGER_EVENT ,7B9,24,31,1,0,0,,22031D,62031D,ff,VERLOG_CF,0:VERLOG_ICE;1:VERLOG_MG;2:VERLOG_SED;3:VERLOG_LCB ,7B9,24,24,1,0,0,,22031E,62031E,ff,VERLOG_US_CF,1:true;0:false ,7B9,24,24,1,0,0,,22031F,62031F,ff,HEART_BEAT_CF,1:true;0:false ,7B9,24,31,1,0,0,%,220320,620320,ff,LIGHTING_ON_PWM_CF ,7B9,24,24,1,0,0,,220321,620321,ff,INDUCTIVE_CHARGER_PRESENT_CF,1:true;0:false ,7B9,24,24,1,0,0,,220322,620322,ff,HANDFREE_ZONING_CF,1:true;0:false ,7B9,24,24,1,0,0,,220323,620323,ff,IKEY_ACCESS_ACTIVATION_INIT_CF,1:true;0:false ,7B9,24,24,1,0,0,,220324,620324,ff,IKEY_DEACTIVATE_BY_IKEYFOB_CF,1:true;0:false ,7B9,24,24,1,0,0,,220325,620325,ff,IKEY_ENABLE_IN_DRIVING_PHASE_CF,1:true;0:false ,7B9,24,24,1,0,0,,220326,620326,ff,TRUNK_SEPARATED_MNGT_CF,1:true;0:false ,7B9,24,31,1,0,0,,220327,620327,ff,RKE_BTN_1_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;3:RKE_BACKDOOR_OR_TRUNK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF ,7B9,24,31,1,0,0,,220328,620328,ff,RKE_BTN_2_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;3:RKE_BACKDOOR_OR_TRUNK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF ,7B9,24,31,1,0,0,,220329,620329,ff,RKE_BTN_3_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;3:RKE_BACKDOOR_OR_TRUNK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF ,7B9,24,31,1,0,0,,22032A,62032A,ff,RKE_BTN_4_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;3:RKE_BACKDOOR_OR_TRUNK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF ,7B9,24,31,1,0,0,,22032B,62032B,ff,RKE_BTN_5_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;3:RKE_BACKDOOR_OR_TRUNK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF ,7B9,24,24,1,0,0,,22032C,62032C,ff,RKE_ENABLE_IGN_ON_CF,1:true;0:false ,7B9,24,39,10,0,0,ms,22032D,62032D,ff,RKE_LOCK_LONG_TM_CF ,7B9,24,39,10,0,0,ms,22032E,62032E,ff,RKE_LOCK_UNLOCK_VERYLG_TM_CF ,7B9,24,39,10,0,0,ms,22032F,62032F,ff,RKE_PANIC_LONG_TM_CF ,7B9,24,39,10,0,0,ms,220330,620330,ff,RKE_PSD_L_LONG_TM_CF ,7B9,24,39,10,0,0,ms,220331,620331,ff,RKE_PSD_R_LONG_TM_CF ,7B9,24,39,10,0,0,ms,220332,620332,ff,RKE_REMOTE_LIGHT_LONG_TM_CF ,7B9,24,39,10,0,0,ms,220333,620333,ff,RKE_RES_LONG_TM_CF ,7B9,24,39,10,0,0,ms,220334,620334,ff,RKE_ROOF_LONG_TM_CF ,7B9,24,39,10,0,0,ms,220335,620335,ff,RKE_TRUNK_LONG_TM_CF ,7B9,24,39,10,0,0,ms,220336,620336,ff,RKE_UNLOCK_LONG_TM_CF ,7B9,24,24,1,0,0,,220337,620337,ff,IMMO_OFFBOARD_PAIRING_CF,1:true;0:false ,7B9,24,24,1,0,0,,220338,620338,ff,TRP_RESTRICTED_CF,1:true;0:false ,7B9,24,55,1,0,0,,220339,620339,4ff,IMMO_DURATION_SA_UNLOCKED_TIME_OUT_TM_CF ,7B9,24,24,1,0,0,,22033A,62033A,ff,ESCL_FAILURE_INHIB_START_CF,1:true;0:false ,7B9,24,24,1,0,0,,22033B,62033B,ff,POWER_BACK_DOOR_CF,1:true;0:false ,7B9,24,24,1,0,0,,22033C,62033C,ff,DTC_DONGLE_4A_CF,1:true;0:false ,7B9,24,24,1,0,0,,22033D,62033D,ff,DTC_EEPROM_46_CF,1:true;0:false ,7B9,24,24,1,0,0,,22033E,62033E,ff,DTC_ESCL_FUNCTION_52_CF,1:true;0:false ,7B9,24,24,1,0,0,,22033F,62033F,ff,DTC_ESCL_MODULE_55_CF,1:true;0:false ,7B9,24,24,1,0,0,,220340,620340,ff,DTC_ESCL_FUNCTION_67_CF,1:true;0:false ,7B9,24,24,1,0,0,,220341,620341,ff,DTC_ESCL_FUNCTION_87_CF,1:true;0:false ,7B9,24,24,1,0,0,,220342,620342,ff,DTC_ESCL_FUNCTION_88_CF,1:true;0:false ,7B9,24,24,1,0,0,,220343,620343,ff,DTC_ESCL_FUNCTION_98_CF,1:true;0:false ,7B9,24,24,1,0,0,,220344,620344,ff,DTC_ESCL_HFM_RELAY_96_CF,1:true;0:false ,7B9,24,24,1,0,0,,220345,620345,ff,DTC_ESCL_LOCK_SEQUENCE_09_CF,1:true;0:false ,7B9,24,24,1,0,0,,220346,620346,ff,DTC_ESCL_MODULE_04_CF,1:true;0:false ,7B9,24,24,1,0,0,,220347,620347,ff,DTC_ESCL_MODULE_11_CF,1:true;0:false ,7B9,24,24,1,0,0,,220348,620348,ff,DTC_ESCL_MODULE_49_CF,1:true;0:false ,7B9,24,24,1,0,0,,220349,620349,ff,DTC_ESCL_MODULE_4A_CF,1:true;0:false ,7B9,24,24,1,0,0,,22034B,62034B,ff,DTC_ESCL_MODULE_62_CF,1:true;0:false ,7B9,24,24,1,0,0,,22034C,62034C,ff,DTC_ESCL_MODULE_77_CF,1:true;0:false ,7B9,24,24,1,0,0,,22034D,62034D,ff,DTC_ESCL_MODULE_85_CF,1:true;0:false ,7B9,24,24,1,0,0,,22034E,62034E,ff,DTC_ESCL_MODULE_87_CF,1:true;0:false ,7B9,24,24,1,0,0,,22034F,62034F,ff,DTC_ESCL_SENSOR_LINE_12_CF,1:true;0:false ,7B9,24,24,1,0,0,,220350,620350,ff,DTC_ESCL_SENSOR_LINE_14_CF,1:true;0:false ,7B9,24,24,1,0,0,,220351,620351,ff,DTC_ESCL_SUPPLY_01_CF,1:true;0:false ,7B9,24,24,1,0,0,,220352,620352,ff,DTC_ESCL_UNLOCK_SEQUENCE_09_CF,1:true;0:false ,7B9,24,24,1,0,0,,220353,620353,ff,DTC_NOT_APC_LINE_1C_CF,1:true;0:false ,7B9,24,24,1,0,0,,220354,620354,ff,DTC_REGISTERS_43_CF,1:true;0:false ,7B9,24,24,1,0,0,,220355,620355,ff,DTC_ROM_45_CF,1:true;0:false ,7B9,24,24,1,0,0,,220356,620356,ff,DTC_APC_STATUS_BCM_85_CF,1:true;0:false ,7B9,24,24,1,0,0,,220357,620357,ff,DTC_APC_STATUS_USM_85_CF,1:true;0:false ,7B9,24,24,1,0,0,,220358,620358,ff,DTC_BCM_APV_CODE_68_CF,1:true;0:false ,7B9,24,31,1,0,0,,220359,620359,ff,ANTENNA_TUNNING_CF ,7B9,24,24,1,0,0,,22035A,62035A,ff,DTC_PWR_ECU_1C_CF,1:true;0:false ,7B9,24,24,1,0,0,,22035B,62035B,ff,TRP_PAIRED_CID_CTRL_CF,1:true;0:false ,7B9,24,447,1,0,0,,22035C,62035C,4ff,PASE_KEY_NET_VOLUMES_C0_0_CF ,7B9,24,447,1,0,0,,22035D,62035D,4ff,PASE_KEY_NET_VOLUMES_C0_1_CF ,7B9,24,447,1,0,0,,22035E,62035E,4ff,PASE_KEY_NET_VOLUMES_C0_2_CF ,7B9,24,447,1,0,0,,22035F,62035F,4ff,PASE_KEY_NET_VOLUMES_C0_3_CF ,7B9,24,239,1,0,0,,220360,620360,4ff,PASE_KEY_NET_VOLUMES_CONFIGURATION_0_CF ,7B9,24,239,1,0,0,,220361,620361,4ff,PASE_KEY_NET_VOLUMES_CONFIGURATION_1_CF ,7B9,24,239,1,0,0,,220362,620362,4ff,PASE_KEY_NET_VOLUMES_CONFIGURATION_2_CF ,7B9,24,239,1,0,0,,220363,620363,4ff,PASE_KEY_NET_VOLUMES_CONFIGURATION_3_CF ,7B9,24,375,1,0,0,,220364,620364,4ff,PASE_WAC_SQUARE_CORMER_CONFIGURATION_CF ,7B9,24,447,1,0,0,,220365,620365,4ff,PASE_KEY_NET_VOLUMES_C2_0_CF ,7B9,24,447,1,0,0,,220366,620366,4ff,PASE_KEY_NET_VOLUMES_C2_1_CF ,7B9,24,447,1,0,0,,220367,620367,4ff,PASE_KEY_NET_VOLUMES_C2_2_CF ,7B9,24,447,1,0,0,,220368,620368,4ff,PASE_KEY_NET_VOLUMES_C2_3_CF ,7B9,24,447,1,0,0,,220369,620369,4ff,PASE_KEY_NET_VOLUMES_C3_0_CF ,7B9,24,447,1,0,0,,22036A,62036A,4ff,PASE_KEY_NET_VOLUMES_C3_1_CF ,7B9,24,447,1,0,0,,22036B,62036B,4ff,PASE_KEY_NET_VOLUMES_C3_2_CF ,7B9,24,447,1,0,0,,22036C,62036C,4ff,PASE_KEY_NET_VOLUMES_C3_3_CF ,7B9,24,447,1,0,0,,22036D,62036D,4ff,PASE_KEY_NET_VOLUMES_C4_0_CF ,7B9,24,447,1,0,0,,22036E,62036E,4ff,PASE_KEY_NET_VOLUMES_C4_1_CF ,7B9,24,447,1,0,0,,22036F,62036F,4ff,PASE_KEY_NET_VOLUMES_C4_2_CF ,7B9,24,447,1,0,0,,220370,620370,4ff,PASE_KEY_NET_VOLUMES_C4_3_CF ,7B9,24,447,1,0,0,,220371,620371,4ff,PASE_KEY_NET_VOLUMES_C1_0_CF ,7B9,24,447,1,0,0,,220372,620372,4ff,PASE_KEY_NET_VOLUMES_C1_1_CF ,7B9,24,447,1,0,0,,220373,620373,4ff,PASE_KEY_NET_VOLUMES_C1_2_CF ,7B9,24,447,1,0,0,,220374,620374,4ff,PASE_KEY_NET_VOLUMES_C1_3_CF ,7B9,24,847,1,0,0,,220375,620375,4ff,PASE_KEY_NET_VOLUMES_R_0_CF ,7B9,24,847,1,0,0,,220376,620376,4ff,PASE_KEY_NET_VOLUMES_R_1_CF ,7B9,24,847,1,0,0,,220377,620377,4ff,PASE_KEY_NET_VOLUMES_R_2_CF ,7B9,24,847,1,0,0,,220378,620378,4ff,PASE_KEY_NET_VOLUMES_R_3_CF ,7B9,24,127,1,0,0,,220379,620379,4ff,PASE_KEY_NET_HSFN_CONFIGURATION_CF ,7B9,24,135,1,0,0,,22037A,62037A,4ff,PASE_KEY_NET_OUTSIDE_CONF_CF_ID ,7B9,24,24,1,0,0,,22037B,62037B,ff,CID_EXT_MEM_CF,1:true;0:false ,7B9,24,24,1,0,0,,22037C,62037C,ff,WAC_JINGLE_CF,1:true;0:false ,7B9,24,39,5,0,0,ms,22037D,62037D,ff,WAC_DELAY_SEP_TM_CF ,7B9,24,39,5,0,0,ms,22037E,62037E,ff,FEEDBACK_WAC_1_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,22037F,62037F,ff,JINGLE_FREQUENCY_WAC_1_SEP_CF ,7B9,24,39,5,0,0,ms,220380,620380,ff,WAC_MUTE_SEP_TM_CF ,7B9,24,39,5,0,0,,220381,620381,ff,FEEDBACK_WAC_2_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,220382,620382,ff,JINGLE_FREQUENCY_WAC_2_SEP_CF ,7B9,24,39,5,0,0,ms,220383,620383,ff,FEEDBACK_APRUN_3_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,220384,620384,ff,JINGLE_FREQUENCY_APRUN_3_SEP_CF ,7B9,24,39,5,0,0,ms,220385,620385,ff,APRUN_MUTE_3_SEP_TM_CF ,7B9,24,39,5,0,0,ms,220386,620386,ff,FEEDBACK_APRUN_4_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,220387,620387,ff,JINGLE_FREQUENCY_APRUN_4_SEP_CF ,7B9,24,39,5,0,0,ms,220388,620388,ff,FEEDBACK_CIDMOWER_5_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,220389,620389,ff,JINGLE_FREQUENCY_CIDMOWER_5_SEP_CF ,7B9,24,39,5,0,0,ms,22038A,62038A,ff,CIDMOWER_MUTE_5_SEP_TM_CF ,7B9,24,39,5,0,0,ms,22038B,62038B,ff,FEEDBACK_LOCK_6_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,22038C,62038C,ff,JINGLE_FREQUENCY_LOCK_6_SEP_CF ,7B9,24,39,5,0,0,ms,22038D,62038D,ff,REFUSELOCK_MUTE_6_SEP_TM_CF ,7B9,24,39,5,0,0,ms,22038E,62038E,ff,FEEDBACK_KEYLOCK_7_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,22038F,62038F,ff,JINGLE_FREQUENCY_KEYLOCK_7_SEP_CF ,7B9,24,39,5,0,0,ms,220390,620390,ff,KEYLOCK_MUTE_7_SEP_TM_CF ,7B9,24,39,5,0,0,ms,220391,620391,ff,FEEDBACK_TRUNK_8_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,220392,620392,ff,JINGLE_FREQUENCY_TRUNK_8_SEP_CF ,7B9,24,39,5,0,0,ms,220393,620393,ff,FEEDBACK_DOORS_9_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,220394,620394,ff,JINGLE_FREQUENCY_DOORS_9_SEP_CF ,7B9,24,39,5,0,0,ms,220395,620395,ff,PREVENTION_DOORS_MUTE_9_SEP_TM_CF ,7B9,24,39,5,0,0,ms,220396,620396,ff,FEEDBACK_2BEEPS_10_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,220397,620397,ff,JINGLE_FREQUENCY_2BEEPS_10_SEP_CF ,7B9,24,39,5,0,0,ms,220398,620398,ff,TWO_BEEPS_MUTE_10_SEP_TM_CF ,7B9,24,39,5,0,0,ms,220399,620399,ff,FEEDBACK_BEEP_11_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,22039A,62039A,ff,JINGLE_FREQUENCY_BEEP_11_SEP_CF ,7B9,24,39,5,0,0,ms,22039B,62039B,ff,FEEDBACK_TRUNK_OPEN_12_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,22039C,62039C,ff,JINGLE_FREQUENCY_TRUNK_OPEN_12_SEP_CF ,7B9,24,39,5,0,0,ms,22039D,62039D,ff,TRUNK_OPENING_MUTE_12_SEP_TM_CF ,7B9,24,39,5,0,0,ms,22039E,62039E,ff,FEEDBACK_CAR_FINDER_13_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,22039F,62039F,ff,JINGLE_FREQUENCY_CAR_FINDER_13_SEP_CF ,7B9,24,39,5,0,0,ms,2203A0,6203A0,ff,CAR_FINDER_MUTE_13_SEP_TM_CF ,7B9,24,39,5,0,0,ms,2203A1,6203A1,ff,FEEDBACK_DIAG_14_SEP_TM_CF ,7B9,24,39,1,0,0,Hz,2203A2,6203A2,ff,JINGLE_FREQUENCY_DIAG_14_SEP_CF ,7B9,24,55,1,0,0,,2203A3,6203A3,4ff,KEYLOCK_EXT_MAX_DURATION_TM_CF ,7B9,24,31,1,0,0,,2203A4,6203A4,ff,CIDMOWER_NB_FEEDBACK_CF ,7B9,24,31,1,0,0,,2203A5,6203A5,ff,REFUSELOCK_NB_FEEDBACK_CF ,7B9,24,31,1,0,0,,2203A6,6203A6,ff,PREVENTIONDOORS_NB_FEEDBACK_CF ,7B9,24,31,1,0,0,,2203A7,6203A7,ff,TRUNKOPENING_NB_FEEDBACK_CF ,7B9,24,31,1,0,0,,2203A8,6203A8,ff,CARFINDER_NB_FEEDBACK_CF ,7B9,24,39,.01,0,2,s,2203A9,6203A9,ff,POLLING_A_IVC_PRESENCE_TM_CF ,7B9,24,39,10,0,0,ms,2203AA,6203AA,ff,HFM_GATEWAY_RS_TM_CF ,7B9,24,24,1,0,0,,2203AB,6203AB,ff,DAY_NGHT_CF,1:true;0:false ,7B9,24,31,1,0,0,%,2203AC,6203AC,ff,NIGHT_PWM_CF ,7B9,24,31,1,0,0,,2203AD,6203AD,ff,IMMO_IASS_INDEX_CF ,7B9,24,31,1,0,0,,2203AF,6203AF,ff,PASE_ANTENNA_PHASE_CAR_TYPE_CF ,7B9,24,24,1,0,0,,2203B1,6203B1,ff,DTC_CAN_BCM_87_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203B2,6203B2,ff,DTC_CAN_ECM_87_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203B3,6203B3,ff,DTC_CAN_ESCL_87_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203B4,6203B4,ff,DTC_CAN_METER_87_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203B5,6203B5,ff,DTC_CAN_USM_87_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203B6,6203B6,ff,DTC_CAN_VDC_87_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203B7,6203B7,ff,DTC_EEPROM_42_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203B8,6203B8,ff,DTC_KAZASHI_14_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203B9,6203B9,ff,DTC_START_BUTTON_12_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203BA,6203BA,ff,DTC_START_BUTTON_14_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203BB,6203BB,ff,DTC_START_BUTTON_1C_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203BC,6203BC,ff,DTC_IKEY_BACKDOOR_SWITCH_23_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203BD,6203BD,ff,DTC_IKEY_FL_SWITCH_23_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203BE,6203BE,ff,DTC_IKEY_FR_SWITCH_23_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203BF,6203BF,ff,DTC_IKEY_RL_SWITCH_23_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203C0,6203C0,ff,DTC_IKEY_RR_SWITCH_23_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203C1,6203C1,ff,DTC_INT_ANTENNA_14_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203C2,6203C2,ff,DTC_LEFT_ANTENNA_14_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203C3,6203C3,ff,DTC_LF3_ANTENNA_14_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203C4,6203C4,ff,DTC_REAR_ANTENNA_14_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203C5,6203C5,ff,DTC_RIGHT_ANTENNA_14_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203C6,6203C6,ff,DTC_TRUNK_ANTENNA_14_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203C7,6203C7,ff,WITH_VR_CF,1:true;0:false ,7B9,24,31,1,0,0,,2203C8,6203C8,ff,LOW_BATT_DETECT_INCRE_CF ,7B9,24,31,1,0,0,,2203C9,6203C9,ff,LOW_BATT_DETECT_DECRE_CF ,7B9,24,31,1,0,0,,2203CA,6203CA,ff,LOW_BATT_DETECT_MAX_CF ,7B9,24,31,1,0,0,,2203CB,6203CB,ff,LOW_BATT_DETECT_STEP_CF ,7B9,24,31,10,0,0,ms,2203CC,6203CC,ff,HFM_CAN_REQUEST_PERIOD_TM_CF ,7B9,24,31,1,0,0,,2203CD,6203CD,ff,VEHICLE_CODE_CF ,7B9,24,24,1,0,0,,2203CF,6203CF,ff,WAL_ANTENNA_DIAG_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203D0,6203D0,ff,RES_LONG_RANGE_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203D1,6203D1,ff,DIAG_OF_PUSHSTART_BTN_ENABLE_CF,1:true;0:false ,7B9,24,31,1,0,0,,2203D2,6203D2,ff,MSG_TYPE_CF ,7B9,24,31,1,0,0,,2203D3,6203D3,ff,SIGMA_CF,0:DEACTIVATE;170:ACTIVATE ,7B9,24,24,1,0,0,,2203D4,6203D4,ff,DTC_START_BUTTON_01_CF,1:true;0:false ,7B9,24,151,1,0,0,,2203D5,6203D5,4ff,LF_PROTECTION_CF ,7B9,24,31,1,0,0,,2203D6,6203D6,4ff,SAS_CONFIGURATION_CF.RAD_AS_THRESHOLD_CF ,7B9,32,39,1,0,0,,2203D6,6203D6,4ff,SAS_CONFIGURATION_CF.RAD_AS_RESET_TIMEOUT_CF ,7B9,40,71,1,0,0,,2203D6,6203D6,4ff,SAS_CONFIGURATION_CF.RAD_AS_DIST_ATTACK ,7B9,72,79,1,0,0,,2203D6,6203D6,4ff,SAS_CONFIGURATION_CF.RAD.AS.RESET.AUTH.CF ,7B9,80,87,1,0,0,,2203D6,6203D6,4ff,SAS_CONFIGURATION_CF.RESERVED ,7B9,24,39,1,0,0,,2203D7,6203D7,ff,VEHICLESPEEDTHRESHOLD_CF ,7B9,24,24,1,0,0,,2203D8,6203D8,ff,DTC_ESCL_MODULE_29_CF,1:true;0:false ,7B9,24,375,1,0,0,,2203D9,6203D9,4ff,SPARE_TUNING ,7B9,24,24,1,0,0,,2203DA,6203DA,ff,DTC_EEPROM_55_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203DB,6203DB,ff,HF_CARD_INHIB_FOR_ACCESS_CF,1:true;0:false ,7B9,24,55,1,0,0,,2203DC,6203DC,4ff,STLOCK_TANTICIPEE_TM_CF ,7B9,24,39,10,0,0,ms,2203DD,6203DD,ff,ACCESS_SWITCH_LOCK_DLY_TM_CF ,7B9,24,39,10,0,0,ms,2203DE,6203DE,ff,ACCESS_SWITCH_UNLOCK_DLY_TM_CF ,7B9,24,24,1,0,0,,2203DF,6203DF,ff,DOOR_HANDLE_TYPE_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203E0,6203E0,ff,STEERING_WHEEL_SIDE_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203E1,6203E1,ff,SWITCHES_MGNT_STRATEGY_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203E2,6203E2,ff,REFUSE_TO_LOCK_INSID_IKEYFOB_CF,1:true;0:false ,7B9,24,24,1,0,0,,2203E3,6203E3,ff,DHA_RTL_SOUND_FEEDBACK_CF,1:true;0:false ,7B9,24,31,1,0,0,,221001,621001,ff,SLOC_CF,0:SLOC_AVAILABLE;1:SLOC_SECURE;2:SLOC_MEDIUM ,7B9,0,0,1,0,0,,221002,621002,ff,DataRead.ContiReserved2 ,7B9,0,0,1,0,0,,221003,621003,ff,DataRead.ContiReserved3 ,7B9,0,0,1,0,0,,221004,621004,ff,DataRead.ContiReserved4 ,7B9,24,39,.01,0,2,,222001,622001,ff,ESCL_AIRBAG_FRAME_ABSENT_TM_TP ,7B9,24,31,.01,0,2,s,222002,622002,ff,ESCL_DEC_1_THERMAL_VALUE_TM_TP ,7B9,24,31,1,0,0,°C,222003,622003,ff,ESCL_INIT_THERMAL_VALUE_TP ,7B9,24,31,.01,0,2,s,222004,622004,ff,ESCL_SENSOR_LINE_IO_CTRL_TM_TP ,7B9,24,39,.01,0,2,km/h,222005,622005,ff,ESCL_SPEED_FOR_INHIB_OFF_TP ,7B9,24,31,1,0,0,°C,222007,622007,ff,ESCL_THERMAL_PENALTY_INC_TP ,7B9,24,31,10,0,0,ms,222008,622008,ff,ESCL_VIRTUAL_LOCKING_TM_TP ,7B9,24,31,10,0,0,ms,222009,622009,ff,ESCL_VIRTUAL_UNLOCKING_TM_TP ,7B9,24,39,.01,0,2,s,22200A,62200A,ff,MAX_AIRBAG_WAKE_UP_TM_TP ,7B9,24,39,.01,0,2,s,22200B,62200B,ff,MAX_AUTHENTICATION_TM_TP ,7B9,24,39,.01,0,2,s,22200C,62200C,ff,MAX_COLUMN_LOCK_CONDITION_TM_TP ,7B9,24,39,.01,0,2,s,22200D,62200D,ff,MAX_STEER_UNLOCK_ANSWER_TM_TP ,7B9,24,39,.01,0,2,s,22200E,62200E,ff,MAX_STEERING_LOCK_ANSWER_TM_TP ,7B9,24,31,1,0,0,V,22200F,62200F,ff,MAX_V_BAT_ESCL_LOCK_TP ,7B9,24,31,1,0,0,V,222010,622010,ff,MAX_V_BAT_ESCL_LEARNING_TP ,7B9,24,31,1,0,0,V,222011,622011,ff,MAX_V_BAT_ESCL_PWR_TP ,7B9,24,31,1,0,0,V,222012,622012,ff,MAX_V_BAT_ESCL_UNLOCK_TP ,7B9,24,31,1,0,0,°C,222013,622013,ff,MAX_VALUE_THERMAL_PROTECTION_TP ,7B9,24,31,1,0,0,V,222014,622014,ff,MIN_V_BAT_ESCL_LEARNING_TP ,7B9,24,31,1,0,0,,222015,622015,ff,MIN_V_BAT_ESCL_LOCK_TP ,7B9,24,31,1,0,0,V,222016,622016,ff,MIN_V_BAT_ESCL_PWR_TP ,7B9,24,31,1,0,0,V,222017,622017,ff,MIN_V_BAT_ESCL_UNLOCK_TP ,7B9,24,39,1,0,0,,222018,622018,ff,NO_COMMAND_CODE_TP ,7B9,24,31,1,0,0,,22201A,62201A,ff,OCCURENCE_DTC_BCM_ABS_TP ,7B9,24,31,1,0,0,,22201F,62201F,ff,OCCURENCE_DTC_HFM_RELAY_TP ,7B9,24,31,1,0,0,,222020,622020,ff,OCCURENCE_DTC_NOT_IGNITION_TP ,7B9,24,31,1,0,0,,222021,622021,ff,OCCURENCE_DTC_SAFETYLINE_TP ,7B9,24,31,1,0,0,,222022,622022,ff,OCCURENCE_MECHANICAL_TP ,7B9,24,31,1,0,0,,222023,622023,ff,OCCURENCE_SCG_SL_TP ,7B9,24,31,1,0,0,,222024,622024,ff,OCCURENCE_SPEED_TP ,7B9,24,31,1,0,0,,222025,622025,ff,OCCURENCE_UNDET_L_TP ,7B9,24,31,1,0,0,,222026,622026,ff,OCCURENCE_UNDET_UNL_TP ,7B9,24,39,.01,0,2,s,222027,622027,ff,RES_TIMEOUT_TM_TP ,7B9,24,39,.01,0,2,s,22202A,62202A,ff,STLOCK_DIAG_MAINTAIN_REQ_TM_TP ,7B9,24,24,1,0,0,,22202C,62202C,ff,STLOCK_ECM_STATUS_LOCK_INHIB_TP,1:true;0:false ,7B9,24,39,10,0,0,ms,22202D,62202D,ff,STLOCK_FRAMEDELAY_TM_TP ,7B9,24,39,.01,0,2,s,22202E,62202E,ff,STLOCK_LOCK_DELAY_TM_TP ,7B9,24,39,.01,0,2,s,22202F,62202F,ff,STLOCK_PERIOD_PWR_SPY_TM_TP ,7B9,24,39,10,0,0,ms,222030,622030,ff,STLOCK_TA_TM_TP ,7B9,24,31,10,0,0,ms,222032,622032,ff,STLOCK_TAPCOFF_TM_TP ,7B9,24,39,.01,0,2,s,222033,622033,ff,STLOCK_TAPP_TM_TP ,7B9,24,39,.01,0,2,s,222034,622034,ff,STLOCK_TCOSTA_TM_TP ,7B9,24,39,10,0,0,ms,222035,622035,ff,STLOCK_TD_T2_TM_TP ,7B9,24,31,.01,0,2,s,222036,622036,ff,STLOCK_TEEPROM_TM_TP ,7B9,24,31,10,0,0,ms,222037,622037,ff,STLOCK_TFTT1_TM_TP ,7B9,24,39,.01,0,2,s,222038,622038,ff,STLOCK_TINHIBITION_TM_TP ,7B9,24,39,10,0,0,ms,222039,622039,ff,STLOCK_TLFIN_TM_TP ,7B9,24,39,.01,0,2,s,22203A,62203A,ff,STLOCK_TLOCKMAX_TM_TP ,7B9,24,39,10,0,0,ms,22203B,62203B,ff,STLOCK_TNO_COMMAND_TM_TP ,7B9,24,39,.01,0,2,s,22203C,62203C,ff,STLOCK_TPENDLOCK_TM_TP ,7B9,24,39,.01,0,2,s,22203D,62203D,ff,STLOCK_TPLOCK_OFFAV_TM_TP ,7B9,24,31,10,0,0,ms,22203E,62203E,ff,STLOCK_TPOFFAV_TM_TP ,7B9,24,31,10,0,0,ms,22203F,62203F,ff,STLOCK_TPONAV_TM_TP ,7B9,24,39,10,0,0,ms,222040,622040,ff,STLOCK_TRT_AND_TSENSOR_TM_TP ,7B9,24,39,10,0,0,ms,222041,622041,ff,STLOCK_TTSUPPLIED_TM_TP ,7B9,24,31,10,0,0,ms,222042,622042,ff,STLOCK_TVDISPO_TM_TP ,7B9,24,39,10,0,0,ms,222043,622043,ff,STLOCK_TWTTS_TM_TP ,7B9,24,39,10,0,0,ms,222045,622045,ff,TUNLOCKING_INHIBITION_TM_TP ,7B9,24,31,1,0,0,V,222046,622046,ff,V_BAT_SPY_PWR_LIMIT_TP ,7B9,24,39,10,0,0,ms,222047,622047,ff,VEHICLE_STOP_CONFIRMATION_TM_TP ,7B9,24,31,1,0,0,km/h,222048,622048,ff,VEHICLE_STOPPED_THRESH_TP ,7B9,24,39,.01,0,2,s,222049,622049,ff,VERLOG_FRAME_ABSENT_TM_TP ,7B9,24,31,10,0,0,ms,22204A,62204A,ff,INTER_FRAMES_TM_TP ,7B9,24,31,10,0,0,ms,22204B,62204B,ff,RECEIVE_DONGLE_CODE_TM_TP ,7B9,24,39,.01,0,2,s,22204D,62204D,ff,FRAME_ABSENT_CONFIRMATION_TM_TP ,7B9,24,39,1,0,0,km/h,22204E,62204E,ff,VEHICLE_MOVING_THRESHOLD_TP ,7B9,24,39,1,0,0,,22204F,62204F,ff,VEHICLE_STOPPED_THRESHOLD_TP ,7B9,24,39,.01,0,2,s,22206C,62206C,ff,IMMO_DURATION_ANTI_SCANNING_TIMER_TM_TP ,7B9,24,55,1,0,0,,22206D,62206D,4ff,IMMO_DURATION_AUTHORIZATION_ECM_PAIRING_TM_TP ,7B9,24,31,1,0,0,,222070,622070,ff,IMMO_NB_IGNITION_AUTO_ERASE_APV_CODE_TP ,7B9,24,31,10,0,0,ms,222071,622071,ff,TCU_AUTHENT_TIMEOUT_TM_TP ,7B9,24,31,10,0,0,ms,222072,622072,ff,HFM_INTERFRAMES_TM_TP ,7B9,24,55,1,0,0,,222073,622073,4ff,WAC_WINDOWS_TM_TP ,7B9,24,55,1,0,0,,222074,622074,4ff,WAC_MEMORIZATION_TM_TP ,7B9,24,39,10,0,0,ms,222075,622075,ff,WAC_TIMEOUT_BCM_SLEEP_TM_TP ,7B9,24,55,1,0,0,,222076,622076,4ff,WAC_SEARCH_LOOPS_TP ,7B9,24,39,10,0,0,ms,222077,622077,ff,WAC_SEARCH_T1_PERIOD_TM_TP ,7B9,24,39,10,0,0,ms,222078,622078,ff,WAC_SEARCH_T2_PERIOD_TM_TP ,7B9,24,31,.01,0,2,s,222079,622079,ff,KAZASHI_AUTHENT_PERIOD_TM_TP ,7B9,24,39,.01,0,2,s,22207B,62207B,ff,KAZASHI_POLLING_TIMEOUT_TM_TP ,7B9,24,31,10,0,0,ms,22207C,62207C,ff,MAX_TIME_AUTH_TM_TP ,7B9,24,39,10,0,0,ms,22207D,62207D,ff,PROXIMITY_POLLING_PERIOD_T1_TM_TP ,7B9,24,39,1,0,0,s,22207E,62207E,ff,PROXIMITY_POLLING_DURATION_T1_TM_TP ,7B9,24,39,10,0,0,ms,22207F,62207F,ff,PROXIMITY_POLLING_PERIOD_T2_TM_TP ,7B9,24,55,1,0,0,,222080,622080,4ff,PROXIMITY_POLLING_DURATION_T2_TM_TP ,7B9,24,39,10,0,0,ms,222081,622081,ff,APPROACH_POLLING_PERIOD_T1_TM_TP ,7B9,24,55,1,0,0,,222082,622082,4ff,APPROACH_POLLING_DURATION_T1_TM_TP ,7B9,24,55,1,0,0,,222083,622083,4ff,APPROACH_POLLING_DURATION_T2_TM_TP ,7B9,24,39,10,0,0,ms,222084,622084,ff,APPROACH_POLLING_PERIOD_T2_TM_TP ,7B9,24,31,1,0,0,,222085,622085,ff,CAD_SEARCH_LOOPS_TP ,7B9,24,31,10,0,0,ms,222086,622086,ff,CAD_PRE_AUTH_TM_TP ,7B9,24,39,.01,0,2,s,222088,622088,ff,TRANSP_TIMEOUT_AUTH_TM_TP ,7B9,24,39,10,0,0,ms,222089,622089,ff,CUSTOMER_AUTHENT_TIMEOUT_TM_TP ,7B9,24,39,10,0,0,ms,22208A,62208A,ff,LOCKING_TIMEOUT_TM_TP ,7B9,24,31,1,0,0,,2220A0,6220A0,ff,ARCHI_EE_TP,0:ARCHI_EE_G3;1:ARCHI_EE_T4;2:ARCHI_EE_T4_VS;3:ARCHI_EE_C1R;4:ARCHI_EE_C1A ,7B9,24,39,10,0,0,ms,2220A1,6220A1,ff,IKEY_AUTHENT_TIMEOUT_TM_TP ,7B9,24,31,10,0,0,ms,2220A2,6220A2,ff,IKEY_DISTURBER_SHUT_OFF_TM_TP ,7B9,24,31,10,0,0,ms,2220A3,6220A3,ff,IKEY_DISTURB_REQ_SHUT_OFF_TM_TP ,7B9,24,31,10,0,0,ms,2220A4,6220A4,ff,NUMBER_KEYINSIDE_TM_TP ,7B9,24,31,10,0,0,ms,2220A5,6220A5,ff,SEARCH_KEYINSIDE_TM_TP ,7B9,24,31,10,0,0,ms,2220A6,6220A6,ff,RKE_BUTTON_PRESSED_TM_TP ,7B9,24,31,10,0,0,ms,2220A7,6220A7,ff,KICK_DETECTED_TM_TP ,7B9,24,55,1,0,0,,2220A8,6220A8,4ff,IMMO_DURATION_AUTHORIZATION_TCU_PAIRING_TM_TP ,7B9,24,31,.01,0,2,km/h,2220A9,6220A9,ff,ESCL_STOP_SPEED_THRESHOLD_TP ,7B9,24,31,10,0,0,ms,2220AA,6220AA,ff,NOT_IGNITION_MON_FILTER_TM_TP ,7B9,24,31,10,0,0,ms,2220AC,6220AC,ff,SAFETY_LINE_MON_FILTERING_TM_TP ,7B9,24,31,.01,0,2,V,2220AD,6220AD,ff,SAFETY_LINE_MON_THRESHOLD_TP ,7B9,24,31,10,0,0,ms,2220AE,6220AE,ff,STLOCK_E2PROM_WRITING_IN_TM_TP ,7B9,24,39,10,0,0,ms,2220AF,6220AF,ff,ESCL_STATUS_TIME_TM_TP ,7B9,24,31,1,0,0,,2220B0,6220B0,ff,OCC_DTC_IGN_CABIN_ON_TP ,7B9,24,31,1,0,0,,2220B1,6220B1,ff,OCC_DTC_IGN_ENGINE_ON_TP ,7B9,24,31,1,0,0,,2220B2,6220B2,ff,OCCURENCE_DTC_USM_ABS_TP ,7B9,24,39,10,0,0,ms,2220B3,6220B3,ff,WAIT_4_BOTH_IGNITIONS_OFF_TM_TP ,7B9,24,39,.01,0,2,s,2220B9,6220B9,ff,BYPASS_RPU_TM_TP ,7B9,24,39,.01,0,2,s,2220BA,6220BA,ff,TIMEOUT_A_IVC_PRESENCE_TM_TP ,7B9,24,31,10,0,0,ms,2220BB,6220BB,ff,START_BUTTON_FILTERING_TM_TP ,7B9,24,39,.01,0,2,s,2220BC,6220BC,ff,DSC_UP_ROUTINE_ASC_TM_TP ,7B9,24,31,10,0,0,ms,2220BD,6220BD,ff,ESCL_WAIT_FOR_CONFIRM_RES_TM_TP ,7B9,24,24,1,0,0,,224001,624001,ff,ENGINE_INHIBITION_S,1:true;0:false ,7B9,24,24,1,0,0,,224004,624004,ff,ESCL_BCM_ABSENT_S,1:true;0:false ,7B9,24,39,1,0,0,,22401F,62401F,ff,ESCL_DIAGNOSIS_FLAG_1_S ,7B9,24,39,1,0,0,,224020,624020,ff,ESCL_DIAGNOSIS_FLAG_10_S ,7B9,24,39,1,0,0,,224021,624021,ff,ESCL_DIAGNOSIS_FLAG_2_S ,7B9,24,39,1,0,0,,224022,624022,ff,ESCL_DIAGNOSIS_FLAG_3_S ,7B9,24,39,1,0,0,,224023,624023,ff,ESCL_DIAGNOSIS_FLAG_4_S ,7B9,24,39,1,0,0,,224024,624024,ff,ESCL_DIAGNOSIS_FLAG_5_S ,7B9,24,39,1,0,0,,224025,624025,ff,ESCL_DIAGNOSIS_FLAG_6_S ,7B9,24,39,1,0,0,,224026,624026,ff,ESCL_DIAGNOSIS_FLAG_7_S ,7B9,24,39,1,0,0,,224027,624027,ff,ESCL_DIAGNOSIS_FLAG_8_S ,7B9,24,39,1,0,0,,224028,624028,ff,ESCL_DIAGNOSIS_FLAG_9_S ,7B9,24,31,1,0,0,,224029,624029,ff,ESCL_DIAGNOSIS_FLAG_PS_S ,7B9,24,24,1,0,0,,22402B,62402B,ff,ESCL_IGNITION_INHIBITION_S,1:true;0:false ,7B9,24,24,1,0,0,,22402C,62402C,ff,ESCL_IGNITION_ON_FLAG_S,1:true;0:false ,7B9,24,31,1,0,0,,22402E,62402E,ff,NB_BCM_ABS_S ,7B9,24,31,1,0,0,,22402F,62402F,ff,NB_DTC_RELAY_S ,7B9,24,31,1,0,0,,224033,624033,ff,NB_MECHANICAL_S ,7B9,24,31,1,0,0,,224035,624035,ff,NB_SAFETYLINE_S ,7B9,24,31,1,0,0,,224036,624036,ff,NB_SCG_SENSORLINE_S ,7B9,24,31,1,0,0,,224037,624037,ff,NB_SPEED_INHIBITION_S ,7B9,24,31,1,0,0,,224038,624038,ff,NB_UNDET_L_S ,7B9,24,31,1,0,0,,224039,624039,ff,NB_UNDET_UNL_S ,7B9,24,24,1,0,0,,22403A,62403A,ff,VEHICLE_STOPPED_CONFIRMED_S,1:true;0:false ,7B9,24,24,1,0,0,,22403C,62403C,ff,DONGLE_PAIRING_DONE_S,1:true;0:false ,7B9,24,31,1,0,0,,22403D,62403D,ff,INTERNAL_DONGLE_CONFIG_S,0:DONGLE_SLAVE_1;1:DONGLE_SLAVE_2;2:DONGLE_SLAVE_3;3:SERIAL_DONGLE ,7B9,24,24,1,0,0,,22403F,62403F,ff,ECM_RES_VERLOG_PROTECTION_S,1:true;0:false ,7B9,24,24,1,0,0,,224040,624040,ff,ECM_VERLOG_PROTECTION_S,1:true;0:false ,7B9,24,24,1,0,0,,224041,624041,ff,LEARNING_CARIMMO_NOT_FINISHED_S,1:true;0:false ,7B9,24,24,1,0,0,,224047,624047,ff,ECU_IS_BLANK_S,1:true;0:false ,7B9,24,39,1,0,0,,224048,624048,ff,RKE_CID1_COUNTER_S ,7B9,24,39,1,0,0,,224049,624049,ff,RKE_CID2_COUNTER_S ,7B9,24,39,1,0,0,,22404A,62404A,ff,RKE_CID3_COUNTER_S ,7B9,24,39,1,0,0,,22404B,62404B,ff,RKE_CID4_COUNTER_S ,7B9,24,31,1,0,0,,22404E,62404E,ff,GET_LAST_CONFIGURATION_ERROR_S,0:ATCIDCNF_OPERATION_SUCCESSFUL;1:ATCIDCNF_ERROR_TRANSPORT_AUTH;2:ATCIDCNF_ERROR_ALREADY_KEY_LEARNING;3:ATCIDCNF_ERROR_LOCKED_KEY;4:ATCIDCNF_ERROR_SET_BANK;5:ATCIDCNF_ERROR_WRITE_RSK;6:ATCIDCNF_ERROR_WRITE_CML;7:ATCIDCNF_ERROR_READ_KIN;8:ATCIDCNF_ERROR_WRITE_KIN;9:ATCIDCNF_ERROR_WRITE_ISK;10:ATCIDCNF_ERROR_LOCK_KEY;11:ATCIDCNF_ERROR_AUTH_NEW_ISK;12:ATCIDCNF_ERROR_BADISKAPV;13:ATCIDCNF_ERROR_EEPROM_FAILURE;14:ATCIDCNF_ERROR_UNKNOWN_BLANK_CID;15:ATCIDCNF_ERROR_TIMEOUT_CID_CONF;16:ATCIDCNF_TRP_DRIVER_NOT_AVAILABLE;17:ATCIDCNF_ERROR_INVALID_CID_NUMBER;18:ATCIDCNF_ERROR_INVALID_OPERATION;19:ATCIDCNF_ERROR_RESYNCH ,7B9,24,31,1,0,0,,22404F,62404F,ff,GET_LAST_CONFIGURATION_ERROR_SP_S,0:SP_ATCIDCNF_OPERATION_SUCCESSFUL;1:SP_ATCIDCNF_ERROR_TRANSPORT_AUTH;2:SP_ATCIDCNF_ERROR_ALREADY_KEY_LEARNING;3:SP_ATCIDCNF_ERROR_LOCKED_KEY;4:SP_ATCIDCNF_ERROR_SET_BANK;5:SP_ATCIDCNF_ERROR_WRITE_RSK;6:SP_ATCIDCNF_ERROR_WRITE_ISK;7:SP_ATCIDCNF_ERROR_AUTH_NEW_ISK;8:SP_ATCIDCNF_ERROR_EEPROM_FAILURE;9:SP_ATCIDCNF_ERROR_UNKNOWN_BLANK_CID;10:SP_ATCIDCNF_ERROR_TIMEOUT_CID_CONF;11:SP_ATCIDCNF_TRP_DRIVER_NOT_AVAILABLE;12:SP_ATCIDCNF_ERROR_INVALID_CID_NUMBER;13:SP_ATCIDCNF_ERROR_INVALID_OPERATION;14:SP_ATCIDCNF_ERROR_RESYNCH ,7B9,24,151,1,0,0,,224052,624052,4ff,IMMO_APV_CODE_S.IMMO_APV_CODE_S ,7B9,32,39,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.1 ,7B9,40,47,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.2 ,7B9,48,55,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.3 ,7B9,56,63,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.4 ,7B9,64,71,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.5 ,7B9,72,79,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.6 ,7B9,80,87,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.7 ,7B9,88,95,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.8 ,7B9,96,103,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.9 ,7B9,104,111,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.10 ,7B9,112,119,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.11 ,7B9,120,127,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.12 ,7B9,128,135,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.13 ,7B9,136,143,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.14 ,7B9,144,151,1,0,0,,224052,624052,ff,IMMO_APV_CODE_S.15 ,7B9,24,31,1,0,0,,224053,624053,ff,IMMO_COUNTER_AFTER_SALES_PAIRING_S ,7B9,24,31,1,0,0,,224054,624054,ff,IMMO_COUNTER_FACTORY_AND_AFTER_SALES_PAIRING_S ,7B9,24,31,1,0,0,,224055,624055,ff,IMMO_COUNTER_FACTORY_PAIRING_S ,7B9,24,31,1,0,0,,224056,624056,ff,IMMO_COUNTER_IGNITION_S ,7B9,24,24,1,0,0,,224057,624057,ff,IMMO_FLAG_ANTI_SCANNING_LAUNCHED_S,1:true;0:false ,7B9,24,24,1,0,0,,224058,624058,ff,IMMO_FLAG_CODE_APV_AVAILABLE_S,1:true;0:false ,7B9,24,24,1,0,0,,224059,624059,ff,IMMO_FLAG_CODE_ECM_AVAILABLE_S,1:true;0:false ,7B9,24,31,1,0,0,,22405B,62405B,ff,IMMO_NB_CID_PAIRED_S ,7B9,24,24,1,0,0,,22405C,62405C,ff,MODE_APP_ACTIVATED_S,1:true;0:false ,7B9,24,24,1,0,0,,22406B,62406B,ff,KEY_1_SYNC_S,1:true;0:false ,7B9,24,24,1,0,0,,22406C,62406C,ff,KEY_2_SYNC_S,1:true;0:false ,7B9,24,24,1,0,0,,22406D,62406D,ff,KEY_3_SYNC_S,1:true;0:false ,7B9,24,24,1,0,0,,22406E,62406E,ff,KEY_4_SYNC_S,1:true;0:false ,7B9,24,24,1,0,0,,22406F,62406F,ff,RKE_CID_NEED_RESYNC_ID_1_S,1:true;0:false ,7B9,24,24,1,0,0,,224070,624070,ff,RKE_CID_NEED_RESYNC_ID_2_S,1:true;0:false ,7B9,24,24,1,0,0,,224071,624071,ff,RKE_CID_NEED_RESYNC_ID_3_S,1:true;0:false ,7B9,24,24,1,0,0,,224072,624072,ff,RKE_CID_NEED_RESYNC_ID_4_S,1:true;0:false ,7B9,24,39,1,0,0,,224074,624074,ff,CNT_WAC_BACKUP_S ,7B9,24,39,1,0,0,,224075,624075,ff,CNT_WAC_LOCK_BY_RF_S ,7B9,24,39,1,0,0,,224076,624076,ff,CNT_WAC_MEMO_TIMEOUT_S ,7B9,24,39,1,0,0,,224077,624077,ff,CNT_WAC_MEMORIZED_S ,7B9,24,39,1,0,0,,224078,624078,ff,CNT_WAC_STOP_BY_TIMEOUT_S ,7B9,24,31,1,0,0,,224079,624079,ff,LAST_WAC_EXIT_TRIG_S.0,0:WAC_EXIT_BY_RESET;1:WAC_EXIT_NO_ONE;2:WAC_EXIT_TIMEOUT;3:WAC_EXIT_NO_ID_AFTER_TRIG_WAC;4:WAC_EXIT_ID_INSIDE_DOOR_CLOSE;5:WAC_EXIT_CAR_SECURED;6:WAC_EXIT_USER_INHIBITION;7:WAC_EXIT_CRASH_INHIBITION;8:WAC_EXIT_VEHICLE_STATE_INHIBITION;9:WAC_EXIT_MEMO_TIMEOUT;10:WAC_EXIT_BY_STOPAUTO;11:WAC_EXIT_LOCK_BY_WAC_RF;12:WAC_EXIT_LF_ERROR ,7B9,32,39,1,0,0,,224079,624079,ff,LAST_WAC_EXIT_TRIG_S.1,0:WAC_EXIT_BY_RESET;1:WAC_EXIT_NO_ONE;2:WAC_EXIT_TIMEOUT;3:WAC_EXIT_NO_ID_AFTER_TRIG_WAC;4:WAC_EXIT_ID_INSIDE_DOOR_CLOSE;5:WAC_EXIT_CAR_SECURED;6:WAC_EXIT_USER_INHIBITION;7:WAC_EXIT_CRASH_INHIBITION;8:WAC_EXIT_VEHICLE_STATE_INHIBITION;9:WAC_EXIT_MEMO_TIMEOUT;10:WAC_EXIT_BY_STOPAUTO;11:WAC_EXIT_LOCK_BY_WAC_RF;12:WAC_EXIT_LF_ERROR ,7B9,40,47,1,0,0,,224079,624079,ff,LAST_WAC_EXIT_TRIG_S.2,0:WAC_EXIT_BY_RESET;1:WAC_EXIT_NO_ONE;2:WAC_EXIT_TIMEOUT;3:WAC_EXIT_NO_ID_AFTER_TRIG_WAC;4:WAC_EXIT_ID_INSIDE_DOOR_CLOSE;5:WAC_EXIT_CAR_SECURED;6:WAC_EXIT_USER_INHIBITION;7:WAC_EXIT_CRASH_INHIBITION;8:WAC_EXIT_VEHICLE_STATE_INHIBITION;9:WAC_EXIT_MEMO_TIMEOUT;10:WAC_EXIT_BY_STOPAUTO;11:WAC_EXIT_LOCK_BY_WAC_RF;12:WAC_EXIT_LF_ERROR ,7B9,48,55,1,0,0,,224079,624079,ff,LAST_WAC_EXIT_TRIG_S.3,0:WAC_EXIT_BY_RESET;1:WAC_EXIT_NO_ONE;2:WAC_EXIT_TIMEOUT;3:WAC_EXIT_NO_ID_AFTER_TRIG_WAC;4:WAC_EXIT_ID_INSIDE_DOOR_CLOSE;5:WAC_EXIT_CAR_SECURED;6:WAC_EXIT_USER_INHIBITION;7:WAC_EXIT_CRASH_INHIBITION;8:WAC_EXIT_VEHICLE_STATE_INHIBITION;9:WAC_EXIT_MEMO_TIMEOUT;10:WAC_EXIT_BY_STOPAUTO;11:WAC_EXIT_LOCK_BY_WAC_RF;12:WAC_EXIT_LF_ERROR ,7B9,56,63,1,0,0,,224079,624079,ff,LAST_WAC_EXIT_TRIG_S.4,0:WAC_EXIT_BY_RESET;1:WAC_EXIT_NO_ONE;2:WAC_EXIT_TIMEOUT;3:WAC_EXIT_NO_ID_AFTER_TRIG_WAC;4:WAC_EXIT_ID_INSIDE_DOOR_CLOSE;5:WAC_EXIT_CAR_SECURED;6:WAC_EXIT_USER_INHIBITION;7:WAC_EXIT_CRASH_INHIBITION;8:WAC_EXIT_VEHICLE_STATE_INHIBITION;9:WAC_EXIT_MEMO_TIMEOUT;10:WAC_EXIT_BY_STOPAUTO;11:WAC_EXIT_LOCK_BY_WAC_RF;12:WAC_EXIT_LF_ERROR ,7B9,64,71,1,0,0,,224079,624079,ff,LAST_WAC_EXIT_TRIG_S.5,0:WAC_EXIT_BY_RESET;1:WAC_EXIT_NO_ONE;2:WAC_EXIT_TIMEOUT;3:WAC_EXIT_NO_ID_AFTER_TRIG_WAC;4:WAC_EXIT_ID_INSIDE_DOOR_CLOSE;5:WAC_EXIT_CAR_SECURED;6:WAC_EXIT_USER_INHIBITION;7:WAC_EXIT_CRASH_INHIBITION;8:WAC_EXIT_VEHICLE_STATE_INHIBITION;9:WAC_EXIT_MEMO_TIMEOUT;10:WAC_EXIT_BY_STOPAUTO;11:WAC_EXIT_LOCK_BY_WAC_RF;12:WAC_EXIT_LF_ERROR ,7B9,24,24,1,0,0,,22407A,62407A,ff,LAST_CARSECURED_OFF_BY_RKE_S,1:true;0:false ,7B9,24,24,1,0,0,,22407B,62407B,ff,WAC_INHIBITED_BY_CRASH_S,1:true;0:false ,7B9,24,24,1,0,0,,22407C,62407C,ff,WAC_INHIBITED_BY_VEHICLESTATE_S,1:true;0:false ,7B9,24,24,1,0,0,,22407D,62407D,ff,WAC_ACTIVATION_STATE_S,1:true;0:false ,7B9,24,24,1,0,0,,22407E,62407E,ff,APRUN_ACTIVATION_STATE_S,1:true;0:false ,7B9,24,31,1,0,0,,22407F,62407F,ff,LAST_CAD_EXIT_TRIG_S.0,0:CAD_EXIT_BY_RESET;1:CAD_EXIT_NO_ONE;2:CAD_EXIT_BY_LL_ID_INSIDE;3:CAD_EXIT_BY_LL_TIMEOUT_SHORT;4:CAD_EXIT_BY_LL_TIMEOUT_FINAL;5:CAD_EXIT_BY_LL_LF_ERROR;6:CAD_EXIT_BY_TL_CARSECURED_OFF;7:CAD_EXIT_BY_TL_APRUN_UNLOCK;8:CAD_EXIT_BY_TL_IKEY_DEACTIVATED ,7B9,32,39,1,0,0,,22407F,62407F,ff,LAST_CAD_EXIT_TRIG_S.1,0:CAD_EXIT_BY_RESET;1:CAD_EXIT_NO_ONE;2:CAD_EXIT_BY_LL_ID_INSIDE;3:CAD_EXIT_BY_LL_TIMEOUT_SHORT;4:CAD_EXIT_BY_LL_TIMEOUT_FINAL;5:CAD_EXIT_BY_LL_LF_ERROR;6:CAD_EXIT_BY_TL_CARSECURED_OFF;7:CAD_EXIT_BY_TL_APRUN_UNLOCK;8:CAD_EXIT_BY_TL_IKEY_DEACTIVATED ,7B9,40,47,1,0,0,,22407F,62407F,ff,LAST_CAD_EXIT_TRIG_S.2,0:CAD_EXIT_BY_RESET;1:CAD_EXIT_NO_ONE;2:CAD_EXIT_BY_LL_ID_INSIDE;3:CAD_EXIT_BY_LL_TIMEOUT_SHORT;4:CAD_EXIT_BY_LL_TIMEOUT_FINAL;5:CAD_EXIT_BY_LL_LF_ERROR;6:CAD_EXIT_BY_TL_CARSECURED_OFF;7:CAD_EXIT_BY_TL_APRUN_UNLOCK;8:CAD_EXIT_BY_TL_IKEY_DEACTIVATED ,7B9,48,55,1,0,0,,22407F,62407F,ff,LAST_CAD_EXIT_TRIG_S.3,0:CAD_EXIT_BY_RESET;1:CAD_EXIT_NO_ONE;2:CAD_EXIT_BY_LL_ID_INSIDE;3:CAD_EXIT_BY_LL_TIMEOUT_SHORT;4:CAD_EXIT_BY_LL_TIMEOUT_FINAL;5:CAD_EXIT_BY_LL_LF_ERROR;6:CAD_EXIT_BY_TL_CARSECURED_OFF;7:CAD_EXIT_BY_TL_APRUN_UNLOCK;8:CAD_EXIT_BY_TL_IKEY_DEACTIVATED ,7B9,56,63,1,0,0,,22407F,62407F,ff,LAST_CAD_EXIT_TRIG_S.4,0:CAD_EXIT_BY_RESET;1:CAD_EXIT_NO_ONE;2:CAD_EXIT_BY_LL_ID_INSIDE;3:CAD_EXIT_BY_LL_TIMEOUT_SHORT;4:CAD_EXIT_BY_LL_TIMEOUT_FINAL;5:CAD_EXIT_BY_LL_LF_ERROR;6:CAD_EXIT_BY_TL_CARSECURED_OFF;7:CAD_EXIT_BY_TL_APRUN_UNLOCK;8:CAD_EXIT_BY_TL_IKEY_DEACTIVATED ,7B9,64,71,1,0,0,,22407F,62407F,ff,LAST_CAD_EXIT_TRIG_S.5,0:CAD_EXIT_BY_RESET;1:CAD_EXIT_NO_ONE;2:CAD_EXIT_BY_LL_ID_INSIDE;3:CAD_EXIT_BY_LL_TIMEOUT_SHORT;4:CAD_EXIT_BY_LL_TIMEOUT_FINAL;5:CAD_EXIT_BY_LL_LF_ERROR;6:CAD_EXIT_BY_TL_CARSECURED_OFF;7:CAD_EXIT_BY_TL_APRUN_UNLOCK;8:CAD_EXIT_BY_TL_IKEY_DEACTIVATED ,7B9,24,39,1,0,0,,224081,624081,ff,TOTAL_AUTH_NBR_APPROACH_UNLOCK_S ,7B9,24,39,1,0,0,,224082,624082,ff,TOTAL_AUTH_NBR_CUSTOMER_APPROACH_S ,7B9,24,31,1,0,0,,224083,624083,ff,WAKE_UP_INDEX_S ,7B9,24,55,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.0 ,7B9,56,87,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.1 ,7B9,88,119,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.2 ,7B9,120,151,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.3 ,7B9,152,183,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.4 ,7B9,184,215,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.5 ,7B9,216,247,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.6 ,7B9,248,279,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.7 ,7B9,280,311,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.8 ,7B9,312,343,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.9 ,7B9,344,375,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.10 ,7B9,376,407,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.11 ,7B9,408,439,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.12 ,7B9,440,471,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.13 ,7B9,472,503,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.14 ,7B9,504,535,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.15 ,7B9,536,567,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.16 ,7B9,568,599,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.17 ,7B9,600,631,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.18 ,7B9,632,663,1,0,0,,224085,624085,4ff,WAKE_UP_TIME_S.19 ,7B9,24,31,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.0,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,32,39,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.1,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,40,47,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.2,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,48,55,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.3,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,56,63,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.4,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,64,71,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.5,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,72,79,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.6,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,80,87,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.7,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,88,95,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.8,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,96,103,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.9,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,104,111,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.10,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,112,119,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.11,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,120,127,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.12,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,128,135,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.13,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,136,143,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.14,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,144,151,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.15,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,152,159,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.16,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,160,167,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.17,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,168,175,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.18,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,176,183,1,0,0,,224086,624086,ff,WAKE_UP_SOURCE_S.19,0:NO_WAKEUP_SOURCE;1:START_SW;2:IKEY_FR_SW;3:IKEY_FL_SW;4:IKEY_BACKDOOR_SW;5:WAKE_UP_BY_RKE;6:WAKEUP_BY_CAN;7:IGNITION_SW;8:WAKEUP_BY_RES;9:WAKEUP_BY_APRUN;10:IKEY_RL_SW;11:IKEY_RR_SW ,7B9,24,55,1,0,0,,224087,624087,4ff,LAST_SYNC_VALUE_1_S ,7B9,24,55,1,0,0,,224088,624088,4ff,LAST_SYNC_VALUE_2_S ,7B9,24,55,1,0,0,,224089,624089,4ff,LAST_SYNC_VALUE_3_S ,7B9,24,55,1,0,0,,22408A,62408A,4ff,LAST_SYNC_VALUE_4_S ,7B9,24,39,1,0,0,,22408C,62408C,ff,CUSTOMER_AUTHENT_COUNTER_DELAY_S ,7B9,24,39,1,0,0,,22408D,62408D,ff,CUSTOMER_AUTHENT_COUNTER_FAILED_S ,7B9,24,39,1,0,0,,22408E,62408E,ff,CUSTOMER_AUTHENT_COUNTER_S ,7B9,24,24,1,0,0,,2240B6,6240B6,ff,EM_LEARNING_CARIMMO_NOT_FINISHED_S,1:true;0:false ,7B9,24,24,1,0,0,,2240B7,6240B7,ff,EM_RES_VERLOG_PROTECTION_S,1:true;0:false ,7B9,24,24,1,0,0,,2240B8,6240B8,ff,EM_VERLOG_PROTECTION_S,1:true;0:false ,7B9,24,24,1,0,0,,2240B9,6240B9,ff,HSG_LEARNING_CARIMMO_NOT_FINISHED_S,1:true;0:false ,7B9,24,24,1,0,0,,2240BA,6240BA,ff,HSG_RES_VERLOG_PROTECTION_S,1:true;0:false ,7B9,24,24,1,0,0,,2240BB,6240BB,ff,HSG_VERLOG_PROTECTION_S,1:true;0:false ,7B9,24,24,1,0,0,,2240BC,6240BC,ff,RES_VERLOG_PROTECTION_S,1:true;0:false ,7B9,24,24,1,0,0,,2240BD,6240BD,ff,VERLOG_PROTECTION_S,1:true;0:false ,7B9,24,24,1,0,0,,2240BE,6240BE,ff,ESCL_THERMAL_PROTECT_INHIB_S,1:true;0:false ,7B9,24,24,1,0,0,,2240BF,6240BF,ff,HANDFREE_LOCK_AUTH_S,1:true;0:false ,7B9,24,24,1,0,0,,2240C0,6240C0,ff,IKEY_ACCESS_ACTIVATION_ST_S,1:true;0:false ,7B9,24,39,1,0,0,,2240C1,6240C1,ff,TOTAL_AUTH_NB_BY_HF_LOCK_S ,7B9,24,39,1,0,0,,2240C2,6240C2,ff,TOTAL_AUTH_NB_BY_HF_TRUNK_S ,7B9,24,39,1,0,0,,2240C3,6240C3,ff,TOTAL_AUTH_NB_BY_HF_UNLCK_S ,7B9,24,39,1,0,0,,2240C4,6240C4,ff,TOTAL_AUTH_NB_BY_OPEN_BD_S ,7B9,24,39,1,0,0,,2240C5,6240C5,ff,FAIL_AUTH_NB_BY_HF_LOCK_S ,7B9,24,39,1,0,0,,2240C6,6240C6,ff,FAIL_AUTH_NB_BY_HF_TRUNK_S ,7B9,24,39,1,0,0,,2240C7,6240C7,ff,FAIL_AUTH_NB_BY_HF_UNLOCK_S ,7B9,24,39,1,0,0,,2240C8,6240C8,ff,FAIL_AUTH_NB_BY_OPEN_BD_S ,7B9,24,24,1,0,0,,2240CA,6240CA,ff,ECU_PAIRING_IS_BLANK_S,1:true;0:false ,7B9,24,24,1,0,0,,2240CB,6240CB,ff,IMMO_FLAG_CODE_EM_AVAILABLE_S,1:true;0:false ,7B9,24,24,1,0,0,,2240CC,6240CC,ff,IMMO_FLAG_CODE_HSG_AVAILABLE_S,1:true;0:false ,7B9,24,24,1,0,0,,2240CD,6240CD,ff,IMMO_FLAG_CODE_TCU_AVAILABLE_S,1:true;0:false ,7B9,24,24,1,0,0,,2240CE,6240CE,ff,INT_VERLOG_US_CF_S,1:true;0:false ,7B9,24,24,1,0,0,,2240CF,6240CF,ff,HANDFREE_UNLOCK_AUTH_S,1:true;0:false ,7B9,24,31,1,0,0,,2240D0,6240D0,ff,KEY_DESYNC_COUNTER_1_S ,7B9,24,31,1,0,0,,2240D1,6240D1,ff,KEY_DESYNC_COUNTER_2_S ,7B9,24,31,1,0,0,,2240D2,6240D2,ff,KEY_DESYNC_COUNTER_3_S ,7B9,24,31,1,0,0,,2240D3,6240D3,ff,KEY_DESYNC_COUNTER_4_S ,7B9,24,24,1,0,0,,2240D4,6240D4,ff,DTC_ANTISCAN_ON_S,1:true;0:false ,7B9,24,24,1,0,0,,2240D5,6240D5,ff,DTC_BCM_FRAME_ABSENT_S,1:true;0:false ,7B9,24,24,1,0,0,,2240D7,6240D7,ff,DTC_ESCL_COMM_FAILURE_S,1:true;0:false ,7B9,24,24,1,0,0,,2240D8,6240D8,ff,DTC_ESCL_PAIRING_FAIL_S,1:true;0:false ,7B9,24,24,1,0,0,,2240D9,6240D9,ff,DTC_ESCL_THERMAL_PROTECTION_S,1:true;0:false ,7B9,24,24,1,0,0,,2240DB,6240DB,ff,DTC_HFM_RELAY_S,1:true;0:false ,7B9,24,24,1,0,0,,2240DD,6240DD,ff,DTC_INTERNAL_MAJOR_ESCL_FAIL_S,1:true;0:false ,7B9,24,24,1,0,0,,2240DE,6240DE,ff,DTC_INTERNAL_MINOR_ESCL_FAIL_S,1:true;0:false ,7B9,24,24,1,0,0,,2240DF,6240DF,ff,DTC_MECHANICAL_PROBLEM_S,1:true;0:false ,7B9,24,24,1,0,0,,2240E2,6240E2,ff,DTC_SAFETYLINE_INHIBITION_S,1:true;0:false ,7B9,24,24,1,0,0,,2240E3,6240E3,ff,DTC_SCG_SAFETYLINE_S,1:true;0:false ,7B9,24,24,1,0,0,,2240E4,6240E4,ff,DTC_SCG_SENSORLINE_S,1:true;0:false ,7B9,24,24,1,0,0,,2240E6,6240E6,ff,DTC_SCVBAT_SENSORLINE_S,1:true;0:false ,7B9,24,24,1,0,0,,2240E7,6240E7,ff,DTC_SPEED_INHIBITION_S,1:true;0:false ,7B9,24,24,1,0,0,,2240E8,6240E8,ff,DTC_UNDETERMINED_L_FAILURE_S,1:true;0:false ,7B9,24,24,1,0,0,,2240E9,6240E9,ff,DTC_UNDETERMINED_UNL_FAILURE_S,1:true;0:false ,7B9,24,24,1,0,0,,2240EA,6240EA,ff,DTC_WRONG_CONFIG_S,1:true;0:false ,7B9,24,24,1,0,0,,2240EB,6240EB,ff,DTC_IGNITION_CABIN_SC_S,1:true;0:false ,7B9,24,24,1,0,0,,2240EC,6240EC,ff,DTC_IGNITION_ENGINE_SC_S,1:true;0:false ,7B9,24,24,1,0,0,,2240ED,6240ED,ff,DTC_USM_FRAME_ABSENT_S,1:true;0:false ,7B9,24,24,1,0,0,,2240EE,6240EE,ff,ESCL_USM_ABSENT_S,1:true;0:false ,7B9,24,31,1,0,0,,2240EF,6240EF,ff,NB_IGN_CABIN_ON_S ,7B9,24,31,1,0,0,,2240F0,6240F0,ff,NB_IGN_ENGINE_ON_S ,7B9,24,31,1,0,0,,2240F1,6240F1,ff,NB_USM_ABS_S ,7B9,24,24,1,0,0,,2240F2,6240F2,ff,DTC_ESCL_UNTIMELY_SUPPLIED_S,1:true;0:false ,7B9,24,24,1,0,0,,2240F3,6240F3,ff,DTC_WRONG_CODE_S,1:true;0:false ,7B9,24,55,1,0,0,,2240F5,6240F5,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.0 ,7B9,56,87,1,0,0,,2240F5,6240F5,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.1 ,7B9,88,119,1,0,0,,2240F5,6240F5,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.2 ,7B9,120,151,1,0,0,,2240F5,6240F5,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.3 ,7B9,152,183,1,0,0,,2240F5,6240F5,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.4 ,7B9,184,215,1,0,0,,2240F5,6240F5,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.5 ,7B9,216,247,1,0,0,,2240F5,6240F5,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.6 ,7B9,248,279,1,0,0,,2240F5,6240F5,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.7 ,7B9,280,311,1,0,0,,2240F5,6240F5,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.8 ,7B9,312,343,1,0,0,,2240F5,6240F5,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.9 ,7B9,24,31,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.0 ,7B9,32,39,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.1 ,7B9,40,47,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.2 ,7B9,48,55,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.3 ,7B9,56,63,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.4 ,7B9,64,71,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.5 ,7B9,72,79,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.6 ,7B9,80,87,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.7 ,7B9,88,95,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.8 ,7B9,96,103,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.9 ,7B9,104,111,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.10 ,7B9,112,119,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.11 ,7B9,120,127,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.12 ,7B9,128,135,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.13 ,7B9,136,143,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.14 ,7B9,144,151,1,0,0,,2240F7,6240F7,ff,DTC_LIST_OUT_SNAPSHOT_0_S.15 ,7B9,24,31,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.0 ,7B9,32,39,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.1 ,7B9,40,47,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.2 ,7B9,48,55,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.3 ,7B9,56,63,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.4 ,7B9,64,71,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.5 ,7B9,72,79,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.6 ,7B9,80,87,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.7 ,7B9,88,95,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.8 ,7B9,96,103,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.9 ,7B9,104,111,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.10 ,7B9,112,119,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.11 ,7B9,120,127,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.12 ,7B9,128,135,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.13 ,7B9,136,143,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.14 ,7B9,144,151,1,0,0,,2240F8,6240F8,ff,DTC_LIST_OUT_SNAPSHOT_1_S.15 ,7B9,24,31,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.0 ,7B9,32,39,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.1 ,7B9,40,47,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.2 ,7B9,48,55,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.3 ,7B9,56,63,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.4 ,7B9,64,71,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.5 ,7B9,72,79,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.6 ,7B9,80,87,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.7 ,7B9,88,95,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.8 ,7B9,96,103,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.9 ,7B9,104,111,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.10 ,7B9,112,119,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.11 ,7B9,120,127,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.12 ,7B9,128,135,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.13 ,7B9,136,143,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.14 ,7B9,144,151,1,0,0,,2240F9,6240F9,ff,DTC_LIST_OUT_SNAPSHOT_2_S.15 ,7B9,24,31,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.0 ,7B9,32,39,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.1 ,7B9,40,47,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.2 ,7B9,48,55,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.3 ,7B9,56,63,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.4 ,7B9,64,71,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.5 ,7B9,72,79,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.6 ,7B9,80,87,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.7 ,7B9,88,95,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.8 ,7B9,96,103,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.9 ,7B9,104,111,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.10 ,7B9,112,119,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.11 ,7B9,120,127,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.12 ,7B9,128,135,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.13 ,7B9,136,143,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.14 ,7B9,144,151,1,0,0,,2240FA,6240FA,ff,DTC_LIST_OUT_SNAPSHOT_3_S.15 ,7B9,24,31,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.0 ,7B9,32,39,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.1 ,7B9,40,47,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.2 ,7B9,48,55,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.3 ,7B9,56,63,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.4 ,7B9,64,71,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.5 ,7B9,72,79,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.6 ,7B9,80,87,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.7 ,7B9,88,95,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.8 ,7B9,96,103,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.9 ,7B9,104,111,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.10 ,7B9,112,119,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.11 ,7B9,120,127,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.12 ,7B9,128,135,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.13 ,7B9,136,143,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.14 ,7B9,144,151,1,0,0,,2240FB,6240FB,ff,DTC_LIST_OUT_SNAPSHOT_4_S.15 ,7B9,24,31,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.0 ,7B9,32,39,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.1 ,7B9,40,47,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.2 ,7B9,48,55,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.3 ,7B9,56,63,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.4 ,7B9,64,71,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.5 ,7B9,72,79,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.6 ,7B9,80,87,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.7 ,7B9,88,95,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.8 ,7B9,96,103,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.9 ,7B9,104,111,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.10 ,7B9,112,119,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.11 ,7B9,120,127,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.12 ,7B9,128,135,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.13 ,7B9,136,143,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.14 ,7B9,144,151,1,0,0,,2240FC,6240FC,ff,DTC_LIST_OUT_SNAPSHOT_5_S.15 ,7B9,24,31,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.0 ,7B9,32,39,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.1 ,7B9,40,47,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.2 ,7B9,48,55,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.3 ,7B9,56,63,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.4 ,7B9,64,71,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.5 ,7B9,72,79,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.6 ,7B9,80,87,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.7 ,7B9,88,95,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.8 ,7B9,96,103,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.9 ,7B9,104,111,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.10 ,7B9,112,119,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.11 ,7B9,120,127,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.12 ,7B9,128,135,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.13 ,7B9,136,143,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.14 ,7B9,144,151,1,0,0,,2240FD,6240FD,ff,DTC_LIST_OUT_SNAPSHOT_6_S.15 ,7B9,24,31,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.0 ,7B9,32,39,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.1 ,7B9,40,47,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.2 ,7B9,48,55,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.3 ,7B9,56,63,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.4 ,7B9,64,71,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.5 ,7B9,72,79,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.6 ,7B9,80,87,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.7 ,7B9,88,95,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.8 ,7B9,96,103,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.9 ,7B9,104,111,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.10 ,7B9,112,119,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.11 ,7B9,120,127,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.12 ,7B9,128,135,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.13 ,7B9,136,143,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.14 ,7B9,144,151,1,0,0,,2240FE,6240FE,ff,DTC_LIST_OUT_SNAPSHOT_7_S.15 ,7B9,24,31,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.0 ,7B9,32,39,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.1 ,7B9,40,47,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.2 ,7B9,48,55,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.3 ,7B9,56,63,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.4 ,7B9,64,71,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.5 ,7B9,72,79,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.6 ,7B9,80,87,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.7 ,7B9,88,95,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.8 ,7B9,96,103,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.9 ,7B9,104,111,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.10 ,7B9,112,119,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.11 ,7B9,120,127,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.12 ,7B9,128,135,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.13 ,7B9,136,143,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.14 ,7B9,144,151,1,0,0,,2240FF,6240FF,ff,DTC_LIST_OUT_SNAPSHOT_8_S.15 ,7B9,24,31,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.0 ,7B9,32,39,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.1 ,7B9,40,47,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.2 ,7B9,48,55,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.3 ,7B9,56,63,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.4 ,7B9,64,71,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.5 ,7B9,72,79,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.6 ,7B9,80,87,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.7 ,7B9,88,95,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.8 ,7B9,96,103,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.9 ,7B9,104,111,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.10 ,7B9,112,119,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.11 ,7B9,120,127,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.12 ,7B9,128,135,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.13 ,7B9,136,143,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.14 ,7B9,144,151,1,0,0,,224100,624100,ff,DTC_LIST_OUT_SNAPSHOT_9_S.15 ,7B9,24,55,1,0,0,,224101,624101,4ff,LAST_RESYNC_VALUE_1_S ,7B9,24,55,1,0,0,,224102,624102,4ff,LAST_RESYNC_VALUE_2_S ,7B9,24,55,1,0,0,,224103,624103,4ff,LAST_RESYNC_VALUE_3_S ,7B9,24,55,1,0,0,,224104,624104,4ff,LAST_RESYNC_VALUE_4_S ,7B9,24,31,1,0,0,,224106,624106,ff,CHARGEPROHIBBYRENTAL_HFM_S,0:CHARGE_PROHIB_UNAVAILABLE;1:CHARGE_PROHIB_AUTHORIZED;2:CHARGE_PROHIB_NOT_AUTHORIZED ,7B9,24,24,1,0,0,,224107,624107,ff,RPU_PROVISIONING_S,1:true;0:false ,7B9,24,24,1,0,0,,224108,624108,ff,RPU_UNPROTECT_S,1:true;0:false ,7B9,24,24,1,0,0,,224109,624109,ff,RPU_STALLING_STATE_S,1:true;0:false ,7B9,24,24,1,0,0,,22410A,62410A,ff,REMOTE_PROT_REQUEST_S,1:true;0:false ,7B9,24,39,1,0,0,,22410B,62410B,ff,BYPASS_RPU_TIMER_S ,7B9,24,24,1,0,0,,22410D,62410D,ff,DTC_HFM_POWER_OFF_LIMITS_S,1:true;0:false ,7B9,24,31,1,0,0,,22410E,62410E,ff,NB_HFM_POWER_OFF_LIMITS_S ,7B9,24,31,1,0,0,,22410F,62410F,ff,VSC_LOW_LEVEL_BATTERY_ID1_CNT_S ,7B9,24,31,1,0,0,,224110,624110,ff,VSC_LOW_LEVEL_BATTERY_ID2_CNT_S ,7B9,24,31,1,0,0,,224111,624111,ff,VSC_LOW_LEVEL_BATTERY_ID3_CNT_S ,7B9,24,31,1,0,0,,224112,624112,ff,VSC_LOW_LEVEL_BATTERY_ID4_CNT_S ,7B9,24,24,1,0,0,,224113,624113,ff,HANDFREE_AUTHENT1_ENABLE_S,1:true;0:false ,7B9,24,24,1,0,0,,224114,624114,ff,HANDFREE_AUTHENT2_ENABLE_S,1:true;0:false ,7B9,24,24,1,0,0,,224115,624115,ff,HANDFREE_AUTHENT3_ENABLE_S,1:true;0:false ,7B9,24,24,1,0,0,,224116,624116,ff,HANDFREE_AUTHENT4_ENABLE_S,1:true;0:false ,7B9,24,31,1,0,0,,224117,624117,ff,NB_PRESENT_DTC_S ,7B9,24,55,1,0,0,,224118,624118,4ff,DTC_LIST_OUT_EXT_DATA_S.0 ,7B9,56,87,1,0,0,,224118,624118,4ff,DTC_LIST_OUT_EXT_DATA_S.1 ,7B9,88,119,1,0,0,,224118,624118,4ff,DTC_LIST_OUT_EXT_DATA_S.2 ,7B9,120,151,1,0,0,,224118,624118,4ff,DTC_LIST_OUT_EXT_DATA_S.3 ,7B9,152,183,1,0,0,,224118,624118,4ff,DTC_LIST_OUT_EXT_DATA_S.4 ,7B9,184,215,1,0,0,,224118,624118,4ff,DTC_LIST_OUT_EXT_DATA_S.5 ,7B9,216,247,1,0,0,,224118,624118,4ff,DTC_LIST_OUT_EXT_DATA_S.6 ,7B9,248,279,1,0,0,,224118,624118,4ff,DTC_LIST_OUT_EXT_DATA_S.7 ,7B9,280,311,1,0,0,,224118,624118,4ff,DTC_LIST_OUT_EXT_DATA_S.8 ,7B9,312,343,1,0,0,,224118,624118,4ff,DTC_LIST_OUT_EXT_DATA_S.9 ,7B9,24,31,1,0,0,,224119,624119,ff,DTC_LIST_OUT_OCCUR_CNT_S.0 ,7B9,32,39,1,0,0,,224119,624119,ff,DTC_LIST_OUT_OCCUR_CNT_S.1 ,7B9,40,47,1,0,0,,224119,624119,ff,DTC_LIST_OUT_OCCUR_CNT_S.2 ,7B9,48,55,1,0,0,,224119,624119,ff,DTC_LIST_OUT_OCCUR_CNT_S.3 ,7B9,56,63,1,0,0,,224119,624119,ff,DTC_LIST_OUT_OCCUR_CNT_S.4 ,7B9,64,71,1,0,0,,224119,624119,ff,DTC_LIST_OUT_OCCUR_CNT_S.5 ,7B9,72,79,1,0,0,,224119,624119,ff,DTC_LIST_OUT_OCCUR_CNT_S.6 ,7B9,80,87,1,0,0,,224119,624119,ff,DTC_LIST_OUT_OCCUR_CNT_S.7 ,7B9,88,95,1,0,0,,224119,624119,ff,DTC_LIST_OUT_OCCUR_CNT_S.8 ,7B9,96,103,1,0,0,,224119,624119,ff,DTC_LIST_OUT_OCCUR_CNT_S.9 ,7B9,24,24,1,0,0,,22411A,62411A,ff,DTC_SAFETY_VEHICLE_STATE_S,1:true;0:false ,7B9,24,31,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RAD_TRIGGERED ,7B9,32,39,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RAD_AS_TRIGGERED ,7B9,40,47,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RAD_CNT ,7B9,48,55,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RAD_CNT_ALL ,7B9,56,63,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RAD_AS_CNT ,7B9,64,71,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RAD_AS_HFSTART_CNT ,7B9,72,79,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RAD_AS_RAD_CNT ,7B9,80,87,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RAD_AS_RESET_TRSPD ,7B9,88,95,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RAD_AS_RESET_TIMER ,7B9,96,103,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RESERVED_10 ,7B9,104,119,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RESERVED_11 ,7B9,112,655,1,0,0,,22411B,62411B,4ff,SAS_MONITORING_S.RESERVED_13_80 ,7B9,24,31,1,0,0,,22411C,62411C,ff,BACK_DOOR_SWITCH_FUNC_S,0:NO_ACTION;1:UNLOCK_ACTION;2:LOCK_ACTION ,7B9,24,31,1,0,0,,22411D,62411D,ff,DRIVER_DOOR_SW_TS_FUNC_S,0:NO_ACTION;1:UNLOCK_ACTION;2:LOCK_ACTION ,7B9,24,24,1,0,0,,22411E,62411E,ff,HF_DHA_AUTHORISATION_STATE_S,1:true;0:false ,7B9,24,24,1,0,0,,22411F,62411F,ff,IKEY_ZONING_ACTIVATION_S,0:false;1:true ,7B9,24,31,1,0,0,,224120,624120,ff,PASSENGER_DOOR_SW_TS_FUNC_S,0:NO_ACTION;1:UNLOCK_ACTION;2:LOCK_ACTION ,7B9,24,31,1,0,0,,224121,624121,ff,REAR_LEFT_DOOR_SW_TS_FUNC_S,0:NO_ACTION;1:UNLOCK_ACTION;2:LOCK_ACTION ,7B9,24,31,1,0,0,,224122,624122,ff,REAR_RIGHT_DOOR_SW_TS_FUNC_S,0:NO_ACTION;1:UNLOCK_ACTION;2:LOCK_ACTION ,7B9,24,24,1,0,0,,226002,626002,ff,ACTUATOR_FAILURE,1:true;0:false ,7B9,24,24,1,0,0,,226003,626003,ff,ANTISCAN_ON,1:true;0:false ,7B9,24,31,1,0,0,,226004,626004,ff,BATT_VOLTAGE ,7B9,24,24,1,0,0,,226005,626005,ff,BLANK_CODED,1:true;0:false ,7B9,24,24,1,0,0,,226006,626006,ff,CAR_SECURE_S,1:true;0:false ,7B9,24,31,1,0,0,,226007,626007,ff,DRIVER_DOOR_STATE,0:DDS_UNAVAILABLE;1:DRIVER_DOOR_CLOSED;2:DRIVER_DOOR_OPEN;3:DDS_NOT_USED ,7B9,24,31,1,0,0,,226009,626009,ff,ESCL_POSITION ,7B9,24,24,1,0,0,,22600A,62600A,ff,CAN_ABS_ABSENT,1:true;0:false ,7B9,24,24,1,0,0,,22600B,62600B,ff,CAN_AIRBAG_ABSENT,1:true;0:false ,7B9,24,24,1,0,0,,22600C,62600C,ff,CAN_BCM_ABSENT,1:true;0:false ,7B9,24,31,1,0,0,,226011,626011,ff,CARD_IN_READER_STATUS,0:CARD_IN_READER_UNAVAILABLE;1:NOTHING_IN_READER;2:SOMETHING_IN_READER;3:CARD_IN_READER ,7B9,24,24,1,0,0,,226014,626014,ff,IGNITION_SUPPLY_CONFIRMATION,1:true;0:false ,7B9,24,24,1,0,0,,226016,626016,ff,LOCK_FORBIDDEN,1:true;0:false ,7B9,24,24,1,0,0,,226017,626017,ff,LOCKING_FINISHED,1:true;0:false ,7B9,24,24,1,0,0,,226018,626018,ff,MAJOR_ELECTRONIC_FAILURE,1:true;0:false ,7B9,24,24,1,0,0,,226019,626019,ff,MINOR_ELECTRONIC_FAILURE,1:true;0:false ,7B9,24,24,1,0,0,,22601A,62601A,ff,POWER_SUPPLY_FEEDBACK,1:true;0:false ,7B9,24,24,1,0,0,,22601B,62601B,ff,RESET_INFO,1:true;0:false ,7B9,24,24,1,0,0,,22601C,62601C,ff,SAFETY_LINE_INHIBITION,1:true;0:false ,7B9,24,24,1,0,0,,22601D,62601D,ff,SENSOR_TEST_AUTHORIZED,1:true;0:false ,7B9,24,24,1,0,0,,22601E,62601E,ff,STEERINGLOCK_SENSOR_LINE_ON,1:true;0:false ,7B9,24,24,1,0,0,,22601F,62601F,ff,UNDEFINED_POSITION,1:true;0:false ,7B9,24,24,1,0,0,,226020,626020,ff,UNLOCKING_FINISHED,1:true;0:false ,7B9,24,39,1,0,0,,226021,626021,ff,VEHICLE_SPEED_FROM_ABS ,7B9,24,24,1,0,0,,226022,626022,ff,WRONG_CODE,1:true;0:false ,7B9,24,39,1,0,0,,226023,626023,ff,ANTICIP_PWR_REQUEST_COUNTER ,7B9,24,24,1,0,0,,226024,626024,ff,ANTICIPATE_PWR_SEQ_OPERATING,1:true;0:false ,7B9,24,31,1,0,0,,226025,626025,ff,DEMANDES_COLONNE_CS ,7B9,24,24,1,0,0,,226026,626026,ff,ESCL_LOCK_SEQ_OPERATING,1:true;0:false ,7B9,24,39,1,0,0,,226027,626027,ff,ESCL_NEWEST_DIAGNOSIS_FLAG ,7B9,24,24,1,0,0,,226028,626028,ff,ESCL_SPEED_PRESENT_POSITIVE,1:true;0:false ,7B9,24,24,1,0,0,,226029,626029,ff,ESCL_SPEED_UNAVAILABLE,1:true;0:false ,7B9,24,24,1,0,0,,22602A,62602A,ff,ESCL_UNLOCK_SEQ_OPERATING,1:true;0:false ,7B9,24,39,1,0,0,,22602C,62602C,ff,LEARNING_REQUEST_COUNTER ,7B9,24,31,1,0,0,,22602D,62602D,ff,LEARNING_STATE,0:ESCL_ORDERED;1:ESCL_DONE;2:ESCL_FAILED ,7B9,24,39,1,0,0,,22602E,62602E,ff,LOCK_REQUEST_COUNTER ,7B9,24,31,1,0,0,,22602F,62602F,ff,LOCK_STATE,0:ESCL_ORDERED;1:ESCL_DONE;2:ESCL_FAILED ,7B9,24,24,1,0,0,,226030,626030,ff,NOT_APC_DISCONTINUITY,1:true;0:false ,7B9,24,39,1,0,0,,226031,626031,ff,POWER_OFF_REQUEST_COUNTER ,7B9,24,39,1,0,0,,226032,626032,ff,POWER_REQUEST_COUNTER ,7B9,24,31,1,0,0,,226033,626033,ff,POWER_STATE,0:ESCL_POWERED_OFF;1:ESCL_POWER_OFF_FAILED;2:ESCL_POWERED;3:ESCL_POWERED_BY_ANTICIPATE;4:ESCL_POWERED_FOR_LOCK;5:ESCL_POWERED_FOR_UNLOCK;6:ESCL_POWER_FAILED;7:ESCL_CONFIG_SAFETY_CHECK ,7B9,24,24,1,0,0,,226034,626034,ff,POWER_SUPPLY_DISCONTINUITY,1:true;0:false ,7B9,24,24,1,0,0,,226037,626037,ff,STEERING_LOCK_OPERATING,1:true;0:false ,7B9,24,24,1,0,0,,226038,626038,ff,STEERING_UNLOCK_OPERATING,1:true;0:false ,7B9,24,24,1,0,0,,226039,626039,ff,STEERINGLOCK_FRAME_PRESENT,1:true;0:false ,7B9,24,24,1,0,0,,22603A,62603A,ff,STEERINGLOCK_LOCK_REQUEST,1:true;0:false ,7B9,24,24,1,0,0,,22603B,62603B,ff,STEERINGLOCK_POWER_ON,1:true;0:false ,7B9,24,24,1,0,0,,22603C,62603C,ff,STEERINGLOCK_UNLOCK_REQUEST,1:true;0:false ,7B9,24,24,1,0,0,,22603D,62603D,ff,STLOCK_SENSOR_LINE_TO_TEST,1:true;0:false ,7B9,24,39,1,0,0,,22603E,62603E,ff,UNLOCK_REQUEST_COUNTER ,7B9,24,31,1,0,0,,22603F,62603F,ff,UNLOCK_STATE,0:ESCL_ORDERED;1:ESCL_DONE;2:ESCL_FAILED ,7B9,24,24,1,0,0,,226040,626040,ff,DONGLE_AUTHORIZED,1:true;0:false ,7B9,24,24,1,0,0,,226042,626042,ff,DONGLE_CONFIG_SLAVE,1:true;0:false ,7B9,24,31,1,0,0,,226043,626043,ff,DONGLE_RETRY_HISTORY_COUNTER ,7B9,24,31,1,0,0,,226044,626044,ff,DONGLE_SLAVE_STATE,0:SLAVE_IS_BLANK;1:SLAVE_PAIRED;2:SLAVE_ERROR;3:SLAVE_NOT_OPERATIONAL ,7B9,24,31,1,0,0,,226048,626048,ff,NOT_IGNITION_VOLTAGE ,7B9,24,31,1,0,0,,226049,626049,ff,ECM_IS_BLANK,0:SP_UNKNOWN;1:SP_IS_BLANK;2:SP_NOT_BLANK ,7B9,24,31,1,0,0,,22604A,62604A,ff,LAST_RES_VERLOG_STATUS,0:RES_VERLOG_OFF;1:RES_BAD_ECM_CHALLENGE;2:RES_CHALLENGE_ANSWERED_BY_ECU ,7B9,24,31,1,0,0,,22604B,62604B,ff,LAST_VERLOG_STATUS,0:VERLOG_OFF;2:CHALLENGE_ANSWERED_BY_ECU;1:BAD_CHALLENGE ,7B9,24,39,1,0,0,,22604C,62604C,ff,VEHICLE_SPEED ,7B9,24,55,1,0,0,,22604E,62604E,4ff,DISTANCE_TOTALIZER ,7B9,24,24,1,0,0,,22604F,62604F,ff,DISTANCE_TOTALIZER_INVALID,1:true;0:false ,7B9,24,24,1,0,0,,226050,626050,ff,DISTANCE_UNAVAILABLE_OR_INVALID,1:true;0:false ,7B9,24,24,1,0,0,,226051,626051,ff,VEHICLE_RUNNING,1:true;0:false ,7B9,24,24,1,0,0,,226052,626052,ff,SPEED_UNAVAILABLE_OR_INVALID,1:true;0:false ,7B9,24,24,1,0,0,,22605D,62605D,ff,IGNITION_ON,1:true;0:false ,7B9,24,24,1,0,0,,226073,626073,ff,RKE_BUTTON_1_PRESSED,1:true;0:false ,7B9,24,24,1,0,0,,226074,626074,ff,RKE_BUTTON_2_PRESSED,1:true;0:false ,7B9,24,24,1,0,0,,226075,626075,ff,RKE_BUTTON_3_PRESSED,1:true;0:false ,7B9,24,24,1,0,0,,226076,626076,ff,RKE_BUTTON_4_PRESSED,1:true;0:false ,7B9,24,55,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.0 ,7B9,56,87,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.1 ,7B9,88,119,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.2 ,7B9,120,151,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.3 ,7B9,152,183,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.4 ,7B9,184,215,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.5 ,7B9,216,247,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.6 ,7B9,248,279,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.7 ,7B9,280,311,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.8 ,7B9,312,343,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.9 ,7B9,344,375,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.10 ,7B9,376,407,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.11 ,7B9,408,439,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.12 ,7B9,440,471,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.13 ,7B9,472,503,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.14 ,7B9,504,535,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.15 ,7B9,536,567,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.16 ,7B9,568,599,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.17 ,7B9,600,631,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.18 ,7B9,632,663,1,0,0,,226077,626077,4ff,LAST_RKE_HISTO_ABSOLUTETIME.19 ,7B9,24,24,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.0,1:true;0:false ,7B9,25,25,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.1,1:true;0:false ,7B9,26,26,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.2,1:true;0:false ,7B9,27,27,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.3,1:true;0:false ,7B9,28,28,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.4,1:true;0:false ,7B9,29,29,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.5,1:true;0:false ,7B9,30,30,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.6,1:true;0:false ,7B9,31,31,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.7,1:true;0:false ,7B9,32,32,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.8,1:true;0:false ,7B9,33,33,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.9,1:true;0:false ,7B9,34,34,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.10,1:true;0:false ,7B9,35,35,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.11,1:true;0:false ,7B9,36,36,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.12,1:true;0:false ,7B9,37,37,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.13,1:true;0:false ,7B9,38,38,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.14,1:true;0:false ,7B9,39,39,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.15,1:true;0:false ,7B9,40,40,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.16,1:true;0:false ,7B9,41,41,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.17,1:true;0:false ,7B9,42,42,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.18,1:true;0:false ,7B9,43,43,1,0,0,,226078,626078,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.19,1:true;0:false ,7B9,24,24,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.0,1:true;0:false ,7B9,25,25,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.1,1:true;0:false ,7B9,26,26,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.2,1:true;0:false ,7B9,27,27,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.3,1:true;0:false ,7B9,28,28,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.4,1:true;0:false ,7B9,29,29,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.5,1:true;0:false ,7B9,30,30,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.6,1:true;0:false ,7B9,31,31,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.7,1:true;0:false ,7B9,32,32,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.8,1:true;0:false ,7B9,33,33,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.9,1:true;0:false ,7B9,34,34,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.10,1:true;0:false ,7B9,35,35,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.11,1:true;0:false ,7B9,36,36,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.12,1:true;0:false ,7B9,37,37,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.13,1:true;0:false ,7B9,38,38,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.14,1:true;0:false ,7B9,39,39,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.15,1:true;0:false ,7B9,40,40,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.16,1:true;0:false ,7B9,41,41,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.17,1:true;0:false ,7B9,42,42,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.18,1:true;0:false ,7B9,43,43,1,0,0,,226079,626079,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.19,1:true;0:false ,7B9,24,24,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.0,1:true;0:false ,7B9,25,25,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.1,1:true;0:false ,7B9,26,26,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.2,1:true;0:false ,7B9,27,27,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.3,1:true;0:false ,7B9,28,28,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.4,1:true;0:false ,7B9,29,29,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.5,1:true;0:false ,7B9,30,30,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.6,1:true;0:false ,7B9,31,31,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.7,1:true;0:false ,7B9,32,32,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.8,1:true;0:false ,7B9,33,33,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.9,1:true;0:false ,7B9,34,34,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.10,1:true;0:false ,7B9,35,35,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.11,1:true;0:false ,7B9,36,36,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.12,1:true;0:false ,7B9,37,37,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.13,1:true;0:false ,7B9,38,38,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.14,1:true;0:false ,7B9,39,39,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.15,1:true;0:false ,7B9,40,40,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.16,1:true;0:false ,7B9,41,41,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.17,1:true;0:false ,7B9,42,42,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.18,1:true;0:false ,7B9,43,43,1,0,0,,22607A,62607A,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.19,1:true;0:false ,7B9,24,24,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.0,1:true;0:false ,7B9,25,25,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.1,1:true;0:false ,7B9,26,26,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.2,1:true;0:false ,7B9,27,27,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.3,1:true;0:false ,7B9,28,28,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.4,1:true;0:false ,7B9,29,29,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.5,1:true;0:false ,7B9,30,30,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.6,1:true;0:false ,7B9,31,31,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.7,1:true;0:false ,7B9,32,32,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.8,1:true;0:false ,7B9,33,33,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.9,1:true;0:false ,7B9,34,34,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.10,1:true;0:false ,7B9,35,35,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.11,1:true;0:false ,7B9,36,36,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.12,1:true;0:false ,7B9,37,37,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.13,1:true;0:false ,7B9,38,38,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.14,1:true;0:false ,7B9,39,39,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.15,1:true;0:false ,7B9,40,40,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.16,1:true;0:false ,7B9,41,41,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.17,1:true;0:false ,7B9,42,42,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.18,1:true;0:false ,7B9,43,43,1,0,0,,22607B,62607B,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.19,1:true;0:false ,7B9,24,24,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.0,1:true;0:false ,7B9,25,25,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.1,1:true;0:false ,7B9,26,26,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.2,1:true;0:false ,7B9,27,27,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.3,1:true;0:false ,7B9,28,28,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.4,1:true;0:false ,7B9,29,29,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.5,1:true;0:false ,7B9,30,30,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.6,1:true;0:false ,7B9,31,31,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.7,1:true;0:false ,7B9,32,32,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.8,1:true;0:false ,7B9,33,33,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.9,1:true;0:false ,7B9,34,34,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.10,1:true;0:false ,7B9,35,35,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.11,1:true;0:false ,7B9,36,36,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.12,1:true;0:false ,7B9,37,37,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.13,1:true;0:false ,7B9,38,38,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.14,1:true;0:false ,7B9,39,39,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.15,1:true;0:false ,7B9,40,40,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.16,1:true;0:false ,7B9,41,41,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.17,1:true;0:false ,7B9,42,42,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.18,1:true;0:false ,7B9,43,43,1,0,0,,22607C,62607C,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.19,1:true;0:false ,7B9,24,24,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.0,1:true;0:false ,7B9,25,25,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.1,1:true;0:false ,7B9,26,26,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.2,1:true;0:false ,7B9,27,27,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.3,1:true;0:false ,7B9,28,28,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.4,1:true;0:false ,7B9,29,29,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.5,1:true;0:false ,7B9,30,30,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.6,1:true;0:false ,7B9,31,31,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.7,1:true;0:false ,7B9,32,32,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.8,1:true;0:false ,7B9,33,33,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.9,1:true;0:false ,7B9,34,34,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.10,1:true;0:false ,7B9,35,35,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.11,1:true;0:false ,7B9,36,36,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.12,1:true;0:false ,7B9,37,37,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.13,1:true;0:false ,7B9,38,38,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.14,1:true;0:false ,7B9,39,39,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.15,1:true;0:false ,7B9,40,40,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.16,1:true;0:false ,7B9,41,41,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.17,1:true;0:false ,7B9,42,42,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.18,1:true;0:false ,7B9,43,43,1,0,0,,22607D,62607D,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.19,1:true;0:false ,7B9,24,24,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.0,1:true;0:false ,7B9,25,25,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.1,1:true;0:false ,7B9,26,26,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.2,1:true;0:false ,7B9,27,27,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.3,1:true;0:false ,7B9,28,28,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.4,1:true;0:false ,7B9,29,29,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.5,1:true;0:false ,7B9,30,30,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.6,1:true;0:false ,7B9,31,31,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.7,1:true;0:false ,7B9,32,32,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.8,1:true;0:false ,7B9,33,33,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.9,1:true;0:false ,7B9,34,34,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.10,1:true;0:false ,7B9,35,35,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.11,1:true;0:false ,7B9,36,36,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.12,1:true;0:false ,7B9,37,37,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.13,1:true;0:false ,7B9,38,38,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.14,1:true;0:false ,7B9,39,39,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.15,1:true;0:false ,7B9,40,40,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.16,1:true;0:false ,7B9,41,41,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.17,1:true;0:false ,7B9,42,42,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.18,1:true;0:false ,7B9,43,43,1,0,0,,22607E,62607E,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.19,1:true;0:false ,7B9,24,24,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.0,1:true;0:false ,7B9,25,25,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.1,1:true;0:false ,7B9,26,26,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.2,1:true;0:false ,7B9,27,27,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.3,1:true;0:false ,7B9,28,28,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.4,1:true;0:false ,7B9,29,29,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.5,1:true;0:false ,7B9,30,30,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.6,1:true;0:false ,7B9,31,31,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.7,1:true;0:false ,7B9,32,32,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.8,1:true;0:false ,7B9,33,33,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.9,1:true;0:false ,7B9,34,34,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.10,1:true;0:false ,7B9,35,35,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.11,1:true;0:false ,7B9,36,36,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.12,1:true;0:false ,7B9,37,37,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.13,1:true;0:false ,7B9,38,38,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.14,1:true;0:false ,7B9,39,39,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.15,1:true;0:false ,7B9,40,40,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.16,1:true;0:false ,7B9,41,41,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.17,1:true;0:false ,7B9,42,42,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.18,1:true;0:false ,7B9,43,43,1,0,0,,22607F,62607F,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.19,1:true;0:false ,7B9,24,31,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.0 ,7B9,32,39,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.1 ,7B9,40,47,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.2 ,7B9,48,55,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.3 ,7B9,56,63,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.4 ,7B9,64,71,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.5 ,7B9,72,79,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.6 ,7B9,80,87,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.7 ,7B9,88,95,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.8 ,7B9,96,103,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.9 ,7B9,104,111,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.10 ,7B9,112,119,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.11 ,7B9,120,127,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.12 ,7B9,128,135,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.13 ,7B9,136,143,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.14 ,7B9,144,151,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.15 ,7B9,152,159,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.16 ,7B9,160,167,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.17 ,7B9,168,175,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.18 ,7B9,176,183,1,0,0,,226080,626080,ff,LAST_RKE_HISTO_ID.19 ,7B9,24,31,1,0,0,,226081,626081,ff,LAST_RKE_HISTO_INDEX ,7B9,24,55,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.0 ,7B9,56,87,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.1 ,7B9,88,119,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.2 ,7B9,120,151,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.3 ,7B9,152,183,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.4 ,7B9,184,215,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.5 ,7B9,216,247,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.6 ,7B9,248,279,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.7 ,7B9,280,311,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.8 ,7B9,312,343,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.9 ,7B9,344,375,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.10 ,7B9,376,407,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.11 ,7B9,408,439,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.12 ,7B9,440,471,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.13 ,7B9,472,503,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.14 ,7B9,504,535,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.15 ,7B9,536,567,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.16 ,7B9,568,599,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.17 ,7B9,600,631,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.18 ,7B9,632,663,1,0,0,,226082,626082,4ff,LAST_RKE_HISTO_SI_NUMBER.19 ,7B9,24,31,1,0,0,,226083,626083,ff,RKE_ID ,7B9,24,31,1,0,0,,226085,626085,ff,IMMO_COUNTER_REMAINING_IGNITION_BEFORE_APV_CODE_ERASING ,7B9,24,24,1,0,0,,226086,626086,ff,IMMO_FLAG_APV_CODE_RECOGNIZED,1:true;0:false ,7B9,24,24,1,0,0,,226087,626087,ff,IMMO_FLAG_AUTHORIZATION_TO_PAIR_ECM,1:true;0:false ,7B9,24,31,1,0,0,,226090,626090,ff,IMMO_STATE_AFTER_SALES_MODE_ROOT_ERROR ,7B9,24,31,1,0,0,,226091,626091,ff,IMMO_STATE_ECM_AFTER_SALES_MODE_ENTER_FAILED ,7B9,24,31,1,0,0,,226092,626092,ff,IMMO_STATE_ECM_AFTER_SALES_MODE_EXIT ,7B9,24,31,1,0,0,,226095,626095,ff,IMMO_STATE_GENESIS_MODE_ROOT_ERROR_SP ,7B9,24,31,1,0,0,,226098,626098,ff,TAILGATE_BUTTON_PUSHED,0:DL_BT_STT_UNAVAILABLE_VALUE;1:DL_BT_STT_NOT_BUTTON_PUSHED;2:DL_BT_STT_BUTTON_PUSHED;3:DL_BT_STT_NOT_USED ,7B9,24,31,1,0,0,,22609B,62609B,ff,FAILED_RESYNC_COUNTER_1 ,7B9,24,31,1,0,0,,22609C,62609C,ff,FAILED_RESYNC_COUNTER_2 ,7B9,24,31,1,0,0,,22609D,62609D,ff,FAILED_RESYNC_COUNTER_3 ,7B9,24,31,1,0,0,,22609E,62609E,ff,FAILED_RESYNC_COUNTER_4 ,7B9,24,31,1,0,0,,22609F,62609F,ff,RESYNC_COUNTER_1 ,7B9,24,31,1,0,0,,2260A0,6260A0,ff,RESYNC_COUNTER_2 ,7B9,24,31,1,0,0,,2260A1,6260A1,ff,RESYNC_COUNTER_3 ,7B9,24,31,1,0,0,,2260A2,6260A2,ff,RESYNC_COUNTER_4 ,7B9,24,31,1,0,0,,2260A3,6260A3,ff,CURRENT_WAC_STATUS,0:WAC_ST_IDLE;1:WAC_ST_ID_TRACKING;2:WAC_ST_WAITING_LAST_DOOR_CLOSE;3:WAC_ST_BACKUP;4:WAC_ST_WAITING_DISTURBERS_OFF;5:WAC_ST_FINAL_CHECK ,7B9,24,31,1,0,0,,2260A4,6260A4,ff,LAST_WAC_ACTIVATION_TRIG,0:WAT_NO_TRIG;1:WAT_TAIL_OPENING;2:WAT_TAIL_CLOSING;3:WAT_GLASS_OPENING;4:WAT_GLASS_CLOSING;5:WAT_DRIVER_DOOR_OPENING;6:WAT_DRIVER_DOOR_CLOSING;7:WAT_ASSIST_DOOR_OPENING;8:WAT_ASSIST_DOOR_CLOSING;9:WAT_RR_LEFT_DOOR_OPENING;10:WAT_RR_LEFT_DOOR_CLOSING;11:WAT_RR_RIGHT_DOOR_OPENING;12:WAT_RR_RIGHT_DOOR_CLOSING;13:WAT_VEHICLE_UNLOCKING;14:WAT_EXIT_DRIVING_WITH_OPEN_DOOR;15:WAT_STOP_AUTO_WITH_OPEN_DOOR ,7B9,24,24,1,0,0,,2260A5,6260A5,ff,LOCK_BY_WAC_ALLOWED,1:true;0:false ,7B9,24,24,1,0,0,,2260A6,6260A6,ff,PASSENGER_AND_BACK_DOORS_CLOSED,1:true;0:false ,7B9,24,24,1,0,0,,2260A7,6260A7,ff,WAC_REFUSE_TO_SLEEP,1:true;0:false ,7B9,24,24,1,0,0,,2260A8,6260A8,ff,CID_AUTHENTICATED,1:true;0:false ,7B9,24,31,1,0,0,,2260A9,6260A9,ff,LAST_CID_USED ,7B9,24,31,1,0,0,,2260AC,6260AC,ff,NB_AUTHENT_REQ_IN_HF ,7B9,24,31,1,0,0,,2260AE,6260AE,ff,NB_AUTHENT_SUCCESS_IN_HF ,7B9,24,31,1,0,0,,2260B0,6260B0,ff,CAD_APRUN_STATUS,0:APRUN_CAD_IDLE;1:APRUN_CAD_NC_WAIT_APRUN_OR_DEPARTURE;2:APRUN_CAD_NC_WAIT_EXIT_INHIB_AREA_OR_DEPARTURE;3:APRUN_CAD_LC_NORMAL_AREA;4:APRUN_CAD_LC_LIMITED_AREA ,7B9,24,31,1,0,0,,2260D5,6260D5,ff,IMMO_STATE_GENESIS_MODE_ROOT_ERROR ,7B9,24,31,1,0,0,,2260D6,6260D6,ff,IMMO_STATE_REWORK_MODE_ROOT_ERROR ,7B9,24,31,1,0,0,,2260D7,6260D7,ff,IMMO_STATE_SA ,7B9,24,31,1,0,0,,2260D8,6260D8,ff,IMMO_STATUS_CID_SA_EXIT ,7B9,24,31,1,0,0,,2260D9,6260D9,ff,IMMO_STATUS_ECM_SA_EXIT ,7B9,24,31,1,0,0,,2260DA,6260DA,ff,IMMO_STATUS_ECU_SA_EXIT ,7B9,24,31,1,0,0,,2260DC,6260DC,ff,IMMO_STATUS_SA_PAIRING_TYPE,0:NO_PAIRING_SA;1:CID_PAIRING_SA;4:ECM_PAIRING_SA;2:ECU_PAIRING_SA;3:TCU_PAIRING_SA ,7B9,24,24,1,0,0,,2260E0,6260E0,ff,CAN_ECM_PRESENT,1:true;0:false ,7B9,24,24,1,0,0,,2260E1,6260E1,ff,ID1_INSIDE_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260E3,6260E3,ff,ID1_OUTSIDE_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260E4,6260E4,ff,ID1_OUTSIDE_TRUNK_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260E5,6260E5,ff,ID2_INSIDE_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260E7,6260E7,ff,ID2_OUTSIDE_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260E8,6260E8,ff,ID2_OUTSIDE_TRUNK_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260E9,6260E9,ff,ID3_INSIDE_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260EB,6260EB,ff,ID3_OUTSIDE_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260EC,6260EC,ff,ID3_OUTSIDE_TRUNK_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260ED,6260ED,ff,ID4_INSIDE_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260EF,6260EF,ff,ID4_OUTSIDE_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2260F0,6260F0,ff,ID4_OUTSIDE_TRUNK_DETECTED,1:true;0:false ,7B9,24,39,1,0,0,,2260F1,6260F1,ff,PERM_AUTHENT_COUNTER ,7B9,24,39,1,0,0,,2260F2,6260F2,ff,PERM_AUTHENT_DELAY_COUNTER ,7B9,24,39,1,0,0,,2260F3,6260F3,ff,PERM_AUTHENT_FAILED_COUNTER ,7B9,24,24,1,0,0,,2260F4,6260F4,ff,IMMO_FLAG_SENDKEY_CONTENT_CONTROL_NOK,1:true;0:false ,7B9,24,24,1,0,0,,2260F5,6260F5,ff,IMMO_FLAG_USER_AUTHENT_ALLOWED,1:true;0:false ,7B9,24,24,1,0,0,,2260F7,6260F7,ff,DIAG_TRANSP_IDE_OK,1:true;0:false ,7B9,24,55,1,0,0,,2260F8,6260F8,4ff,DIAG_TRANSP_IDE_RECEIVED ,7B9,24,24,1,0,0,,226100,626100,ff,IMMO_FLAG_SR_ANALYZE_CID_BLANK,1:true;0:false ,7B9,24,24,1,0,0,,226101,626101,ff,IMMO_FLAG_SR_ANALYZE_CID_BY_KAZASHI,1:true;0:false ,7B9,24,24,1,0,0,,226102,626102,ff,IMMO_FLAG_SR_ANALYZE_CID_CURRENT_STATUS,1:true;0:false ,7B9,24,24,1,0,0,,226103,626103,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_ANT_OR_KAZASHI,1:true;0:false ,7B9,24,24,1,0,0,,226104,626104,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_IDE_NOT_RECEIVED,1:true;0:false ,7B9,24,24,1,0,0,,226105,626105,ff,IMMO_FLAG_SR_ANALYZE_CID_PB_KAZASHI,1:true;0:false ,7B9,24,31,1,0,0,,22612A,62612A,ff,ASSIST_DOOR_STATE,0:ADS_UNAVAILABLE;1:ASSIST_DOOR_CLOSED;2:ASSIST_DOOR_OPEN;3:ADS_NOT_USED ,7B9,24,55,1,0,0,,226133,626133,4ff,ABSOLUTETIME ,7B9,24,55,1,0,0,,226134,626134,4ff,EVENTS_HISTORY_ABSOLUTETIME ,7B9,24,31,1,0,0,,226135,626135,ff,EM_LAST_RES_VERLOG_STATUS,0:RES_VERLOG_OFF;1:RES_BAD_ECM_CHALLENGE;2:RES_CHALLENGE_ANSWERED_BY_ECU ,7B9,24,31,1,0,0,,226136,626136,ff,EM_LAST_VERLOG_STATUS,0:VERLOG_OFF;2:CHALLENGE_ANSWERED_BY_ECU;1:BAD_CHALLENGE ,7B9,24,31,1,0,0,,226137,626137,ff,HSG_LAST_RES_VERLOG_STATUS,0:RES_VERLOG_OFF;1:RES_BAD_ECM_CHALLENGE;2:RES_CHALLENGE_ANSWERED_BY_ECU ,7B9,24,31,1,0,0,,226138,626138,ff,HSG_LAST_VERLOG_STATUS,0:VERLOG_OFF;2:CHALLENGE_ANSWERED_BY_ECU;1:BAD_CHALLENGE ,7B9,24,31,1,0,0,,22613A,62613A,ff,NB_AUTHENT_REQ_IN_KAZASHI ,7B9,24,31,1,0,0,,22613B,62613B,ff,NB_AUTHENT_SUCCESS_IN_KAZASHI ,7B9,24,31,1,0,0,,22613C,62613C,ff,NB_IDENT_REQ_IN_HF ,7B9,24,31,1,0,0,,22613D,62613D,ff,NB_IDENT_SUCCESS_IN_HF ,7B9,24,24,1,0,0,,22613E,62613E,ff,RKE_BUTTON_5_PRESSED,1:true;0:false ,7B9,24,24,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.0,1:true;0:false ,7B9,25,25,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.1,1:true;0:false ,7B9,26,26,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.2,1:true;0:false ,7B9,27,27,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.3,1:true;0:false ,7B9,28,28,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.4,1:true;0:false ,7B9,29,29,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.5,1:true;0:false ,7B9,30,30,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.6,1:true;0:false ,7B9,31,31,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.7,1:true;0:false ,7B9,32,32,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.8,1:true;0:false ,7B9,33,33,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.9,1:true;0:false ,7B9,34,34,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.10,1:true;0:false ,7B9,35,35,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.11,1:true;0:false ,7B9,36,36,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.12,1:true;0:false ,7B9,37,37,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.13,1:true;0:false ,7B9,38,38,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.14,1:true;0:false ,7B9,39,39,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.15,1:true;0:false ,7B9,40,40,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.16,1:true;0:false ,7B9,41,41,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.17,1:true;0:false ,7B9,42,42,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.18,1:true;0:false ,7B9,43,43,1,0,0,,22613F,62613F,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.19,1:true;0:false ,7B9,24,24,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.0,1:true;0:false ,7B9,25,25,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.1,1:true;0:false ,7B9,26,26,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.2,1:true;0:false ,7B9,27,27,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.3,1:true;0:false ,7B9,28,28,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.4,1:true;0:false ,7B9,29,29,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.5,1:true;0:false ,7B9,30,30,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.6,1:true;0:false ,7B9,31,31,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.7,1:true;0:false ,7B9,32,32,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.8,1:true;0:false ,7B9,33,33,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.9,1:true;0:false ,7B9,34,34,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.10,1:true;0:false ,7B9,35,35,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.11,1:true;0:false ,7B9,36,36,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.12,1:true;0:false ,7B9,37,37,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.13,1:true;0:false ,7B9,38,38,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.14,1:true;0:false ,7B9,39,39,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.15,1:true;0:false ,7B9,40,40,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.16,1:true;0:false ,7B9,41,41,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.17,1:true;0:false ,7B9,42,42,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.18,1:true;0:false ,7B9,43,43,1,0,0,,226140,626140,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.19,1:true;0:false ,7B9,24,31,1,0,0,,226141,626141,ff,RKE_BUTTON_PRESSED,0:RKE_NO_RQT;1:RKE_NOT_USED_1;2:RKE_SH_PR_LOCK;3:RKE_SH_PR_UNLOCK;4:RKE_SH_PR_BACKDOOR_TRUNK;5:RKE_SH_PR_PANIC;6:RKE_SH_PR_PWR_SLIDING_DOOR_RH;7:RKE_SH_PR_PWR_SLIDING_DOOR_LH;8:RKE_SH_PR_REMOTE_LIGHTING;9:RKE_SH_PR_RES;10:RKE_SH_PR_ROOF;11:RKE_NOT_USED_11;12:RKE_NOT_USED_12;13:RKE_NOT_USED_13;14:RKE_NOT_USED_14;15:RKE_RKE_NOT_USED_15;16:RKE_NOT_USED_16;17:RKE_NOT_USED_17;18:RKE_LG_PR_LOCK;19:RKE_LG_PR_UNLOCK;20:RKE_LG_PR_BACKDOOR_TRUNK;21:RKE_LG_PR_PANIC;22:RKE_LG_PR_PWR_SLIDING_DOOR_RH;23:RKE_LG_PR_PWR_SLIDING_DOOR_LH;24:RKE_LG_PR_REMOTE_LIGHTING;25:RKE_LG_PR_RES;26:RKE_LG_PR_ROOF;27:RKE_VERY_LG_PR_LOCK_UNLOCK;28:RKE_NOT_USED_28;29:RKE_NOT_USED_29;30:RKE_NOT_USED_30;31:RKE_NOT_AVAILABLE ,7B9,24,31,1,0,0,,226142,626142,ff,IMMO_COUNTER_FACTORY_AND_AFTER_SALES_PAIRING ,7B9,24,24,1,0,0,,226143,626143,ff,IMMO_FLAG_AFTER_SALES_LAUNCHED,1:true;0:false ,7B9,24,24,1,0,0,,226144,626144,ff,IMMO_FLAG_AUTHORIZATION_TO_PAIR_TCU,1:true;0:false ,7B9,24,24,1,0,0,,226145,626145,ff,IMMO_FLAG_BCM_AFTER_SALES_LAUNCHED,1:true;0:false ,7B9,24,24,1,0,0,,226146,626146,ff,IMMO_FLAG_CID_AFTER_SALES_LAUNCHED,1:true;0:false ,7B9,24,24,1,0,0,,226147,626147,ff,IMMO_FLAG_CID_REWORK_LAUNCHED,1:true;0:false ,7B9,24,24,1,0,0,,226148,626148,ff,IMMO_FLAG_CUSTOMER_LAUNCHED,1:true;0:false ,7B9,24,24,1,0,0,,226149,626149,ff,IMMO_FLAG_ECM_AFTER_SALES_LAUNCHED,1:true;0:false ,7B9,24,24,1,0,0,,22614A,62614A,ff,IMMO_FLAG_ECU_REWORK_LAUNCHED,1:true;0:false ,7B9,24,24,1,0,0,,22614B,62614B,ff,IMMO_FLAG_GENESIS_LAUNCHED,1:true;0:false ,7B9,24,24,1,0,0,,22614C,62614C,ff,IMMO_FLAG_TCU_AFTER_SALES_SP_LAUNCHED,1:true;0:false ,7B9,24,24,1,0,0,,22614D,62614D,ff,IMMO_FLAG_TIME_OUT_AFTER_SALES_REACHED,1:true;0:false ,7B9,24,24,1,0,0,,22614E,62614E,ff,IMMO_FLAG_TIME_OUT_REWORK_REACHED,1:true;0:false ,7B9,24,31,1,0,0,,22614F,62614F,ff,IMMO_STATE_TCU_AFTER_SALES_MODE_ENTER_FAILED ,7B9,24,31,1,0,0,,226150,626150,ff,IMMO_STATE_TCU_AFTER_SALES_MODE_EXIT ,7B9,24,24,1,0,0,,226151,626151,ff,IMMO_STATUS_ECM_PAIR_SA_UNLCKED,1:true;0:false ,7B9,24,24,1,0,0,,226152,626152,ff,IMMO_STATUS_ECU_PAIR_SA_UNLCKED,1:true;0:false ,7B9,24,24,1,0,0,,226153,626153,ff,IMMO_STATUS_TCU_PAIR_SA_UNLCKED,1:true;0:false ,7B9,24,31,1,0,0,,226154,626154,ff,IMMO_STATUS_TCU_SA_EXIT ,7B9,24,24,1,0,0,,226155,626155,ff,IN_AFTERSALES_STATE,1:true;0:false ,7B9,24,24,1,0,0,,226156,626156,ff,CID_IDENTIFIED,1:true;0:false ,7B9,24,31,1,0,0,,226157,626157,ff,ECM_VL_VERSION ,7B9,24,31,1,0,0,,226158,626158,ff,EM_VL_VERSION ,7B9,24,31,1,0,0,,226159,626159,ff,HSG_VL_VERSION ,7B9,24,24,1,0,0,,22615B,62615B,ff,CAN_ECM_ABSENT,1:true;0:false ,7B9,24,24,1,0,0,,22615C,62615C,ff,CAN_ESCL3_TO_BCM_ABSENT,1:true;0:false ,7B9,24,24,1,0,0,,22615D,62615D,ff,CAN_ESCL3_TO_BCM_PRESENT,1:true;0:false ,7B9,24,24,1,0,0,,22615E,62615E,ff,CAN_METER_ABSENT,1:true;0:false ,7B9,24,24,1,0,0,,22615F,62615F,ff,CAN_METER_PRESENT,1:true;0:false ,7B9,24,24,1,0,0,,226160,626160,ff,CAN_ABS_PRESENT,1:true;0:false ,7B9,24,24,1,0,0,,226161,626161,ff,CAN_BCM_PRESENT,1:true;0:false ,7B9,24,24,1,0,0,,226162,626162,ff,CAN_USM_ABSENT,1:true;0:false ,7B9,24,24,1,0,0,,226163,626163,ff,CAN_USM_PRESENT,1:true;0:false ,7B9,24,24,1,0,0,,22616F,62616F,ff,I_START_SW,1:true;0:false ,7B9,24,24,1,0,0,,226170,626170,ff,I_IKEY_FR_SW,1:true;0:false ,7B9,24,24,1,0,0,,226171,626171,ff,I_IKEY_FL_SW,1:true;0:false ,7B9,24,24,1,0,0,,226172,626172,ff,I_IKEY_BACKDOOR_SW,1:true;0:false ,7B9,24,24,1,0,0,,226174,626174,ff,IMMO_STATUS_CID_PAIR_SA_UNLCKED,1:true;0:false ,7B9,24,55,1,0,0,,226179,626179,4ff,RKE_IDE_RECEIVED_FRAME ,7B9,24,24,1,0,0,,22617A,62617A,ff,RKE_IDENTIFICATION_STATUS,1:true;0:false ,7B9,24,31,1,0,0,,22617D,62617D,ff,VSC_CARD_FREQ_315 ,7B9,24,31,1,0,0,,22617F,62617F,ff,VSC_CARD_FREQ_433 ,7B9,24,24,1,0,0,,226181,626181,ff,ID1_OUTSIDE_LEFT_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,226182,626182,ff,ID1_OUTSIDE_RIGHT_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,226183,626183,ff,ID2_OUTSIDE_LEFT_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,226184,626184,ff,ID2_OUTSIDE_RIGHT_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,226185,626185,ff,ID3_OUTSIDE_LEFT_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,226186,626186,ff,ID3_OUTSIDE_RIGHT_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,226187,626187,ff,ID4_OUTSIDE_LEFT_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,226188,626188,ff,ID4_OUTSIDE_RIGHT_DETECTED,1:true;0:false ,7B9,24,31,1,0,0,,226189,626189,ff,RF_ORIGIN,0:NO_SIGNIFICATION;1:NO_SIGNIFICATION_1;2:TMPS_CHECKSUM_OK;3:TMPS_CHECKSUM_NOK;4:RF_ORIGIN_NOT_USED;5:RF_ORIGIN_NOT_USED_1;6:CID_RKE_CHECKSUM_OK;7:CID_RKE_CHECKSUM_NOK ,7B9,24,55,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.0 ,7B9,56,87,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.1 ,7B9,88,119,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.2 ,7B9,120,151,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.3 ,7B9,152,183,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.4 ,7B9,184,215,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.5 ,7B9,216,247,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.6 ,7B9,248,279,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.7 ,7B9,280,311,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.8 ,7B9,312,343,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.9 ,7B9,344,375,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.10 ,7B9,376,407,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.11 ,7B9,408,439,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.12 ,7B9,440,471,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.13 ,7B9,472,503,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.14 ,7B9,504,535,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.15 ,7B9,536,567,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.16 ,7B9,568,599,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.17 ,7B9,600,631,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.18 ,7B9,632,663,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.19 ,7B9,664,695,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.20 ,7B9,696,727,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.21 ,7B9,728,759,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.22 ,7B9,760,791,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.23 ,7B9,792,823,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.24 ,7B9,824,855,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.25 ,7B9,856,887,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.26 ,7B9,888,919,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.27 ,7B9,920,951,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.28 ,7B9,952,983,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.29 ,7B9,984,1015,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.30 ,7B9,1016,1047,1,0,0,,22618A,62618A,4ff,SES_BCM_ABSOLUTETIME_PART1.31 ,7B9,24,55,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.32 ,7B9,56,87,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.33 ,7B9,88,119,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.34 ,7B9,120,151,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.35 ,7B9,152,183,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.36 ,7B9,184,215,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.37 ,7B9,216,247,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.38 ,7B9,248,279,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.39 ,7B9,280,311,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.40 ,7B9,312,343,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.41 ,7B9,344,375,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.42 ,7B9,376,407,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.43 ,7B9,408,439,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.44 ,7B9,440,471,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.45 ,7B9,472,503,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.46 ,7B9,504,535,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.47 ,7B9,536,567,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.48 ,7B9,568,599,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.49 ,7B9,600,631,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.50 ,7B9,632,663,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.51 ,7B9,664,695,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.52 ,7B9,696,727,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.53 ,7B9,728,759,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.54 ,7B9,760,791,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.55 ,7B9,792,823,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.56 ,7B9,824,855,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.57 ,7B9,856,887,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.58 ,7B9,888,919,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.59 ,7B9,920,951,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.60 ,7B9,952,983,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.61 ,7B9,984,1015,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.62 ,7B9,1016,1047,1,0,0,,22618B,62618B,4ff,SES_BCM_ABSOLUTETIME_PART2.63 ,7B9,24,55,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.0 ,7B9,56,87,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.1 ,7B9,88,119,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.2 ,7B9,120,151,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.3 ,7B9,152,183,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.4 ,7B9,184,215,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.5 ,7B9,216,247,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.6 ,7B9,248,279,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.7 ,7B9,280,311,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.8 ,7B9,312,343,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.9 ,7B9,344,375,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.10 ,7B9,376,407,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.11 ,7B9,408,439,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.12 ,7B9,440,471,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.13 ,7B9,472,503,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.14 ,7B9,504,535,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.15 ,7B9,536,567,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.16 ,7B9,568,599,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.17 ,7B9,600,631,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.18 ,7B9,632,663,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.19 ,7B9,664,695,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.20 ,7B9,696,727,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.21 ,7B9,728,759,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.22 ,7B9,760,791,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.23 ,7B9,792,823,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.24 ,7B9,824,855,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.25 ,7B9,856,887,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.26 ,7B9,888,919,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.27 ,7B9,920,951,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.28 ,7B9,952,983,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.29 ,7B9,984,1015,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.30 ,7B9,1016,1047,1,0,0,,22618C,62618C,4ff,SES_HFM_ABSOLUTETIME_PART1.31 ,7B9,24,55,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.32 ,7B9,56,87,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.33 ,7B9,88,119,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.34 ,7B9,120,151,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.35 ,7B9,152,183,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.36 ,7B9,184,215,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.37 ,7B9,216,247,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.38 ,7B9,248,279,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.39 ,7B9,280,311,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.40 ,7B9,312,343,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.41 ,7B9,344,375,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.42 ,7B9,376,407,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.43 ,7B9,408,439,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.44 ,7B9,440,471,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.45 ,7B9,472,503,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.46 ,7B9,504,535,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.47 ,7B9,536,567,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.48 ,7B9,568,599,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.49 ,7B9,600,631,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.50 ,7B9,632,663,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.51 ,7B9,664,695,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.52 ,7B9,696,727,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.53 ,7B9,728,759,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.54 ,7B9,760,791,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.55 ,7B9,792,823,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.56 ,7B9,824,855,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.57 ,7B9,856,887,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.58 ,7B9,888,919,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.59 ,7B9,920,951,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.60 ,7B9,952,983,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.61 ,7B9,984,1015,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.62 ,7B9,1016,1047,1,0,0,,22618D,62618D,4ff,SES_HFM_ABSOLUTETIME_PART2.63 ,7B9,24,31,1,0,0,,22618E,62618E,ff,SES_TRIGGER.0 ,7B9,32,39,1,0,0,,22618E,62618E,ff,SES_TRIGGER.1 ,7B9,40,47,1,0,0,,22618E,62618E,ff,SES_TRIGGER.2 ,7B9,48,55,1,0,0,,22618E,62618E,ff,SES_TRIGGER.3 ,7B9,56,63,1,0,0,,22618E,62618E,ff,SES_TRIGGER.4 ,7B9,64,71,1,0,0,,22618E,62618E,ff,SES_TRIGGER.5 ,7B9,72,79,1,0,0,,22618E,62618E,ff,SES_TRIGGER.6 ,7B9,80,87,1,0,0,,22618E,62618E,ff,SES_TRIGGER.7 ,7B9,88,95,1,0,0,,22618E,62618E,ff,SES_TRIGGER.8 ,7B9,96,103,1,0,0,,22618E,62618E,ff,SES_TRIGGER.9 ,7B9,104,111,1,0,0,,22618E,62618E,ff,SES_TRIGGER.10 ,7B9,112,119,1,0,0,,22618E,62618E,ff,SES_TRIGGER.11 ,7B9,120,127,1,0,0,,22618E,62618E,ff,SES_TRIGGER.12 ,7B9,128,135,1,0,0,,22618E,62618E,ff,SES_TRIGGER.13 ,7B9,136,143,1,0,0,,22618E,62618E,ff,SES_TRIGGER.14 ,7B9,144,151,1,0,0,,22618E,62618E,ff,SES_TRIGGER.15 ,7B9,152,159,1,0,0,,22618E,62618E,ff,SES_TRIGGER.16 ,7B9,160,167,1,0,0,,22618E,62618E,ff,SES_TRIGGER.17 ,7B9,168,175,1,0,0,,22618E,62618E,ff,SES_TRIGGER.18 ,7B9,176,183,1,0,0,,22618E,62618E,ff,SES_TRIGGER.19 ,7B9,184,191,1,0,0,,22618E,62618E,ff,SES_TRIGGER.20 ,7B9,192,199,1,0,0,,22618E,62618E,ff,SES_TRIGGER.21 ,7B9,200,207,1,0,0,,22618E,62618E,ff,SES_TRIGGER.22 ,7B9,208,215,1,0,0,,22618E,62618E,ff,SES_TRIGGER.23 ,7B9,216,223,1,0,0,,22618E,62618E,ff,SES_TRIGGER.24 ,7B9,224,231,1,0,0,,22618E,62618E,ff,SES_TRIGGER.25 ,7B9,232,239,1,0,0,,22618E,62618E,ff,SES_TRIGGER.26 ,7B9,240,247,1,0,0,,22618E,62618E,ff,SES_TRIGGER.27 ,7B9,248,255,1,0,0,,22618E,62618E,ff,SES_TRIGGER.28 ,7B9,256,263,1,0,0,,22618E,62618E,ff,SES_TRIGGER.29 ,7B9,264,271,1,0,0,,22618E,62618E,ff,SES_TRIGGER.30 ,7B9,272,279,1,0,0,,22618E,62618E,ff,SES_TRIGGER.31 ,7B9,280,287,1,0,0,,22618E,62618E,ff,SES_TRIGGER.32 ,7B9,288,295,1,0,0,,22618E,62618E,ff,SES_TRIGGER.33 ,7B9,296,303,1,0,0,,22618E,62618E,ff,SES_TRIGGER.34 ,7B9,304,311,1,0,0,,22618E,62618E,ff,SES_TRIGGER.35 ,7B9,312,319,1,0,0,,22618E,62618E,ff,SES_TRIGGER.36 ,7B9,320,327,1,0,0,,22618E,62618E,ff,SES_TRIGGER.37 ,7B9,328,335,1,0,0,,22618E,62618E,ff,SES_TRIGGER.38 ,7B9,336,343,1,0,0,,22618E,62618E,ff,SES_TRIGGER.39 ,7B9,344,351,1,0,0,,22618E,62618E,ff,SES_TRIGGER.40 ,7B9,352,359,1,0,0,,22618E,62618E,ff,SES_TRIGGER.41 ,7B9,360,367,1,0,0,,22618E,62618E,ff,SES_TRIGGER.42 ,7B9,368,375,1,0,0,,22618E,62618E,ff,SES_TRIGGER.43 ,7B9,376,383,1,0,0,,22618E,62618E,ff,SES_TRIGGER.44 ,7B9,384,391,1,0,0,,22618E,62618E,ff,SES_TRIGGER.45 ,7B9,392,399,1,0,0,,22618E,62618E,ff,SES_TRIGGER.46 ,7B9,400,407,1,0,0,,22618E,62618E,ff,SES_TRIGGER.47 ,7B9,408,415,1,0,0,,22618E,62618E,ff,SES_TRIGGER.48 ,7B9,416,423,1,0,0,,22618E,62618E,ff,SES_TRIGGER.49 ,7B9,424,431,1,0,0,,22618E,62618E,ff,SES_TRIGGER.50 ,7B9,432,439,1,0,0,,22618E,62618E,ff,SES_TRIGGER.51 ,7B9,440,447,1,0,0,,22618E,62618E,ff,SES_TRIGGER.52 ,7B9,448,455,1,0,0,,22618E,62618E,ff,SES_TRIGGER.53 ,7B9,456,463,1,0,0,,22618E,62618E,ff,SES_TRIGGER.54 ,7B9,464,471,1,0,0,,22618E,62618E,ff,SES_TRIGGER.55 ,7B9,472,479,1,0,0,,22618E,62618E,ff,SES_TRIGGER.56 ,7B9,480,487,1,0,0,,22618E,62618E,ff,SES_TRIGGER.57 ,7B9,488,495,1,0,0,,22618E,62618E,ff,SES_TRIGGER.58 ,7B9,496,503,1,0,0,,22618E,62618E,ff,SES_TRIGGER.59 ,7B9,504,511,1,0,0,,22618E,62618E,ff,SES_TRIGGER.60 ,7B9,512,519,1,0,0,,22618E,62618E,ff,SES_TRIGGER.61 ,7B9,520,527,1,0,0,,22618E,62618E,ff,SES_TRIGGER.62 ,7B9,528,535,1,0,0,,22618E,62618E,ff,SES_TRIGGER.63 ,7B9,24,31,1,0,0,,22618F,62618F,ff,SES_INDEX_NUMBER ,7B9,24,55,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.0 ,7B9,56,87,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.1 ,7B9,88,119,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.2 ,7B9,120,151,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.3 ,7B9,152,183,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.4 ,7B9,184,215,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.5 ,7B9,216,247,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.6 ,7B9,248,279,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.7 ,7B9,280,311,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.8 ,7B9,312,343,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.9 ,7B9,344,375,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.10 ,7B9,376,407,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.11 ,7B9,408,439,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.12 ,7B9,440,471,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.13 ,7B9,472,503,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.14 ,7B9,504,535,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.15 ,7B9,536,567,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.16 ,7B9,568,599,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.17 ,7B9,600,631,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.18 ,7B9,632,663,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.19 ,7B9,664,695,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.20 ,7B9,696,727,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.21 ,7B9,728,759,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.22 ,7B9,760,791,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.23 ,7B9,792,823,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.24 ,7B9,824,855,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.25 ,7B9,856,887,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.26 ,7B9,888,919,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.27 ,7B9,920,951,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.28 ,7B9,952,983,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.29 ,7B9,984,1015,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.30 ,7B9,1016,1047,1,0,0,,226190,626190,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART1.31 ,7B9,24,55,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.32 ,7B9,56,87,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.33 ,7B9,88,119,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.34 ,7B9,120,151,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.35 ,7B9,152,183,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.36 ,7B9,184,215,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.37 ,7B9,216,247,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.38 ,7B9,248,279,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.39 ,7B9,280,311,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.40 ,7B9,312,343,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.41 ,7B9,344,375,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.42 ,7B9,376,407,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.43 ,7B9,408,439,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.44 ,7B9,440,471,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.45 ,7B9,472,503,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.46 ,7B9,504,535,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.47 ,7B9,536,567,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.48 ,7B9,568,599,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.49 ,7B9,600,631,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.50 ,7B9,632,663,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.51 ,7B9,664,695,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.52 ,7B9,696,727,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.53 ,7B9,728,759,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.54 ,7B9,760,791,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.55 ,7B9,792,823,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.56 ,7B9,824,855,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.57 ,7B9,856,887,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.58 ,7B9,888,919,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.59 ,7B9,920,951,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.60 ,7B9,952,983,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.61 ,7B9,984,1015,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.62 ,7B9,1016,1047,1,0,0,,226191,626191,4ff,SES_FAILS_BCM_ABSOLUTETIME_PART2.63 ,7B9,24,55,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.0 ,7B9,56,87,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.1 ,7B9,88,119,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.2 ,7B9,120,151,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.3 ,7B9,152,183,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.4 ,7B9,184,215,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.5 ,7B9,216,247,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.6 ,7B9,248,279,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.7 ,7B9,280,311,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.8 ,7B9,312,343,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.9 ,7B9,344,375,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.10 ,7B9,376,407,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.11 ,7B9,408,439,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.12 ,7B9,440,471,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.13 ,7B9,472,503,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.14 ,7B9,504,535,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.15 ,7B9,536,567,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.16 ,7B9,568,599,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.17 ,7B9,600,631,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.18 ,7B9,632,663,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.19 ,7B9,664,695,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.20 ,7B9,696,727,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.21 ,7B9,728,759,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.22 ,7B9,760,791,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.23 ,7B9,792,823,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.24 ,7B9,824,855,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.25 ,7B9,856,887,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.26 ,7B9,888,919,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.27 ,7B9,920,951,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.28 ,7B9,952,983,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.29 ,7B9,984,1015,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.30 ,7B9,1016,1047,1,0,0,,226192,626192,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART1.31 ,7B9,24,55,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.32 ,7B9,56,87,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.33 ,7B9,88,119,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.34 ,7B9,120,151,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.35 ,7B9,152,183,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.36 ,7B9,184,215,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.37 ,7B9,216,247,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.38 ,7B9,248,279,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.39 ,7B9,280,311,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.40 ,7B9,312,343,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.41 ,7B9,344,375,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.42 ,7B9,376,407,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.43 ,7B9,408,439,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.44 ,7B9,440,471,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.45 ,7B9,472,503,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.46 ,7B9,504,535,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.47 ,7B9,536,567,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.48 ,7B9,568,599,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.49 ,7B9,600,631,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.50 ,7B9,632,663,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.51 ,7B9,664,695,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.52 ,7B9,696,727,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.53 ,7B9,728,759,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.54 ,7B9,760,791,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.55 ,7B9,792,823,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.56 ,7B9,824,855,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.57 ,7B9,856,887,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.58 ,7B9,888,919,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.59 ,7B9,920,951,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.60 ,7B9,952,983,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.61 ,7B9,984,1015,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.62 ,7B9,1016,1047,1,0,0,,226193,626193,4ff,SES_FAILS_HFM_ABSOLUTETIME_PART2.63 ,7B9,24,31,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.0 ,7B9,32,39,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.1 ,7B9,40,47,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.2 ,7B9,48,55,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.3 ,7B9,56,63,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.4 ,7B9,64,71,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.5 ,7B9,72,79,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.6 ,7B9,80,87,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.7 ,7B9,88,95,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.8 ,7B9,96,103,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.9 ,7B9,104,111,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.10 ,7B9,112,119,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.11 ,7B9,120,127,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.12 ,7B9,128,135,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.13 ,7B9,136,143,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.14 ,7B9,144,151,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.15 ,7B9,152,159,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.16 ,7B9,160,167,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.17 ,7B9,168,175,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.18 ,7B9,176,183,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.19 ,7B9,184,191,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.20 ,7B9,192,199,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.21 ,7B9,200,207,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.22 ,7B9,208,215,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.23 ,7B9,216,223,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.24 ,7B9,224,231,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.25 ,7B9,232,239,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.26 ,7B9,240,247,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.27 ,7B9,248,255,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.28 ,7B9,256,263,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.29 ,7B9,264,271,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.30 ,7B9,272,279,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.31 ,7B9,280,287,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.32 ,7B9,288,295,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.33 ,7B9,296,303,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.34 ,7B9,304,311,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.35 ,7B9,312,319,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.36 ,7B9,320,327,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.37 ,7B9,328,335,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.38 ,7B9,336,343,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.39 ,7B9,344,351,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.40 ,7B9,352,359,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.41 ,7B9,360,367,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.42 ,7B9,368,375,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.43 ,7B9,376,383,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.44 ,7B9,384,391,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.45 ,7B9,392,399,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.46 ,7B9,400,407,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.47 ,7B9,408,415,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.48 ,7B9,416,423,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.49 ,7B9,424,431,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.50 ,7B9,432,439,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.51 ,7B9,440,447,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.52 ,7B9,448,455,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.53 ,7B9,456,463,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.54 ,7B9,464,471,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.55 ,7B9,472,479,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.56 ,7B9,480,487,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.57 ,7B9,488,495,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.58 ,7B9,496,503,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.59 ,7B9,504,511,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.60 ,7B9,512,519,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.61 ,7B9,520,527,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.62 ,7B9,528,535,1,0,0,,226194,626194,ff,SES_FAILURES_TRIGGER.63 ,7B9,24,31,1,0,0,,226195,626195,ff,SES_FAILURES_INDEX_NUMBER ,7B9,24,55,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.0 ,7B9,56,87,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.1 ,7B9,88,119,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.2 ,7B9,120,151,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.3 ,7B9,152,183,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.4 ,7B9,184,215,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.5 ,7B9,216,247,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.6 ,7B9,248,279,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.7 ,7B9,280,311,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.8 ,7B9,312,343,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.9 ,7B9,344,375,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.10 ,7B9,376,407,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.11 ,7B9,408,439,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.12 ,7B9,440,471,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.13 ,7B9,472,503,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.14 ,7B9,504,535,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.15 ,7B9,536,567,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.16 ,7B9,568,599,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.17 ,7B9,600,631,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.18 ,7B9,632,663,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.19 ,7B9,664,695,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.20 ,7B9,696,727,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.21 ,7B9,728,759,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.22 ,7B9,760,791,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.23 ,7B9,792,823,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.24 ,7B9,824,855,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.25 ,7B9,856,887,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.26 ,7B9,888,919,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.27 ,7B9,920,951,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.28 ,7B9,952,983,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.29 ,7B9,984,1015,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.30 ,7B9,1016,1047,1,0,0,,226196,626196,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART1.31 ,7B9,24,55,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.32 ,7B9,56,87,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.33 ,7B9,88,119,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.34 ,7B9,120,151,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.35 ,7B9,152,183,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.36 ,7B9,184,215,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.37 ,7B9,216,247,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.38 ,7B9,248,279,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.39 ,7B9,280,311,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.40 ,7B9,312,343,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.41 ,7B9,344,375,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.42 ,7B9,376,407,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.43 ,7B9,408,439,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.44 ,7B9,440,471,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.45 ,7B9,472,503,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.46 ,7B9,504,535,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.47 ,7B9,536,567,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.48 ,7B9,568,599,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.49 ,7B9,600,631,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.50 ,7B9,632,663,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.51 ,7B9,664,695,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.52 ,7B9,696,727,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.53 ,7B9,728,759,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.54 ,7B9,760,791,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.55 ,7B9,792,823,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.56 ,7B9,824,855,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.57 ,7B9,856,887,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.58 ,7B9,888,919,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.59 ,7B9,920,951,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.60 ,7B9,952,983,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.61 ,7B9,984,1015,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.62 ,7B9,1016,1047,1,0,0,,226197,626197,4ff,VEH_STAT_BCM_ABSOLUTETIME_PART2.63 ,7B9,24,55,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.0 ,7B9,56,87,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.1 ,7B9,88,119,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.2 ,7B9,120,151,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.3 ,7B9,152,183,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.4 ,7B9,184,215,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.5 ,7B9,216,247,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.6 ,7B9,248,279,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.7 ,7B9,280,311,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.8 ,7B9,312,343,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.9 ,7B9,344,375,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.10 ,7B9,376,407,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.11 ,7B9,408,439,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.12 ,7B9,440,471,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.13 ,7B9,472,503,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.14 ,7B9,504,535,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.15 ,7B9,536,567,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.16 ,7B9,568,599,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.17 ,7B9,600,631,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.18 ,7B9,632,663,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.19 ,7B9,664,695,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.20 ,7B9,696,727,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.21 ,7B9,728,759,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.22 ,7B9,760,791,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.23 ,7B9,792,823,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.24 ,7B9,824,855,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.25 ,7B9,856,887,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.26 ,7B9,888,919,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.27 ,7B9,920,951,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.28 ,7B9,952,983,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.29 ,7B9,984,1015,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.30 ,7B9,1016,1047,1,0,0,,226198,626198,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART1.31 ,7B9,24,55,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.32 ,7B9,56,87,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.33 ,7B9,88,119,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.34 ,7B9,120,151,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.35 ,7B9,152,183,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.36 ,7B9,184,215,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.37 ,7B9,216,247,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.38 ,7B9,248,279,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.39 ,7B9,280,311,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.40 ,7B9,312,343,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.41 ,7B9,344,375,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.42 ,7B9,376,407,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.43 ,7B9,408,439,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.44 ,7B9,440,471,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.45 ,7B9,472,503,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.46 ,7B9,504,535,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.47 ,7B9,536,567,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.48 ,7B9,568,599,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.49 ,7B9,600,631,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.50 ,7B9,632,663,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.51 ,7B9,664,695,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.52 ,7B9,696,727,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.53 ,7B9,728,759,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.54 ,7B9,760,791,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.55 ,7B9,792,823,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.56 ,7B9,824,855,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.57 ,7B9,856,887,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.58 ,7B9,888,919,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.59 ,7B9,920,951,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.60 ,7B9,952,983,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.61 ,7B9,984,1015,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.62 ,7B9,1016,1047,1,0,0,,226199,626199,4ff,VEH_STAT_HFM_ABSOLUTETIME_PART2.63 ,7B9,24,31,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.0 ,7B9,32,39,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.1 ,7B9,40,47,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.2 ,7B9,48,55,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.3 ,7B9,56,63,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.4 ,7B9,64,71,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.5 ,7B9,72,79,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.6 ,7B9,80,87,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.7 ,7B9,88,95,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.8 ,7B9,96,103,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.9 ,7B9,104,111,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.10 ,7B9,112,119,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.11 ,7B9,120,127,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.12 ,7B9,128,135,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.13 ,7B9,136,143,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.14 ,7B9,144,151,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.15 ,7B9,152,159,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.16 ,7B9,160,167,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.17 ,7B9,168,175,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.18 ,7B9,176,183,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.19 ,7B9,184,191,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.20 ,7B9,192,199,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.21 ,7B9,200,207,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.22 ,7B9,208,215,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.23 ,7B9,216,223,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.24 ,7B9,224,231,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.25 ,7B9,232,239,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.26 ,7B9,240,247,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.27 ,7B9,248,255,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.28 ,7B9,256,263,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.29 ,7B9,264,271,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.30 ,7B9,272,279,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.31 ,7B9,280,287,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.32 ,7B9,288,295,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.33 ,7B9,296,303,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.34 ,7B9,304,311,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.35 ,7B9,312,319,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.36 ,7B9,320,327,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.37 ,7B9,328,335,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.38 ,7B9,336,343,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.39 ,7B9,344,351,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.40 ,7B9,352,359,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.41 ,7B9,360,367,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.42 ,7B9,368,375,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.43 ,7B9,376,383,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.44 ,7B9,384,391,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.45 ,7B9,392,399,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.46 ,7B9,400,407,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.47 ,7B9,408,415,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.48 ,7B9,416,423,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.49 ,7B9,424,431,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.50 ,7B9,432,439,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.51 ,7B9,440,447,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.52 ,7B9,448,455,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.53 ,7B9,456,463,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.54 ,7B9,464,471,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.55 ,7B9,472,479,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.56 ,7B9,480,487,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.57 ,7B9,488,495,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.58 ,7B9,496,503,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.59 ,7B9,504,511,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.60 ,7B9,512,519,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.61 ,7B9,520,527,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.62 ,7B9,528,535,1,0,0,,22619A,62619A,ff,VEH_STAT_TRIGGER.63 ,7B9,24,31,1,0,0,,22619B,62619B,ff,VEH_STAT_INDEX_NUMBER ,7B9,24,55,1,0,0,,22619C,62619C,2ff,CID_EM_PAGE_0_VIN ,7B9,24,55,1,0,0,,22619D,62619D,2ff,CID_EM_PAGE_1_VIN ,7B9,40,55,1,0,0,,22619D,62619D,4ff,CID_EM_PAGE_1_CID_SW_VERSION ,7B9,24,55,1,0,0,,22619E,62619E,2ff,CID_EM_PAGE_2_VIN ,7B9,24,55,1,0,0,,22619F,62619F,2ff,CID_EM_PAGE_3_VIN ,7B9,24,31,1,0,0,,2261A0,6261A0,2ff,CID_EM_PAGE_4_VIN ,7B9,32,47,1,0,0,,2261A0,6261A0,4ff,CID_EM_PAGE_4_CRC_VIN ,7B9,24,55,1,0,0,,2261A1,6261A1,4ff,CID_EM_PAGE_5_RD ,7B9,24,55,1,0,0,,2261A2,6261A2,4ff,CID_EM_PAGE_6_RD ,7B9,24,47,1,0,0,,2261A3,6261A3,4ff,CID_PAGE_7_BLOCK_14_BYTE_1_3 ,7B9,48,55,1,0,0,,2261A3,6261A3,ff,CID_PAGE_7_BLOCK_14_BYTE_0,0:NO INFORMATIO TO DISPLAY;48:UNAVAILABLE;145:RF 433 MHz- Logo type = Renault Molded Logo;146:RF 433 MHz- Logo type = Renault Chrome Logo;177:RF 315 MHz High power- Logo type = Renault Molded Logo;178:RF 315 MHz High power- Logo type = Renault Chrome Logo;209:RF 433 MHz High power- Logo type = Renault Molded Logo;210:RF 433 MHz High power- Logo type = Renault Chrome Logo;241:RF 315 MHz Low power- Logo type = Renault Chrome Logo;242:RF 315 MHz Low power- Logo type = Renault Molded Logo ,7B9,24,95,1,0,0,,2261A4,6261A4,4ff,PASE_KEY_NET_GET_COMPATIBILITY_FIELD ,7B9,24,24,1,0,0,,2261A5,6261A5,ff,O_BUZZER_DIAG,1:true;0:false ,7B9,24,39,1,0,0,,2261A6,6261A6,ff,SIREG_RECEIVED ,7B9,24,2943,1,0,0,,2261A7,6261A7,4ff,IASS_PART1 ,7B9,24,2943,1,0,0,,2261A8,6261A8,4ff,IASS_PART2 ,7B9,24,31,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.0 ,7B9,32,39,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.1 ,7B9,40,47,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.2 ,7B9,48,55,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.3 ,7B9,56,63,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.4 ,7B9,64,71,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.5 ,7B9,72,79,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.6 ,7B9,80,87,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.7 ,7B9,88,95,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.8 ,7B9,96,103,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.9 ,7B9,104,111,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.10 ,7B9,112,119,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.11 ,7B9,120,127,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.12 ,7B9,128,135,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.13 ,7B9,136,143,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.14 ,7B9,144,151,1,0,0,,2261A9,6261A9,ff,DIAG_RFS_INPUT_2.15 ,7B9,24,31,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.0 ,7B9,32,39,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.1 ,7B9,40,47,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.2 ,7B9,48,55,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.3 ,7B9,56,63,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.4 ,7B9,64,71,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.5 ,7B9,72,79,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.6 ,7B9,80,87,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.7 ,7B9,88,95,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.8 ,7B9,96,103,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.9 ,7B9,104,111,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.10 ,7B9,112,119,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.11 ,7B9,120,127,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.12 ,7B9,128,135,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.13 ,7B9,136,143,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.14 ,7B9,144,151,1,0,0,,2261AB,6261AB,ff,DIAG_RFS_OUTPUT_1.15 ,7B9,24,31,1,0,0,,2261AD,6261AD,ff,RF_FRAME_RECEIVED_FLAG ,7B9,24,55,1,0,0,,2261AE,6261AE,4ff,RF_CID ,7B9,24,24,1,0,0,,2261AF,6261AF,ff,RF_CHECK_IDENT,1:true;0:false ,7B9,24,24,1,0,0,,2261B0,6261B0,ff,RF_CRYPTO,1:true;0:false ,7B9,24,31,1,0,0,,2261B1,6261B1,ff,VSC_LOW_LEVEL_BATTERY_ID1_CNT ,7B9,24,31,1,0,0,,2261B2,6261B2,ff,VSC_LOW_LEVEL_BATTERY_ID2_CNT ,7B9,24,31,1,0,0,,2261B3,6261B3,ff,VSC_LOW_LEVEL_BATTERY_ID3_CNT ,7B9,24,31,1,0,0,,2261B4,6261B4,ff,VSC_LOW_LEVEL_BATTERY_ID4_CNT ,7B9,24,55,1,0,0,,2261B5,6261B5,4ff,RESET_COUNTER.0 ,7B9,56,87,1,0,0,,2261B5,6261B5,4ff,RESET_COUNTER.1 ,7B9,88,119,1,0,0,,2261B5,6261B5,4ff,RESET_COUNTER.2 ,7B9,120,151,1,0,0,,2261B5,6261B5,4ff,RESET_COUNTER.3 ,7B9,152,183,1,0,0,,2261B5,6261B5,4ff,RESET_COUNTER.4 ,7B9,24,31,.06,-10000,2,V,2261B6,6261B6,ff,BATTERY_VOLTAGE_FROM_USM ,7B9,24,31,1,0,0,,2261B7,6261B7,ff,VEHICLE_STATE,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;3:VS_AUTOACC_LEVEL;4:VS_NOT_USED_4;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;8:VS_AUTOSTART;9:VS_ENGINE_SYSTEM_STOP;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE ,7B9,24,24,1,0,0,,2261B8,6261B8,ff,ALL_ANTENNA_SUPPLY_BY_DIAG,1:true;0:false ,7B9,24,24,1,0,0,,2261B9,6261B9,ff,INT_ANTENNA_SUPPLY_BY_DIAG,1:true;0:false ,7B9,24,24,1,0,0,,2261BA,6261BA,ff,EXT_ANTENNA_SUPPLY_BY_DIAG,1:true;0:false ,7B9,24,24,1,0,0,,2261BB,6261BB,ff,O_START_BACKLIGHT,1:true;0:false ,7B9,24,31,1,0,0,,2261BC,6261BC,ff,HSG_IS_BLANK,0:UNKNOWN;1:IS_BLANK;2:NOT_BLANK ,7B9,24,31,1,0,0,,2261BD,6261BD,ff,EM_IS_BLANK,0:UNKNOWN;1:IS_BLANK;2:NOT_BLANK ,7B9,24,24,1,0,0,,2261BE,6261BE,ff,I_TRUNK_CANCEL_SW,1:true;0:false ,7B9,24,24,1,0,0,,2261BF,6261BF,ff,OUTPUT_STEERINGLOCK_POWER_ON,1:true;0:false ,7B9,24,24,1,0,0,,2261C0,6261C0,ff,ID1_ETA_OUTSIDE_BACK_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2261C1,6261C1,ff,ID2_ETA_OUTSIDE_BACK_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2261C2,6261C2,ff,ID3_ETA_OUTSIDE_BACK_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2261C3,6261C3,ff,ID4_ETA_OUTSIDE_BACK_DETECTED,1:true;0:false ,7B9,24,24,1,0,0,,2261C4,6261C4,ff,SENSOR_LINE_DISCONTINUITY,1:true;0:false ,7B9,24,24,1,0,0,,2261C5,6261C5,ff,CAN_VEHICLESTATES_INHIBITION,1:true;0:false ,7B9,24,31,1,0,0,,2261C6,6261C6,ff,BUZZER_FEEDBACK_IKEY_ACTIV,0:NO_REQUEST_FEEDBACK;1:REQUEST_FEEDBACK_ACTIVATION;2:REQUEST_FEEDBACK_DEACTIVATION;3:NOT_USED_FB ,7B9,24,31,1,0,0,,2261C7,6261C7,ff,RF_FRAME_RECEIVED_COUNTER ,7B9,24,24,1,0,0,,2261C8,6261C8,ff,RF_RECEIVER_FREQUENCY,0:433 MHz;1:315 MHz ,7B9,24,55,1,0,0,,2261C9,6261C9,4ff,IDE.0 ,7B9,56,87,1,0,0,,2261C9,6261C9,4ff,IDE.1 ,7B9,88,119,1,0,0,,2261C9,6261C9,4ff,IDE.2 ,7B9,120,151,1,0,0,,2261C9,6261C9,4ff,IDE.3 ,7B9,24,2543,1,0,0,,22DA00,62DA00,4ff,SigmaVSSD0 ,7B9,24,1239,1,0,0,,22DA10,62DA10,4ff,SigmaVTDD0 ,7B9,24,1239,1,0,0,,22DA11,62DA11,4ff,SigmaVTDD1 ,7B9,24,1239,1,0,0,,22DA12,62DA12,4ff,SigmaVTDD2 ,7B9,24,1239,1,0,0,,22DA13,62DA13,4ff,SigmaVTDD3 ,7B9,24,1239,1,0,0,,22DA14,62DA14,4ff,SigmaVTDD4 ,7B9,24,151,1,0,0,,22F010,62F010,2ff,Fingerprint ,7B9,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,7B9,24,103,1,0,0,,22F012,62F012,2ff,OperationnalReference ,7B9,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationnalReference ,7B9,24,47,1,0,0,km,22F0D0,62F0D0,ff,DTCMileage ,7B9,24,31,1,0,0,,22F0D1,62F0D1,ff,DTCOccurenceCounter ,7B9,24,103,1,0,0,,22F111,62F111,2ff,vehicleManufacturerECUHardwareNumberDAI ,7B9,24,183,1,0,0,,22F121,62F121,2ff,vehicleManufacturerECUSoftwareNumberDAI ,7B9,24,63,1,0,0,,22F180,62F180,4ff,bootSoftwareIdentification ,7B9,24,103,1,0,0,,22F182,62F182,4ff,CalibrationNumber ,7B9,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,7B9,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,7B9,24,111,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7B9,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,7B9,24,159,1,0,0,,22F190,62F190,2ff,VIN ,7B9,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,7B9,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7B9,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7B9,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,7B9,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumberN ,7B9,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigDataReferenceAfterConfigProcess ,7B9,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/HFM_Tests.csv ================================================ 44,data memory failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 61,signal calculation failure 67,signal incorrect after event 51,not programmed 71,actuator stuck 72,actuator stuck open 45,program memory failure 55,not configured 54,missing calibration 52,not activated 4B,over temperature 4A,incorrect component installed 49,internal electronic failure 48,supervision software failure 47,watchdog / safety µC failure 46,calibration / parameter memory failure 73,actuator stuck closed 87,missing message 53,deactivated 43,special memory failure 98,component or system over temperature 97,Component or system operation obstructed or blocked 96,component internal failure 95,incorrect assembly 94,unexpected operation 93,no operation 92,performance or incorrect operation 91,parametric 8F,erratic 88,bus off 85,signal above allowable range 86,signal invalid 74,actuator slipping 84,signal below allowable range 83,value of signal protection calculation incorrect 82,alive / sequence counter incorrect / not updated 81,invalid serial data received 7B,low fluid level 7A,fluid leak or seal failure 79,mechanical linkage failure 78,alignment or adjustment incorrect 77,commanded position not reachable 76,wrong mounting position 75,emergency position not reachable 66,signal has too many transitions / events 0F,Vehicle manufacturer / System supplier specific 1B,circuit resistance above threshold 1A,circuit resistance below threshold 19,circuit current above threshold 18,circuit current below threshold 17,circuit voltage above threshold 16,circuit voltage below threshold 15,circuit short to battery or open 14,circuit short to ground or open 13,circuit open 1C,circuit voltage out of range 11,circuit short to ground 09,Component Failures 08,Bus Signal / Message Failures 06,Algorithm Based Failures 05,System Programming Failures 04,System Internal Failures 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 02,General signal failure 01,General Electrical Failure 00,Device and failure type ODB codding/ General Failure Information 42,general memory failure 68,event information 12,circuit short to battery 35,signal high time > maximum 41,general checksum failure 3A,incorrect has too many pulses 07,Mechanical Failures 1D,circuit current out of range 39,incorrect has too few pulses 38,signal frequency incorrect 36,signal frequency too low 34,signal high time < minimum 33,signal low time > maximum 32,signal low time < minimum 31,no signal 25,signal shape / waveform failure 21,signal amplitude < minimum 37,signal frequency too high 2F,signal erratic 1F,circuit intermittent 23,signal stuck low 24,signal stuck high 22,signal amplitude > maximum 1E,circuit resistance out of range 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid ================================================ FILE: app/src/main/assets/ZOE_Ph2/HVAC_Dtcs.csv ================================================ A4A5,AQSOxydantSensor A4A8,AQSPreHeat A4A3,AQSReductorSensor A4A7,AQSSupply A4C9,BoilerCommand A4B5,BoilerFeedback D010,CANController D000,CANNetwork A4A0,ClimBox A4CB,CompressorValveCommand A4A2,Config E14F,DiagMuxBCM E140,DiagMuxECM E14E,DiagMuxMeter E15B,DiagMuxUSM A48A,EComp A489,ECompAbnormalHV A487,ECompAbnormalRunUp A48B,ECompCPU A485,ECompCurrentSensor A484,ECompOutputLineOC A483,ECompOutputLineSC A486,ECompOverload A4F9,ECompTempSensor A4A4,EvapTempSensor A4B9,FeetVentActuator A4F5,FeetVentLINActuator A4B4,FrontControlPanel A4B0,HeatSeatFrontLeftHighRelay A4AF,HeatSeatFrontLeftLowRelay A4BC,HeatSeatFrontRightHighRelay A4BA,HeatSeatFrontRightLowRelay A4AE,HotSourceTempSensor A4AB,HumiditySensor A4A6,InCarTempSensor A4B2,IonizerMode A4DE,IonizerSupply A4BB,LeftMixActuator A4F7,LeftMixLINActuator A4A9,LeftSolarSensor A4D3,LIN1 A4D4,LIN2 A4A1,PowerSupply A4AC,PWMAQS A4C6,PWMBlowerCommand A4D7,RearBlowerCommand A4B7,RecyActuator A4F6,RecyLINActuator A4BD,RightMixActuator A4F8,RightMixLINActuator A4F4,SteeringHeaterRelay A4CF,Valve1Command A4D1,Valve2Command A4E5,WindshieldHeating1Command A4E7,WindshieldHeating2Command E148,DiagMuxVDC A482,HPM A481,PTC A48C,HPMACleakageDynamic A4C0,HPMACleakageStatic A4C1,HPMStatusValve1 A4C2,HPMStatusValve2 A4C3,HPMStatusSensor1 A4C4,HPMStatusSensor2 A4C5,PTCStatElectronicDefect A4C7,PTCStatOverTemperature A4C8,PTCStatOverUndervoltage A4E1,PTCStatHeatercirc1off A4E2,PTCStatHeatercirc2off A4E3,PTCStatHeatercirc3off A4E4,PTCStatHeatercirc4off E154,DiagMuxIVI E150,DiagMuxACU E143,DiagMuxHEVC ================================================ FILE: app/src/main/assets/ZOE_Ph2/HVAC_Fields.csv ================================================ ,764,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.DefaultSession ,764,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.ProgrammingSession ,764,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnosticSession ,764,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,764,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,764,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,764,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,764,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,764,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD,42113:PTC;42114:HPM;42115:ECompOutputLineSC;42116:ECompOutputLineOC;42117:ECompCurrentSensor;42118:ECompOverload;42119:ECompAbnormalRunUp;42121:ECompAbnormalHV;42122:EComp;42123:ECompCPU;42124:HPMACleakageDynamic;42144:ClimBox;42145:PowerSupply;42146:Config;42147:AQSReductorSensor;42148:EvapTempSensor;42149:AQSOxydantSensor;42150:InCarTempSensor;42151:AQSSupply;42152:AQSPreHeat;42153:LeftSolarSensor;42155:HumiditySensor;42156:PWMAQS;42158:HotSourceTempSensor;42159:HeatSeatFrontLeftLowRelay;42160:HeatSeatFrontLeftHighRelay;42162:IonizerMode;42164:FrontControlPanel;42165:BoilerFeedback;42167:RecyActuator;42169:FeetVentActuator;42170:HeatSeatFrontRightLowRelay;42171:LeftMixActuator;42172:HeatSeatFrontRightHighRelay;42173:RightMixActuator;42176:HPMACleakageStatic;42177:HPMStatusValve1;42178:HPMStatusValve2;42179:HPMStatusSensor1;42180:HPMStatusSensor2;42181:PTCStatElectronicDefect;42182:PWMBlowerCommand;42183:PTCStatOverTemperature;42184:PTCStatOverUndervoltage;42185:BoilerCommand;42187:CompressorValveCommand;42191:Valve1Command;42193:Valve2Command;42195:LIN1;42196:LIN2;42199:RearBlowerCommand;42206:IonizerSupply;42209:PTCStatHeatercirc1off;42210:PTCStatHeatercirc2off;42211:PTCStatHeatercirc3off;42212:PTCStatHeatercirc4off;42213:WindshieldHeating1Command;42215:WindshieldHeating2Command;42228:SteeringHeaterRelay;42229:FeetVentLINActuator;42230:RecyLINActuator;42231:LeftMixLINActuator;42232:RightMixLINActuator;42233:ECompTempSensor;53248:CANNetwork;53264:CANController;57664:DiagMuxECM;57667:DiagMuxHEVC;57672:DiagMuxVDC;57678:DiagMuxMeter;57679:DiagMuxBCM;57680:DiagMuxACU;57684:DiagMuxIVI;57691:DiagMuxUSM ,764,40,43,1,0,0,,1902FF,5902FF,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;10:General Electrical Failures - 2;15:Vehicle manufacturer / System supplier specific ,764,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,764,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,764,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,764,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,764,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,764,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,764,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,764,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,764,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,764,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,764,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,42113:PTC;42114:HPM;42115:ECompOutputLineSC;42116:ECompOutputLineOC;42117:ECompCurrentSensor;42118:ECompOverload;42119:ECompAbnormalRunUp;42121:ECompAbnormalHV;42122:EComp;42123:ECompCPU;42124:HPMACleakageDynamic;42144:ClimBox;42145:PowerSupply;42146:Config;42147:AQSReductorSensor;42148:EvapTempSensor;42149:AQSOxydantSensor;42150:InCarTempSensor;42151:AQSSupply;42152:AQSPreHeat;42153:LeftSolarSensor;42155:HumiditySensor;42156:PWMAQS;42158:HotSourceTempSensor;42159:HeatSeatFrontLeftLowRelay;42160:HeatSeatFrontLeftHighRelay;42162:IonizerMode;42164:FrontControlPanel;42165:BoilerFeedback;42167:RecyActuator;42169:FeetVentActuator;42170:HeatSeatFrontRightLowRelay;42171:LeftMixActuator;42172:HeatSeatFrontRightHighRelay;42173:RightMixActuator;42176:HPMACleakageStatic;42177:HPMStatusValve1;42178:HPMStatusValve2;42179:HPMStatusSensor1;42180:HPMStatusSensor2;42181:PTCStatElectronicDefect;42182:PWMBlowerCommand;42183:PTCStatOverTemperature;42184:PTCStatOverUndervoltage;42185:BoilerCommand;42187:CompressorValveCommand;42191:Valve1Command;42193:Valve2Command;42195:LIN1;42196:LIN2;42199:RearBlowerCommand;42206:IonizerSupply;42209:PTCStatHeatercirc1off;42210:PTCStatHeatercirc2off;42211:PTCStatHeatercirc3off;42212:PTCStatHeatercirc4off;42213:WindshieldHeating1Command;42215:WindshieldHeating2Command;42228:SteeringHeaterRelay;42229:FeetVentLINActuator;42230:RecyLINActuator;42231:LeftMixLINActuator;42232:RightMixLINActuator;42233:ECompTempSensor;53248:CANNetwork;53264:CANController;57664:DiagMuxECM;57667:DiagMuxHEVC;57672:DiagMuxVDC;57678:DiagMuxMeter;57679:DiagMuxBCM;57680:DiagMuxACU;57684:DiagMuxIVI;57691:DiagMuxUSM ,764,40,47,1,0,0,,190A,590A,ff,DTCFailureType,8:Bus signal;17:SC to ground;18:SC to battery;19:OC;20:OC or SC to ground;21:OC or SC to battery;22:voltage below threshold;23:voltage above threshold;36:bad frequency;73:internal failure;147:no operation;1:General Electrical Failure;2:General signal failure ,764,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,764,24,24,1,0,0,,220001,620001,ff,VL_HPMValve1Diag_OCFP ,764,24,24,1,0,0,,224001,624001,ff,OLB_DayNightStatus ,764,24,24,1,0,0,,224002,624002,ff,OLB_ClearDiagInfo ,764,24,24,1,0,0,,224003,624003,ff,OLB_IgnitionState ,764,24,31,.5,0,1,°C,224004,624004,ff,OLB_FP_LeftTempDisplay ,764,24,31,1,0,0,,224005,624005,ff,OLB_FP_DistDisplay,0:Not display;1:Feet Arrow;2:Aerator Arrow;3:Feet Arrow + Aerator Arrow;4:Mild Flow Arrow;5:Feet Arrow + Mild Flow Arrow;9:Feet Arrow + Defrost Arrow;10:Aerator Arrow + Defrost Arrow;11:Feet Arrow + Aerator Arrow + Defrost Arrow ,764,24,31,1,0,0,,224006,624006,ff,OLB_FP_BlowerLevelDisplay,0:Blower Level 0;1:Blower Level 1;2:Blower level 2;3:Blower level 3;4:Blower level 4;5:Blower level 5;6:Blower level 6;7:Blower level 7;8:Blower level 8;9:Blower level 9;10:Blower level 10;11:Blower level 11;12:Blower level 12;13:Blower level 13;14:Blower level 14;15:Blower level 15 ,764,24,24,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDA ,764,25,25,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDB ,764,26,26,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDC ,764,27,27,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDD ,764,28,28,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDE ,764,29,29,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDF ,764,30,30,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDG ,764,31,31,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDH ,764,33,33,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDJ ,764,34,34,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDK ,764,35,35,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDL ,764,36,36,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDM ,764,37,37,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDN ,764,39,39,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDP ,764,41,41,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDR ,764,42,42,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDS ,764,43,43,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDT ,764,44,44,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDU ,764,45,45,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDV ,764,46,46,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDW ,764,47,47,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDX ,764,48,48,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDY ,764,49,49,1,0,0,,224007,624007,ff,OLB_FP_LED_Indic.OLB_FP_LED_Indic.LEDZ ,764,24,31,1,40,0,°C,224008,624008,ff,VH_Tamb ,764,24,39,.1,400,1,°C,224009,624009,ff,IH_IncarTemp ,764,24,39,.1,400,1,°C,22400A,62400A,ff,IH_EvapTemp ,764,24,31,5,0,0,W/m²,22400B,62400B,ff,IH_LeftSolarLevelN ,764,24,31,1,40,0,°C,22400C,62400C,ff,VH_Tam_filtered ,764,24,31,1,40,0,°C,22400D,62400D,ff,VH_TINC_filtered ,764,24,31,1,40,0,°C,22400F,62400F,ff,VH_TINT_filtered ,764,24,31,5,0,0,W/m²,224010,624010,ff,VH_QSUN_filtered ,764,24,31,1,100,0,°C,224012,624012,ff,VH_XM ,764,24,31,1,0,0,,224013,624013,ff,OH_BlowerFanMotorStatus_AC ,764,24,24,1,0,0,,224015,624015,ff,OH_ACCompRequest,1:Air Conditioning Requested;0:No Air Conditioning Requested ,764,24,24,1,0,0,,224017,624017,ff,IH_ACCompClutchStatus,1:Clutch ON;0:Clutch OFF ,764,24,24,1,0,0,,224018,624018,ff,IH_ACCompClutchDefault,1:Clutch failure;0:No clutch failure ,764,24,31,1,0,0,,224019,624019,ff,CH_SetTempValueCorrection,0:-3°C or -6°F;1:-2.5°C or -5°F;2:-2°C or -4°F;3:-1.5°C or -3°F;4:-1°C or -2°F;5:-0.5°C or -1°F;6:No correction +-0;7:+0.5°C or +1°F;8:+1°C or +2°F;9:+1.5°C or +3°F;10:+2°C or +4°F;11:+2.5°C or +5°F;12:+3°C or +6°F ,764,24,39,1,0,0,,224020,624020,ff,VL_InternalFailureCode,8192:RAM diagnosis A;8293:EEPROM diagnosis A;8198:WDT diagnosis A;8196:Microcontroller peripheral circuits;29185:Invalid serial data received;29184:Missing message;29186:Failure of CRC or check sum;29187:Signal invalid;29188:Program running diagnosis ,764,24,24,1,0,0,,22402A,62402A,ff,CH_RECMemorySetting,0:Use memory for manual REC;1:Do not use memory for manual REC ,764,24,24,1,0,0,,22402B,62402B,ff,CH_FREMemorySetting,0:Use memory for manual FRE;1:Do not use memory for manual FRE ,764,24,31,1,0,0,,22402C,62402C,ff,CH_SetFeetVentToDEF,0:DEF door open when auto - DEF door closed when manual;1:DEF door open when auto - DEF door open when manual;2:DEF door closed when auto - DEF door open when manual;3:DEF door closed when auto - DEF door closed when manual ,764,24,31,1,0,0,,22402F,62402F,ff,CH_TargetEvapTempIncrease ,764,24,24,1,0,0,,224030,624030,ff,CH_ISComfortable ,764,24,31,1,0,0,,224031,624031,ff,VL_ACATForLineReq,0:AC compressor activation not forbidden;1:AC compressor activation forbidden ,764,24,24,1,0,0,,2240B7,6240B7,ff,CH_ISIntake ,764,24,24,1,0,0,,2240B8,6240B8,ff,CH_ISFandown ,764,24,31,1,0,0,,2240BD,6240BD,ff,CL_ConfigurationDone,0:0d - Not configured;1:1d - Configuration done ,764,24,31,1,0,0,,224200,624200,ff,CL_ACType,0:0d - Not configured;2:2d - Heater;1:1d - Manual monozone;16:16d - Monozone regulated;17:17d - Dualzone without rear vent ducts;20:20d - Trizone with temperature and with distribution;18:18d - Dualzone with rear vent ducts;19:19d - Trizone with temperature;21:21d - Dualzone with additional rear monozone;22:22d - Monozone Regulated - with rear blowers ,764,24,31,1,0,0,,224201,624201,ff,CL_CANArchitecture,0:0d - Not configured;1:1d - Renault T4;10:10d - Nissan C1N;12:12d - Renault-Nissan C1A ,764,24,31,1,0,0,,224202,624202,ff,CL_CompValveType,0:0d - Not configured;2:2d - With Renault comp valve;1:1d - Without comp valve ,764,24,151,1,0,0,,224203,624203,4ff,CL_DiagnosticConfiguration ,764,24,31,1,0,0,,224204,624204,ff,CL_WithAirQualitySensor,0:0d - Not configured;2:2d - With Renault AQS;1:1d - Without sensor;3:3d - With Nissan PWM AQS ,764,24,31,1,0,0,,224206,624206,ff,CL_WithBlowerFanFeedback,0:0d - Not configured;2:2d - With feedback type 1;1:1d - Without feedback ,764,24,31,1,0,0,,224207,624207,ff,CL_WithBoiler,0:0d - Not configured;2:2d - With boiler type 1;1:1d - Without boiler ,764,24,31,1,0,0,,224208,624208,ff,CL_WithControlPanel,0:0d - Not configured;2:2d - With CP type 1;1:1d - Without CP;3:3d - With CP type 2;4:4d - With CP type 3;7:7d - With CP type 6;5:5d - With CP type 4;6:6d - With CP type 5;8:8d - With CP type 7;9:9d - With CP type 8;10:10d - With CP type 9;11:11d - With CP type 10 ,764,24,31,1,0,0,,224209,624209,ff,CL_WithEvapSensor,7:7d - With sensor type 6 - P02F - Fin type;0:0d - Not configured;2:2d - With sensor type 1;1:1d - Without sensor;3:3d - With sensor type 2 - P02F - Air type;8:8d - With sensor type 7 - B02E - Fin type;4:4d - With sensor type 3 - Carry-back;5:5d- With sensor type 4 - B02E - Air type;6:6d - With sensor type 5 - L21B ,764,24,31,1,0,0,,22420A,62420A,ff,CL_WithHEVSensor1,0:0d - Not configured;2:2d - With sensor type 1;1:1d - Without sensor ,764,24,31,1,0,0,,22420B,62420B,ff,CL_WithHEVSensor2,0:0d - Not configured;2:2d - With sensor type 1;1:1d - Without sensor ,764,24,31,1,0,0,,22420C,62420C,ff,CL_WithHotSourceSensor,0:0d - Not configured;2:2d - With Renault sensor;1:1d - Without sensor ,764,24,31,1,0,0,,22420D,62420D,ff,CL_WithHumiditySensor,0:0d - Not configured;2:2d - With Renault sensor;1:1d - Without sensor ,764,24,31,1,0,0,,22420E,62420E,ff,CL_WithInCarTempSensor,0:0d - Not configured;2:2d - With Renault sensor;1:1d - Without sensor;3:3d - With Nissan sensor ,764,24,39,1,0,0,,22420F,62420F,ff,CL_WithLINBus2,0:0d - Not configured;15:15d - FCP - Blower - RCP;1:1d - No slave;7:7d - FCP - Blower;3:3d - Front Control Panel ,764,24,31,1,0,0,,224210,624210,ff,CL_WithSolarSensor,0:0d - Not configured;2:2d - With Renault sensor;1:1d - Without sensor;3:3d - With Nissan sensor ,764,24,31,1,0,0,,224211,624211,ff,CL_WithValve1Output,0:0d - Not configured;2:2d - With valve type 1;1:1d - Without valve ,764,24,31,1,0,0,,224212,624212,ff,CL_WithValve2Output,0:0d - Not configured;2:2d - With valve type 1;1:1d - Without valve ,764,24,31,1,0,0,,224213,624213,ff,CL_WithWaterpump,0:0d - Not configured;2:2d - With Bosch waterpump;1:1d - Without waterpump;3:3d - With Cooper-Denso waterpump ,764,24,31,1,0,0,,224214,624214,ff,CL_WithFragrance,0:0d - Not configured;2:2d - With Renault fragrance;1:1d - Without fragrance ,764,24,31,1,0,0,,224215,624215,ff,CL_WithIonizer,0:0d - Not configured;2:2d - With Renault ionizer;1:1d - Without ionizer;3:3d - With Nissan ionizer ,764,24,39,1,0,0,,224216,624216,ff,CL_WithLINBus1,0:0d - Not configured;3:3d - CI2;1:1d - No slave;519:519d - CI2 - PTC - HPM;7:7d - CI2 + PTC;515:515d - CI2 + HPM;121:121dd - ACTR1to4;123:123d - CI2 - ACTR1to4 ,764,24,31,1,0,0,,224217,624217,ff,CL_WithWindshieldHeating1,0:0d - Not configured;2:2d - With windshield heating relay 1 type 1;1:1d - Without windshield heating relay 1 ,764,24,31,1,0,0,,224218,624218,ff,CL_WithWindshieldHeating2,0:0d - Not configured;2:2d - With windshield heating relay 2 type 1;1:1d - Without windshield heating relay 2 ,764,24,31,1,0,0,,224219,624219,ff,CH_SteeringType,0:0d - Not configured;2:2d - LHD steering;1:1d - RHD steering ,764,24,31,1,0,0,,22421A,62421A,ff,CH_EngineType,0:0d - Not configured;2:2d - Stop - start engine;1:1d - Thermic engine;3:3d - Electrical engine;5:5d - Thermic Nissan engine;7:7d - Hybrid Nissan engine;6:6d - Diesel Nissan engine;8:8d - Gasoline Nissan engine;9:9d - Hybrid Renault engine ,764,24,47,1,0,0,,22421B,62421B,4ff,CH_NissanHLSConfiguration ,764,24,31,.01,0,2,,22421C,62421C,ff,CH_CompPulleyRatio ,764,24,31,1,0,0,,22421D,62421D,ff,CH_CountryType,3:3d - Zone 3;0:0d - Not configured;2:2d - Zone 2;1:1d - Zone 1;4:4d - Zone 4 ,764,24,31,1,0,0,,22421E,62421E,ff,CH_WithAirHVPTC,0:0d - Not configured;2:2d - With Air HV PTC Low;1:1d - Without Air HV PTC;3:3d - With Air HV PTC High ,764,24,31,1,0,0,,22421F,62421F,ff,CH_WithCompressor,0:0d - Not configured;2:2d - With external ctrl with cluctch;1:1d - Without compressor;3:3d - With external ctrl without cluctch;4:4d - With internal ctrl with cluctch;5:5d - With fixed ctrl with cluctch;6:6d - With electrical compressor ,764,24,31,1,0,0,,224220,624220,ff,CH_WithECOModeClim,0:0d - Not configured;2:2d - With Eco Mode Clim;1:1d - Without Eco Mode Clim ,764,24,31,1,0,0,,224221,624221,ff,CH_WithESM,0:0d - Not configured;2:2d - With ESM;1:1d - Without ESM ,764,24,31,1,0,0,,224222,624222,ff,CH_WithFrontDefroster,0:0d - Not configured;2:2d - With Front Defroster;1:1d - Without Front Defroster ,764,24,31,1,0,0,,224223,624223,ff,CH_WithHeaterCore,0:0d - Not configured;2:2d - With Heater core;1:1d - Without Heater core ,764,24,31,1,0,0,,224224,624224,ff,CH_WithHeatPump,0:0d - Not configured;2:2d - With Heat pump inner cond;1:1d - Without Heat pump;3:3d - With Heat pump schiller ,764,24,31,1,0,0,,224225,624225,ff,CH_WithHVBattCond,0:0d - Not configured;2:2d - With HV Batt Cond by Air;1:1d - Without HV Batt Cond;3:3d - With HV Batt Cond by Water ,764,24,31,1,0,0,,224226,624226,ff,CH_WithLDB,0:0d - Not configured;2:2d - With LDB;1:1d - Without LDB ,764,24,31,1,0,0,,224227,624227,ff,CH_WithLVHeater,0:0d - Not configured;2:2d - With LV PTC Low - Without THP;1:1d - Without LV PTC - Without THP;3:3d - With LV PTC High - Without THP;4:4d - With LV PTC Low - With THP;5:5d - With LV PTC High - With THP;6:6d - Without LV PTC - With THP ,764,24,31,1,0,0,,224228,624228,ff,CH_WithPreCond,0:0d - Not configured;2:2d - With Precond;1:1d - Without Precond ,764,24,31,1,0,0,,224229,624229,ff,CH_WithSaS,0:0d - Not configured;2:2d - With StopStart;1:1d - Without StopStart ,764,24,31,1,0,0,,22422A,62422A,ff,CH_WithSeatsHeating,0:0d - Not configured;2:2d - With Seats heating;1:1d - Without Seats heating ,764,24,31,1,0,0,,22422B,62422B,ff,CH_WithSED,0:0d - Not configured;2:2d - With SED type 1;1:1d - Without SED;3:3d - With SED type 2;4:4d - With SED type 3;5:5d - With SED type 4 ,764,24,31,1,0,0,,22422D,62422D,ff,CH_WithWaterHVPTC,0:0d - Not configured;2:2d - With Water HV PTC Low;1:1d - Without Water HV PTC;3:3d - With Water HV PTC High ,764,24,31,1,0,0,,22422E,62422E,ff,CH_WithWEP,0:0d - Not configured;2:2d - With WEP type 1;1:1d - Without WEP;3:3d - With WEP type 2 ,764,24,31,1,0,0,%,22422F,62422F,ff,OH_BlowerReq ,764,24,31,1,0,0,,224230,624230,ff,IH_RecyActrPosition ,764,24,31,1,0,0,,224231,624231,ff,IH_FeetVentActrPosition ,764,24,31,1,0,0,,224232,624232,ff,IH_LeftMixActrPosition ,764,24,31,1,0,0,,224233,624233,ff,IH_RightMixActrPosition ,764,24,31,1,0,0,%,224235,624235,ff,OH_RecyActrReq ,764,24,31,1,0,0,%,224236,624236,ff,OH_FeetVentActrReq ,764,24,31,1,0,0,%,224237,624237,ff,OH_LeftMixActrReq ,764,24,31,1,0,0,%,224238,624238,ff,OH_RightMixActrReq ,764,24,31,.5,0,1,%,22423B,62423B,ff,IH_RHumidity ,764,24,39,.1,0,1,°C,22423C,62423C,ff,IH_HotSourceTemp ,764,24,31,50,0,0,W/m²,22423D,62423D,ff,IH_LeftSolarLevel ,764,24,31,50,0,0,W,22423E,62423E,ff,IH_VisibleSolarLevelInfo ,764,24,24,1,0,0,,22423F,62423F,ff,IH_BlowerState ,764,24,31,.5,0,1,%,224240,624240,ff,IH_BlowerVoltRatio ,764,24,24,1,0,0,,224241,624241,ff,IH_BlowerDefault ,764,24,24,1,0,0,,224243,624243,ff,OLW_PreHeatAQS ,764,24,39,.005,0,3,V,224244,624244,ff,IH_ReductorRatio ,764,24,39,.005,0,3,V,224245,624245,ff,IH_OxydantRatio ,764,24,24,1,0,0,,224246,624246,ff,IH_CompValveDefault ,764,24,31,.01,0,2,,224247,624247,ff,IH_ACCompValveCurrent ,764,24,31,1,0,0,%,224248,624248,ff,OH_ACCompValveCommand ,764,24,31,5,0,0,%,224249,624249,ff,IH_AQS_PWM ,764,24,31,1,0,0,,22424A,62424A,ff,OH_IonizerMode ,764,24,31,1,0,0,,22424B,62424B,ff,OLW_OnOffOutput_1 ,764,24,24,1,0,0,,22424C,62424C,ff,OH_WindshieldHeating1Req ,764,24,24,1,0,0,,22424D,62424D,ff,OH_WindshieldHeating2Req ,764,24,31,1,0,0,,22424E,62424E,ff,IH_VehicleStateForClim,0:0d - Sleeping;1:1d - Cut off pending;5:5d - Engine Running;7:7d - Unavailable;3:3d - Blower Available ,764,24,24,1,0,0,,22424F,62424F,ff,IH_ACCompAuthorized,0:ACComp not authorized;1:ACComp authorized ,764,24,31,1,0,0,,224250,624250,ff,OLB_FP_TestLamps ,764,24,31,1,0,0,,224251,624251,ff,ILN_GenericApplicativeDiagEnable,0:Only faults reports and alerts t;1:All faults reports and alerts n;2:All faults reports and alerts a;3:Unavailable ,764,24,31,1,0,0,,224252,624252,ff,OH_AC_StopAutoForbidden ,764,24,24,1,0,0,,224253,624253,ff,OH_ACCompClutchRequest ,764,24,31,1,0,0,W,224254,624254,ff,OH_ACCompPowerUsed ,764,24,31,1,0,0,rpm,224255,624255,ff,OH_ACMinEngineIdleSpeedRequest ,764,24,24,1,0,0,,224256,624256,ff,OH_CoolerHilimitRequestForCVT,0:Cooler Hilimit not requested;1:Cooler Hilimit requested ,764,24,31,1,0,0,W,224257,624257,ff,OH_ElectricalPowerDrived_HVAC ,764,24,31,1,0,0,%,224258,624258,ff,OH_EngineFanSpeedRequestPWM_AC ,764,24,31,1,0,0,,224259,624259,ff,OH_PTCNumberThermalReq ,764,24,24,1,0,0,,22425A,62425A,ff,OH_RearDefrostRequest ,764,24,31,1,0,0,,22425B,62425B,ff,OH_VoltageRatebyAC ,764,24,31,1,0,0,,22425C,62425C,ff,OH_ACCoolingFanSpeedRequest ,764,24,24,1,0,0,,22425D,62425D,ff,OH_BlowerState ,764,24,24,1,0,0,,22425E,62425E,ff,OH_FrontDefrostRequest ,764,24,31,.25,-4600,1,V,22425F,62425F,ff,OH_MinimumVoltagebyAC ,764,24,31,1,0,0,,224260,624260,ff,OH_PumpActivationRequest ,764,24,31,1,0,0,,224261,624261,ff,OH_ClimAQSActivationState,0:Unavailable;1:Activated;2:Not activated;3:Not used ,764,24,31,1,0,0,,224262,624262,ff,IH_SupposedCustomerDeparture,0:Event 0;1:Event 1;2:Event 2;3:Unavailable ,764,24,31,100,0,0,W,224263,624263,ff,IH_ElectricalPowerDrived ,764,24,31,1,0,0,,224264,624264,ff,IH_PTCThermalRegulatorFreeze,0:No PTC thermal Regulator Freeze;1:PTC thermal Regulator Freeze req ,764,24,55,1,0,0,,224265,624265,4ff,IH_AbsoluteTimeSinceFirstIgnition ,764,24,31,1,0,0,,224266,624266,ff,IH_EcoModeRequest ,764,24,24,1,0,0,,224267,624267,ff,IH_VehicleOutsideLockedToggle ,764,24,31,1,0,0,,224268,624268,ff,IH_DayNightStatus,0:Day time according light level s;1:Night time according to light le ,764,24,31,1,40,0,°C,224269,624269,ff,IH_ExternalTemp ,764,24,31,.4,0,1,%,22426A,62426A,ff,IH_NightRheostatedLightMaxPercent ,764,24,31,25,0,0,,22426B,62426B,ff,IH_ACMaxCompPowerAllowed ,764,24,39,.1,0,1,bar,22426C,62426C,ff,IH_ACHighPressureSensor ,764,24,31,1,0,0,,22426D,62426D,ff,IH_EngineFanSpeedRequest ,764,24,31,1,0,0,,22426E,62426E,ff,IH_EngineStatus_R,0:engine stopped;1:Reserved;2:independant running engine;3:running engine-driven ,764,24,31,1,0,0,,22426F,62426F,ff,IH_EngineStopOrigine ,764,24,31,1,0,0,,224270,624270,ff,IH_EngineCoolantFlowStatus,0:Unvailable Value;1:No EngineCoolantFlow;2:EngineCoolantFlow;3:Not Used ,764,24,31,1,0,0,,224271,624271,ff,IH_CoolingFanSpeedStatus,0:Engine fan stopped;1:low speed engine fan active;2:mid speed engine fan active;3:high speed engine fan active ,764,24,31,50,0,0,W/m²,224272,624272,ff,IH_RightSolarLevel ,764,24,24,1,0,0,,224273,624273,ff,VL_InCarTempDiag_OCFM ,764,24,24,1,0,0,,224274,624274,ff,VL_InCarTempDiag_OCFP ,764,24,24,1,0,0,,224275,624275,ff,VL_InCarTempDiag_SCFM ,764,24,24,1,0,0,,224276,624276,ff,VL_InCarTempDiag_SCFP ,764,24,24,1,0,0,,224277,624277,ff,VL_EvapTempDiag_OCFM ,764,24,24,1,0,0,,224278,624278,ff,VL_EvapTempDiag_OCFP ,764,24,24,1,0,0,,224279,624279,ff,VL_EvapTempDiag_SCFM ,764,24,24,1,0,0,,22427A,62427A,ff,VL_EvapTempDiag_SCFP ,764,24,24,1,0,0,,22427B,62427B,ff,VL_RHumidityDiag_OCFM ,764,24,24,1,0,0,,22427C,62427C,ff,VL_RHumidityDiag_OCFP ,764,24,24,1,0,0,,22427D,62427D,ff,VL_RHumidityDiag_SCFM ,764,24,24,1,0,0,,22427E,62427E,ff,VL_RHumidityDiag_SCFP ,764,24,24,1,0,0,,22427F,62427F,ff,VL_AnalogInput_6DefType1FM ,764,24,24,1,0,0,,224280,624280,ff,VL_AnalogInput_6DefType1FP ,764,24,24,1,0,0,,224281,624281,ff,VL_AnalogInput_6DefType2FM ,764,24,24,1,0,0,,224282,624282,ff,VL_AnalogInput_6DefType2FP ,764,24,24,1,0,0,,224283,624283,ff,VL_BlowerControlDiag_OCFM ,764,24,24,1,0,0,,224284,624284,ff,VL_BlowerControlDiag_OCFP ,764,24,24,1,0,0,,224285,624285,ff,VL_BlowerControlDiag_SCFM ,764,24,24,1,0,0,,224286,624286,ff,VL_BlowerControlDiag_SCFP ,764,24,24,1,0,0,,224287,624287,ff,VL_PWMOutput_4DefType1FM ,764,24,24,1,0,0,,224288,624288,ff,VL_PWMOutput_4DefType1FP ,764,24,24,1,0,0,,224289,624289,ff,VL_PWMOutput_4DefType2FM ,764,24,24,1,0,0,,22428A,62428A,ff,VL_PWMOutput_4DefType2FP ,764,24,24,1,0,0,,22428B,62428B,ff,OH_HeatSeatFrontLeftHighReq ,764,24,24,1,0,0,,22428C,62428C,ff,OH_HeatSeatFrontLeftLowReq ,764,24,24,1,0,0,,22428D,62428D,ff,OH_HeatSeatFrontRightHighReq ,764,24,24,1,0,0,,22428E,62428E,ff,OH_HeatSeatFrontRightLowReq ,764,24,24,1,0,0,,22428F,62428F,ff,VL_HeatAQSDiag_OCFM ,764,24,24,1,0,0,,224290,624290,ff,VL_HeatAQSDiag_OCFP ,764,24,24,1,0,0,,224291,624291,ff,VL_HeatAQSDiag_SCFM ,764,24,24,1,0,0,,224292,624292,ff,VL_HeatAQSDiag_SCFP ,764,24,24,1,0,0,,224293,624293,ff,VL_VrefAQSDiag_BAT_SCFM ,764,24,24,1,0,0,,224294,624294,ff,VL_VrefAQSDiag_BAT_SCFP ,764,24,24,1,0,0,,224295,624295,ff,VL_VrefAQSDiag_GND_SCFM ,764,24,24,1,0,0,,224296,624296,ff,VL_VrefAQSDiag_GND_SCFP ,764,24,24,1,0,0,,224297,624297,ff,VL_OxydantDiag_OCFM ,764,24,24,1,0,0,,224298,624298,ff,VL_OxydantDiag_OCFP ,764,24,24,1,0,0,,224299,624299,ff,VL_OxydantDiag_SCFM ,764,24,24,1,0,0,,22429A,62429A,ff,VL_OxydantDiag_SCFP ,764,24,24,1,0,0,,22429B,62429B,ff,VL_ReductorDiag_OCFM ,764,24,24,1,0,0,,22429C,62429C,ff,VL_ReductorDiag_OCFP ,764,24,24,1,0,0,,22429D,62429D,ff,VL_ReductorDiag_SCFM ,764,24,24,1,0,0,,22429E,62429E,ff,VL_ReductorDiag_SCFP ,764,24,24,1,0,0,,22429F,62429F,ff,VL_VBattDiag_OVFM ,764,24,24,1,0,0,,224300,624300,ff,VL_VBattDiag_OVFP ,764,24,24,1,0,0,,224301,624301,ff,VL_VBattDiag_UVFM ,764,24,24,1,0,0,,224302,624302,ff,VL_VBattDiag_UVFP ,764,24,24,1,0,0,,224303,624303,ff,OH_ACCompForbidden,0:AC compressor activation not forbidden;1:AC compressor activation forbidden ,764,24,31,1,0,0,,224304,624304,ff,VL_RemoteEnable ,764,24,31,1,0,0,,224305,624305,ff,CL_WithHeatSeatFrontLeft,0:0d - Not configured;2:2d - With 2 relays high-low heating seats;1:1d - Without heating seat ,764,24,31,1,0,0,,224306,624306,ff,CL_WithHeatSeatFrontRight,0:0d - Not configured;2:2d - With 2 relays high-low heating seats B02E;1:1d - Without heating seat;3:3d - With 2 relays high-low heating seats L21B ,764,24,24,1,0,0,,224307,624307,ff,VL_HeatSeatFrontLeftHighOCFM ,764,24,24,1,0,0,,224308,624308,ff,VL_HeatSeatFrontLeftHighOCFP ,764,24,24,1,0,0,,224309,624309,ff,VL_HeatSeatFrontLeftHighSCFM ,764,24,24,1,0,0,,22430A,62430A,ff,VL_HeatSeatFrontLeftHighSCFP ,764,24,24,1,0,0,,22430B,62430B,ff,VL_HeatSeatFrontLeftLowOCFM ,764,24,24,1,0,0,,22430C,62430C,ff,VL_HeatSeatFrontLeftLowOCFP ,764,24,24,1,0,0,,22430D,62430D,ff,VL_HeatSeatFrontLeftLowSCFM ,764,24,24,1,0,0,,22430E,62430E,ff,VL_HeatSeatFrontLeftLowSCFP ,764,24,24,1,0,0,,22430F,62430F,ff,VL_HeatSeatFrontRightHighOCFM ,764,24,24,1,0,0,,224310,624310,ff,VL_HeatSeatFrontRightHighOCFP ,764,24,24,1,0,0,,224311,624311,ff,VL_HeatSeatFrontRightHighSCFM ,764,24,24,1,0,0,,224312,624312,ff,VL_HeatSeatFrontRightHighSCFP ,764,24,24,1,0,0,,224313,624313,ff,VL_HeatSeatFrontRightLowOCFM ,764,24,24,1,0,0,,224314,624314,ff,VL_HeatSeatFrontRightLowOCFP ,764,24,24,1,0,0,,224315,624315,ff,VL_HeatSeatFrontRightLowSCFM ,764,24,24,1,0,0,,224316,624316,ff,VL_HeatSeatFrontRightLowSCFP ,764,24,24,1,0,0,,224317,624317,ff,VL_FeetVentActrDiag_OCFM ,764,24,24,1,0,0,,224318,624318,ff,VL_FeetVentActrDiag_OCFP ,764,24,24,1,0,0,,224319,624319,ff,VL_FeetVentActrDiag_SCFM ,764,24,24,1,0,0,,22431A,62431A,ff,VL_FeetVentActrDiag_SCFP ,764,24,24,1,0,0,,22431B,62431B,ff,VL_LeftMixActrDiag_OCFM ,764,24,24,1,0,0,,22431C,62431C,ff,VL_LeftMixActrDiag_OCFP ,764,24,24,1,0,0,,22431D,62431D,ff,VL_LeftMixActrDiag_SCFM ,764,24,24,1,0,0,,22431E,62431E,ff,VL_LeftMixActrDiag_SCFP ,764,24,24,1,0,0,,22431F,62431F,ff,VL_RecyActrDiag_OCFM ,764,24,24,1,0,0,,224320,624320,ff,VL_RecyActrDiag_OCFP ,764,24,24,1,0,0,,224321,624321,ff,VL_RecyActrDiag_SCFM ,764,24,24,1,0,0,,224322,624322,ff,VL_RecyActrDiag_SCFP ,764,24,24,1,0,0,,224323,624323,ff,VL_RightMixActrDiag_OCFM ,764,24,24,1,0,0,,224324,624324,ff,VL_RightMixActrDiag_OCFP ,764,24,24,1,0,0,,224325,624325,ff,VL_RightMixActrDiag_SCFM ,764,24,24,1,0,0,,224326,624326,ff,VL_RightMixActrDiag_SCFP ,764,24,24,1,0,0,,224327,624327,ff,VL_HotSourceTempDiag_OCFM ,764,24,24,1,0,0,,224328,624328,ff,VL_HotSourceTempDiag_OCFP ,764,24,24,1,0,0,,224329,624329,ff,VL_HotSourceTempDiag_SCFM ,764,24,24,1,0,0,,22432A,62432A,ff,VL_HotSourceTempDiag_SCFP ,764,24,24,1,0,0,,22432B,62432B,ff,OLW_AirQualitySupply ,764,24,24,1,0,0,,22432C,62432C,ff,IH_ACCompValveDefault ,764,24,31,1,0,0,%,22432D,62432D,ff,IH_AlternatorLoad ,764,24,24,1,0,0,,22432E,62432E,ff,IH_AutocalIndic ,764,24,31,1,0,0,,22432F,62432F,ff,IH_BatVEShutdownAlert,0:Unavailable;1:No +BatVE shutdown alert;2:+BatVE shutdown alert ,764,24,31,1,0,0,,224330,624330,ff,IH_BlowerLevelReq ,764,24,31,1,0,0,,224331,624331,ff,IH_DistRotaryReq ,764,24,31,1,0,0,,224332,624332,ff,IH_LeftTempReq ,764,24,31,1,0,0,,224333,624333,ff,IH_RightTempReq ,764,24,24,1,0,0,,224334,624334,ff,IH_StopAutoForClim ,764,24,31,1,0,0,,224335,624335,ff,IH_UnballastRequest ,764,24,31,1,0,0,km/h,224336,624336,ff,IH_VehicleSpeed ,764,24,31,1,0,0,,224337,624337,ff,OH_BlowerLevelDisplay ,764,24,31,1,0,0,,224338,624338,ff,OH_ClimFlowDistrDisplay ,764,24,31,1,0,0,,224339,624339,ff,OH_LeftTempDisplay ,764,24,24,1,0,0,,22433B,62433B,ff,OH_SteeringHeaterReq ,764,24,24,1,0,0,,22433C,62433C,ff,VL_SteeringHeaterOCFM ,764,24,24,1,0,0,,22433D,62433D,ff,VL_SteeringHeaterOCFP ,764,24,24,1,0,0,,22433E,62433E,ff,VL_SteeringHeaterSCFP ,764,24,24,1,0,0,,22433F,62433F,ff,VL_SteeringHeaterSCFM ,764,24,24,1,0,0,,224340,624340,ff,OH_FrontDefrostEngaged ,764,24,31,1,0,0,,224341,624341,ff,IH_PTCNumberThermalStatus ,764,24,24,1,0,0,,224342,624342,ff,IH_RearDefrostEngaged ,764,24,24,1,0,0,,224343,624343,ff,IH_PreCondStateForClim ,764,24,39,1,0,0,min,224344,624344,ff,IH_RESPreSoak_NextDriverArrivalTime ,764,24,31,1,0,0,,224345,624345,ff,IH_WiperState ,764,24,31,1,0,0,,224346,624346,ff,IH_EngineStatusForClim ,764,24,39,.25,200,1,°C,224347,624347,ff,IH_ExternalTemperature ,764,24,31,1,0,0,,224348,624348,ff,CL_WithSteeringHeater,3:3d - With relay output with switch;0:0d - Not configured;2:2d - With relay output without switch;1:1d - Without steering heater ,764,24,31,1,0,0,,224349,624349,ff,VL_GADEForClim,0:0d - Sleep or crank fault;1:1d - AutoACC fault;2:2d - All fault - disable DiagMuxDTC;7:7d - Unavailable;3:3d - All fault - enable DiagMuxDTC ,764,24,31,1,0,0,min,22434A,62434A,ff,CH_RearDefTimer ,764,24,39,.01,0,2,km/h,22434B,62434B,ff,IH_AllianceVehicleSpeed ,764,24,31,1,0,0,,22434C,62434C,ff,CH_WithCoolantTempSensor,0:0d - Not configured;2:2d - With Coolant Temp Sensor on engine;1:1d - Without engine coolant temp sensor;3:3d - With Coolant Temp Sensor on heater core input;4:4d - WithWith Coolant Temp Sensor on boiler output ,764,24,31,1,0,0,,22434D,62434D,ff,IH_BCM_PresoakRequest,0:Immediat Presoak Request;1:Programmed Presoak Request;3:Unavailable;2:Presoak Stop ,764,24,31,1,0,0,,22434E,62434E,ff,IH_AirCondEcoActivationRequest2,0:No request;1:Eco activation request;2:Eco deactivation request;3:Reset request ,764,24,31,1,0,0,,22434F,62434F,ff,IH_ISS_EcoActivationRequest2,0:No request;1:Eco activation request;2:Eco deactivation request;3:Reset request ,764,24,39,1,0,0,min,224350,624350,ff,IH_LeftTimeBeforeRES ,764,24,24,1,0,0,,224351,624351,ff,OH_ClimAT_EcoCustomAllowed ,764,24,24,1,0,0,,224352,624352,ff,OH_HVAC_ZEVmodeICEngineStartRequest ,764,24,31,1,0,0,,224353,624353,ff,OH_SailingIdleForbidden ,764,24,31,1,0,0,,224354,624354,ff,OH_ePTCInterlockHVconnector ,764,24,31,1,0,0,,224355,624355,ff,OH_eCompInterlockHVconnector ,764,24,24,1,0,0,,224356,624356,ff,OH_HVCompStatus ,764,24,31,1,0,0,,224357,624357,ff,OH_CoolingLevelRequest ,764,24,31,.5,-32,1,°C,224358,624358,ff,IH_PreSoakTempValue_MMI ,764,24,31,1,0,0,°C,224359,624359,ff,IH_HVBatteryWaterTempSetPoint ,764,24,31,1,50,0,°C,22435A,62435A,ff,IH_HVBatteryCoolingLoopTemperature ,764,24,31,1,0,0,°C,22435B,62435B,ff,IH_WaterHeaterPowerTemperature ,764,24,24,1,0,0,,22435C,62435C,ff,IH_WaterHeaterLoopModeStatus,0:Large Loop with ICE Engine;1:Short loop without ICE Engine ,764,24,24,1,0,0,,22435D,62435D,ff,IH_HVPTC_ON_permission,0:High voltage heater (PTC) forbidden;1:High voltage heater (PTC) authorization ,764,24,31,1,0,0,,22435E,62435E,ff,IH_eACinsulationAuthorization,0:eAC not allowed;1:eAC forced insulation mode;2:eAC nominal mode allowed;3:Not used ,764,24,24,1,0,0,,22435F,62435F,ff,OH_eACinsulationConsolidationReq,0:No request;1:eAC authorization requested ,764,24,31,.5,-32,1,°C,224360,624360,ff,OH_CabinTempTargetValue ,764,24,31,1,40,0,°C,224361,624361,ff,OH_CabinTempCurrentValue ,764,24,31,1,0,0,,224362,624362,ff,OH_HVeACComp_FaultType,0:No failure and eAC ON;1:No failure and eAC OFF;2:Downgraded mode for eAC;3:Failure mode for eAC;4:eAC to be Change;5:Not used;7:Unavailable ,764,24,31,1,0,0,,224363,624363,ff,OH_HVPTC_FaultType,0:No failure and HV PTC ON;1:No failure and HV PTC OFF;2:Downgraded mode for HV PTC;3:Failure mode for HV PTC;4:To Change HV PTC;5:Not used;7:Unavailable ,764,24,31,1,0,0,,224364,624364,ff,IH_IoniserAutoLaunchReq2,0:No request;1:Activation request;2:Deactivation request;3:Reset request ,764,24,31,1,0,0,,224365,624365,ff,IH_PreSoakTempReq_MMI,0:No request;1:Change cabin temperature target;2:Reset cabin temperature target requested;3:Not used ,764,24,31,1,0,0,,224366,624366,ff,IH_AirbagCrashOrder,0:Crash not detected;15:Medium crash;31:Violent crash;47:Rear crash ,764,24,31,1,0,0,,224367,624367,ff,IH_HVBatCondPriorityLevel,0:Unavailable;1:Priority 1;2:Priority 2;3:Priority 3;4:Priority 4;5:Priority 5;6:Priority 6;7:Priority 7;8:Priority 8;9:Not used ,764,24,39,.1,400,1,°C,224368,624368,ff,OH_EvaporatorTempSetPoint ,764,24,39,.1,0,1,bar,224369,624369,ff,OH_ACHighPressureSensor ,764,24,39,1,0,0,rpm,22436A,62436A,ff,OH_HPM_CompressorSpeedHPStatus ,764,24,31,5,0,0,%,22436B,62436B,ff,OH_EngineFanSpeed ,764,24,31,1,40,0,°C,22436C,62436C,ff,OH_ExternalTemp ,764,24,39,.1,400,1,°C,22436D,62436D,ff,OH_HotSourceTempMeasure ,764,24,31,1,0,0,%,22436E,62436E,ff,OH_BlowerSpeedStatus ,764,24,24,1,0,0,,22436F,62436F,ff,IH_HVPTCElectronicDefect,0:No defect;1:electronic defect ,764,24,24,1,0,0,,224370,624370,ff,IH_HVPTCOverTemperature,0:Normal Temperature;1:Over temperature ,764,24,24,1,0,0,,224371,624371,ff,IH_HVPTCOverUnderVoltage,0:Normal Voltage;1:Over/Under Voltage ,764,24,24,1,0,0,,224372,624372,ff,IH_HVPTCHeaterCircuit1Off,0:Normal running;1:heater circuit 1 permanent off ,764,24,24,1,0,0,,224373,624373,ff,IH_HVPTCHeaterCircuit2Off,0:Normal running;1:heater circuit 2 permanent off ,764,24,24,1,0,0,,224374,624374,ff,IH_HVPTCHeaterCircuit3Off,0:Normal running;1:heater circuit 3 permanent off ,764,24,24,1,0,0,,224375,624375,ff,IH_HVPTCHeaterCircuit4Off,0:Normal running;1:heater circuit 4 permanent off ,764,24,31,.2,0,1,,224376,624376,ff,IH_HVPTCCurrentConsumption ,764,24,31,1,0,0,,224377,624377,ff,IH_HVPTCInterlock,0:unavailable;1:open;2:closed;3:Sensor Unavailable ,764,24,31,1,0,0,,224378,624378,ff,ILB_FP_ControlPanelType ,764,24,31,1,0,0,,224379,624379,ff,VH_AirQualityLevel ,764,24,31,1,0,0,,22437A,62437A,ff,VH_ClearnessCoolingGMPCondReq ,764,24,31,1,0,0,,22437B,62437B,ff,VH_ClearnessHeatingGMPCondReq ,764,24,24,1,0,0,,22437C,62437C,ff,VH_ClearnessSailingIdleRestartReq ,764,24,24,1,0,0,,22437D,62437D,ff,VH_ClearnessSaSRestartReq ,764,24,31,1,0,0,,22437E,62437E,ff,VH_ComfortCoolingGMPCondReq ,764,24,31,1,0,0,,22437F,62437F,ff,VH_ComfortHeatingGMPCondReq ,764,24,31,1,0,0,%,224380,624380,ff,VH_ComfortPrct_DefrostReq ,764,24,31,1,0,0,%,224381,624381,ff,VH_ComfortPrct_FrontVentReq ,764,24,24,1,0,0,,224382,624382,ff,VH_ComfortSaSRestartReq ,764,24,31,1,0,0,,224383,624383,ff,VH_CoolingGMPCondNeed ,764,24,31,1,0,0,%,224384,624384,ff,VH_DeMistingPrct_DefrostReq ,764,24,31,1,0,0,%,224385,624385,ff,VH_DeMistingPrct_FrontVentReq ,764,24,24,1,0,0,,224386,624386,ff,VH_DeMistingSaSRestartReq ,764,24,39,.001953125,20480000000000,3,°C,224387,624387,ff,VH_DriverAirTempNeed ,764,24,39,.305175781256104,0,1,,224388,624388,ff,VH_DriverEfficiencyNeed ,764,24,31,1,0,0,,224389,624389,ff,VH_FragranceAirPurifierNeed ,764,24,31,1,0,0,,22438A,62438A,ff,VH_FragranceMode ,764,24,31,4,0,0,,22438B,62438B,ff,VH_FrontAirFlow ,764,24,31,4,0,0,,22438C,62438C,ff,VH_FrontAirFlowNeed ,764,24,31,1,0,0,%,22438D,62438D,ff,VH_FrontAQSRecyReq ,764,24,31,1,0,0,%,22438E,62438E,ff,VH_FrontAutoRecyReq ,764,24,39,.001953125,20480000000000,3,°C,22438F,62438F,ff,VH_FrontBlowAirTemp ,764,24,31,4,0,0,,224390,624390,ff,VH_FrontClearnessAirFlowReq ,764,24,39,.001953125,20480000000000,3,°C,224391,624391,ff,VH_FrontClearnessAirTempReq ,764,24,24,1,0,0,,224392,624392,ff,VH_FrontClearnessDefrostReq ,764,24,31,1,0,0,%,224393,624393,ff,VH_FrontClearnessRecyReq ,764,24,24,1,0,0,,224394,624394,ff,VH_FrontColdSourceNeed ,764,24,39,.001953125,20480000000000,3,°C,224395,624395,ff,VH_FrontColdSourceTempNeed ,764,24,31,4,0,0,,224396,624396,ff,VH_FrontComfortAirFlowReq ,764,24,39,.001953125,20480000000000,3,°C,224397,624397,ff,VH_FrontComfortCAMANAirTempReq ,764,24,24,1,0,0,,224398,624398,ff,VH_FrontComfortColdSourceReq ,764,24,39,.001953125,20480000000000,3,°C,224399,624399,ff,VH_FrontComfortColdSourceTempReq ,764,24,39,.001953125,20480000000000,3,°C,22439A,62439A,ff,VH_FrontComfortDriverAirTempReq ,764,24,24,1,0,0,,22439B,62439B,ff,VH_FrontComfortHotSourceReq ,764,24,39,.001953125,20480000000000,3,°C,22439C,62439C,ff,VH_FrontComfortHotSourceTempReq ,764,24,39,.001953125,20480000000000,3,°C,22439D,62439D,ff,VH_FrontComfortPassAirTempReq ,764,24,24,1,0,0,,22439E,62439E,ff,VH_FrontDefrostNeed ,764,24,31,4,0,0,,22439F,62439F,ff,VH_FrontDeMistingAirFlowReq ,764,24,24,1,0,0,,2243A0,6243A0,ff,VH_FrontDeMistingColdSourceReq ,764,24,39,.001953125,20480000000000,3,°C,2243A1,6243A1,ff,VH_FrontDeMistingColdSourceTempReq ,764,24,24,1,0,0,,2243A2,6243A2,ff,VH_FrontDeMistingRecyInhibReq ,764,24,24,1,0,0,,2243A3,6243A3,ff,VH_FrontHotSourceNeed ,764,24,31,1,40,0,°C,2243A4,6243A4,ff,VH_FrontHotSourceTemp ,764,24,39,.001953125,20480000000000,3,°C,2243A5,6243A5,ff,VH_FrontHotSourceTempNeed ,764,24,39,.001953125,20480000000000,3,°C,2243A6,6243A6,ff,VH_FrontIncarAirTemp ,764,24,31,4,0,0,,2243A7,6243A7,ff,VH_FrontManualAirFlowReq ,764,24,31,4,0,0,,2243A8,6243A8,ff,VH_FrontPCondAirFlowReq ,764,24,31,1,0,0,%,2243A9,6243A9,ff,VH_FrontPreCondRecyReq ,764,24,31,1,0,0,%,2243AA,6243AA,ff,VH_FrontRecyclingNeed ,764,24,31,1,0,0,%,2243AB,6243AB,ff,VH_FrontStopRecyReq ,764,24,31,4,0,0,,2243AC,6243AC,ff,VH_FrontVentAirFlow ,764,24,31,1,0,0,,2243AD,6243AD,ff,VH_GeneralMode ,764,24,31,1,0,0,,2243AE,6243AE,ff,VH_HeatingGMPCondNeed ,764,24,39,.001953125,20480000000000,3,°C,2243AF,6243AF,ff,VH_InitTint ,764,24,39,.001953125,20480000000000,3,°C,2243B0,6243B0,ff,VH_IntakeAirTemp ,764,24,31,1,0,0,,2243B1,6243B1,ff,VH_IoniserAirPurifierNeed ,764,24,31,1,0,0,,2243B2,6243B2,ff,VH_IoniserAutoLaunchMode ,764,24,31,1,0,0,,2243B3,6243B3,ff,VH_IoniserMode ,764,24,31,1,0,0,%,2243B4,6243B4,ff,VH_ManualPrct_DefrostReq ,764,24,31,1,0,0,%,2243B5,6243B5,ff,VH_ManualPrct_FrontVentReq ,764,24,39,.001953125,20480000000000,3,°C,2243B6,6243B6,ff,VH_Misting ,764,24,31,1,0,0,,2243B7,6243B7,ff,VH_MMIState ,764,24,39,.001953125,20480000000000,3,°C,2243B8,6243B8,ff,VH_PassAirTempNeed ,764,24,39,.305175781256104,0,1,,2243B9,6243B9,ff,VH_PassEfficiencyNeed ,764,24,31,1,0,0,%,2243BA,6243BA,ff,VH_Prct_FrontVentNeed ,764,24,31,1,0,0,%,2243BB,6243BB,ff,VH_PreCondPrct_DefrostReq ,764,24,31,1,0,0,%,2243BC,6243BC,ff,VH_PreCondPrct_FrontVentReq ,764,24,31,4,0,0,,2243BD,6243BD,ff,VH_RearAirFlow ,764,24,24,1,0,0,,2243BE,6243BE,ff,VH_RearClearnessDefrostReq ,764,24,24,1,0,0,,2243BF,6243BF,ff,VH_RearDefrostNeed ,764,24,24,1,0,0,,2243C0,6243C0,ff,VH_RearPreCondDefrostReq ,764,24,31,1,0,0,,2243C1,6243C1,ff,VH_RegulationState ,764,24,31,1,0,0,,2243C2,6243C2,ff,VH_SailingIdleRestartNeed ,764,24,31,1,0,0,,2243C3,6243C3,ff,VH_SaSRestartNeed ,764,24,31,4,0,0,,2243C4,6243C4,ff,VH_FrontDefrostAirFlow ,764,24,24,1,0,0,,2243C5,6243C5,ff,VH_FrontPreCondDefrostReq ,764,24,24,1,0,0,,2243C6,6243C6,ff,ILW_AnalogInput_4 ,764,24,24,1,0,0,,2243C7,6243C7,ff,IH_SteeringHeaterPushToggle ,764,24,31,1,0,0,,2243C8,6243C8,ff,IH_RearBlowerLevelReq ,764,24,24,1,0,0,,2243C9,6243C9,ff,ILW_AnalogInput_5 ,764,24,24,1,0,0,,2243CA,6243CA,ff,VL_SpareBlowerControlDiag_OCFM ,764,24,24,1,0,0,,2243CB,6243CB,ff,VL_SpareBlowerControlDiag_OCFP ,764,24,24,1,0,0,,2243CC,6243CC,ff,VL_SpareBlowerControlDiag_SCFM ,764,24,24,1,0,0,,2243CD,6243CD,ff,VL_SpareBlowerControlDiag_SCFP ,764,24,31,1,0,0,%,2243CE,6243CE,ff,OH_RearBlowerReq ,764,24,24,1,0,0,,2243CF,6243CF,ff,OH_CabinCoolingEVReq ,764,24,24,1,0,0,,2243D0,6243D0,ff,OH_BatteryCoolingEVReq ,764,24,24,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchA ,764,25,25,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchB ,764,26,26,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchC ,764,27,27,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchD ,764,28,28,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchE ,764,29,29,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchF ,764,30,30,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchG ,764,31,31,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchH ,764,33,33,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchJ ,764,34,34,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchK ,764,35,35,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchL ,764,36,36,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchM ,764,37,37,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchN ,764,39,39,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchP ,764,41,41,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchR ,764,42,42,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchS ,764,43,43,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchT ,764,44,44,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchU ,764,45,45,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchV ,764,46,46,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchW ,764,47,47,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchX ,764,48,48,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchY ,764,49,49,1,0,0,,2243D1,6243D1,ff,ILB_FP_PuschToggle.ILB_FP_PuschToggle.SwitchZ ,764,24,31,1,0,0,,2243D2,6243D2,ff,CL_WithRearBlowerSwitch,0:0d - Not configured;2:2d - With rear blower bistable switch;1:1d - Without rear blower switch ,764,24,31,1,0,0,,2243D3,6243D3,ff,CL_WithRearBlowerOutput,0:0d - Not configured;2:2d - With rear blower output;1:1d - Without rear blower output ,764,24,31,1,0,0,,2243D4,6243D4,ff,CL_WithBlowerOutput,3:3d - With HVAC blower output type 2 - 35Hz PWM;0:0d - Not configured;2:2d - With HVAC blower output type 1 - 500Hz PWM;1:1d - Without HVAC blower output ,764,24,24,1,0,0,,2243D5,6243D5,ff,OH_EcompShutdownReq ,764,24,39,1,0,0,rpm,2243D6,6243D6,ff,OH_EcompSpeedReq ,764,24,55,.00012207,0,3,,2243D7,6243D7,1ff,VH_ECompSpeedSetPID ,764,24,39,1,0,0,rpm,2243D8,6243D8,ff,IH_EcompRealSpeed ,764,24,24,1,0,0,,2243D9,6243D9,ff,VH_ECompCycling ,764,24,24,1,0,0,,2243DA,6243DA,ff,VH_ECompInhibition ,764,24,31,1,0,0,,2243DB,6243DB,ff,IH_EcompStatus,0:Comp OFF;1:Comp ON;2:Comp degraded;3:Comp stopped;4:Comp shutdown;5:Comp out of range ,764,24,24,1,0,0,,2243DC,6243DC,ff,IH_COMPR_ON_permission ,764,24,24,1,0,0,,2243DE,6243DE,ff,VH_PressECompInhib ,764,24,24,1,0,0,,2243DF,6243DF,ff,VH_EvapECompInhib ,764,24,55,.00012207,0,3,rpm,2243E1,6243E1,1ff,VH_ECompAcousticLimRPMMax ,764,24,39,.5,0,1,,2243E2,6243E2,ff,VH_ECompHVPowerLim ,764,24,39,.5,0,1,,2243E3,6243E3,ff,VH_ECompTCPowerLim ,764,24,55,.00012207,0,3,rpm,2243E4,6243E4,1ff,VH_ECompPowerLimRPMMax ,764,24,31,1,0,0,,2243E6,6243E6,ff,VH_ECompInsulationConsolidationReq ,764,24,24,1,0,0,,2243E7,6243E7,ff,VH_HVPTCActivationCmd ,764,24,31,50,0,0,W,2243E8,6243E8,ff,OH_PTC_WattPowerRequest ,764,24,31,1,0,0,,2243E9,6243E9,ff,VH_HVPTCDefaultStatus,0:No Failure and HVPTC On;1:No Failure and HVPTC Off;2:Downgraded Mode for HVPTC;3:Failure Mode for HVPTC;4:To change HVPTC ,764,24,39,.5,20000,1,,2243EB,6243EB,ff,VH_HVPTCTCPowerLim ,764,24,39,.5,20000,1,,2243EC,6243EC,ff,VH_HVPTCHVPowerLim ,764,24,24,1,0,0,,2243ED,6243ED,ff,IH_HV_ePTC_FreezeRequest ,764,24,31,1,0,0,,224402,624402,ff,OH_ClimLoopMode,1:AC Mode;2:Deicing Mode;4:HeatPump Mode;6:Demisting Mode;7:Idle Mode ,764,24,39,.1,400,1,°C,224403,624403,ff,OH_HPM_CondDownstreamTempReq ,764,24,39,1,0,0,,224404,624404,ff,VH_ClimCompressorSpeedRpmRequest ,764,24,24,1,0,0,,224405,624405,ff,VH_HeatPumpInhibition ,764,24,31,1,0,0,,224406,624406,ff,OH_HPM_HeatingModeRequest ,764,24,31,1,0,0,,224409,624409,ff,IH_HPM_ClimLoopMode,0:Unavailable;1:AC Mode;2:AC deicing mode;3:AC to heat pump mode;4:Heat pump mode;5:Heat pump to AC mode;6:Not used;7:Idle mode ,764,24,39,1,0,0,rpm,22440A,62440A,ff,IH_HPM_ClimCompressorSpeedRPMRequest ,764,24,31,5,0,0,%,22440B,62440B,ff,IH_HPM_EngineFanSpeedRequestPWM ,764,24,39,.5,600,1,°C,22440C,62440C,ff,ILB_HPM_State_Sensor1_Status ,764,24,39,.5,800,1,°C,22440D,62440D,ff,ILB_HPM_State_Sensor2_Status ,764,24,31,1,0,0,,224411,624411,ff,IH_HPM_DeiceLoopRequest,1:DeiceLoopRequested;2:NoDeiceLoopRequested ,764,24,31,1,0,0,,224412,624412,ff,OH_HPM_DeiceVehicleRequest,0:NoDeice;4:DeiceRequested ,764,24,31,1,0,0,,224413,624413,ff,OH_HPM_DeicePermission,0:Unavailable;1:De-ice not permitted;2:De-ice permitted;3:Not Used ,764,24,31,1,0,0,,224414,624414,ff,VH_DeIcingAuthorisation ,764,24,31,1,0,0,,224417,624417,ff,OH_EngineWaterPumpRequest ,764,24,31,1,0,0,%,22441A,62441A,ff,IH_EngineFanSpeedStatus_PWM ,764,24,31,1,0,0,,22441C,62441C,ff,VH_HVBatConditionningMode,0:NoRequest;1:CoolCabinCoupleByAir;2:CoolBattCoupleByAir;3:CoolBattAloneByAir;4:CoolCabinCouple ,764,24,31,1,0,0,,224420,624420,ff,VH_VehicleTractionMode,0:Vehicle not in traction mode;1:Vehicle in charge;2:Vehicle in full electric mode;3:Vehicle in hybrid mode;4:Vehicle in thermic mode ,764,24,39,.001953125,20480000000000,3,,224421,624421,ff,VH_FrontColdSourceTemp ,764,24,39,.1,400,1,°C,224423,624423,ff,IH_HVBattEvapTempMeasure ,764,24,39,.1,400,1,°C,224424,624424,ff,IH_HVBattEvapTempSetPoint ,764,24,39,.0039063,102398689297,3,,224429,624429,ff,VH_FrontHotSourceTempBeforeHVPTC ,764,24,31,1,40,0,°C,22442A,62442A,ff,IH_HVbatteryTemperature ,764,24,24,1,0,0,,22442C,62442C,ff,IH_HeatLoopPumpStatus ,764,24,31,1,0,0,%,22442D,62442D,ff,IH_EngineWaterPumpStatus ,764,24,24,1,0,0,,224430,624430,ff,IH_ChargingPlugStatus ,764,24,31,1,40,0,°C,224432,624432,ff,IH_HeatLoopWaterTemp ,764,24,31,1,40,0,,224433,624433,ff,VH_EngineCoolantTemp ,764,24,31,50,0,0,W,224434,624434,ff,IH_InputPower_License ,764,24,39,.25,0,1,,224435,624435,ff,VH_HVPTCElecPower ,764,24,39,.25,0,1,,224436,624436,ff,VH_ECompElecPower ,764,24,24,1,0,0,,224437,624437,ff,OH_PowerSupplyMaintain ,764,24,31,1,0,0,,224438,624438,ff,IH_EEM_StaticPowerLimitationRequest ,764,24,31,1,0,0,,22443A,62443A,ff,VH_PreCondMode,0:No Presoak;1:Programmed Presoak;2:Immediat Presoak ,764,24,31,1,0,0,,22443C,62443C,ff,IH_HEVC_PresoakRequest,0:Immediate presoak request;1:Programmed presoak request;2:Presoak stop;3:Unavailable ,764,24,31,1,0,0,,22443E,62443E,ff,OH_PresoakProgDuration ,764,24,31,1,0,0,,224440,624440,ff,OH_PresoakActivationStatus,0:Presoak forbidden;1:No presoak in progress;2:Presoak in progress;3:Unavailable ,764,24,24,1,0,0,,224443,624443,ff,OH_AutoNormalIndic ,764,24,31,1,0,0,,224445,624445,ff,OH_RightTempDisplay ,764,24,39,1,40,0,,224446,624446,ff,VH_FrontComfortAirTempSetPoint ,764,24,31,1,0,0,,224447,624447,ff,OH_CoolingModeRequest ,764,24,31,1,0,0,,224448,624448,ff,IH_CI2_Interlock,0:Unavailable;1:Open;2:Closed;3:Sensor unavailable ,764,24,24,1,0,0,,224449,624449,ff,IH_ACleakageStatic ,764,24,24,1,0,0,,22444A,62444A,ff,IH_ACleakageDynamic ,764,24,24,1,0,0,,22444B,62444B,ff,VL_HPMSensor1Diag_OCFP ,764,24,24,1,0,0,,22444C,62444C,ff,VL_HPMSensor1Diag_OCFM ,764,24,24,1,0,0,,22444D,62444D,ff,VL_HPMSensor1Diag_SCFP ,764,24,24,1,0,0,,22444E,62444E,ff,VL_HPMSensor1Diag_SCFM ,764,24,24,1,0,0,,224450,624450,ff,VL_HPMSensor2Diag_OCFP ,764,24,24,1,0,0,,224451,624451,ff,VL_HPMSensor2Diag_OCFM ,764,24,24,1,0,0,,224453,624453,ff,VL_HPMSensor2Diag_SCFM ,764,24,24,1,0,0,,224454,624454,ff,VL_HPMSensor2Diag_SCFP ,764,24,24,1,0,0,,224455,624455,ff,VL_HPMValve1Diag_OCFM ,764,24,24,1,0,0,,224456,624456,ff,VL_HPMValve1Diag_SCFP ,764,24,24,1,0,0,,224457,624457,ff,VL_HPMValve1Diag_SCFM ,764,24,24,1,0,0,,224458,624458,ff,VL_HPMValve1Diag_SCPFP ,764,24,24,1,0,0,,224459,624459,ff,VL_HPMValve1Diag_SCPFM ,764,24,24,1,0,0,,22445A,62445A,ff,VL_HPMValve2Diag_OCFP ,764,24,24,1,0,0,,22445B,62445B,ff,VL_HPMValve2Diag_OCFM ,764,24,24,1,0,0,,22445C,62445C,ff,VL_HPMValve2Diag_SCFP ,764,24,24,1,0,0,,22445D,62445D,ff,VL_HPMValve2Diag_SCFM ,764,24,24,1,0,0,,22445E,62445E,ff,VL_HPMValve2Diag_SCPFP ,764,24,24,1,0,0,,224460,624460,ff,VL_HPMValve2Diag_SCPFM ,764,24,24,1,0,0,,224461,624461,ff,VL_PTCStatElectronicDefectErr_FP ,764,24,24,1,0,0,,224462,624462,ff,VL_PTCStatElectronicDefectErr_FM ,764,24,24,1,0,0,,224463,624463,ff,VL_PTCStatOverTemperature_CFFP ,764,24,24,1,0,0,,224464,624464,ff,VL_PTCStatOverTemperature_CFFM ,764,24,24,1,0,0,,224465,624465,ff,VL_PTCStatOverUndervoltage_UOVFP ,764,24,24,1,0,0,,224466,624466,ff,VL_PTCStatOverUndervoltage_UOVFM ,764,24,24,1,0,0,,224467,624467,ff,VL_PTCStatHeatercirc1off_CFFP ,764,24,24,1,0,0,,224468,624468,ff,VL_PTCStatHeatercirc1off_CFFM ,764,24,24,1,0,0,,224469,624469,ff,VL_PTCStatHeatercirc2off_CFFP ,764,24,24,1,0,0,,22446A,62446A,ff,VL_PTCStatHeatercirc2off_CFFM ,764,24,24,1,0,0,,22446B,62446B,ff,VL_PTCStatHeatercirc3off_CFFP ,764,24,24,1,0,0,,22446C,62446C,ff,VL_PTCStatHeatercirc3off_CFFM ,764,24,24,1,0,0,,22446D,62446D,ff,VL_PTCStatHeatercirc4off_CFFP ,764,24,24,1,0,0,,22446E,62446E,ff,VL_PTCStatHeatercirc4off_CFFM ,764,24,31,.1,0,1,V,22D001,62D001,ff,IH_Vbatt ,764,24,39,.01,0,2,,22D003,62D003,ff,IH_VSP ,764,24,279,1,0,0,,22DF01,62DF01,2ff,$DF01_DIDs Supported(0100h-01FFh) ,764,24,279,1,0,0,,22DF10,62DF10,2ff,$DF10_DIDs Supported(1000h-10FFh) ,764,24,279,1,0,0,,22DF11,62DF11,2ff,$DF11_DIDs Supported(1100h-11FFh) ,764,24,279,1,0,0,,22DF12,62DF12,2ff,$DF12_DIDs Supported(1200h-12FFh) ,764,24,279,1,0,0,,22DF13,62DF13,2ff,$DF13_DIDs Supported(1300h-13FFh) ,764,24,279,1,0,0,,22DF15,62DF15,2ff,$DF15_DIDs Supported(1500h-15FFh) ,764,24,279,1,0,0,,22DF20,62DF20,2ff,$DF20_DIDs Supported(2000h-20FFh) ,764,24,279,1,0,0,,22DF21,62DF21,2ff,$DF21_DIDs Supported(2100h-21FFh) ,764,24,279,1,0,0,,22DF22,62DF22,2ff,$DF22_DIDs Supported(2200h-22FFh) ,764,24,279,1,0,0,,22DF24,62DF24,2ff,$DF24_DIDs Supported(2400h-24FFh) ,764,24,279,1,0,0,,22DF25,62DF25,2ff,$DF25_DIDs Supported(2500h-25FFh) ,764,24,279,1,0,0,,22DF28,62DF28,2ff,$DF28_DIDs Supported(2800h-28FFh) ,764,24,279,1,0,0,,22DF29,62DF29,2ff,$DF29_DIDs Supported(2900h-29FFh) ,764,24,279,1,0,0,,22DF2C,62DF2C,2ff,$DF2C_DIDs Supported(2C00h-2CFFh) ,764,24,279,1,0,0,,22DF30,62DF30,2ff,$DF30_DIDs Supported(3000h-30FFh) ,764,24,279,1,0,0,,22DF31,62DF31,2ff,$DF31_DIDs Supported(3100h-31FFh) ,764,24,279,1,0,0,,22DF34,62DF34,2ff,$DF34_DIDs Supported(3400h-34FFh) ,764,24,279,1,0,0,,22DFDF,62DFDF,2ff,$DFDF_DIDs Supported(DF00h-DFFFh) ,764,24,279,1,0,0,,22DFEF,62DFEF,2ff,$DFEF_DIDs Supported(EF00h-EFFFh) ,764,24,279,1,0,0,,22DFF1,62DFF1,2ff,$DFF1_DIDs Supported(F100h-F1FFh) ,764,24,103,1,0,0,,22F012,62F012,2ff,OperationnalReference ,764,24,47,1,0,0,km,22F0D0,62F0D0,ff,VL_DistanceTotalizer ,764,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,764,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,764,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,764,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,764,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,764,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,764,24,103,1,0,0,,22F18E,62F18E,2ff,VehicleManufacturerKitAssemblyPartNumber ,764,24,159,1,0,0,,22F190,62F190,2ff,VIN ,764,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,764,24,231,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,764,24,79,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,764,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,764,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,764,24,39,.125,0,1,rpm,22F40C,62F40C,ff,IH_EngineRPM ,764,24,31,1,40,0,°C,22F467,62F467,ff,IH_EngineCoolantTemp ,764,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/HVAC_Tests.csv ================================================ 08,Bus signal 11,SC to ground 12,SC to battery 13,OC 14,OC or SC to ground 15,OC or SC to battery 16,voltage below threshold 17,voltage above threshold 24,bad frequency 49,internal failure 93,no operation 01,General Electrical Failure 02,General signal failure ================================================ FILE: app/src/main/assets/ZOE_Ph2/IDM_Dtcs.csv ================================================ 5B92,[C1B92]BRAKE CONTROL SYSTEM 5B93,[C1B93]ENGINE/HEV SYSTEM 5B94,[C1B94]TM SYSTEM 5B96,[C1B96]ADAS SYSTEM 5B98,[C1B98]ADAS SYSTEM 5BA0,[C1BA0]ADAS/CHASSIS CTRL BRAKE SYS 5BA1,[C1BA1]f_CAN_MSGCOUNT_FAIL[iCAN_RXID1C5] 5BA2,[C1BA2]STEERING ANGLE SENSOR 5BAB,[C1BAB]STOP LAMP SW 5BB4,[C1BB4]CONTROL MODULE 5BB5,[C1BB5]IGN POWER SUPPLY 5BC0,[C1BC0]FR WHEEL SENSOR 5BC1,[C1BC1]FL WHEEL SENSOR 5BC2,[C1BC2]RR WHEEL SENSOR 5BC3,[C1BC3]RL WHEEL SENSOR 5BC4,[C1BC4]DECEL G SENSOR 5BC5,[C1BC5]SIDE G SENSOR 5BC6,[C1BC6]PRESSURE SENSOR 5B80,Calibration not complete 5B81,Configuration not complete 5B97,[C1B97]BCM-CAN message counter failure. 5BA5,[C1BA5]CHASSIS CTRL ENGINE SYS DA30,ADAS SYSTEM E140,[U2140]ENGINE/HEV SYSTEM DA4E,[U1A4E]ENGINE/HEV SYSTEM DA3E,[U1A3E]ADAS SYSTEM DA3B,[U1A3B]MT SYSTEM DA36,[U1A36]BCM DA35,[U1A35] EPKB DA33,[U1A33]SONAR SYSTEM 5B95,EPKB C076,[U0076]CAN CHASSIS C078,[U0078]IC-CAN E143,ENGINE/HEV SYSTEM E154,NAVI SYSTEM E155,[U2155]EPB E15B,[U215B]USM E165,[U2165]SONAR SYSTEM E240,[E240] ENGINE/HEV SYSTEM E14F,[U214F]BCM E14E,[U214E]METER E148,[U2148]BRAKE CONTROL SYSTEM E141,[U2141]TM SYSTEM E252,[U2252]ADAS SYSTEM E243,[E243] ENGINE/HEV SYSTEM E265,[U2265]SONAR SYSTEM ================================================ FILE: app/src/main/assets/ZOE_Ph2/IDM_Fields.csv ================================================ ,700,0,0,1,0,0,,1000,5000,ff,StartDiagnosticSession ,700,16,31,1,0,0,ms,1001,5001,ff,SessionParameterRecord1_P2.max ,700,32,47,10,0,0,ms,1001,5001,ff,SessionParameterRecord_2_P2.max ,700,16,31,1,0,0,ms,1002,5002,ff,SessionParameterRecord1_P2.max ,700,32,47,10,0,0,ms,1002,5002,ff,SessionParameterRecord_2_P2.max ,700,16,31,1,0,0,ms,1003,5003,ff,SessionParameterRecord1_P2.max ,700,32,47,10,0,0,ms,1003,5003,ff,SessionParameterRecord_2_P2.max ,700,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,700,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,700,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,700,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,700,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,700,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,700,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety microC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,700,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,700,48,55,1,0,0,,1902FF,5902FF,ff,StatusOfDTC ,700,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,700,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,700,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,700,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,700,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,700,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,700,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,700,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,700,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,700,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,700,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,23424:Calibration not complete;23425:Configuration not complete;23442:[C1B92]BRAKE CONTROL SYSTEM;23443:[C1B93]ENGINE/HEV SYSTEM;23444:[C1B94]TM SYSTEM;23445:EPKB;23446:[C1B96]ADAS SYSTEM;23447:[C1B97]BCM-CAN message counter failure.;23448:[C1B98]ADAS SYSTEM;23456:[C1BA0]ADAS/CHASSIS CTRL BRAKE SYS;23457:[C1BA1]f_CAN_MSGCOUNT_FAIL[iCAN_RXID1C5];23458:[C1BA2]STEERING ANGLE SENSOR;23461:[C1BA5]CHASSIS CTRL ENGINE SYS;23467:[C1BAB]STOP LAMP SW;23476:[C1BB4]CONTROL MODULE;23477:[C1BB5]IGN POWER SUPPLY;23488:[C1BC0]FR WHEEL SENSOR;23489:[C1BC1]FL WHEEL SENSOR;23490:[C1BC2]RR WHEEL SENSOR;23491:[C1BC3]RL WHEEL SENSOR;23492:[C1BC4]DECEL G SENSOR;23493:[C1BC5]SIDE G SENSOR;23494:[C1BC6]PRESSURE SENSOR;49270:[U0076]CAN CHASSIS;49272:[U0078]IC-CAN;55856:ADAS SYSTEM;55859:[U1A33]SONAR SYSTEM;55861:[U1A35] EPKB;55862:[U1A36]BCM;55867:[U1A3B]MT SYSTEM;55870:[U1A3E]ADAS SYSTEM;55886:[U1A4E]ENGINE/HEV SYSTEM;57664:[U2140]ENGINE/HEV SYSTEM;57665:[U2141]TM SYSTEM;57667:ENGINE/HEV SYSTEM;57672:[U2148]BRAKE CONTROL SYSTEM;57678:[U214E]METER;57679:[U214F]BCM;57684:NAVI SYSTEM;57685:[U2155]EPB;57691:[U215B]USM;57701:[U2165]SONAR SYSTEM;57920:[E240] ENGINE/HEV SYSTEM;57923:[E243] ENGINE/HEV SYSTEM;57938:[U2252]ADAS SYSTEM;57957:[U2265]SONAR SYSTEM ,700,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety microC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature ,700,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,700,24,55,1,0,0,,220001,620001,4ff,DataRead.FFD_DTC LOCAL CODE ,700,24,39,.025,0,2,V,220100,620100,ff,Ignition Voltage.Ignition Voltage ,700,24,26,1,0,0,,220101,620101,ff,Control Module Malf and Gade.Gade,0:DiagMuxDTC is DISABLED(00h);1:DiagMuxDTC is DISABLED(01h);2:DiagMuxDTC is DISABLED(02h);3:DiagMuxDTC is ENABLED;4:Not Used(04h);5:Not Used(05h);6:Not Used(06h);7:Unavailable ,700,24,39,.01,0,2,,22010E,62010E,ff,Vehicle Speed ,700,24,39,4.16666666666667E-02,0,2,rpm,22010F,62010F,ff,FR Wheel Speed ,700,24,39,4.16666666666667E-02,0,2,rpm,220110,620110,ff,FL Wheel Speed ,700,24,39,4.16666666666667E-02,0,2,rpm,220111,620111,ff,RR Wheel Speed ,700,24,39,4.16666666666667E-02,0,2,rpm,220112,620112,ff,RL Wheel Speed ,700,24,39,.1,0,1,°,220113,620113,1ff,Steering Wheel Angle Value ,700,24,39,.1,0,1,°,220114,620114,1ff,Steering Wheel angle corrected value from VDC ,700,24,39,.001,0,3,g,220115,620115,1ff,Front and Rear G sesnor Value ,700,24,39,.001,0,3,g,220116,620116,1ff,Side G sensor Value ,700,24,39,.001,0,3,g,220117,620117,ff,Side G sensor corrected value ,700,24,39,.1,0,1,°/s,220118,620118,1ff,Yaw Rate Sensor Value ,700,24,39,.125,0,1,%,22011C,62011C,ff,Accelerator_RawPedal Value ,700,24,26,1,0,0,,22011D,62011D,ff,ETC_Electric Throttle control Status,0:NORMAL;1:INCORR;2:PREV;3:INPOSSI ,700,24,39,.5,0,1,N·m,22011E,62011E,1ff,Driver Requested Torque ,700,24,39,.5,0,1,N·m,22011F,62011F,1ff,Current Estimated Engine Torque Value ,700,24,28,1,0,0,,220120,620120,ff,Shift Position Signal,0:Off;1:P;2:R;3:N;4:D (A);5:S;6:L;7:B;8:1;9:2;10:3;11:4;12:5;13:6;14:NOT(0Eh);15:NOT(0Fh);16:M 1;17:M 2;18:M 3;19:M 4;20:M 5;21:M 6;22:M 7;23:M 8;24:A 1;25:A 2;26:A 3;27:A 4;28:A 5;29:A 6;30:NOT(1Eh);31:NOT(1Fh) ,700,24,27,1,0,0,,220121,620121,ff,GearBox Position,0:declutched at rest;1:1st gear;2:2nd gear;3:3rd gear;4:4th gear;5:5th gear;6:6th gear;7:7th gear;8:8th gear;9:Reverse;10:neutral or parking;11:CVT in continuous mode;12:Not used(0Ch);13:Not used(0Dh);14:Not used(0Eh);15:AT in limphome ,700,24,24,1,0,0,,220122,620122,ff,Brake SWich status.DataRead.BRAKE SWITCH 2,0:On;1:Off ,700,25,25,1,0,0,,220122,620122,ff,Brake SWich status.DataRead.BRAKE SWITCH 1,0:Off;1:On ,700,24,24,1,0,0,,220123,620123,ff,Stop Lamp Swhich,0:brake not active;1:brake active ,700,24,39,1,0,0,bar,220124,620124,1ff,Brake Fluide Pressure ,700,24,24,1,0,0,,220125,620125,ff,ABS Operating Condition.ABS Regulation Status,0:ABS not in regulation;1:ABS In regulation ,700,25,25,1,0,0,,220125,620125,ff,ABS Operating Condition.ABS Failure Status,0:no ABS malfunction;1:ABS malfunction ,700,24,24,1,0,0,,220126,620126,ff,TCS Operating Condition.TCS Regulation Status,0:INACT;1:ACTIVE ,700,25,25,1,0,0,,220126,620126,ff,TCS Operating Condition.TCS Failure Status,0:no TCS(ASR) malfunction;1:TCS(ASR) malfunction ,700,24,24,1,0,0,,220127,620127,ff,VDC Operating Condition.VDC Regulation Status,0: no VDC(AYC) regulation;1: VDC(AYC) in regulation ,700,25,25,1,0,0,,220127,620127,ff,VDC Operating Condition.VDC Failure Status,0: no VDC(ESP) malfunction;1: VDC(ESP) malfunction ,700,26,26,1,0,0,,220127,620127,ff,VDC Operating Condition.VDC Activation Status,0: VDC(ESP) available;1: VDC(ESP) disabled by the driver ,700,24,39,1,0,0,,220128,620128,ff,DataRead.0128 ,700,24,39,.1,0,1,°,220130,620130,1ff,DataRead.0130 ,700,24,39,.0625,0,2,km/h,220131,620131,ff,DataRead.0131_004_ui16_AVDC_VehicleSpeed ,700,24,39,.0625,0,2,km/h,220132,620132,ff,DataRead.0132_004_vAUC_VWFL ,700,24,39,.0625,0,2,km/h,220133,620133,ff,DataRead.0133_004_vAUC_VWFR ,700,24,39,.0625,0,2,km/h,220134,620134,ff,DataRead.0134_004_vAUC_VWRL ,700,24,39,.0625,0,2,km/h,220135,620135,ff,DataRead.0135_004_vAUC_VWRR ,700,24,39,.00015625,0,3,,220136,620136,ff,DataRead.0136_004_vAUC_TMRATIO ,700,24,31,1,0,0,bar,220137,620137,ff,DataRead.0137_004_TBD ,700,24,39,.05,0,2,bar,220139,620139,ff,DataRead.0139_004_ui16_CBA_BRAKE_OUT ,700,24,39,.5,0,1,N·m,22013B,62013B,1ff,DataRead.013B_004_si16_AVDC_Moment_OUT ,700,24,39,.25,0,1,N·m,22013C,62013C,1ff,DataRead.013C_004_si16_AUC_Moment_OUT ,700,24,39,.5,0,1,N·m,22013D,62013D,1ff,DataRead.013D_004_si16_YLE_ITS_Target_Yawmoment ,700,24,39,.05,0,2,bar,22013E,62013E,ff,DataRead.013E_004_ui16_BSB_BRAKE_OUT ,700,24,39,.00390625,0,3,m/s²,22013F,62013F,1ff,DataRead.013F_004_si16_BSB_EST_ZG ,700,25,25,1,0,0,,220170,620170,ff,DCMC_CBA_AUC.DataRead.0170._004_bit6_f_DCMC_CBA_B_req,0:NOT ACTIVATE;1:ACTIVATE ,700,26,26,1,0,0,,220170,620170,ff,DCMC_CBA_AUC.DataRead.0170._004_bit5_f_DCMC_CBA_A_req,0:NOT ACTIVATE;1:ACTIVATE ,700,27,27,1,0,0,,220170,620170,ff,DCMC_CBA_AUC.DataRead.0170._004_bit4_f_DCMC_AUC_req,0:NOT ACTIVATE;1:ACTIVATE ,700,24,25,1,0,0,,220171,620171,ff,DCMC_BrakeHold,1:ACTIVATE;0:NOT ACTIVATE;2:RELEASED ,700,24,24,1,0,0,,220172,620172,ff,TBD,0:NOT ACTIVATE;1:ACTIVATE ,700,24,25,1,0,0,,220173,620173,ff,DCMC_FL_FR Tire Brake request effect.DataRead.0173_004_bit6_ui8_DCMC_FL_Tire_out,0:Default display;1:Effect 1;2:Effect 2;3:Effect 3 ,700,26,27,1,0,0,,220173,620173,ff,DCMC_FL_FR Tire Brake request effect.DataRead.0173_004_bit4_ui8_DCMC_FR_Tire_out,0:Default display;1:Effect 1;2:Effect 2;3:Effect 3 ,700,24,25,1,0,0,,220174,620174,ff,DCMC_RL_RR Tire Brake request effect.DataRead.0174_004_bit6_ui8_DCMC_RL_Tire_out,2:Effect 2;1:Effect 1;0:Default display;3:Effect 3 ,700,26,27,1,0,0,,220174,620174,ff,DCMC_RL_RR Tire Brake request effect.DataRead.0174_004_bit4_ui8_DCMC_RR_Tire_out,2:Effect 2;1:Effect 1;0:Default display;3:Effect 3 ,700,24,25,1,0,0,,220175,620175,ff,DCMC Car Effect,0:Default display;1:Effect 1;2:Effect 2;3:Effect 3 ,700,24,26,1,0,0,,220176,620176,ff,TBD_DCMC_Int,0:No interrupt request;1:Brake Hold activated;2:Brake Hold activated (assist start of vehicle);3:HDC activated ,700,24,25,1,0,0,,220177,620177,ff,DCMC_Turn_Effect,2:Right turn effect;1:Left turn effect;0:Default display;3:not used ,700,26,26,1,0,0,,22017A,62017A,ff,ASA Display Request,0:NO DISP REQ;1:DISP REQ ,700,24,24,1,0,0,,22017C,62017C,ff,YLE_ADA_BSB Operation Status.ADA Operation Status,0:NOT ACTIVATE;1:ACTIVATE ,700,25,25,1,0,0,,22017C,62017C,ff,YLE_ADA_BSB Operation Status.YLE Operation Status,0:NOT ACTIVATE;1:ACTIVATE ,700,26,26,1,0,0,,22017C,62017C,ff,YLE_ADA_BSB Operation Status.BSB Operation Status,0:NOT ACTIVATE;1:ACTIVATE ,700,27,27,1,0,0,,22017C,62017C,ff,YLE_ADA_BSB Operation Status.BSB Display Status on the Meter,0:NOT ACTIVATE;1:ACTIVATE ,700,24,24,1,0,0,,22017D,62017D,ff,TBD_DCMC_HDC.f_DCMC_HDC_disp,0:NO DISP REQ;1:DISP REQ ,700,25,26,1,0,0,,22017D,62017D,ff,TBD_DCMC_HDC._DCMC_BrakeHold_disp,1:ACTIVATE;0:NOT ACTIVATE;2:RELEASED ,700,24,24,1,0,0,,220180,620180,ff,CVT Enable,0:ADA imPossible;1:ADA possible ,700,24,39,.0001,0,3,,220181,620181,ff,DataRead.0181_004_ui16_ADA_rel_targetxg ,700,24,39,.0001,0,3,,220182,620182,ff,DataRead.0182_004_ui16_ADA_abs_targetxg ,700,24,39,.1,0,1,,220183,620183,ff,DataRead.0183_004_ui16_ADA_slipratio ,700,24,24,1,0,0,,220184,620184,ff,ASA_ADA.DataRead.0184_004_bit7_ui8_DCC_ASA_SW,0:Off;1:On ,700,25,25,1,0,0,,220184,620184,ff,ASA_ADA.DataRead.0184_004_bit6_ui8_DCC_ADA_SW,0:Off;1:On ,700,24,24,1,0,0,,220303,620303,ff,CBA.DataRead.0303_004_bit7_f_CBA_brk_OutputRequest,0:No Request;1:Request ,700,25,25,1,0,0,,220303,620303,ff,CBA.DataRead.0303_004_bit6_f_CBA_apo_OutputRequest,0:No Request;1:Request ,700,26,26,1,0,0,,220303,620303,ff,CBA.DataRead.0303_004_bit5_f_CBA_OutputTerminate,0:Controll;1:Terminate ,700,27,27,1,0,0,,220303,620303,ff,CBA.DataRead.0303_004_bit4_f_CBA_WarningRequest,0:W/L OFF;1:W/L ON ,700,28,28,1,0,0,,220303,620303,ff,CBA.DataRead.0303_004_bit3_f_AVDC_OutputRequest,0:No Request;1:Request ,700,29,29,1,0,0,,220303,620303,ff,CBA.DataRead.0303_004_bit2_f_AVDC_OutputTerminate,0:Controll;1:Terminate ,700,30,30,1,0,0,,220303,620303,ff,CBA.DataRead.0303_004_bit1_f_AVDC_WarningRequest,0:W/L OFF;1:W/L ON ,700,24,24,1,0,0,,220304,620304,ff,AUC_YLE.DataRead.0304_004_bit7_f_AUC_OutputRequest,0:No Request;1:Request ,700,25,25,1,0,0,,220304,620304,ff,AUC_YLE.DataRead.0304_004_bit6_f_AUC_OutputTerminate,0:Controll;1:Terminate ,700,26,26,1,0,0,,220304,620304,ff,AUC_YLE.DataRead.0304_004_bit5_f_AUC_WarningRequest,0:W/L OFF;1:W/L ON ,700,28,28,1,0,0,,220304,620304,ff,AUC_YLE.DataRead.0304_004_bit3_f_YLE_OutputRequest,0:No Request;1:Request ,700,29,29,1,0,0,,220304,620304,ff,AUC_YLE.DataRead.0304_004_bit2_f_YLE_OutputTerminate,0:Controll;1:Terminate ,700,30,30,1,0,0,,220304,620304,ff,AUC_YLE.DataRead.0304_004_bit1_f_YLE_WarningRequest,0:W/L OFF;1:W/L ON ,700,24,24,1,0,0,,22030A,62030A,ff,ADA.f_ADA_abs_OutputRequest,0:No Request;1:Request ,700,25,25,1,0,0,,22030A,62030A,ff,ADA.f_ADA_rel_OutputRequest,0:No Request;1:Request ,700,26,26,1,0,0,,22030A,62030A,ff,ADA.f_ADA_OutputTerminate,0:Controll;1:Terminate ,700,27,27,1,0,0,,22030A,62030A,ff,ADA.f_ADA_WarningRequest,0:W/L OFF;1:W/L ON ,700,24,24,1,0,0,,22030B,62030B,ff,SSA.f_SSA_OutputRequest,0:No Request;1:Request ,700,25,25,1,0,0,,22030B,62030B,ff,SSA.f_SSA_OutputTerminate,0:Controll;1:Terminate ,700,26,26,1,0,0,,22030B,62030B,ff,SSA.f_SSA_WarningRequest,0:W/L OFF;1:W/L ON ,700,27,27,1,0,0,,220400,620400,ff,DataRead.Driver_Seat_Belt_state,0:SB unfastened;1:SB fastened ,700,26,26,1,0,0,,220401,620401,ff,TBD_SSA_Inhibit.fSSA_RX_SSA_INHIBIT_VDC,0:SSA not inhibited;1:SSA inhibited ,700,27,27,1,0,0,,220401,620401,ff,TBD_SSA_Inhibit.fSSA_RX_ON_OFFSW,0:SSA_OFF;1:SSA_ON ,700,28,28,1,0,0,,220401,620401,ff,TBD_SSA_Inhibit.fSSA_RX_STEEP_SLOPE,0:Slow gradient;1:Steep gradient ,700,29,29,1,0,0,,220401,620401,ff,TBD_SSA_Inhibit.f_CAN_EPB_CTRLREQ_BY_VDC,0:No request;1:Apply request ,700,30,30,1,0,0,,220401,620401,ff,TBD_SSA_Inhibit.fSSA_RX_IDMFAIL_BY_VDC,0:normal;1:Abnormal ,700,24,24,1,0,0,,220402,620402,ff,EPB_SSA status_TBD.DataRead.SSA_EPB_Control_Flag,0:No request;1:Apply request ,700,25,25,1,0,0,,220402,620402,ff,EPB_SSA status_TBD.DataRead.FFD_0402_004_bit6_EPB SW Status,0: No operation;1:Release operation ,700,26,26,1,0,0,,220402,620402,ff,EPB_SSA status_TBD.DataRead.FFD_0402_004_bit5_vSSA_OA_REQFLG,0:NO REQ;1:REQ ,700,27,27,1,0,0,,220402,620402,ff,EPB_SSA status_TBD.DataRead.IDM SSA Failure Flag,0:normal;1:Abnormal ,700,29,30,1,0,0,,220402,620402,ff,EPB_SSA status_TBD.DataRead.SSA lamp lighting request flag,0:Lamp OFF;1:SSASTANBAY_LMP ON;2:SSAHOLD_LMP ON ,700,31,31,1,0,0,,220402,620402,ff,EPB_SSA status_TBD.DataRead.fSSA_TJP_REQFLG,0:TJP No request;1:TJP request ,700,24,25,1,0,0,,220403,620403,ff,TBD_EPB_IDMfail_EPBFail.SSA_Received_EPB_State,2:Releasing;1:Applying;0:Released;3:Applied ,700,27,27,1,0,0,,220403,620403,ff,TBD_EPB_IDMfail_EPBFail.fSSA_RX_IDMFAIL_BY_EPB,0:normal;1:Abnormal ,700,28,28,1,0,0,,220403,620403,ff,TBD_EPB_IDMfail_EPBFail.fSSA_RX_SSA_INHIBIT_EPB,0:SSA not inhibited;1:SSA inhibited ,700,29,30,1,0,0,,220403,620403,ff,TBD_EPB_IDMfail_EPBFail.fSSA_RX_EPBFAIL,2:Major FPA default;1:Minor FPA default;0:No FPA default;3:Not Used ,700,24,25,1,0,0,,220404,620404,ff,SSA Swich State,0:SSA OFF;1:SSA STEP mode;2:SSA AUTO mode ,700,24,24,1,0,0,,220405,620405,ff,TBD_TJP.fSSA_TJP_CTRL_SSA_REQ_IN,0:non active;1:active ,700,25,25,1,0,0,,220405,620405,ff,TBD_TJP.ffSSA_TJP_EPB_REQ,0:non Demand;1:EPB Demand ,700,26,26,1,0,0,,220405,620405,ff,TBD_TJP.fSSA_TJP_ADASFAIL_IN,0:Normalcy;1:Abnormality ,700,27,27,1,0,0,,220405,620405,ff,TBD_TJP.TJP_HOLD_ACT,0:non active;1:active ,700,24,24,1,0,0,,220406,620406,ff,SSA Button switch.SSA Button Switch,0:button released;1:button pressed ,700,25,25,1,0,0,,220406,620406,ff,SSA Button switch.SSA switch LED 1,0:Lights out;1:Lighting ,700,26,26,1,0,0,,220406,620406,ff,SSA Button switch.SSA switch LED 2,0:Lights out;1:Lighting ,700,27,27,1,0,0,,220407,620407,ff,vSSA_OA_FAIL_STAT,0: not fail;1: fail ,700,24,24,1,0,0,,220408,620408,ff,fSSA_HJ_HOLD_JUDGE_FLG,0:impossible of maintenance;1:maintain ,700,26,26,1,0,0,,220409,620409,ff,Master warning lamp lights up request,0:Lights out;1:Lighting ,700,24,31,1,0,0,,220501,620501,ff,Company,0:Nissan(Defaut);1:Renault ,700,24,31,1,0,0,,220502,620502,ff,EngineType,0:ICE(Default);1:HEV;2:EV;3:Not used ,700,24,31,1,0,0,,220503,620503,ff,HCM function,0:Without(Default);1:With ,700,24,31,1,0,0,,220504,620504,ff,TransmissionType,0:CVT;1:DCT;2:MT(Default);3:BVH ,700,24,31,1,0,0,,220505,620505,ff,ElectricBooster,0:Without(default);1:With ,700,24,31,1,0,0,,220506,620506,ff,ElectricParkingBrake,0:Without(Default);1:With ,700,24,31,1,0,0,,220507,620507,ff,ADAS function,0:Without(Default);1:ACC;2:TJP;3:Not used ,700,24,31,1,0,0,,220508,620508,ff,SONAR function,0:without(Default);1:HFBP;2:APK;3:Not used ,700,24,31,1,0,0,,220509,620509,ff,CCSL function,0:Without(Default);1:With ,700,24,31,1,0,0,,22050A,62050A,ff,CBA function,0:Without(Default);1:With ,700,24,31,1,0,0,,22050B,62050B,ff,AVDC function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,22050C,62050C,ff,YLE function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,22050D,62050D,ff,AUC function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,22050E,62050E,ff,BSB function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,22050F,62050F,ff,Total Brake function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,220510,620510,ff,ASA function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,220511,620511,ff,ADA function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,220512,620512,ff,BMC function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,220513,620513,ff,MEX function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,220514,620514,ff,DCMC function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,220515,620515,ff,SSA function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,220516,620516,ff,ARB function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,220517,620517,ff,SIGMA function,0:Disable(Default);1:Enable ,700,24,31,1,0,0,,220518,620518,ff,SWAS function,0:Disable;1:Enable(Default) ,700,24,31,1,0,0,,220519,620519,ff,LDP function,0:Disable;1:Enable(Default) ,700,24,39,10,0,0,ms,220530,620530,ff,mARB_ESCRehabilitationTime ,700,24,39,10,0,0,ms,220531,620531,ff,mARB_ESC_TimetoDefault ,700,24,39,.01,0,2,km/h,220532,620532,ff,mARB_VehicleBrakeNotStopped ,700,24,39,10,0,0,ms,220533,620533,ff,mARB_TimeToDetectDriverbrake ,700,24,39,.01,0,2,s,220534,620534,ff,mSSA_LTS_TH_STOPTIME ,700,24,39,.01,0,2,s,220535,620535,ff,mSSA_TIME_REQUEST_SUSPEND ,700,24,39,.01,0,2,m,220536,620536,ff,mTIRE_R ,700,24,39,.01,0,2,m/s²,220537,620537,ff,mARB_CCSLDecelG_Threshold ,700,24,39,10,0,0,ms,220538,620538,ff,mARB_DecelG_TIME ,700,24,39,10,0,0,ms,220539,620539,ff,mARB_ACCBRQ_MINMAX_TIME ,700,24,39,1,0,0,N·m,22053A,62053A,ff,mARB_ACCBRK_MAX ,700,24,39,10,0,0,ms,22053B,62053B,ff,mARB_CCSLBRQ_MINMAX_TIME ,700,24,39,1,0,0,N·m,22053C,62053C,ff,mARB_CCSLBRK_MAX ,700,24,39,.01,0,2,,22053D,62053D,ff,mARB_CCSL_Ka ,700,24,39,10,0,0,ms,22053E,62053E,ff,mARB_DecelGUDS_TIME ,700,24,39,10,0,0,ms,22053F,62053F,ff,mARB_HFPBBRQ_MINMAX_TIME ,700,24,39,1,0,0,N·m,220540,620540,ff,mARB_HFPBBRK_MAX ,700,24,39,10,0,0,ms,220541,620541,ff,mARB_HFPB2BRQ_MINMAX_TIME ,700,24,39,1,0,0,N·m,220542,620542,ff,mARB_HFPB2BRK_MAX ,700,24,39,10,0,0,ms,220543,620543,ff,mARB_YAW_MINMAX_TIME ,700,24,39,.5,0,1,N·m,220544,620544,1ff,mARB_YAW_MIN ,700,24,39,.5,0,1,N·m,220545,620545,ff,mARB_YAW_MAX ,700,24,39,1,0,0,,220546,620546,ff,mfSSA_INIT_MODE_OFF_SW ,700,24,39,1,0,0,,220547,620547,ff,mfSSA_LTS_SELECT_SW ,700,24,39,200,0,0,(N·m)/s,220548,620548,ff,mARB_ACC_TRGT_TORQUE_DECR ,700,24,103,1,0,0,,22F012,62F012,2ff,OperationnalReference ,700,24,47,1,0,0,km,22F0D0,62F0D0,ff,DataRead.Mileage ,700,24,31,1,0,0,,22F0D1,62F0D1,ff,DataRead.DTC_Occurence_Counter ,700,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,700,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,700,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,700,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,700,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,700,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,700,24,159,1,0,0,,22F190,62F190,2ff,VIN ,700,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,700,24,79,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,700,24,39,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,700,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,700,24,103,1,0,0,,22F1A1,62F1A1,2ff,vehicleManufacturerSparePartNumber_N ,700,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/IDM_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety microC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/INV-ME_Dtcs.csv ================================================ 0030,+APC 030C,BCM (Body Control Module) 030B,Boost PWM (between rectifier and inverter modules) 0306,Charger Controler 0854,DCDC 0852,DCDC driver 0850,DCDC High voltage side 0851,DCDC low voltage side 0868,Driver board temperature sensor 0861,ECU monitoring (Safety torque estimation) 0860,ECU monitoring (Watchdog) 0848,Electric engine FAN 0849,Electric engine phase 0847,Electric engine temperature 030D,EVC 030E,EVC relays 0820,Excitation 0821,Excitation current sensor 0830,Excitation driver (high arm) 0831,Excitation driver (low arm) 0832,Excitation driver ready 0822,Excitation temperature sensor 0807,Hardware over voltage protection 0870,High voltage network 0803,High voltage sensor 0801,Inverter 080A,Inverter auto diagnosis 0802,Inverter current sensor 080B,Inverter DFLASH memory corruption 0810,Inverter driver (high arm) 0811,Inverter driver (low arm) 0812,Inverter driver ready (high arm) 0813,Inverter driver ready (low arm) 0809,Inverter non traction safety watch 0808,Inverter phase 080C,Inverter Reset failure 0805,Inverter temperature 0804,Inverter temperature sensor 0305,Lithium Battery Controler 0864,Main controler temperature sensor 0865,PCB controler temperature sensor 0867,Power supply 2.1 0842,PWM Electric Engine command 084A,Rotor position offset learning 0841,Rotor position sensor 0840,Rotor position speed 084B,Rotor resistance leaning 0843,Safety rotor temperature estimation 0862,SPI communication 0845,Stator temperature sensor 1 0846,Stator temperature sensor 2 0863,Supply monitoring 0880,Voltage supply A11 0806,Water temperature 0908,CAN communication with battery 0A2A,Stator temperature sensors ================================================ FILE: app/src/main/assets/ZOE_Ph2/INV-ME_Fields.csv ================================================ ,18DAF1DF,0,0,1,0,0,,1081,5081,ff,StartDiagnosticSession.Default ,18DAF1DF,0,0,1,0,0,,1085,5085,ff,StartDiagnosticSession.Programming ,18DAF1DF,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession.ExtendedDiagnosticSession ,18DAF1DF,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,18DAF1DF,16,23,1,0,0,,1902AF,5902AF,ff,DTCStatusAvailabilityMask ,18DAF1DF,24,39,1,0,0,,1902AF,5902AF,ff,DTCDeviceAndFailureTypeOBD ,18DAF1DF,40,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed or blocked;152:component or system over temperature;251:-;252:-- ,18DAF1DF,44,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType.ManufacturerOrSupplier,1:Safety Case 1;2:Safety Case 2;3:Multiple Failure;4:Temperature too Low;5:Negative Loop Error;6:Positive Loop Error;7:Initialisation not valid;8:Overspeed;9:Limp Home;10:Specific Supplier;13:Drift low;14:Drift high ,18DAF1DF,48,48,1,0,0,,1902AF,5902AF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,18DAF1DF,49,49,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1DF,50,50,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1DF,51,51,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1DF,52,52,1,0,0,,1902AF,5902AF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1DF,53,53,1,0,0,,1902AF,5902AF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1DF,54,54,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1DF,55,55,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1DF,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,18DAF1DF,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,18DAF1DF,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,18DAF1DF,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,18DAF1DF,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,18DAF1DF,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,18DAF1DF,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,18DAF1DF,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,18DAF1DF,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,18DAF1DF,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,18DAF1DF,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,18DAF1DF,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,18DAF1DF,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,18DAF1DF,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,18DAF1DF,16,39,1,0,0,,190600000084,590600000084,4ff,DTCRecord ,18DAF1DF,40,47,1,0,0,,190600000084,590600000084,ff,StatusOfDTC ,18DAF1DF,56,63,1,0,0,,190600000084,590600000084,ff,DTCExtendedData.DTCOccurrenceCounter_2 ,18DAF1DF,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord ,18DAF1DF,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC ,18DAF1DF,56,79,1,0,0,km,190600000085,590600000085,ff,DTCExtendedData.DTCLastDiseappearMileage ,18DAF1DF,16,39,1,0,0,,190600000086,590600000086,4ff,DTCRecord ,18DAF1DF,40,47,1,0,0,,190600000086,590600000086,ff,StatusOfDTC ,18DAF1DF,56,79,1,0,0,km,190600000086,590600000086,ff,DTCExtendedData.DTCTravelledDistanceFailurePresent ,18DAF1DF,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord ,18DAF1DF,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC ,18DAF1DF,56,79,1,0,0,km,190600000087,590600000087,ff,DTCExtendedData.DTCFirstAppearMileage ,18DAF1DF,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,18DAF1DF,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,18DAF1DF,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter;132:DTCOccurrenceCounter_2;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage ,18DAF1DF,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,18DAF1DF,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,18DAF1DF,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,18DAF1DF,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,18DAF1DF,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,18DAF1DF,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,18DAF1DF,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,18DAF1DF,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,18DAF1DF,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:N/A;1:292A6;2:29170 ,18DAF1DF,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:N/A;1:292A6 ,18DAF1DF,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:N/A;1:HMLGT ,18DAF1DF,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,18DAF1DF,16,151,1,0,0,,2181,6181,2ff,V.I.N ,18DAF1DF,152,167,1,0,0,,2181,6181,4ff,CRC ,18DAF1DF,16,39,1,0,0,,2184,6184,4ff,ITG Supplier Number ,18DAF1DF,40,47,1,0,0,,2184,6184,2ff,Traceability Factory Code ,18DAF1DF,48,143,1,0,0,,2184,6184,2ff,Traceability Serial Number ,18DAF1DF,16,103,1,0,0,,21B7,61B7,4ff,Configuration of Electrical Vehicle Networks ,18DAF1DF,16,103,1,0,0,,21B8,61B8,4ff,List of Electrical Vehicle ECUs with After-sales diagnostic ,18DAF1DF,16,23,1,0,0,,21EF,61EF,2ff,Hardware Part Number 1 ,18DAF1DF,24,31,1,0,0,,21EF,61EF,2ff,Hardware Part Number 2 ,18DAF1DF,32,39,1,0,0,,21EF,61EF,2ff,Hardware Part Number 3 ,18DAF1DF,40,47,1,0,0,,21EF,61EF,2ff,Hardware Part Number 4 ,18DAF1DF,48,55,1,0,0,,21EF,61EF,2ff,Hardware Part Number 5 ,18DAF1DF,56,63,1,0,0,,21EF,61EF,2ff,Hardware Part Number 6 ,18DAF1DF,64,71,1,0,0,,21EF,61EF,2ff,Hardware Part Number 7 ,18DAF1DF,72,79,1,0,0,,21EF,61EF,2ff,Hardware Part Number 8 ,18DAF1DF,80,87,1,0,0,,21EF,61EF,2ff,Hardware Part Number 9 ,18DAF1DF,88,95,1,0,0,,21EF,61EF,2ff,Hardware Part Number 10 ,18DAF1DF,96,103,1,0,0,,21EF,61EF,2ff,Software Part Number 1 ,18DAF1DF,104,111,1,0,0,,21EF,61EF,2ff,Software Part Number 2 ,18DAF1DF,112,119,1,0,0,,21EF,61EF,2ff,Software Part Number 3 ,18DAF1DF,120,127,1,0,0,,21EF,61EF,2ff,Software Part Number 4 ,18DAF1DF,128,135,1,0,0,,21EF,61EF,2ff,Software Part Number 5 ,18DAF1DF,136,143,1,0,0,,21EF,61EF,2ff,Software Part Number 6 ,18DAF1DF,144,151,1,0,0,,21EF,61EF,2ff,Software Part Number 7 ,18DAF1DF,152,159,1,0,0,,21EF,61EF,2ff,Software Part Number 8 ,18DAF1DF,160,167,1,0,0,,21EF,61EF,2ff,Software Part Number 9 ,18DAF1DF,168,175,1,0,0,,21EF,61EF,2ff,Software Part Number 10 ,18DAF1DF,16,55,1,0,0,,21F0,61F0,2ff,PartNumber.LowerPart ,18DAF1DF,56,63,1,0,0,,21F0,61F0,4ff,DiagnosticIdentificationCode ,18DAF1DF,64,87,1,0,0,,21F0,61F0,2ff,SupplierNumber.ITG ,18DAF1DF,88,127,1,0,0,,21F0,61F0,2ff,HardwareNumber.LowerPart ,18DAF1DF,128,143,1,0,0,,21F0,61F0,4ff,SoftwareNumber ,18DAF1DF,144,159,1,0,0,,21F0,61F0,4ff,EditionNumber ,18DAF1DF,160,175,1,0,0,,21F0,61F0,4ff,CalibrationNumber ,18DAF1DF,176,183,1,0,0,,21F0,61F0,ff,PartNumber.BasicPartList,0:N/A;1:292A6;2:29170 ,18DAF1DF,184,191,1,0,0,,21F0,61F0,ff,HardwareNumber.BasicPartList,0:N/A;1:292A6 ,18DAF1DF,192,199,1,0,0,,21F0,61F0,ff,ApprovalNumber.BasicPartList,0:N/A;1:HMLGT ,18DAF1DF,200,207,1,0,0,,21F0,61F0,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS;255:Renault R3 ,18DAF1DF,16,55,1,0,0,,21F1,61F1,2ff,ApprovalNumber.LowerPart ,18DAF1DF,56,95,1,0,0,,21F1,61F1,2ff,ProgrammingSiteReference ,18DAF1DF,96,135,1,0,0,,21F1,61F1,2ff,ProgrammingToolReference ,18DAF1DF,136,143,1,0,0,,21F1,61F1,ff,NumberOfReprogrammings ,18DAF1DF,144,167,1,0,0,,21F1,61F1,4ff,DateOfReprogramming ,18DAF1DF,168,183,1,0,0,,21F1,61F1,4ff,TimeOfReprogramming ,18DAF1DF,184,191,1,0,0,,21F1,61F1,ff,SaveMarking ,18DAF1DF,192,207,1,0,0,,21F1,61F1,4ff,CrcOfLogSave ,18DAF1DF,24,55,1,0,0,,222000,622000,4ff,($2000) DIDs supported in range [$2001 - $2020] ,18DAF1DF,24,39,.5,32000,1,rpm,222001,622001,ff,($2001) Rotor mechanical rotation speed ,18DAF1DF,24,39,.015625,16256,2,N·m,222002,622002,ff,($2002) Emotor torque estimation, based on measured current values ,18DAF1DF,24,39,.1,2500,1,N·m,222003,622003,ff,($2003) Torque setpoint from EVC ,18DAF1DF,24,39,.03125,0,2,V,222004,622004,ff,($2004) Battery voltage sensor ,18DAF1DF,24,39,1,0,0,mV,222005,622005,ff,($2005) DCDC output tension measure ,18DAF1DF,24,55,1,0,0,,222060,622060,4ff,($2060) DIDs supported in range [$2061 - $2080] ,18DAF1DF,31,31,1,0,0,,222070,622070,ff,($2070) Immobilizer - diagnosis availability,0:unavailable;1:available ,18DAF1DF,24,31,1,0,0,,222071,622071,ff,($2071) Immobilizer - Byte 1 used to allow diagnosis ,18DAF1DF,24,31,1,0,0,,222072,622072,ff,($2072) Immobilizer - Byte 2 used to allow diagnosis ,18DAF1DF,24,24,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.7,0:Not used ,18DAF1DF,25,25,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.6,0:ECM not protected;1:ECM protected ,18DAF1DF,26,27,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.4,0:ECM virgin - Secret key not learnt;1:Not used;2:Not virgin ECM - Secret key learnt in erasable area;3:Not virgin ECM - Secret key learnt in non erasable area ,18DAF1DF,28,28,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.3,0:Not used ,18DAF1DF,29,29,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.2,0:Cleappli not set;1:Cleappli set ,18DAF1DF,30,30,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.1,0:Not used ,18DAF1DF,31,31,1,0,0,,222073,622073,ff,($2073) Immobilizer - Byte 3 used to allow diagnosis.0,0:Immobilizer engine running forbidden;1:Immobilizer engine running authorized ,18DAF1DF,31,31,1,0,0,,222074,622074,ff,($2074) Immobilizer - engine not running due to ECM,0:no;1:yes ,18DAF1DF,31,31,1,0,0,,222075,622075,ff,($2075) Immobilizer - engine not running due to BCM in secure mode,0:no;1:yes ,18DAF1DF,31,31,1,0,0,,222076,622076,ff,($2076) Immobilizer - engine not running due to no BCM authorization,0:no;1:yes ,18DAF1DF,31,31,1,0,0,,222077,622077,ff,($2077) Immobilizer - engine not running due to a CAN network problem with the BCM,0:no;1:yes ,18DAF1DF,24,55,1,0,0,,227000,627000,4ff,($7000) DIDs supported in range [$7001 - $7020] ,18DAF1DF,24,31,1,0,0,%,227001,627001,ff,($7001) Command of PEC fan ,18DAF1DF,31,31,1,0,0,,227002,627002,ff,($7002) Wired APC signal,0:APC off;1:APC on ,18DAF1DF,24,39,.0009765625,0,3,A,227003,627003,ff,($7003) Measured rotor current (sensor 1) ,18DAF1DF,24,39,.0009765625,0,3,A,227004,627004,ff,($7004) Measured rotor current (sensor 2) ,18DAF1DF,31,31,1,0,0,,227005,627005,ff,($7005) Verlog Status,0:Vehicle locked;1:Vehicle unlocked ,18DAF1DF,31,31,1,0,0,,227006,627006,ff,($7006) Wire frame APC state,0:APC off;1:APC on ,18DAF1DF,24,39,.03125,16000,2,A,227007,627007,ff,($7007) Measured stator current on phase U ,18DAF1DF,24,39,.03125,16000,2,A,227008,627008,ff,($7008) Measured stator current on phase V ,18DAF1DF,24,39,.03125,16000,2,A,227009,627009,ff,($7009) Measured stator current on phase W ,18DAF1DF,31,31,1,0,0,,22700A,62700A,ff,($700A) Feedback fan raw diagnostic,0:OK;1:NOK ,18DAF1DF,24,47,.001953125,20480,3,°C,22700B,62700B,ff,($700B) Excitation temperature ,18DAF1DF,24,47,.001953125,20480,3,°C,22700C,62700C,ff,($700C) Inverter temperature sensor 1 ,18DAF1DF,24,47,.001953125,20480,3,°C,22700D,62700D,ff,($700D) MICRO temperature ,18DAF1DF,24,47,.001953125,20480,3,°C,22700E,62700E,ff,($700E) PCB temperature ,18DAF1DF,24,47,.001953125,20480,3,°C,22700F,62700F,ff,($700F) Stator temperature sensor 1 ,18DAF1DF,24,47,.001953125,20480,3,°C,227010,627010,ff,($7010) Stator temperature sensor 2 ,18DAF1DF,24,39,.0078125,0,3,°,227011,627011,ff,($7011) Raw rotor position resolver angular position measurement ,18DAF1DF,24,31,1,0,0,,227012,627012,ff,($7012) Status flag of the Smartcoder ,18DAF1DF,24,39,.0002441406,0,3,V,227013,627013,ff,($7013) Raw rotor position resolver cosine voltage ,18DAF1DF,24,39,.0002441406,0,3,V,227014,627014,ff,($7014) Raw rotor position resolver cosine voltage with 25µs delay ,18DAF1DF,24,39,.0002441406,0,3,V,227015,627015,ff,($7015) Raw rotor position resolver excitation peak voltage ,18DAF1DF,31,31,1,0,0,,227016,627016,ff,($7016)Result of the check on CAN with EVC (torque request CLK+torque request CRC+CAN confirmed absent),0:Check is Ok;1:Check is Nok ,18DAF1DF,24,39,1,0,0,,227017,627017,ff,($7017) Failure vector allowing exact identification of the failure.1 ,18DAF1DF,24,31,1,0,0,,227018,627018,ff,($7018) Failure vector allowing exact identification of the failure.2 ,18DAF1DF,24,31,1,0,0,,227019,627019,ff,($7019) Failure vector allowing exact identification of the failure.3 ,18DAF1DF,24,39,1,0,0,,22701A,62701A,ff,($701A) Failure vector allowing exact identification of the failure.4 ,18DAF1DF,24,31,1,0,0,,22701B,62701B,ff,($701B) Failure vector allowing exact identification of the DCDC event ,18DAF1DF,24,39,.0078125,0,3,,22701C,62701C,ff,($701C) Saved rotor position offset.value.physical ,18DAF1DF,40,47,1,0,0,,22701C,62701C,4ff,($701C) Saved rotor position offset.CRC ,18DAF1DF,24,39,1,0,0,,22701D,62701D,ff,($701D) Counter of FAN fail times to cool the machine stator in hard conditions.1 ,18DAF1DF,24,39,1,0,0,,22701E,62701E,ff,($701E) Counter of FAN fail times to cool the machine stator in hard conditions.2 ,18DAF1DF,24,39,1,0,0,,22701F,62701F,ff,($701F) Counter of FAN fail times to cool the machine stator in hard conditions.3 ,18DAF1DF,24,55,1,0,0,,227020,627020,4ff,($7020) DIDs supported in range [$7021 - $7040] ,18DAF1DF,24,39,1,0,0,,227021,627021,4ff,($7021) Saved resistance rotor.value ,18DAF1DF,40,47,1,0,0,,227021,627021,4ff,($7021) Saved resistance rotor.CRC ,18DAF1DF,31,31,1,0,0,,227022,627022,ff,($7022) Active discharge request from EVC to PEB,0:Discharge not requested;1:Discharge requested ,18DAF1DF,31,31,1,0,0,,227023,627023,ff,($7023) Effective active discharge feedback to EVC,0:Active Discharge Not In Progress;1:Active Discharge In Progress ,18DAF1DF,31,31,1,0,0,,227024,627024,ff,($7024) APC state (from CAN),0:APC off;1:APC on ,18DAF1DF,31,31,1,0,0,,227025,627025,ff,($7025) Charge request from EVC to PEB,0:No charge requested;1:Charge requested ,18DAF1DF,31,31,1,0,0,,227026,627026,ff,($7026) Effective Charge feedback to EVC,0:No charge in progress;1:Charging in progress ,18DAF1DF,31,31,1,0,0,,227027,627027,ff,($7027) On/Off request of the DCDC from EVC,0:DCDC Off;1:DCDC On ,18DAF1DF,31,31,1,0,0,,227028,627028,ff,($7028) status verlog from PEB to EVC,0:Vehicle locked;1:Vehicle unlocked ,18DAF1DF,31,31,1,0,0,,227029,627029,ff,($7029) On/Off power train activation request from EVC,0:Inverter Off;1:Inverter On ,18DAF1DF,31,31,1,0,0,,22702A,62702A,ff,($702A) software over voltage protection,0:No default;1:Default ,18DAF1DF,29,31,1,0,0,,22702B,62702B,ff,($702B) Auto Diag enable,0:Nsx_auto_diag_nok (0) - Auto diag not allowed;1:Nsx_auto_diag_apc_off (1) - Auto diag without apc allowed;2:Nsx_auto_diag_apc_on (2) - Auto diag with apc allowed;3:Nsx_auto_diag_sfty_1 (3) - auto diag Safety 1 (DM);4:Nsx_auto_diag_sfty_2 (4) - auto diag Safety 2 (FPGA) ,18DAF1DF,30,31,1,0,0,,22702C,62702C,ff,($702C) Distribution type from JB to PEB,0:not used;1:Default (Nsx_jb_chg_dstb_dft);2:Simultaneous (Nsx_jb_chg_dstb_smlt);3:Lag (Nsx_jb_chg_dstb_lag) ,18DAF1DF,29,31,1,0,0,,22702D,62702D,ff,($702D) Failure class of the DCDC converter,0:Nsx_dcdc_err_stt_ok - No Fault type;1:Nsx_dcdc_err_stt_1 - GE-MD1 Class C;2:Nsx_dcdc_err_stt_1_prmt - GE-MD1 Class D;3:Nsx_dcdc_err_stt_2 - Not used;4:Nsx_dcdc_err_stt_3 - GE-MD3;5:Nsx_dcdc_err_stt_4 - GE-MD4 ,18DAF1DF,29,31,1,0,0,,22702E,62702E,ff,($702E) DCDC state,0:Init (Nsx_dcdc_stt_ini);1:Autodiag (Nsx_dcdc_stt_dgt);2:Reset (Nsx_dcdc_stt_rst);3:Standby (Nsx_dcdc_stt_stby);4:Pwer ON (Nsx_dcdc_stt_on);5:MD1 (Nsx_dcdc_stt_def_mod_1);6:MD4 on (Nsx_dcdc_stt_def_mod_4_on);7:MD4 stby (Nsx_dcdc_stt_def_mod_4_stby) ,18DAF1DF,28,31,1,0,0,,22702F,62702F,ff,($702F) High Voltage Network Default,0:Nsx_hv_nok (0)- More than one sensor failure;1:Nsx_hv_ok (1)- No Default;2:Nsx_hv_udc_dfl (2)- HV UDC Failure;3:Nsx_hv_dcdc_dfl (3)- HV DCDC voltage sensor Failure;4:Nsx_hv_bat_dfl (4)- HV Battery voltage sensor Failure;5:Nsx_hv_nw_loss - HV Network Loss or false relay status information;6:Nsx_hv_bat_cell_ov_dfl - HV battery overvoltage (cell);7:Nsx_hv_bat_ov_dfl - HV battery overvoltage (pack);8:Nsx_hv_rly_open_dfl- false open relay status information ,18DAF1DF,29,31,1,0,0,,227030,627030,ff,($7030) Failure class of the Inverter,0:Nsx_invt_flt_type_0 (0)- no downgraded mode;1:Nsx_invt_flt_type_1 (1)- INV Stopped (class C);2:Nsx_invt_flt_type_2 (2)- INV Stopped (class D);3:Nsx_invt_flt_type_3 (3)- not used;4:Nsx_invt_flt_type_4 (4) - Safety Barrier Lost;5:Nsx_invt_flt_type_5 (5) - Alert Service;6:Nsx_invt_flt_type_6 (6) - Charge Stop Alert ,18DAF1DF,30,31,1,0,0,,227031,627031,ff,($7031) Interlock plug service status, from LBC (condition for reprogramming),0:Closed;1:Opened;2:Unavailable;3:not used ,18DAF1DF,28,31,1,0,0,,227032,627032,ff,($7032) Torque Default,0:No default;1:CAN Default;2:Safety Check Default;3:"Unexpected braking" is detected by the "static control strategy";4:"Unexpected acceleration" in case of negative torque request is detected by the "static control strategy";5:"Unexpected acceleration" is detected by the "static control strategy";6:"Unexpected acceleration" is detected by the "dynamic control strategy";7:"Over braking" is detected by the "static control strategy";8:"Over braking" or "Unexpected braking" are detected by the "dynamic control strategy";9:"Lack of motricity" is detected by the "static control strategy";10:"Lack of motricity" is detected by the "dynamic control strategy";11:"Loss of regenerative torque" is detected by the "static control strategy";12:"Loss of regenerative torque" is detected by the "dynamic control strategy";13:Non zero generated torque detected in case of overvoltage;14:Non limited torque detected in case of rotor overtemperature (rotor temperature = 100%) ,18DAF1DF,24,39,.5,0,1,V,227033,627033,ff,($7033) DCDC input voltage ,18DAF1DF,24,39,1,0,0,mV,227034,627034,ff,($7034) Voltage demand for the DCDC converter from the EVC ,18DAF1DF,24,31,1,0,0,N·m,227035,627035,ff,($7035) Maximal available calculated torque in generator mode ,18DAF1DF,24,31,1,0,0,N·m,227036,627036,ff,($7036) Maximal available calculated torque in motor mode ,18DAF1DF,24,39,1,0,0,,227037,627037,4ff,($7037) Rotor position offset learning + CRC written by diag tool.1 ,18DAF1DF,40,47,1,0,0,,227037,627037,4ff,($7037) Rotor position offset learning + CRC written by diag tool.2 ,18DAF1DF,24,39,.0078125,5120,3,°C,227038,627038,ff,($7038) Rotor copper temperature raw estimation ,18DAF1DF,24,39,.015625,0,2,%,227039,627039,ff,($7039) Combination of inverter, Excitation, PCB, MC and DRI temperatures, so in % ,18DAF1DF,24,39,.015625,0,2,%,22703A,62703A,ff,($703A) Combination of rotor and stator temperatures, so in % ,18DAF1DF,24,39,1,0,0,,22703B,62703B,4ff,($703B) Resistance rotor learning + CRC written by diag tool.1 ,18DAF1DF,40,47,1,0,0,,22703B,62703B,4ff,($703B) Resistance rotor learning + CRC written by diag tool.2 ,18DAF1DF,24,47,1,0,0,km,22703C,62703C,ff,($703C) Vehicle distance totalizer from EVC ,18DAF1DF,25,31,1,0,0,°C,22703D,62703D,ff,($703D) The water temperature produced by the Rectifier ,18DAF1DF,31,31,1,0,0,,22703E,62703E,ff,($703E) Mode of the power train (motor or generator),0:Motor;1:Generator ,18DAF1DF,31,31,1,0,0,,22703F,62703F,ff,($703F) SPI communication default,0:No default;1:Default ,18DAF1DF,24,55,1,0,0,,227040,627040,4ff,($7040) DIDs supported in range [$7041 - $7060] ,18DAF1DF,31,31,1,0,0,,227041,627041,ff,($7041) Rotor overcurrent validated,0:No default;1:Default ,18DAF1DF,31,31,1,0,0,,227042,627042,ff,($7042) Stator overcurrent validated,0:No default;1:Default ,18DAF1DF,28,31,1,0,0,,227043,627043,ff,($7043) activated downgraded mode FPGA number,0:Nsx_no_sfty_dfl - no downgraded mode;1:Nsx_gc_md_01a - GC-MD01a;2:Nsx_gc_md_01b - GC-MD01b;3:Nsx_gc_md_01c - GC-MD01c;4:Nsx_gc_md_01d - GC-MD01d;5:Nsx_gc_md_01e - GC-MD01e;6:Nsx_gc_ci_md_01a ( 9 ) - gc_ci_md_01a;7:Nsx_gc_ci_md_01b (10) - gc_ci_md_01b;8:Nsx_dfl_chr_md (11) - inconsistency between PWMs and downgraded mode;9:Nsx_dfl_auto_diag_sfty_2 (12) -autodiag safety 2 fpga NOK ,18DAF1DF,28,31,1,0,0,,227044,627044,ff,($7044) activated downgraded mode number,0:Nsx_no_sfty_dfl - no downgraded mode;1:Nsx_gc_md_01a - GC-MD01a;2:Nsx_gc_md_01b - GC-MD01b;3:Nsx_gc_md_01c - GC-MD01c;4:Nsx_gc_md_01d - GC-MD01d;5:Nsx_gc_md_01e - GC-MD01e;6:Nsx_gc_md_03 - GC-MD03;7:Nsx_gc_ci_md_01a ( 9 ) - gc_ci_md_01a;8:Nsx_gc_ci_md_01b (10) - gc_ci_md_01b ,18DAF1DF,30,31,1,0,0,,227045,627045,ff,($7045) Validity status of the rotor electrical rotation speed,0:Nsx_emot_n_chk_ok- OK;1:Nsx_emot_n_chk_fail- Rotor speed is based on backup position acquisition- increased noise.;2:Nsx_emot_n_full_fail- No reliable position inforamtion to compute rotor speed or incoherency between functional and safety rotation speeds ,18DAF1DF,29,31,1,0,0,,227046,627046,ff,($7046) Excitation Current Default,0:Nsx_ok (0) - no excitation sensor default;1:Nsx_i_f_dfl_1 (1) - default excitation sensor 1;2:Nsx_i_f_dfl_2 (2) - default excitation sensor 2;3:Nsx_i_f_dfl (3) - unknown excitation sensor default;4:Nsx_i_f_wi_dfl (4) - excitation wire default ,18DAF1DF,28,31,1,0,0,,227047,627047,ff,($7047) Phase Current Default,0:Nsx_ok (0) - no sensor default;1:Nsx_i_mot_ph_dfl_1 (1) - default phase sensor 1;2:Nsx_i_mot_ph_dfl_2 (2) - default phase sensor 2;3:Nsx_i_mot_ph_dfl_3 (3) - default phase sensor 3;4:Nsx_i_mot_ph_dfl (4) - unknown phase sensor default;5:Nsx_i_mot_ph_wi_dfl_1 (5) - phase wire 1 default;6:Nsx_i_mot_ph_wi_dfl_2 (6) - phase wire 2 default;7:Nsx_i_mot_ph_wi_dfl_3 (7) - phase wire 3 default;8:Nsx_i_mot_ph_wi_dfl (8) - unknown phase wire default;9:Nsx_i_mot_ph_igbt_dfl (9) - unknown IBGT default ,18DAF1DF,30,31,1,0,0,,227048,627048,ff,($7048) Validity status of the rotor electrical angular position,0:Nsx_dgt_emot_psn_chk_ok- OK;1:Nsx_dgt_emot_psn_chk_fail- Failure of the functional position acquisition;2:Nsx_dgt_emot_psn_chk_fail_sfty- Failure of the safety position acquisition;3:Nsx_dgt_emot_psn_chk_full_fail- Double failure or incoherency between functional and safety positions ,18DAF1DF,24,39,.03125,16000,2,A,227049,627049,ff,($7049) Combinated current value on the HV Network of Inverter and Excitation ,18DAF1DF,24,31,1,0,0,,22704A,62704A,4ff,($704A) TETA CRC received ,18DAF1DF,24,39,.0078125,0,3,,22704B,62704B,ff,($704B) Received TETA position offset ,18DAF1DF,24,31,1,0,0,,22704C,62704C,4ff,($704C) Received rotor reference resistance CRC ,18DAF1DF,24,39,.001953125,-512,3,Ohm,22704D,62704D,ff,($704D) Received value for reference rotor resistance ,18DAF1DF,24,39,.001953125,0,3,Ohm,227050,627050,ff,($7050) Value for reference rotor resistance (for safety monitoring) ,18DAF1DF,24,31,1,0,0,,227051,627051,ff,($7051) Position sensor type,0:0- Sensor type A = TAMAGAWA;1:1- Sensor type B = MINEBEA ,18DAF1DF,24,47,.001953125,20480,3,°C,227052,627052,ff,($7052) Vector of 5 average dcdc temperature on 1s in the minute before break event for post mortem.4 ,18DAF1DF,48,71,.001953125,20480,3,°C,227052,627052,ff,($7052) Vector of 5 average dcdc temperature on 1s in the minute before break event for post mortem.3 ,18DAF1DF,72,95,.001953125,20480,3,°C,227052,627052,ff,($7052) Vector of 5 average dcdc temperature on 1s in the minute before break event for post mortem.2 ,18DAF1DF,96,119,.001953125,20480,3,°C,227052,627052,ff,($7052) Vector of 5 average dcdc temperature on 1s in the minute before break event for post mortem.1 ,18DAF1DF,120,143,.001953125,20480,3,°C,227052,627052,ff,($7052) Vector of 5 average dcdc temperature on 1s in the minute before break event for post mortem.0 ,18DAF1DF,24,47,.001953125,20480,3,°C,227053,627053,ff,($7053) Vector of 5 average driver board temperature on 1s in the minute before break event for post mortem.4 ,18DAF1DF,48,71,.001953125,20480,3,°C,227053,627053,ff,($7053) Vector of 5 average driver board temperature on 1s in the minute before break event for post mortem.3 ,18DAF1DF,72,95,.001953125,20480,3,°C,227053,627053,ff,($7053) Vector of 5 average driver board temperature on 1s in the minute before break event for post mortem.2 ,18DAF1DF,96,119,.001953125,20480,3,°C,227053,627053,ff,($7053) Vector of 5 average driver board temperature on 1s in the minute before break event for post mortem.1 ,18DAF1DF,120,143,.001953125,20480,3,°C,227053,627053,ff,($7053) Vector of 5 average driver board temperature on 1s in the minute before break event for post mortem.0 ,18DAF1DF,24,47,.001953125,20480,3,°C,227054,627054,ff,($7054) Vector of 5 average excitation temperature on 1s in the minute before break event for post mortem.4 ,18DAF1DF,48,71,.001953125,20480,3,°C,227054,627054,ff,($7054) Vector of 5 average excitation temperature on 1s in the minute before break event for post mortem.3 ,18DAF1DF,72,95,.001953125,20480,3,°C,227054,627054,ff,($7054) Vector of 5 average excitation temperature on 1s in the minute before break event for post mortem.2 ,18DAF1DF,96,119,.001953125,20480,3,°C,227054,627054,ff,($7054) Vector of 5 average excitation temperature on 1s in the minute before break event for post mortem.1 ,18DAF1DF,120,143,.001953125,20480,3,°C,227054,627054,ff,($7054) Vector of 5 average excitation temperature on 1s in the minute before break event for post mortem.0 ,18DAF1DF,24,47,.001953125,20480,3,°C,227055,627055,ff,($7055) Vector of 5 average inverter temperature on 1s in the minute before break event for post mortem.4 ,18DAF1DF,48,71,.001953125,20480,3,°C,227055,627055,ff,($7055) Vector of 5 average inverter temperature on 1s in the minute before break event for post mortem.3 ,18DAF1DF,72,95,.001953125,20480,3,°C,227055,627055,ff,($7055) Vector of 5 average inverter temperature on 1s in the minute before break event for post mortem.2 ,18DAF1DF,96,119,.001953125,20480,3,°C,227055,627055,ff,($7055) Vector of 5 average inverter temperature on 1s in the minute before break event for post mortem.1 ,18DAF1DF,120,143,.001953125,20480,3,°C,227055,627055,ff,($7055) Vector of 5 average inverter temperature on 1s in the minute before break event for post mortem.0 ,18DAF1DF,24,47,.001953125,20480,3,°C,227056,627056,ff,($7056) Vector of 5 average pcb temperature on 1s in the minute before break event for post mortem.4 ,18DAF1DF,48,71,.001953125,20480,3,°C,227056,627056,ff,($7056) Vector of 5 average pcb temperature on 1s in the minute before break event for post mortem.3 ,18DAF1DF,72,95,.001953125,20480,3,°C,227056,627056,ff,($7056) Vector of 5 average pcb temperature on 1s in the minute before break event for post mortem.2 ,18DAF1DF,96,119,.001953125,20480,3,°C,227056,627056,ff,($7056) Vector of 5 average pcb temperature on 1s in the minute before break event for post mortem.1 ,18DAF1DF,120,143,.001953125,20480,3,°C,227056,627056,ff,($7056) Vector of 5 average pcb temperature on 1s in the minute before break event for post mortem.0 ,18DAF1DF,24,47,.001953125,20480,3,°C,227057,627057,ff,($7057) Vector of 5 average wtr temperature on 1s in the minute before break event for post mortem.4 ,18DAF1DF,48,71,.001953125,20480,3,°C,227057,627057,ff,($7057) Vector of 5 average wtr temperature on 1s in the minute before break event for post mortem.3 ,18DAF1DF,72,95,.001953125,20480,3,°C,227057,627057,ff,($7057) Vector of 5 average wtr temperature on 1s in the minute before break event for post mortem.2 ,18DAF1DF,96,119,.001953125,20480,3,°C,227057,627057,ff,($7057) Vector of 5 average wtr temperature on 1s in the minute before break event for post mortem.1 ,18DAF1DF,120,143,.001953125,20480,3,°C,227057,627057,ff,($7057) Vector of 5 average wtr temperature on 1s in the minute before break event for post mortem.0 ,18DAF1DF,24,47,.001953125,20480,3,°C,227058,627058,ff,($7058) 1s average dcdc temperature on break event for post mortem ,18DAF1DF,24,47,.001953125,20480,3,°C,227059,627059,ff,($7059) 1s average driver board temperature on break event for post mortem ,18DAF1DF,24,39,1,0,0,,22705A,62705A,ff,($705A) Derating counter for post mortem ,18DAF1DF,24,39,1,0,0,,22705B,62705B,ff,($705B) Blocked rotor counter for post mortem ,18DAF1DF,24,39,1,0,0,,22705C,62705C,ff,($705C) Water overheat temperature counter for post mortem ,18DAF1DF,24,47,.001953125,20480,3,°C,22705D,62705D,ff,($705D) 1s average excitation temperature on break event for post mortem ,18DAF1DF,24,47,.001953125,20480,3,°C,22705E,62705E,ff,($705E) 1s average inverter temperature on break event for post mortem ,18DAF1DF,24,47,.001953125,20480,3,°C,22705F,62705F,ff,($705F) 1s average pcb temperature on break event for post mortem ,18DAF1DF,24,55,1,0,0,,227060,627060,4ff,($7060) DIDs supported in range [$7061 - $7080] ,18DAF1DF,24,47,.001953125,20480,3,°C,227061,627061,ff,($7061) Maximum driver board temperature during last derating ,18DAF1DF,24,47,.001953125,20480,3,°C,227062,627062,ff,($7062) Maximum excitation temperature during last derating ,18DAF1DF,24,47,.001953125,20480,3,°C,227063,627063,ff,($7063) Maximum inverter temperature during last derating ,18DAF1DF,24,47,.001953125,20480,3,°C,227064,627064,ff,($7064) Maximum pcb temperature during last derating ,18DAF1DF,24,47,.001953125,20480,3,°C,227065,627065,ff,($7065) Maximum water temperature during last derating ,18DAF1DF,24,55,1,0,0,s,227066,627066,1ff,($7066) Charge or non zero torque time counter for post mortem analysis ,18DAF1DF,24,55,1,0,0,s,227067,627067,1ff,($7067) APC and zero torque time counter for post mortem analysis ,18DAF1DF,24,39,1,0,0,,227068,627068,ff,($7068) Software overcurrent protection counter for post mortem analysis ,18DAF1DF,24,39,1,0,0,,227069,627069,ff,($7069) Hardware (by the fpga) overcurrent protection counter for post mortem analysis ,18DAF1DF,24,39,1,0,0,,22706A,62706A,ff,($706A) Hardware (by the fpga) overvoltage protection counter for post mortem analysis ,18DAF1DF,24,39,1,0,0,,22706B,62706B,ff,($706B) Software overvoltage protection counter for post mortem analysis ,18DAF1DF,24,31,1,0,0,,22706C,62706C,ff,($706C) Alim 21 monitoring,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,22706D,62706D,ff,($706D) Alim 21 with redundance monitoring,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,22706E,62706E,ff,($706E) DID for activation of bypass frame,0:Frame inactivated;1:Frame active ,18DAF1DF,24,31,1,0,0,,22706F,62706F,ff,($706F) Excitation high arm IGBT driver fault,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,227070,627070,ff,($7070) Excitation low arm IGBT driver fault,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,227071,627071,ff,($7071) Inverter high arm IGBT driver fault,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,227072,627072,ff,($7072) Inverter low arm IGBT driver fault,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,227073,627073,ff,($7073) Excitation over current protection (before flipflop) High,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,227074,627074,ff,($7074) Excitation over current protection (before flipflop) Low,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,227075,627075,ff,($7075) Inverter over current protection (before flipflop) Arm U,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,227076,627076,ff,($7076) Inverter over current protection (before flipflop) Arm V,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,227077,627077,ff,($7077) Inverter over current protection (before flipflop) Arm W,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,227078,627078,ff,($7078) Over voltage protection (before flipflop),0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,227079,627079,ff,($7079) Copy Over voltage protection (before flipflop),0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,22707A,62707A,ff,($707A) Excitation driver state (ready or not),0:Not Ready;1:Ready ,18DAF1DF,24,31,1,0,0,,22707B,62707B,ff,($707B) Inverter high IGBT driver state (ready or not),0:Not Ready;1:Ready ,18DAF1DF,24,31,1,0,0,,22707C,62707C,ff,($707C) Inverter low IGBT driver state (ready or not),0:Not Ready;1:Ready ,18DAF1DF,24,31,1,0,0,,22707D,62707D,ff,($707D) Supply monitoring default,0:No default;1:Default ,18DAF1DF,24,31,1,0,0,,22707E,62707E,ff,($707E) Alimentation 11 state,0:Stop;1:Start ,18DAF1DF,24,31,1,0,0,,22707F,62707F,ff,($707F) Alimentation 21 state,0:Stop;1:Start ,18DAF1DF,24,55,1,0,0,,227080,627080,4ff,($7080) DIDs supported in range [$7081 - $70A0] ,18DAF1DF,24,31,1,0,0,,227081,627081,ff,($7081) Bypass mode,0:Bypass off;1:Only THOCP bypass;2:Torque setpoint bypass;3:TQ setpoint and torque mode bypass;4:Current request bypass;5:Voltage control bypass;6:Voltage control + position/speed bypass;7:Inverter voltage control +excitation current +position/speed bypass;8:RGL duty cycle bypass (in PWM);9:Voltage control and speed bypass and position emulation ,18DAF1DF,24,31,1,0,0,,227082,627082,ff,($7082) FPGA fault sent by SPI,0:no fault;1:Vbx_invt_flt_dri_l or Vbx_invt_flt_dri_h;2:Vbx_exct_flt_dri_h or Vbx_exct_flt_dri_l;3:Vbx_ovp_udc_mem;4:Vbx_ocp_invt_mem;5:Vbx_ocp_exct_mem;6:Vbx_pwm_dfl_sfty_mem ,18DAF1DF,24,31,1,0,0,,227083,627083,ff,($7083) INV Automation State,0:Init;1:Traction;2:Charge;3:Motor Stop;4:Rotor Position Learning;5:Stand By;6:Active Discharge;7:Diag ,18DAF1DF,24,39,1,0,0,A,227084,627084,ff,($7084) DCDC Input current measure ,18DAF1DF,24,39,1,0,0,A,227085,627085,ff,($7085) DCDC output current measure ,18DAF1DF,24,31,1,0,0,°C,227086,627086,ff,($7086) DCDC power card temperature ,18DAF1DF,24,39,.0078125,5120,3,°C,227087,627087,ff,($7087) Observer estimation for stack rotor temperature ,18DAF1DF,24,39,.0078125,5120,3,°C,227088,627088,ff,($7088) Rotor copper temperature estimation ,18DAF1DF,24,39,.0078125,5120,3,°C,227089,627089,ff,($7089) Stator copper temperature estimation ,18DAF1DF,24,39,1,0,0,,22708A,62708A,ff,($708A) FPGA firmware version Identifier ,18DAF1DF,24,39,.0078125,0,3,,22708B,62708B,ff,($708B) Rotor position measure ,18DAF1DF,24,39,.000244140625,0,3,V,22708C,62708C,ff,($708C) Copy Raw rotor position resolver excitation peak voltage ,18DAF1DF,24,39,.0078125,0,3,,22708D,62708D,ff,($708D) Rotor position measure (for safety monitoring) ,18DAF1DF,24,47,.001953125,20480,3,°C,22708E,62708E,ff,($708E) Spare signal for driver board temperature ,18DAF1DF,24,31,1,0,0,,22708F,62708F,ff,($708F) Opening relays wire request,0:Not open;1:Open ,18DAF1DF,25,31,1,0,0,°C,227090,627090,ff,($7090) Water temperature ,18DAF1DF,24,47,.001953125,20480,3,°C,227091,627091,ff,($7091) Last driver board temperature on 1s in the minute before break event for post mortem ,18DAF1DF,24,31,1,0,0,,227092,627092,ff,($7092) CAN Etude activation,0:deactivated;1:activated ,18DAF1DF,24,39,1,0,0,,227093,627093,ff,($7093) Number of Derating CFA functionnal failure 1 cycles saved ,18DAF1DF,24,39,1,0,0,,227094,627094,ff,($7094) Number of Derating CFA functionnal failure 2 cycles saved ,18DAF1DF,24,39,1,0,0,,227095,627095,ff,($7095) Number of Derating CFA functionnal failure 3 cycles saved ,18DAF1DF,24,39,.015625,0,2,%,227096,627096,ff,($7096) Normalized inverter-Excitation temperature ,18DAF1DF,24,39,.015625,0,2,%,227097,627097,ff,($7097) Normalized PCB-Micro_driverboard temperature ,18DAF1DF,24,31,1,0,0,,227098,627098,ff,($7098) Excitation currents safety check,0:Both currents are consistent (difference thershold);2:current from sensor 1 (Vxx_i_f_1) is out of range;3:current from sensor 2 (Vxx_i_f_2) is out of range ,18DAF1DF,24,31,1,0,0,,227099,627099,ff,($7099) Phase currents safety check,0:the summ of the 3 currents is close to zero (< threshold);1:the summ of the 3 currents isn't close to zero (>threshold) OR at least 2 of the currents are out of range;2:current from sensor 1 (Vxx_i_mot_ph_1) is out of range;3:current from sensor 2 (Vxx_i_mot_ph_2) is out of range;4:current from sensor 3 (Vxx_i_mot_ph_3) is out of range ,18DAF1DF,24,31,1,0,0,µs,22709A,62709A,ff,($709A) Max CPU load at 10ms ,18DAF1DF,24,31,1,0,0,µs,22709B,62709B,ff,($709B) CPU load at 10ms ,18DAF1DF,24,31,1,0,0,,22709C,62709C,ff,($709C) Gestion of current sensors,0:No Default;1:Phase open circuit default;2:IGBT open circuit default ,18DAF1DF,24,39,1,0,0,,22709D,62709D,ff,($709D) redundant supply 21 failure counter for post mortem analysis ,18DAF1DF,24,39,1,0,0,,22709E,62709E,ff,($709E) SeedBreaker to explain the reset cause ,18DAF1DF,24,39,1,0,0,,22709F,62709F,ff,($709F) Max of CPU load in micro-seconds (Vtx_TaskMaxDurationIT_A[12]) ,18DAF1DF,24,55,1,0,0,,2270A0,6270A0,4ff,($70A0) DIDs supported in range [$70A1 - $70C0] ,18DAF1DF,24,39,1,0,0,,2270A1,6270A1,ff,($70A1) Max of 10ms task (Vtx_TaskMaxDurationIT_A[3]) ,18DAF1DF,24,27,1,0,0,ms,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vtx_TaskMaxDurationIT_A[3]_(bit8-11) ,18DAF1DF,28,31,1,0,0,ms,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vxx_10ms_max_duration_(bit12-15) ,18DAF1DF,32,33,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Stack Overflow on State_(bit6-7),0:No overflow;1:overflow on Istack;2:overflow on Ustack;3:overflowon Csa ,18DAF1DF,34,34,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vbx_sply_mon_(bit5) ,18DAF1DF,35,35,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vbx_alim_21_mon_red_(bit4) ,18DAF1DF,36,36,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vbx_alim_21_mon_(bit3) ,18DAF1DF,37,37,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vbx_dfl_i_f_low_(bit2) ,18DAF1DF,38,38,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vsx_emot_n_dfl_sfty_(bit1) ,18DAF1DF,39,39,1,0,0,,2270A2,6270A2,ff,($70A2) Vxx_invt_rst_ctx_4.($70A2) Vbx_rot_temp_dfl_sfty_(bit0) ,18DAF1DF,24,39,.0000610352,16384,3,,2270A3,6270A3,ff,($70A3) Maximum normalized torque corresponding to max current saturation value ,18DAF1DF,24,39,.0000610352,16384,3,,2270A4,6270A4,ff,($70A4) Minimum normalized torque corresponding to max current saturation value ,18DAF1DF,24,39,.0000610352,16384,3,,2270A5,6270A5,ff,($70A5) Maximum instant value of normalized torque for cell overvoltage ,18DAF1DF,24,39,.0000610352,16384,3,,2270A6,6270A6,ff,($70A6) Maximum instant value of normalized torque for temperature derating ,18DAF1DF,24,39,.0000610352,16384,3,,2270A7,6270A7,ff,($70A7) Maximum instant value of normalized torque for voltage derating ,18DAF1DF,24,39,.0000610352,16384,3,,2270A8,6270A8,ff,($70A8) Minimum instant value of normalized torque for cell overvoltage ,18DAF1DF,24,39,1,0,0,,2270A9,6270A9,ff,($70A9) Vxx_invt_rst_ctx_5 ,18DAF1DF,24,55,1,0,0,,2270C0,6270C0,4ff,($70C0) DIDs supported in range [$70C1 - $70E0] ,18DAF1DF,24,31,1,0,0,,2270CA,6270CA,ff,($70CA) Number of the bloc which has nvrol error ,18DAF1DF,24,39,1,0,0,,2270CB,6270CB,ff,($70CB)Nvrol error counters.8 bits MSB(double bit errors number).8 bits LSB(simple bit errors number) ,18DAF1DF,24,24,1,0,0,,2270D5,6270D5,ff,($70D5) Rotor position sensor safety check,0:the 2 positions are inconsisten (difference > thershold);1:Both positions are consistent (difference maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed or blocked 98,component or system over temperature FB,- FC,-- ================================================ FILE: app/src/main/assets/ZOE_Ph2/LBC2_Dtcs.csv ================================================ 1B00,Low voltage supply input 1B01,Cell input lines 1B02,Battery pack voltage 1B03,Current sensor input 1B04,Few module thermistors in failure 1B05,Many module thermistors in failure 1B06,All module thermistors in failure 1B07,Cooling thermistor input 1B08,FAN speed input 1B09,FAN control output 1B0A,Main relay control output 1B0B,Precharge relay control output 1B0C,Battery pack temperature 1B0D,Internal memory RAM/ROM 1B0E,External NV memory (EEPROM, FLASH) 1B0F,Analog to Digital Converter 1B10,Master CPU/Slave Communication 1B12,Main ASSP 1B14,Relay 3 control output 1B15,Temp 2 thermistor input 1B16,MCPU/PCB temperature sensor 1B17,Air/Ambient thermistor input 1B18,Interlock1 1B19,Interlock2 1B1A,Interlock3 1B1B,Interlock4 1B1C,Busbar 1B1D,Current sensor 5V supply 1B1E,Current sensor 12V supply 1B1F,CAN current sensor (MCPU) 1B20,Relay 4 control output 1B21,Flash memory failure (FOTA) 1B30,Module thermistor 1 1B31,Module thermistor 2 1B32,Module thermistor 3 1B33,Module thermistor 4 1B34,Module thermistor 5 1B35,Module thermistor 6 1B36,Module thermistor 7 1B37,Module thermistor 8 1B38,Module thermistor 9 1B39,Module thermistor 10 1B3A,Module thermistor 11 1B3B,Module thermistor 12 1B3C,Module thermistor 13 1B3D,Module thermistor 14 1B3E,Module thermistor 15 1B3F,Module thermistor 16 1B40,Module thermistor 17 1B41,Module thermistor 18 1B42,Module thermistor 19 1B43,Module thermistor 20 1B44,Module thermistor 21 1B45,Module thermistor 22 1B46,Module thermistor 23 1B47,Module thermistor 24 1B48,Module thermistor 25 1B49,Module thermistor 26 1B4A,Module thermistor 27 1B4B,Module thermistor 28 1B4C,Module thermistor 29 1B4D,Module thermistor 30 1B4E,Module thermistor 31 1B4F,Module thermistor 32 1B60,Cell sensing lines - Module 1 1B61,Cell sensing lines - Module 2 1B62,Cell sensing lines - Module 3 1B63,Cell sensing lines - Module 4 1B64,Cell sensing lines - Module 5 1B65,Cell sensing lines - Module 6 1B66,Cell sensing lines - Module 7 1B67,Cell sensing lines - Module 8 1B68,Cell sensing lines - Module 9 1B69,Cell sensing lines - Module 10 1B6A,Cell sensing lines - Module 11 1B6B,Cell sensing lines - Module 12 1B6C,Cell sensing lines - Module 13 1B6D,Cell sensing lines - Module 14 1B6E,Cell sensing lines - Module 15 1B6F,Cell sensing lines - Module 16 1B70,Cell sensing lines - Module 17 1B71,Cell sensing lines - Module 18 1B72,Cell sensing lines - Module 19 1B73,Cell sensing lines - Module 20 1B74,Cell sensing lines - Module 21 1B80,State of Charge Estimation 1B81,State of Health Estimation 1B82,Available Power 1B83,Cell SOHP 1BA0,Low voltage supply input (SCPU) 1BA1,Cell input lines (SCPU) 1BA2,Insulation Resistance measurement circuit 1BA3,SCPU/PCB temperature sensor 1BA4,Current sensor input1 1BAD,Internal memory RAM/ROM (SCPU) 1BAE,External NV memory (EEPROM, FLASH)1 1BB1,Safety CPU/Slave Communication 1BB2,ASIC (redundancy) 1BB3,Hot Spot (SPARE) sensor 1BB4,Pack module temperature sensor (SCPU) 1BB5,CAN current sensor (SCPU)1 1BB6,Flash memory failure (FOTA) (SCPU) E140,CAN from HECM E142,CAN from Inverter E143,CAN from EVC/HEVC E144,CAN from BMS1 EA0D,CAN controller (MCPU) FD00,FOTA : SW bloc FD01,FOTA : Calibration bloc 1BAF,ADC (Analog-To-Digital ) Conversion Failure - BMS2 ================================================ FILE: app/src/main/assets/ZOE_Ph2/LBC2_Fields.csv ================================================ ,18DAF1DC,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,18DAF1DC,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming ,18DAF1DC,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnostic ,18DAF1DC,0,0,1,0,0,,1060,5060,ff,StartDiagnosticSession.Supplier ,18DAF1DC,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,18DAF1DC,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,18DAF1DC,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,18DAF1DC,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,18DAF1DC,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,18DAF1DC,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD,1:Current sensor internal error;4:HVMux diagnosis error (HVMuxSeq or HVMuxTestSource);6:GENERAL / Algorithm;8:Communication Failure (UART communication);17:half of thermistor in SCG. Performance is degraded;18:Cell Short circuit;19:Opened Cell;20:ELECTRICAL / SC Ground or Open;21:half thermistor in SCB or OC. Performance is degraded;22:LV Power Supply is too low;23:LV Power Supply is too high;25:Pack overcurrent;26:Insulation NOK (alert charge forbidden);28:ELECTRICAL / Voltage Out Of Range;30:Cell Wire Impendance Out of Range;33:Cell undervoltage derating;36:Power Off failure;49:No signal can be read from FAN;56:Internal 32kHz deviation;65:Error on Internal Memory (Main CPU);67:Communication failure with Flash memory;68:Corruption of datas;71:Corruption (checksum mechanism) on safety datas;73:ADC conversion error;81:PROGRAMMING / Not Programmed;98:1 thermistor in deviation (compare to other thermistors);129:Invalid data received on CAN Current sensor frames;135:Missing frame(s) from CAN Current sensor;136:Bus OFF on CAN transceiver (Main CPU);146:COMPONENT / Performance;150:COMPONENT / Internal;152:Temp1 value is over the limit threshold;241:Cell overvoltage safety;242:Cell overdischarge;244:Temp1 value is under the limit threshold;249:Available Power is limited;251:Battery pack temperature is over the functionnal threshold (derating);253:Current offset too high ,18DAF1DC,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,18DAF1DC,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,18DAF1DC,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,18DAF1DC,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1DC,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1DC,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1DC,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1DC,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1DC,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1DC,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1DC,16,39,1,0,0,,1903000000FF,5903000000FF,4ff,DTCRecord ,18DAF1DC,40,47,1,0,0,,1903000000FF,5903000000FF,4ff,DTCSnapshotRecordNumber ,18DAF1DC,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,18DAF1DC,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,18DAF1DC,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,18DAF1DC,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,18DAF1DC,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DC,56,87,.01,-2147483648,2,km,190600000080,590600000080,1ff,DTCExtendedData.Mileage ,18DAF1DC,16,39,1,0,0,,190600000084,590600000084,4ff,DTCRecord ,18DAF1DC,40,47,1,0,0,,190600000084,590600000084,ff,StatusOfDTC ,18DAF1DC,48,55,1,0,0,,190600000084,590600000084,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DC,56,63,1,0,0,,190600000084,590600000084,ff,DTCExtendedData.DTCOccurrenceCounter ,18DAF1DC,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord ,18DAF1DC,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC ,18DAF1DC,48,55,1,0,0,,190600000085,590600000085,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DC,56,87,1,0,0,km,190600000085,590600000085,1ff,DTCExtendedData.DTCLastDiseappearMileage ,18DAF1DC,16,39,1,0,0,,190600000086,590600000086,4ff,DTCRecord ,18DAF1DC,40,47,1,0,0,,190600000086,590600000086,ff,StatusOfDTC ,18DAF1DC,48,55,1,0,0,,190600000086,590600000086,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DC,56,87,1,0,0,km,190600000086,590600000086,1ff,DTCExtendedData.DTCTravelledDistanceFailurePresent ,18DAF1DC,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord ,18DAF1DC,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC ,18DAF1DC,48,55,1,0,0,,190600000087,590600000087,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DC,56,87,1,0,0,km,190600000087,590600000087,1ff,DTCExtendedData.DTCFirstAppearMileage ,18DAF1DC,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,18DAF1DC,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,18DAF1DC,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DC,56,87,1,0,0,km,1906000000FF,5906000000FF,1ff,DTCExtendedData.DTCFirstAppearMileage ,18DAF1DC,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,18DAF1DC,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,6912:Low voltage supply input;6913:Cell input lines;6914:Battery pack voltage;6915:Current sensor input;6916:Few module thermistors in failure;6917:Many module thermistors in failure;6918:All module thermistors in failure;6919:Cooling thermistor input;6920:FAN speed input;6921:FAN control output;6922:Main relay control output;6923:Precharge relay control output;6924:Battery pack temperature;6925:Internal memory RAM/ROM;6926:External NV memory (EEPROM- FLASH);6927:Analog to Digital Converter;6928:Master CPU/Slave Communication;6930:Main ASSP;6932:Relay 3 control output;6933:Temp 2 thermistor input;6934:MCPU/PCB temperature sensor;6935:Air/Ambient thermistor input;6936:Interlock1;6937:Interlock2;6938:Interlock3;6939:Interlock4;6940:Busbar;6941:Current sensor 5V supply;6942:Current sensor 12V supply;6943:CAN current sensor (MCPU);6944:Relay 4 control output;6945:Flash memory failure (FOTA);6960:Module thermistor 1;6961:Module thermistor 2;6962:Module thermistor 3;6963:Module thermistor 4;6964:Module thermistor 5;6965:Module thermistor 6;6966:Module thermistor 7;6967:Module thermistor 8;6968:Module thermistor 9;6969:Module thermistor 10;6970:Module thermistor 11;6971:Module thermistor 12;6972:Module thermistor 13;6973:Module thermistor 14;6974:Module thermistor 15;6975:Module thermistor 16;6976:Module thermistor 17;6977:Module thermistor 18;6978:Module thermistor 19;6979:Module thermistor 20;6980:Module thermistor 21;6981:Module thermistor 22;6982:Module thermistor 23;6983:Module thermistor 24;6984:Module thermistor 25;6985:Module thermistor 26;6986:Module thermistor 27;6987:Module thermistor 28;6988:Module thermistor 29;6989:Module thermistor 30;6990:Module thermistor 31;6991:Module thermistor 32;7008:Cell sensing lines - Module 1;7009:Cell sensing lines - Module 2;7010:Cell sensing lines - Module 3;7011:Cell sensing lines - Module 4;7012:Cell sensing lines - Module 5;7013:Cell sensing lines - Module 6;7014:Cell sensing lines - Module 7;7015:Cell sensing lines - Module 8;7016:Cell sensing lines - Module 9;7017:Cell sensing lines - Module 10;7018:Cell sensing lines - Module 11;7019:Cell sensing lines - Module 12;7020:Cell sensing lines - Module 13;7021:Cell sensing lines - Module 14;7022:Cell sensing lines - Module 15;7023:Cell sensing lines - Module 16;7024:Cell sensing lines - Module 17;7025:Cell sensing lines - Module 18;7026:Cell sensing lines - Module 19;7027:Cell sensing lines - Module 20;7028:Cell sensing lines - Module 21;7040:State of Charge Estimation;7041:State of Health Estimation;7042:Available Power;7043:Cell SOHP;7072:Low voltage supply input (SCPU);7073:Cell input lines (SCPU);7074:Insulation Resistance measurement circuit;7075:SCPU/PCB temperature sensor;7076:Current sensor input1;7085:Internal memory RAM/ROM (SCPU);7086:External NV memory (EEPROM- FLASH)1;7087:ADC (Analog-To-Digital ) Conversion Failure - BMS2;7089:Safety CPU/Slave Communication;7090:ASIC (redundancy);7091:Hot Spot (SPARE) sensor;7092:Pack module temperature sensor (SCPU);7093:CAN current sensor (SCPU)1;7094:Flash memory failure (FOTA) (SCPU);57664:CAN from HECM;57666:CAN from Inverter;57667:CAN from EVC/HEVC;57668:CAN from BMS1;59917:CAN controller (MCPU);64768:FOTA - SW bloc;64769:FOTA - Calibration bloc ,18DAF1DC,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,18DAF1DC,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,18DAF1DC,16,31,1,0,0,,1914,5914,ff,DTCDeviceIdentifier,6912:Low voltage supply input;6913:Cell input lines;6914:Battery pack voltage;6915:Current sensor input;6916:Few module thermistors in failure;6917:Many module thermistors in failure;6918:All module thermistors in failure;6919:Cooling thermistor input;6920:FAN speed input;6921:FAN control output;6922:Main relay control output;6923:Precharge relay control output;6924:Battery pack temperature;6925:Internal memory RAM/ROM;6926:External NV memory (EEPROM- FLASH);6927:Analog to Digital Converter;6928:Master CPU/Slave Communication;6930:Main ASSP;6932:Relay 3 control output;6933:Temp 2 thermistor input;6934:MCPU/PCB temperature sensor;6935:Air/Ambient thermistor input;6936:Interlock1;6937:Interlock2;6938:Interlock3;6939:Interlock4;6940:Busbar;6941:Current sensor 5V supply;6942:Current sensor 12V supply;6943:CAN current sensor (MCPU);6944:Relay 4 control output;6945:Flash memory failure (FOTA);6960:Module thermistor 1;6961:Module thermistor 2;6962:Module thermistor 3;6963:Module thermistor 4;6964:Module thermistor 5;6965:Module thermistor 6;6966:Module thermistor 7;6967:Module thermistor 8;6968:Module thermistor 9;6969:Module thermistor 10;6970:Module thermistor 11;6971:Module thermistor 12;6972:Module thermistor 13;6973:Module thermistor 14;6974:Module thermistor 15;6975:Module thermistor 16;6976:Module thermistor 17;6977:Module thermistor 18;6978:Module thermistor 19;6979:Module thermistor 20;6980:Module thermistor 21;6981:Module thermistor 22;6982:Module thermistor 23;6983:Module thermistor 24;6984:Module thermistor 25;6985:Module thermistor 26;6986:Module thermistor 27;6987:Module thermistor 28;6988:Module thermistor 29;6989:Module thermistor 30;6990:Module thermistor 31;6991:Module thermistor 32;7008:Cell sensing lines - Module 1;7009:Cell sensing lines - Module 2;7010:Cell sensing lines - Module 3;7011:Cell sensing lines - Module 4;7012:Cell sensing lines - Module 5;7013:Cell sensing lines - Module 6;7014:Cell sensing lines - Module 7;7015:Cell sensing lines - Module 8;7016:Cell sensing lines - Module 9;7017:Cell sensing lines - Module 10;7018:Cell sensing lines - Module 11;7019:Cell sensing lines - Module 12;7020:Cell sensing lines - Module 13;7021:Cell sensing lines - Module 14;7022:Cell sensing lines - Module 15;7023:Cell sensing lines - Module 16;7024:Cell sensing lines - Module 17;7025:Cell sensing lines - Module 18;7026:Cell sensing lines - Module 19;7027:Cell sensing lines - Module 20;7028:Cell sensing lines - Module 21;7040:State of Charge Estimation;7041:State of Health Estimation;7042:Available Power;7043:Cell SOHP;7072:Low voltage supply input (SCPU);7073:Cell input lines (SCPU);7074:Insulation Resistance measurement circuit;7075:SCPU/PCB temperature sensor;7076:Current sensor input1;7085:Internal memory RAM/ROM (SCPU);7086:External NV memory (EEPROM- FLASH)1;7087:ADC (Analog-To-Digital ) Conversion Failure - BMS2;7089:Safety CPU/Slave Communication;7090:ASIC (redundancy);7091:Hot Spot (SPARE) sensor;7092:Pack module temperature sensor (SCPU);7093:CAN current sensor (SCPU)1;7094:Flash memory failure (FOTA) (SCPU);57664:CAN from HECM;57666:CAN from Inverter;57667:CAN from EVC/HEVC;57668:CAN from BMS1;59917:CAN controller (MCPU);64768:FOTA - SW bloc;64769:FOTA - Calibration bloc ,18DAF1DC,32,39,1,0,0,,1914,5914,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,18DAF1DC,40,47,1,0,0,,1914,5914,ff,DTCFaultDetectionCounter ,18DAF1DC,24,55,1,0,0,,229000,629000,4ff,DIDs supported in range [$9001 - $9020] ,18DAF1DC,24,39,.000976563,0,3,V,229007,629007,ff,Maximum cell voltage (Wxx_avg_high_voltage) ,18DAF1DC,24,31,1,0,0,,229008,629008,ff,Number of Maximum Cell Voltage (Wxx_id_avg_high_voltage) ,18DAF1DC,24,39,.000976563,0,3,V,229009,629009,ff,Minimum cell voltage (Wxx_avg_low_voltage) ,18DAF1DC,24,31,1,0,0,,22900A,62900A,ff,Number of Minimum Cell Voltage (Wxx_id_avg_low_voltage) ,18DAF1DC,24,39,.0625,640,2,°C,229013,629013,ff,Minimum Temperature (Wxx_avg_low_temp) ,18DAF1DC,24,39,.0625,640,2,°C,229014,629014,ff,Maximum Temperature (Wxx_avg_high_temp) ,18DAF1DC,24,39,200,0,0,Ohm,229015,629015,ff,Isolation Impedance (Wxx_hv_isol_imped_rcy) ,18DAF1DC,24,55,1,0,0,,229020,629020,4ff,DIDs supported in range [$9021 - $9040] ,18DAF1DC,24,55,1,0,0,,229040,629040,4ff,DIDs supported in range [$9041 - $9060] ,18DAF1DC,24,55,1,0,0,,229060,629060,4ff,DIDs supported in range [$9061 - $9080] ,18DAF1DC,24,55,1,0,0,,229080,629080,4ff,DIDs supported in range [$9081 - $90A0] ,18DAF1DC,24,55,1,0,0,,2290A0,6290A0,4ff,DIDs supported in range [$90A1 - $90C0] ,18DAF1DC,24,55,1,0,0,,2290C0,6290C0,4ff,DIDs supported in range [$90C1 - $90E0] ,18DAF1DC,24,55,1,0,0,,2290E0,6290E0,4ff,DIDs supported in range [$90E1 - $9100] ,18DAF1DC,24,55,1,0,0,,229100,629100,4ff,DIDs supported in range [$9101 - $9120] ,18DAF1DC,24,55,1,0,0,,229120,629120,4ff,DIDs supported in range [$9121 - $9140] ,18DAF1DC,24,24,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).16,0:No failure;1:Slave No.16 in failure ,18DAF1DC,25,25,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).15,0:No failure;1:Slave No.15 in failure ,18DAF1DC,26,26,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).14,0:No failure;1:Slave No.14 in failure ,18DAF1DC,27,27,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).13,0:No failure;1:Slave No.13 in failure ,18DAF1DC,28,28,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).12,0:No failure;1:Slave No.12 in failure ,18DAF1DC,29,29,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).11,0:No failure;1:Slave No.12 in failure ,18DAF1DC,30,30,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).10,0:No failure;1:Slave No.10 in failure ,18DAF1DC,31,31,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).09,0:No failure;1:Slave No.9 in failure ,18DAF1DC,32,32,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).08,0:No failure;1:Slave No.8 in failure ,18DAF1DC,33,33,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).07,0:No failure;1:Slave No.7 in failure ,18DAF1DC,34,34,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).06,0:No failure;1:Slave No.6 in failure ,18DAF1DC,35,35,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).05,0:No failure;1:Slave No.5 in failure ,18DAF1DC,36,36,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).04,0:No failure;1:Slave No.4 in failure ,18DAF1DC,37,37,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).03,0:No failure;1:Slave No.3 in failure ,18DAF1DC,38,38,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).02,0:No failure;1:Slave No.2 in failure ,18DAF1DC,39,39,1,0,0,,229129,629129,ff,Slaves Failure Status (Wxx_slv_fail_nr).01,0:No failure;1:Slave No.1 in failure ,18DAF1DC,24,55,1,0,0,,229140,629140,4ff,DIDs supported in range [$9141 - $9160] ,18DAF1DC,24,55,1,0,0,,229160,629160,4ff,DIDs supported in range [$9161 - $9180] ,18DAF1DC,24,55,1,0,0,,229180,629180,4ff,DIDs supported in range [$9181 - $91A0] ,18DAF1DC,24,55,1,0,0,,2291A0,6291A0,4ff,DIDs supported in range [$91A1 - $91C0] ,18DAF1DC,24,39,.0625,640,2,°C,2291B8,6291B8,ff,Board temperature (Wxx_raw_cpu_temp) ,18DAF1DC,28,39,.001953125,0,3,V,2291BF,6291BF,ff,ADC 5V reference / P5VPREF_DIAG (Wxx_raw_5v_ref_diag) ,18DAF1DC,24,55,1,0,0,,2291C0,6291C0,4ff,DIDs supported in range [$91C1 - $91E0] ,18DAF1DC,24,55,1,0,0,,2291E0,6291E0,4ff,DIDs supported in range [$91E1 - $9200] ,18DAF1DC,24,39,.001,0,3,V,2291FA,6291FA,1ff,Raw IRDD Um (Rm voltage)measurement (Wxx_raw_hv_iso_Um_mes) ,18DAF1DC,24,39,.001,0,3,V,2291FB,6291FB,ff,IRDD Um (Rm voltage) Measurement (Wxx_hv_iso_Um_mes) ,18DAF1DC,24,39,.000976563,0,3,V,2291FC,6291FC,ff,Low Voltage Supply (SUB CPU) (Wxx_raw_14v_mes) ,18DAF1DC,31,31,1,0,0,,2291FD,6291FD,ff,VBATP2_CMD - Bypass request (Wbx_lv_sply_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DC,31,31,1,0,0,,2291FE,6291FE,ff,VBATP2_CMD - Bypass value (Wbx_lv_sply_byp_val),0:OPEN/OFF;1:CLOSE/ON ,18DAF1DC,24,55,1,0,0,,229200,629200,4ff,DIDs supported in range [$9201 - $9220] ,18DAF1DC,31,31,1,0,0,,229201,629201,ff,S1_CMD - Bypass request (Wbx_hv_iso_switch_main_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DC,31,31,1,0,0,,229202,629202,ff,S1_CMD - Bypass value (Wbx_hv_iso_switch_main_byp_val),0:Switch OPENED;1:Switch CLOSED ,18DAF1DC,31,31,1,0,0,,229203,629203,ff,S2_CMD - Bypass request (Wbx_hv_iso_switch_diag_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DC,31,31,1,0,0,,229204,629204,ff,S2_CMD - Bypass value (Wbx_hv_iso_switch_diag_byp_val),0:Switch OPENED;1:Switch CLOSED ,18DAF1DC,31,31,1,0,0,,229205,629205,ff,P0VP_IRDD(0/60V)IRDD Bypass request (Wbx_hv_iso_supply_ctl_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DC,31,31,1,0,0,,229206,629206,ff,P0VP_IRDD - 0 or 60V IRDD Bypass value (Wbx_hv_iso_supply_ctl_byp_val),0:CC 60V OFF;1:CC 60V ON ,18DAF1DC,31,31,1,0,0,,229207,629207,ff,P60VP_IRDD - PWM Bypass request (Wbx_hv_iso_supply_ena_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DC,31,31,1,0,0,,229208,629208,ff,P60VP_IRDD - PWM Bypass value (Wbx_hv_iso_supply_ena_byp_val),0:60V Supply OFF;1:60V Supply ON ,18DAF1DC,24,31,1,40,0,°C,229209,629209,ff,Spare SCPU ANA input (Hot Spot Temp) (Wxx_raw_hspt_temp) ,18DAF1DC,24,39,.001,0,3,V,22920A,62920A,1ff,IRDD_MEA (with P5VP_REF2 as ADC reference) ,18DAF1DC,24,55,1,0,0,,229220,629220,4ff,DIDs supported in range [$9221 - $9240] ,18DAF1DC,24,55,1,0,0,,229240,629240,4ff,DIDs supported in range [$9241 - $9260] ,18DAF1DC,24,31,1,0,0,,229259,629259,ff,BMS mode ,18DAF1DC,24,31,1,0,0,,22925A,62925A,ff,Index of thermistor with maximal temperature value (Wxx_id_avg_high_temp) ,18DAF1DC,24,31,1,0,0,,22925B,62925B,ff,Index of thermistor with minimal temperature value (Wxx_id_avg_low_temp) ,18DAF1DC,30,31,1,0,0,,22925C,62925C,ff,Relay status, internal value ,18DAF1DC,24,24,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).16,0:No failure;1:ALU ,18DAF1DC,25,25,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).15,0:No failure;1:NOT USED ,18DAF1DC,26,26,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).14,0:No failure;1:NOT USED ,18DAF1DC,27,27,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).13,0:No failure;1:HVMUXseq ,18DAF1DC,28,28,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).12,0:No failure;1:HVMUXSWOC ,18DAF1DC,29,29,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).11,0:No failure;1:VPTAT ,18DAF1DC,30,30,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).10,0:No failure;1:ADCL ,18DAF1DC,31,31,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).09,0:No failure;1:ADCH ,18DAF1DC,32,32,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).08,0:No failure;1:LSAMP ,18DAF1DC,33,33,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).07,0:No failure;1:VAAdiag ,18DAF1DC,34,34,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).06,0:No failure;1:RefV ,18DAF1DC,35,35,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).05,0:No failure;1:OTemp ,18DAF1DC,36,36,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).04,0:No failure;1:VHVHDRM ,18DAF1DC,37,37,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).03,0:No failure;1:VHVOV ,18DAF1DC,38,38,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).02,0:No failure;1:VHVUV ,18DAF1DC,39,39,1,0,0,,22925D,62925D,ff,ASIC internal failure identifier(Wxx_assp1_tron_id).01,0:No failure;1:NOT USED ,18DAF1DC,24,24,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).15,0:No Error;1:Data Flash Check Error ,18DAF1DC,25,25,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).14,0:No Error;1:Deep-Stop Mode Reset ,18DAF1DC,26,26,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).13,0:No Error;1:Power-Up Reset ,18DAF1DC,27,27,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).12,0:No Error;1:Core Voltage Monitor (CVM) Reset ,18DAF1DC,28,28,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).11,0:No Error;1:Low Voltage Indicator (LVI) Reset ,18DAF1DC,29,29,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).10,0:No Error;1:Clock Monitor Reset 2 ,18DAF1DC,30,30,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).09,0:No Error;1:Clock Monitor Reset 1 ,18DAF1DC,31,31,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).08,0:No Error;1:Clock Monitor Reset 0 ,18DAF1DC,32,32,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).07,0:No Error;1:External Reset ,18DAF1DC,33,33,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).06,0:No Error;1:Watchdog Reset 1 ,18DAF1DC,34,34,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).05,0:No Error;1:Watchdog Reset 0 ,18DAF1DC,35,35,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).04,0:No Error;1:Software Reset ,18DAF1DC,36,36,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).03,0:No Error;1:Trap Error ,18DAF1DC,37,37,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).02,0:No Error;1:Stack Check Error ,18DAF1DC,38,38,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).01,0:No Error;1:R0M Check Error ,18DAF1DC,39,39,1,0,0,,22925E,62925E,ff,CPU2 reset context(Wxx_rst_chk_sum_id).00,0:No Error;1:RAM Check Error ,18DAF1DC,24,55,1,0,0,,229260,629260,4ff,DIDs supported in range [$9261 - $9280] ,18DAF1DC,24,47,1,0,0,',229261,629261,ff,Abs time since first ignition ,18DAF1DC,24,55,.01,-2147483648,2,km,229262,629262,1ff,Vehicle distance totalizer ,18DAF1DC,24,55,1,0,0,,229280,629280,4ff,DIDs supported in range [$9281 - $92A0] ,18DAF1DC,31,31,1,0,0,,229281,629281,ff,Sleep condition force,0:enabled;1:disabled ,18DAF1DC,24,31,1,0,0,,229282,629282,ff,PCB traceability.01 ,18DAF1DC,32,39,1,0,0,,229282,629282,ff,PCB traceability.02 ,18DAF1DC,40,47,1,0,0,,229282,629282,ff,PCB traceability.03 ,18DAF1DC,48,55,1,0,0,,229282,629282,ff,PCB traceability.04 ,18DAF1DC,56,63,1,0,0,,229282,629282,ff,PCB traceability.05 ,18DAF1DC,64,71,1,0,0,,229282,629282,ff,PCB traceability.06 ,18DAF1DC,72,79,1,0,0,,229282,629282,ff,PCB traceability.07 ,18DAF1DC,80,87,1,0,0,,229282,629282,ff,PCB traceability.08 ,18DAF1DC,88,95,1,0,0,,229282,629282,ff,PCB traceability.09 ,18DAF1DC,96,103,1,0,0,,229282,629282,ff,PCB traceability.10 ,18DAF1DC,104,111,1,0,0,,229282,629282,ff,PCB traceability.11 ,18DAF1DC,112,119,1,0,0,,229282,629282,ff,PCB traceability.12 ,18DAF1DC,120,127,1,0,0,,229282,629282,ff,PCB traceability.13 ,18DAF1DC,128,135,1,0,0,,229282,629282,ff,PCB traceability.14 ,18DAF1DC,136,143,1,0,0,,229282,629282,ff,PCB traceability.15 ,18DAF1DC,144,151,1,0,0,,229282,629282,ff,PCB traceability.16 ,18DAF1DC,152,159,1,0,0,,229282,629282,ff,PCB traceability.17 ,18DAF1DC,160,167,1,0,0,,229282,629282,ff,PCB traceability.18 ,18DAF1DC,168,175,1,0,0,,229282,629282,ff,PCB traceability.19 ,18DAF1DC,176,183,1,0,0,,229282,629282,ff,PCB traceability.20 ,18DAF1DC,184,191,1,0,0,,229282,629282,ff,PCB traceability.21 ,18DAF1DC,192,199,1,0,0,,229282,629282,ff,PCB traceability.22 ,18DAF1DC,200,207,1,0,0,,229282,629282,ff,PCB traceability.23 ,18DAF1DC,208,215,1,0,0,,229282,629282,ff,PCB traceability.24 ,18DAF1DC,216,223,1,0,0,,229282,629282,ff,PCB traceability.25 ,18DAF1DC,224,231,1,0,0,,229282,629282,ff,PCB traceability.26 ,18DAF1DC,232,239,1,0,0,,229282,629282,ff,PCB traceability.27 ,18DAF1DC,240,247,1,0,0,,229282,629282,ff,PCB traceability.28 ,18DAF1DC,248,255,1,0,0,,229282,629282,ff,PCB traceability.29 ,18DAF1DC,256,263,1,0,0,,229282,629282,ff,PCB traceability.30 ,18DAF1DC,264,271,1,0,0,,229282,629282,ff,PCB traceability.31 ,18DAF1DC,24,55,1,0,0,,2292A0,6292A0,4ff,DIDs supported in range [$92A1 - $92C0] ,18DAF1DC,24,55,1,0,0,,2292C0,6292C0,4ff,DIDs supported in range [$92C1 - $92E0] ,18DAF1DC,24,55,1,0,0,,2292E0,6292E0,4ff,DIDs supported in range [$92E1 - $9300] ,18DAF1DC,24,55,1,0,0,,229300,629300,4ff,DIDs supported in range [$9301 - $9320] ,18DAF1DC,24,55,1,0,0,,229320,629320,4ff,DIDs supported in range [$9321 - $9340] ,18DAF1DC,24,55,1,0,0,,229340,629340,4ff,DIDs supported in range [$9341 - $9360] ,18DAF1DC,24,55,1,0,0,,229360,629360,4ff,DIDs supported in range [$9361 - $9380] ,18DAF1DC,24,55,1,0,0,,229380,629380,4ff,DIDs supported in range [$9381 - $93A0] ,18DAF1DC,24,55,1,0,0,,2293A0,6293A0,4ff,DIDs supported in range [$93A1 - $93C0] ,18DAF1DC,24,55,1,0,0,,2293C0,6293C0,4ff,DIDs supported in range [$93C1 - $93E0] ,18DAF1DC,24,55,1,0,0,,2293E0,6293E0,4ff,DIDs supported in range [$93E1 - $9400] ,18DAF1DC,24,55,1,0,0,,229400,629400,4ff,DIDs supported in range [$9401 - $9420] ,18DAF1DC,24,55,1,0,0,,229420,629420,4ff,DIDs supported in range [$9421 - $9440] ,18DAF1DC,24,55,1,0,0,,229440,629440,4ff,DIDs supported in range [$9441 - $9460] ,18DAF1DC,24,55,1,0,0,,229460,629460,4ff,DIDs supported in range [$9461 - $9480] ,18DAF1DC,24,55,1,0,0,,229480,629480,4ff,DIDs supported in range [$9481 - $94A0] ,18DAF1DC,24,55,1,0,0,,2294A0,6294A0,4ff,DIDs supported in range [$94A1 - $94C0] ,18DAF1DC,24,55,1,0,0,,2294C0,6294C0,4ff,DIDs supported in range [$94C1 - $94E0] ,18DAF1DC,24,55,1,0,0,,2294E0,6294E0,4ff,DIDs supported in range [$94E1 - $9500] ,18DAF1DC,24,55,1,0,0,,229500,629500,4ff,DIDs supported in range [$9501 - $9520] ,18DAF1DC,24,55,1,0,0,,229520,629520,4ff,DIDs supported in range [$9521 - $9540] ,18DAF1DC,24,55,1,0,0,,229540,629540,4ff,DIDs supported in range [$9541 - $9560] ,18DAF1DC,24,55,1,0,0,,229560,629560,4ff,DIDs supported in range [$9561 - $9580] ,18DAF1DC,24,55,1,0,0,,229580,629580,4ff,DIDs supported in range [$9581 - $95A0] ,18DAF1DC,24,55,1,0,0,,2295A0,6295A0,4ff,DIDs supported in range [$95A1 - $95C0] ,18DAF1DC,24,55,1,0,0,,2295C0,6295C0,4ff,DIDs supported in range [$95C1 - $95E0] ,18DAF1DC,24,55,1,0,0,,2295E0,6295E0,4ff,DIDs supported in range [$95E1 - $9600] ,18DAF1DC,24,55,1,0,0,,229600,629600,4ff,DIDs supported in range [$9601 - $9620] ,18DAF1DC,24,55,1,0,0,,229620,629620,4ff,DIDs supported in range [$9621 - $9640] ,18DAF1DC,24,55,1,0,0,,229640,629640,4ff,DIDs supported in range [$9641 - $9660] ,18DAF1DC,24,55,1,0,0,,229660,629660,4ff,DIDs supported in range [$9661 - $9680] ,18DAF1DC,24,55,1,0,0,,229680,629680,4ff,DIDs supported in range [$9681 - $96A0] ,18DAF1DC,24,55,1,0,0,,2296A0,6296A0,4ff,DIDs supported in range [$96A1 - $96C0] ,18DAF1DC,24,55,1,0,0,,2296C0,6296C0,4ff,DIDs supported in range [$96C1 - $96E0] ,18DAF1DC,24,55,1,0,0,,2296E0,6296E0,4ff,DIDs supported in range [$96E1 - $9700] ,18DAF1DC,24,55,1,0,0,,229700,629700,4ff,DIDs supported in range [$9701 - $9720] ,18DAF1DC,24,55,1,0,0,,229720,629720,4ff,DIDs supported in range [$9721 - $9740] ,18DAF1DC,24,55,1,0,0,,229740,629740,4ff,DIDs supported in range [$9741 - $9760] ,18DAF1DC,24,55,1,0,0,,229760,629760,4ff,DIDs supported in range [$9761 - $9780] ,18DAF1DC,24,55,1,0,0,,229780,629780,4ff,DIDs supported in range [$9781 - $97A0] ,18DAF1DC,24,55,1,0,0,,2297A0,6297A0,4ff,DIDs supported in range [$97A1 - $97C0] ,18DAF1DC,24,55,1,0,0,,2297C0,6297C0,4ff,DIDs supported in range [$97C1 - $97E0] ,18DAF1DC,24,55,1,0,0,,2297E0,6297E0,4ff,DIDs supported in range [$97E1 - $9800] ,18DAF1DC,24,55,1,0,0,,229800,629800,4ff,DIDs supported in range [$9801 - $9820] ,18DAF1DC,24,55,1,0,0,,229820,629820,4ff,DIDs supported in range [$9821 - $9840] ,18DAF1DC,24,55,1,0,0,,229840,629840,4ff,DIDs supported in range [$9841 - $9860] ,18DAF1DC,24,55,1,0,0,,229860,629860,4ff,DIDs supported in range [$9861 - $9880] ,18DAF1DC,24,55,1,0,0,,229880,629880,4ff,DIDs supported in range [$9881 - $98A0] ,18DAF1DC,24,55,1,0,0,,2298A0,6298A0,4ff,DIDs supported in range [$98A1 - $98C0] ,18DAF1DC,24,55,1,0,0,,2298C0,6298C0,4ff,DIDs supported in range [$98C1 - $98E0] ,18DAF1DC,24,55,1,0,0,,2298E0,6298E0,4ff,DIDs supported in range [$98E1 - $9900] ,18DAF1DC,24,55,1,0,0,,229900,629900,4ff,DIDs supported in range [$9901 - $9920] ,18DAF1DC,24,55,1,0,0,,229920,629920,4ff,DIDs supported in range [$9921 - $9940] ,18DAF1DC,24,55,1,0,0,,229940,629940,4ff,DIDs supported in range [$9941 - $9960] ,18DAF1DC,24,55,1,0,0,,229960,629960,4ff,DIDs supported in range [$9961 - $9980] ,18DAF1DC,24,55,1,0,0,,229980,629980,4ff,DIDs supported in range [$9981 - $99A0] ,18DAF1DC,24,55,1,0,0,,2299A0,6299A0,4ff,DIDs supported in range [$99A1 - $99C0] ,18DAF1DC,24,55,1,0,0,,2299C0,6299C0,4ff,DIDs supported in range [$99C1 - $99E0] ,18DAF1DC,24,55,1,0,0,,2299E0,6299E0,4ff,DIDs supported in range [$99E1 - $9A00] ,18DAF1DC,24,55,1,0,0,,229A00,629A00,4ff,DIDs supported in range [$9A01 - $9A20] ,18DAF1DC,24,55,1,0,0,,229A20,629A20,4ff,DIDs supported in range [$9A21 - $9A40] ,18DAF1DC,24,55,1,0,0,,229A40,629A40,4ff,DIDs supported in range [$9A41 - $9A60] ,18DAF1DC,24,55,1,0,0,,229A60,629A60,4ff,DIDs supported in range [$9A61 - $9A80] ,18DAF1DC,24,55,1,0,0,,229A80,629A80,4ff,DIDs supported in range [$9A81 - $9AA0] ,18DAF1DC,24,55,1,0,0,,229AA0,629AA0,4ff,DIDs supported in range [$9AA1 - $9AC0] ,18DAF1DC,24,55,1,0,0,,229AC0,629AC0,4ff,DIDs supported in range [$9AC1 - $9AE0] ,18DAF1DC,24,55,1,0,0,,229AE0,629AE0,4ff,DIDs supported in range [$9AE1 - $9B00] ,18DAF1DC,24,55,1,0,0,,229B00,629B00,4ff,DIDs supported in range [$9B01 - $9B20] ,18DAF1DC,24,55,1,0,0,,229B20,629B20,4ff,DIDs supported in range [$9B21 - $9B40] ,18DAF1DC,24,55,1,0,0,,229B40,629B40,4ff,DIDs supported in range [$9B41 - $9B60] ,18DAF1DC,24,55,1,0,0,,229B60,629B60,4ff,DIDs supported in range [$9B61 - $9B80] ,18DAF1DC,24,55,1,0,0,,229B80,629B80,4ff,DIDs supported in range [$9B81 - $9BA0] ,18DAF1DC,24,55,1,0,0,,229BA0,629BA0,4ff,DIDs supported in range [$9BA1 - $9BC0] ,18DAF1DC,24,55,1,0,0,,229BC0,629BC0,4ff,DIDs supported in range [$9BC1 - $9BE0] ,18DAF1DC,24,55,1,0,0,,229BE0,629BE0,4ff,DIDs supported in range [$9BE1 - $9C00] ,18DAF1DC,24,55,1,0,0,,229C00,629C00,4ff,DIDs supported in range [$9C01 - $9C20] ,18DAF1DC,24,55,1,0,0,,229C20,629C20,4ff,DIDs supported in range [$9C21 - $9C40] ,18DAF1DC,24,55,1,0,0,,229C40,629C40,4ff,DIDs supported in range [$9C41 - $9C60] ,18DAF1DC,24,55,1,0,0,,229C60,629C60,4ff,DIDs supported in range [$9C61 - $9C80] ,18DAF1DC,24,55,1,0,0,,229C80,629C80,4ff,DIDs supported in range [$9C81 - $9CA0] ,18DAF1DC,24,55,1,0,0,,229CA0,629CA0,4ff,DIDs supported in range [$9CA1 - $9CC0] ,18DAF1DC,24,55,1,0,0,,229CC0,629CC0,4ff,DIDs supported in range [$9CC1 - $9CE0] ,18DAF1DC,24,55,1,0,0,,229CE0,629CE0,4ff,DIDs supported in range [$9CE1 - $9D00] ,18DAF1DC,24,55,1,0,0,,229D00,629D00,4ff,DIDs supported in range [$9D01 - $9D20] ,18DAF1DC,24,55,1,0,0,,229D20,629D20,4ff,DIDs supported in range [$9D21 - $9D40] ,18DAF1DC,24,55,1,0,0,,229D40,629D40,4ff,DIDs supported in range [$9D41 - $9D60] ,18DAF1DC,24,55,1,0,0,,229D60,629D60,4ff,DIDs supported in range [$9D61 - $9D80] ,18DAF1DC,24,55,1,0,0,,229D80,629D80,4ff,DIDs supported in range [$9D81 - $9DA0] ,18DAF1DC,24,55,1,0,0,,229DA0,629DA0,4ff,DIDs supported in range [$9DA1 - $9DC0] ,18DAF1DC,24,55,1,0,0,,229DC0,629DC0,4ff,DIDs supported in range [$9DC1 - $9DE0] ,18DAF1DC,24,55,1,0,0,,229DE0,629DE0,4ff,DIDs supported in range [$9DE1 - $9E00] ,18DAF1DC,24,55,1,0,0,,229E00,629E00,4ff,DIDs supported in range [$9E01 - $9E20] ,18DAF1DC,24,55,1,0,0,,229E20,629E20,4ff,DIDs supported in range [$9E21 - $9E40] ,18DAF1DC,24,55,1,0,0,,229E40,629E40,4ff,DIDs supported in range [$9E41 - $9E60] ,18DAF1DC,24,55,1,0,0,,229E60,629E60,4ff,DIDs supported in range [$9E61 - $9E80] ,18DAF1DC,24,55,1,0,0,,229E80,629E80,4ff,DIDs supported in range [$9E81 - $9EA0] ,18DAF1DC,24,55,1,0,0,,229EA0,629EA0,4ff,DIDs supported in range [$9EA1 - $9EC0] ,18DAF1DC,24,55,1,0,0,,229EC0,629EC0,4ff,DIDs supported in range [$9EC1 - $9EE0] ,18DAF1DC,24,55,1,0,0,,229EE0,629EE0,4ff,DIDs supported in range [$9EE1 - $9F00] ,18DAF1DC,24,55,1,0,0,,229F00,629F00,4ff,DIDs supported in range [$9F01 - $9F20] ,18DAF1DC,24,55,1,0,0,,229F20,629F20,4ff,DIDs supported in range [$9F21 - $9F40] ,18DAF1DC,24,55,1,0,0,,229F40,629F40,4ff,DIDs supported in range [$9F41 - $9F60] ,18DAF1DC,24,55,1,0,0,,229F60,629F60,4ff,DIDs supported in range [$9F61 - $9F80] ,18DAF1DC,24,55,1,0,0,,229F80,629F80,4ff,DIDs supported in range [$9F81 - $9FA0] ,18DAF1DC,24,55,1,0,0,,229FA0,629FA0,4ff,DIDs supported in range [$9FA1 - $9FC0] ,18DAF1DC,24,55,1,0,0,,229FC0,629FC0,4ff,DIDs supported in range [$9FC1 - $9FE0] ,18DAF1DC,24,55,1,0,0,,229FE0,629FE0,4ff,DIDs supported in range [$9FE1 - $A000] ,18DAF1DC,24,55,1,0,0,,22F000,62F000,4ff,DIDs supported in range [$F001 - $F020] ,18DAF1DC,24,31,1,0,0,,22F010,62F010,ff,Fingerprint information.01 ,18DAF1DC,32,39,1,0,0,,22F010,62F010,ff,Fingerprint information.02 ,18DAF1DC,40,47,1,0,0,,22F010,62F010,ff,Fingerprint information.03 ,18DAF1DC,48,55,1,0,0,,22F010,62F010,ff,Fingerprint information.04 ,18DAF1DC,56,63,1,0,0,,22F010,62F010,ff,Fingerprint information.05 ,18DAF1DC,64,71,1,0,0,,22F010,62F010,ff,Fingerprint information.06 ,18DAF1DC,72,79,1,0,0,,22F010,62F010,ff,Fingerprint information.07 ,18DAF1DC,80,87,1,0,0,,22F010,62F010,ff,Fingerprint information.08 ,18DAF1DC,88,103,1,0,0,,22F010,62F010,ff,Fingerprint information.09 ,18DAF1DC,96,103,1,0,0,,22F010,62F010,ff,Fingerprint information.10 ,18DAF1DC,104,111,1,0,0,,22F010,62F010,ff,Fingerprint information.11 ,18DAF1DC,112,119,1,0,0,,22F010,62F010,ff,Fingerprint information.12 ,18DAF1DC,120,127,1,0,0,,22F010,62F010,ff,Fingerprint information.13 ,18DAF1DC,128,135,1,0,0,,22F010,62F010,ff,Fingerprint information.14 ,18DAF1DC,136,143,1,0,0,,22F010,62F010,ff,Fingerprint information.15 ,18DAF1DC,144,151,1,0,0,,22F010,62F010,ff,Fingerprint information.16 ,18DAF1DC,24,103,1,0,0,,22F012,62F012,2ff,OperationalReference(Ref C if available or Ref B then 0 if no Ref) ,18DAF1DC,24,55,1,0,0,,22F020,62F020,4ff,DIDs supported in range [$F021 - $F040] ,18DAF1DC,24,39,1,0,0,,22F0A0,62F0A0,4ff,FOTA Status ,18DAF1DC,24,31,1,0,0,,22F0A5,62F0A5,4ff,FOTA cancel counter ,18DAF1DC,24,55,1,0,0,,22F100,62F100,4ff,DIDs supported in range [$F101 - $F120] ,18DAF1DC,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,18DAF1DC,24,55,1,0,0,,22F120,62F120,4ff,DIDs supported in range [$F121 - $F140] ,18DAF1DC,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,18DAF1DC,24,39,1,0,0,,22F180,62F180,2ff,Boot Version(bootSoftwareIdentification) ,18DAF1DC,24,39,1,0,0,,22F182,62F182,4ff,Calibration number ,18DAF1DC,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,18DAF1DC,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,18DAF1DC,24,63,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,18DAF1DC,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,18DAF1DC,24,159,1,0,0,,22F190,62F190,2ff,VIN ,18DAF1DC,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,18DAF1DC,24,47,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,18DAF1DC,24,55,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,18DAF1DC,24,103,1,0,0,,22F196,62F196,2ff,OBD Approval ,18DAF1DC,24,279,1,0,0,,22F197,62F197,2ff,OBD EngineType ,18DAF1DC,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,18DAF1DC,24,103,1,0,0,,22F1A1,62F1A1,2ff,Vehicle Manufacturer Spare Part Number (Nissan) ,18DAF1DC,24,39,1,0,0,,22FD00,62FD00,4ff,Supplier reserved ,18DAF1DC,24,39,1,0,0,,22FD01,62FD01,4ff,Supplier reserved1 ,18DAF1DC,24,39,1,0,0,,22FEFF,62FEFF,4ff,Supplier componant reset ,18DAF1DC,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/LBC2_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adj. failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or sys. operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/LBC_Dtcs.csv ================================================ 1B00,Low voltage supply input 1B01,Cell input lines 1B02,Battery pack voltage 1B03,Current sensor input 1B04,Few module thermistors in failure 1B05,Many module thermistors in failure 1B06,All module thermistors in failure 1B07,Cooling thermistor input 1B08,FAN speed input 1B09,FAN control output 1B0A,Main relay control output 1B0B,Precharge relay control output 1B0C,Battery pack temperature 1B0D,Internal memory RAM/ROM 1B0E,External NV memory (EEPROM, FLASH) 1B0F,Analog to Digital Converter 1B10,Master CPU/Slave Communication 1B12,Main ASSP 1B14,Relay 3 control output 1B15,Temp 2 thermistor input 1B16,MCPU/PCB temperature sensor 1B17,Air/Ambient thermistor input 1B18,Interlock1 1B19,Interlock2 1B1A,Interlock3 1B1B,Interlock4 1B1C,Busbar 1B1D,Current sensor 5V supply 1B1E,Current sensor 12V supply 1B1F,CAN current sensor (MCPU) 1B20,Relay 4 control output 1B21,Flash memory failure (FOTA) 1B30,Module thermistor 1 1B31,Module thermistor 2 1B32,Module thermistor 3 1B33,Module thermistor 4 1B34,Module thermistor 5 1B35,Module thermistor 6 1B36,Module thermistor 7 1B37,Module thermistor 8 1B38,Module thermistor 9 1B39,Module thermistor 10 1B3A,Module thermistor 11 1B3B,Module thermistor 12 1B3C,Module thermistor 13 1B3D,Module thermistor 14 1B3E,Module thermistor 15 1B3F,Module thermistor 16 1B40,Module thermistor 17 1B41,Module thermistor 18 1B42,Module thermistor 19 1B43,Module thermistor 20 1B44,Module thermistor 21 1B45,Module thermistor 22 1B46,Module thermistor 23 1B47,Module thermistor 24 1B48,Module thermistor 25 1B49,Module thermistor 26 1B4A,Module thermistor 27 1B4B,Module thermistor 28 1B4C,Module thermistor 29 1B4D,Module thermistor 30 1B4E,Module thermistor 31 1B4F,Module thermistor 32 1B60,Cell sensing lines - Module 1 1B61,Cell sensing lines - Module 2 1B62,Cell sensing lines - Module 3 1B63,Cell sensing lines - Module 4 1B64,Cell sensing lines - Module 5 1B65,Cell sensing lines - Module 6 1B66,Cell sensing lines - Module 7 1B67,Cell sensing lines - Module 8 1B68,Cell sensing lines - Module 9 1B69,Cell sensing lines - Module 10 1B6A,Cell sensing lines - Module 11 1B6B,Cell sensing lines - Module 12 1B6C,Cell sensing lines - Module 13 1B6D,Cell sensing lines - Module 14 1B6E,Cell sensing lines - Module 15 1B6F,Cell sensing lines - Module 16 1B70,Cell sensing lines - Module 17 1B71,Cell sensing lines - Module 18 1B72,Cell sensing lines - Module 19 1B73,Cell sensing lines - Module 20 1B74,Cell sensing lines - Module 21 1B80,State of Charge Estimation 1B81,State of Health Estimation 1B82,Available Power 1B83,Cell SOHP 1BA0,Low voltage supply input (SCPU) 1BA1,Cell input lines (SCPU) 1BA2,Insulation Resistance measurement circuit 1BA3,SCPU/PCB temperature sensor 1BA4,Current sensor input1 1BAD,Internal memory RAM/ROM (SCPU) 1BAE,External NV memory (EEPROM, FLASH)1 1BAF,CAN current sensor (SCPU) 1BB1,Safety CPU/Slave Communication 1BB2,ASIC (redundancy) 1BB3,Hot Spot (SPARE) sensor 1BB4,Pack module temperature sensor (SCPU) 1BB5,CAN current sensor (SCPU)1 1BB6,Flash memory failure (FOTA) (SCPU) E140,CAN from HECM E142,CAN from Inverter E143,CAN from EVC/HEVC E144,CAN from BMS1 EA0D,CAN controller (MCPU) FD00,FOTA : SW bloc FD01,FOTA : Calibration bloc ================================================ FILE: app/src/main/assets/ZOE_Ph2/LBC_Fields.csv ================================================ ,18DAF1DB,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,18DAF1DB,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming ,18DAF1DB,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnostic ,18DAF1DB,0,0,1,0,0,,1060,5060,ff,StartDiagnosticSession.Supplier ,18DAF1DB,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,18DAF1DB,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,18DAF1DB,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,18DAF1DB,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,18DAF1DB,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,18DAF1DB,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD,1:Current sensor internal error;4:HVMux diagnosis error (HVMuxSeq or HVMuxTestSource);6:GENERAL / Algorithm;8:Communication Failure (UART communication);17:half of thermistor in SCG. Performance is degraded;18:Cell Short circuit;19:Opened Cell;20:ELECTRICAL / SC Ground or Open;21:half thermistor in SCB or OC. Performance is degraded;22:LV Power Supply is too low;23:LV Power Supply is too high;25:Pack overcurrent;26:Insulation NOK (alert charge forbidden);28:ELECTRICAL / Voltage Out Of Range;30:Cell Wire Impendance Out of Range;33:Cell undervoltage derating;36:Power Off failure;49:No signal can be read from FAN;56:Internal 32kHz deviation;65:Error on Internal Memory (Main CPU);67:Communication failure with Flash memory;68:Corruption of datas;71:Corruption (checksum mechanism) on safety datas;73:ADC conversion error;81:PROGRAMMING / Not Programmed;98:1 thermistor in deviation (compare to other thermistors);129:Invalid data received on CAN Current sensor frames;135:Missing frame(s) from CAN Current sensor;136:Bus OFF on CAN transceiver (Main CPU);146:COMPONENT / Performance;150:COMPONENT / Internal;152:Temp1 value is over the limit threshold;241:Cell overvoltage safety;242:Cell overdischarge;244:Temp1 value is under the limit threshold;249:Available Power is limited;251:Battery pack temperature is over the functionnal threshold (derating);253:Current offset too high ,18DAF1DB,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,18DAF1DB,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,18DAF1DB,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,18DAF1DB,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1DB,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1DB,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1DB,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1DB,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1DB,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1DB,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1DB,16,39,1,0,0,,1903000000FF,5903000000FF,4ff,DTCRecord ,18DAF1DB,40,47,1,0,0,,1903000000FF,5903000000FF,4ff,DTCSnapshotRecordNumber ,18DAF1DB,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,18DAF1DB,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,18DAF1DB,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,18DAF1DB,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,18DAF1DB,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DB,56,87,.01,0,2,km,190600000080,590600000080,1ff,DTCExtendedData.Mileage ,18DAF1DB,16,39,1,0,0,,190600000084,590600000084,4ff,DTCRecord ,18DAF1DB,40,47,1,0,0,,190600000084,590600000084,ff,StatusOfDTC ,18DAF1DB,48,55,1,0,0,,190600000084,590600000084,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DB,56,63,1,0,0,,190600000084,590600000084,ff,DTCExtendedData.DTCOccurrenceCounter ,18DAF1DB,16,39,1,0,0,,190600000085,590600000085,4ff,DTCRecord ,18DAF1DB,40,47,1,0,0,,190600000085,590600000085,ff,StatusOfDTC ,18DAF1DB,48,55,1,0,0,,190600000085,590600000085,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DB,56,87,1,0,0,km,190600000085,590600000085,1ff,DTCExtendedData.DTCLastDiseappearMileage ,18DAF1DB,16,39,1,0,0,,190600000086,590600000086,4ff,DTCRecord ,18DAF1DB,40,47,1,0,0,,190600000086,590600000086,ff,StatusOfDTC ,18DAF1DB,48,55,1,0,0,,190600000086,590600000086,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DB,56,87,.01,-2147483648,2,km,190600000086,590600000086,1ff,DTCExtendedData.DTCTravelledDistanceFailurePresent ,18DAF1DB,16,39,1,0,0,,190600000087,590600000087,4ff,DTCRecord ,18DAF1DB,40,47,1,0,0,,190600000087,590600000087,ff,StatusOfDTC ,18DAF1DB,48,55,1,0,0,,190600000087,590600000087,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DB,56,87,.01,-2147483648,2,km,190600000087,590600000087,1ff,DTCExtendedData.DTCFirstAppearMileage ,18DAF1DB,16,39,1,0,0,,190600000088,590600000088,4ff,DTCRecord ,18DAF1DB,40,47,1,0,0,,190600000088,590600000088,ff,StatusOfDTC ,18DAF1DB,48,55,1,0,0,,190600000088,590600000088,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DB,56,71,1,0,0,,190600000088,590600000088,ff,DTCExtendedData.IUPRnumerator ,18DAF1DB,16,39,1,0,0,,190600000089,590600000089,4ff,DTCRecord ,18DAF1DB,40,47,1,0,0,,190600000089,590600000089,ff,StatusOfDTC ,18DAF1DB,48,55,1,0,0,,190600000089,590600000089,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DB,56,71,1,0,0,,190600000089,590600000089,ff,DTCExtendedData.IUPRdenominator ,18DAF1DB,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,18DAF1DB,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,18DAF1DB,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;132:DTCOccurrenceCounter;133:DTCLastDiseappearMileage;134:DTCTravelledDistanceFailurePresent;135:DTCFirstAppearMileage;136:IUPRnumerator;137:IUPRdenominator ,18DAF1DB,56,87,.01,-2147483648,2,km,1906000000FF,5906000000FF,1ff,DTCExtendedData.DTCFirstAppearMileage ,18DAF1DB,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,18DAF1DB,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,6912:Low voltage supply input;6913:Cell input lines;6914:Battery pack voltage;6915:Current sensor input;6916:Few module thermistors in failure;6917:Many module thermistors in failure;6918:All module thermistors in failure;6919:Cooling thermistor input;6920:FAN speed input;6921:FAN control output;6922:Main relay control output;6923:Precharge relay control output;6924:Battery pack temperature;6925:Internal memory RAM/ROM;6926:External NV memory (EEPROM- FLASH);6927:Analog to Digital Converter;6928:Master CPU/Slave Communication;6930:Main ASSP;6932:Relay 3 control output;6933:Temp 2 thermistor input;6934:MCPU/PCB temperature sensor;6935:Air/Ambient thermistor input;6936:Interlock1;6937:Interlock2;6938:Interlock3;6939:Interlock4;6940:Busbar;6941:Current sensor 5V supply;6942:Current sensor 12V supply;6943:CAN current sensor (MCPU);6944:Relay 4 control output;6945:Flash memory failure (FOTA);6960:Module thermistor 1;6961:Module thermistor 2;6962:Module thermistor 3;6963:Module thermistor 4;6964:Module thermistor 5;6965:Module thermistor 6;6966:Module thermistor 7;6967:Module thermistor 8;6968:Module thermistor 9;6969:Module thermistor 10;6970:Module thermistor 11;6971:Module thermistor 12;6972:Module thermistor 13;6973:Module thermistor 14;6974:Module thermistor 15;6975:Module thermistor 16;6976:Module thermistor 17;6977:Module thermistor 18;6978:Module thermistor 19;6979:Module thermistor 20;6980:Module thermistor 21;6981:Module thermistor 22;6982:Module thermistor 23;6983:Module thermistor 24;6984:Module thermistor 25;6985:Module thermistor 26;6986:Module thermistor 27;6987:Module thermistor 28;6988:Module thermistor 29;6989:Module thermistor 30;6990:Module thermistor 31;6991:Module thermistor 32;7008:Cell sensing lines - Module 1;7009:Cell sensing lines - Module 2;7010:Cell sensing lines - Module 3;7011:Cell sensing lines - Module 4;7012:Cell sensing lines - Module 5;7013:Cell sensing lines - Module 6;7014:Cell sensing lines - Module 7;7015:Cell sensing lines - Module 8;7016:Cell sensing lines - Module 9;7017:Cell sensing lines - Module 10;7018:Cell sensing lines - Module 11;7019:Cell sensing lines - Module 12;7020:Cell sensing lines - Module 13;7021:Cell sensing lines - Module 14;7022:Cell sensing lines - Module 15;7023:Cell sensing lines - Module 16;7024:Cell sensing lines - Module 17;7025:Cell sensing lines - Module 18;7026:Cell sensing lines - Module 19;7027:Cell sensing lines - Module 20;7028:Cell sensing lines - Module 21;7040:State of Charge Estimation;7041:State of Health Estimation;7042:Available Power;7043:Cell SOHP;7072:Low voltage supply input (SCPU);7073:Cell input lines (SCPU);7074:Insulation Resistance measurement circuit;7075:SCPU/PCB temperature sensor;7076:Current sensor input1;7085:Internal memory RAM/ROM (SCPU);7086:External NV memory (EEPROM- FLASH)1;7087:CAN current sensor (SCPU);7089:Safety CPU/Slave Communication;7090:ASIC (redundancy);7091:Hot Spot (SPARE) sensor;7092:Pack module temperature sensor (SCPU);7093:CAN current sensor (SCPU)1;7094:Flash memory failure (FOTA) (SCPU);57664:CAN from HECM;57666:CAN from Inverter;57667:CAN from EVC/HEVC;57668:CAN from BMS1;59917:CAN controller (MCPU);64768:FOTA - SW bloc;64769:FOTA - Calibration bloc ,18DAF1DB,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,18DAF1DB,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,18DAF1DB,16,31,1,0,0,,1914,5914,ff,DTCDeviceIdentifier,6912:Low voltage supply input;6913:Cell input lines;6914:Battery pack voltage;6915:Current sensor input;6916:Few module thermistors in failure;6917:Many module thermistors in failure;6918:All module thermistors in failure;6919:Cooling thermistor input;6920:FAN speed input;6921:FAN control output;6922:Main relay control output;6923:Precharge relay control output;6924:Battery pack temperature;6925:Internal memory RAM/ROM;6926:External NV memory (EEPROM- FLASH);6927:Analog to Digital Converter;6928:Master CPU/Slave Communication;6930:Main ASSP;6932:Relay 3 control output;6933:Temp 2 thermistor input;6934:MCPU/PCB temperature sensor;6935:Air/Ambient thermistor input;6936:Interlock1;6937:Interlock2;6938:Interlock3;6939:Interlock4;6940:Busbar;6941:Current sensor 5V supply;6942:Current sensor 12V supply;6943:CAN current sensor (MCPU);6944:Relay 4 control output;6945:Flash memory failure (FOTA);6960:Module thermistor 1;6961:Module thermistor 2;6962:Module thermistor 3;6963:Module thermistor 4;6964:Module thermistor 5;6965:Module thermistor 6;6966:Module thermistor 7;6967:Module thermistor 8;6968:Module thermistor 9;6969:Module thermistor 10;6970:Module thermistor 11;6971:Module thermistor 12;6972:Module thermistor 13;6973:Module thermistor 14;6974:Module thermistor 15;6975:Module thermistor 16;6976:Module thermistor 17;6977:Module thermistor 18;6978:Module thermistor 19;6979:Module thermistor 20;6980:Module thermistor 21;6981:Module thermistor 22;6982:Module thermistor 23;6983:Module thermistor 24;6984:Module thermistor 25;6985:Module thermistor 26;6986:Module thermistor 27;6987:Module thermistor 28;6988:Module thermistor 29;6989:Module thermistor 30;6990:Module thermistor 31;6991:Module thermistor 32;7008:Cell sensing lines - Module 1;7009:Cell sensing lines - Module 2;7010:Cell sensing lines - Module 3;7011:Cell sensing lines - Module 4;7012:Cell sensing lines - Module 5;7013:Cell sensing lines - Module 6;7014:Cell sensing lines - Module 7;7015:Cell sensing lines - Module 8;7016:Cell sensing lines - Module 9;7017:Cell sensing lines - Module 10;7018:Cell sensing lines - Module 11;7019:Cell sensing lines - Module 12;7020:Cell sensing lines - Module 13;7021:Cell sensing lines - Module 14;7022:Cell sensing lines - Module 15;7023:Cell sensing lines - Module 16;7024:Cell sensing lines - Module 17;7025:Cell sensing lines - Module 18;7026:Cell sensing lines - Module 19;7027:Cell sensing lines - Module 20;7028:Cell sensing lines - Module 21;7040:State of Charge Estimation;7041:State of Health Estimation;7042:Available Power;7043:Cell SOHP;7072:Low voltage supply input (SCPU);7073:Cell input lines (SCPU);7074:Insulation Resistance measurement circuit;7075:SCPU/PCB temperature sensor;7076:Current sensor input1;7085:Internal memory RAM/ROM (SCPU);7086:External NV memory (EEPROM- FLASH)1;7087:CAN current sensor (SCPU);7089:Safety CPU/Slave Communication;7090:ASIC (redundancy);7091:Hot Spot (SPARE) sensor;7092:Pack module temperature sensor (SCPU);7093:CAN current sensor (SCPU)1;7094:Flash memory failure (FOTA) (SCPU);57664:CAN from HECM;57666:CAN from Inverter;57667:CAN from EVC/HEVC;57668:CAN from BMS1;59917:CAN controller (MCPU);64768:FOTA - SW bloc;64769:FOTA - Calibration bloc ,18DAF1DB,32,39,1,0,0,,1914,5914,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,18DAF1DB,40,47,1,0,0,,1914,5914,ff,DTCFaultDetectionCounter ,18DAF1DB,24,55,1,0,0,,229000,629000,4ff,DIDs supported in range [$9001 - $9020] ,18DAF1DB,24,39,.01,300,2,%,229001,629001,ff,Battery SOC(Zxx_bsoc_avg) ,18DAF1DB,24,39,.01,0,2,%,229002,629002,ff,Battery USOC(Wxx_usoc_avg) ,18DAF1DB,24,39,.01,0,2,%,229003,629003,ff,Battery SOH(Zxx_sohe_avg) ,18DAF1DB,24,39,.1,0,1,V,229005,629005,ff,Pack Voltage (CAN value)(Wxx_pack_v_out) ,18DAF1DB,24,55,.0009765625,0,3,V,229006,629006,1ff,Sum of all Cell Voltage(Wxx_pack_v) ,18DAF1DB,24,39,.000976563,0,3,V,229007,629007,ff,Maximum Cell Voltage(Wxx_cell_v_max) ,18DAF1DB,24,31,1,0,0,,229008,629008,ff,Number of Maximum Cell Voltage(Wxx_cell_v_max_nr) ,18DAF1DB,24,39,.000976563,0,3,V,229009,629009,ff,Minimum Cell Voltage(Wxx_cell_v_min) ,18DAF1DB,24,31,1,0,0,,22900A,62900A,ff,Number of Minimum Cell Voltage(Wxx_cell_v_min_nr) ,18DAF1DB,24,39,.03125,32640,2,A,22900C,62900C,ff,Current Sensor Offset value(Wxx_bat_i_ofs) ,18DAF1DB,24,55,.025,48000,2,A,22900D,62900D,1ff,Instant Current of Battery (CAN value)(Wxx_bat_i_10ms_out) ,18DAF1DB,24,39,.01,0,2,kW,22900E,62900E,ff,Maximum Generated Power (After Restriction)(Wxx_rgn_pw_lngtrm) ,18DAF1DB,24,39,.01,0,2,kW,22900F,62900F,ff,Maximum Available Power (After Restriction)(Wxx_dchg_pw_lngtrm) ,18DAF1DB,24,39,.000976563,0,3,V,229011,629011,ff,Low Voltage Supply(Wxx_raw_14v_mes) ,18DAF1DB,24,39,.0625,640,2,°C,229012,629012,ff,Average Temperature(Wxx_temp_avg) ,18DAF1DB,24,39,.0625,640,2,°C,229013,629013,ff,Minimum Temperature(Wxx_temp_min) ,18DAF1DB,24,39,.0625,640,2,°C,229014,629014,ff,Maximum Temperature(Wxx_temp_max) ,18DAF1DB,24,39,.01,0,2,kW,229018,629018,ff,Maximum Charge Power (after restriction)(Wxx_chg_pw) ,18DAF1DB,31,31,1,0,0,,229019,629019,ff,End Of Charge flag(Wbx_chg_end),0:Charging OK;1:Charging Stop ,18DAF1DB,30,31,1,0,0,,22901A,62901A,ff,HVBatt Interlock flag(Wsx_HVcn_ilck_out),0:Not used;1:Opened;2:Closed;3:Unavailable ,18DAF1DB,24,31,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).25 ,18DAF1DB,32,39,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).24 ,18DAF1DB,40,47,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).23 ,18DAF1DB,48,55,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).22 ,18DAF1DB,56,63,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).21 ,18DAF1DB,64,71,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).20 ,18DAF1DB,72,79,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).19 ,18DAF1DB,80,87,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).18 ,18DAF1DB,88,95,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).17 ,18DAF1DB,96,103,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).16 ,18DAF1DB,104,111,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).15 ,18DAF1DB,112,119,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).14 ,18DAF1DB,120,127,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).13 ,18DAF1DB,128,135,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).12 ,18DAF1DB,136,143,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).11 ,18DAF1DB,144,151,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).10 ,18DAF1DB,152,159,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).09 ,18DAF1DB,160,167,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).08 ,18DAF1DB,168,175,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).07 ,18DAF1DB,176,183,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).06 ,18DAF1DB,184,191,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).05 ,18DAF1DB,192,199,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).04 ,18DAF1DB,200,207,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).03 ,18DAF1DB,208,215,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).02 ,18DAF1DB,216,223,1,0,0,,22901B,62901B,2ff,Battery Identification Number (BIN).01 ,18DAF1DB,24,31,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).19 ,18DAF1DB,32,39,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).18 ,18DAF1DB,40,47,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).17 ,18DAF1DB,48,55,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).16 ,18DAF1DB,56,63,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).15 ,18DAF1DB,64,71,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).14 ,18DAF1DB,72,79,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).13 ,18DAF1DB,80,87,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).12 ,18DAF1DB,88,95,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).11 ,18DAF1DB,96,103,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).10 ,18DAF1DB,104,111,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).09 ,18DAF1DB,112,119,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).08 ,18DAF1DB,120,127,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).07 ,18DAF1DB,128,135,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).06 ,18DAF1DB,136,143,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).05 ,18DAF1DB,144,151,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).04 ,18DAF1DB,152,159,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).03 ,18DAF1DB,160,167,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).02 ,18DAF1DB,168,175,1,0,0,,22901C,62901C,2ff,Traceability Identification Number (TIN).01 ,18DAF1DB,24,31,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).01 ,18DAF1DB,32,39,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).02 ,18DAF1DB,40,47,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).03 ,18DAF1DB,48,55,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).04 ,18DAF1DB,56,63,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).05 ,18DAF1DB,64,71,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).06 ,18DAF1DB,72,79,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).07 ,18DAF1DB,80,87,1,0,0,,22901D,62901D,2ff,Functional Identification Number (FIN).08 ,18DAF1DB,24,55,1,0,0,,229020,629020,4ff,DIDs supported in range [$9021 - $9040] ,18DAF1DB,24,39,.000976563,0,3,V,229021,629021,ff,Cell 1 Voltage(Wtx_cell_v[0]) ,18DAF1DB,24,39,.000976563,0,3,V,229022,629022,ff,Cell 2 Voltage(Wtx_cell_v[1]) ,18DAF1DB,24,39,.000976563,0,3,V,229023,629023,ff,Cell 3 Voltage(Wtx_cell_v[2]) ,18DAF1DB,24,39,.000976563,0,3,V,229024,629024,ff,Cell 4 Voltage(Wtx_cell_v[3]) ,18DAF1DB,24,39,.000976563,0,3,V,229025,629025,ff,Cell 5 Voltage(Wtx_cell_v[4]) ,18DAF1DB,24,39,.000976563,0,3,V,229026,629026,ff,Cell 6 Voltage(Wtx_cell_v[5]) ,18DAF1DB,24,39,.000976563,0,3,V,229027,629027,ff,Cell 7 Voltage(Wtx_cell_v[6]) ,18DAF1DB,24,39,.000976563,0,3,V,229028,629028,ff,Cell 8 Voltage(Wtx_cell_v[7]) ,18DAF1DB,24,39,.000976563,0,3,V,229029,629029,ff,Cell 9 Voltage(Wtx_cell_v[8]) ,18DAF1DB,24,39,.000976563,0,3,V,22902A,62902A,ff,Cell 10 Voltage(Wtx_cell_v[9]) ,18DAF1DB,24,39,.000976563,0,3,V,22902B,62902B,ff,Cell 11 Voltage(Wtx_cell_v[10]) ,18DAF1DB,24,39,.000976563,0,3,V,22902C,62902C,ff,Cell 12 Voltage(Wtx_cell_v[11]) ,18DAF1DB,24,39,.000976563,0,3,V,22902D,62902D,ff,Cell 13 Voltage(Wtx_cell_v[12]) ,18DAF1DB,24,39,.000976563,0,3,V,22902E,62902E,ff,Cell 14 Voltage(Wtx_cell_v[13]) ,18DAF1DB,24,39,.000976563,0,3,V,22902F,62902F,ff,Cell 15 Voltage(Wtx_cell_v[14]) ,18DAF1DB,24,39,.000976563,0,3,V,229030,629030,ff,Cell 16 Voltage(Wtx_cell_v[15]) ,18DAF1DB,24,39,.000976563,0,3,V,229031,629031,ff,Cell 17 Voltage(Wtx_cell_v[16]) ,18DAF1DB,24,39,.000976563,0,3,V,229032,629032,ff,Cell 18 Voltage(Wtx_cell_v[17]) ,18DAF1DB,24,39,.000976563,0,3,V,229033,629033,ff,Cell 19 Voltage(Wtx_cell_v[18]) ,18DAF1DB,24,39,.000976563,0,3,V,229034,629034,ff,Cell 20 Voltage(Wtx_cell_v[19]) ,18DAF1DB,24,39,.000976563,0,3,V,229035,629035,ff,Cell 21 Voltage(Wtx_cell_v[20]) ,18DAF1DB,24,39,.000976563,0,3,V,229036,629036,ff,Cell 22 Voltage(Wtx_cell_v[21]) ,18DAF1DB,24,39,.000976563,0,3,V,229037,629037,ff,Cell 23 Voltage(Wtx_cell_v[22]) ,18DAF1DB,24,39,.000976563,0,3,V,229038,629038,ff,Cell 24 Voltage(Wtx_cell_v[23]) ,18DAF1DB,24,39,.000976563,0,3,V,229039,629039,ff,Cell 25 Voltage(Wtx_cell_v[24]) ,18DAF1DB,24,39,.000976563,0,3,V,22903A,62903A,ff,Cell 26 Voltage(Wtx_cell_v[25]) ,18DAF1DB,24,39,.000976563,0,3,V,22903B,62903B,ff,Cell 27 Voltage(Wtx_cell_v[26]) ,18DAF1DB,24,39,.000976563,0,3,V,22903C,62903C,ff,Cell 28 Voltage(Wtx_cell_v[27]) ,18DAF1DB,24,39,.000976563,0,3,V,22903D,62903D,ff,Cell 29 Voltage(Wtx_cell_v[28]) ,18DAF1DB,24,39,.000976563,0,3,V,22903E,62903E,ff,Cell 30 Voltage(Wtx_cell_v[29]) ,18DAF1DB,24,39,.000976563,0,3,V,22903F,62903F,ff,Cell 31 Voltage(Wtx_cell_v[30]) ,18DAF1DB,24,55,1,0,0,,229040,629040,4ff,DIDs supported in range [$9041 - $9060] ,18DAF1DB,24,39,.000976563,0,3,V,229041,629041,ff,Cell 32 Voltage(Wtx_cell_v[31]) ,18DAF1DB,24,39,.000976563,0,3,V,229042,629042,ff,Cell 33 Voltage(Wtx_cell_v[32]) ,18DAF1DB,24,39,.000976563,0,3,V,229043,629043,ff,Cell 34 Voltage(Wtx_cell_v[33]) ,18DAF1DB,24,39,.000976563,0,3,V,229044,629044,ff,Cell 35 Voltage(Wtx_cell_v[34]) ,18DAF1DB,24,39,.000976563,0,3,V,229045,629045,ff,Cell 36 Voltage(Wtx_cell_v[35]) ,18DAF1DB,24,39,.000976563,0,3,V,229046,629046,ff,Cell 37 Voltage(Wtx_cell_v[36]) ,18DAF1DB,24,39,.000976563,0,3,V,229047,629047,ff,Cell 38 Voltage(Wtx_cell_v[37]) ,18DAF1DB,24,39,.000976563,0,3,V,229048,629048,ff,Cell 39 Voltage(Wtx_cell_v[38]) ,18DAF1DB,24,39,.000976563,0,3,V,229049,629049,ff,Cell 40 Voltage(Wtx_cell_v[39]) ,18DAF1DB,24,39,.000976563,0,3,V,22904A,62904A,ff,Cell 41 Voltage(Wtx_cell_v[40]) ,18DAF1DB,24,39,.000976563,0,3,V,22904B,62904B,ff,Cell 42 Voltage(Wtx_cell_v[41]) ,18DAF1DB,24,39,.000976563,0,3,V,22904C,62904C,ff,Cell 43 Voltage(Wtx_cell_v[42]) ,18DAF1DB,24,39,.000976563,0,3,V,22904D,62904D,ff,Cell 44 Voltage(Wtx_cell_v[43]) ,18DAF1DB,24,39,.000976563,0,3,V,22904E,62904E,ff,Cell 45 Voltage(Wtx_cell_v[44]) ,18DAF1DB,24,39,.000976563,0,3,V,22904F,62904F,ff,Cell 46 Voltage(Wtx_cell_v[45]) ,18DAF1DB,24,39,.000976563,0,3,V,229050,629050,ff,Cell 47 Voltage(Wtx_cell_v[46]) ,18DAF1DB,24,39,.000976563,0,3,V,229051,629051,ff,Cell 48 Voltage(Wtx_cell_v[47]) ,18DAF1DB,24,39,.000976563,0,3,V,229052,629052,ff,Cell 49 Voltage(Wtx_cell_v[48]) ,18DAF1DB,24,39,.000976563,0,3,V,229053,629053,ff,Cell 50 Voltage(Wtx_cell_v[49]) ,18DAF1DB,24,39,.000976563,0,3,V,229054,629054,ff,Cell 51 Voltage(Wtx_cell_v[50]) ,18DAF1DB,24,39,.000976563,0,3,V,229055,629055,ff,Cell 52 Voltage(Wtx_cell_v[51]) ,18DAF1DB,24,39,.000976563,0,3,V,229056,629056,ff,Cell 53 Voltage(Wtx_cell_v[52]) ,18DAF1DB,24,39,.000976563,0,3,V,229057,629057,ff,Cell 54 Voltage(Wtx_cell_v[53]) ,18DAF1DB,24,39,.000976563,0,3,V,229058,629058,ff,Cell 55 Voltage(Wtx_cell_v[54]) ,18DAF1DB,24,39,.000976563,0,3,V,229059,629059,ff,Cell 56 Voltage(Wtx_cell_v[55]) ,18DAF1DB,24,39,.000976563,0,3,V,22905A,62905A,ff,Cell 57 Voltage(Wtx_cell_v[56]) ,18DAF1DB,24,39,.000976563,0,3,V,22905B,62905B,ff,Cell 58 Voltage(Wtx_cell_v[57]) ,18DAF1DB,24,39,.000976563,0,3,V,22905C,62905C,ff,Cell 59 Voltage(Wtx_cell_v[58]) ,18DAF1DB,24,39,.000976563,0,3,V,22905D,62905D,ff,Cell 60 Voltage(Wtx_cell_v[59]) ,18DAF1DB,24,39,.000976563,0,3,V,22905E,62905E,ff,Cell 61 Voltage(Wtx_cell_v[60]) ,18DAF1DB,24,39,.000976563,0,3,V,22905F,62905F,ff,Cell 62 Voltage(Wtx_cell_v[61]) ,18DAF1DB,24,55,1,0,0,,229060,629060,4ff,DIDs supported in range [$9061 - $9080] ,18DAF1DB,24,39,.000976563,0,3,V,229061,629061,ff,Cell 63 Voltage(Wtx_cell_v[62]) ,18DAF1DB,24,39,.000976563,0,3,V,229062,629062,ff,Cell 64 Voltage(Wtx_cell_v[63]) ,18DAF1DB,24,39,.000976563,0,3,V,229063,629063,ff,Cell 65 Voltage(Wtx_cell_v[64]) ,18DAF1DB,24,39,.000976563,0,3,V,229064,629064,ff,Cell 66 Voltage(Wtx_cell_v[65]) ,18DAF1DB,24,39,.000976563,0,3,V,229065,629065,ff,Cell 67 Voltage(Wtx_cell_v[66]) ,18DAF1DB,24,39,.000976563,0,3,V,229066,629066,ff,Cell 68 Voltage(Wtx_cell_v[67]) ,18DAF1DB,24,39,.000976563,0,3,V,229067,629067,ff,Cell 69 Voltage(Wtx_cell_v[68]) ,18DAF1DB,24,39,.000976563,0,3,V,229068,629068,ff,Cell 70 Voltage(Wtx_cell_v[69]) ,18DAF1DB,24,39,.000976563,0,3,V,229069,629069,ff,Cell 71 Voltage(Wtx_cell_v[70]) ,18DAF1DB,24,39,.000976563,0,3,V,22906A,62906A,ff,Cell 72 Voltage(Wtx_cell_v[71]) ,18DAF1DB,24,39,.000976563,0,3,V,22906B,62906B,ff,Cell 73 Voltage(Wtx_cell_v[72]) ,18DAF1DB,24,39,.000976563,0,3,V,22906C,62906C,ff,Cell 74 Voltage(Wtx_cell_v[73]) ,18DAF1DB,24,39,.000976563,0,3,V,22906D,62906D,ff,Cell 75 Voltage(Wtx_cell_v[74]) ,18DAF1DB,24,39,.000976563,0,3,V,22906E,62906E,ff,Cell 76 Voltage(Wtx_cell_v[75]) ,18DAF1DB,24,39,.000976563,0,3,V,22906F,62906F,ff,Cell 77 Voltage(Wtx_cell_v[76]) ,18DAF1DB,24,39,.000976563,0,3,V,229070,629070,ff,Cell 78 Voltage(Wtx_cell_v[77]) ,18DAF1DB,24,39,.000976563,0,3,V,229071,629071,ff,Cell 79 Voltage(Wtx_cell_v[78]) ,18DAF1DB,24,39,.000976563,0,3,V,229072,629072,ff,Cell 80 Voltage(Wtx_cell_v[79]) ,18DAF1DB,24,39,.000976563,0,3,V,229073,629073,ff,Cell 81 Voltage(Wtx_cell_v[80]) ,18DAF1DB,24,39,.000976563,0,3,V,229074,629074,ff,Cell 82 Voltage(Wtx_cell_v[81]) ,18DAF1DB,24,39,.000976563,0,3,V,229075,629075,ff,Cell 83 Voltage(Wtx_cell_v[82]) ,18DAF1DB,24,39,.000976563,0,3,V,229076,629076,ff,Cell 84 Voltage(Wtx_cell_v[83]) ,18DAF1DB,24,39,.000976563,0,3,V,229077,629077,ff,Cell 85 Voltage(Wtx_cell_v[84]) ,18DAF1DB,24,39,.000976563,0,3,V,229078,629078,ff,Cell 86 Voltage(Wtx_cell_v[85]) ,18DAF1DB,24,39,.000976563,0,3,V,229079,629079,ff,Cell 87 Voltage(Wtx_cell_v[86]) ,18DAF1DB,24,39,.000976563,0,3,V,22907A,62907A,ff,Cell 88 Voltage(Wtx_cell_v[87]) ,18DAF1DB,24,39,.000976563,0,3,V,22907B,62907B,ff,Cell 89 Voltage(Wtx_cell_v[88]) ,18DAF1DB,24,39,.000976563,0,3,V,22907C,62907C,ff,Cell 90 Voltage(Wtx_cell_v[89]) ,18DAF1DB,24,39,.000976563,0,3,V,22907D,62907D,ff,Cell 91 Voltage(Wtx_cell_v[90]) ,18DAF1DB,24,39,.000976563,0,3,V,22907E,62907E,ff,Cell 92 Voltage(Wtx_cell_v[91]) ,18DAF1DB,24,39,.000976563,0,3,V,22907F,62907F,ff,Cell 93 Voltage(Wtx_cell_v[92]) ,18DAF1DB,24,55,1,0,0,,229080,629080,4ff,DIDs supported in range [$9081 - $90A0] ,18DAF1DB,24,39,.000976563,0,3,V,229081,629081,ff,Cell 94 Voltage(Wtx_cell_v[93]) ,18DAF1DB,24,39,.000976563,0,3,V,229082,629082,ff,Cell 95 Voltage(Wtx_cell_v[94]) ,18DAF1DB,24,39,.000976563,0,3,V,229083,629083,ff,Cell 96 Voltage(Wtx_cell_v[95]) ,18DAF1DB,24,39,.000976563,0,3,V,229084,629084,ff,Cell 97 Voltage(Wtx_cell_v[96]) ,18DAF1DB,24,39,.000976563,0,3,V,229085,629085,ff,Cell 98 Voltage(Wtx_cell_v[97]) ,18DAF1DB,24,39,.000976563,0,3,V,229086,629086,ff,Cell 99 Voltage(Wtx_cell_v[98]) ,18DAF1DB,24,39,.000976563,0,3,V,229087,629087,ff,Cell 100 Voltage(Wtx_cell_v[99]) ,18DAF1DB,24,39,.000976563,0,3,V,229088,629088,ff,Cell 101 Voltage(Wtx_cell_v[100]) ,18DAF1DB,24,39,.000976563,0,3,V,229089,629089,ff,Cell 102 Voltage(Wtx_cell_v[101]) ,18DAF1DB,24,39,.000976563,0,3,V,22908A,62908A,ff,Cell 103 Voltage(Wtx_cell_v[102]) ,18DAF1DB,24,39,.000976563,0,3,V,22908B,62908B,ff,Cell 104 Voltage(Wtx_cell_v[103]) ,18DAF1DB,24,39,.000976563,0,3,V,22908C,62908C,ff,Cell 105 Voltage(Wtx_cell_v[104]) ,18DAF1DB,24,39,.000976563,0,3,V,22908D,62908D,ff,Cell 106 Voltage(Wtx_cell_v[105]) ,18DAF1DB,24,39,.000976563,0,3,V,22908E,62908E,ff,Cell 107 Voltage(Wtx_cell_v[106]) ,18DAF1DB,24,39,.000976563,0,3,V,22908F,62908F,ff,Cell 108 Voltage(Wtx_cell_v[107]) ,18DAF1DB,24,39,.000976563,0,3,V,229090,629090,ff,Cell 109 Voltage(Wtx_cell_v[108]) ,18DAF1DB,24,39,.000976563,0,3,V,229091,629091,ff,Cell 110 Voltage(Wtx_cell_v[109]) ,18DAF1DB,24,39,.000976563,0,3,V,229092,629092,ff,Cell 111 Voltage(Wtx_cell_v[110]) ,18DAF1DB,24,39,.000976563,0,3,V,229093,629093,ff,Cell 112 Voltage(Wtx_cell_v[111]) ,18DAF1DB,24,39,.000976563,0,3,V,229094,629094,ff,Cell 113 Voltage(Wtx_cell_v[112]) ,18DAF1DB,24,39,.000976563,0,3,V,229095,629095,ff,Cell 114 Voltage(Wtx_cell_v[113]) ,18DAF1DB,24,39,.000976563,0,3,V,229096,629096,ff,Cell 115 Voltage(Wtx_cell_v[114]) ,18DAF1DB,24,39,.000976563,0,3,V,229097,629097,ff,Cell 116 Voltage(Wtx_cell_v[115]) ,18DAF1DB,24,39,.000976563,0,3,V,229098,629098,ff,Cell 117 Voltage(Wtx_cell_v[116]) ,18DAF1DB,24,39,.000976563,0,3,V,229099,629099,ff,Cell 118 Voltage(Wtx_cell_v[117]) ,18DAF1DB,24,39,.000976563,0,3,V,22909A,62909A,ff,Cell 119 Voltage(Wtx_cell_v[118]) ,18DAF1DB,24,39,.000976563,0,3,V,22909B,62909B,ff,Cell 120 Voltage(Wtx_cell_v[119]) ,18DAF1DB,24,39,.000976563,0,3,V,22909C,62909C,ff,Cell 121 Voltage(Wtx_cell_v[120]) ,18DAF1DB,24,39,.000976563,0,3,V,22909D,62909D,ff,Cell 122 Voltage(Wtx_cell_v[121]) ,18DAF1DB,24,39,.000976563,0,3,V,22909E,62909E,ff,Cell 123 Voltage(Wtx_cell_v[122]) ,18DAF1DB,24,39,.000976563,0,3,V,22909F,62909F,ff,Cell 124 Voltage(Wtx_cell_v[123]) ,18DAF1DB,24,55,1,0,0,,2290A0,6290A0,4ff,DIDs supported in range [$90A1 - $90C0] ,18DAF1DB,24,39,.000976563,0,3,V,2290A1,6290A1,ff,Cell 125 Voltage(Wtx_cell_v[124]) ,18DAF1DB,24,39,.000976563,0,3,V,2290A2,6290A2,ff,Cell 126 Voltage(Wtx_cell_v[125]) ,18DAF1DB,24,39,.000976563,0,3,V,2290A3,6290A3,ff,Cell 127 Voltage(Wtx_cell_v[126]) ,18DAF1DB,24,39,.000976563,0,3,V,2290A4,6290A4,ff,Cell 128 Voltage(Wtx_cell_v[127]) ,18DAF1DB,24,39,.000976563,0,3,V,2290A5,6290A5,ff,Cell 129 Voltage(Wtx_cell_v[128]) ,18DAF1DB,24,39,.000976563,0,3,V,2290A6,6290A6,ff,Cell 130 Voltage(Wtx_cell_v[129]) ,18DAF1DB,24,39,.000976563,0,3,V,2290A7,6290A7,ff,Cell 131 Voltage(Wtx_cell_v[130]) ,18DAF1DB,24,39,.000976563,0,3,V,2290A8,6290A8,ff,Cell 132 Voltage(Wtx_cell_v[131]) ,18DAF1DB,24,39,.000976563,0,3,V,2290A9,6290A9,ff,Cell 133 Voltage(Wtx_cell_v[132]) ,18DAF1DB,24,39,.000976563,0,3,V,2290AA,6290AA,ff,Cell 134 Voltage(Wtx_cell_v[133]) ,18DAF1DB,24,39,.000976563,0,3,V,2290AB,6290AB,ff,Cell 135 Voltage(Wtx_cell_v[134]) ,18DAF1DB,24,39,.000976563,0,3,V,2290AC,6290AC,ff,Cell 136 Voltage(Wtx_cell_v[135]) ,18DAF1DB,24,39,.000976563,0,3,V,2290AD,6290AD,ff,Cell 137 Voltage(Wtx_cell_v[136]) ,18DAF1DB,24,39,.000976563,0,3,V,2290AE,6290AE,ff,Cell 138 Voltage(Wtx_cell_v[137]) ,18DAF1DB,24,39,.000976563,0,3,V,2290AF,6290AF,ff,Cell 139 Voltage(Wtx_cell_v[138]) ,18DAF1DB,24,39,.000976563,0,3,V,2290B0,6290B0,ff,Cell 140 Voltage(Wtx_cell_v[139]) ,18DAF1DB,24,39,.000976563,0,3,V,2290B1,6290B1,ff,Cell 141 Voltage(Wtx_cell_v[140]) ,18DAF1DB,24,39,.000976563,0,3,V,2290B2,6290B2,ff,Cell 142 Voltage(Wtx_cell_v[141]) ,18DAF1DB,24,39,.000976563,0,3,V,2290B3,6290B3,ff,Cell 143 Voltage(Wtx_cell_v[142]) ,18DAF1DB,24,39,.000976563,0,3,V,2290B4,6290B4,ff,Cell 144 Voltage(Wtx_cell_v[143]) ,18DAF1DB,24,39,.000976563,0,3,V,2290B5,6290B5,ff,Cell 145 Voltage(Wtx_cell_v[144]) ,18DAF1DB,24,39,.000976563,0,3,V,2290B6,6290B6,ff,Cell 146 Voltage(Wtx_cell_v[145]) ,18DAF1DB,24,39,.000976563,0,3,V,2290B7,6290B7,ff,Cell 147 Voltage(Wtx_cell_v[146]) ,18DAF1DB,24,39,.000976563,0,3,V,2290B8,6290B8,ff,Cell 148 Voltage(Wtx_cell_v[147]) ,18DAF1DB,24,39,.000976563,0,3,V,2290B9,6290B9,ff,Cell 149 Voltage(Wtx_cell_v[148]) ,18DAF1DB,24,39,.000976563,0,3,V,2290BA,6290BA,ff,Cell 150 Voltage(Wtx_cell_v[149]) ,18DAF1DB,24,39,.000976563,0,3,V,2290BB,6290BB,ff,Cell 151 Voltage(Wtx_cell_v[150]) ,18DAF1DB,24,39,.000976563,0,3,V,2290BC,6290BC,ff,Cell 152 Voltage(Wtx_cell_v[151]) ,18DAF1DB,24,39,.000976563,0,3,V,2290BD,6290BD,ff,Cell 153 Voltage(Wtx_cell_v[152]) ,18DAF1DB,24,39,.000976563,0,3,V,2290BE,6290BE,ff,Cell 154 Voltage(Wtx_cell_v[153]) ,18DAF1DB,24,39,.000976563,0,3,V,2290BF,6290BF,ff,Cell 155 Voltage(Wtx_cell_v[154]) ,18DAF1DB,24,55,1,0,0,,2290C0,6290C0,4ff,DIDs supported in range [$90C1 - $90E0] ,18DAF1DB,24,39,.000976563,0,3,V,2290C1,6290C1,ff,Cell 156 Voltage(Wtx_cell_v[155]) ,18DAF1DB,24,39,.000976563,0,3,V,2290C2,6290C2,ff,Cell 157 Voltage(Wtx_cell_v[156]) ,18DAF1DB,24,39,.000976563,0,3,V,2290C3,6290C3,ff,Cell 158 Voltage(Wtx_cell_v[157]) ,18DAF1DB,24,39,.000976563,0,3,V,2290C4,6290C4,ff,Cell 159 Voltage(Wtx_cell_v[158]) ,18DAF1DB,24,39,.000976563,0,3,V,2290C5,6290C5,ff,Cell 160 Voltage(Wtx_cell_v[159]) ,18DAF1DB,24,39,.000976563,0,3,V,2290C6,6290C6,ff,Cell 161 Voltage(Wtx_cell_v[160]) ,18DAF1DB,24,39,.000976563,0,3,V,2290C7,6290C7,ff,Cell 162 Voltage(Wtx_cell_v[161]) ,18DAF1DB,24,39,.000976563,0,3,V,2290C8,6290C8,ff,Cell 163 Voltage(Wtx_cell_v[162]) ,18DAF1DB,24,39,.000976563,0,3,V,2290C9,6290C9,ff,Cell 164 Voltage(Wtx_cell_v[163]) ,18DAF1DB,24,39,.000976563,0,3,V,2290CA,6290CA,ff,Cell 165 Voltage(Wtx_cell_v[164]) ,18DAF1DB,24,39,.000976563,0,3,V,2290CB,6290CB,ff,Cell 166 Voltage(Wtx_cell_v[165]) ,18DAF1DB,24,39,.000976563,0,3,V,2290CC,6290CC,ff,Cell 167 Voltage(Wtx_cell_v[166]) ,18DAF1DB,24,39,.000976563,0,3,V,2290CD,6290CD,ff,Cell 168 Voltage(Wtx_cell_v[167]) ,18DAF1DB,24,39,.000976563,0,3,V,2290CE,6290CE,ff,Cell 169 Voltage(Wtx_cell_v[168]) ,18DAF1DB,24,39,.000976563,0,3,V,2290CF,6290CF,ff,Cell 170 Voltage(Wtx_cell_v[169]) ,18DAF1DB,24,39,.000976563,0,3,V,2290D0,6290D0,ff,Cell 171 Voltage(Wtx_cell_v[170]) ,18DAF1DB,24,39,.000976563,0,3,V,2290D1,6290D1,ff,Cell 172 Voltage(Wtx_cell_v[171]) ,18DAF1DB,24,39,.000976563,0,3,V,2290D2,6290D2,ff,Cell 173 Voltage(Wtx_cell_v[172]) ,18DAF1DB,24,39,.000976563,0,3,V,2290D3,6290D3,ff,Cell 174 Voltage(Wtx_cell_v[173]) ,18DAF1DB,24,39,.000976563,0,3,V,2290D4,6290D4,ff,Cell 175 Voltage(Wtx_cell_v[174]) ,18DAF1DB,24,39,.000976563,0,3,V,2290D5,6290D5,ff,Cell 176 Voltage(Wtx_cell_v[175]) ,18DAF1DB,24,39,.000976563,0,3,V,2290D6,6290D6,ff,Cell 177 Voltage(Wtx_cell_v[176]) ,18DAF1DB,24,39,.000976563,0,3,V,2290D7,6290D7,ff,Cell 178 Voltage(Wtx_cell_v[177]) ,18DAF1DB,24,39,.000976563,0,3,V,2290D8,6290D8,ff,Cell 179 Voltage(Wtx_cell_v[178]) ,18DAF1DB,24,39,.000976563,0,3,V,2290D9,6290D9,ff,Cell 180 Voltage(Wtx_cell_v[179]) ,18DAF1DB,24,39,.000976563,0,3,V,2290DA,6290DA,ff,Cell 181 Voltage(Wtx_cell_v[180]) ,18DAF1DB,24,39,.000976563,0,3,V,2290DB,6290DB,ff,Cell 182 Voltage(Wtx_cell_v[181]) ,18DAF1DB,24,39,.000976563,0,3,V,2290DC,6290DC,ff,Cell 183 Voltage(Wtx_cell_v[182]) ,18DAF1DB,24,39,.000976563,0,3,V,2290DD,6290DD,ff,Cell 184 Voltage(Wtx_cell_v[183]) ,18DAF1DB,24,39,.000976563,0,3,V,2290DE,6290DE,ff,Cell 185 Voltage(Wtx_cell_v[184]) ,18DAF1DB,24,39,.000976563,0,3,V,2290DF,6290DF,ff,Cell 186 Voltage(Wtx_cell_v[185]) ,18DAF1DB,24,55,1,0,0,,2290E0,6290E0,4ff,DIDs supported in range [$90E1 - $9100] ,18DAF1DB,24,39,.000976563,0,3,V,2290E1,6290E1,ff,Cell 187 Voltage(Wtx_cell_v[186]) ,18DAF1DB,24,39,.000976563,0,3,V,2290E2,6290E2,ff,Cell 188 Voltage(Wtx_cell_v[187]) ,18DAF1DB,24,39,.000976563,0,3,V,2290E3,6290E3,ff,Cell 189 Voltage(Wtx_cell_v[188]) ,18DAF1DB,24,39,.000976563,0,3,V,2290E4,6290E4,ff,Cell 190 Voltage(Wtx_cell_v[189]) ,18DAF1DB,24,39,.000976563,0,3,V,2290E5,6290E5,ff,Cell 191 Voltage(Wtx_cell_v[190]) ,18DAF1DB,24,39,.000976563,0,3,V,2290E6,6290E6,ff,Cell 192 Voltage(Wtx_cell_v[191]) ,18DAF1DB,24,39,.000976563,0,3,V,2290E7,6290E7,ff,Cell 193 Voltage(Wtx_cell_v[192]) ,18DAF1DB,24,39,.000976563,0,3,V,2290E8,6290E8,ff,Cell 194 Voltage(Wtx_cell_v[193]) ,18DAF1DB,24,39,.000976563,0,3,V,2290E9,6290E9,ff,Cell 195 Voltage(Wtx_cell_v[194]) ,18DAF1DB,24,39,.000976563,0,3,V,2290EA,6290EA,ff,Cell 196 Voltage(Wtx_cell_v[195]) ,18DAF1DB,24,39,.000976563,0,3,V,2290EB,6290EB,ff,Cell 197 Voltage(Wtx_cell_v[196]) ,18DAF1DB,24,39,.000976563,0,3,V,2290EC,6290EC,ff,Cell 198 Voltage(Wtx_cell_v[197]) ,18DAF1DB,24,39,.000976563,0,3,V,2290ED,6290ED,ff,Cell 199 Voltage(Wtx_cell_v[198]) ,18DAF1DB,24,39,.000976563,0,3,V,2290EE,6290EE,ff,Cell 200 Voltage(Wtx_cell_v[199]) ,18DAF1DB,24,39,.000976563,0,3,V,2290EF,6290EF,ff,Cell 201 Voltage(Wtx_cell_v[200]) ,18DAF1DB,24,39,.000976563,0,3,V,2290F0,6290F0,ff,Cell 202 Voltage(Wtx_cell_v[201]) ,18DAF1DB,24,39,.000976563,0,3,V,2290F1,6290F1,ff,Cell 203 Voltage(Wtx_cell_v[202]) ,18DAF1DB,24,39,.000976563,0,3,V,2290F2,6290F2,ff,Cell 204 Voltage(Wtx_cell_v[203]) ,18DAF1DB,24,39,.000976563,0,3,V,2290F3,6290F3,ff,Cell 205 Voltage(Wtx_cell_v[204]) ,18DAF1DB,24,39,.000976563,0,3,V,2290F4,6290F4,ff,Cell 206 Voltage(Wtx_cell_v[205]) ,18DAF1DB,24,39,.000976563,0,3,V,2290F5,6290F5,ff,Cell 207 Voltage(Wtx_cell_v[206]) ,18DAF1DB,24,39,.000976563,0,3,V,2290F6,6290F6,ff,Cell 208 Voltage(Wtx_cell_v[207]) ,18DAF1DB,24,39,.000976563,0,3,V,2290F7,6290F7,ff,Cell 209 Voltage(Wtx_cell_v[208]) ,18DAF1DB,24,39,.000976563,0,3,V,2290F8,6290F8,ff,Cell 210 Voltage(Wtx_cell_v[209]) ,18DAF1DB,24,39,.000976563,0,3,V,2290F9,6290F9,ff,Cell 211 Voltage(Wtx_cell_v[210]) ,18DAF1DB,24,39,.000976563,0,3,V,2290FA,6290FA,ff,Cell 212 Voltage(Wtx_cell_v[211]) ,18DAF1DB,24,39,.000976563,0,3,V,2290FB,6290FB,ff,Cell 213 Voltage(Wtx_cell_v[212]) ,18DAF1DB,24,39,.000976563,0,3,V,2290FC,6290FC,ff,Cell 214 Voltage(Wtx_cell_v[213]) ,18DAF1DB,24,39,.000976563,0,3,V,2290FD,6290FD,ff,Cell 215 Voltage(Wtx_cell_v[214]) ,18DAF1DB,24,39,.000976563,0,3,V,2290FE,6290FE,ff,Cell 216 Voltage(Wtx_cell_v[215]) ,18DAF1DB,24,39,.000976563,0,3,V,2290FF,6290FF,ff,Cell 217 Voltage(Wtx_cell_v[216]) ,18DAF1DB,24,55,1,0,0,,229100,629100,4ff,DIDs supported in range [$9101 - $9120] ,18DAF1DB,24,39,.000976563,0,3,V,229101,629101,ff,Cell 218 Voltage(Wtx_cell_v[217]) ,18DAF1DB,24,39,.000976563,0,3,V,229102,629102,ff,Cell 219 Voltage(Wtx_cell_v[218]) ,18DAF1DB,24,39,.000976563,0,3,V,229103,629103,ff,Cell 220 Voltage(Wtx_cell_v[219]) ,18DAF1DB,24,39,.000976563,0,3,V,229104,629104,ff,Cell 221 Voltage(Wtx_cell_v[220]) ,18DAF1DB,24,39,.000976563,0,3,V,229105,629105,ff,Cell 222 Voltage(Wtx_cell_v[221]) ,18DAF1DB,24,39,.000976563,0,3,V,229106,629106,ff,Cell 223 Voltage(Wtx_cell_v[222]) ,18DAF1DB,24,39,.000976563,0,3,V,229107,629107,ff,Cell 224 Voltage(Wtx_cell_v[223]) ,18DAF1DB,24,39,.000976563,0,3,V,229108,629108,ff,Cell 225 Voltage(Wtx_cell_v[224]) ,18DAF1DB,24,39,.000976563,0,3,V,229109,629109,ff,Cell 226 Voltage(Wtx_cell_v[225]) ,18DAF1DB,24,39,.000976563,0,3,V,22910A,62910A,ff,Cell 227 Voltage(Wtx_cell_v[226]) ,18DAF1DB,24,39,.000976563,0,3,V,22910B,62910B,ff,Cell 228 Voltage(Wtx_cell_v[227]) ,18DAF1DB,24,39,.000976563,0,3,V,22910C,62910C,ff,Cell 229 Voltage(Wtx_cell_v[228]) ,18DAF1DB,24,39,.000976563,0,3,V,22910D,62910D,ff,Cell 230 Voltage(Wtx_cell_v[229]) ,18DAF1DB,24,39,.000976563,0,3,V,22910E,62910E,ff,Cell 231 Voltage(Wtx_cell_v[230]) ,18DAF1DB,24,39,.000976563,0,3,V,22910F,62910F,ff,Cell 232 Voltage(Wtx_cell_v[231]) ,18DAF1DB,24,39,.000976563,0,3,V,229110,629110,ff,Cell 233 Voltage(Wtx_cell_v[232]) ,18DAF1DB,24,39,.000976563,0,3,V,229111,629111,ff,Cell 234 Voltage(Wtx_cell_v[233]) ,18DAF1DB,24,39,.000976563,0,3,V,229112,629112,ff,Cell 235 Voltage(Wtx_cell_v[234]) ,18DAF1DB,24,39,.000976563,0,3,V,229113,629113,ff,Cell 236 Voltage(Wtx_cell_v[235]) ,18DAF1DB,24,39,.000976563,0,3,V,229114,629114,ff,Cell 237 Voltage(Wtx_cell_v[236]) ,18DAF1DB,24,39,.000976563,0,3,V,229115,629115,ff,Cell 238 Voltage(Wtx_cell_v[237]) ,18DAF1DB,24,39,.000976563,0,3,V,229116,629116,ff,Cell 239 Voltage(Wtx_cell_v[238]) ,18DAF1DB,24,39,.000976563,0,3,V,229117,629117,ff,Cell 240 Voltage(Wtx_cell_v[239]) ,18DAF1DB,24,39,.000976563,0,3,V,229118,629118,ff,Cell 241 Voltage(Wtx_cell_v[240]) ,18DAF1DB,24,39,.000976563,0,3,V,229119,629119,ff,Cell 242 Voltage(Wtx_cell_v[241]) ,18DAF1DB,24,39,.000976563,0,3,V,22911A,62911A,ff,Cell 243 Voltage(Wtx_cell_v[242]) ,18DAF1DB,24,39,.000976563,0,3,V,22911B,62911B,ff,Cell 244 Voltage(Wtx_cell_v[243]) ,18DAF1DB,24,39,.000976563,0,3,V,22911C,62911C,ff,Cell 245 Voltage(Wtx_cell_v[244]) ,18DAF1DB,24,39,.000976563,0,3,V,22911D,62911D,ff,Cell 246 Voltage(Wtx_cell_v[245]) ,18DAF1DB,24,39,.000976563,0,3,V,22911E,62911E,ff,Cell 247 Voltage(Wtx_cell_v[246]) ,18DAF1DB,24,39,.000976563,0,3,V,22911F,62911F,ff,Cell 248 Voltage(Wtx_cell_v[247]) ,18DAF1DB,24,55,1,0,0,,229120,629120,4ff,DIDs supported in range [$9121 - $9140] ,18DAF1DB,24,39,.000976563,0,3,V,229121,629121,ff,Cell 249 Voltage(Wtx_cell_v[248]) ,18DAF1DB,24,39,.000976563,0,3,V,229122,629122,ff,Cell 250 Voltage(Wtx_cell_v[249]) ,18DAF1DB,24,39,.000976563,0,3,V,229123,629123,ff,Cell 251 Voltage(Wtx_cell_v[250]) ,18DAF1DB,24,39,.000976563,0,3,V,229124,629124,ff,Cell 252 Voltage(Wtx_cell_v[251]) ,18DAF1DB,24,39,.000976563,0,3,V,229125,629125,ff,Cell 253 Voltage(Wtx_cell_v[252]) ,18DAF1DB,24,39,.000976563,0,3,V,229126,629126,ff,Cell 254 Voltage(Wtx_cell_v[253]) ,18DAF1DB,24,39,.000976563,0,3,V,229127,629127,ff,Cell 255 Voltage(Wtx_cell_v[254]) ,18DAF1DB,24,39,.000976563,0,3,V,229128,629128,ff,Cell 256 Voltage(Wtx_cell_v[255]) ,18DAF1DB,27,27,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).20,0:No failure;1:Slave No.21 failure ,18DAF1DB,28,28,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).19,0:No failure;1:Slave No.20 failure ,18DAF1DB,29,29,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).18,0:No failure;1:Slave No.19 failure ,18DAF1DB,30,30,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).17,0:No failure;1:Slave No.18 failure ,18DAF1DB,31,31,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).16,0:No failure;1:Slave No.17 failure ,18DAF1DB,32,32,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).15,0:No failure;1:Slave No.16 failure ,18DAF1DB,33,33,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).14,0:No failure;1:Slave No.15 failure ,18DAF1DB,34,34,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).13,0:No failure;1:Slave No.14 failure ,18DAF1DB,35,35,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).12,0:No failure;1:Slave No.13 failure ,18DAF1DB,36,36,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).11,0:No failure;1:Slave No.12 failure ,18DAF1DB,37,37,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).10,0:No failure;1:Slave No.11 failure ,18DAF1DB,38,38,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).09,0:No failure;1:Slave No.10 failure ,18DAF1DB,39,39,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).08,0:No failure;1:Slave No.9 failure ,18DAF1DB,40,40,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).07,0:No failure;1:Slave No.8 failure ,18DAF1DB,41,41,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).06,0:No failure;1:Slave No.7 failure ,18DAF1DB,42,42,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).05,0:No failure;1:Slave No.6 failure ,18DAF1DB,43,43,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).04,0:No failure;1:Slave No.5 failure ,18DAF1DB,44,44,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).03,0:No failure;1:Slave No.4 failure ,18DAF1DB,45,45,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).02,0:No failure;1:Slave No.3 failure ,18DAF1DB,46,46,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).01,0:No failure;1:Slave No.2 failure ,18DAF1DB,47,47,1,0,0,,229129,629129,ff,Slaves Failure Status(Wtx_slv_fail_nr).00,0:No failure;1:Slave No.1 failure ,18DAF1DB,24,24,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).256 ,18DAF1DB,25,25,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).255 ,18DAF1DB,26,26,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).254 ,18DAF1DB,27,27,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).253 ,18DAF1DB,28,28,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).252 ,18DAF1DB,29,29,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).251 ,18DAF1DB,30,30,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).250 ,18DAF1DB,31,31,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).249 ,18DAF1DB,32,32,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).248 ,18DAF1DB,33,33,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).247 ,18DAF1DB,34,34,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).246 ,18DAF1DB,35,35,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).245 ,18DAF1DB,36,36,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).244 ,18DAF1DB,37,37,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).243 ,18DAF1DB,38,38,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).242 ,18DAF1DB,39,39,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).241 ,18DAF1DB,40,40,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).240 ,18DAF1DB,41,41,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).239 ,18DAF1DB,42,42,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).238 ,18DAF1DB,43,43,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).237 ,18DAF1DB,44,44,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).236 ,18DAF1DB,45,45,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).235 ,18DAF1DB,46,46,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).234 ,18DAF1DB,47,47,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).233 ,18DAF1DB,48,48,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).232 ,18DAF1DB,49,49,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).231 ,18DAF1DB,50,50,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).230 ,18DAF1DB,51,51,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).229 ,18DAF1DB,52,52,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).228 ,18DAF1DB,53,53,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).227 ,18DAF1DB,54,54,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).226 ,18DAF1DB,55,55,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).225 ,18DAF1DB,56,56,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).224 ,18DAF1DB,57,57,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).223 ,18DAF1DB,58,58,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).222 ,18DAF1DB,59,59,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).221 ,18DAF1DB,60,60,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).220 ,18DAF1DB,61,61,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).219 ,18DAF1DB,62,62,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).218 ,18DAF1DB,63,63,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).217 ,18DAF1DB,64,64,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).216 ,18DAF1DB,65,65,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).215 ,18DAF1DB,66,66,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).214 ,18DAF1DB,67,67,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).213 ,18DAF1DB,68,68,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).212 ,18DAF1DB,69,69,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).211 ,18DAF1DB,70,70,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).210 ,18DAF1DB,71,71,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).209 ,18DAF1DB,72,72,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).208 ,18DAF1DB,73,73,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).207 ,18DAF1DB,74,74,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).206 ,18DAF1DB,75,75,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).205 ,18DAF1DB,76,76,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).204 ,18DAF1DB,77,77,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).203 ,18DAF1DB,78,78,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).202 ,18DAF1DB,79,79,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).201 ,18DAF1DB,80,80,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).200 ,18DAF1DB,81,81,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).199 ,18DAF1DB,82,82,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).198 ,18DAF1DB,83,83,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).197 ,18DAF1DB,84,84,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).196 ,18DAF1DB,85,85,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).195 ,18DAF1DB,86,86,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).194 ,18DAF1DB,88,88,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).192 ,18DAF1DB,89,89,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).191 ,18DAF1DB,90,90,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).190 ,18DAF1DB,91,91,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).189 ,18DAF1DB,92,92,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).188 ,18DAF1DB,93,93,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).187 ,18DAF1DB,94,94,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).186 ,18DAF1DB,95,95,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).193 ,18DAF1DB,96,96,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).184 ,18DAF1DB,97,97,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).183 ,18DAF1DB,98,98,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).182 ,18DAF1DB,99,99,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).181 ,18DAF1DB,100,100,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).180 ,18DAF1DB,101,101,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).179 ,18DAF1DB,102,102,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).178 ,18DAF1DB,103,103,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).177 ,18DAF1DB,104,104,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).176 ,18DAF1DB,105,105,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).175 ,18DAF1DB,106,106,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).174 ,18DAF1DB,107,107,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).173 ,18DAF1DB,108,108,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).172 ,18DAF1DB,109,109,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).171 ,18DAF1DB,110,110,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).170 ,18DAF1DB,111,111,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).169 ,18DAF1DB,112,112,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).168 ,18DAF1DB,113,113,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).167 ,18DAF1DB,114,114,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).166 ,18DAF1DB,115,115,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).165 ,18DAF1DB,116,116,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).164 ,18DAF1DB,117,117,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).163 ,18DAF1DB,118,118,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).162 ,18DAF1DB,119,119,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).161 ,18DAF1DB,120,120,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).160 ,18DAF1DB,121,121,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).159 ,18DAF1DB,122,122,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).158 ,18DAF1DB,123,123,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).157 ,18DAF1DB,124,124,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).156 ,18DAF1DB,125,125,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).155 ,18DAF1DB,126,126,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).154 ,18DAF1DB,127,127,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).153 ,18DAF1DB,128,128,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).152 ,18DAF1DB,129,129,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).151 ,18DAF1DB,130,130,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).150 ,18DAF1DB,131,131,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).149 ,18DAF1DB,132,132,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).148 ,18DAF1DB,133,133,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).147 ,18DAF1DB,134,134,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).146 ,18DAF1DB,135,135,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).145 ,18DAF1DB,136,136,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).144 ,18DAF1DB,137,137,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).143 ,18DAF1DB,138,138,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).142 ,18DAF1DB,139,139,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).141 ,18DAF1DB,140,140,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).140 ,18DAF1DB,141,141,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).139 ,18DAF1DB,142,142,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).138 ,18DAF1DB,143,143,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).137 ,18DAF1DB,144,144,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).136 ,18DAF1DB,145,145,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).135 ,18DAF1DB,146,146,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).134 ,18DAF1DB,147,147,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).133 ,18DAF1DB,148,148,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).132 ,18DAF1DB,149,149,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).131 ,18DAF1DB,150,150,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).130 ,18DAF1DB,151,151,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).129 ,18DAF1DB,152,152,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).128 ,18DAF1DB,153,153,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).127 ,18DAF1DB,154,154,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).126 ,18DAF1DB,155,155,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).125 ,18DAF1DB,156,156,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).124 ,18DAF1DB,157,157,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).123 ,18DAF1DB,158,158,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).122 ,18DAF1DB,159,159,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).121 ,18DAF1DB,160,160,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).120 ,18DAF1DB,161,161,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).119 ,18DAF1DB,162,162,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).118 ,18DAF1DB,163,163,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).117 ,18DAF1DB,164,164,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).116 ,18DAF1DB,165,165,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).115 ,18DAF1DB,166,166,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).114 ,18DAF1DB,167,167,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).113 ,18DAF1DB,168,168,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).112 ,18DAF1DB,169,169,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).111 ,18DAF1DB,170,170,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).110 ,18DAF1DB,171,171,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).109 ,18DAF1DB,172,172,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).108 ,18DAF1DB,173,173,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).107 ,18DAF1DB,174,174,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).106 ,18DAF1DB,175,175,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).105 ,18DAF1DB,176,176,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).104 ,18DAF1DB,177,177,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).103 ,18DAF1DB,178,178,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).102 ,18DAF1DB,179,179,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).101 ,18DAF1DB,180,180,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).100 ,18DAF1DB,181,181,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).99 ,18DAF1DB,182,182,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).98 ,18DAF1DB,183,183,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).97 ,18DAF1DB,184,184,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).96 ,18DAF1DB,185,185,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).95 ,18DAF1DB,186,186,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).94 ,18DAF1DB,187,187,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).93 ,18DAF1DB,188,188,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).92 ,18DAF1DB,189,189,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).91 ,18DAF1DB,190,190,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).90 ,18DAF1DB,191,191,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).89 ,18DAF1DB,192,192,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).88 ,18DAF1DB,193,193,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).87 ,18DAF1DB,194,194,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).86 ,18DAF1DB,195,195,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).85 ,18DAF1DB,196,196,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).84 ,18DAF1DB,197,197,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).83 ,18DAF1DB,198,198,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).82 ,18DAF1DB,199,199,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).81 ,18DAF1DB,200,200,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).80 ,18DAF1DB,201,201,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).79 ,18DAF1DB,202,202,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).78 ,18DAF1DB,203,203,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).77 ,18DAF1DB,204,204,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).76 ,18DAF1DB,205,205,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).75 ,18DAF1DB,206,206,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).74 ,18DAF1DB,207,207,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).73 ,18DAF1DB,208,208,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).72 ,18DAF1DB,209,209,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).71 ,18DAF1DB,210,210,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).70 ,18DAF1DB,211,211,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).69 ,18DAF1DB,212,212,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).68 ,18DAF1DB,213,213,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).67 ,18DAF1DB,214,214,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).66 ,18DAF1DB,215,215,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).65 ,18DAF1DB,216,216,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).64 ,18DAF1DB,217,217,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).63 ,18DAF1DB,218,218,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).62 ,18DAF1DB,219,219,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).61 ,18DAF1DB,220,220,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).60 ,18DAF1DB,221,221,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).59 ,18DAF1DB,222,222,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).58 ,18DAF1DB,223,223,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).57 ,18DAF1DB,224,224,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).56 ,18DAF1DB,225,225,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).55 ,18DAF1DB,226,226,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).54 ,18DAF1DB,227,227,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).53 ,18DAF1DB,228,228,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).52 ,18DAF1DB,229,229,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).51 ,18DAF1DB,230,230,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).50 ,18DAF1DB,231,231,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).49 ,18DAF1DB,232,232,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).48 ,18DAF1DB,233,233,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).47 ,18DAF1DB,234,234,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).46 ,18DAF1DB,235,235,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).45 ,18DAF1DB,236,236,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).44 ,18DAF1DB,237,237,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).43 ,18DAF1DB,238,238,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).42 ,18DAF1DB,239,239,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).41 ,18DAF1DB,240,240,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).40 ,18DAF1DB,241,241,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).39 ,18DAF1DB,242,242,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).38 ,18DAF1DB,243,243,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).37 ,18DAF1DB,244,244,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).36 ,18DAF1DB,245,245,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).35 ,18DAF1DB,246,246,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).34 ,18DAF1DB,247,247,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).33 ,18DAF1DB,248,248,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).32 ,18DAF1DB,249,249,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).31 ,18DAF1DB,250,250,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).30 ,18DAF1DB,251,251,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).29 ,18DAF1DB,252,252,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).28 ,18DAF1DB,253,253,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).27 ,18DAF1DB,254,254,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).26 ,18DAF1DB,255,255,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).25 ,18DAF1DB,256,256,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).24 ,18DAF1DB,257,257,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).23 ,18DAF1DB,258,258,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).22 ,18DAF1DB,259,259,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).21 ,18DAF1DB,260,260,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).20 ,18DAF1DB,261,261,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).19 ,18DAF1DB,262,262,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).18 ,18DAF1DB,263,263,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).17 ,18DAF1DB,264,264,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).16 ,18DAF1DB,265,265,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).15 ,18DAF1DB,266,266,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).14 ,18DAF1DB,267,267,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).13 ,18DAF1DB,268,268,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).12 ,18DAF1DB,269,269,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).11 ,18DAF1DB,270,270,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).10 ,18DAF1DB,271,271,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).09 ,18DAF1DB,272,272,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).08 ,18DAF1DB,273,273,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).07 ,18DAF1DB,274,274,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).06 ,18DAF1DB,275,275,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).05 ,18DAF1DB,276,276,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).04 ,18DAF1DB,277,277,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).03 ,18DAF1DB,278,278,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).02 ,18DAF1DB,279,279,1,0,0,,22912B,62912B,ff,Balancing switches status(Wtx_bal_chg_act).01 ,18DAF1DB,24,31,32,0,0,rpm,22912E,62912E,ff,FAN speed(Wxx_raw_fan_rpm) ,18DAF1DB,24,25,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.20,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,32,33,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.16,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,34,35,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.17,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,36,37,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.18,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,38,39,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.19,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,40,41,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.12,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,42,43,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.13,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,44,45,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.14,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,46,47,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.15,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,48,49,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.08,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,50,51,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.09,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,52,53,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.10,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,54,55,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.11,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,56,57,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.04,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,58,59,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.05,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,60,61,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.06,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,62,63,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.07,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,64,65,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.00,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,66,67,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.01,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,68,69,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.02,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,70,71,1,0,0,,22912F,62912F,ff,Temperature sensors in failure.03,0:no failure;1:failure OC/SCW;2:SCG failure ,18DAF1DB,24,39,1,0,0,V,229130,629130,ff,HV CAN current sensor supply voltage(Wxx_bat_i_can_sply_dg) ,18DAF1DB,24,39,.0625,640,2,°C,229131,629131,ff,Temperature sensor n°1 value.(Wtx_temp[0]) ,18DAF1DB,24,39,.0625,640,2,°C,229132,629132,ff,Temperature sensor n°2 value.(Wtx_temp[1]) ,18DAF1DB,24,39,.0625,640,2,°C,229133,629133,ff,Temperature sensor n°3 value.(Wtx_temp[2]) ,18DAF1DB,24,39,.0625,640,2,°C,229134,629134,ff,Temperature sensor n°4 value.(Wtx_temp[3]) ,18DAF1DB,24,39,.0625,640,2,°C,229135,629135,ff,Temperature sensor n°5 value.(Wtx_temp[4]) ,18DAF1DB,24,39,.0625,640,2,°C,229136,629136,ff,Temperature sensor n°6 value.(Wtx_temp[5]) ,18DAF1DB,24,39,.0625,640,2,°C,229137,629137,ff,Temperature sensor n°7 value.(Wtx_temp[6]) ,18DAF1DB,24,39,.0625,640,2,°C,229138,629138,ff,Temperature sensor n°8 value.(Wtx_temp[7]) ,18DAF1DB,24,39,.0625,640,2,°C,229139,629139,ff,Temperature sensor n°9 value(Wtx_temp[8]) ,18DAF1DB,24,39,.0625,640,2,°C,22913A,62913A,ff,Temperature sensor n°10 value[Wtx_temp[9]] ,18DAF1DB,24,39,.0625,640,2,°C,22913B,62913B,ff,Temperature sensor n°11 value[Wtx_temp[10]] ,18DAF1DB,24,39,.0625,640,2,°C,22913C,62913C,ff,Temperature sensor n°12 value[Wtx_temp[11]] ,18DAF1DB,24,39,.0625,640,2,°C,22913D,62913D,ff,Temperature sensor n°13 value[Wtx_temp[12]] ,18DAF1DB,24,39,.0625,640,2,°C,22913E,62913E,ff,Temperature sensor n°14 value[Wtx_temp[13]] ,18DAF1DB,24,39,.0625,640,2,°C,22913F,62913F,ff,Temperature sensor n°15 value[Wtx_temp[14]] ,18DAF1DB,24,55,1,0,0,,229140,629140,4ff,DIDs supported in range [$9141 - $9160] ,18DAF1DB,24,39,.0625,640,2,°C,229141,629141,ff,Temperature sensor n°16 value[Wtx_temp[15]] ,18DAF1DB,24,39,.0625,640,2,°C,229142,629142,ff,Temperature sensor n°17 value[Wtx_temp[16]] ,18DAF1DB,24,55,1,0,0,,229160,629160,4ff,DIDs supported in range [$9161 - $9180] ,18DAF1DB,28,39,.001953125,0,3,V,229173,629173,ff,Cooling temperature(raw voltage) T1_MEA(Wxx_raw_temp_1_v) ,18DAF1DB,28,39,.001953125,0,3,V,229174,629174,ff,Skin temperature(raw voltage) T2_MEA(Wxx_raw_temp_2_v) ,18DAF1DB,24,31,.0625,0,2,V,229175,629175,ff,Temperature sensor n°1 raw AD voltage(Wtx_raw_temp_v[0]) ,18DAF1DB,24,31,.0625,0,2,V,229176,629176,ff,Temperature sensor n°2 raw AD voltage(Wtx_raw_temp_v[1]) ,18DAF1DB,24,31,.0625,0,2,V,229177,629177,ff,Temperature sensor n°3 raw AD voltage(Wtx_raw_temp_v[2]) ,18DAF1DB,24,31,.0625,0,2,V,229178,629178,ff,Temperature sensor n°4 raw AD voltage(Wtx_raw_temp_v[3]) ,18DAF1DB,24,31,.0625,0,2,V,229179,629179,ff,Temperature sensor n°5 raw AD voltage(Wtx_raw_temp_v[4]) ,18DAF1DB,24,31,.0625,0,2,V,22917A,62917A,ff,Temperature sensor n°6 raw AD voltage(Wtx_raw_temp_v[5]) ,18DAF1DB,24,31,.0625,0,2,V,22917B,62917B,ff,Temperature sensor n°7 raw AD voltage(Wtx_raw_temp_v[6]) ,18DAF1DB,24,31,.0625,0,2,V,22917C,62917C,ff,Temperature sensor n°8 raw AD voltage(Wtx_raw_temp_v[7]) ,18DAF1DB,24,31,.0625,0,2,V,22917D,62917D,ff,Temperature sensor n°9 raw AD voltage(Wtx_raw_temp_v[8]) ,18DAF1DB,24,31,.0625,0,2,V,22917E,62917E,ff,Temperature sensor n°10 raw AD voltage(Wtx_raw_temp_v[9]) ,18DAF1DB,24,31,.0625,0,2,V,22917F,62917F,ff,Temperature sensor n°11 raw AD voltage(Wtx_raw_temp_v[10]) ,18DAF1DB,24,55,1,0,0,,229180,629180,4ff,DIDs supported in range [$9181 - $91A0] ,18DAF1DB,24,31,.0625,0,2,V,229181,629181,ff,Temperature sensor n°12 raw AD voltage(Wtx_raw_temp_v[11]) ,18DAF1DB,24,31,.0625,0,2,V,229182,629182,ff,Temperature sensor n°13 raw AD voltage(Wtx_raw_temp_v[12]) ,18DAF1DB,24,31,.0625,0,2,V,229183,629183,ff,Temperature sensor n°14 raw AD voltage(Wtx_raw_temp_v[13]) ,18DAF1DB,24,31,.0625,0,2,V,229184,629184,ff,Temperature sensor n°15 raw AD voltage(Wtx_raw_temp_v[14]) ,18DAF1DB,24,31,.0625,0,2,V,229185,629185,ff,Temperature sensor n°16 raw AD voltage(Wtx_raw_temp_v[15]) ,18DAF1DB,24,55,1,0,0,,2291A0,6291A0,4ff,DIDs supported in range [$91A1 - $91C0] ,18DAF1DB,24,39,.0625,640,2,°C,2291B7,6291B7,ff,Board temperature (Main CPU)(Wxx_raw_cpu_temp) ,18DAF1DB,24,39,.01,300,2,%,2291B9,6291B9,ff,Battery SOC min(Zxx_bsoc_min) ,18DAF1DB,24,39,.01,300,2,%,2291BA,6291BA,ff,Battery SOC max(Zxx_bsoc_max) ,18DAF1DB,24,39,.1,0,1,%,2291BC,6291BC,ff,Battery SOH (Available Power calculation)(Zxx_sohap) ,18DAF1DB,24,39,.1,0,1,%,2291BD,6291BD,ff,Battery SOH (Generated Power calculation)(Zxx_sohgp) ,18DAF1DB,28,39,.001953125,0,3,V,2291BE,6291BE,ff,ADC 5V reference / P5VPREF_DIAG (MAIN CPU)(Wxx_raw_5v_ref_diag) ,18DAF1DB,24,55,1,0,0,,2291C0,6291C0,4ff,DIDs supported in range [$91C1 - $91E0] ,18DAF1DB,24,47,1,0,0,min,2291C1,6291C1,ff,Pack Time Life (since 1st power-up)(Wxx_abs_time_pack) ,18DAF1DB,24,39,.25,0,1,mOhm,2291C6,6291C6,ff,DC resistance (charge direction)(Wxx_dcr_chg) ,18DAF1DB,24,39,.25,0,1,mOhm,2291C7,6291C7,ff,DC resistance (discharge direction)(Wxx_dcr_dchg) ,18DAF1DB,24,47,.001,0,3,kW,2291C8,6291C8,ff,Available Energy(Wxx_avl_e) ,18DAF1DB,24,31,.5,0,1,%,2291C9,6291C9,ff,FAN control request(Wxx_fan_ctl_dcy) ,18DAF1DB,31,31,1,0,0,,2291CA,6291CA,ff,Main relay control request(Wxx_chg_rly_ctl),0:Openning control;1:Closing control ,18DAF1DB,31,31,1,0,0,,2291CB,6291CB,ff,Precharge relay control request(Wxx_pchg_rly_ctl),0:Openning control;1:Closing control ,18DAF1DB,27,27,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).21,0:No failure;1:Busbar no.21 failure ,18DAF1DB,28,28,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).20,0:No failure;1:Busbar no.20 failure ,18DAF1DB,29,29,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).19,0:No failure;1:Busbar no.19 failure ,18DAF1DB,30,30,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).18,0:No failure;1:Busbar no.18 failure ,18DAF1DB,31,31,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).17,0:No failure;1:Busbar no.17 failure ,18DAF1DB,32,32,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).16,0:No failure;1:Busbar no.16 failure ,18DAF1DB,33,33,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).15,0:No failure;1:Busbar no.15 failure ,18DAF1DB,34,34,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).14,0:No failure;1:Busbar no.14 failure ,18DAF1DB,35,35,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).13,0:No failure;1:Busbar no.13 failure ,18DAF1DB,36,36,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).12,0:No failure;1:Busbar no.12 failure ,18DAF1DB,37,37,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).11,0:No failure;1:Busbar no.11 failure ,18DAF1DB,38,38,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).10,0:No failure;1:Busbar no.10 failure ,18DAF1DB,39,39,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).09,0:No failure;1:Busbar no.9 failure ,18DAF1DB,40,40,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).08,0:No failure;1:Busbar no.8 failure ,18DAF1DB,41,41,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).07,0:No failure;1:Busbar no.7 failure ,18DAF1DB,42,42,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).06,0:No failure;1:Busbar no.6 failure ,18DAF1DB,43,43,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).05,0:No failure;1:Busbar no.5 failure ,18DAF1DB,44,44,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).04,0:No failure;1:Busbar no.4 failure ,18DAF1DB,45,45,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).03,0:No failure;1:Busbar no.3 failure ,18DAF1DB,46,46,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).02,0:No failure;1:Busbar no.2 failure ,18DAF1DB,47,47,1,0,0,,2291CC,6291CC,ff,Busbars number in failure(Wtx_bbar_fail_nr).01,0:No failure;1:Busbar no.1 failure ,18DAF1DB,24,39,.0625,640,2,°C,2291CD,6291CD,ff,Cooling temperature(Wxx_raw_temp_1) ,18DAF1DB,24,55,.03125,-2147483648,2,km,2291CF,6291CF,1ff,Battery mileage(Zxx_dist_pack_mem) ,18DAF1DB,31,31,1,0,0,,2291D0,6291D0,ff,Charge relay diag feedback (RELAY1_DIAG)(Wbx_chg_rly_ctl_dg) ,18DAF1DB,24,39,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).25 ,18DAF1DB,40,55,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).24 ,18DAF1DB,56,71,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).23 ,18DAF1DB,72,87,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).22 ,18DAF1DB,88,103,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).21 ,18DAF1DB,104,119,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).20 ,18DAF1DB,120,135,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).19 ,18DAF1DB,136,151,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).18 ,18DAF1DB,152,167,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).17 ,18DAF1DB,168,183,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).16 ,18DAF1DB,184,199,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).15 ,18DAF1DB,200,215,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).14 ,18DAF1DB,216,231,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).13 ,18DAF1DB,232,247,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).12 ,18DAF1DB,248,263,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).11 ,18DAF1DB,264,279,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).10 ,18DAF1DB,280,295,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).09 ,18DAF1DB,296,311,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).08 ,18DAF1DB,312,327,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).07 ,18DAF1DB,328,343,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).06 ,18DAF1DB,344,359,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).05 ,18DAF1DB,360,375,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).04 ,18DAF1DB,376,391,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).03 ,18DAF1DB,392,407,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).02 ,18DAF1DB,408,423,1,0,0,min,2291D1,6291D1,ff,Charge Deplating Driving history (T°Max/BSOC)(Ztx_drv_cd_mtrx).01 ,18DAF1DB,24,39,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).25 ,18DAF1DB,40,55,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).24 ,18DAF1DB,56,71,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).23 ,18DAF1DB,72,87,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).22 ,18DAF1DB,88,103,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).21 ,18DAF1DB,104,119,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).20 ,18DAF1DB,120,135,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).19 ,18DAF1DB,136,151,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).18 ,18DAF1DB,152,167,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).17 ,18DAF1DB,168,183,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).16 ,18DAF1DB,184,199,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).15 ,18DAF1DB,200,215,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).14 ,18DAF1DB,216,231,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).13 ,18DAF1DB,232,247,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).12 ,18DAF1DB,248,263,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).11 ,18DAF1DB,264,279,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).10 ,18DAF1DB,280,295,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).09 ,18DAF1DB,296,311,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).08 ,18DAF1DB,312,327,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).07 ,18DAF1DB,328,343,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).06 ,18DAF1DB,344,359,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).05 ,18DAF1DB,360,375,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).04 ,18DAF1DB,376,391,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).03 ,18DAF1DB,392,407,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).02 ,18DAF1DB,408,423,1,0,0,h,2291D2,6291D2,ff,Parking history (T°Max/BSOC)(Zxx_prk_mtrx).01 ,18DAF1DB,31,31,1,0,0,%,2291DF,6291DF,ff,Precharge relay diag feedback (RELAY2_DIAG)(Wbx_rly_2_ctl_dg) ,18DAF1DB,24,55,1,0,0,,2291E0,6291E0,4ff,DIDs supported in range [$91E1 - $9200] ,18DAF1DB,24,1047,1,0,0,,2291E1,6291E1,4ff,Mission history(Ztx_mission_mtrx_[0_15]) ,18DAF1DB,24,1047,1,0,0,,2291E2,6291E2,4ff,Mission history(Ztx_mission_mtrx_[16_31]) ,18DAF1DB,24,1047,1,0,0,,2291E3,6291E3,4ff,Mission history(Ztx_mission_mtrx_[32_47]) ,18DAF1DB,24,1047,1,0,0,,2291E4,6291E4,4ff,Mission history(Ztx_mission_mtrx_[48_63]) ,18DAF1DB,31,31,1,0,0,,2291E5,6291E5,ff,VBATP1_CMD - Bypass request(Wbx_lv_sply_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DB,31,31,1,0,0,,2291E6,6291E6,ff,VBATP1_CMD - Bypass value(Wbx_lv_sply_byp_val),0:SWITCH OPENED;1:SWITCH CLOSED ,18DAF1DB,31,31,1,0,0,,2291E7,6291E7,ff,P12VP_CURR_CMD - Bypass request(Wbx_bat_i_can_sply_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DB,31,31,1,0,0,,2291E8,6291E8,ff,P12VP_CURR_CMD - Bypass value(Wbx_bat_i_can_sply_byp_val),0:SWITCH OPENED;1:SWITCH CLOSED ,18DAF1DB,31,31,1,0,0,,2291E9,6291E9,ff,RELAY1_CMD - Bypass request(Wbx_chg_rly_ctl_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DB,31,31,1,0,0,,2291EA,6291EA,ff,RELAY1_CMD - Bypass value(Wbx_chg_rly_ctl_byp_val),0:Relay OPENED;1:Relay CLOSED ,18DAF1DB,31,31,1,0,0,,2291EB,6291EB,ff,RELAY2_CMD - Bypass request(Wbx_pchg_rly_ctl_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DB,31,31,1,0,0,,2291EC,6291EC,ff,RELAY2_CMD - Bypass value(Wbx_pchg_rly_ctl_byp_val),0:Relay OPENED;1:Relay CLOSED ,18DAF1DB,31,31,1,0,0,,2291ED,6291ED,ff,RELAY3_CMD - Bypass request(Wbx_rly_3_ctl_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DB,31,31,1,0,0,,2291EE,6291EE,ff,RELAY3_CMD - Bypass value(Wbx_rly_3_ctl_byp_val),0:Relay OPENED;1:Relay CLOSED ,18DAF1DB,31,31,1,0,0,,2291EF,6291EF,ff,FAN_CMD_RATIO - Bypass request(Wbx_fan_ctl_dcy_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DB,24,31,.5,0,1,%,2291F0,6291F0,ff,FAN_CMD_RATIO - Bypass value(Wxx_fan_ctl_dcy_byp_val) ,18DAF1DB,31,31,1,0,0,,2291F1,6291F1,ff,FAN_CMD_PERIOD - Bypass request(Wbx_fan_ctl_prd_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DB,24,39,1,0,0,µs,2291F2,6291F2,ff,FAN_CMD_PERIOD - Bypass value(Wxx_fan_ctl_prd_byp_val) ,18DAF1DB,31,31,1,0,0,,2291F3,6291F3,ff,Relay 3 diag feedback (RELAY3_DIAG)(Wbx_rly_3_ctl_dg) ,18DAF1DB,24,39,1,0,0,µs,2291F4,6291F4,ff,FAN control period measured by DIAG input(Wxx_raw_fan_ctl_prd_dg) ,18DAF1DB,24,31,.5,0,1,%,2291F5,6291F5,ff,FAN control duty cycle measured by DIAG input(Wxx_raw_fan_ctl_dg) ,18DAF1DB,29,31,1,0,0,,2291F6,6291F6,ff,Interlock1 raw state(Wsx_raw_intlck1),3:SC+_ret;2:SC+;1:closed;0:open;4:SC_gnd ,18DAF1DB,29,31,1,0,0,,2291F7,6291F7,ff,Interlock2 raw state(Wsx_raw_intlck2),3:SC+_ret;2:SC+;1:closed;0:open;4:SC_gnd ,18DAF1DB,29,31,1,0,0,,2291F8,6291F8,ff,Interlock3 raw state(Wsx_raw_intlck3),3:SC+_ret;2:SC+;1:closed;0:open;4:SC_gnd ,18DAF1DB,29,31,1,0,0,,2291F9,6291F9,ff,Interlock4 raw state(Wsx_raw_intlck4),3:SC+_ret;2:SC+;1:closed;0:open;4:SC_gnd ,18DAF1DB,24,39,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).25 ,18DAF1DB,40,55,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).24 ,18DAF1DB,56,71,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).23 ,18DAF1DB,72,87,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).22 ,18DAF1DB,88,103,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).21 ,18DAF1DB,104,119,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).20 ,18DAF1DB,120,135,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).19 ,18DAF1DB,136,151,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).18 ,18DAF1DB,152,167,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).17 ,18DAF1DB,168,183,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).16 ,18DAF1DB,184,199,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).15 ,18DAF1DB,200,215,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).14 ,18DAF1DB,216,231,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).13 ,18DAF1DB,232,247,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).12 ,18DAF1DB,248,263,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).11 ,18DAF1DB,264,279,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).10 ,18DAF1DB,280,295,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).09 ,18DAF1DB,296,311,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).08 ,18DAF1DB,312,327,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).07 ,18DAF1DB,328,343,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).06 ,18DAF1DB,344,359,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).05 ,18DAF1DB,360,375,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).04 ,18DAF1DB,376,391,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).03 ,18DAF1DB,392,407,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).02 ,18DAF1DB,408,423,1,0,0,min,2291FF,6291FF,ff,Charge Sustaining Driving history (T°Max/BSOC)(Ztx_drv_cs_mtrx).01 ,18DAF1DB,24,55,1,0,0,,229200,629200,4ff,DIDs supported in range [$9201 - $9220] ,18DAF1DB,24,39,1,0,0,,229210,629210,ff,Overall number of complete charge(Zxx_full_chg_ctr) ,18DAF1DB,24,39,1,0,0,,229211,629211,ff,Overall number of DC charge(Zxx_dc_chg_ctr) ,18DAF1DB,24,39,1,0,0,,229212,629212,ff,Overall number of external charge(Zxx_ext_chg_ctr) ,18DAF1DB,24,39,1,0,0,,229213,629213,ff,Overall number of isolated charge(Zxx_isl_chg_ctr) ,18DAF1DB,24,39,1,0,0,,229214,629214,ff,Overall number of not insulated charge(Zxx_not_isl_chg_ctr) ,18DAF1DB,24,39,1,0,0,,229215,629215,ff,Overall number of partial charge(Zxx_partial_chg_ctr) ,18DAF1DB,24,31,1,0,0,,229216,629216,ff,Carrier to save SafetyMode1 root cause(Ztx_sfty_apv) ,18DAF1DB,31,31,1,0,0,,229217,629217,ff,Relay 3 control (RELAY3_CMD)(Wbx_rly_3_ctl),0:open;1:close ,18DAF1DB,31,31,1,0,0,,229218,629218,ff,Relay 4 control (RELAY4_CMD)(Wbx_rly_4_ctl),0:open;1:close ,18DAF1DB,31,31,1,0,0,,229219,629219,ff,Relay 4 diag feedback (RELAY4_DG)(Wbx_rly_4_ctl_dg) ,18DAF1DB,31,31,1,0,0,,22921A,62921A,ff,RELAY4_CMD - Bypass request(Wbx_rly_4_ctl_byp_req),0:Bypass OFF;1:Bypass ON ,18DAF1DB,31,31,1,0,0,,22921B,62921B,ff,RELAY4_CMD - Bypass value(Wbx_rly_4_ctl_byp_val),0:Relay Opened;1:Relay Closed ,18DAF1DB,24,39,.0625,640,2,°C,22921C,62921C,ff,Skin temperature (T2_MEA)(Wxx_temp_2) ,18DAF1DB,31,31,1,0,0,,22921D,62921D,ff,CAN current sensor failure indicator(Wbx_raw_bat_i_CAN_fail),0:No failure;1:Failure occurs ,18DAF1DB,24,31,1,0,0,,22921E,62921E,ff,CAN current sensor failure information(Wsx_raw_bat_i_CAN_errinf),65:Error on dataflash CRC;66:Fluxgate running at high frequency;67:Fluxgate not oscillating;68:CAB in fail safe mode;70:Signal not available more than 100ms;71:Supply voltage out of range ,18DAF1DB,24,55,1,0,0,,229220,629220,4ff,DIDs supported in range [$9221 - $9240] ,18DAF1DB,24,39,.000976563,0,3,V,229221,629221,1ff,Raw busbar voltage 0(Wtx_raw_busbar_v[0]) ,18DAF1DB,24,39,.000976563,0,3,V,229222,629222,1ff,Raw busbar voltage 1(Wtx_raw_busbar_v[1]) ,18DAF1DB,24,39,.000976563,0,3,V,229223,629223,1ff,Raw busbar voltage 2(Wtx_raw_busbar_v[2]) ,18DAF1DB,24,39,.000976563,0,3,V,229224,629224,1ff,Raw busbar voltage 3(Wtx_raw_busbar_v[3]) ,18DAF1DB,24,39,.000976563,0,3,V,229225,629225,1ff,Raw busbar voltage 4(Wtx_raw_busbar_v[4]) ,18DAF1DB,24,39,.000976563,0,3,V,229226,629226,1ff,Raw busbar voltage 5(Wtx_raw_busbar_v[5]) ,18DAF1DB,24,39,.000976563,0,3,V,229227,629227,1ff,Raw busbar voltage 6(Wtx_raw_busbar_v[6]) ,18DAF1DB,24,39,.000976563,0,3,V,229228,629228,1ff,Raw busbar voltage 7(Wtx_raw_busbar_v[7]) ,18DAF1DB,24,39,.000976563,0,3,V,229229,629229,1ff,Raw busbar voltage 8(Wtx_raw_busbar_v[8]) ,18DAF1DB,24,39,.000976563,0,3,V,22922A,62922A,1ff,Raw busbar voltage 9(Wtx_raw_busbar_v[9]) ,18DAF1DB,24,39,.000976563,0,3,V,22922B,62922B,1ff,Raw busbar voltage 10(Wtx_raw_busbar_v[10]) ,18DAF1DB,24,39,.000976563,0,3,V,22922C,62922C,1ff,Raw busbar voltage 11(Wtx_raw_busbar_v[11]) ,18DAF1DB,24,55,1,0,0,,229240,629240,4ff,DIDs supported in range [$9241 - $9260] ,18DAF1DB,24,31,1,0,0,,229241,629241,ff,Index of thermistor with maximal temperature value(Wxx_temp_max_nr) ,18DAF1DB,24,31,1,0,0,,229242,629242,ff,Index of thermistor with minimal temperature value(Wxx_temp_min_nr) ,18DAF1DB,24,55,.001,0,3,,229243,629243,1ff,Cumulated energy in charge (Zxx_kwh_chg) ,18DAF1DB,24,55,.001,0,3,,229244,629244,1ff,Cumulated energy in discharge : CS mode(Zxx_kwh_dch_cs) ,18DAF1DB,24,55,.001,0,3,,229245,629245,1ff,Cumulated energy in discharge:CD mode(Zxx_kwh_dch_cd) ,18DAF1DB,24,55,.001,0,3,,229246,629246,1ff,Cumulated energy in regen :CS mode(Zxx_kwh_rgn_cs) ,18DAF1DB,24,55,.001,0,3,,229247,629247,1ff,Cumulated energy in regen : CD mode(Zxx_kwh_rgn_cd) ,18DAF1DB,24,39,.01,0,2,%,229248,629248,ff,SOHEdegrad_K(Zxx_sohe_dgrd_k) ,18DAF1DB,24,39,.01,0,2,%,229249,629249,ff,SOHEdegrad_K-1(Zxx_sohe_dgrd_km1) ,18DAF1DB,24,39,.01,0,2,%,22924A,62924A,ff,SOHEmodel_K(Zxx_sohe_mdl_k) ,18DAF1DB,24,39,.01,0,2,%,22924B,62924B,ff,SOHEmodel_K-1(Zxx_sohe_mdl_km1) ,18DAF1DB,24,39,.01,0,2,,22924C,62924C,ff,SOHEAlgo(k)(Zxx_sohe_alg) ,18DAF1DB,24,31,.5,0,1,,22924E,62924E,ff,SOHEAlpha(k)(Wxx_sohe_alpha) ,18DAF1DB,24,55,.0009765625,-2147483648,3,Ah,22924F,62924F,1ff,Total cumulated capacity balanced(Zxx_bal_chg_tot) ,18DAF1DB,24,55,.0009765625,-2147483648,3,h,229250,629250,1ff,Total balancing time(Zxx_bal_time_tot) ,18DAF1DB,24,55,.0009765625,-2147483648,3,Ah,229251,629251,1ff,Total cumulated capacity balanced in sleep mode(Zxx_bal_chg_tot_slp) ,18DAF1DB,24,55,.0009765625,-2147483648,3,h,229252,629252,1ff,Total balancing time in sleep mode(Zxx_bal_time_tot_slp) ,18DAF1DB,24,39,.000976563,0,3,V,229254,629254,ff,20ms cell minimal voltage (Wxx_cell_v_min_20ms) ,18DAF1DB,24,39,.000976563,0,3,V,229255,629255,ff,20ms cell minimal voltage (Wxx_cell_v_max_20ms) ,18DAF1DB,24,24,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).256 ,18DAF1DB,25,25,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).255 ,18DAF1DB,26,26,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).254 ,18DAF1DB,27,27,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).253 ,18DAF1DB,28,28,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).252 ,18DAF1DB,29,29,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).251 ,18DAF1DB,30,30,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).250 ,18DAF1DB,31,31,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).249 ,18DAF1DB,32,32,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).248 ,18DAF1DB,33,33,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).247 ,18DAF1DB,34,34,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).246 ,18DAF1DB,35,35,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).245 ,18DAF1DB,36,36,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).244 ,18DAF1DB,37,37,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).243 ,18DAF1DB,38,38,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).242 ,18DAF1DB,39,39,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).241 ,18DAF1DB,40,40,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).240 ,18DAF1DB,41,41,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).239 ,18DAF1DB,42,42,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).238 ,18DAF1DB,43,43,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).237 ,18DAF1DB,44,44,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).236 ,18DAF1DB,45,45,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).235 ,18DAF1DB,46,46,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).234 ,18DAF1DB,47,47,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).233 ,18DAF1DB,48,48,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).232 ,18DAF1DB,49,49,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).231 ,18DAF1DB,50,50,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).230 ,18DAF1DB,51,51,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).229 ,18DAF1DB,52,52,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).228 ,18DAF1DB,53,53,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).227 ,18DAF1DB,54,54,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).226 ,18DAF1DB,55,55,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).225 ,18DAF1DB,56,56,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).224 ,18DAF1DB,57,57,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).223 ,18DAF1DB,58,58,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).222 ,18DAF1DB,59,59,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).221 ,18DAF1DB,60,60,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).220 ,18DAF1DB,61,61,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).219 ,18DAF1DB,62,62,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).218 ,18DAF1DB,63,63,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).217 ,18DAF1DB,64,64,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).216 ,18DAF1DB,65,65,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).215 ,18DAF1DB,66,66,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).214 ,18DAF1DB,67,67,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).213 ,18DAF1DB,68,68,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).212 ,18DAF1DB,69,69,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).211 ,18DAF1DB,70,70,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).210 ,18DAF1DB,71,71,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).209 ,18DAF1DB,72,72,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).208 ,18DAF1DB,73,73,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).207 ,18DAF1DB,74,74,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).206 ,18DAF1DB,75,75,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).205 ,18DAF1DB,76,76,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).204 ,18DAF1DB,77,77,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).203 ,18DAF1DB,78,78,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).202 ,18DAF1DB,79,79,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).201 ,18DAF1DB,80,80,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).200 ,18DAF1DB,81,81,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).199 ,18DAF1DB,82,82,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).198 ,18DAF1DB,83,83,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).197 ,18DAF1DB,84,84,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).196 ,18DAF1DB,85,85,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).195 ,18DAF1DB,86,86,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).194 ,18DAF1DB,87,87,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).193 ,18DAF1DB,88,88,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).192 ,18DAF1DB,89,89,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).191 ,18DAF1DB,90,90,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).190 ,18DAF1DB,91,91,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).189 ,18DAF1DB,92,92,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).188 ,18DAF1DB,93,93,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).187 ,18DAF1DB,94,94,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).186 ,18DAF1DB,95,95,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).185 ,18DAF1DB,96,96,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).184 ,18DAF1DB,97,97,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).183 ,18DAF1DB,98,98,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).182 ,18DAF1DB,99,99,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).181 ,18DAF1DB,100,100,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).180 ,18DAF1DB,101,101,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).179 ,18DAF1DB,102,102,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).178 ,18DAF1DB,103,103,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).177 ,18DAF1DB,104,104,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).176 ,18DAF1DB,105,105,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).175 ,18DAF1DB,106,106,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).174 ,18DAF1DB,107,107,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).173 ,18DAF1DB,108,108,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).172 ,18DAF1DB,109,109,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).171 ,18DAF1DB,110,110,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).170 ,18DAF1DB,111,111,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).169 ,18DAF1DB,112,112,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).168 ,18DAF1DB,113,113,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).167 ,18DAF1DB,114,114,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).166 ,18DAF1DB,115,115,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).165 ,18DAF1DB,116,116,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).164 ,18DAF1DB,117,117,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).163 ,18DAF1DB,118,118,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).162 ,18DAF1DB,119,119,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).161 ,18DAF1DB,120,120,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).160 ,18DAF1DB,121,121,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).159 ,18DAF1DB,122,122,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).158 ,18DAF1DB,123,123,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).157 ,18DAF1DB,124,124,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).156 ,18DAF1DB,125,125,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).155 ,18DAF1DB,126,126,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).154 ,18DAF1DB,127,127,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).153 ,18DAF1DB,128,128,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).152 ,18DAF1DB,129,129,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).151 ,18DAF1DB,130,130,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).150 ,18DAF1DB,131,131,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).149 ,18DAF1DB,132,132,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).148 ,18DAF1DB,133,133,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).147 ,18DAF1DB,134,134,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).146 ,18DAF1DB,135,135,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).145 ,18DAF1DB,136,136,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).144 ,18DAF1DB,137,137,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).143 ,18DAF1DB,138,138,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).142 ,18DAF1DB,139,139,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).141 ,18DAF1DB,140,140,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).140 ,18DAF1DB,141,141,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).139 ,18DAF1DB,142,142,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).138 ,18DAF1DB,143,143,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).137 ,18DAF1DB,144,144,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).136 ,18DAF1DB,145,145,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).135 ,18DAF1DB,146,146,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).134 ,18DAF1DB,147,147,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).133 ,18DAF1DB,148,148,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).132 ,18DAF1DB,149,149,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).131 ,18DAF1DB,150,150,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).130 ,18DAF1DB,151,151,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).129 ,18DAF1DB,152,152,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).128 ,18DAF1DB,153,153,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).127 ,18DAF1DB,154,154,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).126 ,18DAF1DB,155,155,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).125 ,18DAF1DB,156,156,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).124 ,18DAF1DB,157,157,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).123 ,18DAF1DB,158,158,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).122 ,18DAF1DB,159,159,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).121 ,18DAF1DB,160,160,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).120 ,18DAF1DB,161,161,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).119 ,18DAF1DB,162,162,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).118 ,18DAF1DB,163,163,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).117 ,18DAF1DB,164,164,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).116 ,18DAF1DB,165,165,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).115 ,18DAF1DB,166,166,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).114 ,18DAF1DB,167,167,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).113 ,18DAF1DB,168,168,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).112 ,18DAF1DB,169,169,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).111 ,18DAF1DB,170,170,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).110 ,18DAF1DB,171,171,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).109 ,18DAF1DB,172,172,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).108 ,18DAF1DB,173,173,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).107 ,18DAF1DB,174,174,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).106 ,18DAF1DB,175,175,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).105 ,18DAF1DB,176,176,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).104 ,18DAF1DB,177,177,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).103 ,18DAF1DB,178,178,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).102 ,18DAF1DB,179,179,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).101 ,18DAF1DB,180,180,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).100 ,18DAF1DB,181,181,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).99 ,18DAF1DB,182,182,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).98 ,18DAF1DB,183,183,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).97 ,18DAF1DB,184,184,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).96 ,18DAF1DB,185,185,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).95 ,18DAF1DB,186,186,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).94 ,18DAF1DB,187,187,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).93 ,18DAF1DB,188,188,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).92 ,18DAF1DB,189,189,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).91 ,18DAF1DB,190,190,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).90 ,18DAF1DB,191,191,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).89 ,18DAF1DB,192,192,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).88 ,18DAF1DB,193,193,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).87 ,18DAF1DB,194,194,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).86 ,18DAF1DB,195,195,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).85 ,18DAF1DB,196,196,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).84 ,18DAF1DB,197,197,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).83 ,18DAF1DB,198,198,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).82 ,18DAF1DB,199,199,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).81 ,18DAF1DB,200,200,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).80 ,18DAF1DB,201,201,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).79 ,18DAF1DB,202,202,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).78 ,18DAF1DB,203,203,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).77 ,18DAF1DB,204,204,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).76 ,18DAF1DB,205,205,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).75 ,18DAF1DB,206,206,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).74 ,18DAF1DB,207,207,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).73 ,18DAF1DB,208,208,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).72 ,18DAF1DB,209,209,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).71 ,18DAF1DB,210,210,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).70 ,18DAF1DB,211,211,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).69 ,18DAF1DB,212,212,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).68 ,18DAF1DB,213,213,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).67 ,18DAF1DB,214,214,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).66 ,18DAF1DB,215,215,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).65 ,18DAF1DB,216,216,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).64 ,18DAF1DB,217,217,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).63 ,18DAF1DB,218,218,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).62 ,18DAF1DB,219,219,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).61 ,18DAF1DB,220,220,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).60 ,18DAF1DB,221,221,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).59 ,18DAF1DB,222,222,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).58 ,18DAF1DB,223,223,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).57 ,18DAF1DB,224,224,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).56 ,18DAF1DB,225,225,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).55 ,18DAF1DB,226,226,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).54 ,18DAF1DB,227,227,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).53 ,18DAF1DB,228,228,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).52 ,18DAF1DB,229,229,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).51 ,18DAF1DB,230,230,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).50 ,18DAF1DB,231,231,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).49 ,18DAF1DB,232,232,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).48 ,18DAF1DB,233,233,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).47 ,18DAF1DB,234,234,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).46 ,18DAF1DB,235,235,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).45 ,18DAF1DB,236,236,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).44 ,18DAF1DB,237,237,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).43 ,18DAF1DB,238,238,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).42 ,18DAF1DB,239,239,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).41 ,18DAF1DB,240,240,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).40 ,18DAF1DB,241,241,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).39 ,18DAF1DB,242,242,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).38 ,18DAF1DB,243,243,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).37 ,18DAF1DB,244,244,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).36 ,18DAF1DB,245,245,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).35 ,18DAF1DB,246,246,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).34 ,18DAF1DB,247,247,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).33 ,18DAF1DB,248,248,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).32 ,18DAF1DB,249,249,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).31 ,18DAF1DB,250,250,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).30 ,18DAF1DB,251,251,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).29 ,18DAF1DB,252,252,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).28 ,18DAF1DB,253,253,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).27 ,18DAF1DB,254,254,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).26 ,18DAF1DB,255,255,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).25 ,18DAF1DB,256,256,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).24 ,18DAF1DB,257,257,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).23 ,18DAF1DB,258,258,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).22 ,18DAF1DB,259,259,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).21 ,18DAF1DB,260,260,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).20 ,18DAF1DB,261,261,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).19 ,18DAF1DB,262,262,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).18 ,18DAF1DB,263,263,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).17 ,18DAF1DB,264,264,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).16 ,18DAF1DB,265,265,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).15 ,18DAF1DB,266,266,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).14 ,18DAF1DB,267,267,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).13 ,18DAF1DB,268,268,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).12 ,18DAF1DB,269,269,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).11 ,18DAF1DB,270,270,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).10 ,18DAF1DB,271,271,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).09 ,18DAF1DB,272,272,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).08 ,18DAF1DB,273,273,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).07 ,18DAF1DB,274,274,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).06 ,18DAF1DB,275,275,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).05 ,18DAF1DB,276,276,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).04 ,18DAF1DB,277,277,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).03 ,18DAF1DB,278,278,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).02 ,18DAF1DB,279,279,1,0,0,,229256,629256,ff,Index of cell in failure(Wtx_cell_fail_nr).01 ,18DAF1DB,24,39,.03125,32640,2,A,229257,629257,ff,10ms current value (offset correction), internal value (Wxx_bat_i_10ms) ,18DAF1DB,24,39,.03125,32640,2,A,229258,629258,ff,10ms raw current value from Sensor(Wxx_raw_bat_i_10ms) ,18DAF1DB,24,31,1,0,0,,229259,629259,ff,BMS mode(Wsx_bms_mode_stt_out) ,18DAF1DB,24,31,4,0,0,Hz,22925A,62925A,ff,HVBatteryBlowerFeedback(Wxx_hvbat_blwr_fdbk_out) ,18DAF1DB,24,39,1,0,0,,22925B,62925B,ff,MCPU reset status,0:RAM check error;1:ROM check error;2:Stack check error (overflow and underflow);3:Trap error;4:Software Reset;5:Watchdog Reset 0;6:Watchdog Reset 1;7:External Reset;14:Flash security violation Reset;15:Irregular Reset ,18DAF1DB,30,31,1,0,0,,22925C,62925C,ff,Relay status, internal value ,18DAF1DB,24,39,.03125,32640,2,A,22925D,62925D,ff,Current value, average at 100ms ,18DAF1DB,24,47,1,0,0,,22925E,62925E,ff,Vehicle ID(Zxx_id_vhc) ,18DAF1DB,24,55,.01,0,2,km,22925F,62925F,1ff,Distance Totalizer (vehicle) ,18DAF1DB,24,55,1,0,0,,229260,629260,4ff,DIDs supported in range [$9261 - $9280] ,18DAF1DB,24,47,1,0,0,min,229261,629261,ff,Absolute Time of Vehicle saved ,18DAF1DB,24,55,.0009765625,-2147483648,3,,229262,629262,1ff,Total balancing quantity, Wake Up mode (Zxx_bal_chg_tot_wk) ,18DAF1DB,24,55,.0009765625,-2147483648,3,h,229263,629263,1ff,Total balancing time, Wake Up mode (Zxx_bal_time_tot_wk) ,18DAF1DB,24,47,1,0,0,,229264,629264,ff,Total boost time from HEVC to BMS saved at powerlatch ,18DAF1DB,24,55,.001,0,3,,229265,629265,1ff,Sum of KWh in CD mode at transisition start ,18DAF1DB,26,31,1,0,0,,229266,629266,ff,SOHE average buffer table current index ,18DAF1DB,24,39,.01,0,2,%,229267,629267,ff,SOHE RSA model ,18DAF1DB,24,39,.01,-9900,2,%,229268,629268,ff,Estimated SOHR for charge direction ,18DAF1DB,24,39,.01,-9900,2,%,229269,629269,ff,Estimated SOHR for discharge direction ,18DAF1DB,24,39,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.19 ,18DAF1DB,40,55,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.18 ,18DAF1DB,56,71,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.17 ,18DAF1DB,72,87,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.16 ,18DAF1DB,88,103,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.15 ,18DAF1DB,104,119,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.14 ,18DAF1DB,120,135,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.13 ,18DAF1DB,136,151,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.12 ,18DAF1DB,152,167,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.11 ,18DAF1DB,168,183,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.10 ,18DAF1DB,184,199,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.09 ,18DAF1DB,200,215,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.08 ,18DAF1DB,216,231,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.07 ,18DAF1DB,232,247,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.06 ,18DAF1DB,248,263,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.05 ,18DAF1DB,264,279,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.04 ,18DAF1DB,280,295,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.03 ,18DAF1DB,296,311,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.02 ,18DAF1DB,312,327,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.01 ,18DAF1DB,328,343,.01,0,2,%,22926A,62926A,ff,SOHE average buffer table.00 ,18DAF1DB,24,47,1,0,0,min,22926B,62926B,ff,Abstime at transistion start ,18DAF1DB,24,55,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.175 ,18DAF1DB,56,87,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.174 ,18DAF1DB,88,119,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.173 ,18DAF1DB,120,151,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.172 ,18DAF1DB,152,183,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.171 ,18DAF1DB,184,215,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.170 ,18DAF1DB,216,247,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.169 ,18DAF1DB,248,279,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.168 ,18DAF1DB,280,311,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.167 ,18DAF1DB,312,343,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.166 ,18DAF1DB,344,375,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.165 ,18DAF1DB,376,407,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.164 ,18DAF1DB,408,439,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.163 ,18DAF1DB,440,471,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.162 ,18DAF1DB,472,503,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.161 ,18DAF1DB,504,535,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.160 ,18DAF1DB,536,567,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.159 ,18DAF1DB,568,599,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.158 ,18DAF1DB,600,631,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.157 ,18DAF1DB,632,663,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.156 ,18DAF1DB,664,695,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.155 ,18DAF1DB,696,727,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.154 ,18DAF1DB,728,759,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.153 ,18DAF1DB,760,791,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.152 ,18DAF1DB,792,823,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.151 ,18DAF1DB,824,855,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.150 ,18DAF1DB,856,887,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.149 ,18DAF1DB,888,919,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.148 ,18DAF1DB,920,951,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.147 ,18DAF1DB,952,983,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.146 ,18DAF1DB,984,1015,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.145 ,18DAF1DB,1016,1047,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.144 ,18DAF1DB,1048,1079,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.143 ,18DAF1DB,1080,1111,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.142 ,18DAF1DB,1112,1143,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.141 ,18DAF1DB,1144,1175,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.140 ,18DAF1DB,1176,1207,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.139 ,18DAF1DB,1208,1239,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.138 ,18DAF1DB,1240,1271,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.137 ,18DAF1DB,1272,1303,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.136 ,18DAF1DB,1304,1335,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.135 ,18DAF1DB,1336,1367,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.134 ,18DAF1DB,1368,1399,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.133 ,18DAF1DB,1400,1431,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.132 ,18DAF1DB,1432,1463,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.131 ,18DAF1DB,1464,1495,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.130 ,18DAF1DB,1496,1527,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.129 ,18DAF1DB,1528,1559,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.128 ,18DAF1DB,1560,1591,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.127 ,18DAF1DB,1592,1623,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.126 ,18DAF1DB,1624,1655,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.125 ,18DAF1DB,1656,1687,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.124 ,18DAF1DB,1688,1719,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.123 ,18DAF1DB,1720,1751,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.122 ,18DAF1DB,1752,1783,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.121 ,18DAF1DB,1784,1815,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.120 ,18DAF1DB,1816,1847,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.119 ,18DAF1DB,1848,1879,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.118 ,18DAF1DB,1880,1911,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.117 ,18DAF1DB,1912,1943,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.116 ,18DAF1DB,1944,1975,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.115 ,18DAF1DB,1976,2007,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.114 ,18DAF1DB,2008,2039,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.113 ,18DAF1DB,2040,2071,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.112 ,18DAF1DB,2072,2103,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.111 ,18DAF1DB,2104,2135,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.110 ,18DAF1DB,2136,2167,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.109 ,18DAF1DB,2168,2199,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.108 ,18DAF1DB,2200,2231,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.107 ,18DAF1DB,2232,2263,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.106 ,18DAF1DB,2264,2295,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.105 ,18DAF1DB,2296,2327,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.104 ,18DAF1DB,2328,2359,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.103 ,18DAF1DB,2360,2391,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.102 ,18DAF1DB,2392,2423,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.101 ,18DAF1DB,2424,2455,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.100 ,18DAF1DB,2456,2487,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.99 ,18DAF1DB,2488,2519,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.98 ,18DAF1DB,2520,2551,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.97 ,18DAF1DB,2552,2583,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.96 ,18DAF1DB,2584,2615,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.95 ,18DAF1DB,2616,2647,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.94 ,18DAF1DB,2648,2679,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.93 ,18DAF1DB,2680,2711,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.92 ,18DAF1DB,2712,2743,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.91 ,18DAF1DB,2744,2775,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.90 ,18DAF1DB,2776,2807,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.89 ,18DAF1DB,2808,2839,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.88 ,18DAF1DB,2840,2871,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.87 ,18DAF1DB,2872,2903,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.86 ,18DAF1DB,2904,2935,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.85 ,18DAF1DB,2936,2967,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.84 ,18DAF1DB,2968,2999,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.83 ,18DAF1DB,3000,3031,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.82 ,18DAF1DB,3032,3063,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.81 ,18DAF1DB,3064,3095,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.80 ,18DAF1DB,3096,3127,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.79 ,18DAF1DB,3128,3159,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.78 ,18DAF1DB,3160,3191,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.77 ,18DAF1DB,3192,3223,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.76 ,18DAF1DB,3224,3255,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.75 ,18DAF1DB,3256,3287,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.74 ,18DAF1DB,3288,3319,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.73 ,18DAF1DB,3320,3351,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.72 ,18DAF1DB,3352,3383,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.71 ,18DAF1DB,3384,3415,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.70 ,18DAF1DB,3416,3447,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.69 ,18DAF1DB,3448,3479,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.68 ,18DAF1DB,3480,3511,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.67 ,18DAF1DB,3512,3543,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.66 ,18DAF1DB,3544,3575,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.65 ,18DAF1DB,3576,3607,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.64 ,18DAF1DB,3608,3639,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.63 ,18DAF1DB,3640,3671,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.62 ,18DAF1DB,3672,3703,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.61 ,18DAF1DB,3704,3735,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.60 ,18DAF1DB,3736,3767,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.59 ,18DAF1DB,3768,3799,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.58 ,18DAF1DB,3800,3831,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.57 ,18DAF1DB,3832,3863,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.56 ,18DAF1DB,3864,3895,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.55 ,18DAF1DB,3896,3927,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.54 ,18DAF1DB,3928,3959,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.53 ,18DAF1DB,3960,3991,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.52 ,18DAF1DB,3992,4023,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.51 ,18DAF1DB,4024,4055,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.50 ,18DAF1DB,4056,4087,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.49 ,18DAF1DB,4088,4119,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.48 ,18DAF1DB,4120,4151,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.47 ,18DAF1DB,4152,4183,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.46 ,18DAF1DB,4184,4215,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.45 ,18DAF1DB,4216,4247,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.44 ,18DAF1DB,4248,4279,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.43 ,18DAF1DB,4280,4311,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.42 ,18DAF1DB,4312,4343,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.41 ,18DAF1DB,4344,4375,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.40 ,18DAF1DB,4376,4407,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.39 ,18DAF1DB,4408,4439,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.38 ,18DAF1DB,4440,4471,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.37 ,18DAF1DB,4472,4503,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.36 ,18DAF1DB,4504,4535,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.35 ,18DAF1DB,4536,4567,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.34 ,18DAF1DB,4568,4599,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.33 ,18DAF1DB,4600,4631,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.32 ,18DAF1DB,4632,4663,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.31 ,18DAF1DB,4664,4695,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.30 ,18DAF1DB,4696,4727,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.29 ,18DAF1DB,4728,4759,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.28 ,18DAF1DB,4760,4791,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.27 ,18DAF1DB,4792,4823,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.26 ,18DAF1DB,4824,4855,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.25 ,18DAF1DB,4856,4887,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.24 ,18DAF1DB,4888,4919,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.23 ,18DAF1DB,4920,4951,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.22 ,18DAF1DB,4952,4983,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.21 ,18DAF1DB,4984,5015,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.20 ,18DAF1DB,5016,5047,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.19 ,18DAF1DB,5048,5079,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.18 ,18DAF1DB,5080,5111,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.17 ,18DAF1DB,5112,5143,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.16 ,18DAF1DB,5144,5175,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.15 ,18DAF1DB,5176,5207,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.14 ,18DAF1DB,5208,5239,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.13 ,18DAF1DB,5240,5271,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.12 ,18DAF1DB,5272,5303,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.11 ,18DAF1DB,5304,5335,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.10 ,18DAF1DB,5336,5367,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.09 ,18DAF1DB,5368,5399,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.08 ,18DAF1DB,5400,5431,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.07 ,18DAF1DB,5432,5463,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.06 ,18DAF1DB,5464,5495,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.05 ,18DAF1DB,5496,5527,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.04 ,18DAF1DB,5528,5559,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.03 ,18DAF1DB,5560,5591,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.02 ,18DAF1DB,5592,5623,1,-2147483648,0,,22926C,62926C,1ff,Generic BSE storage zone.01 ,18DAF1DB,31,31,1,0,0,,22926D,62926D,ff,Boolean to authorize DID writing sequence(Wbx_did_wrt_seq) ,18DAF1DB,24,31,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).31 ,18DAF1DB,32,39,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).30 ,18DAF1DB,40,47,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).29 ,18DAF1DB,48,55,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).28 ,18DAF1DB,56,63,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).27 ,18DAF1DB,64,71,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).26 ,18DAF1DB,72,79,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).25 ,18DAF1DB,80,87,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).24 ,18DAF1DB,88,95,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).23 ,18DAF1DB,96,103,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).22 ,18DAF1DB,104,111,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).21 ,18DAF1DB,112,119,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).20 ,18DAF1DB,120,127,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).19 ,18DAF1DB,128,135,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).18 ,18DAF1DB,136,143,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).17 ,18DAF1DB,144,151,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).16 ,18DAF1DB,152,159,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).15 ,18DAF1DB,160,167,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).14 ,18DAF1DB,168,175,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).13 ,18DAF1DB,176,183,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).12 ,18DAF1DB,184,191,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).11 ,18DAF1DB,192,199,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).10 ,18DAF1DB,200,207,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).09 ,18DAF1DB,208,215,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).08 ,18DAF1DB,216,223,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).07 ,18DAF1DB,224,231,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).06 ,18DAF1DB,232,239,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).05 ,18DAF1DB,240,247,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).04 ,18DAF1DB,248,255,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).03 ,18DAF1DB,256,263,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).02 ,18DAF1DB,264,271,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).01 ,18DAF1DB,272,279,1,0,0,,22926E,62926E,ff,Delivered charge during mission(Ztx_mission_chg_n).00 ,18DAF1DB,24,31,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).31 ,18DAF1DB,32,39,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).30 ,18DAF1DB,40,47,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).29 ,18DAF1DB,48,55,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).28 ,18DAF1DB,56,63,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).27 ,18DAF1DB,64,71,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).26 ,18DAF1DB,72,79,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).25 ,18DAF1DB,80,87,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).24 ,18DAF1DB,88,95,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).23 ,18DAF1DB,96,103,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).22 ,18DAF1DB,104,111,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).21 ,18DAF1DB,112,119,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).20 ,18DAF1DB,120,127,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).19 ,18DAF1DB,128,135,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).18 ,18DAF1DB,136,143,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).17 ,18DAF1DB,144,151,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).16 ,18DAF1DB,152,159,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).15 ,18DAF1DB,160,167,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).14 ,18DAF1DB,168,175,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).13 ,18DAF1DB,176,183,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).12 ,18DAF1DB,184,191,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).11 ,18DAF1DB,192,199,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).10 ,18DAF1DB,200,207,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).09 ,18DAF1DB,208,215,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).08 ,18DAF1DB,216,223,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).07 ,18DAF1DB,224,231,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).06 ,18DAF1DB,232,239,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).05 ,18DAF1DB,240,247,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).04 ,18DAF1DB,248,255,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).03 ,18DAF1DB,256,263,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).02 ,18DAF1DB,264,271,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).01 ,18DAF1DB,272,279,1,0,0,,22926F,62926F,ff,Accumulated charge during mission(Ztx_mission_chg_p).00 ,18DAF1DB,24,31,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).31,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,32,39,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).30,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,40,47,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).29,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,48,55,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).28,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,56,63,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).27,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,64,71,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).26,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,72,79,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).25,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,80,87,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).24,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,88,95,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).23,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,96,103,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).22,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,104,111,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).21,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,112,119,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).20,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,120,127,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).19,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,128,135,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).18,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,136,143,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).17,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,144,151,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).16,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,152,159,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).15,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,160,167,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).14,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,168,175,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).13,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,176,183,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).12,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,184,191,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).11,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,192,199,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).10,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,200,207,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).09,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,208,215,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).08,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,216,223,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).07,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,224,231,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).06,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,232,239,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).05,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,240,247,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).04,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,248,255,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).03,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,256,263,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).02,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,264,271,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).01,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,272,279,1,0,0,,229270,629270,ff,BMS State(Ztx_mission_mode).00,1:Init;2:Wait;3:Isolated Charge;4:Non Isolated Charge;5:External Charge;6:Driving;7:SleepTransient;8:DC Charging without RISOL;9:DC Charging with Risol ,18DAF1DB,24,31,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).31 ,18DAF1DB,32,39,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).30 ,18DAF1DB,40,47,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).29 ,18DAF1DB,48,55,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).28 ,18DAF1DB,56,63,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).27 ,18DAF1DB,64,71,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).26 ,18DAF1DB,72,79,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).25 ,18DAF1DB,80,87,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).24 ,18DAF1DB,88,95,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).23 ,18DAF1DB,96,103,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).22 ,18DAF1DB,104,111,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).21 ,18DAF1DB,112,119,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).20 ,18DAF1DB,120,127,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).19 ,18DAF1DB,128,135,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).18 ,18DAF1DB,136,143,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).17 ,18DAF1DB,144,151,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).16 ,18DAF1DB,152,159,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).15 ,18DAF1DB,160,167,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).14 ,18DAF1DB,168,175,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).13 ,18DAF1DB,176,183,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).12 ,18DAF1DB,184,191,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).11 ,18DAF1DB,192,199,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).10 ,18DAF1DB,200,207,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).09 ,18DAF1DB,208,215,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).08 ,18DAF1DB,216,223,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).07 ,18DAF1DB,224,231,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).06 ,18DAF1DB,232,239,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).05 ,18DAF1DB,240,247,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).04 ,18DAF1DB,248,255,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).03 ,18DAF1DB,256,263,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).02 ,18DAF1DB,264,271,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).01 ,18DAF1DB,272,279,1,40,0,,229271,629271,ff,Initial mission temperature(Ztx_mission_temp_beg).00 ,18DAF1DB,24,31,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).31 ,18DAF1DB,32,39,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).30 ,18DAF1DB,40,47,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).29 ,18DAF1DB,48,55,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).28 ,18DAF1DB,56,63,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).27 ,18DAF1DB,64,71,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).26 ,18DAF1DB,72,79,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).25 ,18DAF1DB,80,87,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).24 ,18DAF1DB,88,95,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).23 ,18DAF1DB,96,103,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).22 ,18DAF1DB,104,111,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).21 ,18DAF1DB,112,119,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).20 ,18DAF1DB,120,127,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).19 ,18DAF1DB,128,135,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).18 ,18DAF1DB,136,143,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).17 ,18DAF1DB,144,151,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).16 ,18DAF1DB,152,159,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).15 ,18DAF1DB,160,167,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).14 ,18DAF1DB,168,175,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).13 ,18DAF1DB,176,183,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).12 ,18DAF1DB,184,191,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).11 ,18DAF1DB,192,199,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).10 ,18DAF1DB,200,207,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).09 ,18DAF1DB,208,215,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).08 ,18DAF1DB,216,223,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).07 ,18DAF1DB,224,231,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).06 ,18DAF1DB,232,239,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).05 ,18DAF1DB,240,247,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).04 ,18DAF1DB,248,255,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).03 ,18DAF1DB,256,263,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).02 ,18DAF1DB,264,271,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).01 ,18DAF1DB,272,279,1,40,0,,229272,629272,ff,End of mission temperature(Ztx_mission_temp_end).00 ,18DAF1DB,25,31,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).31 ,18DAF1DB,33,39,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).30 ,18DAF1DB,41,47,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).29 ,18DAF1DB,49,55,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).28 ,18DAF1DB,57,63,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).27 ,18DAF1DB,65,71,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).26 ,18DAF1DB,73,79,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).25 ,18DAF1DB,81,87,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).24 ,18DAF1DB,89,95,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).23 ,18DAF1DB,97,103,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).22 ,18DAF1DB,105,111,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).21 ,18DAF1DB,113,119,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).20 ,18DAF1DB,121,127,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).19 ,18DAF1DB,129,135,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).18 ,18DAF1DB,137,143,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).17 ,18DAF1DB,145,151,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).16 ,18DAF1DB,153,159,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).15 ,18DAF1DB,161,167,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).14 ,18DAF1DB,169,175,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).13 ,18DAF1DB,177,183,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).12 ,18DAF1DB,185,191,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).11 ,18DAF1DB,193,199,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).10 ,18DAF1DB,201,207,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).09 ,18DAF1DB,209,215,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).08 ,18DAF1DB,217,223,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).07 ,18DAF1DB,225,231,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).06 ,18DAF1DB,233,239,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).05 ,18DAF1DB,241,247,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).04 ,18DAF1DB,249,255,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).03 ,18DAF1DB,257,263,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).02 ,18DAF1DB,265,271,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).01 ,18DAF1DB,273,279,1,0,0,%,229273,629273,ff,Initial mission USOC(Ztx_mission_usoc_beg).00 ,18DAF1DB,24,31,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).31 ,18DAF1DB,32,39,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).30 ,18DAF1DB,40,47,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).29 ,18DAF1DB,48,55,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).28 ,18DAF1DB,56,63,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).27 ,18DAF1DB,64,71,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).26 ,18DAF1DB,72,79,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).25 ,18DAF1DB,80,87,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).24 ,18DAF1DB,88,95,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).23 ,18DAF1DB,96,103,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).22 ,18DAF1DB,104,111,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).21 ,18DAF1DB,112,119,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).20 ,18DAF1DB,120,127,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).19 ,18DAF1DB,128,135,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).18 ,18DAF1DB,136,143,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).17 ,18DAF1DB,144,151,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).16 ,18DAF1DB,152,159,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).15 ,18DAF1DB,160,167,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).14 ,18DAF1DB,168,175,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).13 ,18DAF1DB,176,183,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).12 ,18DAF1DB,184,191,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).11 ,18DAF1DB,192,199,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).10 ,18DAF1DB,200,207,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).09 ,18DAF1DB,208,215,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).08 ,18DAF1DB,216,223,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).07 ,18DAF1DB,224,231,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).06 ,18DAF1DB,232,239,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).05 ,18DAF1DB,240,247,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).04 ,18DAF1DB,248,255,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).03 ,18DAF1DB,256,263,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).02 ,18DAF1DB,264,271,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).01 ,18DAF1DB,272,279,1,0,0,%,229274,629274,ff,End of mission USOC(Ztx_mission_usoc_end).00 ,18DAF1DB,24,47,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.31 ,18DAF1DB,48,71,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.30 ,18DAF1DB,72,95,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.29 ,18DAF1DB,96,119,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.28 ,18DAF1DB,120,143,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.27 ,18DAF1DB,144,167,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.26 ,18DAF1DB,168,191,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.25 ,18DAF1DB,192,215,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.24 ,18DAF1DB,216,239,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.23 ,18DAF1DB,240,263,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.22 ,18DAF1DB,264,287,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.21 ,18DAF1DB,288,311,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.20 ,18DAF1DB,312,335,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.19 ,18DAF1DB,336,359,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.18 ,18DAF1DB,360,383,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.17 ,18DAF1DB,384,407,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.16 ,18DAF1DB,408,431,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.15 ,18DAF1DB,432,455,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.14 ,18DAF1DB,456,479,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.13 ,18DAF1DB,480,503,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.12 ,18DAF1DB,504,527,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.11 ,18DAF1DB,528,551,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.10 ,18DAF1DB,552,575,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.09 ,18DAF1DB,576,599,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.08 ,18DAF1DB,600,623,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.07 ,18DAF1DB,624,647,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.06 ,18DAF1DB,648,671,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.05 ,18DAF1DB,672,695,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.04 ,18DAF1DB,696,719,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.03 ,18DAF1DB,720,743,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.02 ,18DAF1DB,744,767,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.01 ,18DAF1DB,768,791,1,0,0,min,229275,629275,ff,Initial mission Absolute Pack Time.00 ,18DAF1DB,24,47,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.31 ,18DAF1DB,48,71,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.30 ,18DAF1DB,72,95,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.29 ,18DAF1DB,96,119,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.28 ,18DAF1DB,120,143,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.27 ,18DAF1DB,144,167,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.26 ,18DAF1DB,168,191,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.25 ,18DAF1DB,192,215,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.24 ,18DAF1DB,216,239,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.23 ,18DAF1DB,240,263,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.22 ,18DAF1DB,264,287,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.21 ,18DAF1DB,288,311,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.20 ,18DAF1DB,312,335,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.19 ,18DAF1DB,336,359,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.18 ,18DAF1DB,360,383,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.17 ,18DAF1DB,384,407,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.16 ,18DAF1DB,408,431,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.15 ,18DAF1DB,432,455,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.14 ,18DAF1DB,456,479,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.13 ,18DAF1DB,480,503,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.12 ,18DAF1DB,504,527,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.11 ,18DAF1DB,528,551,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.10 ,18DAF1DB,552,575,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.09 ,18DAF1DB,576,599,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.08 ,18DAF1DB,600,623,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.07 ,18DAF1DB,624,647,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.06 ,18DAF1DB,648,671,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.05 ,18DAF1DB,672,695,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.04 ,18DAF1DB,696,719,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.03 ,18DAF1DB,720,743,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.02 ,18DAF1DB,744,767,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.01 ,18DAF1DB,768,791,1,0,0,min,229276,629276,ff,End of mission Absolute Pack Time.00 ,18DAF1DB,24,55,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.31 ,18DAF1DB,56,87,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.30 ,18DAF1DB,88,119,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.29 ,18DAF1DB,120,151,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.28 ,18DAF1DB,152,183,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.27 ,18DAF1DB,184,215,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.26 ,18DAF1DB,216,247,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.25 ,18DAF1DB,248,279,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.24 ,18DAF1DB,280,311,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.23 ,18DAF1DB,312,343,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.22 ,18DAF1DB,344,375,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.21 ,18DAF1DB,376,407,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.20 ,18DAF1DB,408,439,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.19 ,18DAF1DB,440,471,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.18 ,18DAF1DB,472,503,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.17 ,18DAF1DB,504,535,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.16 ,18DAF1DB,536,567,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.15 ,18DAF1DB,568,599,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.14 ,18DAF1DB,600,631,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.13 ,18DAF1DB,632,663,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.12 ,18DAF1DB,664,695,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.11 ,18DAF1DB,696,727,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.10 ,18DAF1DB,728,759,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.09 ,18DAF1DB,760,791,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.08 ,18DAF1DB,792,823,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.07 ,18DAF1DB,824,855,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.06 ,18DAF1DB,856,887,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.05 ,18DAF1DB,888,919,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.04 ,18DAF1DB,920,951,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.03 ,18DAF1DB,952,983,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.02 ,18DAF1DB,984,1015,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.01 ,18DAF1DB,1016,1047,.03125,-2147483648,2,km,229277,629277,1ff,Initial mission Distance Pack.00 ,18DAF1DB,24,55,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.31 ,18DAF1DB,56,87,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.30 ,18DAF1DB,88,119,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.29 ,18DAF1DB,120,151,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.28 ,18DAF1DB,152,183,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.27 ,18DAF1DB,184,215,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.26 ,18DAF1DB,216,247,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.25 ,18DAF1DB,248,279,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.24 ,18DAF1DB,280,311,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.23 ,18DAF1DB,312,343,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.22 ,18DAF1DB,344,375,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.21 ,18DAF1DB,376,407,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.20 ,18DAF1DB,408,439,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.19 ,18DAF1DB,440,471,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.18 ,18DAF1DB,472,503,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.17 ,18DAF1DB,504,535,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.16 ,18DAF1DB,536,567,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.15 ,18DAF1DB,568,599,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.14 ,18DAF1DB,600,631,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.13 ,18DAF1DB,632,663,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.12 ,18DAF1DB,664,695,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.11 ,18DAF1DB,696,727,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.10 ,18DAF1DB,728,759,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.09 ,18DAF1DB,760,791,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.08 ,18DAF1DB,792,823,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.07 ,18DAF1DB,824,855,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.06 ,18DAF1DB,856,887,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.05 ,18DAF1DB,888,919,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.04 ,18DAF1DB,920,951,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.03 ,18DAF1DB,952,983,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.02 ,18DAF1DB,984,1015,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.01 ,18DAF1DB,1016,1047,.03125,-2147483648,2,km,229278,629278,1ff,End of mission Distance Pack.00 ,18DAF1DB,24,31,1,0,0,,229279,629279,ff,Value of mission indice(Zxx_mission_indice) ,18DAF1DB,24,24,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit255 ,18DAF1DB,25,25,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit254 ,18DAF1DB,26,26,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit253 ,18DAF1DB,27,27,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit252 ,18DAF1DB,28,28,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit251 ,18DAF1DB,29,29,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit250 ,18DAF1DB,30,30,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit249 ,18DAF1DB,31,31,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit248 ,18DAF1DB,32,32,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit247 ,18DAF1DB,33,33,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit246 ,18DAF1DB,34,34,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit245 ,18DAF1DB,35,35,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit244 ,18DAF1DB,36,36,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit243 ,18DAF1DB,37,37,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit242 ,18DAF1DB,38,38,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit241 ,18DAF1DB,39,39,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit240 ,18DAF1DB,40,40,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit239 ,18DAF1DB,41,41,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit238 ,18DAF1DB,42,42,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit237 ,18DAF1DB,43,43,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit236 ,18DAF1DB,44,44,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit235 ,18DAF1DB,45,45,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit234 ,18DAF1DB,46,46,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit233 ,18DAF1DB,47,47,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit232 ,18DAF1DB,48,48,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit231 ,18DAF1DB,49,49,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit230 ,18DAF1DB,50,50,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit229 ,18DAF1DB,51,51,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit228 ,18DAF1DB,52,52,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit227 ,18DAF1DB,53,53,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit226 ,18DAF1DB,54,54,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit225 ,18DAF1DB,55,55,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit224 ,18DAF1DB,56,56,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit223 ,18DAF1DB,57,57,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit222 ,18DAF1DB,58,58,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit221 ,18DAF1DB,59,59,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit220 ,18DAF1DB,60,60,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit219 ,18DAF1DB,61,61,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit218 ,18DAF1DB,62,62,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit217 ,18DAF1DB,63,63,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit216 ,18DAF1DB,64,64,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit215 ,18DAF1DB,65,65,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit214 ,18DAF1DB,66,66,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit213 ,18DAF1DB,67,67,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit212 ,18DAF1DB,68,68,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit211 ,18DAF1DB,69,69,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit210 ,18DAF1DB,70,70,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit209 ,18DAF1DB,71,71,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit208 ,18DAF1DB,72,72,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit207 ,18DAF1DB,73,73,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit206 ,18DAF1DB,74,74,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit205 ,18DAF1DB,75,75,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit204 ,18DAF1DB,76,76,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit203 ,18DAF1DB,77,77,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit202 ,18DAF1DB,78,78,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit201 ,18DAF1DB,79,79,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit200 ,18DAF1DB,80,80,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit199 ,18DAF1DB,81,81,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit198 ,18DAF1DB,82,82,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit197 ,18DAF1DB,83,83,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit196 ,18DAF1DB,84,84,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit195 ,18DAF1DB,85,85,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit194 ,18DAF1DB,86,86,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit193 ,18DAF1DB,87,87,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit192 ,18DAF1DB,88,88,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit191 ,18DAF1DB,89,89,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit190 ,18DAF1DB,90,90,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit189 ,18DAF1DB,91,91,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit188 ,18DAF1DB,92,92,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit187 ,18DAF1DB,93,93,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit186 ,18DAF1DB,94,94,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit185 ,18DAF1DB,95,95,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit184 ,18DAF1DB,96,96,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit183 ,18DAF1DB,97,97,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit182 ,18DAF1DB,98,98,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit181 ,18DAF1DB,99,99,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit180 ,18DAF1DB,100,100,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit179 ,18DAF1DB,101,101,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit178 ,18DAF1DB,102,102,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit177 ,18DAF1DB,103,103,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit176 ,18DAF1DB,104,104,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit175 ,18DAF1DB,105,105,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit174 ,18DAF1DB,106,106,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit173 ,18DAF1DB,107,107,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit172 ,18DAF1DB,108,108,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit171 ,18DAF1DB,109,109,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit170 ,18DAF1DB,110,110,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit169 ,18DAF1DB,111,111,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit168 ,18DAF1DB,112,112,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit167 ,18DAF1DB,113,113,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit166 ,18DAF1DB,114,114,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit165 ,18DAF1DB,115,115,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit164 ,18DAF1DB,116,116,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit163 ,18DAF1DB,117,117,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit162 ,18DAF1DB,118,118,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit161 ,18DAF1DB,119,119,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit160 ,18DAF1DB,120,120,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit159 ,18DAF1DB,121,121,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit158 ,18DAF1DB,122,122,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit157 ,18DAF1DB,123,123,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit156 ,18DAF1DB,124,124,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit155 ,18DAF1DB,125,125,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit154 ,18DAF1DB,126,126,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit153 ,18DAF1DB,127,127,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit152 ,18DAF1DB,128,128,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit151 ,18DAF1DB,129,129,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit150 ,18DAF1DB,130,130,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit149 ,18DAF1DB,131,131,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit148 ,18DAF1DB,132,132,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit147 ,18DAF1DB,133,133,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit146 ,18DAF1DB,134,134,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit145 ,18DAF1DB,135,135,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit144 ,18DAF1DB,136,136,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit143 ,18DAF1DB,137,137,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit142 ,18DAF1DB,138,138,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit141 ,18DAF1DB,139,139,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit140 ,18DAF1DB,140,140,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit139 ,18DAF1DB,141,141,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit138 ,18DAF1DB,142,142,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit137 ,18DAF1DB,143,143,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit136 ,18DAF1DB,144,144,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit135 ,18DAF1DB,145,145,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit134 ,18DAF1DB,146,146,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit133 ,18DAF1DB,147,147,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit132 ,18DAF1DB,148,148,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit131 ,18DAF1DB,149,149,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit130 ,18DAF1DB,150,150,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit129 ,18DAF1DB,151,151,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit128 ,18DAF1DB,152,152,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit127 ,18DAF1DB,153,153,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit126 ,18DAF1DB,154,154,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit125 ,18DAF1DB,155,155,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit124 ,18DAF1DB,156,156,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit123 ,18DAF1DB,157,157,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit122 ,18DAF1DB,158,158,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit121 ,18DAF1DB,159,159,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit120 ,18DAF1DB,160,160,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit119 ,18DAF1DB,161,161,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit118 ,18DAF1DB,162,162,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit117 ,18DAF1DB,163,163,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit116 ,18DAF1DB,164,164,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit115 ,18DAF1DB,165,165,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit114 ,18DAF1DB,166,166,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit113 ,18DAF1DB,167,167,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit112 ,18DAF1DB,168,168,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit111 ,18DAF1DB,169,169,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit110 ,18DAF1DB,170,170,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit109 ,18DAF1DB,171,171,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit108 ,18DAF1DB,172,172,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit107 ,18DAF1DB,173,173,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit106 ,18DAF1DB,174,174,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit105 ,18DAF1DB,175,175,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit104 ,18DAF1DB,176,176,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit103 ,18DAF1DB,177,177,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit102 ,18DAF1DB,178,178,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit101 ,18DAF1DB,179,179,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit100 ,18DAF1DB,180,180,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit99 ,18DAF1DB,181,181,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit98 ,18DAF1DB,182,182,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit97 ,18DAF1DB,183,183,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit96 ,18DAF1DB,184,184,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit95 ,18DAF1DB,185,185,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit94 ,18DAF1DB,186,186,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit93 ,18DAF1DB,187,187,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit92 ,18DAF1DB,188,188,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit91 ,18DAF1DB,189,189,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit90 ,18DAF1DB,190,190,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit89 ,18DAF1DB,191,191,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit88 ,18DAF1DB,192,192,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit87 ,18DAF1DB,193,193,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit86 ,18DAF1DB,194,194,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit85 ,18DAF1DB,195,195,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit84 ,18DAF1DB,196,196,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit83 ,18DAF1DB,197,197,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit82 ,18DAF1DB,198,198,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit81 ,18DAF1DB,199,199,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit80 ,18DAF1DB,200,200,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit79 ,18DAF1DB,201,201,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit78 ,18DAF1DB,202,202,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit77 ,18DAF1DB,203,203,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit76 ,18DAF1DB,204,204,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit75 ,18DAF1DB,205,205,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit74 ,18DAF1DB,206,206,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit73 ,18DAF1DB,207,207,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit72 ,18DAF1DB,208,208,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit71 ,18DAF1DB,209,209,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit70 ,18DAF1DB,210,210,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit69 ,18DAF1DB,211,211,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit68 ,18DAF1DB,212,212,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit67 ,18DAF1DB,213,213,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit66 ,18DAF1DB,214,214,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit65 ,18DAF1DB,215,215,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit64 ,18DAF1DB,216,216,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit63 ,18DAF1DB,217,217,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit62 ,18DAF1DB,218,218,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit61 ,18DAF1DB,219,219,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit60 ,18DAF1DB,220,220,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit59 ,18DAF1DB,221,221,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit58 ,18DAF1DB,222,222,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit57 ,18DAF1DB,223,223,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit56 ,18DAF1DB,224,224,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit55 ,18DAF1DB,225,225,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit54 ,18DAF1DB,226,226,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit53 ,18DAF1DB,227,227,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit52 ,18DAF1DB,228,228,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit51 ,18DAF1DB,229,229,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit50 ,18DAF1DB,230,230,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit49 ,18DAF1DB,231,231,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit48 ,18DAF1DB,232,232,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit47 ,18DAF1DB,233,233,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit46 ,18DAF1DB,234,234,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit45 ,18DAF1DB,235,235,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit44 ,18DAF1DB,236,236,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit43 ,18DAF1DB,237,237,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit42 ,18DAF1DB,238,238,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit41 ,18DAF1DB,239,239,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit40 ,18DAF1DB,240,240,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit39 ,18DAF1DB,241,241,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit38 ,18DAF1DB,242,242,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit37 ,18DAF1DB,243,243,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit36 ,18DAF1DB,244,244,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit35 ,18DAF1DB,245,245,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit34 ,18DAF1DB,246,246,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit33 ,18DAF1DB,247,247,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit32 ,18DAF1DB,248,248,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit31 ,18DAF1DB,249,249,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit30 ,18DAF1DB,250,250,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit29 ,18DAF1DB,251,251,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit28 ,18DAF1DB,252,252,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit27 ,18DAF1DB,253,253,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit26 ,18DAF1DB,254,254,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit25 ,18DAF1DB,255,255,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit24 ,18DAF1DB,256,256,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit23 ,18DAF1DB,257,257,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit22 ,18DAF1DB,258,258,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit21 ,18DAF1DB,259,259,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit20 ,18DAF1DB,260,260,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit19 ,18DAF1DB,261,261,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit18 ,18DAF1DB,262,262,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit17 ,18DAF1DB,263,263,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit16 ,18DAF1DB,264,264,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit15 ,18DAF1DB,265,265,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit14 ,18DAF1DB,266,266,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit13 ,18DAF1DB,267,267,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit12 ,18DAF1DB,268,268,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit11 ,18DAF1DB,269,269,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit10 ,18DAF1DB,270,270,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit9 ,18DAF1DB,271,271,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit8 ,18DAF1DB,272,272,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit7 ,18DAF1DB,273,273,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit6 ,18DAF1DB,274,274,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit5 ,18DAF1DB,275,275,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit4 ,18DAF1DB,276,276,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit3 ,18DAF1DB,277,277,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit2 ,18DAF1DB,278,278,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit1 ,18DAF1DB,279,279,1,0,0,,22927A,62927A,ff,cell SOHP failure table(Wtx_df_sohp_cell_fail_nr).bit0 ,18DAF1DB,24,24,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit15 ,18DAF1DB,25,25,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit14 ,18DAF1DB,26,26,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit13 ,18DAF1DB,27,27,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit12 ,18DAF1DB,28,28,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit11 ,18DAF1DB,29,29,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit10 ,18DAF1DB,30,30,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit9 ,18DAF1DB,31,31,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit8 ,18DAF1DB,32,32,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit7 ,18DAF1DB,33,33,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit6 ,18DAF1DB,34,34,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit5 ,18DAF1DB,35,35,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit4 ,18DAF1DB,36,36,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit3 ,18DAF1DB,37,37,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit2 ,18DAF1DB,38,38,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit1 ,18DAF1DB,39,39,1,0,0,,22927B,62927B,ff,MAIN ASIC internal error ID.bit0 ,18DAF1DB,24,24,1,0,0,,22927C,62927C,ff,MAIN ASIC Communication Failure ID.bit7 ,18DAF1DB,25,25,1,0,0,,22927C,62927C,ff,MAIN ASIC Communication Failure ID.bit6 ,18DAF1DB,26,26,1,0,0,,22927C,62927C,ff,MAIN ASIC Communication Failure ID.bit5 ,18DAF1DB,27,27,1,0,0,,22927C,62927C,ff,MAIN ASIC Communication Failure ID.bit4 ,18DAF1DB,28,28,1,0,0,,22927C,62927C,ff,MAIN ASIC Communication Failure ID.bit3 ,18DAF1DB,29,29,1,0,0,,22927C,62927C,ff,MAIN ASIC Communication Failure ID.bit2 ,18DAF1DB,30,30,1,0,0,,22927C,62927C,ff,MAIN ASIC Communication Failure ID.bit1 ,18DAF1DB,31,31,1,0,0,,22927C,62927C,ff,MAIN ASIC Communication Failure ID.bit0 ,18DAF1DB,29,29,1,0,0,,22927D,62927D,ff,MAIN ASIC OC failure ID(Wxx_assp1_oc_id).bit2 ,18DAF1DB,30,30,1,0,0,,22927D,62927D,ff,MAIN ASIC OC failure ID(Wxx_assp1_oc_id).bit1 ,18DAF1DB,31,31,1,0,0,,22927D,62927D,ff,MAIN ASIC OC failure ID(Wxx_assp1_oc_id).bit0 ,18DAF1DB,30,30,1,0,0,,22927E,62927E,ff,MAIN ASIC HVMUX failure ID(Wxx_assp1_itl_id).01 ,18DAF1DB,31,31,1,0,0,,22927E,62927E,ff,MAIN ASIC HVMUX failure ID(Wxx_assp1_itl_id).00 ,18DAF1DB,30,30,1,0,0,,22927F,62927F,ff,MAIN ASIC SCW failure ID(Wxx_assp1_scw_id).bit1 ,18DAF1DB,31,31,1,0,0,,22927F,62927F,ff,MAIN ASIC SCW failure ID(Wxx_assp1_scw_id).bit0 ,18DAF1DB,24,55,1,0,0,,229280,629280,4ff,DIDs supported in range [$9281 - $92A0] ,18DAF1DB,31,31,1,0,0,,229281,629281,ff,Boolean to indicate if temporisation before sleep is activated or not(Wbx_slp_tmp_cfg),0:temporisation is activated;1:temporisation is deactivated ,18DAF1DB,24,31,1,0,0,,229282,629282,ff,PCB traceability.31 ,18DAF1DB,32,39,1,0,0,,229282,629282,ff,PCB traceability.30 ,18DAF1DB,40,47,1,0,0,,229282,629282,ff,PCB traceability.29 ,18DAF1DB,48,55,1,0,0,,229282,629282,ff,PCB traceability.28 ,18DAF1DB,56,63,1,0,0,,229282,629282,ff,PCB traceability.27 ,18DAF1DB,64,71,1,0,0,,229282,629282,ff,PCB traceability.26 ,18DAF1DB,72,79,1,0,0,,229282,629282,ff,PCB traceability.25 ,18DAF1DB,80,87,1,0,0,,229282,629282,ff,PCB traceability.24 ,18DAF1DB,88,95,1,0,0,,229282,629282,ff,PCB traceability.23 ,18DAF1DB,96,103,1,0,0,,229282,629282,ff,PCB traceability.22 ,18DAF1DB,104,111,1,0,0,,229282,629282,ff,PCB traceability.21 ,18DAF1DB,112,119,1,0,0,,229282,629282,ff,PCB traceability.20 ,18DAF1DB,120,127,1,0,0,,229282,629282,ff,PCB traceability.19 ,18DAF1DB,128,135,1,0,0,,229282,629282,ff,PCB traceability.18 ,18DAF1DB,136,143,1,0,0,,229282,629282,ff,PCB traceability.17 ,18DAF1DB,144,151,1,0,0,,229282,629282,ff,PCB traceability.16 ,18DAF1DB,152,159,1,0,0,,229282,629282,ff,PCB traceability.15 ,18DAF1DB,160,167,1,0,0,,229282,629282,ff,PCB traceability.14 ,18DAF1DB,168,175,1,0,0,,229282,629282,ff,PCB traceability.13 ,18DAF1DB,176,183,1,0,0,,229282,629282,ff,PCB traceability.12 ,18DAF1DB,184,191,1,0,0,,229282,629282,ff,PCB traceability.11 ,18DAF1DB,192,199,1,0,0,,229282,629282,ff,PCB traceability.10 ,18DAF1DB,200,207,1,0,0,,229282,629282,ff,PCB traceability.09 ,18DAF1DB,208,215,1,0,0,,229282,629282,ff,PCB traceability.08 ,18DAF1DB,216,223,1,0,0,,229282,629282,ff,PCB traceability.07 ,18DAF1DB,224,231,1,0,0,,229282,629282,ff,PCB traceability.06 ,18DAF1DB,232,239,1,0,0,,229282,629282,ff,PCB traceability.05 ,18DAF1DB,240,247,1,0,0,,229282,629282,ff,PCB traceability.04 ,18DAF1DB,248,255,1,0,0,,229282,629282,ff,PCB traceability.03 ,18DAF1DB,256,263,1,0,0,,229282,629282,ff,PCB traceability.02 ,18DAF1DB,264,271,1,0,0,,229282,629282,ff,PCB traceability.01 ,18DAF1DB,24,55,1,0,0,,2292A0,6292A0,4ff,DIDs supported in range [$92A1 - $92C0] ,18DAF1DB,24,55,1,0,0,,2292C0,6292C0,4ff,DIDs supported in range [$92C1 - $92E0] ,18DAF1DB,24,55,1,0,0,,2292E0,6292E0,4ff,DIDs supported in range [$92E1 - $9300] ,18DAF1DB,24,55,1,0,0,,229300,629300,4ff,DIDs supported in range [$9301 - $9320] ,18DAF1DB,24,55,1,0,0,,229320,629320,4ff,DIDs supported in range [$9321 - $9340] ,18DAF1DB,24,55,1,0,0,,229340,629340,4ff,DIDs supported in range [$9341 - $9360] ,18DAF1DB,24,55,1,0,0,,229360,629360,4ff,DIDs supported in range [$9361 - $9380] ,18DAF1DB,24,55,1,0,0,,229380,629380,4ff,DIDs supported in range [$9381 - $93A0] ,18DAF1DB,24,55,1,0,0,,2293A0,6293A0,4ff,DIDs supported in range [$93A1 - $93C0] ,18DAF1DB,24,55,1,0,0,,2293C0,6293C0,4ff,DIDs supported in range [$93C1 - $93E0] ,18DAF1DB,24,55,1,0,0,,2293E0,6293E0,4ff,DIDs supported in range [$93E1 - $9400] ,18DAF1DB,24,55,1,0,0,,229400,629400,4ff,DIDs supported in range [$9401 - $9420] ,18DAF1DB,24,55,1,0,0,,229420,629420,4ff,DIDs supported in range [$9421 - $9440] ,18DAF1DB,24,55,1,0,0,,229440,629440,4ff,DIDs supported in range [$9441 - $9460] ,18DAF1DB,24,55,1,0,0,,229460,629460,4ff,DIDs supported in range [$9461 - $9480] ,18DAF1DB,24,55,1,0,0,,229480,629480,4ff,DIDs supported in range [$9481 - $94A0] ,18DAF1DB,24,55,1,0,0,,2294A0,6294A0,4ff,DIDs supported in range [$94A1 - $94C0] ,18DAF1DB,24,55,1,0,0,,2294C0,6294C0,4ff,DIDs supported in range [$94C1 - $94E0] ,18DAF1DB,24,55,1,0,0,,2294E0,6294E0,4ff,DIDs supported in range [$94E1 - $9500] ,18DAF1DB,24,55,1,0,0,,229500,629500,4ff,DIDs supported in range [$9501 - $9520] ,18DAF1DB,24,55,1,0,0,,229520,629520,4ff,DIDs supported in range [$9521 - $9540] ,18DAF1DB,24,55,1,0,0,,229540,629540,4ff,DIDs supported in range [$9541 - $9560] ,18DAF1DB,24,55,1,0,0,,229560,629560,4ff,DIDs supported in range [$9561 - $9580] ,18DAF1DB,24,55,1,0,0,,229580,629580,4ff,DIDs supported in range [$9581 - $95A0] ,18DAF1DB,24,55,1,0,0,,2295A0,6295A0,4ff,DIDs supported in range [$95A1 - $95C0] ,18DAF1DB,24,55,1,0,0,,2295C0,6295C0,4ff,DIDs supported in range [$95C1 - $95E0] ,18DAF1DB,24,55,1,0,0,,2295E0,6295E0,4ff,DIDs supported in range [$95E1 - $9600] ,18DAF1DB,24,55,1,0,0,,229600,629600,4ff,DIDs supported in range [$9601 - $9620] ,18DAF1DB,24,55,1,0,0,,229620,629620,4ff,DIDs supported in range [$9621 - $9640] ,18DAF1DB,24,55,1,0,0,,229640,629640,4ff,DIDs supported in range [$9641 - $9660] ,18DAF1DB,24,55,1,0,0,,229660,629660,4ff,DIDs supported in range [$9661 - $9680] ,18DAF1DB,24,55,1,0,0,,229680,629680,4ff,DIDs supported in range [$9681 - $96A0] ,18DAF1DB,24,55,1,0,0,,2296A0,6296A0,4ff,DIDs supported in range [$96A1 - $96C0] ,18DAF1DB,24,55,1,0,0,,2296C0,6296C0,4ff,DIDs supported in range [$96C1 - $96E0] ,18DAF1DB,24,55,1,0,0,,2296E0,6296E0,4ff,DIDs supported in range [$96E1 - $9700] ,18DAF1DB,24,55,1,0,0,,229700,629700,4ff,DIDs supported in range [$9701 - $9720] ,18DAF1DB,24,55,1,0,0,,229720,629720,4ff,DIDs supported in range [$9721 - $9740] ,18DAF1DB,24,55,1,0,0,,229740,629740,4ff,DIDs supported in range [$9741 - $9760] ,18DAF1DB,24,55,1,0,0,,229760,629760,4ff,DIDs supported in range [$9761 - $9780] ,18DAF1DB,24,55,1,0,0,,229780,629780,4ff,DIDs supported in range [$9781 - $97A0] ,18DAF1DB,24,55,1,0,0,,2297A0,6297A0,4ff,DIDs supported in range [$97A1 - $97C0] ,18DAF1DB,24,55,1,0,0,,2297C0,6297C0,4ff,DIDs supported in range [$97C1 - $97E0] ,18DAF1DB,24,55,1,0,0,,2297E0,6297E0,4ff,DIDs supported in range [$97E1 - $9800] ,18DAF1DB,24,55,1,0,0,,229800,629800,4ff,DIDs supported in range [$9801 - $9820] ,18DAF1DB,24,55,1,0,0,,229820,629820,4ff,DIDs supported in range [$9821 - $9840] ,18DAF1DB,24,55,1,0,0,,229840,629840,4ff,DIDs supported in range [$9841 - $9860] ,18DAF1DB,24,55,1,0,0,,229860,629860,4ff,DIDs supported in range [$9861 - $9880] ,18DAF1DB,24,55,1,0,0,,229880,629880,4ff,DIDs supported in range [$9881 - $98A0] ,18DAF1DB,24,55,1,0,0,,2298A0,6298A0,4ff,DIDs supported in range [$98A1 - $98C0] ,18DAF1DB,24,55,1,0,0,,2298C0,6298C0,4ff,DIDs supported in range [$98C1 - $98E0] ,18DAF1DB,24,55,1,0,0,,2298E0,6298E0,4ff,DIDs supported in range [$98E1 - $9900] ,18DAF1DB,24,55,1,0,0,,229900,629900,4ff,DIDs supported in range [$9901 - $9920] ,18DAF1DB,24,55,1,0,0,,229920,629920,4ff,DIDs supported in range [$9921 - $9940] ,18DAF1DB,24,55,1,0,0,,229940,629940,4ff,DIDs supported in range [$9941 - $9960] ,18DAF1DB,24,55,1,0,0,,229960,629960,4ff,DIDs supported in range [$9961 - $9980] ,18DAF1DB,24,55,1,0,0,,229980,629980,4ff,DIDs supported in range [$9981 - $99A0] ,18DAF1DB,24,55,1,0,0,,2299A0,6299A0,4ff,DIDs supported in range [$99A1 - $99C0] ,18DAF1DB,24,55,1,0,0,,2299C0,6299C0,4ff,DIDs supported in range [$99C1 - $99E0] ,18DAF1DB,24,55,1,0,0,,2299E0,6299E0,4ff,DIDs supported in range [$99E1 - $9A00] ,18DAF1DB,24,55,1,0,0,,229A00,629A00,4ff,DIDs supported in range [$9A01 - $9A20] ,18DAF1DB,24,55,1,0,0,,229A20,629A20,4ff,DIDs supported in range [$9A21 - $9A40] ,18DAF1DB,24,55,1,0,0,,229A40,629A40,4ff,DIDs supported in range [$9A41 - $9A60] ,18DAF1DB,24,55,1,0,0,,229A60,629A60,4ff,DIDs supported in range [$9A61 - $9A80] ,18DAF1DB,24,55,1,0,0,,229A80,629A80,4ff,DIDs supported in range [$9A81 - $9AA0] ,18DAF1DB,24,55,1,0,0,,229AA0,629AA0,4ff,DIDs supported in range [$9AA1 - $9AC0] ,18DAF1DB,24,55,1,0,0,,229AC0,629AC0,4ff,DIDs supported in range [$9AC1 - $9AE0] ,18DAF1DB,24,55,1,0,0,,229AE0,629AE0,4ff,DIDs supported in range [$9AE1 - $9B00] ,18DAF1DB,24,55,1,0,0,,229B00,629B00,4ff,DIDs supported in range [$9B01 - $9B20] ,18DAF1DB,24,55,1,0,0,,229B20,629B20,4ff,DIDs supported in range [$9B21 - $9B40] ,18DAF1DB,24,55,1,0,0,,229B40,629B40,4ff,DIDs supported in range [$9B41 - $9B60] ,18DAF1DB,24,55,1,0,0,,229B60,629B60,4ff,DIDs supported in range [$9B61 - $9B80] ,18DAF1DB,24,55,1,0,0,,229B80,629B80,4ff,DIDs supported in range [$9B81 - $9BA0] ,18DAF1DB,24,55,1,0,0,,229BA0,629BA0,4ff,DIDs supported in range [$9BA1 - $9BC0] ,18DAF1DB,24,55,1,0,0,,229BC0,629BC0,4ff,DIDs supported in range [$9BC1 - $9BE0] ,18DAF1DB,24,55,1,0,0,,229BE0,629BE0,4ff,DIDs supported in range [$9BE1 - $9C00] ,18DAF1DB,24,55,1,0,0,,229C00,629C00,4ff,DIDs supported in range [$9C01 - $9C20] ,18DAF1DB,24,55,1,0,0,,229C20,629C20,4ff,DIDs supported in range [$9C21 - $9C40] ,18DAF1DB,24,55,1,0,0,,229C40,629C40,4ff,DIDs supported in range [$9C41 - $9C60] ,18DAF1DB,24,55,1,0,0,,229C60,629C60,4ff,DIDs supported in range [$9C61 - $9C80] ,18DAF1DB,24,55,1,0,0,,229C80,629C80,4ff,DIDs supported in range [$9C81 - $9CA0] ,18DAF1DB,24,55,1,0,0,,229CA0,629CA0,4ff,DIDs supported in range [$9CA1 - $9CC0] ,18DAF1DB,24,55,1,0,0,,229CC0,629CC0,4ff,DIDs supported in range [$9CC1 - $9CE0] ,18DAF1DB,24,55,1,0,0,,229CE0,629CE0,4ff,DIDs supported in range [$9CE1 - $9D00] ,18DAF1DB,24,55,1,0,0,,229D00,629D00,4ff,DIDs supported in range [$9D01 - $9D20] ,18DAF1DB,24,55,1,0,0,,229D20,629D20,4ff,DIDs supported in range [$9D21 - $9D40] ,18DAF1DB,24,55,1,0,0,,229D40,629D40,4ff,DIDs supported in range [$9D41 - $9D60] ,18DAF1DB,24,55,1,0,0,,229D60,629D60,4ff,DIDs supported in range [$9D61 - $9D80] ,18DAF1DB,24,55,1,0,0,,229D80,629D80,4ff,DIDs supported in range [$9D81 - $9DA0] ,18DAF1DB,24,55,1,0,0,,229DA0,629DA0,4ff,DIDs supported in range [$9DA1 - $9DC0] ,18DAF1DB,24,55,1,0,0,,229DC0,629DC0,4ff,DIDs supported in range [$9DC1 - $9DE0] ,18DAF1DB,24,55,1,0,0,,229DE0,629DE0,4ff,DIDs supported in range [$9DE1 - $9E00] ,18DAF1DB,24,55,1,0,0,,229E00,629E00,4ff,DIDs supported in range [$9E01 - $9E20] ,18DAF1DB,24,55,1,0,0,,229E20,629E20,4ff,DIDs supported in range [$9E21 - $9E40] ,18DAF1DB,24,55,1,0,0,,229E40,629E40,4ff,DIDs supported in range [$9E41 - $9E60] ,18DAF1DB,24,55,1,0,0,,229E60,629E60,4ff,DIDs supported in range [$9E61 - $9E80] ,18DAF1DB,24,55,1,0,0,,229E80,629E80,4ff,DIDs supported in range [$9E81 - $9EA0] ,18DAF1DB,24,55,1,0,0,,229EA0,629EA0,4ff,DIDs supported in range [$9EA1 - $9EC0] ,18DAF1DB,24,55,1,0,0,,229EC0,629EC0,4ff,DIDs supported in range [$9EC1 - $9EE0] ,18DAF1DB,24,55,1,0,0,,229EE0,629EE0,4ff,DIDs supported in range [$9EE1 - $9F00] ,18DAF1DB,24,55,1,0,0,,229F00,629F00,4ff,DIDs supported in range [$9F01 - $9F20] ,18DAF1DB,24,55,1,0,0,,229F20,629F20,4ff,DIDs supported in range [$9F21 - $9F40] ,18DAF1DB,24,55,1,0,0,,229F40,629F40,4ff,DIDs supported in range [$9F41 - $9F60] ,18DAF1DB,24,55,1,0,0,,229F60,629F60,4ff,DIDs supported in range [$9F61 - $9F80] ,18DAF1DB,24,55,1,0,0,,229F80,629F80,4ff,DIDs supported in range [$9F81 - $9FA0] ,18DAF1DB,24,55,1,0,0,,229FA0,629FA0,4ff,DIDs supported in range [$9FA1 - $9FC0] ,18DAF1DB,24,55,1,0,0,,229FC0,629FC0,4ff,DIDs supported in range [$9FC1 - $9FE0] ,18DAF1DB,24,55,1,0,0,,229FE0,629FE0,4ff,DIDs supported in range [$9FE1 - $A000] ,18DAF1DB,24,55,1,0,0,,22F000,62F000,4ff,DIDs supported in range [$F001 - $F020] ,18DAF1DB,24,31,1,0,0,,22F010,62F010,ff,Fingerprint information.01 ,18DAF1DB,32,39,1,0,0,,22F010,62F010,ff,Fingerprint information.02 ,18DAF1DB,40,47,1,0,0,,22F010,62F010,ff,Fingerprint information.03 ,18DAF1DB,48,55,1,0,0,,22F010,62F010,ff,Fingerprint information.04 ,18DAF1DB,56,63,1,0,0,,22F010,62F010,ff,Fingerprint information.05 ,18DAF1DB,64,71,1,0,0,,22F010,62F010,ff,Fingerprint information.06 ,18DAF1DB,72,79,1,0,0,,22F010,62F010,ff,Fingerprint information.07 ,18DAF1DB,80,87,1,0,0,,22F010,62F010,ff,Fingerprint information.08 ,18DAF1DB,88,103,1,0,0,,22F010,62F010,ff,Fingerprint information.09 ,18DAF1DB,96,103,1,0,0,,22F010,62F010,ff,Fingerprint information.10 ,18DAF1DB,104,111,1,0,0,,22F010,62F010,ff,Fingerprint information.11 ,18DAF1DB,112,119,1,0,0,,22F010,62F010,ff,Fingerprint information.12 ,18DAF1DB,120,127,1,0,0,,22F010,62F010,ff,Fingerprint information.13 ,18DAF1DB,128,135,1,0,0,,22F010,62F010,ff,Fingerprint information.14 ,18DAF1DB,136,143,1,0,0,,22F010,62F010,ff,Fingerprint information.15 ,18DAF1DB,144,151,1,0,0,,22F010,62F010,ff,Fingerprint information.16 ,18DAF1DB,24,103,1,0,0,,22F012,62F012,2ff,VehicleManufacturerECUSoftwareNumber (Ref C) ,18DAF1DB,24,55,1,0,0,,22F020,62F020,4ff,DIDs supported in range [$F021 - $F040] ,18DAF1DB,24,39,1,0,0,,22F0A0,62F0A0,4ff,FOTA Status ,18DAF1DB,24,31,1,0,0,,22F0A5,62F0A5,4ff,FOTA cancel counter ,18DAF1DB,24,55,1,0,0,,22F100,62F100,4ff,DIDs supported in range [$F101 - $F120] ,18DAF1DB,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,18DAF1DB,24,55,1,0,0,,22F120,62F120,4ff,DIDs supported in range [$F121 - $F140] ,18DAF1DB,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,18DAF1DB,24,39,1,0,0,,22F180,62F180,2ff,Boot Version(bootSoftwareIdentification) ,18DAF1DB,24,39,1,0,0,,22F182,62F182,4ff,Calibration number ,18DAF1DB,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,18DAF1DB,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,18DAF1DB,24,63,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,18DAF1DB,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,18DAF1DB,24,159,1,0,0,,22F190,62F190,2ff,VIN ,18DAF1DB,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,18DAF1DB,24,47,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,18DAF1DB,24,55,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,18DAF1DB,24,103,1,0,0,,22F196,62F196,2ff,OBD Approval ,18DAF1DB,24,279,1,0,0,,22F197,62F197,2ff,OBD EngineType ,18DAF1DB,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,18DAF1DB,24,103,1,0,0,,22F1A1,62F1A1,2ff,Vehicle Manufacturer Spare Part Number (Nissan) ,18DAF1DB,24,55,1,0,0,,22F400,62F400,4ff,DIDs supported in range [$F401 - $F420] ,18DAF1DB,24,31,1,0,0,,22F401,62F401,ff,Number of DTC and MIL lamp Status.On-board diagnostic evaluation ,18DAF1DB,32,39,1,0,0,,22F401,62F401,ff,Number of DTC and MIL lamp Status.Continuous monitoring tests ,18DAF1DB,40,47,1,0,0,,22F401,62F401,ff,Number of DTC and MIL lamp Status.Supported tests run at least once per trip ,18DAF1DB,48,55,1,0,0,,22F401,62F401,ff,Number of DTC and MIL lamp Status.Status of tests run at least once per trip ,18DAF1DB,24,31,.392156863,0,1,%,22F404,62F404,ff,$04 - Calculated LOAD value ,18DAF1DB,24,31,1,40,0,°C,22F405,62F405,ff,$05 - Engine coolant temperature ,18DAF1DB,24,39,.25,0,1,rpm,22F40C,62F40C,ff,$0C - Engine RPM ,18DAF1DB,24,31,1,0,0,km/h,22F40D,62F40D,ff,$0D - Vehicle speed sensor ,18DAF1DB,24,31,1,0,0,,22F41C,62F41C,ff,$1C - OBD requirements to wich vehicle is designed ,18DAF1DB,24,55,1,0,0,,22F420,62F420,4ff,DIDs supported in range [$F421 - $F440] ,18DAF1DB,24,39,1,0,0,km,22F421,62F421,ff,$01 - Distance travelled while MIL is activated ,18DAF1DB,24,31,1,0,0,,22F430,62F430,ff,$01 - Number of warm-ups since diagnostic trouble codes cleared ,18DAF1DB,24,39,1,0,0,km,22F431,62F431,ff,$01 - Distance travelled since diagnostic trouble codes cleared ,18DAF1DB,24,31,1,0,0,kPa,22F433,62F433,ff,$33 - Barometric Pressure ,18DAF1DB,24,55,1,0,0,,22F440,62F440,4ff,DIDs supported in range [$F441 - $F460] ,18DAF1DB,24,31,1,0,0,,22F441,62F441,ff,Data Byte.A: ISO/SAE Reserved ,18DAF1DB,32,39,1,0,0,,22F441,62F441,ff,Data Byte.B On-board diagnostic evaluation and Continuous monitoring tests this monitoring cycle ,18DAF1DB,40,47,1,0,0,,22F441,62F441,ff,Data Byte.C Supported enable tests ,18DAF1DB,48,55,1,0,0,,22F441,62F441,ff,Data Byte.D Completion of tests this monitoring cycle ,18DAF1DB,24,39,.001,0,3,V,22F442,62F442,ff,$42 - Control module voltage ,18DAF1DB,24,31,.392156863,0,1,%,22F449,62F449,ff,$49 - Accelerator Pedal Position D ,18DAF1DB,24,31,.392156863,0,1,%,22F45B,62F45B,ff,$5B - Hybrid/EV Battery Pack Remaining Charge ,18DAF1DB,24,55,1,0,0,,22F480,62F480,4ff,DIDs supported in range [$F481 - $F4A0] ,18DAF1DB,24,31,1,0,0,,22F49A,62F49A,ff,$9A - Hybrid/EV Vehicle System Data for OBD.00 ,18DAF1DB,32,39,1,0,0,,22F49A,62F49A,ff,$9A - Hybrid/EV Vehicle System Data for OBD.01 ,18DAF1DB,40,55,.015625,0,2,V,22F49A,62F49A,ff,$9A - Hybrid/EV Vehicle System Data for OBD.02 ,18DAF1DB,56,71,.1,0,1,A,22F49A,62F49A,ff,$9A - Hybrid/EV Vehicle System Data for OBD.03 ,18DAF1DB,24,31,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.00 ,18DAF1DB,32,39,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.01 ,18DAF1DB,40,47,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.02 ,18DAF1DB,48,55,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.03 ,18DAF1DB,56,63,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.04 ,18DAF1DB,64,71,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.05 ,18DAF1DB,72,79,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.06 ,18DAF1DB,80,87,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.07 ,18DAF1DB,88,95,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.08 ,18DAF1DB,96,103,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.09 ,18DAF1DB,104,111,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.10 ,18DAF1DB,112,119,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.11 ,18DAF1DB,120,127,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.12 ,18DAF1DB,128,135,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.13 ,18DAF1DB,136,143,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.14 ,18DAF1DB,144,151,1,0,0,,22F804,62F804,2ff,$09 - OBD calibration identifications.15 ,18DAF1DB,24,39,1,0,0,,22F806,62F806,ff,$09 - Calibration verification numbers.01 ,18DAF1DB,40,55,1,0,0,,22F806,62F806,ff,$09 - Calibration verification numbers.00 ,18DAF1DB,24,31,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.20 ,18DAF1DB,32,39,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.19 ,18DAF1DB,40,47,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.18 ,18DAF1DB,48,55,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.17 ,18DAF1DB,56,63,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.16 ,18DAF1DB,64,71,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.15 ,18DAF1DB,72,79,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.14 ,18DAF1DB,80,87,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.13 ,18DAF1DB,88,95,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.12 ,18DAF1DB,96,103,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.11 ,18DAF1DB,104,111,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.10 ,18DAF1DB,112,119,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.09 ,18DAF1DB,120,127,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.08 ,18DAF1DB,128,135,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.07 ,18DAF1DB,136,143,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.06 ,18DAF1DB,144,151,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.05 ,18DAF1DB,152,159,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.04 ,18DAF1DB,160,167,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.03 ,18DAF1DB,168,175,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.02 ,18DAF1DB,176,183,1,0,0,,22F80A,62F80A,ff,$09 - systemNameorEngineType.01 ,18DAF1DB,24,31,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.00 ,18DAF1DB,32,39,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.01 ,18DAF1DB,40,47,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.02 ,18DAF1DB,48,55,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.03 ,18DAF1DB,56,63,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.04 ,18DAF1DB,64,71,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.05 ,18DAF1DB,72,79,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.06 ,18DAF1DB,80,87,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.07 ,18DAF1DB,88,95,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.08 ,18DAF1DB,96,103,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.09 ,18DAF1DB,104,111,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.10 ,18DAF1DB,112,119,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.11 ,18DAF1DB,120,127,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.12 ,18DAF1DB,128,135,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.13 ,18DAF1DB,136,143,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.14 ,18DAF1DB,144,151,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.15 ,18DAF1DB,152,159,1,0,0,,22F80F,62F80F,ff,$09 - exhaustRegulationorTypeApprovalNumber.16 ,18DAF1DB,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/LBC_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adj. failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or sys. operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/MIU_Dtcs.csv ================================================ 9F31,Internal Default 9F33,LVDS default 9F35,LIN defaut 9F34,CAN M defaut 9F37,Power Supply Monitoring 9F36,I2C touch controler 9F32,buttons/touchpad 9F38,Display over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/MIU_Fields.csv ================================================ ,734,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,734,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming ,734,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnostic ,734,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,734,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,734,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,734,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,734,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,734,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,40754:buttons/touchpad;40756:CAN M defaut;40753:Internal Default;40757:LIN defaut;40755:LVDS default;40758:I2C touch controler;40759:Power Supply Monitoring;40760:Display over temperature ,734,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,734,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,734,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,734,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,734,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,734,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,734,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,734,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,734,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,734,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,734,16,39,1,0,0,,1903000000FF,5903000000FF,4ff,DTCRecord ,734,40,47,1,0,0,,1903000000FF,5903000000FF,ff,DTCSnapshotRecordNumber ,734,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,734,40,47,1,0,0,,1904000000FF,5904000000FF,ff,DTCSnapshotRecordNumber ,734,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,734,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,40754:buttons/touchpad;40756:CAN M defaut;40753:Internal Default;40757:LIN defaut;40755:LVDS default;40758:I2C touch controler;40759:Power Supply Monitoring;40760:Display over temperature ,734,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,734,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,734,16,31,1,0,0,,1914,5914,ff,DTCDeviceIdentifier,40754:buttons/touchpad;40756:CAN M defaut;40753:Internal Default;40757:LIN defaut;40755:LVDS default;40758:I2C touch controler;40759:Power Supply Monitoring;40760:Display over temperature ,734,32,39,1,0,0,,1914,5914,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM (Pulse Width Modulated) Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adj. failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or sys. operation obstructed or blocked;152:component or system over temperature ,734,40,47,1,0,0,,1914,5914,ff,DTCFaultDetectionCounter ,734,24,24,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_H,0:switch H not pressed;1:switch H pressed ,734,25,25,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_G,0:switch G not pressed;1:switch G pressed ,734,26,26,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_F,0:switch F not pressed;1:switch F pressed ,734,27,27,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_E,0:switch E not pressed;1:switch E pressed ,734,28,28,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_D,0:switch D not pressed;1:switch D pressed ,734,29,29,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_C,0:switch C not pressed;1:switch C pressed ,734,30,30,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_B,0:switch B not pressed;1:switch B pressed ,734,31,31,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_A,0:switch A not pressed;1:switch A pressed ,734,32,32,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_S,0:switch S not pressed;1:switch S pressed ,734,33,33,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_R,0:switch R not pressed;1:switch R pressed ,734,34,34,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_P,0:switch P not pressed;1:switch P pressed ,734,35,35,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_N,0:switch N not pressed;1:switch N pressed ,734,36,36,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_M,0:switch M not pressed;1:switch M pressed ,734,37,37,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_L,0:switch L not pressed;1:switch L pressed ,734,38,38,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_K,0:switch K not pressed;1:switch K pressed ,734,39,39,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_J,0:switch J not pressed;1:switch J pressed ,734,41,41,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_Z,0:switch Z not pressed;1:switch Z pressed ,734,42,42,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_Y,0:switch Y not pressed;1:switch Y pressed ,734,43,43,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_X,0:switch X not pressed;1:switch X pressed ,734,44,44,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_W,0:switch W not pressed;1:switch W pressed ,734,45,45,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_V,0:switch V not pressed;1:switch V pressed ,734,46,46,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_U,0:switch U not pressed;1:switch U pressed ,734,47,47,1,0,0,,220101,620101,ff,Switch_Climate_Control_Short_Press.Switch_T,0:switch T not pressed;1:switch T pressed ,734,24,31,1,0,0,,220108,620108,ff,Output control Telltales,1:ON;2:OFF ,734,24,31,1,0,0,%,220115,620115,ff,Output control PWM Display ,734,24,31,1,0,0,,220116,620116,ff,Output Control Display Color Test,0:Black;1:Red;2:Green;3:Blue;4:White ,734,26,31,1,0,0,,220120,620120,ff,RadioKey,0:No pressed;1:Button 1 pressed;2:Button 2 pressed;3:Button 3 pressed;4:Button 4 pressed;5:Button 5 pressed;6:Button 6 pressed ,734,31,31,1,0,0,,220121,620121,ff,CP_On_Off,0:switch Off;1:switch On ,734,24,39,1,0,0,,220123,620123,ff,Last_Touch.CoordinateX ,734,40,55,1,0,0,,220123,620123,ff,Last_Touch.CoordinateY ,734,24,31,.4,0,1,%,220204,620204,ff,Global_dimming.Max_Command ,734,32,39,.4,0,1,%,220204,620204,ff,Global_dimming.Min_Command ,734,40,47,.4,0,1,%,220204,620204,ff,Global_dimming.Max_Display_Night ,734,48,55,.4,0,1,%,220204,620204,ff,Global_dimming.Min_Display_Night ,734,56,63,.4,0,1,%,220204,620204,ff,Global_dimming.Max_Display_day ,734,64,71,.4,0,1,%,220204,620204,ff,Global_dimming.Min_Display_day ,734,72,79,.4,0,1,%,220204,620204,ff,Global_dimming.Max_LCD_Night ,734,80,87,.4,0,1,%,220204,620204,ff,Global_dimming.Min_LCD_Night ,734,88,95,.4,0,1,%,220204,620204,ff,Global_dimming.Max_LCD_Day ,734,96,103,.4,0,1,%,220204,620204,ff,Global_dimming.Min_LCD_Day ,734,104,111,.4,0,1,%,220204,620204,ff,Global_dimming.Day_Telltale ,734,112,119,.4,0,1,%,220204,620204,ff,Global_dimming.Night_Telltale ,734,120,127,.4,0,1,%,220204,620204,ff,Global_dimming.Dark_Display ,734,24,31,10,0,0,ms,220218,620218,ff,KL_ShortPush ,734,24,31,100,0,0,ms,220219,620219,ff,KL_LongPush ,734,28,31,10,0,0,ms,220230,620230,ff,PRESS_FILTER ,734,27,31,100,0,0,ms,220231,620231,ff,LONG_PRESS ,734,28,31,50,-2,0,ms,220232,620232,ff,CONTINOUS_PRESS ,734,27,31,5,-6,0,s,220236,620236,ff,JAMMED_PRESS ,734,28,31,500,0,0,ms,220258,620258,ff,ONOFF_LONG_PRESS ,734,24,31,.05,0,2,,220260,620260,ff,SmoothingLow.K_value ,734,32,39,.05,0,2,,220260,620260,ff,SmoothingLow.J_value ,734,44,47,5,0,0,ms,220260,620260,ff,SmoothingLow.TE_value ,734,24,31,1,0,0,,220301,620301,ff,HW_Reset_Counter ,734,24,31,1,0,0,,220302,620302,ff,SW_Reset_Counter ,734,24,31,1,0,0,,220321,620321,ff,EEPROM_default ,734,24,143,1,0,0,,220323,620323,2ff,Part Identification ,734,24,103,1,0,0,,22F012,62F012,2ff,Operationnal_Reference ,734,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,734,24,31,1,0,0,,22F0D1,62F0D1,ff,DTCoccurenceCounter ,734,24,39,.001,0,3,V,22F0D2,62F0D2,ff,BaterryVoltage ,734,24,31,1,40,0,°C,22F0D3,62F0D3,ff,Display_Temperature ,734,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,734,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,734,24,103,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,734,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,734,24,159,1,0,0,,22F190,62F190,2ff,VIN ,734,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,734,24,79,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,734,24,79,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,734,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,734,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/MIU_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM (Pulse Width Modulated) Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adj. failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or sys. operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/Navigation-UCC-ITM_Dtcs.csv ================================================ 9341,Internal self-diagnosis abnormality_Others 9311,Rear Left Loudspeaker 930B,Rear Right Loudspeaker 930D,Front Right Loudspeaker 930F,Front Left Loudspeaker 9320,Rear Right Tweeter 9321,Front Right Tweeter 9322,Front Left Tweeter 9323,Rear Left Tweeter 9346,GNSS antenna 9315,AM/FM1 antenna supply 9316,FM2 antenna supply D000,CAN communication D300,AV Communication 93EC,Configuration error2 and Factory mode 9382,Amp temperature up 9383,Angle sensor calibration 9381,ETC self-diagnosis abnormality 933C,AMP connection abnormality 933B,Beacon unit connection abnormality 9360,Cluster meter connection abnormality 9303,DAB antenna connection abnormality 93DF,DSRC unit connection abnormality 9333,D-TV antenna 1 connection abnormality 9334,D-TV antenna 2 connection abnormality 9317,SXM antenna connection abnormality 9332,MCH1 External Aux IN 932A,MCH1 external USB 93D9,MCH1 external USB_Comm 932C,TCU external USB 93E5,TCU external USB_Comm 933A,CVBS IN AVM line 9339,CVBS IN rear cam line 9375,Rear camera Power supply 93DD,LVDS IN CP Line 9351,ECU Amplifier 93CF,ECU Buttons 9342,Locked ECU 9309,System ON 9347,ECU Bluetooth module 935E,ECU Fan 9380,ECU Wifi module C079,Bus off (Ext-CAN) 9328,External Microphone signal line 1 9329,External Microphone signal line 2 9372,RearSwitch connection abnormality E141,Lost communication with Automatic Transmission on Powertrain CAN E14E,lost communication with Cluster on V1 CAN E14F,lost communication with Body Control Module E159,lost communication with Electric Powered Steering on V1 CAN E148,lost communication with Electronic Stability Control on IC CAN E15B,lost communication with Underhood Switching Module E16B,lost communication with Front Camera E176,lost communication with Integrated Dynamics-control on chassis CAN E165,lost communication with Ultra Sonic Adas E104,lost communication with Four Wheels Steering E175,lost communication with Around view monitoring E118,lost communication with Hand free Module E153,lost communication with Climate Control E173,lost communication with Head Up display on multimedia CAN E16D,lost communication with Telematic Control Unit on V1 CAN E150,lost communication with Airbag Control Unit E152,lost communication with Advanced driver assistance system E16E,lost communication with Blind Sport Warning Right E140,lost communication with Engine Control Module E143,lost communication with Hybrid Electric Vehicle Control E187,lost communication with Scene recorder E164,lost communication with Automatic Driver Seat positionning E177,lost communication with Seat Passenger E023,lost communication with Central Panel E24E,lost communication with Cluster on multimedia CAN E025,lost communication with AMP on V1 CAN E26D,lost communication with Telematic Control Unit on multimedia CAN 9384,2nd Display self-diagnosis abnormality 93C1,RR Display self-diagnosis abnormality 93C2,RL Display self-diagnosis abnormality 93C3,RR Display High temperature 93C4,RL Display High temperature 93C5,RSE Self diagnosis abnormality 93C6,RSE High Temperature 9335,D-TV antenna 3 connection abnormality 9336,D-TV antenna 4 connection abnormality 9366,Media Box Connection abnormality 9370,2nd Display connection abnormality 9371,RSE connection abnormality 937A,Integrated Switch connection abnormality 937B,DTV Box UART connection abnormality 937C,DTV Box Power supply 93EB,ANC Microphone supply1 9368,External CD Drive disc 936C,External CD Drive 93DE,LVDS IN Media Player 930A,LVDS IN Digital Player 93DA,LVDS IN LVDS Camera 93DB,LVDS IN 2nd Display 93D8,LVDS IN DTV Box 93AF,AUDIO IN RSE 9343,ECU ROM 9344,ECU EEPROM 9345,ECU Gyro 9356,ECU DSP E768,lost communication with Gateway AE17,TLS Session error 9F0B,mic1 input 9F10,mic2 input 9F15,mic3 input 9F1A,mic4 input 9F01,TACHO Pulse 9A00,speaker DTC 1 9A01,speaker DTC 2 9A02,speaker DTC 3 9A03,speaker DTC 4 9A04,speaker DTC 5 9A05,speaker DTC 6 9A06,speaker DTC 7 9A07,speaker DTC 8 9A08,speaker DTC 9 9A09,speaker DTC 10 9A0A,speaker DTC 11 9A0B,speaker DTC 12 9A0C,speaker DTC 13 9A0D,speaker DTC 14 9A0E,speaker DTC 15 9A0F,speaker DTC 16 9A10,speaker DTC 17 9A11,speaker DTC 18 9A12,speaker DTC 19 9A13,speaker DTC 20 9A14,speaker DTC 21 9A15,speaker DTC 22 9A16,speaker DTC 23 9A17,speaker DTC 24 9A18,speaker DTC 25 9A19,speaker DTC 26 9A1A,speaker DTC 27 9A1B,speaker DTC 28 9A1C,speaker DTC 29 9A1D,speaker DTC 30 9A1E,speaker DTC 31 9A1F,speaker DTC 32 9A20,speaker DTC 33 9A21,speaker DTC 34 9A22,speaker DTC 35 9A23,speaker DTC 36 9A24,speaker DTC 37 9A25,speaker DTC 38 9A26,speaker DTC 39 9A27,speaker DTC 40 9A28,speaker DTC 41 9A29,speaker DTC 42 9A2A,speaker DTC 43 9A2B,speaker DTC 44 9A2C,speaker DTC 45 9A2D,speaker DTC 46 9A2E,speaker DTC 47 9A2F,speaker DTC 48 9A30,speaker DTC 49 9A31,speaker DTC 50 9A32,speaker DTC 51 9A33,speaker DTC 52 9A34,speaker DTC 53 9A35,speaker DTC 54 9A36,speaker DTC 55 9A37,speaker DTC 56 9A38,speaker DTC 57 9A39,speaker DTC 58 9A3A,speaker DTC 59 9A3B,speaker DTC 60 9A3C,speaker DTC 61 9A3D,speaker DTC 62 9A3E,speaker DTC 63 9A3F,speaker DTC 64 9A40,speaker DTC 65 9A41,speaker DTC 66 9A42,speaker DTC 67 9A43,speaker DTC 68 9A44,speaker DTC 69 9A45,speaker DTC 70 9A46,speaker DTC 71 9A47,speaker DTC 72 9A48,speaker DTC 73 9A49,speaker DTC 74 9A4A,speaker DTC 75 9A4B,speaker DTC 76 9A4C,speaker DTC 77 9A4D,speaker DTC 78 9A4E,speaker DTC 79 9A4F,speaker DTC 80 9A50,speaker DTC 81 9A51,speaker DTC 82 9A52,speaker DTC 83 9A53,speaker DTC 84 9A54,speaker DTC 85 9A55,speaker DTC 86 9A56,speaker DTC 87 9A57,speaker DTC 88 9A58,speaker DTC 89 9A59,speaker DTC 90 9A5A,speaker DTC 91 9A5B,speaker DTC 92 9A5C,speaker DTC 93 9A5D,speaker DTC 94 9A5E,speaker DTC 95 9A5F,speaker DTC 96 9A60,speaker DTC 97 9A61,speaker DTC 98 9A62,speaker DTC 99 9A63,speaker DTC 100 9A64,speaker DTC 101 9A65,speaker DTC 102 9A66,speaker DTC 103 9A67,speaker DTC 104 9A68,speaker DTC 105 9A69,speaker DTC 106 9A6A,speaker DTC 107 9A6B,speaker DTC 108 9A6C,speaker DTC 109 9A6D,speaker DTC 110 9A6E,speaker DTC 111 9A6F,speaker DTC 112 9A70,speaker DTC 113 9A71,speaker DTC 114 9A72,speaker DTC 115 9A73,speaker DTC 116 9A74,speaker DTC 117 9A75,speaker DTC 118 9A76,speaker DTC 119 9A77,speaker DTC 120 9A78,speaker DTC 121 9A79,speaker DTC 122 9A7A,speaker DTC 123 9A7B,speaker DTC 124 9A7C,speaker DTC 125 9A7D,speaker DTC 126 9A7E,speaker DTC 127 9A7F,speaker DTC 128 9A80,speaker DTC 129 9A81,speaker DTC 130 9A82,speaker DTC 131 9A83,speaker DTC 132 9A84,speaker DTC 133 9A85,speaker DTC 134 9A86,speaker DTC 135 9A87,speaker DTC 136 9A88,speaker DTC 137 9A89,speaker DTC 138 9A8A,speaker DTC 139 9A8B,speaker DTC 140 AE38,Vnext Master Authentication NOK AE39,Vnext Regional Authentication NOK AE3A,Vnext Master timeout AE3B,Vnext Regional timeout AE3C,Unknown Part-ID AE3D,Bad Pairing A-IVI & VIN AE3E,No Certificate available AE40,Part Certificate Storage error AE41,A-IVI Authentication Fails AE42,A-IVI no Region Setting AE43,A-IVI Invalid Region Setting AE44,Region Setting Storage error AE45,A-IVI no Partition Setting AE46,A-IVI Invalid Partition Setting AE47,Partition Setting Storage error AE48,Service Check not complete AE21,Invalid A-IVI certificate E00A,lost communication with V-DIST (RSE) on multimedia CAN D600,Front Left-DOOR speaker output D608,Front Right-DOOR speaker output D711,Rear Right-DOOR woofer output D709,Rear Left-DOOR woofer output 9F0A,Mic1 input old 932E,A+T BOX/ETC2.0 USB 93D7,A+TBOX Internal failure E754,lost communication with gateway 3.0 E075,lost communication with AMP AE19,Vnext configuration discarded AE3F,Part certificate verification fails ================================================ FILE: app/src/main/assets/ZOE_Ph2/Navigation-UCC-ITM_Fields.csv ================================================ ,767,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,767,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Reprog ,767,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,767,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,767,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,767,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTCFormat;1:ISO_14229-1_DTCFormat;2:SAE_J1939-73_DTCFormat;3:ISO_11992-4_DTCFormat;4:SAE_J2012-DA_WWHOBD_DTCFormat ,767,32,47,1,0,0,,1901FF,5901FF,4ff,DTCCount ,767,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,767,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD,49273:BUS off (Ext-CAN) ,767,40,43,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,767,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested ,767,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle ,767,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,767,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,767,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,767,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC ,767,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle ,767,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,767,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,767,40,47,1,0,0,,190400000001,590400000001,ff,StatusOfDTC ,767,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,767,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,767,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,767,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,767,31,31,1,0,0,,220100,620100,ff,LIN_OUT.SystemON,0:Not active;1:Active ,767,29,29,1,0,0,,220101,620101,ff,LIN_IN.MR out,0:Not active;1:Active ,767,30,30,1,0,0,,220101,620101,ff,LIN_IN.PKB,0:Not active;1:Active ,767,31,31,1,0,0,,220101,620101,ff,LIN_IN.IGN,0:Not active;1:Active ,767,32,32,1,0,0,,220101,620101,ff,LIN_IN.Auto ACC,0:Not active;1:Active ,767,33,33,1,0,0,,220101,620101,ff,LIN_IN.ACC,0:Not active;1:Active ,767,34,34,1,0,0,,220101,620101,ff,LIN_IN.Info_Aux_IN,0:Jack not connected;1:Jack connected ,767,35,35,1,0,0,,220101,620101,ff,LIN_IN.Info_Aux_IN_2,0:Jack not connected;1:Jack connected ,767,36,36,1,0,0,,220101,620101,ff,LIN_IN.MuteTCU,0:Mute OFF;1:Mute ON ,767,37,37,1,0,0,,220101,620101,ff,LIN_IN.REV,0:Not active;1:Active ,767,38,38,1,0,0,,220101,620101,ff,LIN_IN.Illumination,0:Not active;1:Active ,767,39,39,1,0,0,,220101,620101,ff,LIN_IN.Illumination Con,0:Not active;1:Active ,767,24,31,.2,0,1,V,220200,620200,ff,Batterylevel ,767,24,39,.01,0,2,,220201,620201,ff,Speed information ,767,24,24,1,0,0,,220300,620300,ff,SWRC_button.9,0:Not pressed;1:Pressed ,767,25,25,1,0,0,,220300,620300,ff,SWRC_button.8,0:Not pressed;1:Pressed ,767,26,26,1,0,0,,220300,620300,ff,SWRC_button.6,0:Not pressed;1:Pressed ,767,27,27,1,0,0,,220300,620300,ff,SWRC_button.5,0:Not pressed;1:Pressed ,767,28,28,1,0,0,,220300,620300,ff,SWRC_button.4,0:Not pressed;1:Pressed ,767,29,29,1,0,0,,220300,620300,ff,SWRC_button.3,0:Not pressed;1:Pressed ,767,30,30,1,0,0,,220300,620300,ff,SWRC_button.2,0:Not pressed;1:Pressed ,767,31,31,1,0,0,,220300,620300,ff,SWRC_button.1,0:Not pressed;1:Pressed ,767,38,38,1,0,0,,220300,620300,ff,SWRC_button.11,0:Not pressed;1:Pressed ,767,39,39,1,0,0,,220300,620300,ff,SWRC_button.10,0:Not pressed;1:Pressed ,767,24,24,1,0,0,,220301,620301,ff,SWRC_rotary.'7'UpToDown,0:Not pressed;1:Rotary switch turned Up to Down ,767,25,25,1,0,0,,220301,620301,ff,SWRC_rotary.'7'DownToUp,0:Not pressed;1:Rotary switch turned Down to Up ,767,25,25,1,0,0,,220302,620302,ff,OSW.Key-7,0:Not pressed;1:Pressed ,767,26,26,1,0,0,,220302,620302,ff,OSW.PTT,0:Not pressed;1:Pressed ,767,27,27,1,0,0,,220302,620302,ff,OSW.Phone,0:Not pressed;1:Pressed ,767,28,28,1,0,0,,220302,620302,ff,OSW.Key-3,0:Not pressed;1:Pressed ,767,29,29,1,0,0,,220302,620302,ff,OSW.Key-4,0:Not pressed;1:Pressed ,767,30,30,1,0,0,,220302,620302,ff,OSW.Key-5,0:Not pressed;1:Pressed ,767,31,31,1,0,0,,220302,620302,ff,OSW.Key-6,0:Not pressed;1:Pressed ,767,24,24,1,0,0,,220303,620303,ff,CSW.rotaryAnticlockwise,0:Not pressed;1:Pressed ,767,25,25,1,0,0,,220303,620303,ff,CSW.rotaryClockwise,0:Not pressed;1:Pressed ,767,26,26,1,0,0,,220303,620303,ff,CSW.rotaryRight,0:Not pressed;1:Pressed ,767,27,27,1,0,0,,220303,620303,ff,CSW.rotaryLeft,0:Not pressed;1:Pressed ,767,28,28,1,0,0,,220303,620303,ff,CSW.rotaryDown,0:Not pressed;1:Pressed ,767,29,29,1,0,0,,220303,620303,ff,CSW.rotaryUp,0:Not pressed;1:Pressed ,767,30,30,1,0,0,,220303,620303,ff,CSW.rotaryPush,0:Not pressed;1:Pressed ,767,36,36,1,0,0,,220303,620303,ff,CSW.button4,0:Not pressed;1:Pressed ,767,37,37,1,0,0,,220303,620303,ff,CSW.button3,0:Not pressed;1:Pressed ,767,38,38,1,0,0,,220303,620303,ff,CSW.button2,0:Not pressed;1:Pressed ,767,39,39,1,0,0,,220303,620303,ff,CSW.button1,0:Not pressed;1:Pressed ,767,27,27,1,0,0,,220304,620304,ff,CP_buttons.button5,0:Not pressed;1:Pressed ,767,28,28,1,0,0,,220304,620304,ff,CP_buttons.button4,0:Not pressed;1:Pressed ,767,29,29,1,0,0,,220304,620304,ff,CP_buttons.button3,0:Not pressed;1:Pressed ,767,30,30,1,0,0,,220304,620304,ff,CP_buttons.button2,0:Not pressed;1:Pressed ,767,31,31,1,0,0,,220304,620304,ff,CP_buttons.button1,0:Not pressed;1:Pressed ,767,25,25,1,0,0,,220305,620305,ff,CD_drive.Eject,0:Not pressed;1:Pressed ,767,31,31,1,0,0,,220306,620306,ff,CP_touchscreen,0:Not pressed;1:Pressed ,767,24,143,1,0,0,,220308,620308,2ff,Wifi monitoring.A-IVI IP address ,767,145,147,1,0,0,,220308,620308,ff,Wifi monitoring.Number of connected devices ,767,148,151,1,0,0,,220308,620308,ff,Wifi monitoring.Wifi status,0:Wifi if OFF;1:Wifi is in client mode;2:Wifi is in hotspot mode without internet sharing;3:Wifi is in hotspot mode with internet sharing;4:Wifi is in hotspot mode due to Carplay Wireless ,767,152,152,1,0,0,,220308,620308,ff,Wifi monitoring.Wifi band,0:2.4 GHz band;1:5 GHz band ,767,153,159,1,0,0,,220308,620308,ff,Wifi monitoring.Signal strength (RSSI value) ,767,160,183,1,0,0,,220308,620308,2ff,Wifi monitoring.Wifi channel ,767,184,447,1,0,0,,220308,620308,2ff,Wifi monitoring.User defined SSID (ASCII)  ,767,24,55,1,0,0,,221000,621000,4ff,VID ,767,31,31,1,0,0,,221005,621005,ff,Radio_State,0:Radio is in state Off user;1:Radio is in state On user ,767,24,31,1,0,0,°C,221007,621007,ff,ECU temperature ,767,24,31,1,0,0,,221008,621008,ff,Fan activation counter ,767,24,39,1,0,0,min,221009,621009,ff,Fan activation duration ,767,24,31,1,0,0,,221010,621010,ff,Degraded mode counter ,767,24,39,1,0,0,,221011,621011,ff,Degraded mode cumulated duration ,767,24,39,1,0,0,,221012,621012,ff,Time from engine stopped ,767,24,39,1,0,0,,221100,621100,ff,History.NumberOfReprogramming ,767,24,31,1,0,0,,221102,621102,4ff,HistoricZone0.Year ,767,32,39,1,0,0,,221102,621102,4ff,HistoricZone0.Month ,767,40,47,1,0,0,,221102,621102,4ff,HistoricZone0.Day ,767,48,55,1,0,0,,221102,621102,4ff,HistoricZone0.Hour ,767,56,63,1,0,0,,221102,621102,4ff,HistoricZone0.Minute ,767,64,71,1,0,0,,221102,621102,4ff,HistoricZone0.Second ,767,72,79,1,0,0,,221102,621102,ff,HistoricZone0.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221102,621102,ff,HistoricZone0.Index ,767,96,151,1,0,0,,221102,621102,4ff,HistoricZone0.ReleaseSWversion ,767,152,159,1,0,0,,221102,621102,4ff,HistoricZone0.Padding character ,767,24,31,1,0,0,,221103,621103,4ff,HistoricZone1.Year ,767,32,39,1,0,0,,221103,621103,4ff,HistoricZone1.Mounth ,767,40,47,1,0,0,,221103,621103,4ff,HistoricZone1.Day ,767,48,55,1,0,0,,221103,621103,4ff,HistoricZone1.Hour ,767,56,63,1,0,0,,221103,621103,4ff,HistoricZone1.Minute ,767,64,71,1,0,0,,221103,621103,4ff,HistoricZone1.Second ,767,72,79,1,0,0,,221103,621103,ff,HistoricZone1.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221103,621103,ff,HistoricZone1.Index ,767,96,151,1,0,0,,221103,621103,4ff,HistoricZone1.ReleaseSWversion ,767,152,159,1,0,0,,221103,621103,4ff,HistoricZone1.Padding character ,767,24,31,1,0,0,,221110,621110,4ff,HistoricZoneX0.Year ,767,32,39,1,0,0,,221110,621110,4ff,HistoricZoneX0.Month ,767,40,47,1,0,0,,221110,621110,4ff,HistoricZoneX0.Day ,767,48,55,1,0,0,,221110,621110,4ff,HistoricZoneX0.Hour ,767,56,63,1,0,0,,221110,621110,4ff,HistoricZoneX0.Minute ,767,64,71,1,0,0,,221110,621110,4ff,HistoricZoneX0.Second ,767,72,79,1,0,0,,221110,621110,ff,HistoricZoneX0.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221110,621110,ff,HistoricZoneX0.Index ,767,96,151,1,0,0,,221110,621110,4ff,HistoricZoneX0.ReleaseSWversion ,767,152,159,1,0,0,,221110,621110,4ff,HistoricZoneX0.Padding character ,767,24,31,1,0,0,,221111,621111,4ff,HistoricZoneX1.Year ,767,32,39,1,0,0,,221111,621111,4ff,HistoricZoneX1.Month ,767,40,47,1,0,0,,221111,621111,4ff,HistoricZoneX1.Day ,767,48,55,1,0,0,,221111,621111,4ff,HistoricZoneX1.Hour ,767,56,63,1,0,0,,221111,621111,4ff,HistoricZoneX1.Minute ,767,64,71,1,0,0,,221111,621111,4ff,HistoricZoneX1.Second ,767,72,79,1,0,0,,221111,621111,ff,HistoricZoneX1.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221111,621111,ff,HistoricZoneX1.Index ,767,96,151,1,0,0,,221111,621111,4ff,HistoricZoneX1.ReleaseSWversion ,767,152,159,1,0,0,,221111,621111,4ff,HistoricZoneX1.Padding character ,767,24,31,1,0,0,,221112,621112,4ff,HistoricZoneX2.Year ,767,32,39,1,0,0,,221112,621112,4ff,HistoricZoneX2.Month ,767,40,47,1,0,0,,221112,621112,4ff,HistoricZoneX2.Day ,767,48,55,1,0,0,,221112,621112,4ff,HistoricZoneX2.Hour ,767,56,63,1,0,0,,221112,621112,4ff,HistoricZoneX2.Minute ,767,64,71,1,0,0,,221112,621112,4ff,HistoricZoneX2.Second ,767,72,79,1,0,0,,221112,621112,ff,HistoricZoneX2.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221112,621112,ff,HistoricZoneX2.Index ,767,96,151,1,0,0,,221112,621112,4ff,HistoricZoneX2.ReleaseSWversion ,767,152,159,1,0,0,,221112,621112,4ff,HistoricZoneX2.Padding character ,767,24,31,1,0,0,,221113,621113,4ff,HistoricZoneX3.Year ,767,32,39,1,0,0,,221113,621113,4ff,HistoricZoneX3.Month ,767,40,47,1,0,0,,221113,621113,4ff,HistoricZoneX3.Day ,767,48,55,1,0,0,,221113,621113,4ff,HistoricZoneX3.Hour ,767,56,63,1,0,0,,221113,621113,4ff,HistoricZoneX3.Minute ,767,64,71,1,0,0,,221113,621113,4ff,HistoricZoneX3.Second ,767,72,79,1,0,0,,221113,621113,ff,HistoricZoneX3.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221113,621113,ff,HistoricZoneX3.Index ,767,96,151,1,0,0,,221113,621113,4ff,HistoricZoneX3.ReleaseSWversion ,767,152,159,1,0,0,,221113,621113,4ff,HistoricZoneX3.Padding character ,767,24,31,1,0,0,,221114,621114,4ff,HistoricZoneX4.Year ,767,32,39,1,0,0,,221114,621114,4ff,HistoricZoneX4.Mounth ,767,40,47,1,0,0,,221114,621114,4ff,HistoricZoneX4.Day ,767,48,55,1,0,0,,221114,621114,4ff,HistoricZoneX4.Hour ,767,56,63,1,0,0,,221114,621114,4ff,HistoricZoneX4.Minute ,767,64,71,1,0,0,,221114,621114,4ff,HistoricZoneX4.Second ,767,72,79,1,0,0,,221114,621114,ff,HistoricZoneX4.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221114,621114,ff,HistoricZoneX4.Index ,767,96,151,1,0,0,,221114,621114,4ff,HistoricZoneX4.ReleaseSWversion ,767,152,159,1,0,0,,221114,621114,4ff,HistoricZoneX4.Padding character ,767,24,31,1,0,0,,221115,621115,4ff,HistoricZoneX5.Year ,767,32,39,1,0,0,,221115,621115,4ff,HistoricZoneX5.Month ,767,40,47,1,0,0,,221115,621115,4ff,HistoricZoneX5.Day ,767,48,55,1,0,0,,221115,621115,4ff,HistoricZoneX5.Hour ,767,56,63,1,0,0,,221115,621115,4ff,HistoricZoneX5.Minute ,767,64,71,1,0,0,,221115,621115,4ff,HistoricZoneX5.Second ,767,72,79,1,0,0,,221115,621115,ff,HistoricZoneX5.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221115,621115,ff,HistoricZoneX5.Index ,767,96,151,1,0,0,,221115,621115,4ff,HistoricZoneX5.ReleaseSWversion ,767,152,159,1,0,0,,221115,621115,4ff,HistoricZoneX5.Padding character ,767,24,31,1,0,0,,221116,621116,4ff,HistoricZoneX6.Year ,767,32,39,1,0,0,,221116,621116,4ff,HistoricZoneX6.Month ,767,40,47,1,0,0,,221116,621116,4ff,HistoricZoneX6.Day ,767,48,55,1,0,0,,221116,621116,4ff,HistoricZoneX6.Hour ,767,56,63,1,0,0,,221116,621116,4ff,HistoricZoneX6.Minute ,767,64,71,1,0,0,,221116,621116,4ff,HistoricZoneX6.Second ,767,72,79,1,0,0,,221116,621116,ff,HistoricZoneX6.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221116,621116,ff,HistoricZoneX6.Index ,767,96,151,1,0,0,,221116,621116,4ff,HistoricZoneX6.ReleaseSWversion ,767,152,159,1,0,0,,221116,621116,4ff,HistoricZoneX6.Padding character ,767,24,31,1,0,0,,221117,621117,4ff,HistoricZoneX7.Year ,767,32,39,1,0,0,,221117,621117,4ff,HistoricZoneX7.Month ,767,40,47,1,0,0,,221117,621117,4ff,HistoricZoneX7.Day ,767,48,55,1,0,0,,221117,621117,4ff,HistoricZoneX7.Hour ,767,56,63,1,0,0,,221117,621117,4ff,HistoricZoneX7.Minute ,767,64,71,1,0,0,,221117,621117,4ff,HistoricZoneX7.Second ,767,72,79,1,0,0,,221117,621117,ff,HistoricZoneX7.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221117,621117,ff,HistoricZoneX7.Index ,767,96,151,1,0,0,,221117,621117,4ff,HistoricZoneX7.ReleaseSWversion ,767,152,159,1,0,0,,221117,621117,4ff,HistoricZoneX7.Padding character ,767,24,31,1,0,0,,221118,621118,4ff,HistoricZoneX8.Year ,767,32,39,1,0,0,,221118,621118,4ff,HistoricZoneX8.Month ,767,40,47,1,0,0,,221118,621118,4ff,HistoricZoneX8.Day ,767,48,55,1,0,0,,221118,621118,4ff,HistoricZoneX8.Hour ,767,56,63,1,0,0,,221118,621118,4ff,HistoricZoneX8.Minute ,767,64,71,1,0,0,,221118,621118,4ff,HistoricZoneX8.Second ,767,72,79,1,0,0,,221118,621118,ff,HistoricZoneX8.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221118,621118,ff,HistoricZoneX8.Index ,767,96,151,1,0,0,,221118,621118,4ff,HistoricZoneX8.ReleaseSWversion ,767,152,159,1,0,0,,221118,621118,4ff,HistoricZoneX8.Padding character ,767,24,31,1,0,0,,221119,621119,4ff,HistoricZoneX9.Year ,767,32,39,1,0,0,,221119,621119,4ff,HistoricZoneX9.Month ,767,40,47,1,0,0,,221119,621119,4ff,HistoricZoneX9.Day ,767,48,55,1,0,0,,221119,621119,4ff,HistoricZoneX9.Hour ,767,56,63,1,0,0,,221119,621119,4ff,HistoricZoneX9.Minute ,767,64,71,1,0,0,,221119,621119,4ff,HistoricZoneX9.Second ,767,72,79,1,0,0,,221119,621119,ff,HistoricZoneX9.Status,0:Reprogramming succeed;1:Reprogramming failed;2:Reprogramming uncompleted;255:No log recorded ,767,80,95,1,0,0,,221119,621119,ff,HistoricZoneX9.Index ,767,96,151,1,0,0,,221119,621119,4ff,HistoricZoneX9.ReleaseSWversion ,767,152,159,1,0,0,,221119,621119,4ff,HistoricZoneX9.Padding character ,767,24,55,1,0,0,sec,222106,622106,1ff,Xcall_config.status_display_time ,767,56,63,1,0,0,,222106,622106,ff,Xcall_config.maximum_number_of_data_sets ,767,64,71,1,0,0,,222106,622106,ff,Xcall_config.maximum_POI_number_within_data_set ,767,72,87,1,0,0,ms,222106,622106,ff,Xcall_config.call_display_status_reaction ,767,24,223,1,0,0,,222107,622107,2ff,Connectivity configuration.URL ,767,24,24,1,0,0,,222108,622108,ff,HMI config.CFG_DSI_Settings,0:Absent;1:Present ,767,25,25,1,0,0,,222108,622108,ff,HMI config.CFG_Cluster_style_forMEX,0:Cluster 7inch;1:Cluster 10inch ,767,26,26,1,0,0,,222108,622108,ff,HMI config.AIR_FRESHNER_CF,0:Absent;1:Present ,767,27,27,1,0,0,,222108,622108,ff,HMI config.CFG_HeatedWindscreen,0:Absent;1:Present ,767,28,28,1,0,0,,222108,622108,ff,HMI config.CFG_RearClim,0:Absent;1:Present ,767,29,29,1,0,0,,222108,622108,ff,HMI config.CFG_Dualzone_Monozone,0:monozone display;1:dualzone display ,767,30,30,1,0,0,,222108,622108,ff,HMI config.CFG_Color_selection,0:Absent;1:Present ,767,31,31,1,0,0,,222108,622108,ff,HMI config.CFG_Cluster_style,0:Absent;1:Present ,767,32,33,1,0,0,,222108,622108,ff,HMI config.CFG_Seat_massage,0:without massage;1:with driver massage;2:with driver and passenger massage;3:not used ,767,34,35,1,0,0,,222108,622108,ff,HMI config.CFG_Heated_ventilated_seats,0:without heating and ventilating;1:with heating only;2:with ventilating;3:with heating and ventilating ,767,36,36,1,0,0,,222108,622108,ff,HMI config.CFG_HMD,0:Absent;1:Present ,767,37,37,1,0,0,,222108,622108,ff,HMI config.CFG_RVC_dynamic_guidelines,0:Absent;1:Present ,767,38,38,1,0,0,,222108,622108,ff,HMI config.CFG_RVC_fixed_guidelines,0:Absent;1:Present ,767,39,39,1,0,0,,222108,622108,ff,HMI config.CFG_Synchronize,0:Absent;1:Present ,767,40,40,1,0,0,,222108,622108,ff,HMI config.CFG_AQS_Histogram,0:Absent;1:Present ,767,41,41,1,0,0,,222108,622108,ff,HMI config.CFG_Fragance,0:Absent;1:Present ,767,42,42,1,0,0,,222108,622108,ff,HMI config.CFG_Ionizer,0:Absent;1:Present ,767,43,43,1,0,0,,222108,622108,ff,HMI config.CFG_FLOW_SED_ACTIVATION,0:Absent;1:Present ,767,44,44,1,0,0,,222108,622108,ff,HMI config.CFG_Memo_seat,0:Absent;1:Present ,767,45,47,1,0,0,,222108,622108,ff,HMI config.CFG_Magic_folding,0:without magic folding;1:with 1/3 - 2/3;2:with 1/3 - 2/3 and 2 seats;3:with 5 seats;4:with 7 seats;5:with 2 seats row 3 ,767,48,48,1,0,0,,222108,622108,ff,HMI config.cf_MPU_WAC_Buzzer,0:absent;1:present ,767,49,49,1,0,0,,222108,622108,ff,HMI config.CFG_ADAS_RCTA,0:Absent;1:Present ,767,50,50,1,0,0,,222108,622108,ff,HMI config.CFG_EcoMode,0:Absent;1:Present ,767,51,51,1,0,0,,222108,622108,ff,HMI config.CFG_OffBoard_consulting,0:Absent;1:Present ,767,52,52,1,0,0,,222108,622108,ff,HMI config.CFG_DimmingStrategy,0:by meter;1:by head-unit ,767,53,54,1,0,0,,222108,622108,ff,HMI config.CFG_RemoteEngineStart,0:RES not present;1:RES without additional boiler;2:RES with additional boiler;3:not used ,767,55,55,1,0,0,,222108,622108,ff,HMI config.CFG_AmbientLighting,0:Absent;1:Present ,767,56,56,1,0,0,,222108,622108,ff,HMI config.CFG_ELF,0:ELF (contract) is not required;1:ELF (contract) is required ,767,57,57,1,0,0,,222108,622108,ff,HMI config.cf_MPU_FlashersVolumeSelection,0:Absent;1:Present ,767,58,58,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AutoFrontWiper,0:Absent;1:Present ,767,59,59,1,0,0,,222108,622108,ff,HMI config.cf_MPU_RearWiper,0:Absent;1:Present ,767,60,60,1,0,0,,222108,622108,ff,HMI config.CFG_DRIVECO,0:Absent;1:Present ,767,61,63,1,0,0,,222108,622108,ff,HMI config.CFG_VehicleMode,0:ICE;1:EV;2:HEV;3:PHEV ,767,64,64,1,0,0,,222108,622108,ff,HMI config.cf_MPU_MirrorsFolding,0:Absent;1:Present ,767,65,65,1,0,0,,222108,622108,ff,HMI config.cf_MPU_WAC_APRUN,0:Absent;1:Present ,767,66,66,1,0,0,,222108,622108,ff,HMI config.cf_MPU_WAC_SilentMode,0:Absent;1:Present ,767,67,67,1,0,0,,222108,622108,ff,HMI config.cf_MPU_HandFreeLock_Unlock,0:Absent;1:Present ,767,68,68,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AutoLockUp,0:Absent;1:Present ,767,69,69,1,0,0,,222108,622108,ff,HMI config.cf_MPU_SingleDoorOpening,0:Absent;1:Present ,767,70,70,1,0,0,,222108,622108,ff,HMI config.cf_MPU_FRWiperDrop,0:Absent;1:Present ,767,71,71,1,0,0,,222108,622108,ff,HMI config.cf_MPU_MotorwayFlashersNb,0:Absent;1:Present ,767,72,72,1,0,0,,222108,622108,ff,HMI config.cf_MPU_ALS_threshold,0:Absent;1:Present ,767,73,73,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AHL_function,0:Absent;1:Present ,767,74,74,1,0,0,,222108,622108,ff,HMI config.cf_MPU_ADB,0:Absent;1:Present ,767,75,75,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AFS,0:Absent;1:Present ,767,76,76,1,0,0,,222108,622108,ff,HMI config.cf_MPU_DrivingSide,0:Absent;1:Present ,767,77,77,1,0,0,,222108,622108,ff,HMI config.cf_MPU_WGS,0:Absent;1:Present ,767,78,78,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AutoFMH,0:Absent;1:Present ,767,79,79,1,0,0,,222108,622108,ff,HMI config.cf_MPU_AutoRelock,0:Absent;1:Present ,767,80,80,1,0,0,,222108,622108,ff,HMI config.ADAS_DangerousArea,0:Absent;1:Present ,767,81,81,1,0,0,,222108,622108,ff,HMI config.ADAS_DW,0:Absent;1:Present ,767,82,82,1,0,0,,222108,622108,ff,HMI config.ADAS_UTA,0:Absent;1:Present ,767,83,83,1,0,0,,222108,622108,ff,HMI config.ADAS_SR,0:Absent;1:Present ,767,84,85,1,0,0,,222108,622108,ff,HMI config.CFG_4WD_HMI,0:no HMI;1:display only torque split HMI;2:display only clinometer HMI;3:display torque split and clinometer HMI ,767,86,87,1,0,0,,222108,622108,ff,HMI config.TPMSMMI_CF,0:TPW is NOT present & TPMS is NOT present;1:TPW is NOT present & TPMS is present;2:TPW is present & TPMS is NOT present ,767,88,88,1,0,0,,222108,622108,ff,HMI config.ADAS_PSM,0:Absent;1:Present ,767,90,91,1,0,0,,222108,622108,ff,HMI config.ADAS_LDW,0:LDW not present;1:LDW Sound;2:LDW Haptic ,767,92,92,1,0,0,,222108,622108,ff,HMI config.ADAS_LKA,0:Absent;1:Present ,767,93,93,1,0,0,,222108,622108,ff,HMI config.ADAS_OSP,0:Absent;1:Present ,767,94,95,1,0,0,,222108,622108,ff,HMI config.ADAS_AEB,0:AEB not present;1:FCW present;2:AEB present ,767,96,97,1,0,0,,222108,622108,ff,HMI config.ADAS_UPA_Visual,0:UPA not present;1:UPA Rear;2:UPA Rear/front ,767,98,98,1,0,0,,222108,622108,ff,HMI config.Display format,0:landscape;1:portrait ,767,99,100,1,0,0,,222108,622108,ff,HMI config.ADAS_UPA_Audio,0:UPA audio not present;1:UPA audio without settings;2:UPA audio with settings ,767,101,101,1,0,0,,222108,622108,ff,HMI config.ADAS_FKP,0:Absent;1:Present ,767,102,103,1,0,0,,222108,622108,ff,HMI config.CFG_ADAS_APA,0:APA not present;1:HFP present;2:HFPB present;3:APK present ,767,109,110,1,0,0,,222108,622108,ff,HMI config.ADAS_BSW,0:Not present;1:BSW Radar;2:BSW Sonar ,767,111,111,1,0,0,,222108,622108,ff,HMI config.CFG_ExtendedGrip,0:Absent;1:Present ,767,112,112,1,0,0,,222108,622108,ff,HMI config.CFG_AM,0:absent;1:Present ,767,113,113,1,0,0,,222108,622108,ff,HMI config.CFG_SPVR,0:Absent;1:Present ,767,114,115,1,0,0,,222108,622108,ff,HMI config.CFG_HMI_DATE_DISPLAY,0:absent;1:Numeric;2:Text format ,767,116,116,1,0,0,,222108,622108,ff,HMI config.CFG_SMART_INT_LIGHT,0:Absent;1:Present ,767,117,117,1,0,0,,222108,622108,ff,HMI config.TyrePressureUnit_CF,0:Bar;1:PSI ,767,118,118,1,0,0,,222108,622108,ff,HMI config.CFG_AUDIO_Speakers,0:Front speaker only;1:Rear and front speakers ,767,119,119,1,0,0,,222108,622108,ff,HMI config.Volume_popup_position,0:Top;1:Bottom ,767,120,120,1,0,0,,222108,622108,ff,HMI config.REMOTE_START_2HOURS_CF,0:Absent;1:Present ,767,121,121,1,0,0,,222108,622108,ff,HMI config.CFG_Seat_courtesy,0:Absent;1:Present ,767,122,122,1,0,0,,222108,622108,ff,HMI config.CFG_Clim,0:no clim display;1:clim display ,767,123,123,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_TTS,0:Absent;1:Present ,767,124,124,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_ECOMode,0:Absent;1:Present ,767,125,125,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_STOPANDSTART,0:Absent;1:Present ,767,126,126,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_SAILING,0:Absent;1:Present ,767,127,127,1,0,0,,222108,622108,ff,HMI config.CFG_Forgot_Phone_Popup,0:Absent;1:Present ,767,128,135,1,0,0,seconds,222108,622108,ff,HMI config.CFG_ADAS_UPA_Mute ,767,136,136,1,0,0,,222108,622108,ff,HMI config.CFG_Favorite,0:Absent;1:Present ,767,137,137,1,0,0,,222108,622108,ff,HMI config.CFG_Edit_Home,0:2 Pages;1:3 Pages ,767,138,139,1,0,0,,222108,622108,ff,HMI config.CFG_Home,0:with menu button;1:without menu buton;2:Not used;3:not used ,767,140,140,1,0,0,,222108,622108,ff,HMI config.TPMS_Autoloc_CF,0:Absent;1:Present ,767,142,143,1,0,0,,222108,622108,ff,HMI config.CFG_Easy_access,0:without easy access;1:with driver easy access;2:with driver and passenger easy access;3:not used ,767,144,144,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_Distance_wo_cons,0:Absent;1:Present ,767,145,145,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_ResetType,0:Absent;1:Present ,767,146,146,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_EcoNav,0:Absent;1:Present ,767,147,147,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_CMI,0:Absent;1:Present ,767,148,148,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_RangeIncrease,0:Absent;1:Present ,767,149,149,1,0,0,,222108,622108,ff,HMI config.CFG_DRECO_Distance_wo_accel,0:Absent;1:Present ,767,150,150,1,0,0,,222108,622108,ff,HMI config.CFG_GSI_CONTACT_BREAKER_BUZZER_RST,0:Absent;1:Present ,767,151,151,1,0,0,,222108,622108,ff,HMI config.CFG_EnergyInfo,0:Absent;1:Present ,767,152,159,1,0,0,,222108,622108,ff,HMI config.CFG_ELF_NOTIF_NUMBER ,767,160,160,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL4,0:Absent;1:Present ,767,161,161,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL3,0:Absent;1:Present ,767,162,162,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL2,0:Absent;1:Present ,767,163,163,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL1,0:Absent;1:Present ,767,164,164,1,0,0,,222108,622108,ff,HMI config.CFG_AL_AREA3,0:Absent;1:Present ,767,165,165,1,0,0,,222108,622108,ff,HMI config.CFG_AL_AREA2,0:Absent;1:Present ,767,166,166,1,0,0,,222108,622108,ff,HMI config.CFG_AL_AREA1,0:Absent;1:Present ,767,167,167,1,0,0,,222108,622108,ff,HMI config.CFG_AL_Dynamic Pattern,0:Absent;1:Present ,767,168,168,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL12,0:Absent;1:Present ,767,169,169,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL11,0:Absent;1:Present ,767,170,170,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL10,0:Absent;1:Present ,767,171,171,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL9,0:Absent;1:Present ,767,172,172,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL8,0:Absent;1:Present ,767,173,173,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL7,0:Absent;1:Present ,767,174,174,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL6,0:Absent;1:Present ,767,175,175,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL5,0:Absent;1:Present ,767,176,176,1,0,0,,222108,622108,ff,HMI config.CFG_Dual_Sync_Clim,0:Dual Mode is Activated;1:Sync Mode is Activated ,767,177,177,1,0,0,,222108,622108,ff,HMI config.CFG_AQS_Clim,0:absent;1:present ,767,178,179,1,0,0,,222108,622108,ff,HMI config.CFG_User_Profile,0:User profile not present;1:Not connected user profile present;2:Reserved (connected user profile present);3:not used ,767,180,180,1,0,0,,222108,622108,ff,HMI config.CFG_FLOW_PHEV_ACTIVATION,0:absent;1:present ,767,181,181,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL15,0:Absent;1:Present ,767,182,182,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL14,0:Absent;1:Present ,767,183,183,1,0,0,,222108,622108,ff,HMI config.CFG_AL_COL13,0:Absent;1:Present ,767,184,184,1,0,0,,222108,622108,ff,HMI config.REMOTE_FUEL_BURNER_CF,0:Absent;1:Present ,767,185,185,1,0,0,,222108,622108,ff,HMI config.REMOTE_START_CF,0:Absent;1:Present ,767,186,186,1,0,0,,222108,622108,ff,HMI config.CGF_FLOW_EV_ACTIVATION,0:Absent;1:Present ,767,187,187,1,0,0,,222108,622108,ff,HMI config.CFG_Heated_Steering_Wheel_Clim,0:absent;1:present ,767,188,191,1,0,0,,222108,622108,ff,HMI config.Welcome Sequence,0:Without welcome sequence;1:Welcome sequence 1;2:Welcome sequence 2;3:Welcome sequence 3;4:Welcome sequence 4;5:Welcome sequence 5;6:Welcome sequence 6;7:Welcome sequence 7;8:Welcome sequence 8 ,767,24,29,1,0,0,,222109,622109,ff,Sound volume config.MaxVolumeStartup ,767,32,37,1,0,0,,222109,622109,ff,Sound volume config.Ecall_volume ,767,44,47,1,0,0,,222109,622109,ff,Sound volume config.Minimum_volume_set_by_user ,767,48,53,1,0,0,,222109,622109,ff,Sound volume config.Welcome_sequence_volume ,767,56,60,1,0,0,,222109,622109,1ff,Sound volume config.ParkingAids_UPA_gain ,767,64,68,1,0,0,,222109,622109,1ff,Sound volume config.ParkingAids_HFP_gain ,767,72,76,1,0,0,,222109,622109,1ff,Sound volume config.ParkingAids_PSM_gain ,767,80,84,1,0,0,,222109,622109,1ff,Sound volume config.LateralADAS_LDW_gain ,767,88,92,1,0,0,,222109,622109,1ff,Sound volume config.LateralADAS_LKA_gain ,767,96,99,1,0,0,,222109,622109,ff,Sound volume config.ParkingAids_UPA_default_UserVolume,0:OFF;1:Very low;2:Low;3:Medium;4:High;5:Very High ,767,100,103,1,0,0,,222109,622109,ff,Sound volume config.ParkingAids_HFP_default_UserVolume,0:OFF;1:Very low;2:Low;3:Medium;4:High;5:Very High ,767,104,107,1,0,0,,222109,622109,ff,Sound volume config.ParkingAids_PSM_default_UserVolume,0:OFF;1:Very low;2:Low;3:Medium;4:High;5:Very High ,767,108,111,1,0,0,,222109,622109,ff,Sound volume config.LateralADAS_LDW_default_UserVolume,0:OFF;1:Very low;2:Low;3:Medium;4:High;5:Very High ,767,112,115,1,0,0,,222109,622109,ff,Sound volume config.LateralADAS_LKA_default_UserVolume,0:OFF;1:Very low;2:Low;3:Medium;4:High;5:Very High ,767,120,124,1,12,0,,222109,622109,ff,Sound volume config.Beep_Clic_Level ,767,125,125,1,0,0,,222109,622109,ff,Sound volume config.Loudness,0:Disabled;1:Enabled ,767,128,132,1,9,0,dB,222109,622109,ff,Sound volume config.synth_voice_tonality_bass ,767,136,140,1,9,0,dB,222109,622109,ff,Sound volume config.synth_voice_tonality_medium ,767,144,148,1,9,0,dB,222109,622109,ff,Sound volume config.synth_voice_tonality_treble ,767,152,157,1,0,0,dB,222109,622109,ff,Sound volume config.Cluster_sound_level ,767,24,87,1,0,0,,222110,622110,4ff,HMI config part2.CFG_Displayable_Sys_Lang ,767,88,88,1,0,0,,222110,622110,ff,HMI config part2.CFG_Video,0:Without;1:With ,767,89,89,1,0,0,,222110,622110,ff,HMI config part2.CFG_Messaging,0:Without;1:With ,767,90,90,1,0,0,,222110,622110,ff,HMI config part2.CFG_AQI,0:Without;1:With ,767,91,91,1,0,0,,222110,622110,ff,HMI config part2.CFG_HMI_Temp_PreCond,0:Without;1:With ,767,92,92,1,0,0,,222110,622110,ff,HMI config part2.HEV_Comfort_Battery,0:Without;1:With ,767,93,93,1,0,0,,222110,622110,ff,HMI config part2.CFG_FLOW_HEV_ACTIVATION,0:Without;1:With ,767,94,94,1,0,0,,222110,622110,ff,HMI config part2.CFG_Distribution,0:Without;1:With ,767,95,95,1,0,0,,222110,622110,ff,HMI config part2.CFG_Blower_Setting,0:Without;1:With ,767,100,100,1,0,0,,222110,622110,ff,HMI config part2.CFG_PictureViewer,0:Without;1:With ,767,101,101,1,0,0,,222110,622110,ff,HMI config part2.CFG_PrivacyMode,0:Without;1:With ,767,102,102,1,0,0,,222110,622110,ff,HMI config part2.CFG_Animation,0:Without;1:With ,767,103,103,1,0,0,,222110,622110,ff,HMI config part2.CFG_InfotainmentPicture,0:Without;1:With ,767,24,24,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Present,0:Absent;1:Present ,767,25,27,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Mode_Def,0:Eco;1:Comfort;2:Normal;3:Dynamic;4:Perso ,767,28,30,1,0,0,,222123,622123,ff,MEX configuration.CF_MexSys_Mode,0:SysMode table 1;1:SysMode table 2;2:SysMode table 3;3:SysMode table 4;4:SysMode table 5;5:SysMode table 6;6:SysMode table 7;7:SysMode table 8 ,767,31,31,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ACC,0:Absent;1:Present ,767,32,32,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_EPS,0:Absent;1:Present ,767,33,33,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ADB,0:Absent;1:Present ,767,34,34,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DBL,0:Absent;1:Present ,767,35,37,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Restart,0:Previous;1:Normal;2:Eco;3:Normal if dynamic;4:Eco if dynamic ,767,38,38,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Wsequence,0:Absent;1:Present ,767,39,39,1,0,0,,222123,622123,ff,MEX configuration.CF_RangeSaver,0:absent;1:present ,767,40,40,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DUAL,0:Absent;1:Present ,767,41,41,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_VADA,0:Absent;1:Present ,767,42,42,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_4WAS,0:Absent;1:Present ,767,43,43,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_VDC,0:Absent;1:Present ,767,44,44,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ShiftLightSoundAlert,0:Absent;1:Present ,767,45,45,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Pedal,0:Absent;1:Present ,767,46,46,1,0,0,,222123,622123,ff,MEX configuration.CF_DynamicDriveSystem,0:absent;1:present ,767,47,47,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Heel_ToeShifting,0:Absent;1:Present ,767,48,52,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_RAC ,767,53,53,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ThrottleResponse,0:Absent;1:Present ,767,54,54,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_IDM,0:Absent;1:Present ,767,55,55,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_AT,0:Absent;1:Present ,767,56,63,1,0,0,km/h,222123,622123,ff,MEX configuration.CF_Max_Speed ,767,64,65,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_ECO,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,66,67,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_COM,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,68,69,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_NOM,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,70,71,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_DYN,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,72,73,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_PER,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,74,75,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALACT_RAC,0:No change;1:Activation Request;2:Deactivation Request;3:Reserved ,767,76,77,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_RAC,0:No change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,78,79,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_RAC,0:No change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,80,81,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_ECO,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,82,83,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_COM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,84,85,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_NOM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,86,87,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_DYN,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,88,89,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA1_PER,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,90,91,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_ECO,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,92,93,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_COM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,94,95,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_NOM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,96,97,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_DYN,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,98,99,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA2_PER,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,100,101,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_ECO,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,102,103,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_COM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,104,105,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_NOM,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,106,107,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_DYN,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,108,109,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_PER,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,110,111,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALA3_RAC,0:No Change;1:AmbientLighting Area requested;2:AmbientLighting not requested;3:Reserved ,767,112,116,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_ECO ,767,117,117,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_GearShiftIndicator,0:Absent;1:Present ,767,118,118,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_SynchroRevs,0:Absent;1:Present ,767,119,119,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_RegBrake,0:Absent;1:Present ,767,120,124,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_COM ,767,125,125,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_AmbExhaust,0:Absent;1:Present ,767,126,126,1,0,0,,222123,622123,ff,MEX configuration.CF_COMFORT,0:Absent;1:Present ,767,127,127,1,0,0,,222123,622123,ff,MEX configuration.CF_NORMAL,0:Absent;1:Present ,767,128,132,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_NOM ,767,133,133,1,0,0,,222123,622123,ff,MEX configuration.CF_ECO,0:Absent;1:Present ,767,134,134,1,0,0,,222123,622123,ff,MEX configuration.CF_SPORT,0:Absent;1:Present ,767,135,135,1,0,0,,222123,622123,ff,MEX configuration.CF_RACE,0:Absent;1:Present ,767,136,140,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_DYN ,767,141,141,1,0,0,,222123,622123,ff,MEX configuration.CF_Zen,0:Absent;1:Present ,767,142,142,1,0,0,,222123,622123,ff,MEX configuration.CF_ZEVCityDriving,0:Absent;1:Present ,767,143,143,1,0,0,,222123,622123,ff,MEX configuration.CF_ModeAtEngineStart,0:Not activated;1:Activated ,767,144,148,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALDINT_PER ,767,152,156,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_ECO,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,160,164,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_COM,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,168,172,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_NOM,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,176,180,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_DYN,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,184,188,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_PER,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,192,199,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_ECO ,767,200,207,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_COM ,767,208,215,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_NOM ,767,216,223,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_DYN ,767,224,231,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_PER ,767,232,233,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_ECO,0:No Change;1:OFF;2:ON;3:Reserved ,767,234,235,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_COM,0:No Change;1:OFF;2:ON;3:Reserved ,767,236,237,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_NOM,0:No Change;1:OFF;2:ON;3:Reserved ,767,238,239,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_DYN,0:No Change;1:OFF;2:ON;3:Reserved ,767,240,241,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_PER,0:No Change;1:OFF;2:ON;3:Reserved ,767,242,243,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSACT_RAC,0:No Change;1:OFF;2:ON;3:Reserved ,767,244,245,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_RAC,0:No Change;1:Program 1;2:Program 2;3:Program 3 ,767,246,247,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_RAC,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,248,249,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_ECO,0:No change;1:Program 1;2:Program 2;3:Program 3 ,767,250,251,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_COM,0:No change;1:Program 1;2:Program 2;3:Program 3 ,767,252,253,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_NOM,0:No change;1:Program 1;2:Program 2;3:Program 3 ,767,254,255,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_DYN,0:No change;1:Program 1;2:Program 2;3:Program 3 ,767,256,257,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSPRG_PER,0:No change;1:Program 1;2:Program 2;3:Program 3 ,767,258,260,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_ECO,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,261,263,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_COM,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,264,266,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_NOM,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,267,269,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_DYN,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,272,274,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_PER,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,275,277,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSSPD_RAC,0:No Change;1:Velocity 1;2:Velocity 2;3:Velocity 3;4:Velocity 4;5:Velocity 5;6:Reserved1;7:Reserved2 ,767,280,282,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_ECO,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,284,286,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_RAC,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,287,287,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Engine,0:Absent;1:Present ,767,288,290,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_COM,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,291,295,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_ALC_RAC,0:No Change;1:Color 1;2:Color 2;3:Color 3;4:Color 4;5:Color 5;6:Color 6;7:Color 7;8:Color 8;9:Color 9;10:Color 10;11:Color 11;12:Color 12;13:Color 13;14:Color 14;15:Color 15;16:Color 16 ,767,296,298,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_NOM,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,299,301,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_DYN,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,304,306,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DMSINT_PER,0:No change;1:Intensity 1;2:Intensity 2;3:Intensity 3;4:Intensity 4;5:Intensity 5;6:Reserved1;7:Reserved2 ,767,307,309,1,0,0,,222123,622123,ff,MEX configuration.CF_MexMode_MMI,0:Mode table 1;1:Mode table 2;2:Mode table 3;3:Mode table 4;4:Mode table 5;5:Mode table 6;6:Mode table 7;7:Mode table 8 ,767,310,311,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_PER,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,312,312,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Comb1,0:Deactivated;1:Activated ,767,313,313,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Comb2,0:Deactivated;1:Activated ,767,314,314,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_Comb3,0:Deactivated;1:Activated ,767,315,317,1,0,0,,222123,622123,ff,MEX configuration.CF_Proposed_MexMode,0:Mode table 1;1:Mode table 2;2:Mode table 3;3:Mode table 4;4:Mode table 5;5:Mode table 6;6:Mode table 7;7:Mode table 8 ,767,318,318,1,0,0,,222123,622123,ff,MEX configuration.CF_HMI_sMassage,0:Absent;1:Present ,767,319,319,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_SeatPosition,0:Absent;1:Present ,767,320,320,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_S&S,0:Absent;1:Present ,767,321,321,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_SAILING,0:Absent;1:Present ,767,322,322,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_VADADUAL,0:Absent;1:Present ,767,323,323,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_LC,0:Absent;1:Present ,767,324,324,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_CREEPING,0:Absent;1:Present ,767,325,325,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_HVAC,0:Absent;1:Present ,767,326,326,1,0,0,,222123,622123,ff,MEX configuration.CF_HMI_ALC,0:Absent;1:Present ,767,327,327,1,0,0,,222123,622123,ff,MEX configuration.CF_HMI_DspC,0:Absent;1:Present ,767,328,335,5,0,0,%,222123,622123,ff,MEX configuration.CF_MEX_ALNINT_RAC ,767,336,337,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_COM,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,338,339,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_DYN,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,340,341,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_ECO,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,342,343,1,0,0,,222123,622123,ff,MEX configuration.CF_MEX_DYNPAT_NOM,0:No request;1:Activation Request;2:Deactivation Request;3:Reset request ,767,344,350,5,0,0,,222123,622123,ff,MEX configuration.CF_Temp_HybTract ,767,24,24,1,0,0,,222301,622301,ff,Lock out development configuration.Navigation destination input restriction,0:Absent;1:Present ,767,25,25,1,0,0,,222301,622301,ff,Lock out development configuration.Phone dial input restriction,0:Absent;1:Present ,767,26,26,1,0,0,,222301,622301,ff,Lock out development configuration.Text input restriction,0:Absent;1:Present ,767,27,27,1,0,0,,222301,622301,ff,Lock out development configuration.System user handbook restriction,0:Absent;1:Present ,767,28,28,1,0,0,,222301,622301,ff,Lock out development configuration.Features tutorials restriction,0:Absent;1:Present ,767,29,29,1,0,0,,222301,622301,ff,Lock out development configuration.SMS text input restriction,0:Absent;1:Present ,767,30,30,1,0,0,,222301,622301,ff,Lock out development configuration.Picture slideshow restriction,0:Absent;1:Present ,767,31,31,1,0,0,,222301,622301,ff,Lock out development configuration.Video playing restriction,0:Absent;1:Present ,767,32,32,1,0,0,,222301,622301,ff,Lock out development configuration.Smooth map scrool operation restriction,0:Absent;1:Present ,767,33,33,1,0,0,,222301,622301,ff,Lock out development configuration.One by one line operation nonMusic list scroll restriction,0:Absent;1:Present ,767,34,34,1,0,0,,222301,622301,ff,Lock out development configuration.Stationary picture indiction restriction,0:Absent;1:Present ,767,35,35,1,0,0,,222301,622301,ff,Lock out development configuration.HMI animations restriction,0:Absent;1:Present ,767,36,36,1,0,0,,222301,622301,ff,Lock out development configuration.Displayed text lenght restriction,0:Absent;1:Present ,767,37,37,1,0,0,,222301,622301,ff,Lock out development configuration.Service activation restriction,0:Absent;1:Present ,767,38,38,1,0,0,,222301,622301,ff,Lock out development configuration.General HMI restriction,0:Absent;1:Present ,767,39,39,1,0,0,,222301,622301,ff,Lock out development configuration.Music/radio cover dsplay restriction,0:Absent;1:Present ,767,40,40,1,0,0,,222301,622301,ff,Lock out development configuration.Nissan 5-operation count restriction,0:Absent;1:Present ,767,41,41,1,0,0,,222301,622301,ff,Lock out development configuration.Picture/text background display restriction,0:Absent;1:Present ,767,42,42,1,0,0,,222301,622301,ff,Lock out development configuration.Map rotation restriction,0:Absent;1:Present ,767,43,43,1,0,0,,222301,622301,ff,Lock out development configuration.Camera settings restriction,0:Absent;1:Present ,767,44,44,1,0,0,,222301,622301,ff,Lock out development configuration.Home menu edition restriction,0:Absent;1:Present ,767,45,45,1,0,0,,222301,622301,ff,Lock out development configuration.User profile restriction,0:Absent;1:Present ,767,46,46,1,0,0,,222301,622301,ff,Lock out development configuration.Pinch in/out operation restriction,0:Absent;1:Present ,767,47,47,1,0,0,,222301,622301,ff,Lock out development configuration.Dragging operation restriction,0:Absent;1:Present ,767,49,49,1,0,0,,222301,622301,ff,Lock out development configuration.One by one line operation Music list scroll restriction,0:Absent;1:Present ,767,50,50,1,0,0,,222301,622301,ff,Lock out development configuration.SXM Stock,0:Absent;1:Present ,767,51,51,1,0,0,,222301,622301,ff,Lock out development configuration.System update restriction,0:Absent;1:Present ,767,52,52,1,0,0,,222301,622301,ff,Lock out development configuration.Audio play automatically restriction,0:Absent;1:Present ,767,53,53,1,0,0,,222301,622301,ff,Lock out development configuration.Renault 8-operation count restriction,0:Absent;1:Present ,767,54,54,1,0,0,,222301,622301,ff,Lock out development configuration.Renault 5-operation count restriction,0:Absent;1:Present ,767,55,55,1,0,0,,222301,622301,ff,Lock out development configuration.Nissan 8-operation count restriction,0:Absent;1:Present ,767,24,183,1,0,0,,223000,623000,2ff,BluetoothDevice.name1 ,767,184,231,1,0,0,,223000,623000,4ff,BluetoothDevice.address1 ,767,232,391,1,0,0,,223000,623000,2ff,BluetoothDevice.name2 ,767,392,439,1,0,0,,223000,623000,4ff,BluetoothDevice.address2 ,767,440,599,1,0,0,,223000,623000,2ff,BluetoothDevice.name3 ,767,600,647,1,0,0,,223000,623000,4ff,BluetoothDevice.address3 ,767,648,807,1,0,0,,223000,623000,2ff,BluetoothDevice.name4 ,767,808,855,1,0,0,,223000,623000,4ff,BluetoothDevice.address4 ,767,856,1015,1,0,0,,223000,623000,2ff,BluetoothDevice.name5 ,767,1016,1063,1,0,0,,223000,623000,4ff,BluetoothDevice.address5 ,767,24,31,1,0,0,,223001,623001,4ff,ANT1.current level Field strength on antenna 1 ,767,32,39,1,0,0,,223001,623001,4ff,ANT1.current Multipath level ,767,40,47,1,0,0,,223001,623001,4ff,ANT1.current Noise level ,767,48,87,1,0,0,,223001,623001,4ff,ANT1.current Frequency value ,767,88,95,1,0,0,,223001,623001,ff,ANT1.Band info,1:FM;2:AM ,767,24,31,1,0,0,,223002,623002,4ff,ANT2.current level Field strength on antenna 2 ,767,32,39,1,0,0,,223002,623002,4ff,ANT2.current Multipath level (0-F) if FM ,767,40,47,1,0,0,,223002,623002,4ff,ANT2.current Noise level (0-F) if FM ,767,48,87,1,0,0,,223002,623002,4ff,ANT2.current Frequency value ,767,88,95,1,0,0,,223002,623002,ff,ANT2.Band info,1:FM ,767,24,31,1,0,0,,223003,623003,4ff,ANT3.Antenna field RSSI [dBm] ,767,32,47,1,0,0,,223003,623003,4ff,ANT3.FIC_BER ,767,48,63,1,0,0,,223003,623003,4ff,ANT3.MSC_BER ,767,64,103,1,0,0,,223003,623003,4ff,ANT3.current Channel Number ,767,104,167,1,0,0,,223003,623003,2ff,ANT3.Service short Name ,767,168,183,1,0,0,,223003,623003,4ff,ANT3.EnsembleID ,767,184,215,1,0,0,,223003,623003,4ff,ANT3.ServiceID ,767,216,231,1,0,0,,223003,623003,4ff,ANT3.CompID ,767,232,239,1,0,0,,223003,623003,ff,ANT3.Band Info,3:DAB+;4:DAB;5:DMB-A;6:DMB-BSAC ,767,24,24,1,0,0,,223004,623004,ff,GPS.Reception_status,0:No satellite;1:At least one satellite ,767,28,31,1,0,0,,223004,623004,ff,GPS.Number_of_satellites ,767,24,31,1,0,0,,223005,623005,ff,CD_Insertion,0:No CD;1:1 CD;255:No available information ,767,24,47,1,0,0,,227001,627001,4ff,BT_HW_identifier ,767,24,47,1,0,0,,227002,627002,4ff,BT_SW_identifier ,767,24,71,1,0,0,,227008,627008,4ff,BT_ECU_address ,767,24,71,1,0,0,,227009,627009,4ff,ECU Wifi address ,767,24,71,1,0,0,,228001,628001,4ff,BluetoothRSSI.Address ,767,72,79,1,127,0,,228001,628001,ff,BluetoothRSSI.Indicator ,767,80,87,1,0,0,,228001,628001,ff,BluetoothRSSI.LinkQuality ,767,24,31,1,0,0,,229000,629000,ff,CDejection,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229001,629001,ff,Tuner,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229002,629002,ff,Loudspeaker,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229003,629003,ff,Microphone,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229005,629005,ff,Graphic display test,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229006,629006,ff,Rear Camera Activation,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229007,629007,ff,Rear Camera Configuration,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229009,629009,ff,System ON output command,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,22900A,62900A,ff,IO.Tweeter_result,0:In progress;1:Done and OK;2:Done and NOK ,767,24,31,1,0,0,,22900B,62900B,ff,IO.Speaker_result,0:In progress;1:Done and OK;2:Done and NOK ,767,24,31,1,0,0,,229010,629010,ff,Touch controller reset command,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,31,1,0,0,,229012,629012,ff,Parametric guidelines command,0:Control in progress;1:Control complete and OK;2:Control complete and NOK ,767,24,32759,1,0,0,,22D000,62D000,4ff,Phone_EC/NR_(NBS) ,767,24,32759,1,0,0,,22D100,62D100,4ff,Phone_EC/NR_(WBS) ,767,24,32759,1,0,0,,22D200,62D200,4ff,VR_Parameter_(Nuance) ,767,24,32759,1,0,0,,22D300,62D300,4ff,CarPlay_Phone_EC/NR_(NBS) ,767,24,32759,1,0,0,,22D400,62D400,4ff,CarPlay_Phone_EC/NR_(WBS) ,767,24,32759,1,0,0,,22D500,62D500,4ff,CarPlay_Facetime_EC/NR_(WBS) ,767,24,32759,1,0,0,,22D600,62D600,4ff,Acoustic_Parameter_(Arkamys) ,767,24,28,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Destination,0:US;1:CAN;2:MEX;3:UK;4:TKY;5:RUS;6:other EUR;7:PRC;8:TWN;9:HKG/Macau;10:GCC;11:EGP;12:ASR/NZE;13:BRA;14:AGT;15:other LAC;16:SAF;17:THI;18:SGP;19:MLY;20:BRN;21:INN;22:VNM;23:PHL;24:IND;25:JPN;26:KOR;27:other GOM;28:ISR ,767,32,47,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Vehicle_Type,0:B07;1:B10;2:B52;3:BBA;4:BFB;5:BFJ;6:BJA;7:DZC;8:FFK;9:FJK;10:GJA;11:HFE;12:HHA;13:HJA;14:HJB;15:HJD;16:HJE;17:HZG;18:HZH;19:HZJ;20:HZK;21:J92;22:JFA;23:JFC;24:KFB;25:KFD;26:KFK;27:KJK;28:L52;29:LFD;30:LFF;31:LFJ;32:LJC;33:RBC;34:RFA;35:RZK;36:UJD;37:C07;38:H79;39:HBC;40:HZC;41:LBC;48:LJH;49:LJL;580:02D (L02D);581:02E (B02E);582:02F (P02F);3354:GD1 (GD1A);3411:D53 (D53H);4678:12F (L12F);4685:12M (L12M);4688:12P (B12P);4929:13A (P13A);8514:21B (L21B);12882:32R (P32R);12883:32S (P32S);12885:32U (J32U);16973:42M (P42M);16974:42N (L42N);16976:42P (L42P);16978:42R (P42R);20065:N61 (N61G);20081:N71 (N71A);20577:P61 (P61G);20593:P71 (P71A);21320:L53 (L53H);21323:53K (L53K);21856:U60;24641:60A (H60A);24903:61G (P61G);24908:61L (H61L) ,767,48,63,1,0,0,kg,22DAB0,62DAB0,ff,Vehicle_Information.Weight_of_vehicle ,767,64,79,1,0,0,mm,22DAB0,62DAB0,ff,Vehicle_Information.Width_of_vehicle ,767,80,95,1,0,0,mm,22DAB0,62DAB0,ff,Vehicle_Information.Height_of_vehicle ,767,96,111,1,0,0,mm,22DAB0,62DAB0,ff,Vehicle_Information.Length_of_vehicle ,767,112,119,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Vehicle-body_shape,0:Default/ Not use;50:Convertible;65:Sedan 2 Door;66:Sedan 4 Door;67:Sedan 4 Door(Wide);69:H/B 2 Door;70:H/B 4 Door;71:Coupe 2 Door;72:Coupe T Bar;73:Wagon 4 Door (Wide);75:H/T 2 Door;76:H/T 2 Door(HighRoof);77:H/T 4 Door;78:H/T 4 Door(Wide);83:Wagon 2 Door;84:Wagon 4 Door(HighRoof);85:Wagon 4 Door(Wide);87:Van 2 Door;89:Van 4 Door;90:Van 4 Door(HighRoof) ,767,123,124,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.TPMS,0:OFF;1:ON (without EUR Regulation);2:ON (with EUR Regulation);3:OFF(with V-CAN Communication) ,767,125,126,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Driving_type,0:Front;1:Rear;2:4WD ,767,127,127,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Steering_position,0:LHD;1:RHD ,767,131,132,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Petrol_type,0:NA;1:Regular;2:Premium;3:Non Petrol ,767,133,135,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Fuel_type,0:Petrol;1:Diesel;2:Hybrid(Diesel);3:Hybrid(Petrol);4:Electricity;5:Plug-in Hybrid ,767,136,136,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.VCAN-MCAN_Gateway_for_ANC/ASC,0:OFF;1:ON ,767,137,139,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Type_of_meter,0:Nissan Type 1;1:Renault V_CAN;2:Renault V_CAN/M_CAN;3:GD1A Type;4:Mitsubishi ,767,141,143,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.PowerPlatform,0:Default;1:Auto_ACC without M-CAN (Nissan CMFB);2:Auto_ACC with M-CAN (Nissan CMFC/D);3:ACC with V-CAN wake-up (Nissan other vehicles);4:V-CAN wake-up C1A (Renault C1A);5:V-CAN wake-up T4VS (Renault T4VS);6:ACC of current vehicle (Reference);7:Auto_ACC with V-CAN (Nissan C1A) ,767,144,151,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.CAN_diversity,0:Slot 0 (Default);1:Slot 1 (C1A);2:Slot 2 (C1R);3:Slot 3 (T4vs);4:Slot 4 (G1);5:Slot 5 (C1N);6:Slot 6 (Old Nissan cars OR Nissan EV cars);7:Slot7 (C1A HS) ,767,152,152,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.CAN_activation_C1A,0:Nissan message set;1:Renault message set ,767,153,155,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.IPA/HFP,0:Not present;1:IPA;2:FAP;3:HFP (Renault) ,767,156,156,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Intelligent_speed_assist,0:OFF;1:ON ,767,157,159,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Steering_SW,0:None (No steering wheel controls available.);1:MCAN;2:Hardwire P42M resistor set;3:Hardwire P32RS/L42P resistor set;4:RVLV 5 contacts;5:RVLV 4 contacts;6:VCAN;7:Daimler version ,767,161,161,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Traffic_sign_recognition,0:Without;1:With ,767,162,164,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Microphone,0:None;1:1 MIC (Renault);2:BFM2;3:BFM3(HDM);4:2 MIC (Renault) ,767,165,167,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.RCS_(Rear_Armrest_Switch),0:Without;1:With(legacy HVAC&AUDIO);2:With(legacy AUDIO);3:With(A-IVI) ,767,168,168,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.ETC2.0,0:Without;1:With ,767,169,170,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.External_CD_drive,0:Without;1:With;2:Auto ,767,173,175,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.IT-Commander_/_Central_Switch,0:Without;1:With (Nissan Type1);2:With (Nissan Type2);3:With (Renault Type1) ,767,177,179,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.TCU,0:Without TCU (Not activate USB DTC detection nor MCAN communication);1:With eCall (Not activate USB DTC detection but activate MCAN communication);2:Without TCU or With eCall (Use MCAN auto-configuration. Not activate USB DTC detection even if TCU is auto-configured);5:With TCU (Activate USB DTC detection and MCAN communication);6:Without TCU or with TCU (Use MCAN auto-configuration. Activate USB DTC detection if TCU is auto-configured) ,767,180,181,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.RSE,0:Without;1:With;2:Auto ,767,182,183,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Media_Player,0:Without;1:With;2:Auto ,767,187,189,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.HEV_Shape_of_body,0:No body shape;1:Sedan;2:SUV;3:Wagon;4:SUV2 ,767,190,191,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.EV_HVAC,0:None;1:EV X12G Type ,767,192,207,.001,0,3,,22DAB0,62DAB0,ff,Vehicle_Information.Motor_efficiency ,767,208,223,.001,0,3,,22DAB0,62DAB0,ff,Vehicle_Information.Reduction_gear_efficiency ,767,224,239,.001,0,3,,22DAB0,62DAB0,ff,Vehicle_Information.Cd_value ,767,240,247,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Charging cable - Connector,0:IEC 62196-2 Type 1 Connector;1:IEC 62196-2 Type 2 Connector;2:China Specific (AC Charging) GBT 20234.2;3:China Specific (DC Charging) GBT 20234.3;4:Chademo;5:IEC 62196-3 type 2 connector CCS (Combo 2);6:SAE J1772 CCS (combo 1);7:not present ,767,248,255,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Charging cable - Spot side Plug,0:Standard Household;1:IEC 62196-2 Type -2;2:IEC 62196-2 Type -3;3:309-Single Phase-Industrial;4:China Infrastructure (AC Charging);5:Korea specific EVSE Plug;6:Not present ,767,256,263,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Vehicle Inlet,0:IEC 62196-2 Type 1 Inlet;1:IEC 62196-2 Type 2 Inlet;2:China Specific (AC Charging) GBT 20234.2;3:China Specific (DC Charging) GBT 20234.3;4:Chademo;5:IEC 62196-3 type 2 inlet CCS (Combo 2);6:SAE J1772 CCS (combo 1);7:Combo 1 + Type 2;8:Chademo + Combo2;9:China specific AC + China specific DC;10:Chademo + Combo 1;11:Combo 2 + Type 1;12:China Specific AC + Chademo;13:China specific AC + Combo 2;14:Combo 1 + China Specific AC;15:not present ,767,264,265,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Motor maximum regenerative power,0:50;1:35 ,767,266,267,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.The maximum motor output power,0:80;1:110;2:180 ,767,268,271,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.CNF_CHG_FACTYPE,0:Standard/Normal Charge;1:Accelerated Charge;2:Fast Charge;3:Quick drop (Battery Exchange);4:Quick drop (DC);5:not present ,767,279,279,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.BlowerReductionRequest,0:Disabled;1:Enabled ,767,280,280,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Inductive charger,0:Without;1:With ,767,281,281,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.HUD,0:Without;1:With ,767,282,284,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.RADIO SATELLITE SWITCH,0:Version 1;1:Version 2;2:Version 3;3:Version 4;4:Version 5 ,767,287,287,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Ethernet interface,0:Without;1:With ,767,288,289,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Remote_Park_function,0:Off;1:Type 1;2:Type 2;3:Type 3 ,767,290,291,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Learning_Park_function,0:Off;1:Type 1;2:Type 2;3:Type 3 ,767,292,292,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Navi_available,0:NonNavi;1:Navi ,767,293,293,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.HUD_setting,0:OFF;1:ON ,767,294,295,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Fuel_consumption_info,0:OFF;1:ON (Display Bar graph from V-CAN);2:ON (Display Numeric number from V-CAN));3:Reserved ,767,299,299,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Smart charging,0:absent;1:Present ,767,301,301,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Meter_setting_icon,0:Without (IT-System shall not show Meter Setting ICON.);1:With (IT-System shall show Meter Setting ICON.) ,767,302,303,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Transmission_type,0:Unknown;1:AT;2:CVT;3:MT ,767,304,311,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Charging cable grouping,0:Group 1;1:Group 2;2:Group 3;3:Group 4;4:Group 5;5:Group 6;6:Rest of the world - Group 1 + Group 2 + Group 4;7:France specific - Group 1 + Group 2 + Group 3 + Group 4;8:China specific - Group 1 + Group 5;9:Not present ,767,312,319,1,0,0,minutes,22DAB0,62DAB0,ff,Vehicle_Information.Unballast warning time ,767,321,321,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Unballast_counter,0:absent;1:Present ,767,322,327,1,0,0,minutes,22DAB0,62DAB0,ff,Vehicle_Information.Min time before unballast ,767,328,332,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Color ,767,336,343,1,-100,0,cm,22DAB0,62DAB0,ff,Vehicle_Information.DynamicLenght ,767,344,344,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Warning Text Pos,0:Bottom;1:Top ,767,345,351,1,0,0,cm,22DAB0,62DAB0,1ff,Vehicle_Information.TuningDeltaXFarLeftDyn ,767,352,352,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.RearView Activation,0:Off;1:On ,767,353,359,1,0,0,cm,22DAB0,62DAB0,1ff,Vehicle_Information.TuningDeltaXFarRightDyn ,767,360,360,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Additional RVC configuration items,0:not taken in account;1:taken in account ,767,361,367,1,0,0,%,22DAB0,62DAB0,ff,Vehicle_Information.Crop-Up ,767,369,375,1,0,0,%,22DAB0,62DAB0,ff,Vehicle_Information.Crop-Down ,767,377,383,1,0,0,%,22DAB0,62DAB0,ff,Vehicle_Information.Crop-Left ,767,385,391,1,0,0,%,22DAB0,62DAB0,ff,Vehicle_Information.Crop-Right ,767,392,394,1,0,0,s,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Holding Time ,767,396,399,1,0,0,ms,22DAB0,62DAB0,ff,Vehicle_Information.Reverse Gear Debouncing ,767,400,402,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera rear trunk behaviour,0:no action;1:switch off;2:warning text;3:switch off +warning text;4:black screen;6:black screen + warning tex ,767,403,407,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Contrast ,767,411,415,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Tint ,767,417,418,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Image Mirror,0:none;1:Vert.;2:Horiz.;3:Vert+Horiz ,767,419,423,1,0,0,km/h,22DAB0,62DAB0,ff,Vehicle_Information.Vehicle Speed Too High ,767,427,431,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Black Level Day ,767,435,439,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Camera Picture Black Level Night ,767,442,444,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Seat_Guidance_PS,0:no seat guidance;1:ps-8w-2wl;2:ps-6w-2wl;3:ps-8w-4wl-m;4:ps-8w-4wl;5:ps-6w-2wl-o ,767,445,447,1,0,0,,22DAB0,62DAB0,ff,Vehicle_Information.Seat_Guidance_DR,0:no seat guidance;1:ds-8w-2wl;2:ds-6w-2wl;3:ds-8w-4wl-m;4:ds-8w-4wl ,767,32,32,1,0,0,,22DAB1,62DAB1,ff,System_Information.Default_Temperature_unit,0:Celsius;1:Fahrenheit ,767,33,34,1,0,0,,22DAB1,62DAB1,ff,System_Information.Supported_Temperature_units,0:Celsius & Fahrenheit;1:Celsius only ,767,35,36,1,0,0,,22DAB1,62DAB1,ff,System_Information.Default_Distance_Fuel_Consumption_unit,0:km- L/100km;1:UK mile- MPG(UK);2:US mile- MPG(US);3:km- km/L ,767,37,39,1,0,0,,22DAB1,62DAB1,ff,System_Information.Supported_Distance_Fuel_Consumption_units,0:US mile(MPG(US)) & km(L/100km) & km(km/L);1:US mile(MPG(US)) & km(L/100km);2:km(L/100km) & km(km/L);3:UK mile(MPG(UK)) & km(L/100km) & km(km/L);4:UK mile(MPG(UK)) & km(L/100km) ,767,40,47,1,0,0,,22DAB1,62DAB1,ff,System_Information.Default_Language,0:Automatic;1:Albanese;2:Arabic;3:Bulgarian;4:Reserved;5:Chinese Cantonese (Traditional Chinese character) HK;6:Chinese Mandarin (Simplified Chinses character)- CN;7:Croatian;8:Czech;9:Danish;10:Dutch;11:English (Australian);12:English (UK);13:English (US);14:English (US) for JPN;15:English (US) for PRC;16:English Canadian;17:English India;18:Estonian;19:Finnish;20:Flemish;21:French;22:French Canadian;23:German;24:Greek;25:Hebrew;26:Hindi;27:Hungarian;28:Indonesian;29:Italian;30:Japanese;31:Korean;32:Latvian;33:Lithuanian;34:Malay;35:Norwegian;36:Persian (Farsi/Iranian);37:Philippines;38:Polish;39:Portuguese;40:Portuguese Brazilian;41:Romanian;42:Russian;43:Serbian;44:Slovakian;45:Slovenian;46:Spanish;47:Spanish Latin American;48:Spanish Mexican;49:Swedish;50:Taiwanese;51:Thai;52:Turkish;53:Ukrainian;54:Vietnamese ,767,50,50,1,0,0,,22DAB1,62DAB1,ff,System_Information.Off_road_information,0:Disabled;1:Enabled ,767,51,51,1,0,0,,22DAB1,62DAB1,ff,System_Information.Eco_score_display,0:Disabled;1:Enabled ,767,54,54,1,0,0,,22DAB1,62DAB1,ff,System_Information.Clock_12/24h,0:24h;1:12h ,767,55,55,1,0,0,,22DAB1,62DAB1,ff,System_Information.Show_clock,0:Disabled;1:Enabled ,767,57,60,1,0,0,,22DAB1,62DAB1,ff,System_Information.Opening_animation,0:Renault;1:Nissan;2:Infiniti;3:Mitsubishi;4:RSM;5:GT line;6:Initiale;7:RS;8:Infiniti with R;9:Infiniti (Skyline) ,767,61,63,1,0,0,,22DAB1,62DAB1,ff,System_Information.Brand,0:Renault;1:Nissan;2:Infiniti;3:Mitsubishi;4:Dacia;5:Daimler;6:Avtovaz;7:RSM ,767,68,70,1,0,0,,22DAB1,62DAB1,ff,System_Information.HEV_Drive_type,0:Non HEV;1:FF;2:FR;5:FF+4WD;6:FR+4WD;7:4WD ,767,71,71,1,0,0,,22DAB1,62DAB1,ff,System_Information.HEV_information_function,0:OFF;1:ON ,767,76,76,1,0,0,,22DAB1,62DAB1,ff,System_Information.Speed_lock_restrictions,0:OFF;1:ON ,767,77,77,1,0,0,,22DAB1,62DAB1,ff,System_Information.Eco function,0:Absent;1:Present ,767,78,78,1,0,0,,22DAB1,62DAB1,ff,System_Information.Eco challenge,0:absent;1:present ,767,79,79,1,0,0,,22DAB1,62DAB1,ff,System_Information.Sound_on_encoder_press,0:Disabled;1:Enabled ,767,80,87,1,0,0,km/h,22DAB1,62DAB1,ff,System_Information.Speed_lock_min_threshold_for_use_restriction_(km/h) ,767,88,95,1,0,0,km/h,22DAB1,62DAB1,ff,System_Information.Speed_lock_max_threshold_for_use_restriction_(km/h) ,767,100,100,1,0,0,,22DAB1,62DAB1,ff,System_Information.ExtTempDisplayCfg,0:Disabled;1:Enabled ,767,101,101,1,0,0,,22DAB1,62DAB1,ff,System_Information.Display_activation,0:Disabled;1:Enabled ,767,102,102,1,0,0,,22DAB1,62DAB1,ff,System_Information.Seat_restriction,0:Not Restricted;1:Restricted ,767,103,103,1,0,0,,22DAB1,62DAB1,ff,System_Information.Tyre_Pressure_Reset_restriction,0:Not Restricted;1:Restricted ,767,104,119,1,0,0,mins,22DAB1,62DAB1,ff,System_Information.PORT ,767,216,217,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE_activation,0:Disabled;1:Enabled in head-unit;2:Enabled in external amplifier ,767,219,219,1,0,0,,22DAB1,62DAB1,ff,System_Information.ANC activation,0:Disabled;1:Enabled ,767,227,227,1,0,0,,22DAB1,62DAB1,ff,System_Information.TTS,0:Disabled;1:Enabled ,767,228,228,1,0,0,,22DAB1,62DAB1,ff,System_Information.VR_short_prompts,0:OFF;1:ON ,767,229,229,1,0,0,,22DAB1,62DAB1,ff,System_Information.VR_beep_only,0:OFF;1:ON ,767,230,231,1,0,0,,22DAB1,62DAB1,ff,System_Information.Voice_recognition,0:Absent;1:Reserved;2:Present ,767,232,233,1,0,0,,22DAB1,62DAB1,ff,System_Information.Tweeter_setup,0:No tweeters;1:Only front tweeters mounted;2:Only rear tweeters mounted;3:Front and Rear tweeters mounted ,767,234,237,1,0,0,,22DAB1,62DAB1,ff,System_Information.Output_Information,0:Internal AMP (2channels) / Head-unit alone (2channels);1:Premium 1;2:Bose Booster w/o MCAN;3:Premium 2;4:Bose 2ch stereo MCAN Amplifier;5:external ANC box;6:Bose 5.1ch MCAN Amplifier (future extension) / Not applicable for Renault;7:Daimler external amplifier (4 channels);8:Head-unit alone (4channels)+ SubOut;9:Internal AMP (4channels) / Head-unit alone (4channels);10:Daimler external amplifier (2 channels);11:Bose Personal Space;12:external ANC box for only front ,767,238,239,1,0,0,,22DAB1,62DAB1,ff,System_Information.Auto_barge_in,0:Off;1:ON (Feedback inside PCB);2:ON (Feedback from OUT) ,767,242,244,1,0,0,,22DAB1,62DAB1,ff,System_Information.Speed_curve,0:Speed curve 0;1:Speed curve 1;2:Speed curve 2;3:Speed curve 3;4:Speed curve 4;5:Speed curve 5 ,767,245,247,1,0,0,,22DAB1,62DAB1,ff,System_Information.Sonar_Volume,0:-3dB;1:-2dB;2:-1dB;3:0dB;4:+1dB;5:+2dB;6:+3dB ,767,258,259,1,0,0,,22DAB1,62DAB1,ff,System_Information.AM tuner activation,0:AM (LW & MW) activated;1:Reserved;2:LW deactivated- MW activated;3:AM (LW & MW) deactivated ,767,260,261,1,0,0,,22DAB1,62DAB1,ff,System_Information.MCH1_mount_information,0:No MCH1 mounted in car;1:1 USB port (MCH1- w/o HUB);2:2 USB ports (MCH1- with HUB);3:1 USB port (MCH1- with HUB) ,767,262,263,1,0,0,,22DAB1,62DAB1,ff,System_Information.AUX,0:without AUX;1:wirh AUX and without Pin detection;2:with AUX and with Pin detection ,767,271,271,1,0,0,,22DAB1,62DAB1,ff,System_Information.DAB,0:Disabled;1:Enabled ,767,279,279,1,0,0,,22DAB1,62DAB1,ff,System_Information.CMF_support_for_ETC,0:Disabled;1:Enabled ,767,280,281,1,0,0,,22DAB1,62DAB1,ff,System_Information.ATBOX,0:Disabled;1:Type 1 (Nissan specific);2:Type 2 (Alliance) ,767,282,282,1,0,0,,22DAB1,62DAB1,ff,System_Information.MySPIN,0:Disabled;1:Enabled ,767,283,283,1,0,0,,22DAB1,62DAB1,ff,System_Information.Android_Auto,0:Disabled;1:Enabled ,767,284,284,1,0,0,,22DAB1,62DAB1,ff,System_Information.CarPlay,0:Disabled;1:Enabled ,767,285,285,1,0,0,,22DAB1,62DAB1,ff,System_Information.WiFi_IVC_tethering,0:Disabled;1:Enabled ,767,286,286,1,0,0,,22DAB1,62DAB1,ff,System_Information.Bluetooth_function,0:Disabled;1:Enabled ,767,287,287,1,0,0,,22DAB1,62DAB1,ff,System_Information.Wifi_function,0:Disabled;1:Enabled ,767,289,289,1,0,0,,22DAB1,62DAB1,ff,System_Information.OnCar,0:Disabled;1:Enabled ,767,290,290,1,0,0,,22DAB1,62DAB1,ff,System_Information.Wifi_5GHz_support,0:Disabled;1:Enabled ,767,291,295,1,0,0,,22DAB1,62DAB1,ff,System_Information.Model_year,0:17 MY;1:18 MY;2:19 MY;3:20 MY;4:21 MY;5:22 MY;6:23 MY;7:24 MY;8:25 MY;9:26 MY;10:27 MY;11:28 MY;12:29 MY;13:30 MY;14:31 MY;15:32 MY;16:33 MY;17:34 MY;18:35 MY;19:36 MY;20:37 MY;21:38 MY;22:39 MY;23:40 MY;24:41 MY;25:42 MY;26:43 MY;27:44 MY;28:45 MY;29:46 MY;30:47 MY;31:MY not determined ,767,299,299,1,0,0,,22DAB1,62DAB1,ff,System_Information.Minimize_unpaved_roads,0:Disabled;1:Enabled ,767,303,303,1,0,0,,22DAB1,62DAB1,ff,System_Information.Truck/LCV_route,0:Disabled;1:Enabled ,767,304,304,1,0,0,,22DAB1,62DAB1,ff,System_Information.MQTTPayloadCompression,0:absent;1:present ,767,306,306,1,0,0,,22DAB1,62DAB1,ff,System_Information.Map_zoom,0:Encoder;1:Touch ,767,308,311,1,0,0,,22DAB1,62DAB1,ff,System_Information.Kind_of_destination_entry,0:EUR (European style i.e. form basd.);1:NAR (Amercian style i.e. user guided entry flow.);2:JPN (Japanese style i.e. user guided fixed entry flow.) ,767,315,315,1,0,0,,22DAB1,62DAB1,ff,System_Information.VA_on_shortpress,0:OFF;1:ON ,767,316,316,1,0,0,,22DAB1,62DAB1,ff,System_Information.WBS,0:OFF;1:ON ,767,317,317,1,0,0,,22DAB1,62DAB1,ff,System_Information.SIRI,0:OFF;1:ON ,767,318,318,1,0,0,,22DAB1,62DAB1,ff,System_Information.VA/SPVR,0:OFF;1:ON ,767,320,327,1,0,0,,22DAB1,62DAB1,ff,System_Information.MQTTSessionType,0:Always connected;1:On Demand;2:IVI Periodic ,767,336,336,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_REACH_AREA,0:Patatoid solution (Default);1:Reachable Circle (Backup solution) ,767,337,337,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_REROUTE_ALT,0:Not present (service de-activation);1:Present (service activation) ,767,338,338,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_PSOC,0:Not present (service de-activation);1:Present (service activation) ,767,339,339,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_CHG_TIME_FORECAST,0:Not present (service de-activation);1:Present (service activation) ,767,340,340,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_GUARD_ANG,0:Not present (service de-activation);1:Present (service activation) ,767,341,341,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_LOWBAT_ALT,0:Not present (service de-activation);1:Present (service activation) ,767,342,342,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_CHGSTN_SORT,0:(Ascending order- Nearest charging station to Farthest charging station);1:(Descending order- Farthest charging station to Nearest charging station) ,767,343,343,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_CHGSTN_FIND,0:Not present (service de-activation);1:Present (service activation) ,767,345,345,1,0,0,,22DAB1,62DAB1,ff,System_Information.Remote application support,0:Not present (service de-activation);1:Present (service activation) ,767,347,347,1,0,0,,22DAB1,62DAB1,ff,System_Information.TIMER PRE-AIR-CONDITIONING,0:Not present (service de-activation);1:Present (service activation) ,767,348,348,1,0,0,,22DAB1,62DAB1,ff,System_Information.TIMER CHARGING,0:Not present (service de-activation);1:Present (service activation) ,767,349,349,1,0,0,,22DAB1,62DAB1,ff,System_Information.Info from Meter_DC/DC caution,0:Not present (service de-activation);1:Present (service activation) ,767,350,350,1,0,0,,22DAB1,62DAB1,ff,System_Information.Info from Meter_Limited power,0:Not present (service de-activation);1:Present (service activation) ,767,356,356,1,0,0,,22DAB1,62DAB1,ff,System_Information.Power Consumption Information,0:Not present (service de-activation);1:Present (service activation) ,767,357,357,1,0,0,,22DAB1,62DAB1,ff,System_Information.Energy Information,0:Not present (service de-activation);1:Present (service activation) ,767,358,358,1,0,0,,22DAB1,62DAB1,ff,System_Information.EV & PHEV Energy Flow 15mn historical graph,0:Not present (service de-activation);1:Present (service activation) ,767,359,359,1,0,0,,22DAB1,62DAB1,ff,System_Information.EV & PHEV real time Energy Flow display,0:Not present (service de-activation);1:Present (service activation) ,767,360,367,1,128,0,°C,22DAB1,62DAB1,ff,System_Information.Pre-conditioning duration-vehicle not plugged ,767,368,375,1,0,0,°C,22DAB1,62DAB1,ff,System_Information.Pre-conditioning median temperature request ,767,376,378,1,0,0,,22DAB1,62DAB1,ff,System_Information.Car_type,0:Standard (or Nissan vehicle);1:GT;2:RS ,767,380,382,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice_Race,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,384,386,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice -Eco,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,387,389,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice-Comfort,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,392,394,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice-Normal,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,395,397,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice-Dynamic,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,400,402,1,0,0,,22DAB1,62DAB1,ff,System_Information.SkinChoice-Perso,0:No change;1:Skin 1;2:Skin 2;3:Skin 3;4:Skin 4;5:Skin 5;6:Skin 6 ,767,408,415,5,0,0,%,22DAB1,62DAB1,ff,System_Information.MexSwitch_IntensityWithoutAmbient_lighting ,767,417,417,1,0,0,,22DAB1,62DAB1,ff,System_Information.DualMode_Mgt,0:Without Dual Management;1:With Dual Management ,767,418,420,1,0,0,,22DAB1,62DAB1,ff,System_Information.Preferential_Mode1,0:Not Available;1:Eco;2:Comfort;3:Normal;4:Dynamic;5:Race;6:Perso;7:Reserved ,767,421,423,1,0,0,,22DAB1,62DAB1,ff,System_Information.Preferential_Mode2,0:Not Available;1:Eco;2:Comfort;3:Normal;4:Dynamic;5:Race;6:Perso;7:Reserved ,767,424,426,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Eco,0:No request;1:0;2:low;3:high ,767,427,429,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Comfort,0:No Change;1:OFF;2:low;3:high ,767,432,434,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Normal,0:No request;1:0;2:low;3:high ,767,435,437,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Dynamic,0:No request;1:0;2:low;3:high ,767,442,444,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Perso,0:No request;1:0;2:low;3:high ,767,445,446,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Eco,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,448,449,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Comfort,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,450,451,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Normal,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,452,453,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Dynamic,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,454,455,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Perso,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,456,456,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE sound 2 volume HMI,0:Disabled;1:Enabled ,767,457,457,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE sound 1 volume HMI,0:Disabled;1:Enabled ,767,458,460,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE sound 2 name,0:Sport;1:Comfort;2:Race ,767,461,463,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE sound 1 name,0:Sport;1:Comfort;2:Race ,767,464,465,1,0,0,,22DAB1,62DAB1,ff,System_Information.ESE HMI,0:No HMI for ESE;1:ESE With Driving Modes;2:ESE With Rsound ,767,466,468,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundVolume_Race,0:No request;1:0;2:low;3:high ,767,472,473,1,0,0,,22DAB1,62DAB1,ff,System_Information.CNF_VPA,0:Not present;1:Present;3:Reserved ,767,479,479,1,0,0,,22DAB1,62DAB1,ff,System_Information.Wireless_Android_Auto_function,0:OFF;1:ON ,767,480,483,1,0,0,,22DAB1,62DAB1,ff,System_Information.Touch_screen_configuration,0:Attached fascia (A-IVI);1:CMF1 7 inches central panel carry back;2:C7D 7 inches display carry back;3:CMFCDph2 9.3 inches central panel;4:CMFB 9.3 inches central panel;5:CMFB 7 affordable display;6:CMFB 7 best level display;7:CMF1 8.7 central panel carry back;8:HFE 7 inches central panel;14:Custom display + Atmel touch;15:Custom display + cypress ,767,486,487,1,0,0,,22DAB1,62DAB1,ff,System_Information.CF_ESESoundType_Race,0:No change;1:Neutral;2:Sound1;3:Sound2 ,767,494,494,1,0,0,,22DAB1,62DAB1,ff,System_Information.Wireless_CarPlay_function,0:OFF;1:ON ,767,495,495,1,0,0,,22DAB1,62DAB1,ff,System_Information.Baidu_CarLife_function,0:OFF;1:ON ,767,500,501,1,0,0,,22DAB1,62DAB1,ff,System_Information.FOTA_bearer,0:NOT USE;1:USE;2:Only USE FOTA;3:Only USE MAP ,767,24,31,1,0,0,,22DAB2,62DAB2,ff,Antitheft/Map_Selection.Antitheft_function,0:Without antitheft function;1:With Nissan Antitheft function (Immobilizer);2:With Alliance Antitheft function ,767,32,47,1,0,0,,22DAB2,62DAB2,ff,Antitheft/Map_Selection.Map_selection,0:No initial activation done (default);1:No map selected ,767,24,3359,1,0,0,,22DAC0,62DAC0,4ff,Generic Tuner Parameter Set ,767,24,2327,1,0,0,,22DAC5,62DAC5,4ff,FM/AM_Tuner_Parameter_Set ,767,24,535,1,0,0,,22DAC9,62DAC9,4ff,HD_parameter_set ,767,24,1863,1,0,0,,22DACB,62DACB,4ff,DAB_Parameter ,767,24,1071,1,0,0,,22DACC,62DACC,4ff,Antenna_Parameter ,767,24,1647,1,0,0,,22DAD0,62DAD0,4ff,Sensor_Configuration_Gyro ,767,24,119,1,0,0,,22DAD1,62DAD1,4ff,Sensor_Configuration_GNSS ,767,24,1647,1,0,0,,22DAD2,62DAD2,4ff,Sensor_Configuration_ACC ,767,24,27,1,0,0,,22DAE0,62DAE0,ff,Camera_System.ConfigStringVersionMinor ,767,28,31,1,0,0,,22DAE0,62DAE0,ff,Camera_System.ConfigStringVersionMajor ,767,32,47,1,0,0,mm,22DAE0,62DAE0,ff,Camera_System.Vehicle Width ,767,48,63,1,0,0,mm,22DAE0,62DAE0,ff,Camera_System.WheelBase ,767,64,79,1,0,0,mm,22DAE0,62DAE0,ff,Camera_System.RearOverhang ,767,80,95,.00001,0,3,,22DAE0,62DAE0,1ff,Camera_System.SteerWheelCalib_f1 ,767,96,111,.0000000001,0,3,,22DAE0,62DAE0,1ff,Camera_System.SteerWheelCalib_f3 ,767,112,127,1,0,0,deg,22DAE0,62DAE0,ff,Camera_System.MaxSteerWheelAngle ,767,128,143,.01,0,2,deg,22DAE0,62DAE0,ff,Camera_System.MaxRearWheelAngle ,767,144,159,.01,0,2,deg,22DAE0,62DAE0,ff,Camera_System.RadiusTuningFact ,767,160,160,1,0,0,,22DAE0,62DAE0,ff,Camera_System.TestConfigOnlyFlag,0:verified configuration for use in customer vehicle;1:test configuration ,767,161,163,1,0,0,,22DAE0,62DAE0,ff,Camera_System.GuidelineStyle,0:not definded;1:Nissan;2:Renault;3:Mitsubishi ,767,164,165,1,0,0,,22DAE0,62DAE0,ff,Camera_System.TireAngleReferencePoint,0:front axle center;1:outer front tire;2:inner front tire;3:reserved ,767,166,166,1,0,0,,22DAE0,62DAE0,ff,Camera_System.TireAngleTurnSense,0:clockwise tire turn;1:counterclockwise tire turn ,767,167,167,1,0,0,,22DAE0,62DAE0,ff,Camera_System.FourWheelSteering,0:2WS vehicle;1:4WS vehicle ,767,168,183,1,0,0,mm,22DAE0,62DAE0,1ff,Camera_System.CamXOffset ,767,184,199,1,0,0,mm,22DAE0,62DAE0,ff,Camera_System.CamYOffset ,767,200,215,1,0,0,mm,22DAE0,62DAE0,1ff,Camera_System.CamZOffset ,767,216,231,.1,0,1,deg,22DAE0,62DAE0,1ff,Camera_System.CamYaw ,767,232,247,.1,0,1,deg,22DAE0,62DAE0,1ff,Camera_System.CamPitch ,767,248,263,.1,0,1,deg,22DAE0,62DAE0,1ff,Camera_System.CamRoll ,767,264,271,.01,0,2,deg,22DAE0,62DAE0,ff,Camera_System.FrontTireThresh ,767,272,279,.01,0,2,deg,22DAE0,62DAE0,ff,Camera_System.MinFrontTireChange ,767,280,287,.01,0,2,deg,22DAE0,62DAE0,ff,Camera_System.RearTireThresh ,767,288,295,.01,0,2,deg,22DAE0,62DAE0,ff,Camera_System.MinRearTireChange ,767,296,303,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.GuidelineStartDistance ,767,304,311,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.GuidelineSideMargin ,767,312,319,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideNear_R ,767,320,327,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideNear_G ,767,328,335,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideNear_B ,767,336,343,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideMid_R ,767,344,351,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideMid_G ,767,352,359,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideMid_B ,767,360,367,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideFar_R ,767,368,375,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideFar_G ,767,376,383,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticSideFar_B ,767,384,391,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticCenter_R ,767,392,399,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticCenter_G ,767,400,407,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorStaticCenter_B ,767,408,415,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorDynamic_R ,767,416,423,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorDynamic_G ,767,424,431,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RgbColorDynamic_B ,767,432,435,1,0,0,pixel,22DAE0,62DAE0,ff,Camera_System.LineWidthStaticSideFar ,767,436,439,1,0,0,pixel,22DAE0,62DAE0,ff,Camera_System.LineWidthStaticSideNear ,767,440,443,1,0,0,pixel,22DAE0,62DAE0,ff,Camera_System.LineWidthDynamicFar ,767,444,447,1,0,0,pixel,22DAE0,62DAE0,ff,Camera_System.LineWidthDynamicNear ,767,448,451,1,0,0,pixel,22DAE0,62DAE0,ff,Camera_System.LineWidthStaticCenterFar ,767,452,455,1,0,0,pixel,22DAE0,62DAE0,ff,Camera_System.LineWidthStaticCenterNear ,767,456,463,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.StaticLineLengthNear ,767,464,471,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.StaticLineLengthMid ,767,472,479,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.StaticLineLengthFar1 ,767,480,487,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.StaticLineLengthFar2 ,767,488,495,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.StaticHorizLineLength ,767,496,503,.01,0,2,,22DAE0,62DAE0,ff,Camera_System.LineWidthFactorNearHLine ,767,504,507,1,0,0,,22DAE0,62DAE0,ff,Camera_System.TuningMethod,0:no tuning;1:input d_yaw/pitch/roll tuning;2:input d_pitch + input d_x/y tuning;3:input d_pitch + estimated d_yaw/roll tuning;4:input d_pitch + estimated d_yaw/roll + residual d_x/y tuning;5:estimated d_yaw/pitch/roll tuning;6:estimated d_yaw/pitch/roll + residual d_x/y tuning;7:improved input d_pitch + estimated d_yaw/roll tuning;8:improved input d_pitch + estimated d_yaw/roll + residual d_x/y tuning ,767,508,511,1,0,0,,22DAE0,62DAE0,ff,Camera_System.TuningStringVersion ,767,512,519,.1,0,1,deg,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaCamYaw ,767,520,527,.1,0,1,deg,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaCamPitch ,767,528,535,.1,0,1,deg,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaCamRoll ,767,536,543,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaXNearLeft ,767,544,551,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaYNearLeft ,767,552,559,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaXFarLeft ,767,560,567,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaXNearRight ,767,568,575,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaYNearRight ,767,576,583,1,0,0,cm,22DAE0,62DAE0,1ff,Camera_System.TuningDeltaXFarRight ,767,584,591,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.TuningNearLineLengthLeft ,767,592,599,1,0,0,cm,22DAE0,62DAE0,ff,Camera_System.TuningNearLineLengthRight ,767,600,607,1,0,0,deg,22DAE0,62DAE0,1ff,Camera_System.TuningSwaZeroPointOffset ,767,608,615,.01,0,2,,22DAE0,62DAE0,1ff,Camera_System.TuningRwaZeroPointOffset ,767,665,667,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Camera connection,0:Without;1:CVBS;2:LVDS;3:Ethernet ,767,668,670,1,0,0,,22DAE0,62DAE0,ff,Camera_System.cameraSystem,0:None;1:Entry AVM;2:Reserved (2);3:Rear Camera;4:Reserved (4);5:MVC;6:AVM Ph3;7:Reserved (7) ,767,671,671,1,0,0,,22DAE0,62DAE0,ff,Camera_System.anticipatoryLine,0:Disabled;1:Enabled ,767,672,672,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_AVM,0:AVM (integration into video-signal);1:Headunit (drawing an overlay) ,767,673,674,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_Type,0:None;1:FR+RR Sonar;2:RR Sonar ,767,675,677,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_menu,0:None;1:Gen3 menu;2:Gen3 GD1A menu;3:Gen5 menu ,767,678,678,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_Switch_display,0:OFF;1:ON ,767,679,679,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_System_Availability,0:not available;1:available ,767,685,685,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar_FKP,0:OFF;1:ON ,767,686,686,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar Sound,0:OFF;1:ON ,767,687,687,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar Display,0:OFF;1:ON ,767,688,695,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Sonar vehicle image,0:No body shape;1:Sedan;2:SUV;3:Van;4:Coupe;5:42P;6:H/B ,767,696,703,1,0,0,%,22DAE0,62DAE0,ff,Camera_System.Camera brightness (Day) ,767,704,711,1,0,0,%,22DAE0,62DAE0,ff,Camera_System.Camera brightness (Night) ,767,712,719,1,0,0,,22DAE0,62DAE0,ff,Camera_System.Camera Steering Message,0:CAN ID 002;1:CAN ID 0C1 ,767,720,727,1,0,0,,22DAE0,62DAE0,ff,Camera_System.RVC Lens Parameter,0:Type1 (Sony_2400S_W130_6);1:Type2 (Sony_2200S_W130);2:Type3 (Panasonic);3:Type4 (Sony 2400S (Renault FOV));4:Type5 (Semco Logo);5:Type6 (Semco Generic);6:Type7 (Semco L47);7:Type8 (Sony S2500);8:Type9 (Whetron);9:Type10 (Clarion) ,767,28,31,1,0,0,,22DAE5,62DAE5,ff,ECO_Route.ECO_Route_Vehicle_type,0:SUV;1:Sedan;2:Coupe;3:Mini Van / Van/ Wagon;4:Hatchback;5:Truck;6:unknown / other;7:RenaultDefaultModel ,767,35,39,1,0,0,,22DAE5,62DAE5,ff,ECO_Route.Engine_size,1:Petrol -> 2L class engine;2:Petrol -> over 2L to 3.5L class engine;3:Petrol -> over 3.5L class engine;4:Diesel -> 2L class engine;5:Diesel -> over 2L to 3.5L class engine;6:Diesel -> over 3.5L class engine;7:EV 40kWh JPN;8:EV 60kWh JPN;9:EV 40kWh NAM/CAN;10:EV 60kWh NAM/CAN;11:EV 40kWh EUR;12:EV 60kWh EUR;13:Renault Default Petrol;14:Renault Default Diesel Light vehicle;15:Renault Default EV;16:Renault Default Petrol Hybrid;17:Renault Default Diesel Hybrid;18:Renault Default Diesel Heavy Vehicle;19:Renault Default EV 30kWh;20:Renault Default EV 40kWh;21:Renault Default EV 50kWh;22:Renault Default EV 60kWh;31:unknown / other ,767,24,199,1,0,0,,22DAF0,62DAF0,2ff,WiFi_Name.SSID_WiFi_1 ,767,200,375,1,0,0,,22DAF0,62DAF0,2ff,WiFi_Name.SSID_WiFi_2 ,767,24,199,1,0,0,,22DAF1,62DAF1,2ff,BT_Name.BT_name ,767,31,31,1,0,0,,22DEF0,62DEF0,ff,Factory mode,0:Market (normal) mode;1:Factory mode ,767,24,183,1,0,0,,22DEFE,62DEFE,4ff,Message_Authentication_Code ,767,24,151,1,0,0,,22F010,62F010,4ff,Fingerprint ,767,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,767,24,103,1,0,0,,22F012,62F012,2ff,Operational Reference ,767,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationnalReference ,767,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,767,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC Occurrence Counter ,767,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,767,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,767,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,767,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,767,24,63,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,767,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,767,24,159,1,0,0,,22F190,62F190,2ff,VIN ,767,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,767,24,199,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,767,24,111,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,767,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,767,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,767,24,103,1,0,0,,22F1A2,62F1A2,2ff,RenaultConfigurationPartNumber ,767,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/Navigation-UCC-ITM_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal level out of range/zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component | system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/PLC-PLGW_Dtcs.csv ================================================ C079,Bus Off E14F,DiagMux BCM lost communication E143,DiagMux HEVC lost communication AB01,Charging process HEVC lost communication AB03,Internal failure AB07,FAILED_CertificateExpired AB08,FAILED_ContractCanceled AB09,FAILED_CertificateRevoked AB0A,FAILED_CertificateNotAllowedAtThisEVSE AB0B,FAILED_NoCertificate Available AB0C,FAILED_WrongEnergyTransferMode AB0D,FAILED_WrongChargeParameter AB0E,FAILED_ChargingProfileInvalid AB0F,FAILED_ServiceIDInvalid AB10,FAILED_UnknownSession AB11,FAILED_ServiceSelectionInvalid AB12,FAILED_TariffSelectionInvalid AB13,FAILED_PaymentSelectionInvalid AB14,FAILED_CertChainError AB15,FAILED_ChallengeInvalid AB17,FAILED_NoChargeServiceSelected AB18,FAILED_SequenceError AB19,FAILED_SignatureError AB1A,FAILED_PowerDeliveryNotApplied AB1B,FAILED_ContactorError AB1C,FAILED AB1D,Loss of communication with EVSE AB1E,The charging process was aborted by the charging station. AB20,Pilot Line OC (can be merged with SC+ or SC-) AB21,Protect Earth OC (can be merged with SC+ or SC-) AB02,Charging process BCM lost communication AB05,Voltage AB04,Missing configuration AB16,FAILED_MeteringSignatureNotValid AB1F,Handshake failure ================================================ FILE: app/src/main/assets/ZOE_Ph2/PLC-PLGW_Fields.csv ================================================ ,7C8,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,7C8,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Reprog ,7C8,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,7C8,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7C8,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,7C8,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTCFormat;1:ISO_14229-1_DTCFormat;2:SAE_J1939-73_DTCFormat;3:ISO_11992-4_DTCFormat;4:SAE_J2012-DA_WWHOBD_DTCFormat ,7C8,32,47,1,0,0,,1901FF,5901FF,4ff,DTCCount ,7C8,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,7C8,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,7C8,40,43,1,0,0,,1902FF,5902FF,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,7C8,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,7C8,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested ,7C8,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle ,7C8,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7C8,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7C8,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7C8,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC ,7C8,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle ,7C8,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,7C8,16,39,1,0,0,,1903000000FF,5903000000FF,4ff,DTCRecord ,7C8,40,47,1,0,0,,1903000000FF,5903000000FF,ff,DTCSnapshotRecordNumber ,7C8,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7C8,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,7C8,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,7C8,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,7C8,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,7C8,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,7C8,28,31,1,0,0,,220326,620326,ff,Combo_EVchargeHLCRequest,0:No HLC Request [inital value];1:Communication&service setting request;2:Charge parameter Discovery request;3:Cable Check request;4:Precharge request;5:Power delivery request;6:Current demand request;7:Metering receipt request;8:Welding detection request;9:Session stop request;10:Matching Reset;11:Charging Status request;12:AC BPT;13:DC BPT ,7C8,28,31,1,0,0,,220327,620327,ff,Combo_EVErrorCode,0:NO_ERROR [initial value];1:FAILED_RESSTemperatureInhibit;2:FAILED_EVShiftPosition;3:FAILED_ChargerConnectorLockFault;4:FAILED_EVRESSMalfunction;5:FAILED_ChargingCurrentdifferential;6:FAILED_ChargingVoltageOutOfRange;7:Reserved_A;8:Reserved_B;9:Reserved_C;10:FAILED_ChargingSystemIncompatibility;11:NoData;12:not used;15:Unavailable Value ,7C8,24,35,.1,0,1,A,220328,620328,ff,Combo_EVMaximumCurrentLimit ,7C8,31,31,1,0,0,,220329,620329,ff,Combo_EVReady,0:EV isn't ready to charge [initial value];1:EV is ready to charge ,7C8,24,37,.1,0,1,V,22032A,62032A,ff,Combo_EVMaximumVoltageLimit ,7C8,28,31,1,0,0,,22032C,62032C,ff,Combo_EVSEchargeHLCState,0:No HLC communication is established [initial value];1:Communication&service setting is established;2:ChargeparameterDiscovery res;3:CableCheck response;4:Precharge response;5:Power delivery response;6:Current demand response;7:Metering receipt response;8:Welding detection response;9:Session stop response with EVSE(station charging);10:Charging Status response ,7C8,31,31,1,0,0,,22032D,62032D,ff,Combo_EVSECurrentLimitAchieved,0:EVSE hasn't reached its current limit [initial value];1:EVSE has reached its current limit ,7C8,24,35,50,0,0,W,22032E,62032E,ff,Combo_EVSEMaximumPowerLimit ,7C8,24,37,.1,0,1,V,22032F,62032F,ff,Combo_EVSEMaximumVoltageLimit ,7C8,24,37,.1,0,1,V,220330,620330,ff,Combo_EVSEMinimumVoltageLimit ,7C8,24,35,.1,0,1,A,220331,620331,ff,Combo_EVSEMaximumCurrentLimit ,7C8,24,35,.1,0,1,A,220332,620332,ff,Combo_EVSEMinimumCurrentLimit ,7C8,24,35,.1,0,1,A,220333,620333,ff,Combo_EVSEPeakCurrentRipple ,7C8,31,31,1,0,0,,220334,620334,ff,Combo_EVSEPowerLimitAchieved,0:EVSE hasn't reached its power limit [initial value];1:EVSE has reached its power limit ,7C8,24,35,.1,0,1,A,220335,620335,ff,Combo_EVSEPresentCurrent ,7C8,24,37,.1,0,1,V,220336,620336,ff,Combo_EVSEPresentVoltage ,7C8,31,31,1,0,0,,220337,620337,ff,Combo_EVSEVoltageLimitAchieved,0:the EVSE hasn't reached its voltage limit;1:the EVSE has reached its voltage limit ,7C8,29,31,1,0,0,,220338,620338,ff,CPLC_ChargeProgress,0:Stop;1:Start;2:Renegociate;3:Not used;7:Unavailable Value [initial value] ,7C8,29,31,1,0,0,,220339,620339,ff,CPLC_ChargingSession,0:No state [Initial Value];1:terminate the V2G Communication Session;2:pause the V2G Communication Session;3:reset the V2G Communication Session;4:emergency stop the V2G Communication Session;5:Not used ,7C8,28,31,1,0,0,,22033A,62033A,ff,CPLC_CommunicationStatus,0:No HLC communication is established;1:HLC communication is initializing;2:HLC communication is ready - secured mode;3:HLC communication is stopped;4:HLC communication error;5:HLC Communication is ready - not secured mode;6:Not used;7:Unavailable Value[initial value];8:HLC Communication is not ready- TLS setup failed;9:HLC Communication is not ready- TLS timeout;10:HLC Communication is not ready- TLS not supported;11:HLC Communication is not ready- SDP timeout;12:HLC Communication is not ready- not supported ISO-2 version;13:HLC Communication is not ready- V2G setup timeout;14:HLC Communication is not ready- V2G failed ,7C8,24,31,1,0,0,,22033B,62033B,ff,Failure_Status,0:Ok;1:OK_CertificateExpiresSoon;2:FAILED_CertificateExpired;3:FAILED_ContractCanceled;4:FAILED_CertificateRevoked;5:FAILED_CertificateNotAllowedAtThisEVSE;6:FAILED_NoCertificate Available;8:FAILED_WrongEnergyTransferMode;9:FAILED_WrongChargeParameter;10:FAILED_ChargingProfileInvalid;11:FAILED_ServiceIDInvalid;12:FAILED_UnknownSession;13:FAILED_ServiceSelectionInvalid;14:FAILED_TariffSelectionInvalid;15:FAILED_PaymentSelectionInvalid;16:FAILED_CertChainError;17:FAILED_ChallengeInvalid;18:FAILED_MeteringSignatureNotValid;19:FAILED_NoChargeServiceSelected;20:FAILED_SequenceError;21:FAILED_SignatureError;22:FAILED_NoCertificateAvailable;23:FAILED_PowerDeliveryNotApplied;24:FAILED;25:FAILED_ContactorError ,7C8,24,31,1,0,0,,22033C,62033C,ff,EVSE_Status,0:Ok;1:EVSEnotReady;2:EVSEShutdown;3:EVSE_UtilityInterruptEvent;4:EVSE_IsolationMonitoringActive;5:EVSE_EmergencyShutdown;6:EVSE_Malfunction;7:Reserved 8-C;8:Renegotiate ,7C8,29,31,1,0,0,,22033D,62033D,ff,CPLC_RequestedEnergyTransferMode,0:No request [initial value];1:AC_single_phase_core;2:AC_three_phase_core;3:DC_core;4:DC_combo_core;5:DC_unique;6:DC_extended;7:not used ,7C8,30,31,1,0,0,,22033E,62033E,ff,Combo_DCExtendedConnectStatus,0:Unavailable[initial value];1:DC extended not detected;2:DC extended detected;3:not used ,7C8,24,39,.01,0,2,V,220340,620340,ff,Supply voltage ,7C8,27,31,1,0,0,,220341,620341,ff,DEBUG_MODE.indication,0:Nominal;1:Debug;3:Debug + Mirroring;5:Debug + By-pass validation;7:Debug + Mirroring + By-pass validation;9:Debug + Force validation;11:Debug + Mirroring + Force validation;17:Debug + Power Emission Meas;21:Debug + power emission meas + by pass validation;25:Debug + power emission meas + force validation ,7C8,30,31,1,0,0,,220343,620343,ff,MAT_ERROR-RECOVERY-MODE,0:BC Priority;1:HLC-C Priority;2:BC_PriorityByDefault;3:Not used ,7C8,24,25,1,0,0,,220344,620344,ff,SEC_SET-TLS-PREFERENCE.indication,0:No_TLS;1:Prioritize_TLS;2:Not Used ,7C8,24,7359,1,0,0,,220345,620345,4ff,Dev profile ,7C8,24,27,1,0,0,,220346,620346,ff,Dev map.Carrier1,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,28,31,1,0,0,,220346,620346,ff,Dev map.Carrier0,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,32,35,1,0,0,,220346,620346,ff,Dev map.Carrier3,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,36,39,1,0,0,,220346,620346,ff,Dev map.Carrier2,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,40,43,1,0,0,,220346,620346,ff,Dev map.Carrier5,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,44,47,1,0,0,,220346,620346,ff,Dev map.Carrier4,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,48,51,1,0,0,,220346,620346,ff,Dev map.Carrier7,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,52,55,1,0,0,,220346,620346,ff,Dev map.Carrier6,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,56,59,1,0,0,,220346,620346,ff,Dev map.Carrier9,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,60,63,1,0,0,,220346,620346,ff,Dev map.Carrier8,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,64,67,1,0,0,,220346,620346,ff,Dev map.Carrier11,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,68,71,1,0,0,,220346,620346,ff,Dev map.Carrier10,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,72,75,1,0,0,,220346,620346,ff,Dev map.Carrier13,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,76,79,1,0,0,,220346,620346,ff,Dev map.Carrier12,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,80,83,1,0,0,,220346,620346,ff,Dev map.Carrier15,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,84,87,1,0,0,,220346,620346,ff,Dev map.Carrier14,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,88,91,1,0,0,,220346,620346,ff,Dev map.Carrier17,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,92,95,1,0,0,,220346,620346,ff,Dev map.Carrier16,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,96,99,1,0,0,,220346,620346,ff,Dev map.Carrier19,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,100,103,1,0,0,,220346,620346,ff,Dev map.Carrier18,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,104,107,1,0,0,,220346,620346,ff,Dev map.Carrier21,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,108,111,1,0,0,,220346,620346,ff,Dev map.Carrier20,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,112,115,1,0,0,,220346,620346,ff,Dev map.Carrier23,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,116,119,1,0,0,,220346,620346,ff,Dev map.Carrier22,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,120,123,1,0,0,,220346,620346,ff,Dev map.Carrier25,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,124,127,1,0,0,,220346,620346,ff,Dev map.Carrier24,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,128,131,1,0,0,,220346,620346,ff,Dev map.Carrier27,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,132,135,1,0,0,,220346,620346,ff,Dev map.Carrier26,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,136,139,1,0,0,,220346,620346,ff,Dev map.Carrier29,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,140,143,1,0,0,,220346,620346,ff,Dev map.Carrier28,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,144,147,1,0,0,,220346,620346,ff,Dev map.Carrier31,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,148,151,1,0,0,,220346,620346,ff,Dev map.Carrier30,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,152,155,1,0,0,,220346,620346,ff,Dev map.Carrier33,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,156,159,1,0,0,,220346,620346,ff,Dev map.Carrier32,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,160,163,1,0,0,,220346,620346,ff,Dev map.Carrier35,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,164,167,1,0,0,,220346,620346,ff,Dev map.Carrier34,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,168,171,1,0,0,,220346,620346,ff,Dev map.Carrier37,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,172,175,1,0,0,,220346,620346,ff,Dev map.Carrier36,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,176,179,1,0,0,,220346,620346,ff,Dev map.Carrier39,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,180,183,1,0,0,,220346,620346,ff,Dev map.Carrier38,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,184,187,1,0,0,,220346,620346,ff,Dev map.Carrier41,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,188,191,1,0,0,,220346,620346,ff,Dev map.Carrier40,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,192,195,1,0,0,,220346,620346,ff,Dev map.Carrier43,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,196,199,1,0,0,,220346,620346,ff,Dev map.Carrier42,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,200,203,1,0,0,,220346,620346,ff,Dev map.Carrier45,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,204,207,1,0,0,,220346,620346,ff,Dev map.Carrier44,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,208,211,1,0,0,,220346,620346,ff,Dev map.Carrier47,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,212,215,1,0,0,,220346,620346,ff,Dev map.Carrier46,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,216,219,1,0,0,,220346,620346,ff,Dev map.Carrier49,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,220,223,1,0,0,,220346,620346,ff,Dev map.Carrier48,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,224,227,1,0,0,,220346,620346,ff,Dev map.Carrier51,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,228,231,1,0,0,,220346,620346,ff,Dev map.Carrier50,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,232,235,1,0,0,,220346,620346,ff,Dev map.Carrier53,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,236,239,1,0,0,,220346,620346,ff,Dev map.Carrier52,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,240,243,1,0,0,,220346,620346,ff,Dev map.Carrier55,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,244,247,1,0,0,,220346,620346,ff,Dev map.Carrier54,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,248,251,1,0,0,,220346,620346,ff,Dev map.Carrier57,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,252,255,1,0,0,,220346,620346,ff,Dev map.Carrier56,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,256,259,1,0,0,,220346,620346,ff,Dev map.Carrier59,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,260,263,1,0,0,,220346,620346,ff,Dev map.Carrier58,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,264,267,1,0,0,,220346,620346,ff,Dev map.Carrier61,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,268,271,1,0,0,,220346,620346,ff,Dev map.Carrier60,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,272,275,1,0,0,,220346,620346,ff,Dev map.Carrier63,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,276,279,1,0,0,,220346,620346,ff,Dev map.Carrier62,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,280,283,1,0,0,,220346,620346,ff,Dev map.Carrier65,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,284,287,1,0,0,,220346,620346,ff,Dev map.Carrier64,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,288,291,1,0,0,,220346,620346,ff,Dev map.Carrier67,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,292,295,1,0,0,,220346,620346,ff,Dev map.Carrier66,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,296,299,1,0,0,,220346,620346,ff,Dev map.Carrier69,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,300,303,1,0,0,,220346,620346,ff,Dev map.Carrier68,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,304,307,1,0,0,,220346,620346,ff,Dev map.Carrier71,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,308,311,1,0,0,,220346,620346,ff,Dev map.Carrier70,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,312,315,1,0,0,,220346,620346,ff,Dev map.Carrier73,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,316,319,1,0,0,,220346,620346,ff,Dev map.Carrier72,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,320,323,1,0,0,,220346,620346,ff,Dev map.Carrier75,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,324,327,1,0,0,,220346,620346,ff,Dev map.Carrier74,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,328,331,1,0,0,,220346,620346,ff,Dev map.Carrier77,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,332,335,1,0,0,,220346,620346,ff,Dev map.Carrier76,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,336,339,1,0,0,,220346,620346,ff,Dev map.Carrier79,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,340,343,1,0,0,,220346,620346,ff,Dev map.Carrier78,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,344,347,1,0,0,,220346,620346,ff,Dev map.Carrier81,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,348,351,1,0,0,,220346,620346,ff,Dev map.Carrier80,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,352,355,1,0,0,,220346,620346,ff,Dev map.Carrier83,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,356,359,1,0,0,,220346,620346,ff,Dev map.Carrier82,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,360,363,1,0,0,,220346,620346,ff,Dev map.Carrier85,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,364,367,1,0,0,,220346,620346,ff,Dev map.Carrier84,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,368,371,1,0,0,,220346,620346,ff,Dev map.Carrier87,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,372,375,1,0,0,,220346,620346,ff,Dev map.Carrier86,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,376,379,1,0,0,,220346,620346,ff,Dev map.Carrier89,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,380,383,1,0,0,,220346,620346,ff,Dev map.Carrier88,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,384,387,1,0,0,,220346,620346,ff,Dev map.Carrier91,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,388,391,1,0,0,,220346,620346,ff,Dev map.Carrier90,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,392,395,1,0,0,,220346,620346,ff,Dev map.Carrier93,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,396,399,1,0,0,,220346,620346,ff,Dev map.Carrier92,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,400,403,1,0,0,,220346,620346,ff,Dev map.Carrier95,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,404,407,1,0,0,,220346,620346,ff,Dev map.Carrier94,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,408,411,1,0,0,,220346,620346,ff,Dev map.Carrier97,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,412,415,1,0,0,,220346,620346,ff,Dev map.Carrier96,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,416,419,1,0,0,,220346,620346,ff,Dev map.Carrier99,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,420,423,1,0,0,,220346,620346,ff,Dev map.Carrier98,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,424,427,1,0,0,,220346,620346,ff,Dev map.Carrier101,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,428,431,1,0,0,,220346,620346,ff,Dev map.Carrier100,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,432,435,1,0,0,,220346,620346,ff,Dev map.Carrier103,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,436,439,1,0,0,,220346,620346,ff,Dev map.Carrier102,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,440,443,1,0,0,,220346,620346,ff,Dev map.Carrier105,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,444,447,1,0,0,,220346,620346,ff,Dev map.Carrier104,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,448,451,1,0,0,,220346,620346,ff,Dev map.Carrier107,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,452,455,1,0,0,,220346,620346,ff,Dev map.Carrier106,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,456,459,1,0,0,,220346,620346,ff,Dev map.Carrier109,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,460,463,1,0,0,,220346,620346,ff,Dev map.Carrier108,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,464,467,1,0,0,,220346,620346,ff,Dev map.Carrier111,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,468,471,1,0,0,,220346,620346,ff,Dev map.Carrier110,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,472,475,1,0,0,,220346,620346,ff,Dev map.Carrier113,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,476,479,1,0,0,,220346,620346,ff,Dev map.Carrier112,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,480,483,1,0,0,,220346,620346,ff,Dev map.Carrier115,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,484,487,1,0,0,,220346,620346,ff,Dev map.Carrier114,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,488,491,1,0,0,,220346,620346,ff,Dev map.Carrier117,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,492,495,1,0,0,,220346,620346,ff,Dev map.Carrier116,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,496,499,1,0,0,,220346,620346,ff,Dev map.Carrier119,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,500,503,1,0,0,,220346,620346,ff,Dev map.Carrier118,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,504,507,1,0,0,,220346,620346,ff,Dev map.Carrier121,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,508,511,1,0,0,,220346,620346,ff,Dev map.Carrier120,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,512,515,1,0,0,,220346,620346,ff,Dev map.Carrier123,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,516,519,1,0,0,,220346,620346,ff,Dev map.Carrier122,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,520,523,1,0,0,,220346,620346,ff,Dev map.Carrier125,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,524,527,1,0,0,,220346,620346,ff,Dev map.Carrier124,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,528,531,1,0,0,,220346,620346,ff,Dev map.Carrier127,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,532,535,1,0,0,,220346,620346,ff,Dev map.Carrier126,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,536,539,1,0,0,,220346,620346,ff,Dev map.Carrier129,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,540,543,1,0,0,,220346,620346,ff,Dev map.Carrier128,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,544,547,1,0,0,,220346,620346,ff,Dev map.Carrier131,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,548,551,1,0,0,,220346,620346,ff,Dev map.Carrier130,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,552,555,1,0,0,,220346,620346,ff,Dev map.Carrier133,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,556,559,1,0,0,,220346,620346,ff,Dev map.Carrier132,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,560,563,1,0,0,,220346,620346,ff,Dev map.Carrier135,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,564,567,1,0,0,,220346,620346,ff,Dev map.Carrier134,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,568,571,1,0,0,,220346,620346,ff,Dev map.Carrier137,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,572,575,1,0,0,,220346,620346,ff,Dev map.Carrier136,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,576,579,1,0,0,,220346,620346,ff,Dev map.Carrier139,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,580,583,1,0,0,,220346,620346,ff,Dev map.Carrier138,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,584,587,1,0,0,,220346,620346,ff,Dev map.Carrier141,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,588,591,1,0,0,,220346,620346,ff,Dev map.Carrier140,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,592,595,1,0,0,,220346,620346,ff,Dev map.Carrier143,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,596,599,1,0,0,,220346,620346,ff,Dev map.Carrier142,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,600,603,1,0,0,,220346,620346,ff,Dev map.Carrier145,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,604,607,1,0,0,,220346,620346,ff,Dev map.Carrier144,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,608,611,1,0,0,,220346,620346,ff,Dev map.Carrier147,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,612,615,1,0,0,,220346,620346,ff,Dev map.Carrier146,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,616,619,1,0,0,,220346,620346,ff,Dev map.Carrier149,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,620,623,1,0,0,,220346,620346,ff,Dev map.Carrier148,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,624,627,1,0,0,,220346,620346,ff,Dev map.Carrier151,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,628,631,1,0,0,,220346,620346,ff,Dev map.Carrier150,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,632,635,1,0,0,,220346,620346,ff,Dev map.Carrier153,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,636,639,1,0,0,,220346,620346,ff,Dev map.Carrier152,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,640,643,1,0,0,,220346,620346,ff,Dev map.Carrier155,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,644,647,1,0,0,,220346,620346,ff,Dev map.Carrier154,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,648,651,1,0,0,,220346,620346,ff,Dev map.Carrier157,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,652,655,1,0,0,,220346,620346,ff,Dev map.Carrier156,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,656,659,1,0,0,,220346,620346,ff,Dev map.Carrier159,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,660,663,1,0,0,,220346,620346,ff,Dev map.Carrier158,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,664,667,1,0,0,,220346,620346,ff,Dev map.Carrier161,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,668,671,1,0,0,,220346,620346,ff,Dev map.Carrier160,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,672,675,1,0,0,,220346,620346,ff,Dev map.Carrier163,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,676,679,1,0,0,,220346,620346,ff,Dev map.Carrier162,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,680,683,1,0,0,,220346,620346,ff,Dev map.Carrier165,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,684,687,1,0,0,,220346,620346,ff,Dev map.Carrier164,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,688,691,1,0,0,,220346,620346,ff,Dev map.Carrier167,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,692,695,1,0,0,,220346,620346,ff,Dev map.Carrier166,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,696,699,1,0,0,,220346,620346,ff,Dev map.Carrier169,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,700,703,1,0,0,,220346,620346,ff,Dev map.Carrier168,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,704,707,1,0,0,,220346,620346,ff,Dev map.Carrier171,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,708,711,1,0,0,,220346,620346,ff,Dev map.Carrier170,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,712,715,1,0,0,,220346,620346,ff,Dev map.Carrier173,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,716,719,1,0,0,,220346,620346,ff,Dev map.Carrier172,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,720,723,1,0,0,,220346,620346,ff,Dev map.Carrier175,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,724,727,1,0,0,,220346,620346,ff,Dev map.Carrier174,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,728,731,1,0,0,,220346,620346,ff,Dev map.Carrier177,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,732,735,1,0,0,,220346,620346,ff,Dev map.Carrier176,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,736,739,1,0,0,,220346,620346,ff,Dev map.Carrier179,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,740,743,1,0,0,,220346,620346,ff,Dev map.Carrier178,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,744,747,1,0,0,,220346,620346,ff,Dev map.Carrier181,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,748,751,1,0,0,,220346,620346,ff,Dev map.Carrier180,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,752,755,1,0,0,,220346,620346,ff,Dev map.Carrier183,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,756,759,1,0,0,,220346,620346,ff,Dev map.Carrier182,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,760,763,1,0,0,,220346,620346,ff,Dev map.Carrier185,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,764,767,1,0,0,,220346,620346,ff,Dev map.Carrier184,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,768,771,1,0,0,,220346,620346,ff,Dev map.Carrier187,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,772,775,1,0,0,,220346,620346,ff,Dev map.Carrier186,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,776,779,1,0,0,,220346,620346,ff,Dev map.Carrier189,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,780,783,1,0,0,,220346,620346,ff,Dev map.Carrier188,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,784,787,1,0,0,,220346,620346,ff,Dev map.Carrier191,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,788,791,1,0,0,,220346,620346,ff,Dev map.Carrier190,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,792,795,1,0,0,,220346,620346,ff,Dev map.Carrier193,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,796,799,1,0,0,,220346,620346,ff,Dev map.Carrier192,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,800,803,1,0,0,,220346,620346,ff,Dev map.Carrier195,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,804,807,1,0,0,,220346,620346,ff,Dev map.Carrier194,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,808,811,1,0,0,,220346,620346,ff,Dev map.Carrier197,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,812,815,1,0,0,,220346,620346,ff,Dev map.Carrier196,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,816,819,1,0,0,,220346,620346,ff,Dev map.Carrier199,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,820,823,1,0,0,,220346,620346,ff,Dev map.Carrier198,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,824,827,1,0,0,,220346,620346,ff,Dev map.Carrier201,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,828,831,1,0,0,,220346,620346,ff,Dev map.Carrier200,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,832,835,1,0,0,,220346,620346,ff,Dev map.Carrier203,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,836,839,1,0,0,,220346,620346,ff,Dev map.Carrier202,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,840,843,1,0,0,,220346,620346,ff,Dev map.Carrier205,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,844,847,1,0,0,,220346,620346,ff,Dev map.Carrier204,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,848,851,1,0,0,,220346,620346,ff,Dev map.Carrier207,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,852,855,1,0,0,,220346,620346,ff,Dev map.Carrier206,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,856,859,1,0,0,,220346,620346,ff,Dev map.Carrier209,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,860,863,1,0,0,,220346,620346,ff,Dev map.Carrier208,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,864,867,1,0,0,,220346,620346,ff,Dev map.Carrier211,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,868,871,1,0,0,,220346,620346,ff,Dev map.Carrier210,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,872,875,1,0,0,,220346,620346,ff,Dev map.Carrier213,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,876,879,1,0,0,,220346,620346,ff,Dev map.Carrier212,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,880,883,1,0,0,,220346,620346,ff,Dev map.Carrier215,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,884,887,1,0,0,,220346,620346,ff,Dev map.Carrier214,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,888,891,1,0,0,,220346,620346,ff,Dev map.Carrier217,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,892,895,1,0,0,,220346,620346,ff,Dev map.Carrier216,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,896,899,1,0,0,,220346,620346,ff,Dev map.Carrier219,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,900,903,1,0,0,,220346,620346,ff,Dev map.Carrier218,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,904,907,1,0,0,,220346,620346,ff,Dev map.Carrier221,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,908,911,1,0,0,,220346,620346,ff,Dev map.Carrier220,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,912,915,1,0,0,,220346,620346,ff,Dev map.Carrier223,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,916,919,1,0,0,,220346,620346,ff,Dev map.Carrier222,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,920,923,1,0,0,,220346,620346,ff,Dev map.Carrier225,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,924,927,1,0,0,,220346,620346,ff,Dev map.Carrier224,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,928,931,1,0,0,,220346,620346,ff,Dev map.Carrier227,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,932,935,1,0,0,,220346,620346,ff,Dev map.Carrier226,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,936,939,1,0,0,,220346,620346,ff,Dev map.Carrier229,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,940,943,1,0,0,,220346,620346,ff,Dev map.Carrier228,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,944,947,1,0,0,,220346,620346,ff,Dev map.Carrier231,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,948,951,1,0,0,,220346,620346,ff,Dev map.Carrier230,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,952,955,1,0,0,,220346,620346,ff,Dev map.Carrier233,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,956,959,1,0,0,,220346,620346,ff,Dev map.Carrier232,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,960,963,1,0,0,,220346,620346,ff,Dev map.Carrier235,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,964,967,1,0,0,,220346,620346,ff,Dev map.Carrier234,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,968,971,1,0,0,,220346,620346,ff,Dev map.Carrier237,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,972,975,1,0,0,,220346,620346,ff,Dev map.Carrier236,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,976,979,1,0,0,,220346,620346,ff,Dev map.Carrier239,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,980,983,1,0,0,,220346,620346,ff,Dev map.Carrier238,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,984,987,1,0,0,,220346,620346,ff,Dev map.Carrier241,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,988,991,1,0,0,,220346,620346,ff,Dev map.Carrier240,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,992,995,1,0,0,,220346,620346,ff,Dev map.Carrier243,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,996,999,1,0,0,,220346,620346,ff,Dev map.Carrier242,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1000,1003,1,0,0,,220346,620346,ff,Dev map.Carrier245,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1004,1007,1,0,0,,220346,620346,ff,Dev map.Carrier244,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1008,1011,1,0,0,,220346,620346,ff,Dev map.Carrier247,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1012,1015,1,0,0,,220346,620346,ff,Dev map.Carrier246,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1016,1019,1,0,0,,220346,620346,ff,Dev map.Carrier249,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1020,1023,1,0,0,,220346,620346,ff,Dev map.Carrier248,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1024,1027,1,0,0,,220346,620346,ff,Dev map.Carrier251,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1028,1031,1,0,0,,220346,620346,ff,Dev map.Carrier250,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1032,1035,1,0,0,,220346,620346,ff,Dev map.Carrier253,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1036,1039,1,0,0,,220346,620346,ff,Dev map.Carrier252,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1040,1043,1,0,0,,220346,620346,ff,Dev map.Carrier255,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1044,1047,1,0,0,,220346,620346,ff,Dev map.Carrier254,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1048,1051,1,0,0,,220346,620346,ff,Dev map.Carrier257,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1052,1055,1,0,0,,220346,620346,ff,Dev map.Carrier256,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1056,1059,1,0,0,,220346,620346,ff,Dev map.Carrier259,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1060,1063,1,0,0,,220346,620346,ff,Dev map.Carrier258,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1064,1067,1,0,0,,220346,620346,ff,Dev map.Carrier261,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1068,1071,1,0,0,,220346,620346,ff,Dev map.Carrier260,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1072,1075,1,0,0,,220346,620346,ff,Dev map.Carrier263,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1076,1079,1,0,0,,220346,620346,ff,Dev map.Carrier262,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1080,1083,1,0,0,,220346,620346,ff,Dev map.Carrier265,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1084,1087,1,0,0,,220346,620346,ff,Dev map.Carrier264,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1088,1091,1,0,0,,220346,620346,ff,Dev map.Carrier267,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1092,1095,1,0,0,,220346,620346,ff,Dev map.Carrier266,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1096,1099,1,0,0,,220346,620346,ff,Dev map.Carrier269,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1100,1103,1,0,0,,220346,620346,ff,Dev map.Carrier268,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1104,1107,1,0,0,,220346,620346,ff,Dev map.Carrier271,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1108,1111,1,0,0,,220346,620346,ff,Dev map.Carrier270,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1112,1115,1,0,0,,220346,620346,ff,Dev map.Carrier273,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1116,1119,1,0,0,,220346,620346,ff,Dev map.Carrier272,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1120,1123,1,0,0,,220346,620346,ff,Dev map.Carrier275,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1124,1127,1,0,0,,220346,620346,ff,Dev map.Carrier274,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1128,1131,1,0,0,,220346,620346,ff,Dev map.Carrier277,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1132,1135,1,0,0,,220346,620346,ff,Dev map.Carrier276,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1136,1139,1,0,0,,220346,620346,ff,Dev map.Carrier279,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1140,1143,1,0,0,,220346,620346,ff,Dev map.Carrier278,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1144,1147,1,0,0,,220346,620346,ff,Dev map.Carrier281,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1148,1151,1,0,0,,220346,620346,ff,Dev map.Carrier280,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1152,1155,1,0,0,,220346,620346,ff,Dev map.Carrier283,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1156,1159,1,0,0,,220346,620346,ff,Dev map.Carrier282,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1160,1163,1,0,0,,220346,620346,ff,Dev map.Carrier285,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1164,1167,1,0,0,,220346,620346,ff,Dev map.Carrier284,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1168,1171,1,0,0,,220346,620346,ff,Dev map.Carrier287,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1172,1175,1,0,0,,220346,620346,ff,Dev map.Carrier286,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1176,1179,1,0,0,,220346,620346,ff,Dev map.Carrier289,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1180,1183,1,0,0,,220346,620346,ff,Dev map.Carrier288,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1184,1187,1,0,0,,220346,620346,ff,Dev map.Carrier291,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1188,1191,1,0,0,,220346,620346,ff,Dev map.Carrier290,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1192,1195,1,0,0,,220346,620346,ff,Dev map.Carrier293,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1196,1199,1,0,0,,220346,620346,ff,Dev map.Carrier292,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1200,1203,1,0,0,,220346,620346,ff,Dev map.Carrier295,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1204,1207,1,0,0,,220346,620346,ff,Dev map.Carrier294,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1208,1211,1,0,0,,220346,620346,ff,Dev map.Carrier297,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1212,1215,1,0,0,,220346,620346,ff,Dev map.Carrier296,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1216,1219,1,0,0,,220346,620346,ff,Dev map.Carrier299,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1220,1223,1,0,0,,220346,620346,ff,Dev map.Carrier298,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1224,1227,1,0,0,,220346,620346,ff,Dev map.Carrier301,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1228,1231,1,0,0,,220346,620346,ff,Dev map.Carrier300,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1232,1235,1,0,0,,220346,620346,ff,Dev map.Carrier303,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1236,1239,1,0,0,,220346,620346,ff,Dev map.Carrier302,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1240,1243,1,0,0,,220346,620346,ff,Dev map.Carrier305,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1244,1247,1,0,0,,220346,620346,ff,Dev map.Carrier304,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1248,1251,1,0,0,,220346,620346,ff,Dev map.Carrier307,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1252,1255,1,0,0,,220346,620346,ff,Dev map.Carrier306,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1256,1259,1,0,0,,220346,620346,ff,Dev map.Carrier309,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1260,1263,1,0,0,,220346,620346,ff,Dev map.Carrier308,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1264,1267,1,0,0,,220346,620346,ff,Dev map.Carrier311,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1268,1271,1,0,0,,220346,620346,ff,Dev map.Carrier310,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1272,1275,1,0,0,,220346,620346,ff,Dev map.Carrier313,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1276,1279,1,0,0,,220346,620346,ff,Dev map.Carrier312,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1280,1283,1,0,0,,220346,620346,ff,Dev map.Carrier315,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1284,1287,1,0,0,,220346,620346,ff,Dev map.Carrier314,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1288,1291,1,0,0,,220346,620346,ff,Dev map.Carrier317,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1292,1295,1,0,0,,220346,620346,ff,Dev map.Carrier316,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1296,1299,1,0,0,,220346,620346,ff,Dev map.Carrier319,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1300,1303,1,0,0,,220346,620346,ff,Dev map.Carrier318,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1304,1307,1,0,0,,220346,620346,ff,Dev map.Carrier321,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1308,1311,1,0,0,,220346,620346,ff,Dev map.Carrier320,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1312,1315,1,0,0,,220346,620346,ff,Dev map.Carrier323,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1316,1319,1,0,0,,220346,620346,ff,Dev map.Carrier322,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1320,1323,1,0,0,,220346,620346,ff,Dev map.Carrier325,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1324,1327,1,0,0,,220346,620346,ff,Dev map.Carrier324,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1328,1331,1,0,0,,220346,620346,ff,Dev map.Carrier327,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1332,1335,1,0,0,,220346,620346,ff,Dev map.Carrier326,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1336,1339,1,0,0,,220346,620346,ff,Dev map.Carrier329,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1340,1343,1,0,0,,220346,620346,ff,Dev map.Carrier328,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1344,1347,1,0,0,,220346,620346,ff,Dev map.Carrier331,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1348,1351,1,0,0,,220346,620346,ff,Dev map.Carrier330,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1352,1355,1,0,0,,220346,620346,ff,Dev map.Carrier333,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1356,1359,1,0,0,,220346,620346,ff,Dev map.Carrier332,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1360,1363,1,0,0,,220346,620346,ff,Dev map.Carrier335,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1364,1367,1,0,0,,220346,620346,ff,Dev map.Carrier334,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1368,1371,1,0,0,,220346,620346,ff,Dev map.Carrier337,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1372,1375,1,0,0,,220346,620346,ff,Dev map.Carrier336,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1376,1379,1,0,0,,220346,620346,ff,Dev map.Carrier339,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1380,1383,1,0,0,,220346,620346,ff,Dev map.Carrier338,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1384,1387,1,0,0,,220346,620346,ff,Dev map.Carrier341,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1388,1391,1,0,0,,220346,620346,ff,Dev map.Carrier340,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1392,1395,1,0,0,,220346,620346,ff,Dev map.Carrier343,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1396,1399,1,0,0,,220346,620346,ff,Dev map.Carrier342,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1400,1403,1,0,0,,220346,620346,ff,Dev map.Carrier345,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1404,1407,1,0,0,,220346,620346,ff,Dev map.Carrier344,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1408,1411,1,0,0,,220346,620346,ff,Dev map.Carrier347,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1412,1415,1,0,0,,220346,620346,ff,Dev map.Carrier346,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1416,1419,1,0,0,,220346,620346,ff,Dev map.Carrier349,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1420,1423,1,0,0,,220346,620346,ff,Dev map.Carrier348,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1424,1427,1,0,0,,220346,620346,ff,Dev map.Carrier351,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1428,1431,1,0,0,,220346,620346,ff,Dev map.Carrier350,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1432,1435,1,0,0,,220346,620346,ff,Dev map.Carrier353,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1436,1439,1,0,0,,220346,620346,ff,Dev map.Carrier352,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1440,1443,1,0,0,,220346,620346,ff,Dev map.Carrier355,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1444,1447,1,0,0,,220346,620346,ff,Dev map.Carrier354,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1448,1451,1,0,0,,220346,620346,ff,Dev map.Carrier357,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1452,1455,1,0,0,,220346,620346,ff,Dev map.Carrier356,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1456,1459,1,0,0,,220346,620346,ff,Dev map.Carrier359,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1460,1463,1,0,0,,220346,620346,ff,Dev map.Carrier358,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1464,1467,1,0,0,,220346,620346,ff,Dev map.Carrier361,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1468,1471,1,0,0,,220346,620346,ff,Dev map.Carrier360,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1472,1475,1,0,0,,220346,620346,ff,Dev map.Carrier363,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1476,1479,1,0,0,,220346,620346,ff,Dev map.Carrier362,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1480,1483,1,0,0,,220346,620346,ff,Dev map.Carrier365,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1484,1487,1,0,0,,220346,620346,ff,Dev map.Carrier364,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1488,1491,1,0,0,,220346,620346,ff,Dev map.Carrier367,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1492,1495,1,0,0,,220346,620346,ff,Dev map.Carrier366,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1496,1499,1,0,0,,220346,620346,ff,Dev map.Carrier369,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1500,1503,1,0,0,,220346,620346,ff,Dev map.Carrier368,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1504,1507,1,0,0,,220346,620346,ff,Dev map.Carrier371,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1508,1511,1,0,0,,220346,620346,ff,Dev map.Carrier370,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1512,1515,1,0,0,,220346,620346,ff,Dev map.Carrier373,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1516,1519,1,0,0,,220346,620346,ff,Dev map.Carrier372,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1520,1523,1,0,0,,220346,620346,ff,Dev map.Carrier375,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1524,1527,1,0,0,,220346,620346,ff,Dev map.Carrier374,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1528,1531,1,0,0,,220346,620346,ff,Dev map.Carrier377,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1532,1535,1,0,0,,220346,620346,ff,Dev map.Carrier376,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1536,1539,1,0,0,,220346,620346,ff,Dev map.Carrier379,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1540,1543,1,0,0,,220346,620346,ff,Dev map.Carrier378,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1544,1547,1,0,0,,220346,620346,ff,Dev map.Carrier381,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1548,1551,1,0,0,,220346,620346,ff,Dev map.Carrier380,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1552,1555,1,0,0,,220346,620346,ff,Dev map.Carrier383,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1556,1559,1,0,0,,220346,620346,ff,Dev map.Carrier382,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1560,1563,1,0,0,,220346,620346,ff,Dev map.Carrier385,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1564,1567,1,0,0,,220346,620346,ff,Dev map.Carrier384,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1568,1571,1,0,0,,220346,620346,ff,Dev map.Carrier387,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1572,1575,1,0,0,,220346,620346,ff,Dev map.Carrier386,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1576,1579,1,0,0,,220346,620346,ff,Dev map.Carrier389,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1580,1583,1,0,0,,220346,620346,ff,Dev map.Carrier388,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1584,1587,1,0,0,,220346,620346,ff,Dev map.Carrier391,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1588,1591,1,0,0,,220346,620346,ff,Dev map.Carrier390,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1592,1595,1,0,0,,220346,620346,ff,Dev map.Carrier393,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1596,1599,1,0,0,,220346,620346,ff,Dev map.Carrier392,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1600,1603,1,0,0,,220346,620346,ff,Dev map.Carrier395,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1604,1607,1,0,0,,220346,620346,ff,Dev map.Carrier394,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1608,1611,1,0,0,,220346,620346,ff,Dev map.Carrier397,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1612,1615,1,0,0,,220346,620346,ff,Dev map.Carrier396,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1616,1619,1,0,0,,220346,620346,ff,Dev map.Carrier399,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1620,1623,1,0,0,,220346,620346,ff,Dev map.Carrier398,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1624,1627,1,0,0,,220346,620346,ff,Dev map.Carrier401,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1628,1631,1,0,0,,220346,620346,ff,Dev map.Carrier400,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1632,1635,1,0,0,,220346,620346,ff,Dev map.Carrier403,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1636,1639,1,0,0,,220346,620346,ff,Dev map.Carrier402,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1640,1643,1,0,0,,220346,620346,ff,Dev map.Carrier405,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1644,1647,1,0,0,,220346,620346,ff,Dev map.Carrier404,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1648,1651,1,0,0,,220346,620346,ff,Dev map.Carrier407,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1652,1655,1,0,0,,220346,620346,ff,Dev map.Carrier406,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1656,1659,1,0,0,,220346,620346,ff,Dev map.Carrier409,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1660,1663,1,0,0,,220346,620346,ff,Dev map.Carrier408,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1664,1667,1,0,0,,220346,620346,ff,Dev map.Carrier411,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1668,1671,1,0,0,,220346,620346,ff,Dev map.Carrier410,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1672,1675,1,0,0,,220346,620346,ff,Dev map.Carrier413,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1676,1679,1,0,0,,220346,620346,ff,Dev map.Carrier412,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1680,1683,1,0,0,,220346,620346,ff,Dev map.Carrier415,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1684,1687,1,0,0,,220346,620346,ff,Dev map.Carrier414,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1688,1691,1,0,0,,220346,620346,ff,Dev map.Carrier417,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1692,1695,1,0,0,,220346,620346,ff,Dev map.Carrier416,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1696,1699,1,0,0,,220346,620346,ff,Dev map.Carrier419,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1700,1703,1,0,0,,220346,620346,ff,Dev map.Carrier418,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1704,1707,1,0,0,,220346,620346,ff,Dev map.Carrier421,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1708,1711,1,0,0,,220346,620346,ff,Dev map.Carrier420,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1712,1715,1,0,0,,220346,620346,ff,Dev map.Carrier423,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1716,1719,1,0,0,,220346,620346,ff,Dev map.Carrier422,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1720,1723,1,0,0,,220346,620346,ff,Dev map.Carrier425,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1724,1727,1,0,0,,220346,620346,ff,Dev map.Carrier424,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1728,1731,1,0,0,,220346,620346,ff,Dev map.Carrier427,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1732,1735,1,0,0,,220346,620346,ff,Dev map.Carrier426,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1736,1739,1,0,0,,220346,620346,ff,Dev map.Carrier429,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1740,1743,1,0,0,,220346,620346,ff,Dev map.Carrier428,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1744,1747,1,0,0,,220346,620346,ff,Dev map.Carrier431,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1748,1751,1,0,0,,220346,620346,ff,Dev map.Carrier430,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1752,1755,1,0,0,,220346,620346,ff,Dev map.Carrier433,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1756,1759,1,0,0,,220346,620346,ff,Dev map.Carrier432,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1760,1763,1,0,0,,220346,620346,ff,Dev map.Carrier435,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1764,1767,1,0,0,,220346,620346,ff,Dev map.Carrier434,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1768,1771,1,0,0,,220346,620346,ff,Dev map.Carrier437,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1772,1775,1,0,0,,220346,620346,ff,Dev map.Carrier436,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1776,1779,1,0,0,,220346,620346,ff,Dev map.Carrier439,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1780,1783,1,0,0,,220346,620346,ff,Dev map.Carrier438,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1784,1787,1,0,0,,220346,620346,ff,Dev map.Carrier441,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1788,1791,1,0,0,,220346,620346,ff,Dev map.Carrier440,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1792,1795,1,0,0,,220346,620346,ff,Dev map.Carrier443,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1796,1799,1,0,0,,220346,620346,ff,Dev map.Carrier442,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1800,1803,1,0,0,,220346,620346,ff,Dev map.Carrier445,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1804,1807,1,0,0,,220346,620346,ff,Dev map.Carrier444,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1808,1811,1,0,0,,220346,620346,ff,Dev map.Carrier447,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1812,1815,1,0,0,,220346,620346,ff,Dev map.Carrier446,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1816,1819,1,0,0,,220346,620346,ff,Dev map.Carrier449,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1820,1823,1,0,0,,220346,620346,ff,Dev map.Carrier448,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1824,1827,1,0,0,,220346,620346,ff,Dev map.Carrier451,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1828,1831,1,0,0,,220346,620346,ff,Dev map.Carrier450,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1832,1835,1,0,0,,220346,620346,ff,Dev map.Carrier453,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1836,1839,1,0,0,,220346,620346,ff,Dev map.Carrier452,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1840,1843,1,0,0,,220346,620346,ff,Dev map.Carrier455,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1844,1847,1,0,0,,220346,620346,ff,Dev map.Carrier454,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1848,1851,1,0,0,,220346,620346,ff,Dev map.Carrier457,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1852,1855,1,0,0,,220346,620346,ff,Dev map.Carrier456,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1856,1859,1,0,0,,220346,620346,ff,Dev map.Carrier459,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1860,1863,1,0,0,,220346,620346,ff,Dev map.Carrier458,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1864,1867,1,0,0,,220346,620346,ff,Dev map.Carrier461,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1868,1871,1,0,0,,220346,620346,ff,Dev map.Carrier460,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1872,1875,1,0,0,,220346,620346,ff,Dev map.Carrier463,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1876,1879,1,0,0,,220346,620346,ff,Dev map.Carrier462,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1880,1883,1,0,0,,220346,620346,ff,Dev map.Carrier465,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1884,1887,1,0,0,,220346,620346,ff,Dev map.Carrier464,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1888,1891,1,0,0,,220346,620346,ff,Dev map.Carrier467,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1892,1895,1,0,0,,220346,620346,ff,Dev map.Carrier466,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1896,1899,1,0,0,,220346,620346,ff,Dev map.Carrier469,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1900,1903,1,0,0,,220346,620346,ff,Dev map.Carrier468,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1904,1907,1,0,0,,220346,620346,ff,Dev map.Carrier471,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1908,1911,1,0,0,,220346,620346,ff,Dev map.Carrier470,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1912,1915,1,0,0,,220346,620346,ff,Dev map.Carrier473,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1916,1919,1,0,0,,220346,620346,ff,Dev map.Carrier472,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1920,1923,1,0,0,,220346,620346,ff,Dev map.Carrier475,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1924,1927,1,0,0,,220346,620346,ff,Dev map.Carrier474,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1928,1931,1,0,0,,220346,620346,ff,Dev map.Carrier477,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1932,1935,1,0,0,,220346,620346,ff,Dev map.Carrier476,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1936,1939,1,0,0,,220346,620346,ff,Dev map.Carrier479,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1940,1943,1,0,0,,220346,620346,ff,Dev map.Carrier478,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1944,1947,1,0,0,,220346,620346,ff,Dev map.Carrier481,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1948,1951,1,0,0,,220346,620346,ff,Dev map.Carrier480,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1952,1955,1,0,0,,220346,620346,ff,Dev map.Carrier483,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1956,1959,1,0,0,,220346,620346,ff,Dev map.Carrier482,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1960,1963,1,0,0,,220346,620346,ff,Dev map.Carrier485,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1964,1967,1,0,0,,220346,620346,ff,Dev map.Carrier484,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1968,1971,1,0,0,,220346,620346,ff,Dev map.Carrier487,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1972,1975,1,0,0,,220346,620346,ff,Dev map.Carrier486,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1976,1979,1,0,0,,220346,620346,ff,Dev map.Carrier489,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1980,1983,1,0,0,,220346,620346,ff,Dev map.Carrier488,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1984,1987,1,0,0,,220346,620346,ff,Dev map.Carrier491,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1988,1991,1,0,0,,220346,620346,ff,Dev map.Carrier490,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1992,1995,1,0,0,,220346,620346,ff,Dev map.Carrier493,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,1996,1999,1,0,0,,220346,620346,ff,Dev map.Carrier492,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2000,2003,1,0,0,,220346,620346,ff,Dev map.Carrier495,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2004,2007,1,0,0,,220346,620346,ff,Dev map.Carrier494,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2008,2011,1,0,0,,220346,620346,ff,Dev map.Carrier497,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2012,2015,1,0,0,,220346,620346,ff,Dev map.Carrier496,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2016,2019,1,0,0,,220346,620346,ff,Dev map.Carrier499,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2020,2023,1,0,0,,220346,620346,ff,Dev map.Carrier498,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2024,2027,1,0,0,,220346,620346,ff,Dev map.Carrier501,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2028,2031,1,0,0,,220346,620346,ff,Dev map.Carrier500,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2032,2035,1,0,0,,220346,620346,ff,Dev map.Carrier503,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2036,2039,1,0,0,,220346,620346,ff,Dev map.Carrier502,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2040,2043,1,0,0,,220346,620346,ff,Dev map.Carrier505,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2044,2047,1,0,0,,220346,620346,ff,Dev map.Carrier504,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2048,2051,1,0,0,,220346,620346,ff,Dev map.Carrier507,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2052,2055,1,0,0,,220346,620346,ff,Dev map.Carrier506,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2056,2059,1,0,0,,220346,620346,ff,Dev map.Carrier509,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2060,2063,1,0,0,,220346,620346,ff,Dev map.Carrier508,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2064,2067,1,0,0,,220346,620346,ff,Dev map.Carrier511,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2068,2071,1,0,0,,220346,620346,ff,Dev map.Carrier510,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2072,2075,1,0,0,,220346,620346,ff,Dev map.Carrier513,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2076,2079,1,0,0,,220346,620346,ff,Dev map.Carrier512,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2080,2083,1,0,0,,220346,620346,ff,Dev map.Carrier515,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2084,2087,1,0,0,,220346,620346,ff,Dev map.Carrier514,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2088,2091,1,0,0,,220346,620346,ff,Dev map.Carrier517,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2092,2095,1,0,0,,220346,620346,ff,Dev map.Carrier516,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2096,2099,1,0,0,,220346,620346,ff,Dev map.Carrier519,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2100,2103,1,0,0,,220346,620346,ff,Dev map.Carrier518,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2104,2107,1,0,0,,220346,620346,ff,Dev map.Carrier521,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2108,2111,1,0,0,,220346,620346,ff,Dev map.Carrier520,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2112,2115,1,0,0,,220346,620346,ff,Dev map.Carrier523,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2116,2119,1,0,0,,220346,620346,ff,Dev map.Carrier522,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2120,2123,1,0,0,,220346,620346,ff,Dev map.Carrier525,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2124,2127,1,0,0,,220346,620346,ff,Dev map.Carrier524,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2128,2131,1,0,0,,220346,620346,ff,Dev map.Carrier527,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2132,2135,1,0,0,,220346,620346,ff,Dev map.Carrier526,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2136,2139,1,0,0,,220346,620346,ff,Dev map.Carrier529,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2140,2143,1,0,0,,220346,620346,ff,Dev map.Carrier528,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2144,2147,1,0,0,,220346,620346,ff,Dev map.Carrier531,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2148,2151,1,0,0,,220346,620346,ff,Dev map.Carrier530,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2152,2155,1,0,0,,220346,620346,ff,Dev map.Carrier533,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2156,2159,1,0,0,,220346,620346,ff,Dev map.Carrier532,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2160,2163,1,0,0,,220346,620346,ff,Dev map.Carrier535,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2164,2167,1,0,0,,220346,620346,ff,Dev map.Carrier534,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2168,2171,1,0,0,,220346,620346,ff,Dev map.Carrier537,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2172,2175,1,0,0,,220346,620346,ff,Dev map.Carrier536,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2176,2179,1,0,0,,220346,620346,ff,Dev map.Carrier539,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2180,2183,1,0,0,,220346,620346,ff,Dev map.Carrier538,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2184,2187,1,0,0,,220346,620346,ff,Dev map.Carrier541,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2188,2191,1,0,0,,220346,620346,ff,Dev map.Carrier540,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2192,2195,1,0,0,,220346,620346,ff,Dev map.Carrier543,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2196,2199,1,0,0,,220346,620346,ff,Dev map.Carrier542,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2200,2203,1,0,0,,220346,620346,ff,Dev map.Carrier545,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2204,2207,1,0,0,,220346,620346,ff,Dev map.Carrier544,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2208,2211,1,0,0,,220346,620346,ff,Dev map.Carrier547,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2212,2215,1,0,0,,220346,620346,ff,Dev map.Carrier546,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2216,2219,1,0,0,,220346,620346,ff,Dev map.Carrier549,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2220,2223,1,0,0,,220346,620346,ff,Dev map.Carrier548,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2224,2227,1,0,0,,220346,620346,ff,Dev map.Carrier551,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2228,2231,1,0,0,,220346,620346,ff,Dev map.Carrier550,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2232,2235,1,0,0,,220346,620346,ff,Dev map.Carrier553,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2236,2239,1,0,0,,220346,620346,ff,Dev map.Carrier552,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2240,2243,1,0,0,,220346,620346,ff,Dev map.Carrier555,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2244,2247,1,0,0,,220346,620346,ff,Dev map.Carrier554,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2248,2251,1,0,0,,220346,620346,ff,Dev map.Carrier557,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2252,2255,1,0,0,,220346,620346,ff,Dev map.Carrier556,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2256,2259,1,0,0,,220346,620346,ff,Dev map.Carrier559,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2260,2263,1,0,0,,220346,620346,ff,Dev map.Carrier558,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2264,2267,1,0,0,,220346,620346,ff,Dev map.Carrier561,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2268,2271,1,0,0,,220346,620346,ff,Dev map.Carrier560,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2272,2275,1,0,0,,220346,620346,ff,Dev map.Carrier563,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2276,2279,1,0,0,,220346,620346,ff,Dev map.Carrier562,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2280,2283,1,0,0,,220346,620346,ff,Dev map.Carrier565,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2284,2287,1,0,0,,220346,620346,ff,Dev map.Carrier564,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2288,2291,1,0,0,,220346,620346,ff,Dev map.Carrier567,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2292,2295,1,0,0,,220346,620346,ff,Dev map.Carrier566,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2296,2299,1,0,0,,220346,620346,ff,Dev map.Carrier569,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2300,2303,1,0,0,,220346,620346,ff,Dev map.Carrier568,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2304,2307,1,0,0,,220346,620346,ff,Dev map.Carrier571,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2308,2311,1,0,0,,220346,620346,ff,Dev map.Carrier570,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2312,2315,1,0,0,,220346,620346,ff,Dev map.Carrier573,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2316,2319,1,0,0,,220346,620346,ff,Dev map.Carrier572,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2320,2323,1,0,0,,220346,620346,ff,Dev map.Carrier575,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2324,2327,1,0,0,,220346,620346,ff,Dev map.Carrier574,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2328,2331,1,0,0,,220346,620346,ff,Dev map.Carrier577,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2332,2335,1,0,0,,220346,620346,ff,Dev map.Carrier576,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2336,2339,1,0,0,,220346,620346,ff,Dev map.Carrier579,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2340,2343,1,0,0,,220346,620346,ff,Dev map.Carrier578,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2344,2347,1,0,0,,220346,620346,ff,Dev map.Carrier581,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2348,2351,1,0,0,,220346,620346,ff,Dev map.Carrier580,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2352,2355,1,0,0,,220346,620346,ff,Dev map.Carrier583,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2356,2359,1,0,0,,220346,620346,ff,Dev map.Carrier582,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2360,2363,1,0,0,,220346,620346,ff,Dev map.Carrier585,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2364,2367,1,0,0,,220346,620346,ff,Dev map.Carrier584,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2368,2371,1,0,0,,220346,620346,ff,Dev map.Carrier587,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2372,2375,1,0,0,,220346,620346,ff,Dev map.Carrier586,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2376,2379,1,0,0,,220346,620346,ff,Dev map.Carrier589,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2380,2383,1,0,0,,220346,620346,ff,Dev map.Carrier588,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2384,2387,1,0,0,,220346,620346,ff,Dev map.Carrier591,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2388,2391,1,0,0,,220346,620346,ff,Dev map.Carrier590,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2392,2395,1,0,0,,220346,620346,ff,Dev map.Carrier593,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2396,2399,1,0,0,,220346,620346,ff,Dev map.Carrier592,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2400,2403,1,0,0,,220346,620346,ff,Dev map.Carrier595,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2404,2407,1,0,0,,220346,620346,ff,Dev map.Carrier594,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2408,2411,1,0,0,,220346,620346,ff,Dev map.Carrier597,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2412,2415,1,0,0,,220346,620346,ff,Dev map.Carrier596,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2416,2419,1,0,0,,220346,620346,ff,Dev map.Carrier599,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2420,2423,1,0,0,,220346,620346,ff,Dev map.Carrier598,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2424,2427,1,0,0,,220346,620346,ff,Dev map.Carrier601,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2428,2431,1,0,0,,220346,620346,ff,Dev map.Carrier600,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2432,2435,1,0,0,,220346,620346,ff,Dev map.Carrier603,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2436,2439,1,0,0,,220346,620346,ff,Dev map.Carrier602,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2440,2443,1,0,0,,220346,620346,ff,Dev map.Carrier605,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2444,2447,1,0,0,,220346,620346,ff,Dev map.Carrier604,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2448,2451,1,0,0,,220346,620346,ff,Dev map.Carrier607,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2452,2455,1,0,0,,220346,620346,ff,Dev map.Carrier606,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2456,2459,1,0,0,,220346,620346,ff,Dev map.Carrier609,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2460,2463,1,0,0,,220346,620346,ff,Dev map.Carrier608,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2464,2467,1,0,0,,220346,620346,ff,Dev map.Carrier611,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2468,2471,1,0,0,,220346,620346,ff,Dev map.Carrier610,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2472,2475,1,0,0,,220346,620346,ff,Dev map.Carrier613,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2476,2479,1,0,0,,220346,620346,ff,Dev map.Carrier612,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2480,2483,1,0,0,,220346,620346,ff,Dev map.Carrier615,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2484,2487,1,0,0,,220346,620346,ff,Dev map.Carrier614,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2488,2491,1,0,0,,220346,620346,ff,Dev map.Carrier617,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2492,2495,1,0,0,,220346,620346,ff,Dev map.Carrier616,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2496,2499,1,0,0,,220346,620346,ff,Dev map.Carrier619,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2500,2503,1,0,0,,220346,620346,ff,Dev map.Carrier618,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2504,2507,1,0,0,,220346,620346,ff,Dev map.Carrier621,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2508,2511,1,0,0,,220346,620346,ff,Dev map.Carrier620,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2512,2515,1,0,0,,220346,620346,ff,Dev map.Carrier623,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2516,2519,1,0,0,,220346,620346,ff,Dev map.Carrier622,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2520,2523,1,0,0,,220346,620346,ff,Dev map.Carrier625,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2524,2527,1,0,0,,220346,620346,ff,Dev map.Carrier624,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2528,2531,1,0,0,,220346,620346,ff,Dev map.Carrier627,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2532,2535,1,0,0,,220346,620346,ff,Dev map.Carrier626,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2536,2539,1,0,0,,220346,620346,ff,Dev map.Carrier629,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2540,2543,1,0,0,,220346,620346,ff,Dev map.Carrier628,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2544,2547,1,0,0,,220346,620346,ff,Dev map.Carrier631,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2548,2551,1,0,0,,220346,620346,ff,Dev map.Carrier630,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2552,2555,1,0,0,,220346,620346,ff,Dev map.Carrier633,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2556,2559,1,0,0,,220346,620346,ff,Dev map.Carrier632,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2560,2563,1,0,0,,220346,620346,ff,Dev map.Carrier635,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2564,2567,1,0,0,,220346,620346,ff,Dev map.Carrier634,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2568,2571,1,0,0,,220346,620346,ff,Dev map.Carrier637,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2572,2575,1,0,0,,220346,620346,ff,Dev map.Carrier636,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2576,2579,1,0,0,,220346,620346,ff,Dev map.Carrier639,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2580,2583,1,0,0,,220346,620346,ff,Dev map.Carrier638,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2584,2587,1,0,0,,220346,620346,ff,Dev map.Carrier641,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2588,2591,1,0,0,,220346,620346,ff,Dev map.Carrier640,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2592,2595,1,0,0,,220346,620346,ff,Dev map.Carrier643,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2596,2599,1,0,0,,220346,620346,ff,Dev map.Carrier642,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2600,2603,1,0,0,,220346,620346,ff,Dev map.Carrier645,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2604,2607,1,0,0,,220346,620346,ff,Dev map.Carrier644,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2608,2611,1,0,0,,220346,620346,ff,Dev map.Carrier647,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2612,2615,1,0,0,,220346,620346,ff,Dev map.Carrier646,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2616,2619,1,0,0,,220346,620346,ff,Dev map.Carrier649,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2620,2623,1,0,0,,220346,620346,ff,Dev map.Carrier648,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2624,2627,1,0,0,,220346,620346,ff,Dev map.Carrier651,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2628,2631,1,0,0,,220346,620346,ff,Dev map.Carrier650,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2632,2635,1,0,0,,220346,620346,ff,Dev map.Carrier653,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2636,2639,1,0,0,,220346,620346,ff,Dev map.Carrier652,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2640,2643,1,0,0,,220346,620346,ff,Dev map.Carrier655,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2644,2647,1,0,0,,220346,620346,ff,Dev map.Carrier654,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2648,2651,1,0,0,,220346,620346,ff,Dev map.Carrier657,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2652,2655,1,0,0,,220346,620346,ff,Dev map.Carrier656,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2656,2659,1,0,0,,220346,620346,ff,Dev map.Carrier659,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2660,2663,1,0,0,,220346,620346,ff,Dev map.Carrier658,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2664,2667,1,0,0,,220346,620346,ff,Dev map.Carrier661,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2668,2671,1,0,0,,220346,620346,ff,Dev map.Carrier660,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2672,2675,1,0,0,,220346,620346,ff,Dev map.Carrier663,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2676,2679,1,0,0,,220346,620346,ff,Dev map.Carrier662,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2680,2683,1,0,0,,220346,620346,ff,Dev map.Carrier665,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2684,2687,1,0,0,,220346,620346,ff,Dev map.Carrier664,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2688,2691,1,0,0,,220346,620346,ff,Dev map.Carrier667,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2692,2695,1,0,0,,220346,620346,ff,Dev map.Carrier666,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2696,2699,1,0,0,,220346,620346,ff,Dev map.Carrier669,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2700,2703,1,0,0,,220346,620346,ff,Dev map.Carrier668,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2704,2707,1,0,0,,220346,620346,ff,Dev map.Carrier671,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2708,2711,1,0,0,,220346,620346,ff,Dev map.Carrier670,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2712,2715,1,0,0,,220346,620346,ff,Dev map.Carrier673,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2716,2719,1,0,0,,220346,620346,ff,Dev map.Carrier672,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2720,2723,1,0,0,,220346,620346,ff,Dev map.Carrier675,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2724,2727,1,0,0,,220346,620346,ff,Dev map.Carrier674,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2728,2731,1,0,0,,220346,620346,ff,Dev map.Carrier677,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2732,2735,1,0,0,,220346,620346,ff,Dev map.Carrier676,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2736,2739,1,0,0,,220346,620346,ff,Dev map.Carrier679,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2740,2743,1,0,0,,220346,620346,ff,Dev map.Carrier678,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2744,2747,1,0,0,,220346,620346,ff,Dev map.Carrier681,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2748,2751,1,0,0,,220346,620346,ff,Dev map.Carrier680,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2752,2755,1,0,0,,220346,620346,ff,Dev map.Carrier683,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2756,2759,1,0,0,,220346,620346,ff,Dev map.Carrier682,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2760,2763,1,0,0,,220346,620346,ff,Dev map.Carrier685,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2764,2767,1,0,0,,220346,620346,ff,Dev map.Carrier684,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2768,2771,1,0,0,,220346,620346,ff,Dev map.Carrier687,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2772,2775,1,0,0,,220346,620346,ff,Dev map.Carrier686,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2776,2779,1,0,0,,220346,620346,ff,Dev map.Carrier689,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2780,2783,1,0,0,,220346,620346,ff,Dev map.Carrier688,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2784,2787,1,0,0,,220346,620346,ff,Dev map.Carrier691,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2788,2791,1,0,0,,220346,620346,ff,Dev map.Carrier690,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2792,2795,1,0,0,,220346,620346,ff,Dev map.Carrier693,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2796,2799,1,0,0,,220346,620346,ff,Dev map.Carrier692,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2800,2803,1,0,0,,220346,620346,ff,Dev map.Carrier695,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2804,2807,1,0,0,,220346,620346,ff,Dev map.Carrier694,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2808,2811,1,0,0,,220346,620346,ff,Dev map.Carrier697,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2812,2815,1,0,0,,220346,620346,ff,Dev map.Carrier696,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2816,2819,1,0,0,,220346,620346,ff,Dev map.Carrier699,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2820,2823,1,0,0,,220346,620346,ff,Dev map.Carrier698,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2824,2827,1,0,0,,220346,620346,ff,Dev map.Carrier701,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2828,2831,1,0,0,,220346,620346,ff,Dev map.Carrier700,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2832,2835,1,0,0,,220346,620346,ff,Dev map.Carrier703,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2836,2839,1,0,0,,220346,620346,ff,Dev map.Carrier702,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2840,2843,1,0,0,,220346,620346,ff,Dev map.Carrier705,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2844,2847,1,0,0,,220346,620346,ff,Dev map.Carrier704,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2848,2851,1,0,0,,220346,620346,ff,Dev map.Carrier707,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2852,2855,1,0,0,,220346,620346,ff,Dev map.Carrier706,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2856,2859,1,0,0,,220346,620346,ff,Dev map.Carrier709,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2860,2863,1,0,0,,220346,620346,ff,Dev map.Carrier708,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2864,2867,1,0,0,,220346,620346,ff,Dev map.Carrier711,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2868,2871,1,0,0,,220346,620346,ff,Dev map.Carrier710,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2872,2875,1,0,0,,220346,620346,ff,Dev map.Carrier713,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2876,2879,1,0,0,,220346,620346,ff,Dev map.Carrier712,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2880,2883,1,0,0,,220346,620346,ff,Dev map.Carrier715,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2884,2887,1,0,0,,220346,620346,ff,Dev map.Carrier714,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2888,2891,1,0,0,,220346,620346,ff,Dev map.Carrier717,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2892,2895,1,0,0,,220346,620346,ff,Dev map.Carrier716,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2896,2899,1,0,0,,220346,620346,ff,Dev map.Carrier719,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2900,2903,1,0,0,,220346,620346,ff,Dev map.Carrier718,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2904,2907,1,0,0,,220346,620346,ff,Dev map.Carrier721,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2908,2911,1,0,0,,220346,620346,ff,Dev map.Carrier720,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2912,2915,1,0,0,,220346,620346,ff,Dev map.Carrier723,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2916,2919,1,0,0,,220346,620346,ff,Dev map.Carrier722,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2920,2923,1,0,0,,220346,620346,ff,Dev map.Carrier725,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2924,2927,1,0,0,,220346,620346,ff,Dev map.Carrier724,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2928,2931,1,0,0,,220346,620346,ff,Dev map.Carrier727,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2932,2935,1,0,0,,220346,620346,ff,Dev map.Carrier726,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2936,2939,1,0,0,,220346,620346,ff,Dev map.Carrier729,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2940,2943,1,0,0,,220346,620346,ff,Dev map.Carrier728,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2944,2947,1,0,0,,220346,620346,ff,Dev map.Carrier731,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2948,2951,1,0,0,,220346,620346,ff,Dev map.Carrier730,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2952,2955,1,0,0,,220346,620346,ff,Dev map.Carrier733,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2956,2959,1,0,0,,220346,620346,ff,Dev map.Carrier732,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2960,2963,1,0,0,,220346,620346,ff,Dev map.Carrier735,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2964,2967,1,0,0,,220346,620346,ff,Dev map.Carrier734,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2968,2971,1,0,0,,220346,620346,ff,Dev map.Carrier737,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2972,2975,1,0,0,,220346,620346,ff,Dev map.Carrier736,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2976,2979,1,0,0,,220346,620346,ff,Dev map.Carrier739,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2980,2983,1,0,0,,220346,620346,ff,Dev map.Carrier738,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2984,2987,1,0,0,,220346,620346,ff,Dev map.Carrier741,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2988,2991,1,0,0,,220346,620346,ff,Dev map.Carrier740,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2992,2995,1,0,0,,220346,620346,ff,Dev map.Carrier743,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,2996,2999,1,0,0,,220346,620346,ff,Dev map.Carrier742,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3000,3003,1,0,0,,220346,620346,ff,Dev map.Carrier745,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3004,3007,1,0,0,,220346,620346,ff,Dev map.Carrier744,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3008,3011,1,0,0,,220346,620346,ff,Dev map.Carrier747,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3012,3015,1,0,0,,220346,620346,ff,Dev map.Carrier746,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3016,3019,1,0,0,,220346,620346,ff,Dev map.Carrier749,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3020,3023,1,0,0,,220346,620346,ff,Dev map.Carrier748,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3024,3027,1,0,0,,220346,620346,ff,Dev map.Carrier751,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3028,3031,1,0,0,,220346,620346,ff,Dev map.Carrier750,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3032,3035,1,0,0,,220346,620346,ff,Dev map.Carrier753,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3036,3039,1,0,0,,220346,620346,ff,Dev map.Carrier752,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3040,3043,1,0,0,,220346,620346,ff,Dev map.Carrier755,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3044,3047,1,0,0,,220346,620346,ff,Dev map.Carrier754,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3048,3051,1,0,0,,220346,620346,ff,Dev map.Carrier757,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3052,3055,1,0,0,,220346,620346,ff,Dev map.Carrier756,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3056,3059,1,0,0,,220346,620346,ff,Dev map.Carrier759,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3060,3063,1,0,0,,220346,620346,ff,Dev map.Carrier758,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3064,3067,1,0,0,,220346,620346,ff,Dev map.Carrier761,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3068,3071,1,0,0,,220346,620346,ff,Dev map.Carrier760,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3072,3075,1,0,0,,220346,620346,ff,Dev map.Carrier763,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3076,3079,1,0,0,,220346,620346,ff,Dev map.Carrier762,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3080,3083,1,0,0,,220346,620346,ff,Dev map.Carrier765,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3084,3087,1,0,0,,220346,620346,ff,Dev map.Carrier764,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3088,3091,1,0,0,,220346,620346,ff,Dev map.Carrier767,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3092,3095,1,0,0,,220346,620346,ff,Dev map.Carrier766,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3096,3099,1,0,0,,220346,620346,ff,Dev map.Carrier769,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3100,3103,1,0,0,,220346,620346,ff,Dev map.Carrier768,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3104,3107,1,0,0,,220346,620346,ff,Dev map.Carrier771,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3108,3111,1,0,0,,220346,620346,ff,Dev map.Carrier770,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3112,3115,1,0,0,,220346,620346,ff,Dev map.Carrier773,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3116,3119,1,0,0,,220346,620346,ff,Dev map.Carrier772,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3120,3123,1,0,0,,220346,620346,ff,Dev map.Carrier775,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3124,3127,1,0,0,,220346,620346,ff,Dev map.Carrier774,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3128,3131,1,0,0,,220346,620346,ff,Dev map.Carrier777,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3132,3135,1,0,0,,220346,620346,ff,Dev map.Carrier776,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3136,3139,1,0,0,,220346,620346,ff,Dev map.Carrier779,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3140,3143,1,0,0,,220346,620346,ff,Dev map.Carrier778,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3144,3147,1,0,0,,220346,620346,ff,Dev map.Carrier781,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3148,3151,1,0,0,,220346,620346,ff,Dev map.Carrier780,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3152,3155,1,0,0,,220346,620346,ff,Dev map.Carrier783,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3156,3159,1,0,0,,220346,620346,ff,Dev map.Carrier782,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3160,3163,1,0,0,,220346,620346,ff,Dev map.Carrier785,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3164,3167,1,0,0,,220346,620346,ff,Dev map.Carrier784,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3168,3171,1,0,0,,220346,620346,ff,Dev map.Carrier787,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3172,3175,1,0,0,,220346,620346,ff,Dev map.Carrier786,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3176,3179,1,0,0,,220346,620346,ff,Dev map.Carrier789,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3180,3183,1,0,0,,220346,620346,ff,Dev map.Carrier788,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3184,3187,1,0,0,,220346,620346,ff,Dev map.Carrier791,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3188,3191,1,0,0,,220346,620346,ff,Dev map.Carrier790,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3192,3195,1,0,0,,220346,620346,ff,Dev map.Carrier793,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3196,3199,1,0,0,,220346,620346,ff,Dev map.Carrier792,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3200,3203,1,0,0,,220346,620346,ff,Dev map.Carrier795,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3204,3207,1,0,0,,220346,620346,ff,Dev map.Carrier794,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3208,3211,1,0,0,,220346,620346,ff,Dev map.Carrier797,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3212,3215,1,0,0,,220346,620346,ff,Dev map.Carrier796,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3216,3219,1,0,0,,220346,620346,ff,Dev map.Carrier799,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3220,3223,1,0,0,,220346,620346,ff,Dev map.Carrier798,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3224,3227,1,0,0,,220346,620346,ff,Dev map.Carrier801,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3228,3231,1,0,0,,220346,620346,ff,Dev map.Carrier800,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3232,3235,1,0,0,,220346,620346,ff,Dev map.Carrier803,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3236,3239,1,0,0,,220346,620346,ff,Dev map.Carrier802,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3240,3243,1,0,0,,220346,620346,ff,Dev map.Carrier805,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3244,3247,1,0,0,,220346,620346,ff,Dev map.Carrier804,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3248,3251,1,0,0,,220346,620346,ff,Dev map.Carrier807,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3252,3255,1,0,0,,220346,620346,ff,Dev map.Carrier806,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3256,3259,1,0,0,,220346,620346,ff,Dev map.Carrier809,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3260,3263,1,0,0,,220346,620346,ff,Dev map.Carrier808,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3264,3267,1,0,0,,220346,620346,ff,Dev map.Carrier811,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3268,3271,1,0,0,,220346,620346,ff,Dev map.Carrier810,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3272,3275,1,0,0,,220346,620346,ff,Dev map.Carrier813,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3276,3279,1,0,0,,220346,620346,ff,Dev map.Carrier812,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3280,3283,1,0,0,,220346,620346,ff,Dev map.Carrier815,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3284,3287,1,0,0,,220346,620346,ff,Dev map.Carrier814,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3288,3291,1,0,0,,220346,620346,ff,Dev map.Carrier817,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3292,3295,1,0,0,,220346,620346,ff,Dev map.Carrier816,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3296,3299,1,0,0,,220346,620346,ff,Dev map.Carrier819,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3300,3303,1,0,0,,220346,620346,ff,Dev map.Carrier818,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3304,3307,1,0,0,,220346,620346,ff,Dev map.Carrier821,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3308,3311,1,0,0,,220346,620346,ff,Dev map.Carrier820,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3312,3315,1,0,0,,220346,620346,ff,Dev map.Carrier823,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3316,3319,1,0,0,,220346,620346,ff,Dev map.Carrier822,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3320,3323,1,0,0,,220346,620346,ff,Dev map.Carrier825,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3324,3327,1,0,0,,220346,620346,ff,Dev map.Carrier824,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3328,3331,1,0,0,,220346,620346,ff,Dev map.Carrier827,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3332,3335,1,0,0,,220346,620346,ff,Dev map.Carrier826,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3336,3339,1,0,0,,220346,620346,ff,Dev map.Carrier829,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3340,3343,1,0,0,,220346,620346,ff,Dev map.Carrier828,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3344,3347,1,0,0,,220346,620346,ff,Dev map.Carrier831,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3348,3351,1,0,0,,220346,620346,ff,Dev map.Carrier830,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3352,3355,1,0,0,,220346,620346,ff,Dev map.Carrier833,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3356,3359,1,0,0,,220346,620346,ff,Dev map.Carrier832,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3360,3363,1,0,0,,220346,620346,ff,Dev map.Carrier835,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3364,3367,1,0,0,,220346,620346,ff,Dev map.Carrier834,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3368,3371,1,0,0,,220346,620346,ff,Dev map.Carrier837,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3372,3375,1,0,0,,220346,620346,ff,Dev map.Carrier836,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3376,3379,1,0,0,,220346,620346,ff,Dev map.Carrier839,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3380,3383,1,0,0,,220346,620346,ff,Dev map.Carrier838,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3384,3387,1,0,0,,220346,620346,ff,Dev map.Carrier841,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3388,3391,1,0,0,,220346,620346,ff,Dev map.Carrier840,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3392,3395,1,0,0,,220346,620346,ff,Dev map.Carrier843,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3396,3399,1,0,0,,220346,620346,ff,Dev map.Carrier842,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3400,3403,1,0,0,,220346,620346,ff,Dev map.Carrier845,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3404,3407,1,0,0,,220346,620346,ff,Dev map.Carrier844,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3408,3411,1,0,0,,220346,620346,ff,Dev map.Carrier847,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3412,3415,1,0,0,,220346,620346,ff,Dev map.Carrier846,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3416,3419,1,0,0,,220346,620346,ff,Dev map.Carrier849,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3420,3423,1,0,0,,220346,620346,ff,Dev map.Carrier848,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3424,3427,1,0,0,,220346,620346,ff,Dev map.Carrier851,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3428,3431,1,0,0,,220346,620346,ff,Dev map.Carrier850,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3432,3435,1,0,0,,220346,620346,ff,Dev map.Carrier853,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3436,3439,1,0,0,,220346,620346,ff,Dev map.Carrier852,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3440,3443,1,0,0,,220346,620346,ff,Dev map.Carrier855,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3444,3447,1,0,0,,220346,620346,ff,Dev map.Carrier854,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3448,3451,1,0,0,,220346,620346,ff,Dev map.Carrier857,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3452,3455,1,0,0,,220346,620346,ff,Dev map.Carrier856,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3456,3459,1,0,0,,220346,620346,ff,Dev map.Carrier859,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3460,3463,1,0,0,,220346,620346,ff,Dev map.Carrier858,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3464,3467,1,0,0,,220346,620346,ff,Dev map.Carrier861,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3468,3471,1,0,0,,220346,620346,ff,Dev map.Carrier860,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3472,3475,1,0,0,,220346,620346,ff,Dev map.Carrier863,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3476,3479,1,0,0,,220346,620346,ff,Dev map.Carrier862,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3480,3483,1,0,0,,220346,620346,ff,Dev map.Carrier865,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3484,3487,1,0,0,,220346,620346,ff,Dev map.Carrier864,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3488,3491,1,0,0,,220346,620346,ff,Dev map.Carrier867,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3492,3495,1,0,0,,220346,620346,ff,Dev map.Carrier866,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3496,3499,1,0,0,,220346,620346,ff,Dev map.Carrier869,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3500,3503,1,0,0,,220346,620346,ff,Dev map.Carrier868,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3504,3507,1,0,0,,220346,620346,ff,Dev map.Carrier871,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3508,3511,1,0,0,,220346,620346,ff,Dev map.Carrier870,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3512,3515,1,0,0,,220346,620346,ff,Dev map.Carrier873,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3516,3519,1,0,0,,220346,620346,ff,Dev map.Carrier872,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3520,3523,1,0,0,,220346,620346,ff,Dev map.Carrier875,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3524,3527,1,0,0,,220346,620346,ff,Dev map.Carrier874,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3528,3531,1,0,0,,220346,620346,ff,Dev map.Carrier877,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3532,3535,1,0,0,,220346,620346,ff,Dev map.Carrier876,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3536,3539,1,0,0,,220346,620346,ff,Dev map.Carrier879,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3540,3543,1,0,0,,220346,620346,ff,Dev map.Carrier878,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3544,3547,1,0,0,,220346,620346,ff,Dev map.Carrier881,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3548,3551,1,0,0,,220346,620346,ff,Dev map.Carrier880,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3552,3555,1,0,0,,220346,620346,ff,Dev map.Carrier883,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3556,3559,1,0,0,,220346,620346,ff,Dev map.Carrier882,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3560,3563,1,0,0,,220346,620346,ff,Dev map.Carrier885,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3564,3567,1,0,0,,220346,620346,ff,Dev map.Carrier884,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3568,3571,1,0,0,,220346,620346,ff,Dev map.Carrier887,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3572,3575,1,0,0,,220346,620346,ff,Dev map.Carrier886,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3576,3579,1,0,0,,220346,620346,ff,Dev map.Carrier889,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3580,3583,1,0,0,,220346,620346,ff,Dev map.Carrier888,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3584,3587,1,0,0,,220346,620346,ff,Dev map.Carrier891,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3588,3591,1,0,0,,220346,620346,ff,Dev map.Carrier890,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3592,3595,1,0,0,,220346,620346,ff,Dev map.Carrier893,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3596,3599,1,0,0,,220346,620346,ff,Dev map.Carrier892,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3600,3603,1,0,0,,220346,620346,ff,Dev map.Carrier895,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3604,3607,1,0,0,,220346,620346,ff,Dev map.Carrier894,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3608,3611,1,0,0,,220346,620346,ff,Dev map.Carrier897,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3612,3615,1,0,0,,220346,620346,ff,Dev map.Carrier896,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3616,3619,1,0,0,,220346,620346,ff,Dev map.Carrier899,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3620,3623,1,0,0,,220346,620346,ff,Dev map.Carrier898,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3624,3627,1,0,0,,220346,620346,ff,Dev map.Carrier901,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3628,3631,1,0,0,,220346,620346,ff,Dev map.Carrier900,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3632,3635,1,0,0,,220346,620346,ff,Dev map.Carrier903,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3636,3639,1,0,0,,220346,620346,ff,Dev map.Carrier902,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3640,3643,1,0,0,,220346,620346,ff,Dev map.Carrier905,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3644,3647,1,0,0,,220346,620346,ff,Dev map.Carrier904,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3648,3651,1,0,0,,220346,620346,ff,Dev map.Carrier907,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3652,3655,1,0,0,,220346,620346,ff,Dev map.Carrier906,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3656,3659,1,0,0,,220346,620346,ff,Dev map.Carrier909,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3660,3663,1,0,0,,220346,620346,ff,Dev map.Carrier908,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3664,3667,1,0,0,,220346,620346,ff,Dev map.Carrier911,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3668,3671,1,0,0,,220346,620346,ff,Dev map.Carrier910,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3672,3675,1,0,0,,220346,620346,ff,Dev map.Carrier913,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3676,3679,1,0,0,,220346,620346,ff,Dev map.Carrier912,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3680,3683,1,0,0,,220346,620346,ff,Dev map.Carrier915,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3684,3687,1,0,0,,220346,620346,ff,Dev map.Carrier914,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3688,3691,1,0,0,,220346,620346,ff,Dev map.Carrier917,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,3692,3695,1,0,0,,220346,620346,ff,Dev map.Carrier916,0:No reduction;1:2 dB;2:4 dB;3:6 dB;4:8 dB;5:10 dB;6:12 dB;7:14 dB;8:16 dB;9:18 dB;10:20 dB;11:22 dB;12:24 dB;13:26 dB;14:28 dB;15:Off(No signal) ,7C8,24,24,1,0,0,,220347,620347,ff,Dev map exchange,0:CPLC does not send the map to the EVSE (Always selected - cannot be changed);1:CPLC send the map to the EVSE ,7C8,24,487,1,0,0,,220348,620348,4ff,Attenuation Profile Calibration ,7C8,24,39,1,0,0,,220349,620349,4ff,AFE Gain Calibration ,7C8,24,71,1,0,0,,220354,620354,4ff,MAC_HOST ,7C8,24,71,1,0,0,,220355,620355,4ff,MAC_MODEM ,7C8,30,31,1,0,0,,220356,620356,ff,CPLC_FaultCounter ,7C8,31,31,1,0,0,,220357,620357,ff,CPLC_ChargingState,0:unmatched;1:matched ,7C8,31,31,1,0,0,,220360,620360,ff,CPLC_Configuration,0:DC Charge not used;1:DC Charge used ,7C8,24,31,1,0,0,,220365,620365,ff,Vehicle_Architecture,1:C1A run1;2:C1A run2;3:C1A HS;4:C1A HS EVO ,7C8,24,151,1,0,0,,22F010,62F010,4ff,programmingOperationFingerPrint ,7C8,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,7C8,24,103,1,0,0,,22F012,62F012,2ff,Operational Reference ,7C8,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationnalReference ,7C8,24,47,1,0,0,,22F0D0,62F0D0,ff,Mileage ,7C8,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC Occurrence Counter ,7C8,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,7C8,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,7C8,24,279,1,0,0,,22F180,62F180,4ff,Boot Version ,7C8,24,103,1,0,0,,22F182,62F182,2ff,CalibrationNumber ,7C8,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,7C8,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,7C8,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7C8,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,7C8,24,159,1,0,0,,22F190,62F190,2ff,VIN ,7C8,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,7C8,24,127,1,0,0,,22F192,62F192,2ff,ecuHardware.hardware ,7C8,128,151,1,0,0,,22F192,62F192,2ff,ecuHardware.version ,7C8,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7C8,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7C8,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,7C8,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,7C8,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigurationDataReferenceAfterConfigurationProcess ,7C8,24,279,1,0,0,,22FD00,62FD00,4ff,Digest1 ,7C8,24,279,1,0,0,,22FD01,62FD01,4ff,Digest2 ,7C8,24,279,1,0,0,,22FD02,62FD02,4ff,Digest3 ,7C8,24,279,1,0,0,,22FD03,62FD03,4ff,Digest4 ,7C8,24,279,1,0,0,,22FD04,62FD04,4ff,Digest5 ,7C8,24,279,1,0,0,,22FD05,62FD05,4ff,Digest6 ,7C8,24,279,1,0,0,,22FD06,62FD06,4ff,Digest7 ,7C8,24,279,1,0,0,,22FD07,62FD07,4ff,Digest8 ,7C8,24,279,1,0,0,,22FD08,62FD08,4ff,Digest9 ,7C8,24,279,1,0,0,,22FD09,62FD09,4ff,Digest10 ,7C8,24,279,1,0,0,,22FD0A,62FD0A,4ff,Digest11 ,7C8,24,279,1,0,0,,22FD0B,62FD0B,4ff,Digest12 ,7C8,24,279,1,0,0,,22FD0C,62FD0C,4ff,Digest13 ,7C8,24,279,1,0,0,,22FD0D,62FD0D,4ff,Digest14 ,7C8,24,279,1,0,0,,22FD0E,62FD0E,4ff,Digest15 ,7C8,24,279,1,0,0,,22FD0F,62FD0F,4ff,Digest16 ,7C8,24,279,1,0,0,,22FD10,62FD10,4ff,Digest17 ,7C8,24,279,1,0,0,,22FD11,62FD11,4ff,Digest18 ,7C8,24,279,1,0,0,,22FD12,62FD12,4ff,Digest19 ,7C8,24,279,1,0,0,,22FD13,62FD13,4ff,Digest20 ,7C8,24,279,1,0,0,,22FD14,62FD14,4ff,Digest21 ,7C8,24,279,1,0,0,,22FD15,62FD15,4ff,Digest22 ,7C8,24,279,1,0,0,,22FD16,62FD16,4ff,Digest23 ,7C8,24,279,1,0,0,,22FD17,62FD17,4ff,Digest24 ,7C8,24,279,1,0,0,,22FD18,62FD18,4ff,Digest25 ,7C8,24,279,1,0,0,,22FD19,62FD19,4ff,Digest26 ,7C8,24,279,1,0,0,,22FD1A,62FD1A,4ff,Digest27 ,7C8,24,279,1,0,0,,22FD1B,62FD1B,4ff,Digest28 ,7C8,24,279,1,0,0,,22FD1C,62FD1C,4ff,Digest29 ,7C8,24,279,1,0,0,,22FD1D,62FD1D,4ff,Digest30 ,7C8,24,279,1,0,0,,22FD1E,62FD1E,4ff,Digest31 ,7C8,24,279,1,0,0,,22FD1F,62FD1F,4ff,Digest32 ,7C8,24,279,1,0,0,,22FD20,62FD20,4ff,Digest33 ,7C8,24,279,1,0,0,,22FD21,62FD21,4ff,Digest34 ,7C8,24,279,1,0,0,,22FD22,62FD22,4ff,Digest35 ,7C8,24,279,1,0,0,,22FD23,62FD23,4ff,Digest36 ,7C8,24,279,1,0,0,,22FD24,62FD24,4ff,Digest37 ,7C8,24,279,1,0,0,,22FD25,62FD25,4ff,Digest38 ,7C8,24,279,1,0,0,,22FD26,62FD26,4ff,Digest39 ,7C8,24,279,1,0,0,,22FD27,62FD27,4ff,Digest40 ,7C8,24,279,1,0,0,,22FD28,62FD28,4ff,Digest41 ,7C8,24,279,1,0,0,,22FD29,62FD29,4ff,Digest42 ,7C8,24,279,1,0,0,,22FD2A,62FD2A,4ff,Digest43 ,7C8,24,279,1,0,0,,22FD2B,62FD2B,4ff,Digest44 ,7C8,24,279,1,0,0,,22FD2C,62FD2C,4ff,Digest45 ,7C8,24,279,1,0,0,,22FD2D,62FD2D,4ff,Digest46 ,7C8,24,279,1,0,0,,22FD2E,62FD2E,4ff,Digest47 ,7C8,24,279,1,0,0,,22FD2F,62FD2F,4ff,Digest48 ,7C8,24,279,1,0,0,,22FD30,62FD30,4ff,Digest49 ,7C8,24,279,1,0,0,,22FD31,62FD31,4ff,Digest50 ,7C8,24,279,1,0,0,,22FD32,62FD32,4ff,Digest51 ,7C8,24,279,1,0,0,,22FD33,62FD33,4ff,Digest52 ,7C8,24,279,1,0,0,,22FD34,62FD34,4ff,Digest53 ,7C8,24,279,1,0,0,,22FD35,62FD35,4ff,Digest54 ,7C8,24,279,1,0,0,,22FD36,62FD36,4ff,Digest55 ,7C8,24,279,1,0,0,,22FD37,62FD37,4ff,Digest56 ,7C8,24,279,1,0,0,,22FD38,62FD38,4ff,Digest57 ,7C8,24,279,1,0,0,,22FD39,62FD39,4ff,Digest58 ,7C8,24,279,1,0,0,,22FD3A,62FD3A,4ff,Digest59 ,7C8,24,279,1,0,0,,22FD3B,62FD3B,4ff,Digest60 ,7C8,24,279,1,0,0,,22FD3C,62FD3C,4ff,Digest61 ,7C8,24,279,1,0,0,,22FD3D,62FD3D,4ff,Digest62 ,7C8,24,279,1,0,0,,22FD3E,62FD3E,4ff,Digest63 ,7C8,24,279,1,0,0,,22FD3F,62FD3F,4ff,Digest64 ,7C8,24,279,1,0,0,,22FD40,62FD40,4ff,Digest65 ,7C8,24,279,1,0,0,,22FD41,62FD41,4ff,Digest66 ,7C8,24,279,1,0,0,,22FD42,62FD42,4ff,Digest67 ,7C8,24,279,1,0,0,,22FD43,62FD43,4ff,Digest68 ,7C8,24,279,1,0,0,,22FD44,62FD44,4ff,Digest69 ,7C8,24,279,1,0,0,,22FD45,62FD45,4ff,Digest70 ,7C8,24,279,1,0,0,,22FD46,62FD46,4ff,Digest71 ,7C8,24,279,1,0,0,,22FD47,62FD47,4ff,Digest72 ,7C8,24,279,1,0,0,,22FD48,62FD48,4ff,Digest73 ,7C8,24,279,1,0,0,,22FD49,62FD49,4ff,Digest74 ,7C8,24,279,1,0,0,,22FD4A,62FD4A,4ff,Digest75 ,7C8,24,279,1,0,0,,22FD4B,62FD4B,4ff,Digest76 ,7C8,24,279,1,0,0,,22FD4C,62FD4C,4ff,Digest77 ,7C8,24,279,1,0,0,,22FD4D,62FD4D,4ff,Digest78 ,7C8,24,279,1,0,0,,22FD4E,62FD4E,4ff,Digest79 ,7C8,24,279,1,0,0,,22FD4F,62FD4F,4ff,Digest80 ,7C8,24,279,1,0,0,,22FD50,62FD50,4ff,Digest81 ,7C8,24,279,1,0,0,,22FD51,62FD51,4ff,Digest82 ,7C8,24,279,1,0,0,,22FD52,62FD52,4ff,Digest83 ,7C8,24,279,1,0,0,,22FD53,62FD53,4ff,Digest84 ,7C8,24,279,1,0,0,,22FD54,62FD54,4ff,Digest85 ,7C8,24,279,1,0,0,,22FD55,62FD55,4ff,Digest86 ,7C8,24,279,1,0,0,,22FD56,62FD56,4ff,Digest87 ,7C8,24,279,1,0,0,,22FD57,62FD57,4ff,Digest88 ,7C8,24,279,1,0,0,,22FD58,62FD58,4ff,Digest89 ,7C8,24,279,1,0,0,,22FD59,62FD59,4ff,Digest90 ,7C8,24,279,1,0,0,,22FD5A,62FD5A,4ff,Digest91 ,7C8,24,279,1,0,0,,22FD5B,62FD5B,4ff,Digest92 ,7C8,24,279,1,0,0,,22FD5C,62FD5C,4ff,Digest93 ,7C8,24,279,1,0,0,,22FD5D,62FD5D,4ff,Digest94 ,7C8,24,279,1,0,0,,22FD5E,62FD5E,4ff,Digest95 ,7C8,24,279,1,0,0,,22FD5F,62FD5F,4ff,Digest96 ,7C8,24,279,1,0,0,,22FD60,62FD60,4ff,Digest97 ,7C8,24,279,1,0,0,,22FD61,62FD61,4ff,Digest98 ,7C8,24,279,1,0,0,,22FD62,62FD62,4ff,Digest99 ,7C8,24,279,1,0,0,,22FD63,62FD63,4ff,Digest100 ,7C8,24,279,1,0,0,,22FD64,62FD64,4ff,Digest101 ,7C8,24,279,1,0,0,,22FD65,62FD65,4ff,Digest102 ,7C8,24,279,1,0,0,,22FD66,62FD66,4ff,Digest103 ,7C8,24,279,1,0,0,,22FD67,62FD67,4ff,Digest104 ,7C8,24,279,1,0,0,,22FD68,62FD68,4ff,Digest105 ,7C8,24,279,1,0,0,,22FD69,62FD69,4ff,Digest106 ,7C8,24,279,1,0,0,,22FD6A,62FD6A,4ff,Digest107 ,7C8,24,279,1,0,0,,22FD6B,62FD6B,4ff,Digest108 ,7C8,24,279,1,0,0,,22FD6C,62FD6C,4ff,Digest109 ,7C8,24,279,1,0,0,,22FD6D,62FD6D,4ff,Digest110 ,7C8,24,279,1,0,0,,22FD6E,62FD6E,4ff,Digest111 ,7C8,24,279,1,0,0,,22FD6F,62FD6F,4ff,Digest112 ,7C8,24,279,1,0,0,,22FD70,62FD70,4ff,Digest113 ,7C8,24,279,1,0,0,,22FD71,62FD71,4ff,Digest114 ,7C8,24,279,1,0,0,,22FD72,62FD72,4ff,Digest115 ,7C8,24,279,1,0,0,,22FD73,62FD73,4ff,Digest116 ,7C8,24,279,1,0,0,,22FD74,62FD74,4ff,Digest117 ,7C8,24,279,1,0,0,,22FD75,62FD75,4ff,Digest118 ,7C8,24,279,1,0,0,,22FD76,62FD76,4ff,Digest119 ,7C8,24,279,1,0,0,,22FD77,62FD77,4ff,Digest120 ,7C8,24,279,1,0,0,,22FD78,62FD78,4ff,Digest121 ,7C8,24,279,1,0,0,,22FD79,62FD79,4ff,Digest122 ,7C8,24,279,1,0,0,,22FD7A,62FD7A,4ff,Digest123 ,7C8,24,279,1,0,0,,22FD7B,62FD7B,4ff,Digest124 ,7C8,24,279,1,0,0,,22FD7C,62FD7C,4ff,Digest125 ,7C8,24,279,1,0,0,,22FD7D,62FD7D,4ff,Digest126 ,7C8,24,279,1,0,0,,22FD7E,62FD7E,4ff,Digest127 ,7C8,24,279,1,0,0,,22FD7F,62FD7F,4ff,Digest128 ,7C8,24,279,1,0,0,,22FD80,62FD80,4ff,Digest129 ,7C8,24,279,1,0,0,,22FD81,62FD81,4ff,Digest130 ,7C8,24,279,1,0,0,,22FD82,62FD82,4ff,Digest131 ,7C8,24,279,1,0,0,,22FD83,62FD83,4ff,Digest132 ,7C8,24,279,1,0,0,,22FD84,62FD84,4ff,Digest133 ,7C8,24,279,1,0,0,,22FD85,62FD85,4ff,Digest134 ,7C8,24,279,1,0,0,,22FD86,62FD86,4ff,Digest135 ,7C8,24,279,1,0,0,,22FD87,62FD87,4ff,Digest136 ,7C8,24,279,1,0,0,,22FD88,62FD88,4ff,Digest137 ,7C8,24,279,1,0,0,,22FD89,62FD89,4ff,Digest138 ,7C8,24,279,1,0,0,,22FD8A,62FD8A,4ff,Digest139 ,7C8,24,279,1,0,0,,22FD8B,62FD8B,4ff,Digest140 ,7C8,24,279,1,0,0,,22FD8C,62FD8C,4ff,Digest141 ,7C8,24,279,1,0,0,,22FD8D,62FD8D,4ff,Digest142 ,7C8,24,279,1,0,0,,22FD8E,62FD8E,4ff,Digest143 ,7C8,24,279,1,0,0,,22FD8F,62FD8F,4ff,Digest144 ,7C8,24,279,1,0,0,,22FD90,62FD90,4ff,Digest145 ,7C8,24,279,1,0,0,,22FD91,62FD91,4ff,Digest146 ,7C8,24,279,1,0,0,,22FD92,62FD92,4ff,Digest147 ,7C8,24,279,1,0,0,,22FD93,62FD93,4ff,Digest148 ,7C8,24,279,1,0,0,,22FD94,62FD94,4ff,Digest149 ,7C8,24,279,1,0,0,,22FD95,62FD95,4ff,Digest150 ,7C8,24,279,1,0,0,,22FD96,62FD96,4ff,Digest151 ,7C8,24,279,1,0,0,,22FD97,62FD97,4ff,Digest152 ,7C8,24,279,1,0,0,,22FD98,62FD98,4ff,Digest153 ,7C8,24,279,1,0,0,,22FD99,62FD99,4ff,Digest154 ,7C8,24,279,1,0,0,,22FD9A,62FD9A,4ff,Digest155 ,7C8,24,279,1,0,0,,22FD9B,62FD9B,4ff,Digest156 ,7C8,24,279,1,0,0,,22FD9C,62FD9C,4ff,Digest157 ,7C8,24,279,1,0,0,,22FD9D,62FD9D,4ff,Digest158 ,7C8,24,279,1,0,0,,22FD9E,62FD9E,4ff,Digest159 ,7C8,24,279,1,0,0,,22FD9F,62FD9F,4ff,Digest160 ,7C8,24,279,1,0,0,,22FDA0,62FDA0,4ff,Digest161 ,7C8,24,279,1,0,0,,22FDA1,62FDA1,4ff,Digest162 ,7C8,24,279,1,0,0,,22FDA2,62FDA2,4ff,Digest163 ,7C8,24,279,1,0,0,,22FDA3,62FDA3,4ff,Digest164 ,7C8,24,279,1,0,0,,22FDA4,62FDA4,4ff,Digest165 ,7C8,24,279,1,0,0,,22FDA5,62FDA5,4ff,Digest166 ,7C8,24,279,1,0,0,,22FDA6,62FDA6,4ff,Digest167 ,7C8,24,279,1,0,0,,22FDA7,62FDA7,4ff,Digest168 ,7C8,24,279,1,0,0,,22FDA8,62FDA8,4ff,Digest169 ,7C8,24,279,1,0,0,,22FDA9,62FDA9,4ff,Digest170 ,7C8,24,279,1,0,0,,22FDAA,62FDAA,4ff,Digest171 ,7C8,24,279,1,0,0,,22FDAB,62FDAB,4ff,Digest172 ,7C8,24,279,1,0,0,,22FDAC,62FDAC,4ff,Digest173 ,7C8,24,279,1,0,0,,22FDAD,62FDAD,4ff,Digest174 ,7C8,24,279,1,0,0,,22FDAE,62FDAE,4ff,Digest175 ,7C8,24,279,1,0,0,,22FDAF,62FDAF,4ff,Digest176 ,7C8,24,279,1,0,0,,22FDB0,62FDB0,4ff,Digest177 ,7C8,24,279,1,0,0,,22FDB1,62FDB1,4ff,Digest178 ,7C8,24,279,1,0,0,,22FDB2,62FDB2,4ff,Digest179 ,7C8,24,279,1,0,0,,22FDB3,62FDB3,4ff,Digest180 ,7C8,24,279,1,0,0,,22FDB4,62FDB4,4ff,Digest181 ,7C8,24,279,1,0,0,,22FDB5,62FDB5,4ff,Digest182 ,7C8,24,279,1,0,0,,22FDB6,62FDB6,4ff,Digest183 ,7C8,24,279,1,0,0,,22FDB7,62FDB7,4ff,Digest184 ,7C8,24,279,1,0,0,,22FDB8,62FDB8,4ff,Digest185 ,7C8,24,279,1,0,0,,22FDB9,62FDB9,4ff,Digest186 ,7C8,24,279,1,0,0,,22FDBA,62FDBA,4ff,Digest187 ,7C8,24,279,1,0,0,,22FDBB,62FDBB,4ff,Digest188 ,7C8,24,279,1,0,0,,22FDBC,62FDBC,4ff,Digest189 ,7C8,24,279,1,0,0,,22FDBD,62FDBD,4ff,Digest190 ,7C8,24,279,1,0,0,,22FDBE,62FDBE,4ff,Digest191 ,7C8,24,279,1,0,0,,22FDBF,62FDBF,4ff,Digest192 ,7C8,24,279,1,0,0,,22FDC0,62FDC0,4ff,Digest193 ,7C8,24,279,1,0,0,,22FDC1,62FDC1,4ff,Digest194 ,7C8,24,279,1,0,0,,22FDC2,62FDC2,4ff,Digest195 ,7C8,24,279,1,0,0,,22FDC3,62FDC3,4ff,Digest196 ,7C8,24,279,1,0,0,,22FDC4,62FDC4,4ff,Digest197 ,7C8,24,279,1,0,0,,22FDC5,62FDC5,4ff,Digest198 ,7C8,24,279,1,0,0,,22FDC6,62FDC6,4ff,Digest199 ,7C8,24,279,1,0,0,,22FDC7,62FDC7,4ff,Digest200 ,7C8,24,279,1,0,0,,22FDC8,62FDC8,4ff,Digest201 ,7C8,24,279,1,0,0,,22FDC9,62FDC9,4ff,Digest202 ,7C8,24,279,1,0,0,,22FDCA,62FDCA,4ff,Digest203 ,7C8,24,279,1,0,0,,22FDCB,62FDCB,4ff,Digest204 ,7C8,24,279,1,0,0,,22FDCC,62FDCC,4ff,Digest205 ,7C8,24,279,1,0,0,,22FDCD,62FDCD,4ff,Digest206 ,7C8,24,279,1,0,0,,22FDCE,62FDCE,4ff,Digest207 ,7C8,24,279,1,0,0,,22FDCF,62FDCF,4ff,Digest208 ,7C8,24,279,1,0,0,,22FDD0,62FDD0,4ff,Digest209 ,7C8,24,279,1,0,0,,22FDD1,62FDD1,4ff,Digest210 ,7C8,24,279,1,0,0,,22FDD2,62FDD2,4ff,Digest211 ,7C8,24,279,1,0,0,,22FDD3,62FDD3,4ff,Digest212 ,7C8,24,279,1,0,0,,22FDD4,62FDD4,4ff,Digest213 ,7C8,24,279,1,0,0,,22FDD5,62FDD5,4ff,Digest214 ,7C8,24,279,1,0,0,,22FDD6,62FDD6,4ff,Digest215 ,7C8,24,279,1,0,0,,22FDD7,62FDD7,4ff,Digest216 ,7C8,24,279,1,0,0,,22FDD8,62FDD8,4ff,Digest217 ,7C8,24,279,1,0,0,,22FDD9,62FDD9,4ff,Digest218 ,7C8,24,279,1,0,0,,22FDDA,62FDDA,4ff,Digest219 ,7C8,24,279,1,0,0,,22FDDB,62FDDB,4ff,Digest220 ,7C8,24,279,1,0,0,,22FDDC,62FDDC,4ff,Digest221 ,7C8,24,279,1,0,0,,22FDDD,62FDDD,4ff,Digest222 ,7C8,24,279,1,0,0,,22FDDE,62FDDE,4ff,Digest223 ,7C8,24,279,1,0,0,,22FDDF,62FDDF,4ff,Digest224 ,7C8,24,279,1,0,0,,22FDE0,62FDE0,4ff,Digest225 ,7C8,24,279,1,0,0,,22FDE1,62FDE1,4ff,Digest226 ,7C8,24,279,1,0,0,,22FDE2,62FDE2,4ff,Digest227 ,7C8,24,279,1,0,0,,22FDE3,62FDE3,4ff,Digest228 ,7C8,24,279,1,0,0,,22FDE4,62FDE4,4ff,Digest229 ,7C8,24,279,1,0,0,,22FDE5,62FDE5,4ff,Digest230 ,7C8,24,279,1,0,0,,22FDE6,62FDE6,4ff,Digest231 ,7C8,24,279,1,0,0,,22FDE7,62FDE7,4ff,Digest232 ,7C8,24,279,1,0,0,,22FDE8,62FDE8,4ff,Digest233 ,7C8,24,279,1,0,0,,22FDE9,62FDE9,4ff,Digest234 ,7C8,24,279,1,0,0,,22FDEA,62FDEA,4ff,Digest235 ,7C8,24,279,1,0,0,,22FDEB,62FDEB,4ff,Digest236 ,7C8,24,279,1,0,0,,22FDEC,62FDEC,4ff,Digest237 ,7C8,24,279,1,0,0,,22FDED,62FDED,4ff,Digest238 ,7C8,24,279,1,0,0,,22FDEE,62FDEE,4ff,Digest239 ,7C8,24,279,1,0,0,,22FDEF,62FDEF,4ff,Digest240 ,7C8,24,279,1,0,0,,22FDF0,62FDF0,4ff,Digest241 ,7C8,24,279,1,0,0,,22FDF1,62FDF1,4ff,Digest242 ,7C8,24,279,1,0,0,,22FDF2,62FDF2,4ff,Digest243 ,7C8,24,279,1,0,0,,22FDF3,62FDF3,4ff,Digest244 ,7C8,24,279,1,0,0,,22FDF4,62FDF4,4ff,Digest245 ,7C8,24,279,1,0,0,,22FDF5,62FDF5,4ff,Digest246 ,7C8,24,279,1,0,0,,22FDF6,62FDF6,4ff,Digest247 ,7C8,24,279,1,0,0,,22FDF7,62FDF7,4ff,Digest248 ,7C8,24,279,1,0,0,,22FDF8,62FDF8,4ff,Digest249 ,7C8,24,279,1,0,0,,22FDF9,62FDF9,4ff,Digest250 ,7C8,24,279,1,0,0,,22FDFA,62FDFA,4ff,Digest251 ,7C8,24,279,1,0,0,,22FDFB,62FDFB,4ff,Digest252 ,7C8,24,279,1,0,0,,22FDFC,62FDFC,4ff,Digest253 ,7C8,24,279,1,0,0,,22FDFD,62FDFD,4ff,Digest254 ,7C8,24,279,1,0,0,,22FDFE,62FDFE,4ff,Digest255 ,7C8,24,279,1,0,0,,22FDFF,62FDFF,4ff,Digest256 ,7C8,24,279,1,0,0,,22FE00,62FE00,4ff,Digest257 ,7C8,24,279,1,0,0,,22FE01,62FE01,4ff,Digest258 ,7C8,24,279,1,0,0,,22FE02,62FE02,4ff,Digest259 ,7C8,24,279,1,0,0,,22FE03,62FE03,4ff,Digest260 ,7C8,24,279,1,0,0,,22FE04,62FE04,4ff,Digest261 ,7C8,24,279,1,0,0,,22FE05,62FE05,4ff,Digest262 ,7C8,24,279,1,0,0,,22FE06,62FE06,4ff,Digest263 ,7C8,24,279,1,0,0,,22FE07,62FE07,4ff,Digest264 ,7C8,24,279,1,0,0,,22FE08,62FE08,4ff,Digest265 ,7C8,24,279,1,0,0,,22FE09,62FE09,4ff,Digest266 ,7C8,24,279,1,0,0,,22FE0A,62FE0A,4ff,Digest267 ,7C8,24,279,1,0,0,,22FE0B,62FE0B,4ff,Digest268 ,7C8,24,279,1,0,0,,22FE0C,62FE0C,4ff,Digest269 ,7C8,24,279,1,0,0,,22FE0D,62FE0D,4ff,Digest270 ,7C8,24,279,1,0,0,,22FE0E,62FE0E,4ff,Digest271 ,7C8,24,279,1,0,0,,22FE0F,62FE0F,4ff,Digest272 ,7C8,24,279,1,0,0,,22FE10,62FE10,4ff,Digest273 ,7C8,24,279,1,0,0,,22FE11,62FE11,4ff,Digest274 ,7C8,24,279,1,0,0,,22FE12,62FE12,4ff,Digest275 ,7C8,24,279,1,0,0,,22FE13,62FE13,4ff,Digest276 ,7C8,24,279,1,0,0,,22FE14,62FE14,4ff,Digest277 ,7C8,24,279,1,0,0,,22FE15,62FE15,4ff,Digest278 ,7C8,24,279,1,0,0,,22FE16,62FE16,4ff,Digest279 ,7C8,24,279,1,0,0,,22FE17,62FE17,4ff,Digest280 ,7C8,24,279,1,0,0,,22FE18,62FE18,4ff,Digest281 ,7C8,24,279,1,0,0,,22FE19,62FE19,4ff,Digest282 ,7C8,24,279,1,0,0,,22FE1A,62FE1A,4ff,Digest283 ,7C8,24,279,1,0,0,,22FE1B,62FE1B,4ff,Digest284 ,7C8,24,279,1,0,0,,22FE1C,62FE1C,4ff,Digest285 ,7C8,24,279,1,0,0,,22FE1D,62FE1D,4ff,Digest286 ,7C8,24,279,1,0,0,,22FE1E,62FE1E,4ff,Digest287 ,7C8,24,279,1,0,0,,22FE1F,62FE1F,4ff,Digest288 ,7C8,24,279,1,0,0,,22FE20,62FE20,4ff,Digest289 ,7C8,24,279,1,0,0,,22FE21,62FE21,4ff,Digest290 ,7C8,24,279,1,0,0,,22FE22,62FE22,4ff,Digest291 ,7C8,24,279,1,0,0,,22FE23,62FE23,4ff,Digest292 ,7C8,24,279,1,0,0,,22FE24,62FE24,4ff,Digest293 ,7C8,24,279,1,0,0,,22FE25,62FE25,4ff,Digest294 ,7C8,24,279,1,0,0,,22FE26,62FE26,4ff,Digest295 ,7C8,24,279,1,0,0,,22FE27,62FE27,4ff,Digest296 ,7C8,24,279,1,0,0,,22FE28,62FE28,4ff,Digest297 ,7C8,24,279,1,0,0,,22FE29,62FE29,4ff,Digest298 ,7C8,24,279,1,0,0,,22FE2A,62FE2A,4ff,Digest299 ,7C8,24,279,1,0,0,,22FE2B,62FE2B,4ff,Digest300 ,7C8,24,279,1,0,0,,22FE2C,62FE2C,4ff,Digest301 ,7C8,24,279,1,0,0,,22FE2D,62FE2D,4ff,Digest302 ,7C8,24,279,1,0,0,,22FE2E,62FE2E,4ff,Digest303 ,7C8,24,279,1,0,0,,22FE2F,62FE2F,4ff,Digest304 ,7C8,24,279,1,0,0,,22FE30,62FE30,4ff,Digest305 ,7C8,24,279,1,0,0,,22FE31,62FE31,4ff,Digest306 ,7C8,24,279,1,0,0,,22FE32,62FE32,4ff,Digest307 ,7C8,24,279,1,0,0,,22FE33,62FE33,4ff,Digest308 ,7C8,24,279,1,0,0,,22FE34,62FE34,4ff,Digest309 ,7C8,24,279,1,0,0,,22FE35,62FE35,4ff,Digest310 ,7C8,24,279,1,0,0,,22FE36,62FE36,4ff,Digest311 ,7C8,24,279,1,0,0,,22FE37,62FE37,4ff,Digest312 ,7C8,24,279,1,0,0,,22FE38,62FE38,4ff,Digest313 ,7C8,24,279,1,0,0,,22FE39,62FE39,4ff,Digest314 ,7C8,24,279,1,0,0,,22FE3A,62FE3A,4ff,Digest315 ,7C8,24,279,1,0,0,,22FE3B,62FE3B,4ff,Digest316 ,7C8,24,279,1,0,0,,22FE3C,62FE3C,4ff,Digest317 ,7C8,24,279,1,0,0,,22FE3D,62FE3D,4ff,Digest318 ,7C8,24,279,1,0,0,,22FE3E,62FE3E,4ff,Digest319 ,7C8,24,279,1,0,0,,22FE3F,62FE3F,4ff,Digest320 ,7C8,24,279,1,0,0,,22FE40,62FE40,4ff,Digest321 ,7C8,24,279,1,0,0,,22FE41,62FE41,4ff,Digest322 ,7C8,24,279,1,0,0,,22FE42,62FE42,4ff,Digest323 ,7C8,24,279,1,0,0,,22FE43,62FE43,4ff,Digest324 ,7C8,24,279,1,0,0,,22FE44,62FE44,4ff,Digest325 ,7C8,24,279,1,0,0,,22FE45,62FE45,4ff,Digest326 ,7C8,24,279,1,0,0,,22FE46,62FE46,4ff,Digest327 ,7C8,24,279,1,0,0,,22FE47,62FE47,4ff,Digest328 ,7C8,24,279,1,0,0,,22FE48,62FE48,4ff,Digest329 ,7C8,24,279,1,0,0,,22FE49,62FE49,4ff,Digest330 ,7C8,24,279,1,0,0,,22FE4A,62FE4A,4ff,Digest331 ,7C8,24,279,1,0,0,,22FE4B,62FE4B,4ff,Digest332 ,7C8,24,279,1,0,0,,22FE4C,62FE4C,4ff,Digest333 ,7C8,24,279,1,0,0,,22FE4D,62FE4D,4ff,Digest334 ,7C8,24,279,1,0,0,,22FE4E,62FE4E,4ff,Digest335 ,7C8,24,279,1,0,0,,22FE4F,62FE4F,4ff,Digest336 ,7C8,24,279,1,0,0,,22FE50,62FE50,4ff,Digest337 ,7C8,24,279,1,0,0,,22FE51,62FE51,4ff,Digest338 ,7C8,24,279,1,0,0,,22FE52,62FE52,4ff,Digest339 ,7C8,24,279,1,0,0,,22FE53,62FE53,4ff,Digest340 ,7C8,24,279,1,0,0,,22FE54,62FE54,4ff,Digest341 ,7C8,24,279,1,0,0,,22FE55,62FE55,4ff,Digest342 ,7C8,24,279,1,0,0,,22FE56,62FE56,4ff,Digest343 ,7C8,24,279,1,0,0,,22FE57,62FE57,4ff,Digest344 ,7C8,24,279,1,0,0,,22FE58,62FE58,4ff,Digest345 ,7C8,24,279,1,0,0,,22FE59,62FE59,4ff,Digest346 ,7C8,24,279,1,0,0,,22FE5A,62FE5A,4ff,Digest347 ,7C8,24,279,1,0,0,,22FE5B,62FE5B,4ff,Digest348 ,7C8,24,279,1,0,0,,22FE5C,62FE5C,4ff,Digest349 ,7C8,24,279,1,0,0,,22FE5D,62FE5D,4ff,Digest350 ,7C8,24,279,1,0,0,,22FE5E,62FE5E,4ff,Digest351 ,7C8,24,279,1,0,0,,22FE5F,62FE5F,4ff,Digest352 ,7C8,24,279,1,0,0,,22FE60,62FE60,4ff,Digest353 ,7C8,24,279,1,0,0,,22FE61,62FE61,4ff,Digest354 ,7C8,24,279,1,0,0,,22FE62,62FE62,4ff,Digest355 ,7C8,24,279,1,0,0,,22FE63,62FE63,4ff,Digest356 ,7C8,24,279,1,0,0,,22FE64,62FE64,4ff,Digest357 ,7C8,24,279,1,0,0,,22FE65,62FE65,4ff,Digest358 ,7C8,24,279,1,0,0,,22FE66,62FE66,4ff,Digest359 ,7C8,24,279,1,0,0,,22FE67,62FE67,4ff,Digest360 ,7C8,24,279,1,0,0,,22FE68,62FE68,4ff,Digest361 ,7C8,24,279,1,0,0,,22FE69,62FE69,4ff,Digest362 ,7C8,24,279,1,0,0,,22FE6A,62FE6A,4ff,Digest363 ,7C8,24,279,1,0,0,,22FE6B,62FE6B,4ff,Digest364 ,7C8,24,279,1,0,0,,22FE6C,62FE6C,4ff,Digest365 ,7C8,24,279,1,0,0,,22FE6D,62FE6D,4ff,Digest366 ,7C8,24,279,1,0,0,,22FE6E,62FE6E,4ff,Digest367 ,7C8,24,279,1,0,0,,22FE6F,62FE6F,4ff,Digest368 ,7C8,24,279,1,0,0,,22FE70,62FE70,4ff,Digest369 ,7C8,24,279,1,0,0,,22FE71,62FE71,4ff,Digest370 ,7C8,24,279,1,0,0,,22FE72,62FE72,4ff,Digest371 ,7C8,24,279,1,0,0,,22FE73,62FE73,4ff,Digest372 ,7C8,24,279,1,0,0,,22FE74,62FE74,4ff,Digest373 ,7C8,24,279,1,0,0,,22FE75,62FE75,4ff,Digest374 ,7C8,24,279,1,0,0,,22FE76,62FE76,4ff,Digest375 ,7C8,24,279,1,0,0,,22FE77,62FE77,4ff,Digest376 ,7C8,24,279,1,0,0,,22FE78,62FE78,4ff,Digest377 ,7C8,24,279,1,0,0,,22FE79,62FE79,4ff,Digest378 ,7C8,24,279,1,0,0,,22FE7A,62FE7A,4ff,Digest379 ,7C8,24,279,1,0,0,,22FE7B,62FE7B,4ff,Digest380 ,7C8,24,279,1,0,0,,22FE7C,62FE7C,4ff,Digest381 ,7C8,24,279,1,0,0,,22FE7D,62FE7D,4ff,Digest382 ,7C8,24,279,1,0,0,,22FE7E,62FE7E,4ff,Digest383 ,7C8,24,279,1,0,0,,22FE7F,62FE7F,4ff,Digest384 ,7C8,24,279,1,0,0,,22FE80,62FE80,4ff,Digest385 ,7C8,24,279,1,0,0,,22FE81,62FE81,4ff,Digest386 ,7C8,24,279,1,0,0,,22FE82,62FE82,4ff,Digest387 ,7C8,24,279,1,0,0,,22FE83,62FE83,4ff,Digest388 ,7C8,24,279,1,0,0,,22FE84,62FE84,4ff,Digest389 ,7C8,24,279,1,0,0,,22FE85,62FE85,4ff,Digest390 ,7C8,24,279,1,0,0,,22FE86,62FE86,4ff,Digest391 ,7C8,24,279,1,0,0,,22FE87,62FE87,4ff,Digest392 ,7C8,24,279,1,0,0,,22FE88,62FE88,4ff,Digest393 ,7C8,24,279,1,0,0,,22FE89,62FE89,4ff,Digest394 ,7C8,24,279,1,0,0,,22FE8A,62FE8A,4ff,Digest395 ,7C8,24,279,1,0,0,,22FE8B,62FE8B,4ff,Digest396 ,7C8,24,279,1,0,0,,22FE8C,62FE8C,4ff,Digest397 ,7C8,24,279,1,0,0,,22FE8D,62FE8D,4ff,Digest398 ,7C8,24,279,1,0,0,,22FE8E,62FE8E,4ff,Digest399 ,7C8,24,279,1,0,0,,22FE8F,62FE8F,4ff,Digest400 ,7C8,24,279,1,0,0,,22FE90,62FE90,4ff,Digest401 ,7C8,24,279,1,0,0,,22FE91,62FE91,4ff,Digest402 ,7C8,24,279,1,0,0,,22FE92,62FE92,4ff,Digest403 ,7C8,24,279,1,0,0,,22FE93,62FE93,4ff,Digest404 ,7C8,24,279,1,0,0,,22FE94,62FE94,4ff,Digest405 ,7C8,24,279,1,0,0,,22FE95,62FE95,4ff,Digest406 ,7C8,24,279,1,0,0,,22FE96,62FE96,4ff,Digest407 ,7C8,24,279,1,0,0,,22FE97,62FE97,4ff,Digest408 ,7C8,24,279,1,0,0,,22FE98,62FE98,4ff,Digest409 ,7C8,24,279,1,0,0,,22FE99,62FE99,4ff,Digest410 ,7C8,24,279,1,0,0,,22FE9A,62FE9A,4ff,Digest411 ,7C8,24,279,1,0,0,,22FE9B,62FE9B,4ff,Digest412 ,7C8,24,279,1,0,0,,22FE9C,62FE9C,4ff,Digest413 ,7C8,24,279,1,0,0,,22FE9D,62FE9D,4ff,Digest414 ,7C8,24,279,1,0,0,,22FE9E,62FE9E,4ff,Digest415 ,7C8,24,279,1,0,0,,22FE9F,62FE9F,4ff,Digest416 ,7C8,24,279,1,0,0,,22FEA0,62FEA0,4ff,Digest417 ,7C8,24,279,1,0,0,,22FEA1,62FEA1,4ff,Digest418 ,7C8,24,279,1,0,0,,22FEA2,62FEA2,4ff,Digest419 ,7C8,24,279,1,0,0,,22FEA3,62FEA3,4ff,Digest420 ,7C8,24,279,1,0,0,,22FEA4,62FEA4,4ff,Digest421 ,7C8,24,279,1,0,0,,22FEA5,62FEA5,4ff,Digest422 ,7C8,24,279,1,0,0,,22FEA6,62FEA6,4ff,Digest423 ,7C8,24,279,1,0,0,,22FEA7,62FEA7,4ff,Digest424 ,7C8,24,279,1,0,0,,22FEA8,62FEA8,4ff,Digest425 ,7C8,24,279,1,0,0,,22FEA9,62FEA9,4ff,Digest426 ,7C8,24,279,1,0,0,,22FEAA,62FEAA,4ff,Digest427 ,7C8,24,279,1,0,0,,22FEAB,62FEAB,4ff,Digest428 ,7C8,24,279,1,0,0,,22FEAC,62FEAC,4ff,Digest429 ,7C8,24,279,1,0,0,,22FEAD,62FEAD,4ff,Digest430 ,7C8,24,279,1,0,0,,22FEAE,62FEAE,4ff,Digest431 ,7C8,24,279,1,0,0,,22FEAF,62FEAF,4ff,Digest432 ,7C8,24,279,1,0,0,,22FEB0,62FEB0,4ff,Digest433 ,7C8,24,279,1,0,0,,22FEB1,62FEB1,4ff,Digest434 ,7C8,24,279,1,0,0,,22FEB2,62FEB2,4ff,Digest435 ,7C8,24,279,1,0,0,,22FEB3,62FEB3,4ff,Digest436 ,7C8,24,279,1,0,0,,22FEB4,62FEB4,4ff,Digest437 ,7C8,24,279,1,0,0,,22FEB5,62FEB5,4ff,Digest438 ,7C8,24,279,1,0,0,,22FEB6,62FEB6,4ff,Digest439 ,7C8,24,279,1,0,0,,22FEB7,62FEB7,4ff,Digest440 ,7C8,24,279,1,0,0,,22FEB8,62FEB8,4ff,Digest441 ,7C8,24,279,1,0,0,,22FEB9,62FEB9,4ff,Digest442 ,7C8,24,279,1,0,0,,22FEBA,62FEBA,4ff,Digest443 ,7C8,24,279,1,0,0,,22FEBB,62FEBB,4ff,Digest444 ,7C8,24,279,1,0,0,,22FEBC,62FEBC,4ff,Digest445 ,7C8,24,279,1,0,0,,22FEBD,62FEBD,4ff,Digest446 ,7C8,24,279,1,0,0,,22FEBE,62FEBE,4ff,Digest447 ,7C8,24,279,1,0,0,,22FEBF,62FEBF,4ff,Digest448 ,7C8,24,279,1,0,0,,22FEC0,62FEC0,4ff,Digest449 ,7C8,24,279,1,0,0,,22FEC1,62FEC1,4ff,Digest450 ,7C8,24,279,1,0,0,,22FEC2,62FEC2,4ff,Digest451 ,7C8,24,279,1,0,0,,22FEC3,62FEC3,4ff,Digest452 ,7C8,24,279,1,0,0,,22FEC4,62FEC4,4ff,Digest453 ,7C8,24,279,1,0,0,,22FEC5,62FEC5,4ff,Digest454 ,7C8,24,279,1,0,0,,22FEC6,62FEC6,4ff,Digest455 ,7C8,24,279,1,0,0,,22FEC7,62FEC7,4ff,Digest456 ,7C8,24,279,1,0,0,,22FEC8,62FEC8,4ff,Digest457 ,7C8,24,279,1,0,0,,22FEC9,62FEC9,4ff,Digest458 ,7C8,24,279,1,0,0,,22FECA,62FECA,4ff,Digest459 ,7C8,24,279,1,0,0,,22FECB,62FECB,4ff,Digest460 ,7C8,24,279,1,0,0,,22FECC,62FECC,4ff,Digest461 ,7C8,24,279,1,0,0,,22FECD,62FECD,4ff,Digest462 ,7C8,24,279,1,0,0,,22FECE,62FECE,4ff,Digest463 ,7C8,24,279,1,0,0,,22FECF,62FECF,4ff,Digest464 ,7C8,24,279,1,0,0,,22FED0,62FED0,4ff,Digest465 ,7C8,24,279,1,0,0,,22FED1,62FED1,4ff,Digest466 ,7C8,24,279,1,0,0,,22FED2,62FED2,4ff,Digest467 ,7C8,24,279,1,0,0,,22FED3,62FED3,4ff,Digest468 ,7C8,24,279,1,0,0,,22FED4,62FED4,4ff,Digest469 ,7C8,24,279,1,0,0,,22FED5,62FED5,4ff,Digest470 ,7C8,24,279,1,0,0,,22FED6,62FED6,4ff,Digest471 ,7C8,24,279,1,0,0,,22FED7,62FED7,4ff,Digest472 ,7C8,24,279,1,0,0,,22FED8,62FED8,4ff,Digest473 ,7C8,24,279,1,0,0,,22FED9,62FED9,4ff,Digest474 ,7C8,24,279,1,0,0,,22FEDA,62FEDA,4ff,Digest475 ,7C8,24,279,1,0,0,,22FEDB,62FEDB,4ff,Digest476 ,7C8,24,279,1,0,0,,22FEDC,62FEDC,4ff,Digest477 ,7C8,24,279,1,0,0,,22FEDD,62FEDD,4ff,Digest478 ,7C8,24,279,1,0,0,,22FEDE,62FEDE,4ff,Digest479 ,7C8,24,279,1,0,0,,22FEDF,62FEDF,4ff,Digest480 ,7C8,24,279,1,0,0,,22FEE0,62FEE0,4ff,Digest481 ,7C8,24,279,1,0,0,,22FEE1,62FEE1,4ff,Digest482 ,7C8,24,279,1,0,0,,22FEE2,62FEE2,4ff,Digest483 ,7C8,24,279,1,0,0,,22FEE3,62FEE3,4ff,Digest484 ,7C8,24,279,1,0,0,,22FEE4,62FEE4,4ff,Digest485 ,7C8,24,279,1,0,0,,22FEE5,62FEE5,4ff,Digest486 ,7C8,24,279,1,0,0,,22FEE6,62FEE6,4ff,Digest487 ,7C8,24,279,1,0,0,,22FEE7,62FEE7,4ff,Digest488 ,7C8,24,279,1,0,0,,22FEE8,62FEE8,4ff,Digest489 ,7C8,24,279,1,0,0,,22FEE9,62FEE9,4ff,Digest490 ,7C8,24,279,1,0,0,,22FEEA,62FEEA,4ff,Digest491 ,7C8,24,279,1,0,0,,22FEEB,62FEEB,4ff,Digest492 ,7C8,24,279,1,0,0,,22FEEC,62FEEC,4ff,Digest493 ,7C8,24,279,1,0,0,,22FEED,62FEED,4ff,Digest494 ,7C8,24,279,1,0,0,,22FEEE,62FEEE,4ff,Digest495 ,7C8,24,279,1,0,0,,22FEEF,62FEEF,4ff,Digest496 ,7C8,24,279,1,0,0,,22FEF0,62FEF0,4ff,Digest497 ,7C8,24,279,1,0,0,,22FEF1,62FEF1,4ff,Digest498 ,7C8,24,279,1,0,0,,22FEF2,62FEF2,4ff,Digest499 ,7C8,24,279,1,0,0,,22FEF3,62FEF3,4ff,Digest500 ,7C8,24,279,1,0,0,,22FEF4,62FEF4,4ff,Digest501 ,7C8,24,279,1,0,0,,22FEF5,62FEF5,4ff,Digest502 ,7C8,24,279,1,0,0,,22FEF6,62FEF6,4ff,Digest503 ,7C8,24,279,1,0,0,,22FEF7,62FEF7,4ff,Digest504 ,7C8,24,279,1,0,0,,22FEF8,62FEF8,4ff,Digest505 ,7C8,24,279,1,0,0,,22FEF9,62FEF9,4ff,Digest506 ,7C8,24,279,1,0,0,,22FEFA,62FEFA,4ff,Digest507 ,7C8,24,279,1,0,0,,22FEFB,62FEFB,4ff,Digest508 ,7C8,24,279,1,0,0,,22FEFC,62FEFC,4ff,Digest509 ,7C8,24,279,1,0,0,,22FEFD,62FEFD,4ff,Digest510 ,7C8,24,279,1,0,0,,22FEFE,62FEFE,4ff,Digest511 ,7C8,24,279,1,0,0,,22FEFF,62FEFF,4ff,Digest512 ,7C8,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/PLC-PLGW_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal level out of range/zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component | system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/Parking-Sonar_Dtcs.csv ================================================ A725,RearBuzzer A72D,FrontBuzzer A72C,FrontOuterRightSensor A729,FrontOuterLeftSensor A72B,FrontInnerRightSensor A72A,FrontInnerLeftSensor A724,ECU A723,RearOuterRightSensor A720,RearOuterLeftSensor A722,RearInnerRightSensor A721,RearInnerLeftSensor A73A,Configuration A739,HFPswitch A732,BSWswitchLed A735,BSWrightLed A734,BSWleftLed A731,RearSideRightSensor A72E,FrontSideLeftSensor A73D,HFP_UPAswitchLed A740,AT_ECU A741,BRAKE_ECU A744,BCM_ECU A746,4WS_ECU A745,EPS_ECU A742,USM_ECU A733,PSMswitchLed A736,BSWleftStatusLed A737,BSWrightStatusLed A738,Front Sensor Power A73B,Rear Sensor Power A747,ECM_ECU A748,EPBK_ECU A749,IDM_ECU A74A,STRG_ECU A74B,VDC_ECU A74E,CAMERA_ECU A74C,ADAS_ECU A74D,METER_ECU A750,IVI_ECU A74F,RADAR_ECU A743,UTA_ECU E152,DTC_MUX_ADAS_A6 E141,DTC_MUX_ATCU_A3 E175,DTC_MUX_AVM_A8 E14F,DTC_MUX_BCM_A4 E140,DTC_MUX_ECM_A8 E155,DTC_MUX_EPKB_A1 E159,DTC_MUX_EPS_R4 E16B,DTC_MUX_FRCAMERA_A1 E104,DTC_MUX_FWS_R3 E14E,DTC_MUX_METER_A3 E176,DTC_MUX_IDM_A3 E154,DTC_MUX_IVI_A5 E15B,DTC_MUX_USM_A1 E148,DTC_MUX_VDC_A3 A751,UTA_ECU_Conf A730,RearSideLeftSensor A72F,FrontSideRightSensor A73E,DTC PLCSafetyBag ================================================ FILE: app/src/main/assets/ZOE_Ph2/Parking-Sonar_Fields.csv ================================================ ,76E,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,76E,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Programming ,76E,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession ,76E,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,76E,0,0,1,0,0,,1901FF,5901FF,ff,ReadDTCInformation.ReportNumberOfDTCByStatusMask ,76E,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,76E,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,42822:4WS_ECU;42816:AT_ECU;42820:BCM_ECU;42817:BRAKE_ECU;42804:BSWleftLed;42806:BSWleftStatusLed;42805:BSWrightLed;42807:BSWrightStatusLed;42802:BSWswitchLed;42828:ADAS_ECU;42810:Configuration;42814:DTC PLCSafetyBag;42830:CAMERA_ECU;57665:DTC_MUX_ATCU_A3;57682:DTC_MUX_ADAS_A6;57679:DTC_MUX_BCM_A4;57664:DTC_MUX_ECM_A8;57685:DTC_MUX_EPKB_A1;57689:DTC_MUX_EPS_R4;57707:DTC_MUX_FRCAMERA_A1;57604:DTC_MUX_FWS_R3;57717:DTC_MUX_AVM_A8;57684:DTC_MUX_IVI_A5;57678:DTC_MUX_METER_A3;57691:DTC_MUX_USM_A1;57672:DTC_MUX_VDC_A3;42823:ECM_ECU;42788:ECU;42824:EPBK_ECU;42821:EPS_ECU;42808:Front Sensor Power;42797:FrontBuzzer;42794:FrontInnerLeftSensor;42795:FrontInnerRightSensor;42793:FrontOuterLeftSensor;42796:FrontOuterRightSensor;42798:FrontSideLeftSensor;42799:FrontSideRightSensor;42813:HFP_UPAswitchLed;42809:HFPswitch;42825:IDM_ECU;42832:IVI_ECU;42829:METER_ECU;42803:PSMswitchLed;42831:RADAR_ECU;42811:Rear Sensor Power;42789:RearBuzzer;42785:RearInnerLeftSensor;42786:RearInnerRightSensor;42784:RearOuterLeftSensor;42787:RearOuterRightSensor;42800:RearSideLeftSensor;42801:RearSideRightSensor;42826:STRG_ECU;42818:USM_ECU;42819:UTA_ECU;42833:UTA_ECU_Conf;42827:VDC_ECU;57718:DTC_MUX_IDM_A3 ,76E,40,43,1,0,0,,1902FF,5902FF,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,76E,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier,0:Unused ,76E,48,55,1,0,0,,1902FF,5902FF,ff,StatusOfDTC ,76E,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,76E,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,76E,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,76E,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,76E,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,76E,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,76E,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,76E,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,76E,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,76E,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,76E,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,42822:4WS_ECU;42816:AT_ECU;42820:BCM_ECU;42817:BRAKE_ECU;42804:BSWleftLed;42806:BSWleftStatusLed;42805:BSWrightLed;42807:BSWrightStatusLed;42802:BSWswitchLed;42828:ADAS_ECU;42810:Configuration;42814:DTC PLCSafetyBag;42830:CAMERA_ECU;57665:DTC_MUX_ATCU_A3;57682:DTC_MUX_ADAS_A6;57679:DTC_MUX_BCM_A4;57664:DTC_MUX_ECM_A8;57685:DTC_MUX_EPKB_A1;57689:DTC_MUX_EPS_R4;57707:DTC_MUX_FRCAMERA_A1;57604:DTC_MUX_FWS_R3;57717:DTC_MUX_AVM_A8;57684:DTC_MUX_IVI_A5;57678:DTC_MUX_METER_A3;57691:DTC_MUX_USM_A1;57672:DTC_MUX_VDC_A3;42823:ECM_ECU;42788:ECU;42824:EPBK_ECU;42821:EPS_ECU;42808:Front Sensor Power;42797:FrontBuzzer;42794:FrontInnerLeftSensor;42795:FrontInnerRightSensor;42793:FrontOuterLeftSensor;42796:FrontOuterRightSensor;42798:FrontSideLeftSensor;42799:FrontSideRightSensor;42813:HFP_UPAswitchLed;42809:HFPswitch;42825:IDM_ECU;42832:IVI_ECU;42829:METER_ECU;42803:PSMswitchLed;42831:RADAR_ECU;42811:Rear Sensor Power;42789:RearBuzzer;42785:RearInnerLeftSensor;42786:RearInnerRightSensor;42784:RearOuterLeftSensor;42787:RearOuterRightSensor;42800:RearSideLeftSensor;42801:RearSideRightSensor;42826:STRG_ECU;42818:USM_ECU;42819:UTA_ECU;42833:UTA_ECU_Conf;42827:VDC_ECU;57718:DTC_MUX_IDM_A3 ,76E,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level OutOfRange/0 adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component or system operation obstructed / blocked;152:component or system over temperature ,76E,0,0,1,0,0,,1914,5914,ff,ReadDTCInformation.ReportDTCFaultDetectionCounter ,76E,31,31,1,0,0,,222002,622002,ff,cfg.RearDetectionState,0:Off;1:On ,76E,31,31,1,0,0,,222003,622003,ff,cfg.FrontDetectionState,0:Off;1:On ,76E,24,31,1,0,0,,222004,622004,ff,cfg.SwitchMode,0:No switch;1:Not used;2:UPA/FKP Permanent/Temporary (A.16 switch dedicated to UPA/FKP Permanent/Temporary);3:HFP (A.16 switch dedicated to HFP and UPA/FKP activated via Cluster/MMI);4:UPA/FKP Permanent (A.16 switch dedicated to UPA/FKP Permanent);5:HFPB (A.16 switch dedicated to HFPB and UPA/FKP activated via Cluster/MMI);7:PSM (A.16 switch dedicated to PSM and UPA/FKP activated via Cluster/MMI);8:UPA/FKP Permanent/Temporary + PSM Dedicated switch (A.16 switch dedicated to UPA/FKP Permanent/Temporary and B.10 switch Dedicated to PSM);9:UPA/FKP Permanent + PSM Dedicated switch (A.16 switch dedicated to UPA/FKP Permanent and B.10 switch Dedicated to PSM) ,76E,30,30,1,0,0,,222005,622005,ff,cfg.LEDMode.NoBlinkWhenError,0:Off;1:On ,76E,31,31,1,0,0,,222005,622005,ff,cfg.LEDMode.lightState,0:LED is light when UPA is OFF;1:LED is light when UPA is ON ,76E,24,24,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.ContinuousTone,0:PingPong Rear Front;1:Rear priority ,76E,25,25,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.ErrorBeepCount,0:Every Time Reverse gear engaged;1:Only once in Power ON cycle ,76E,26,26,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.AODBeep,0:No;1:Yes ,76E,27,27,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.RogerBeep,0:No;1:Yes ,76E,28,28,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.ErrorBeep,0:No;1:Yes ,76E,29,29,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.DetectionBeep,0:No;1:Yes ,76E,30,30,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.FrontBuzzer,0:No;1:Yes ,76E,31,31,1,0,0,,222006,622006,ff,cfg.SoundConfigurationFlags.UseBuzzer,0:No;1:Yes ,76E,26,26,1,0,0,,222007,622007,ff,cfg.ConfigurationFlag.UpdateUPAObstacleZoneInAllMode,0:Off;1:On ,76E,28,28,1,0,0,,222007,622007,ff,cfg.ConfigurationFlag.RearObstacleDetection,0:No;1:Yes ,76E,29,29,1,0,0,,222007,622007,ff,cfg.ConfigurationFlag.DepartSwitchOffFunction,0:No;1:Yes ,76E,30,30,1,0,0,,222007,622007,ff,cfg.ConfigurationFlag.CornerSwitchOffFunction,0:No;1:Yes ,76E,24,31,1,0,0,,222008,622008,ff,cfg.BuzzerSoundIndex,1:Level 1;2:Level 2;3:Level 3;4:Level 4;5:Level 5;6:Level 6;7:Level 7 (off) ,76E,24,31,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level1Volume ,76E,32,39,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level2Volume ,76E,40,47,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level3Volume ,76E,48,55,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level4Volume ,76E,56,63,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level5Volume ,76E,64,71,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level6Volume ,76E,72,79,1,0,0,,222009,622009,ff,cfg.RearBuzzerVolume.Level7Volume ,76E,24,31,1,0,0,,22200A,62200A,ff,cfg.BuzzerFrequency.RearDetection,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,32,39,1,0,0,,22200A,62200A,ff,cfg.BuzzerFrequency.FrontDetection,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,40,47,1,0,0,,22200A,62200A,ff,cfg.BuzzerFrequency.RogerBeep,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,48,55,1,0,0,,22200A,62200A,ff,cfg.BuzzerFrequency.ErrorBeep,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,24,31,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level1Volume ,76E,32,39,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level2Volume ,76E,40,47,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level3Volume ,76E,48,55,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level4Volume ,76E,56,63,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level5Volume ,76E,64,71,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level6Volume ,76E,72,79,1,0,0,,22200B,62200B,ff,cfg.FrontBuzzerVolume.Level7Volume ,76E,24,31,1,0,0,cm,22200D,62200D,ff,cfg.TrailerHookDetectionZone ,76E,24,31,1,0,0,,22200E,62200E,ff,cfg.UPASystemType,0:Rear UPA;1:Rear and Front UPA;2:AVM;3:Rear and Front UPA + FKP;4:Rear UPA + FKP;5:FKP;255:no UPA ,76E,24,31,1,0,0,,22200F,62200F,ff,cfg.NumberOfSensors.RearSensors,0:no rear sensors;108:UPA 4 sensors;130:Side sensors only;238:all 6 rear sensors ,76E,32,39,1,0,0,,22200F,62200F,ff,cfg.NumberOfSensors.FrontSensors,0:no front sensors;108:UPA 4 sensors;130:Side sensors only;238:all 6 front sensors ,76E,24,31,1,0,0,s,222010,622010,ff,cfg.TempoValue ,76E,24,31,1,0,0,km/h,222011,622011,ff,cfg.VehicleSpeedThresholdForAutomaticActivation ,76E,24,31,1,0,0,km/h,222012,622012,ff,cfg.VehicleSpeedThresholdForAutomaticDeactivation ,76E,24,31,.1,0,1,s,222013,622013,ff,cfg.TempoWhenRearGearIsEngaged ,76E,24,31,.1,0,1,s,222014,622014,ff,cgf.TempoForDisplayCarAfterObstacleDisappearing ,76E,24,31,.1,0,1,s,222015,622015,ff,cfg.TempoForTransitionBetweenDifferentTypesOfDisplayCars ,76E,24,31,1,0,0,cm,222016,622016,ff,cfg.HysteresisForTransitionBetweenDifferentColorSquares ,76E,24,31,1,0,0,cm,222017,622017,ff,cfg.RearSensorGeometry.DistanceCentralToExternal ,76E,32,39,1,0,0,cm,222017,622017,ff,cfg.RearSensorGeometry.DistanceCentralToCentral ,76E,40,47,1,0,0,cm,222017,622017,ff,cfg.RearSensorGeometry.OffsetExternal ,76E,48,55,1,0,0,cm,222017,622017,ff,cfg.RearSensorGeometry.OffsetCentral ,76E,24,31,1,0,0,cm,222018,622018,ff,cfg.FrontSensorGeometry.DistanceCentralToExternal ,76E,32,39,1,0,0,cm,222018,622018,ff,cfg.FrontSensorGeometry.DistanceCentralToCentral ,76E,40,47,1,0,0,cm,222018,622018,ff,cfg.FrontSensorGeometry.OffsetExternal ,76E,48,55,1,0,0,cm,222018,622018,ff,cfg.FrontSensorGeometry.OffsetCentral ,76E,24,127,1,0,0,,222019,622019,4ff,cfg.RearInnerSensorThreshold ,76E,24,127,1,0,0,,22201A,62201A,4ff,cfg.RearOuterSensorThreshold ,76E,24,127,1,0,0,,22201B,62201B,4ff,cfg.FrontInnerSensorThreshold ,76E,24,127,1,0,0,,22201C,62201C,4ff,cfg.FrontOuterSensorThreshold ,76E,24,31,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.ContinuousTone ,76E,32,39,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.InnerSensorsDiscontinuousTone ,76E,40,47,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.OuterSensorsDiscontinuousTone ,76E,48,55,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.InnerSensorsVisualStart ,76E,56,63,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.OuterSensorsVisualStart ,76E,64,71,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.InnerSensorsBCPStart ,76E,72,79,1,0,0,cm,22201E,62201E,ff,cfg.DetectionRangeOfRearSensors.OuterSensorsBCPStart ,76E,24,31,1,0,0,cm,22201F,62201F,ff,cfg.DetectionRangeOfFrontSensors.ContinuousTone ,76E,32,39,1,0,0,cm,22201F,62201F,ff,cfg.DetectionRangeOfFrontSensors.InnerSensorsDiscontinuousTone ,76E,40,47,1,0,0,cm,22201F,62201F,ff,cfg.DetectionRangeOfFrontSensors.OuterSensorsDiscontinuousTone ,76E,48,55,1,0,0,cm,22201F,62201F,ff,cfg.DetectionRangeOfFrontSensors.InnerSensorsVisualStart ,76E,56,63,1,0,0,cm,22201F,62201F,ff,cfg.DetectionRangeOfFrontSensors.OuterSensorsVisualStart ,76E,24,31,1,0,0,,222021,622021,ff,cfg.GearMode,0:Reverse Gear input;1:Manual GearBox;2:Automatic GearBox ,76E,28,28,1,0,0,,222022,622022,ff,cfg.AutomaticReactivationScheme.SystemPower,0:No;1:Yes ,76E,29,29,1,0,0,,222022,622022,ff,cfg.AutomaticReactivationScheme.VehicleSpeed,0:No;1:Yes ,76E,30,30,1,0,0,,222022,622022,ff,cfg.AutomaticReactivationScheme.ReverseGear,0:No;1:Yes ,76E,31,31,1,0,0,,222022,622022,ff,cfg.AutomaticReactivationScheme.SwitchShortPush,0:No;1:Yes ,76E,31,31,1,0,0,,222023,622023,ff,cfg.BCPadaptation,0:Off;1:On ,76E,30,30,1,0,0,,22202A,62202A,ff,gcfg.LEDMode.NoBlinkWhenError,0:Off;1:On ,76E,31,31,1,0,0,,22202A,62202A,ff,gcfg.LEDMode.lightState,0:LED is light when UPA is OFF;1:LED is light when UPA is ON ,76E,32,32,1,0,0,,22202A,62202A,ff,gcfg.SoundConfigurationFlags.ContinuousTone,0:PingPong Rear Front;1:Rear priority ,76E,33,33,1,0,0,,22202A,62202A,ff,gcfg.SoundConfigurationFlags.ErrorBeepCount,0:Every Time Reverse gear engaged;1:Only once in Power ON cycle ,76E,34,34,1,0,0,,22202A,62202A,ff,gcfg.SoundConfigurationFlags.AODBeep,0:No;1:Yes ,76E,35,35,1,0,0,,22202A,62202A,ff,gcfg.SoundConfigurationFlags.RogerBeep,0:No;1:Yes ,76E,36,36,1,0,0,,22202A,62202A,ff,gcfg.SoundConfigurationFlags.ErrorBeep,0:No;1:Yes ,76E,37,37,1,0,0,,22202A,62202A,ff,gcfg.SoundConfigurationFlags.DetectionBeep,0:No;1:Yes ,76E,38,38,1,0,0,,22202A,62202A,ff,gcfg.SoundConfigurationFlags.FrontBuzzer,0:No;1:Yes ,76E,39,39,1,0,0,,22202A,62202A,ff,gcfg.SoundConfigurationFlags.UseBuzzer,0:No;1:Yes ,76E,40,47,1,0,0,,22202A,62202A,ff,gcfg.BuzzerSoundIndex,1:Level 1;2:Level 2;3:Level 3;4:Level 4;5:Level 5;6:Level 6;7:Level 7 (off) ,76E,48,55,1,0,0,,22202A,62202A,ff,gcfg.RearBuzzerVolume.Level1Volume ,76E,56,63,1,0,0,,22202A,62202A,ff,gcfg.RearBuzzerVolume.Level2Volume ,76E,64,71,1,0,0,,22202A,62202A,ff,gcfg.RearBuzzerVolume.Level3Volume ,76E,72,79,1,0,0,,22202A,62202A,ff,gcfg.RearBuzzerVolume.Level4Volume ,76E,80,87,1,0,0,,22202A,62202A,ff,gcfg.RearBuzzerVolume.Level5Volume ,76E,88,95,1,0,0,,22202A,62202A,ff,gcfg.RearBuzzerVolume.Level6Volume ,76E,96,103,1,0,0,,22202A,62202A,ff,gcfg.RearBuzzerVolume.Level7Volume ,76E,104,111,1,0,0,,22202A,62202A,ff,gcfg.BuzzerFrequency.RearDetection,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,112,119,1,0,0,,22202A,62202A,ff,gcfg.BuzzerFrequency.FrontDetection,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,120,127,1,0,0,,22202A,62202A,ff,gcfg.BuzzerFrequency.RogerBeep,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,128,135,1,0,0,,22202A,62202A,ff,gcfg.BuzzerFrequency.ErrorBeep,2:800 Hz;3:1000 Hz;4:1200 Hz;5:1500 Hz;6:1800 Hz;7:2000 Hz;8:2500 Hz ,76E,136,143,1,0,0,,22202A,62202A,ff,gcfg.FrontBuzzerVolume.Level1Volume ,76E,144,151,1,0,0,,22202A,62202A,ff,gcfg.FrontBuzzerVolume.Level2Volume ,76E,152,159,1,0,0,,22202A,62202A,ff,gcfg.FrontBuzzerVolume.Level3Volume ,76E,160,167,1,0,0,,22202A,62202A,ff,gcfg.FrontBuzzerVolume.Level4Volume ,76E,168,175,1,0,0,,22202A,62202A,ff,gcfg.FrontBuzzerVolume.Level5Volume ,76E,176,183,1,0,0,,22202A,62202A,ff,gcfg.FrontBuzzerVolume.Level6Volume ,76E,184,191,1,0,0,,22202A,62202A,ff,gcfg.FrontBuzzerVolume.Level7Volume ,76E,192,199,1,0,0,cm,22202A,62202A,ff,gcfg.TrailerHookDetectionZone ,76E,200,207,1,0,0,s,22202A,62202A,ff,gcfg.DisplayInterruptTempo ,76E,215,215,1,0,0,,22202A,62202A,ff,gcfg.DisplayInterrupt,0:No;1:Yes ,76E,218,218,1,0,0,,22202A,62202A,ff,gcfg.ConfigurationFlag.UpdateUPAObstacleZoneInAllMode,0:Off;1:On ,76E,220,220,1,0,0,,22202A,62202A,ff,gcfg.ConfigurationFlag.RearObstacleDetection,0:No;1:Yes ,76E,221,221,1,0,0,,22202A,62202A,ff,gcfg.ConfigurationFlag.DepartSwitchOffFunction,0:No;1:Yes ,76E,222,222,1,0,0,,22202A,62202A,ff,gcfg.ConfigurationFlag.CornerSwitchOffFunction,0:No;1:Yes ,76E,224,231,1,0,0,km/h,22202A,62202A,ff,gcfg.VehicleSpeedThresholdForAutomaticActivation ,76E,232,239,1,0,0,km/h,22202A,62202A,ff,gcfg.VehicleSpeedThresholdForAutomaticDeactivation ,76E,240,247,1,0,0,s,22202A,62202A,ff,gcfg.TempoValue ,76E,248,255,.1,0,1,s,22202A,62202A,ff,gcfg.TempoWhenRearGearIsEngaged ,76E,256,263,.1,0,1,s,22202A,62202A,ff,gcfg.TempoForDisplayCarDisappearAfterObstacleDisappear ,76E,264,271,.1,0,1,s,22202A,62202A,ff,gcfg.TempoForTransitionBetweenDifferentTypesOfDisplayCars ,76E,272,279,.1,0,1,s,22202A,62202A,ff,gcfg.TempoWhenRearNeutralGearTransitions ,76E,280,287,1,0,0,cm,22202A,62202A,ff,gcfg.HysteresisForTransitionBetweenDifferentColorSquares ,76E,288,295,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfRearSensors.ContinuousTone ,76E,296,303,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfRearSensors.InnerSensorsDiscontinuousTone ,76E,304,311,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfRearSensors.OuterSensorsDiscontinuousTone ,76E,312,319,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfRearSensors.InnerSensorsVisualStart ,76E,320,327,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfRearSensors.OuterSensorsVisualStart ,76E,328,335,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfRearSensors.InnerSensorsBCPStart ,76E,336,343,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfRearSensors.OuterSensorsBCPStart ,76E,344,351,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfFrontSensors.ContinuousTone ,76E,352,359,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfFrontSensors.InnerSensorsDiscontinuousTone ,76E,360,367,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfFrontSensors.OuterSensorsDiscontinuousTone ,76E,368,375,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfFrontSensors.InnerSensorsVisualStart ,76E,376,383,1,0,0,cm,22202A,62202A,ff,gcfg.DetectionRangeOfFrontSensors.OuterSensorsVisualStart ,76E,388,388,1,0,0,,22202A,62202A,ff,gcfg.AutomaticReactivationScheme.SystemPower,0:No;1:Yes ,76E,389,389,1,0,0,,22202A,62202A,ff,gcfg.AutomaticReactivationScheme.VehicleSpeed,0:No;1:Yes ,76E,390,390,1,0,0,,22202A,62202A,ff,gcfg.AutomaticReactivationScheme.ReverseGear,0:No;1:Yes ,76E,391,391,1,0,0,,22202A,62202A,ff,gcfg.AutomaticReactivationScheme.SwitchShortPush,0:No;1:Yes ,76E,399,399,1,0,0,,22202A,62202A,ff,gcfg.BCPadaptation,0:Off;1:On ,76E,404,407,10,0,0,%,22202A,62202A,ff,gcfg.UPA_HFP_Switch_LED.day_brightness ,76E,412,415,10,0,0,%,22202A,62202A,ff,gcfg.UPA_HFP_Switch_LED.night_brightness ,76E,420,423,10,0,0,%,22202A,62202A,ff,gcfg.UPA_HFP_Switch_LED.twilight_brightness ,76E,31,39,1,0,0,cm,22202C,62202C,ff,gcfg4.LevelEasy_SuperiorThreshold ,76E,47,55,1,0,0,cm,22202C,62202C,ff,gcfg4.LevelEasy_InferiorThreshold ,76E,63,71,1,0,0,cm,22202C,62202C,ff,gcfg4.LevelMedium_InferiorThreshold ,76E,79,87,1,0,0,cm,22202C,62202C,ff,gcfg4.LevelDifficult_InferiorThreshold ,76E,88,95,1,0,0,cm,22202C,62202C,1ff,gcfg4.LevelImpossible_InferiorThreshold ,76E,97,103,1,0,0,km/h,22202C,62202C,ff,gcfg4.PSM_MaxSpeedForDisplay ,76E,105,111,1,0,0,km/h,22202C,62202C,ff,gcfg4.PSM_MaxSpeedForScan ,76E,113,119,1,0,0,km/h,22202C,62202C,ff,gcfg4.PSM_MaxSpeedHysteresis ,76E,120,127,.01,0,2,s,22202C,62202C,ff,gcfg4.PSM_Failure_Flashing_frequency ,76E,132,135,5,0,0,s,22202C,62202C,ff,gcfg4.PSM_timeoutForMessage ,76E,140,143,10,0,0,%,22202C,62202C,ff,gcfg4.PSM_Switch_LED.day_brightness ,76E,148,151,10,0,0,%,22202C,62202C,ff,gcfg4.PSM_Switch_LED.night_brightness ,76E,156,159,10,0,0,%,22202C,62202C,ff,gcfg4.PSM_Switch_LED.twilight_brightness ,76E,168,175,.1,0,1,m,22202C,62202C,ff,gcfg4.HFP_HMI.negativeMemorizationDistance ,76E,176,183,.1,0,1,m,22202C,62202C,ff,gcfg4.HFP_HMI.memorizationDistance ,76E,187,191,5,0,0,cm,22202C,62202C,ff,gcfg4.HFP_HMI.backwardMoveForMMIOff ,76E,196,199,1,0,0,km/h,22202C,62202C,ff,gcfg4.HFP_Threshold.SpeedThresholdForExitingStartOfMission ,76E,205,207,1,0,0,km/h,22202C,62202C,ff,gcfg4.HFP_Threshold.HFP_MaxSpeedForPSMHysteresis ,76E,210,215,1,0,0,km/h,22202C,62202C,ff,gcfg4.HFP_Threshold.HFP.MaxSpeedForPSM ,76E,219,223,.1,0,1,s,22202C,62202C,ff,gcfg4.HFP_SafetyCalib.LongPushDuration ,76E,224,227,1,0,0,km/h,22202C,62202C,ff,gcfg4.HFP_SafetyCalib.SpeedThresholdForStartingManeuver ,76E,228,231,1,0,0,km/h,22202C,62202C,ff,gcfg4.HFP_SafetyCalib.SpeedThresholdForStoppingManeuver ,76E,235,239,1,0,0,s,22202C,62202C,ff,gcfg4.HFP_OffCondition.timeoutForStandstillError ,76E,240,255,.01,0,2,m,22202C,62202C,ff,gcfg4.HFP_OffCondition.maxMoveInWrongDirection ,76E,262,271,1,0,0,s,22202C,62202C,ff,gcfg4.HFP_OffCondition.standstillTimeBeforeDeactivation ,76E,272,275,1,0,0,,22202C,62202C,ff,gcfg4.HFP_OffCondition.maxManeuverCycles ,76E,276,279,.5,0,1,s,22202C,62202C,ff,gcfg4.HFP_OffCondition.timeToGetHandsOffWheel ,76E,297,303,1,0,0,°,22202C,62202C,ff,gcfg4.HFP_PO.maxAngleAllowed ,76E,305,311,.1,0,1,m,22202C,62202C,ff,gcfg4.HFP_PO.maxFrontObjectDistForPO ,76E,317,319,5,0,0,s,22202C,62202C,ff,gcfg4.HFP_timeoutForPopup ,76E,321,327,10,0,0,°/s,22202C,62202C,ff,gcfg4.maxSWARSpeedWhenMoving ,76E,328,334,10,0,0,ms,22202C,62202C,ff,gcfg4.HFP_IS.4WS_MaxReactionTime ,76E,339,343,1,0,0,s,22202C,62202C,ff,gcfg4.HFP_IS.timeBeforeRelax ,76E,350,359,1,0,0,°,22202C,62202C,ff,gcfg4.HFP_IS.maxSWARequest ,76E,369,375,10,0,0,ms,22202C,62202C,ff,gcfg4.HFP_IS.EPS_MaxReactionTime ,76E,383,391,1,0,0,°/s,22202C,62202C,ff,gcfg4.HFP_IS.speedForRelax ,76E,394,399,1,0,0,°,22202C,62202C,ff,gcfg4.HFP_IS.SWARDecreaseInRelax ,76E,406,415,1,0,0,,22202C,62202C,ff,gcfg4.HFP_IS.SWAThresholdToRelax ,76E,423,431,1,0,0,°/s,22202C,62202C,ff,gcfg4.HFP_IS.SWAPerSecondStandStill ,76E,449,455,1,0,0,cm,22202C,62202C,ff,gcfg4.doorOpeningClearance ,76E,457,463,.01,0,2,m,22202C,62202C,ff,gcfg4.HFP_Slot.maxDistanceToCurbstone ,76E,464,479,1,0,0,cm,22202C,62202C,ff,gcfg4.HFP_Slot.maxSlotDepthForCurbstoneAlignment ,76E,482,487,.05,0,2,m,22202C,62202C,ff,gcfg4.HFP_Slot.minSlotDepth ,76E,488,495,.02,0,2,m,22202C,62202C,ff,gcfg4.HFPB_Slot.minParallelSlotDepth ,76E,496,503,1,0,0,cm,22202C,62202C,ff,gcfg4.HFPB_Slot.minDiagonalSlotExtraLength ,76E,504,511,1,0,0,cm,22202C,62202C,ff,gcfg4.HFPB_Slot.minPerpendicularSlotExtraLength ,76E,512,519,1,0,0,m,22202C,62202C,ff,gcfg4.HFPB_Slot.maxParallelSlotExtraLengthForCentering ,76E,520,527,1,0,0,cm,22202C,62202C,ff,gcfg4.HFPB_Slot.minParallelSlotExtraLength ,76E,530,535,1,0,0,m,22202C,62202C,1ff,gcfg4.APA_MaxDistToStartManeuver ,76E,540,543,1,0,0,unit,22202C,62202C,ff,gcfg4.HFPB_soundRequestDuration ,76E,545,551,.1,0,1,m,22202C,62202C,ff,gcfg4.HFPB_Detection.minDetectionRange ,76E,553,559,.1,0,1,m,22202C,62202C,ff,gcfg4.HFPB_Detection.maxDetectionRange ,76E,560,567,1,0,0,cm,22202C,62202C,1ff,gcfg4.HFPB_Maneuver.FinalCrossLongPositionToCurb ,76E,569,575,1,0,0,cm,22202C,62202C,ff,gcfg4.HFPB_Maneuver.FinalCrossLongPositionToObstacle ,76E,576,583,1,0,0,cm,22202C,62202C,ff,gcfg4.HFPB_Maneuver.FinalParallelLongPositionToFrontObject ,76E,591,599,.01,0,2,m,22202C,62202C,ff,gcfg4.HFPB_maxCrossForwardMoveDistance ,76E,603,607,.5,0,1,m/s,22202C,62202C,ff,gcfg4.HFPB_DecelThresholdForStopInstr ,76E,612,615,1,0,0,cm,22202C,62202C,ff,gcfg4.HFPB_StopDistThresholdFor100perc ,76E,617,623,1,0,0,s,22202C,62202C,ff,gcfg4.HFP_SwitchBlockedSwitchDuration ,76E,24,31,1,0,0,,22202D,62202D,ff,gcfg3.DDD_UTAPresence ,76E,32,39,1,0,0,,22202D,62202D,ff,gcfg3.DDD_AlertActivationStatus ,76E,40,47,.125,0,1,,22202D,62202D,ff,gcfg3.DDD_State12 ,76E,48,55,.125,0,1,,22202D,62202D,ff,gcfg3.DDD_State23 ,76E,56,63,.125,0,1,,22202D,62202D,ff,gcfg3.DDD_State34 ,76E,64,71,.125,0,1,,22202D,62202D,ff,gcfg3.DDD_HystState21 ,76E,72,79,.125,0,1,,22202D,62202D,ff,gcfg3.DDD_HystState32 ,76E,80,87,.125,0,1,,22202D,62202D,ff,gcfg3.DDD_HystState43 ,76E,88,95,1,0,0,km/h,22202D,62202D,ff,gcfg3.DDD_vVehMin ,76E,96,103,1,0,0,km/h,22202D,62202D,ff,gcfg3.DDD_vVehMax ,76E,104,111,1,0,0,km/h,22202D,62202D,ff,gcfg3.DDD_DeactHMI_vVehMin ,76E,112,119,1,0,0,s,22202D,62202D,ff,gcfg3.DDD_DeactHMI_TimeMinDown ,76E,120,127,1,0,0,s,22202D,62202D,ff,gcfg3.DDD_DeactHMI_TimeMinUp ,76E,128,135,1,0,0,km/h,22202D,62202D,ff,gcfg3.DDD_DeactHMI_vVehMax ,76E,136,143,1,0,0,s,22202D,62202D,ff,gcfg3.DDD_DeactHMI_TimeMaxDown ,76E,144,151,1,0,0,s,22202D,62202D,ff,gcfg3.DDD_DeactHMI_TimeMaxUp ,76E,152,159,1,0,0,,22202D,62202D,ff,gcfg3.DDD_DevCANFrameActivatedLastPowerCycle ,76E,160,167,1,0,0,,22202D,62202D,ff,gcfg3.DDD_Dummy01 ,76E,168,175,1,0,0,,22202D,62202D,ff,gcfg3.DDD_Dummy02 ,76E,176,183,1,0,0,s,22202D,62202D,ff,gcfg3.DDD_AlertActTime ,76E,184,191,1,0,0,min,22202D,62202D,ff,gcfg3.DDD_MinTimeBtw2Wrng ,76E,192,199,1,0,0,-,22202D,62202D,ff,gcfg3.DDD_4WSVehicleEquipped ,76E,31,31,1,0,0,,22202E,62202E,ff,gcfg2.BSW_Presence,0:Not present;1:Present ,76E,39,39,1,0,0,,22202E,62202E,ff,gcfg2.BSW_Switch_Presence,0:Absent;1:Present ,76E,45,47,1,0,0,,22202E,62202E,ff,gcfg2.BSW_InitFlashing.Number ,76E,48,55,.01,0,2,s,22202E,62202E,ff,gcfg2.BSW_InitFlashing.Frequency ,76E,56,71,.1,0,1,km/h,22202E,62202E,ff,gcfg2.BSW_ThresholdSpeed.ThresholdLowDeactivationSpeed ,76E,72,87,.1,0,1,km/h,22202E,62202E,ff,gcfg2.BSW_ThresholdSpeed.ThresholdLowActivationSpeed ,76E,88,103,.1,0,1,km/h,22202E,62202E,ff,gcfg2.BSW_ThresholdSpeed.ThresholdHighActivationSpeed ,76E,104,119,.1,0,1,km/h,22202E,62202E,ff,gcfg2.BSW_ThresholdSpeed.ThresholdHighDeactivationSpeed ,76E,120,127,.01,0,2,s,22202E,62202E,ff,gcfg2.BSW_WarningLevel2_LED_Flashing_Rate ,76E,134,135,1,0,0,,22202E,62202E,ff,gcfg2.BSW_InitialStateCfg,0:AlwaysOn;1:AlwaysOff;2:Userdefined ,76E,143,143,1,0,0,,22202E,62202E,ff,gcfg2.BSW_2ndLevelWarningSound,0:Warning level without sound;1:Warning level with sound ,76E,144,151,.01,0,2,s,22202E,62202E,ff,gcfg2.BSW_Failure_Flashing_frequency ,76E,159,159,1,0,0,,22202E,62202E,ff,gcfg2.BSW_ThresholdSpeed_AlertAvailability,0:LEDs are OFF under/over speed thresholds;1:LEDs are ON under/over speed thresholds ,76E,167,167,1,0,0,,22202E,62202E,ff,gcfg2.BSW_Status_Presence,0:Absent;1:Present ,76E,175,183,10,0,0,°,22202E,62202E,ff,gcfg2.BSW_MaxSteeringAngle ,76E,190,199,.1,0,1,s,22202E,62202E,ff,gcfg2.BSW_WarningTimer ,76E,204,207,10,0,0,%,22202E,62202E,ff,gcfg2.BSW_Warning_LED.day_brightness ,76E,212,215,10,0,0,%,22202E,62202E,ff,gcfg2.BSW_Warning_LED.night_brightness ,76E,220,223,10,0,0,%,22202E,62202E,ff,gcfg2.BSW_Warning_LED.twlight_brightness ,76E,228,231,10,0,0,%,22202E,62202E,ff,gcfg2.BSW_Switch_LED.day_brightness ,76E,236,239,10,0,0,%,22202E,62202E,ff,gcfg2.BSW_Switch_LED.night_brightness ,76E,244,247,10,0,0,%,22202E,62202E,ff,gcfg2.BSW_Switch_LED.twilight_brightness ,76E,24,31,1,0,0,°,22202F,62202F,ff,gcfg1.DistDrivingTube.DTLimitAngle ,76E,34,39,1,0,0,cm,22202F,62202F,ff,gcfg1.DistDrivingTube.HighAngle ,76E,42,47,1,0,0,cm,22202F,62202F,ff,gcfg1.DistDrivingTube.LowAngle ,76E,48,55,1,0,0,°,22202F,62202F,ff,gcfg1.DistDrivingTube.DTLimitAngleHysteresis ,76E,56,63,1,0,0,cm,22202F,62202F,ff,gcfg1.DetectionRangeOfSideSensors.Continuous ,76E,64,71,1,0,0,,22202F,62202F,ff,gcfg1.DetectionRangeOfSideSensors.DiscontinuousFar ,76E,72,79,1,0,0,,22202F,62202F,ff,gcfg1.DetectionRangeOfSideSensors.DiscontinuousNear ,76E,80,87,1,0,0,,22202F,62202F,ff,gcfg1.DetectionRangeOfSideSensors.MaxRangeInNormalMode ,76E,93,95,30,0,0,s,22202F,62202F,ff,gcfg1.timeoutForScanZones ,76E,24,39,1,0,0,km/h,222030,622030,ff,VehicleSpeed ,76E,24,31,.1,0,1,V,222031,622031,ff,ECUvoltage ,76E,31,31,1,0,0,,222032,622032,ff,SensorsVoltage,0:voltage not ok;1:voltage ok ,76E,24,31,1,0,0,,222033,622033,ff,UPA_SystemState,0:Maneuver;1:Normal;2:Standby;3:Error ,76E,25,25,1,0,0,,222034,622034,ff,UPAStatusFrame.Push Trace,0:the button has not been pushed yet;1:the button was pushed at least one time ,76E,26,26,1,0,0,,222034,622034,ff,UPAStatusFrame.Short On_Off mode,0:System activated;1:System deactivated ,76E,27,27,1,0,0,,222034,622034,ff,UPAStatusFrame.Long On_Off mode,0:System activated;1:System deactivated ,76E,28,28,1,0,0,,222034,622034,ff,UPAStatusFrame.Neutral or Parking,0:Off;1:On ,76E,29,29,1,0,0,,222034,622034,ff,UPAStatusFrame.LED,0:Off;1:On ,76E,30,30,1,0,0,,222034,622034,ff,UPAStatusFrame.TrailerPresence,0:Trailer not connected;1:Trailer connected ,76E,31,31,1,0,0,,222034,622034,ff,UPAStatusFrame.Reverse,0:Off;1:On ,76E,24,31,1,0,0,cm,222035,622035,ff,RearCalculatedDistance ,76E,24,31,1,0,0,cm,222036,622036,ff,FrontCalculatedDistance ,76E,24,31,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearSideLeft ,76E,32,39,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearSideLeftToRearOuterLeft ,76E,40,47,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearOuterLeftToRearSideLeft ,76E,48,55,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearOuterLeft ,76E,56,63,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearOuterLeftToRearInnerLeft ,76E,64,71,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearInnerLeftToRearOuterLeft ,76E,72,79,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearInnerLeft ,76E,80,87,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearInnerLeftToRearInnerRight ,76E,88,95,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearInnerRightToRearInnerLeft ,76E,96,103,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearInnerRight ,76E,104,111,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearInnerRightToRearOuterRight ,76E,112,119,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearOuterRightToRearInnerRight ,76E,120,127,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearOuterRight ,76E,128,135,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearOuterRightToRearSideRight ,76E,136,143,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearSideRightToRearOuterRight ,76E,144,151,1,0,0,cm,222037,622037,ff,RearDistancesMeasurement.RearSideRight ,76E,24,31,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontSideLeft ,76E,32,39,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontSideLeftToFrontOuterLeft ,76E,40,47,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontOuterLeftToFrontSideLeft ,76E,48,55,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontOuterLeft ,76E,56,63,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontOuterLeftToFrontInnerLeft ,76E,64,71,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontInnerLeftToFrontOuterLeft ,76E,72,79,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontInnerLeft ,76E,80,87,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontInnerLeftToFrontInnerRight ,76E,88,95,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontInnerRightToFrontInnerLeft ,76E,96,103,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontInnerRight ,76E,104,111,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontInnerRightToFrontOuterRIght ,76E,112,119,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontOuterRightToFrontInnerRight ,76E,120,127,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontOuterRight ,76E,128,135,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontOuterRightToFrontSideRight ,76E,136,143,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontSideRightToFrontOuterRight ,76E,144,151,1,0,0,cm,222038,622038,ff,FrontDistancesMeasurement.FrontSideRight ,76E,24,31,.00001,0,3,s,222039,622039,ff,cfg.RearAttenuationTIme.RearSideLeft ,76E,32,39,.00001,0,3,s,222039,622039,ff,cfg.RearAttenuationTIme.RearSideRight ,76E,40,47,.00001,0,3,s,222039,622039,ff,cfg.RearAttenuationTIme.RearOuterLeft ,76E,48,55,.00001,0,3,s,222039,622039,ff,cfg.RearAttenuationTIme.RearOuterRight ,76E,56,63,.00001,0,3,s,222039,622039,ff,cfg.RearAttenuationTIme.RearInnerLeft ,76E,64,71,.00001,0,3,s,222039,622039,ff,cfg.RearAttenuationTIme.RearInnerRight ,76E,24,31,.00001,0,3,s,22203A,62203A,ff,cfg.FrontAttenuationTIme.FrontSideLeft ,76E,32,39,.00001,0,3,s,22203A,62203A,ff,cfg.FrontAttenuationTIme.FrontSideRight ,76E,40,47,.00001,0,3,s,22203A,62203A,ff,cfg.FrontAttenuationTIme.FrontOuterLeft ,76E,48,55,.00001,0,3,s,22203A,62203A,ff,cfg.FrontAttenuationTIme.FrontOuterRight ,76E,56,63,.00001,0,3,s,22203A,62203A,ff,cfg.FrontAttenuationTIme.FrontInnerLeft ,76E,64,71,.00001,0,3,s,22203A,62203A,ff,cfg.FrontAttenuationTIme.FrontInnerRight ,76E,31,31,1,0,0,,22203E,62203E,ff,FrontBuzzer,0:Off;1:On ,76E,31,31,1,0,0,,22203F,62203F,ff,RearBuzzer,0:Off;1:On ,76E,31,31,1,0,0,,222042,622042,ff,cfg.4WS_VehicleEquipped,0:vehicle without 4WS;1:vehicle with 4WS ,76E,24,14583,1,0,0,,222043,622043,4ff,cfg.SupplierData1 ,76E,24,1039,1,0,0,,222044,622044,4ff,cfg.SupplierData2 ,76E,24,135,1,0,0,,222045,622045,2ff,CalibrationNumber ,76E,24,31,.1,0,1,s,222046,622046,ff,cfg.TempoWhenRearNeutralGearTransitions ,76E,24,599,1,0,0,,222047,622047,4ff,cfg.SupplierDataDDD ,76E,24,55,1,0,0,,222048,622048,2ff,CalibrationNumberDDD ,76E,24,31,1,0,0,°,222049,622049,1ff,cfg.DistDrivingTube.DTLimitAngle ,76E,34,39,1,0,0,cm,222049,622049,ff,cfg.DistDrivingTube.HighAngle ,76E,42,47,1,0,0,cm,222049,622049,ff,cfg.DistDrivingTube.LowAngle ,76E,48,55,1,0,0,°,222049,622049,ff,cfg.DistDrivingTube.DTLimitAngleHysteresis ,76E,31,31,1,0,0,,22204B,62204B,1ff,cfg.UPA_CloseAuthorization ,76E,24,31,1,0,0,s,22204C,62204C,ff,cfg.DisplayInterruptTempo ,76E,28,31,1,0,0,,22204D,62204D,ff,PSM_SwitchLEDCommand ,76E,31,31,1,0,0,,22204E,62204E,ff,cfg.DisplayInterrupt,0:No;1:Yes ,76E,24,31,1,0,0,,22204F,62204F,ff,VehicleState,0:Sleeping;2:CutoffPending;3:AutoACC - BatTempoLevel;5:IgnitionLevel;6:StartingInProgress;7:PowertrainRunning;8:AutoStart;9:EngineSystemStop;15:Unavailable ,76E,24,39,1,0,0,,222099,622099,ff,cfg.DevIdConfigurationFlags,0:Deactivated;256:Single CAN;34480:Activated BSW Only;35346:HFP/HFPB Only;37393:UPA Only;39442:Activated UPA/HFP/HFPB/PSM ,76E,31,31,1,0,0,,222100,622100,ff,cfg.SideDetectionState,0:Off;1:On ,76E,24,31,1,0,0,cm,222101,622101,ff,cfg.DetectionRangeOfSideSensors.Continuous ,76E,32,39,1,0,0,cm,222101,622101,ff,cfg.DetectionRangeOfSideSensors.DiscontinuousFar ,76E,40,47,1,0,0,cm,222101,622101,ff,cfg.DetectionRangeOfSideSensors.DiscontinuousNear ,76E,48,55,1,0,0,cm,222101,622101,ff,cfg.DetectionRangeOfSideSensors.MaxRangeInNormalMode ,76E,29,31,30,0,0,s,222102,622102,ff,cfg.timeoutForScanZones ,76E,24,55,10,0,0,mm,222200,622200,1ff,HFP_OutOdometry.x ,76E,56,87,10,0,0,mm,222200,622200,1ff,HFP_OutOdometry.y ,76E,24,31,.1,0,1,m,222201,622201,ff,HFP_DetectedSlot.Lenght ,76E,32,39,.1,0,1,m,222201,622201,ff,HFP_DetectedSlot.Depth ,76E,24,31,1,0,0,,222202,622202,ff,HFP_StateMachine,0:State_0_IgnitionOff_enm;1:State_1_HfpOff_enm;2:State_211_NoMmi_enm;3:State_21211_NoSideSelected_enm;4:State_212131_NoSlotSelected_enm;5:State_212132_SlotSelected_enm;6:State_212133_SlotRdyVehMoving_enm;7:State_212134_SlotRdyVehStopped_enm;8:State_21221_NoSideSelPoc_enm;9:State_21222_SideSelPoc_enm;10:State_21223_VehicleMovingPoc_enm;11:State_221_ActuatorsInitialization_enm;12:State_22211_OngoingForward_enm;13:State_22212_StopReqForward_enm;14:State_22213_RgeRequest_enm;15:State_22221_OngoingBackward_enm;16:State_22222_StopReqBackward_enm;17:State_22223_FgeRequest_enm;18:State_2223_PoGuidance_enm;19:State_223_HandsOnWheel_enm;20:State_231_RecoveryCondNok_enm;21:State_2321_RecoveryCondOkStopReq_enm;22:State_2322_RecoveryCondOkStandstill_enm;23:State_241_ActuatorsNotReady_enm;24:State_242_ManeuverCancelled_enm;25:State_243_ManInDriverReq_enm;26:State_244_OutOfRecoveryCond_enm;27:State_251_SuccessfulPI_enm;28:State_252_SuccessfulPO_enm;29:State_3_ErrorMsgSpeedCondition_enm;30:State_4_ErrorMsgAbsAsr_enm;31:State_5_ErrorMsgTrailerHooked_enm;32:State_61_SS1_enm;33:State_62_ErrorMessageSS1_enm ,76E,31,31,1,0,0,,222203,622203,ff,HFP_SwitchState,0:Not Pushed;1:Pushed ,76E,31,31,1,0,0,,222204,622204,ff,HFP_StartOfMission,0:not the start of mission;1:start of mission ,76E,28,31,1,0,0,km/h,222205,622205,ff,cfg.HFP_Threshold.SpeedThresholdForExitingStartOfMission ,76E,37,39,1,0,0,km/h,222205,622205,ff,cfg.HFP_Threshold.MaxSpeedForPSMHysteresis ,76E,42,47,1,0,0,km/h,222205,622205,ff,cfg.HFP_Threshold.MaxSpeedForPSM ,76E,27,31,.1,0,1,s,222206,622206,ff,cfg.HFP_SafetyCalib.LongPushDuration ,76E,32,35,1,0,0,km/h,222206,622206,ff,cfg.HFP_SafetyCalib.SpeedThresholdForStartingManeuver ,76E,36,39,1,0,0,km/h,222206,622206,ff,cfg.HFP_SafetyCalib.SpeedThresholdForStoppingManeuver ,76E,26,31,10,0,0,cm,222208,622208,ff,cfg.HFP_HMI.smallestSlotToDisplay ,76E,32,39,.1,0,1,m,222208,622208,ff,cfg.HFP_HMI.negativeMemorizationDistance ,76E,40,47,.1,0,1,m,222208,622208,ff,cfg.HFP_HMI.memorizationDistance ,76E,51,55,5,0,0,cm,222208,622208,ff,cfg.HFP_HMI.backwardMoveForMMIOff ,76E,27,31,1,0,0,s,222209,622209,ff,cfg.HFP_OffCondition.timeoutForStandstillError ,76E,32,47,.01,0,2,m,222209,622209,ff,cfg.HFP_OffCondition.maxMoveInWrongDirection ,76E,54,63,1,0,0,s,222209,622209,ff,cfg.HFP_OffCondition.standstillTimeBeforeDeactivation ,76E,64,67,1,0,0,,222209,622209,ff,cfg.HFP_OffCondition.maxManeuverCycles ,76E,68,71,.5,0,1,s,222209,622209,ff,cfg.HFP_OffCondition.timeToGetHandsOffWheel ,76E,25,31,1,0,0,cm,222210,622210,ff,cfg.HFP_PO.safetyDistance ,76E,33,39,1,0,0,°,222210,622210,ff,cfg.HFP_PO.maxAngleAllowed ,76E,40,47,.01,0,2,m,222210,622210,ff,cfg.HFP_PO.DistanceToObstacleFor1stSteer ,76E,49,55,.1,0,1,m,222210,622210,ff,cfg.HFP_PO.MaxBackwardMoveDistance ,76E,57,63,.1,0,1,m,222210,622210,ff,cfg.HFP_PO.maxFrontObjectDistForPO ,76E,29,31,5,0,0,s,222213,622213,ff,cfg.HFP_timeoutForPopup ,76E,25,31,10,0,0,°/s,222214,622214,ff,cfg.maxSWARSpeedWhenMoving ,76E,24,30,10,0,0,ms,222215,622215,ff,cfg.HFP_IS.4WS_MaxReactionTime ,76E,35,39,1,0,0,s,222215,622215,ff,cfg.HFP_IS.timeBeforeRelax ,76E,46,55,1,0,0,°,222215,622215,ff,cfg.HFP_IS.maxSWARequest ,76E,65,71,10,0,0,ms,222215,622215,ff,cfg.HFP_IS.EPS_MaxReactionTime ,76E,79,87,1,0,0,°/s,222215,622215,ff,cfg.HFP_IS.speedForRelax ,76E,90,95,1,0,0,°,222215,622215,ff,cfg.HFP_IS.SWARDecreaseInRelax ,76E,102,111,1,0,0,°,222215,622215,ff,cfg.HFP_IS.SWAThresholdForRelax ,76E,119,127,1,0,0,°/s,222215,622215,ff,cfg.HFP_IS.SWAPerSecondStandStill ,76E,31,31,1,0,0,,222216,622216,ff,HFP_BorderDetected,0:no border detected;1:border detected ,76E,25,31,1,0,0,cm,22221A,62221A,ff,cfg.doorOpeningClearance ,76E,25,31,.01,0,2,m,222220,622220,ff,cfg.HFP_Slot.maxDistanceToCurbstone ,76E,32,47,1,0,0,cm,222220,622220,ff,cfg.HFP_Slot.maxSlotDepthForCurbstoneAlignment ,76E,50,55,.05,0,2,m,222220,622220,ff,cfg.HFP_Slot.minSlotDepth ,76E,31,31,1,0,0,,222300,622300,ff,cfg.BSW_Presence,0:Not present;1:Present ,76E,31,31,1,0,0,,222301,622301,ff,cfg.BSW_Switch_Presence,0:Absent;1:Present ,76E,29,31,1,0,0,,222302,622302,ff,cfg.BSW_InitFlashing.Number ,76E,32,39,.01,0,2,s,222302,622302,ff,cfg.BSW_InitFlashing.Frequency ,76E,24,39,.1,0,1,km/h,222303,622303,ff,cfg.BSW_ThresholdSpeed.ThresholdLowDeactivationSpeed ,76E,40,55,.1,0,1,km/h,222303,622303,ff,cfg.BSW_ThresholdSpeed.ThresholdLowActivationSpeed ,76E,56,71,.1,0,1,km/h,222303,622303,ff,cfg.BSW_ThresholdSpeed.ThresholdHighActivationSpeed ,76E,72,87,.1,0,1,km/h,222303,622303,ff,cfg.BSW_ThresholdSpeed.ThresholdHighDeactivationSpeed ,76E,24,31,.01,0,2,s,222307,622307,ff,cfg.BSW_WarningLevel2_LED_Flashing_Rate ,76E,31,31,1,0,0,,22230D,62230D,ff,BSW_SwitchState,0:Not Pushed;1:Pushed ,76E,30,31,1,0,0,,22230E,62230E,ff,BSW_SystemStatus,0:Vehicle Not Equiped;1:BSW_Off;2:BSW_On;3:BSW_NotWorking ,76E,28,31,1,0,0,,22230F,62230F,ff,BSW_LeftLEDCommand ,76E,28,31,1,0,0,,222310,622310,ff,BSW_RightLEDCommand ,76E,26,31,.1,0,1,m,222311,622311,ff,USSL.USS_RSL.DistanceToObject ,76E,34,39,.1,0,1,m,222311,622311,ff,USSL.USS_FSL.DistanceToObject ,76E,26,31,.1,0,1,m,222312,622312,ff,USSR.USS_RSR.DistanceToObject ,76E,34,39,.1,0,1,m,222312,622312,ff,USSR.USS_FSR.DistanceToObject ,76E,30,31,1,0,0,,222313,622313,ff,cfg.BSW_InitialStateCfg,0:On;1:Off;2:Userdefined ,76E,24,31,1,0,0,,222315,622315,ff,BSW_StateMachine,0:BSW_State_Power_Off;1:BSW_State_ECU_Init;2:BSW_State_Deactivated_Driver;3:BSW_State_NotAvailable;4:BSW_State_NotOperational;5:BSW_State_ObjectIndicatingMode;6:BSW_State_PassiveMode;7:BSW_State_SafeMode;8:BSW_State_Deactivated_Trailer;9:BSW_State_WarningSuppressionMode;10:BSW_State_HighNoise;11:BSW_State_BlockedSensorConfirmed ,76E,28,31,1,0,0,,222316,622316,ff,BSW_SwitchLEDCommand ,76E,28,31,1,0,0,,222317,622317,ff,BSW_LeftStatusLED,0:Off;1:On ,76E,28,31,1,0,0,,222318,622318,ff,BSW_RightStatusLED,0:Off;1:On ,76E,25,31,1,0,0,s,222319,622319,ff,cfg.HFP_SwitchBlockedSwitchDuration ,76E,31,31,1,0,0,,222321,622321,ff,cfg.BSW_2ndLevelWarningSound,0:Warning level without sound;1:Warning level with sound ,76E,24,31,.01,0,2,s,222322,622322,ff,cfg.BSW_Failure_Flashing_frequency ,76E,31,31,1,0,0,,222323,622323,ff,cfg.BSW_ThresholdSpeed_AlertAvailability,0:LEDs are OFF under/over speed thresholds;1:LEDs are ON under/over speed thresholds ,76E,31,31,1,0,0,,222324,622324,ff,cfg.BSW_Status_Presence,0:Absent;1:Present ,76E,31,39,10,0,0,°,222325,622325,ff,cfg.BSW_MaxSteeringAngle ,76E,30,39,.1,0,1,s,222328,622328,ff,cfg.BSW_WarningTimer ,76E,24,1143,1,0,0,,222329,622329,4ff,cfg.BSW_SupplierData ,76E,28,31,10,0,0,%,222332,622332,ff,cfg.BSW_Warning_LED.day_brightness ,76E,36,39,10,0,0,%,222332,622332,ff,cfg.BSW_Warning_LED.night_brightness ,76E,28,31,10,0,0,%,222335,622335,ff,cfg.PSM_Switch_LED.day_brightness ,76E,36,39,10,0,0,%,222335,622335,ff,cfg.PSM_Switch_LED.night_brightness ,76E,44,47,10,0,0,%,222335,622335,ff,cfg.PSM_Switch_LED.twilight_brightness ,76E,28,31,10,0,0,%,222338,622338,ff,cfg.BSW_Switch_LED.day_brightness ,76E,36,39,10,0,0,%,222338,622338,ff,cfg.BSW_Switch_LED.night_brightness ,76E,44,47,10,0,0,%,222338,622338,ff,cfg.BSW_Switch_LED.twilight_brightness ,76E,28,31,10,0,0,%,22233B,62233B,ff,cfg.UPA_HFP_Switch_LED.day_brightness ,76E,36,39,10,0,0,%,22233B,62233B,ff,cfg.UPA_HFP_Switch_LED.night_brightness ,76E,44,47,10,0,0,%,22233B,62233B,ff,cfg.UPA_HFP_Switch_LED.twilight_brightness ,76E,24,127,1,0,0,,222350,622350,4ff,cfg.RearSideSensorThreshold ,76E,24,127,1,0,0,,222351,622351,4ff,cfg.FrontSideSensorThreshold ,76E,24,31,1,0,0,,222403,622403,ff,GADE ,76E,24,31,1,0,0,h,222500,622500,ff,DDD_Time.Hours ,76E,32,39,1,0,0,min,222500,622500,ff,DDD_Time.Minutes ,76E,29,31,.1,0,1,mps,222501,622501,ff,P_tng_mps_MinVehicleSpeedFinish ,76E,28,31,.1,0,1,s,222503,622503,ff,P_tng_s_Detection_While ,76E,27,31,.01,0,2,s,222504,622504,ff,P_tng_s_DetectionTime_FS ,76E,24,31,.1,0,1,mps2,222505,622505,1ff,P_tng_mps2_AccelMinPID ,76E,30,39,.01,0,2,mps3,222506,622506,1ff,P_tng_mps3_BrakeActivationRamp ,76E,25,31,1,0,0,Nm,222507,622507,ff,P_tng_Nm_DefaultBrkTrqReq ,76E,26,31,.01,0,2,m,222509,622509,ff,P_tng_m_Minimum_finish_distance ,76E,24,31,.01,0,2,mps,22250A,62250A,ff,P_tng_mps_VehicleSpeed_Sdwlk ,76E,26,31,.01,0,2,mps3,22250B,62250B,ff,P_tng_mps3_BrakeCancelRampSlow ,76E,26,39,1,0,0,Nm,22250C,62250C,1ff,P_tng_Nm_BrakingTorqueMin ,76E,29,39,10,0,0,Nm,22250D,62250D,1ff,P_tng_Nm_PWTTorqueAchievableMax ,76E,29,39,10,0,0,Nm,22250E,62250E,1ff,P_tng_Nm_PWTTorqueAchievableMin ,76E,29,39,10,0,0,Nm,22250F,62250F,1ff,P_tng_Nm_PWTTrqAchievblMinOptim ,76E,29,39,1,0,0,mps2,222510,622510,1ff,P_tng_mps2_AccelMinFFD ,76E,24,39,1,0,0,Nm,222512,622512,1ff,P_tng_Nm_DefaultWheelMotorTrq ,76E,26,31,20,0,0,Nm,222513,622513,ff,P_tng_Nm_WheelTrqWithoutSlope ,76E,24,31,.02,0,2,mps2,222514,622514,ff,P_tng_mps2_measuredAccelMaxLim ,76E,31,39,.02,0,2,mps2,222515,622515,1ff,P_tng_mps2_measuredAccelMinLim ,76E,31,39,10,0,0,mps3,222516,622516,1ff,P_tng_mps3_AccelRateLimDown ,76E,24,31,10,0,0,mps3,222517,622517,ff,P_tng_mps3_AccelRateLimUp ,76E,28,31,1,0,0,mps3,222518,622518,ff,P_tng_mps3_BrakeCancelRampFast ,76E,25,31,.1,0,1,mps2,222519,622519,1ff,P_tng_mps2_AccelBrakeMax ,76E,26,39,.0001,0,3,x,22251A,62251A,ff,P_tng_x_Brake2EmergComfrtCntrlCalib ,76E,27,31,.01,0,2,m,22251B,62251B,ff,P_tng_m_StoppingDistanceTh ,76E,24,31,1,0,0,Nm,22251C,62251C,1ff,P_tng_Nm_BrakingTorqueMax ,76E,26,31,.1,0,1,x,22251E,62251E,ff,P_tng_x_derivativeBrakeGain ,76E,26,31,1,0,0,mps2,22251F,62251F,1ff,P_tng_x_EmergencyBraking ,76E,24,31,10,0,0,Nm,222520,622520,ff,P_tng_Nm_FullBrakeTorque ,76E,28,31,.1,0,1,x,222521,622521,ff,P_tng_x_GainFFD ,76E,25,31,.01,0,2,m,222522,622522,ff,cfg.HFPB_hfpb_torque_modulation ,76E,26,31,.1,0,1,x,222523,622523,ff,P_tng_x_integralBrakeGain ,76E,26,31,.1,0,1,x,222524,622524,ff,P_tng_x_integralGain_high ,76E,26,31,.1,0,1,x,222525,622525,ff,P_tng_x_integralGain_low ,76E,28,31,.1,0,1,x,222526,622526,ff,P_tng_x_MotorTorqueAdapt ,76E,25,31,.1,0,1,m,222527,622527,ff,P_tng_m_PI_interp_high ,76E,26,31,.1,0,1,m,222528,622528,ff,P_tng_m_PI_interp_low ,76E,25,31,.1,0,1,x,222529,622529,ff,P_tng_x_proportionalBrakeGain ,76E,25,31,.1,0,1,x,22252A,62252A,ff,P_tng_x_proportionalGain_high ,76E,26,31,.1,0,1,x,22252B,62252B,ff,P_tng_x_proportionalGain_low ,76E,25,31,10,0,0,Nm,22252C,62252C,ff,P_tng_Nm_PWTTrqMaxeffortSlope ,76E,26,31,1,0,0,%,22252E,62252E,ff,cfg.HFPB_StartThreshold ,76E,27,31,.1,0,1,s,22252F,62252F,ff,P_tng_s_TauDerivFF ,76E,27,31,.1,0,1,s,222530,622530,ff,P_tng_s_tauSpeedControl ,76E,24,31,.02,0,2,s,222531,622531,ff,P_tng_s_topWaitingTime ,76E,25,31,1,0,0,tic,222532,622532,ff,P_tng_tic_GearEngagedTime ,76E,25,31,1,0,0,tic,222533,622533,ff,P_tng_tic_WaitEngineTime ,76E,26,31,1,0,0,tic,222534,622534,ff,P_tng_tic_WaitReleaseTime ,76E,30,39,.0001,0,3,m,222535,622535,ff,P_tng_m_wheelPerimeterTops ,76E,24,31,.02,0,2,x,222538,622538,ff,P_tng_x_WindupCoefficient ,76E,26,31,1,0,0,m,222539,622539,1ff,cfg.APA_MaxDistToStartManeuver ,76E,24,31,1,0,0,,22253A,62253A,ff,cfg.HFPB_StateMachine,1:1;2:2;3:2-1;4:2.1.1;5:2.1.2;6:2.1.2.1;7:2.1.2.1.1;8:2.1.2.1.3;9:2.1.2.1.3.1;12:2.1.2.1.3.3;13:2.1.2.1.3.4;14:2.1.2.1.3.5;15:2.1.2.2;16:2.1.2.2.1;17:2.1.2.2.2;18:2.1.2.2.3;19:2.1.2.2.4;20:2.1.2.2.4.1;21:2.1.2.2.4.2;22:2.1.3;23:2.1.4;24:2-2;25:2.2.1;26:2.2.1.1;27:2.2.1.2;28:2.2.2;29:2.2.3;30:2.2.3.1;31:2.2.3.1.1;32:2.2.3.1.2;33:2.2.3.1.2.1;34:2.2.3.1.2.2;35:2.2.3.1.3;36:2.2.3.1.4;37:2.2.3.2;38:2.2.3.2.1;39:2.2.3.2.2;40:2.2.3.2.2.1;41:2.2.3.2.2.2;42:2.2.3.2.3;43:2.2.3.2.4;44:2.2.3.3;45:2.2.3.3.1;46:2.2.3.3.2;47:2.2.3.3.2.1;48:2.2.3.3.2.2;49:2.2.3.3.3;50:2.2.3.3.4;51:2.2.4;52:2-3;53:2.3.1;54:2.3.1.1;55:2.3.1.2;56:2.3.1.3;57:2.3.1.4;58:2.3.1.5;59:2.3.2;60:2.3.2.1;61:2.3.2.2;62:2-4;63:2.4.1;64:2.4.1.1;65:2.4.1.2;66:2.4.2;67:2.4.2.1;68:2.4.2.2;69:2.4.2.3;70:2.4.2.4;71:2.4.2.5;72:2.4.2.6;73:2.4.3;74:2.4.3.1;75:2.4.3.2;76:2.4.3.3;77:2.4.3.4;78:2.4.3.5;79:2.4.3.6;80:2-5;81:2.5.1;82:2.5.2;83:2-6;84:2.6.1;85:2.6.2 ,76E,26,31,5,0,0,s,22253C,62253C,ff,cfg.HFPB_TimeoutForResume ,76E,28,39,1,0,0,kg,22253D,62253D,ff,P_tng_kg_VehicleMass ,76E,25,31,1,0,0,cm,22253E,62253E,ff,cfg.HFPB_SafetyDistance ,76E,31,31,1,0,0,-,22253F,62253F,ff,cfg.HFPB_feedForwardON ,76E,31,31,1,0,0,x,222540,622540,ff,P_tng_x_motorOptimON ,76E,31,31,1,0,0,x,222541,622541,ff,P_tng_x_ResetRateLimiter ,76E,24,31,1,0,0,s,222542,622542,ff,cfg.HFPB_HFPOffTimeAfterEngineStartup ,76E,27,31,.1,0,1,mps2,222543,622543,1ff,P_tng_x_FFDInitAccelMax ,76E,24,31,10,0,0,Nm,222546,622546,1ff,P_tng_Nm_Slope_torque_low ,76E,25,31,10,0,0,Nm,222547,622547,ff,P_tng_Nm_Slope_torque_up ,76E,27,39,.0001,0,3,mps2,222548,622548,1ff,P_tng_mps2_brakeSlopeChangeTh ,76E,28,31,1,0,0,unit,222549,622549,ff,cfg.HFPB_soundRequestDuration ,76E,27,31,1,0,0,%,22254A,62254A,ff,cfg.HFPB_maxRoadSlope ,76E,25,31,.1,0,1,m,22254B,62254B,ff,cfg.HFPB_Detection.minDetectionRange ,76E,33,39,.1,0,1,m,22254B,62254B,ff,cfg.HFPB_Detection.maxDetectionRange ,76E,25,31,1,0,0,cm,22254C,62254C,ff,cfg.HFPB_Slot.minCurbstoneHeight ,76E,33,39,1,0,0,cm,22254C,62254C,ff,cfg.HFPB_Slot.minObstacleHeight ,76E,40,47,.02,0,2,m,22254C,62254C,ff,cfg.HFPB_Slot.minCrossSlotDepth ,76E,48,55,.02,0,2,m,22254C,62254C,ff,cfg.HFPB_Slot.minParallelSlotDepth ,76E,56,63,1,0,0,cm,22254C,62254C,ff,cfg.HFPB_Slot.minDiagonalSlotExtraLength ,76E,64,71,1,0,0,cm,22254C,62254C,ff,cfg.HFPB_Slot.minPerpendicularSlotExtraLength ,76E,72,79,1,0,0,m,22254C,62254C,ff,cfg.HFPB_Slot.maxParallelSlotExtraLengthForCentering ,76E,80,87,1,0,0,cm,22254C,62254C,ff,cfg.HFPB_Slot.minParallelSlotExtraLength ,76E,31,31,1,0,0,,22254D,62254D,ff,cfg.DiagAddonEnable,0:disable;1:enable ,76E,25,31,1,0,0,cm,22254E,62254E,ff,cfg.minAutomaticMoveDistance ,76E,25,31,1,0,0,cm,22254F,62254F,ff,cfg.StopDistToleranceForNextMove ,76E,31,39,10,0,0,ms,222550,622550,ff,cfg.HFPB_VMC_maxReactionTime ,76E,25,31,1,0,0,km/h,222551,622551,ff,cfg.HFPB_Speed.Cross1stMoveReducedSpeed ,76E,33,39,1,0,0,km/h,222551,622551,ff,cfg.HFPB_Speed.Parallel1stMoveReducedSpeed ,76E,41,47,1,0,0,km/h,222551,622551,ff,cfg.HFPB_Speed.ParallelLowSpeed ,76E,49,55,1,0,0,km/h,222551,622551,ff,cfg.HFPB_Speed.Parallel1stMoveMaxSpeed ,76E,57,63,1,0,0,km/h,222551,622551,ff,cfg.HFPB_Speed.Cross1stMoveMaxSpeed ,76E,65,71,1,0,0,km/h,222551,622551,ff,cfg.HFPB_Speed.CrossLowSpeed ,76E,73,79,1,0,0,km/h,222551,622551,ff,cfg.HFPB_Speed.CrossNearObstacleSpeed ,76E,24,31,1,0,0,,22258B,62258B,ff,cfg.PSM_StateMachine,1:1;2:2;3:3;4:4;5:4-1;6:4-2;7:5;8:5-1;9:6;10:6-1;11:6.1.1;12:6.1.2;13:6-2;14:6.2.1;15:6.2.2;16:7;17:8;18:9 ,76E,24,31,.1,0,1,m,22258C,62258C,ff,P_tng_m_AccelMaxFFD_interp_high ,76E,27,31,.1,0,1,m,22258D,62258D,ff,P_tng_m_AccelMaxFFD_interp_low ,76E,24,31,.01,0,2,m,22258E,62258E,ff,P_tng_m_StoppingDistance_Sdwlk ,76E,27,31,.01,0,2,m,22258F,62258F,ff,P_tng_m_brakeStoppingDistanceTh ,76E,26,31,.1,0,1,mps2,222590,622590,ff,P_tng_mps2_AccelMax ,76E,27,31,.1,0,1,mps2,222591,622591,ff,P_tng_mps2_AccelMaxFFD_high ,76E,28,31,.1,0,1,mps2,222592,622592,ff,P_tng_mps2_AccelMaxFFD_low ,76E,30,39,.0001,0,3,mps,222593,622593,ff,P_tng_mps_MvtDetecSpeedThreshold ,76E,25,31,.02,0,2,s,222594,622594,ff,P_tng_s_ElapsedTimeConfirmed ,76E,27,39,.02,0,2,x,222595,622595,ff,P_tng_x_EmergComfrtCntrl2BrakeCalib ,76E,25,31,1,0,0,x,222596,622596,ff,P_tng_x_FilterCoefficient ,76E,24,31,.01,0,2,x,222597,622597,ff,P_tng_x_HFPB_TorqueModulation ,76E,29,31,1,0,0,mps3,222598,622598,ff,P_tng_x_InitialValueRateLimiter ,76E,26,31,.1,0,1,x,222599,622599,ff,P_tng_x_Kb ,76E,24,39,1,0,0,Nmps,22259B,62259B,1ff,P_tng_x_LowerLimitRateLimiter56 ,76E,28,31,1,0,0,mps2,22259C,62259C,ff,P_tng_x_UpperLimitRateLimiter ,76E,28,39,.6,0,1,Nmps,22259D,62259D,ff,P_tng_x_UpperLimitRateLimiter56 ,76E,27,31,.2,0,1,x,22259E,62259E,ff,P_tng_x_derivativeGain ,76E,31,39,1,0,0,cm,222600,622600,ff,cfg.LevelEasy_SuperiorThreshold ,76E,31,39,1,0,0,cm,222601,622601,ff,cfg.LevelEasy_InferiorThreshold ,76E,31,39,1,0,0,cm,222602,622602,ff,cfg.LevelMedium_InferiorThreshold ,76E,31,39,1,0,0,cm,222603,622603,ff,cfg.LevelDifficult_InferiorThreshold ,76E,24,31,1,0,0,cm,222604,622604,ff,cfg.LevelImpossible_InferiorThreshold ,76E,25,31,1,0,0,km/h,222605,622605,ff,cfg.PSM_MaxSpeedForDisplay ,76E,25,31,1,0,0,km/h,222606,622606,ff,cfg.PSM_MaxSpeedForScan ,76E,25,31,1,0,0,km/h,222607,622607,ff,cfg.PSM_MaxSpeedHysteresis ,76E,24,31,.01,0,2,s,222609,622609,ff,cfg.PSM_Failure_Flashing_frequency ,76E,28,31,5,0,0,s,22260A,62260A,ff,cfg.PSM_timeoutForMessage ,76E,28,39,10,0,0,Nmps,22260D,62260D,1ff,P_tng_Nmps_WheelMotorTrqLowLimt ,76E,25,31,10,0,0,Nmps,22260E,62260E,ff,P_tng_Nmps_WheelMotorTrqUpLimit ,76E,25,31,.02,0,2,m,222610,622610,ff,P_tng_m_StpngDistTh4MtrOptimOFF ,76E,27,39,.0001,0,3,m,222611,622611,ff,P_tng_m_WheelRadius ,76E,27,31,1,0,0,mps2,222613,622613,1ff,P_tng_mps2_ComfortBraking ,76E,26,31,1,0,0,mps2,222614,622614,1ff,P_tng_mps2_EmergencyBraking ,76E,25,31,.02,0,2,mps2,222615,622615,1ff,P_tng_mps2_NoTrq4BrkCancel ,76E,25,31,.02,0,2,mps2,222616,622616,1ff,P_tng_mps2_VehicleAccelInit ,76E,27,31,1,0,0,mps3,222617,622617,1ff,P_tng_mps3_MinBrakingJerk ,76E,26,31,.01,0,2,mps3,222618,622618,ff,P_tng_mps3_TakeOffRamp ,76E,26,31,.01,0,2,mps3,222619,622619,ff,P_tng_mps3_TakeOffRamp_Init ,76E,27,31,.2,0,1,pct,222620,622620,1ff,P_tng_pct_SlopeTh4BrkCancel ,76E,25,31,.1,0,1,s,222621,622621,ff,P_tng_s_TempoBeforeRamp ,76E,24,31,1,0,0,cm,222622,622622,1ff,cfg.HFPB_Maneuver.FinalCrossLongPositionToCurb ,76E,33,39,1,0,0,cm,222622,622622,ff,cfg.HFPB_Maneuver.FinalCrossLongPositionToObstacle ,76E,40,47,1,0,0,cm,222622,622622,ff,cfg.HFPB_Maneuver.FinalParallelLongPositionToFrontObject ,76E,31,39,.01,0,2,m,222623,622623,ff,cfg.HFPB_maxCrossForwardMoveDistance ,76E,27,31,.5,0,1,m/s,222624,622624,ff,cfg.HFPB_DecelThresholdForStopInstr ,76E,25,31,1,0,0,m,222626,622626,ff,cfg.HFPB_CrossNearObstacleDistance ,76E,27,31,.1,0,1,m,222627,622627,ff,cfg.HFPB_CloseDetectionDistance ,76E,28,31,1,0,0,cm,222628,622628,ff,cfg.HFPB_StopDistThresholdFor100perc ,76E,25,31,1,0,0,cm,222629,622629,ff,P_tng_cm_DefaultSideWalkHeight ,76E,27,31,.01,0,2,mps,222630,622630,ff,P_tng_mps_CANSpeedMeasureMin ,76E,31,39,.01,0,2,mps,222631,622631,ff,P_tng_mps_DriveOffSpeedThd ,76E,25,39,.0001,0,3,mps,222632,622632,ff,P_tng_mps_ManeuverSpeedMax ,76E,27,31,.1,0,1,mps,222633,622633,ff,P_tng_mps_ManeuverSpeedMin ,76E,27,31,.1,0,1,mps2,222634,622634,1ff,P_tng_mps2_AccelMaxBrkAct ,76E,27,31,.1,0,1,mps2,222635,622635,1ff,P_tng_mps2_AccelMaxBrkCancel ,76E,27,31,.1,0,1,mps2,222636,622636,ff,P_tng_mps2_PWTLimitAccel ,76E,27,31,.1,0,1,mps2,222637,622637,1ff,P_tng_mps2_SideWalkInitialValue ,76E,24,31,.01,0,2,mps2,222638,622638,1ff,P_tng_mps2_TakeOffAccelMin ,76E,26,31,.5,0,1,mps2,222639,622639,1ff,P_tng_mps2_VhSpdGradientSdwk ,76E,31,39,10,0,0,Nm,22263A,62263A,ff,P_tng_Nm_BrakingRampSatMax ,76E,31,31,1,0,0,Nm,22263B,62263B,ff,P_tng_Nm_BrkWheelTrq4OrderOFF ,76E,28,31,1,0,0,Nm,22263C,62263C,ff,P_tng_Nm_BrkWheelTrq4OrderON ,76E,24,31,10,0,0,Nm,22263D,62263D,ff,P_tng_Nm_MaxPowerTrainTorque1 ,76E,24,31,10,0,0,Nm,22263E,62263E,ff,P_tng_Nm_MaxPowerTrainTorque2 ,76E,24,31,10,0,0,Nmps,22263F,62263F,1ff,P_tng_Nmps_BrkgRqRLLowerLim ,76E,29,39,10,0,0,Nmps,222640,622640,ff,P_tng_Nmps_BrkgRqRLUpperLim ,76E,24,31,10,0,0,Nmps,222641,622641,ff,P_tng_Nmps_ComfortRamp ,76E,24,31,10,0,0,Nmps,222642,622642,ff,P_tng_Nmps_EmergencyRamp ,76E,27,31,.5,0,1,pct,222643,622643,ff,P_tng_pct_IsUpHillTh ,76E,25,31,.1,0,1,s,222644,622644,ff,P_tng_s_TempoBefore2ndTest ,76E,25,33,1,0,0,s,222645,622645,ff,P_tng_s_TempoVehBlockedOnsdwk ,76E,24,31,1,0,0,x,222646,622646,ff,P_tng_x_BrkgRampAct ,76E,31,31,1,0,0,x,222647,622647,ff,P_tng_x_BrkWheelTrqOrderChoice ,76E,31,31,1,0,0,x,222648,622648,ff,P_tng_x_HFPB_AccelLimitChoice ,76E,25,31,1,0,0,x,222649,622649,ff,P_tng_x_NumberWheelTops ,76E,31,39,2,0,0,x,22264A,62264A,ff,P_tng_x_Rapidity_Coeff ,76E,31,31,1,0,0,x,22264B,62264B,ff,P_tng_x_SideWalkStratAct ,76E,31,31,1,0,0,x,22264C,62264C,ff,P_tng_x_VmaxChoice ,76E,24,31,.0001,0,3,s,22264D,62264D,ff,P_tng_s_Epsilon ,76E,31,31,1,0,0,,223043,623043,ff,cfg.iBoosterPresence,0:vehicle without iBooster;1:vehicle with iBooster ,76E,31,31,1,0,0,,223050,623050,ff,cfg.TJPPresence,0:TJP not present;1:TJP present ,76E,30,31,1,0,0,,223051,623051,ff,cfg.IDMPresence,0:IDM Absent;1:IDM Present ,76E,31,31,1,0,0,,223052,623052,ff,cfg.AVMPresence,0:AVM Absent;1:AVM Present ,76E,30,31,1,0,0,,223053,623053,ff,cfg.IVIPresence,0:IVI and METER absent;1:IVI present and METER absent;2:IVI absent and METER present;3:IVI and METER present ,76E,24,103,1,0,0,,22F012,62F012,2ff,Operational reference ,76E,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,76E,24,31,1,0,0,,22F0D1,62F0D1,ff,DTCOccurrenceCounter ,76E,24,271,1,0,0,,22F180,62F180,2ff,BootVersion ,76E,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,76E,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,76E,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,76E,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,76E,24,159,1,0,0,,22F190,62F190,2ff,VIN ,76E,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,76E,24,71,1,0,0,,22F192,62F192,2ff,systemSupplierECUHardwareNumber ,76E,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,76E,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,76E,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,76E,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,76E,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigurationDataReferenceAfterConfigurationProcess ,76E,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/Parking-Sonar_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level OutOfRange/0 adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component or system operation obstructed / blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/S-GW3_Dtcs.csv ================================================ D325,EMPTY_CALIB E24F,DTC_MUX_BCM E248,DTC_MUX_VDC E24E,DTC_MUX_CLUSTER E25B,DTC_MUX_USM A612,TX_CAN2 A613,TX_CAN3 A614,TX_CAN4 A615,TX_CAN5 A616,TX_CAN6 A617,TX_CAN7 A618,TX_CAN8 FD01,APPLI_SW_AREA FD02,CALIBRATION_AREA E140,DTC_MUX_ECM A600,GENERAL ================================================ FILE: app/src/main/assets/ZOE_Ph2/S-GW3_Fields.csv ================================================ ,18DAF1D2,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,18DAF1D2,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Reprog ,18DAF1D2,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,18DAF1D2,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,18DAF1D2,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,18DAF1D2,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier ,18DAF1D2,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,18DAF1D2,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,18DAF1D2,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,42496:GENERAL;42514:TX_CAN2;42515:TX_CAN3;42516:TX_CAN4;42517:TX_CAN5;42518:TX_CAN6;42519:TX_CAN7;42520:TX_CAN8;54053:EMPTY_CALIB;57664:DTC_MUX_ECM;57928:DTC_MUX_VDC;57934:DTC_MUX_CLUSTER;57935:DTC_MUX_BCM;57947:DTC_MUX_USM;64769:APPLI_SW_AREA;64770:CALIBRATION_AREA ,18DAF1D2,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog / safety µC failure;70:calibration / parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive / sequence counter incorrect / not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions / events;15:Vehicle manufacturer / System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal / Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding/ General Failure Information;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time > maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time < minimum;51:signal low time > maximum;50:signal low time < minimum;49:no signal;37:signal shape / waveform failure;33:signal amplitude < minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude > maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid ,18DAF1D2,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,18DAF1D2,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,18DAF1D2,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1D2,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1D2,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1D2,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1D2,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1D2,0,0,1,0,0,,1903,5903,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,18DAF1D2,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,18DAF1D2,40,40,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,18DAF1D2,41,41,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,42,42,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1D2,43,43,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1D2,44,44,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1D2,45,45,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1D2,46,46,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,47,47,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1D2,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,18DAF1D2,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,42496:GENERAL;42514:TX_CAN2;42515:TX_CAN3;42516:TX_CAN4;42517:TX_CAN5;42518:TX_CAN6;42519:TX_CAN7;42520:TX_CAN8;54053:EMPTY_CALIB;57664:DTC_MUX_ECM;57928:DTC_MUX_VDC;57934:DTC_MUX_CLUSTER;57935:DTC_MUX_BCM;57947:DTC_MUX_USM;64769:APPLI_SW_AREA;64770:CALIBRATION_AREA ,18DAF1D2,40,47,1,0,0,,190A,590A,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog / safety µC failure;70:calibration / parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive / sequence counter incorrect / not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions / events;15:Vehicle manufacturer / System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal / Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding/ General Failure Information;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time > maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time < minimum;51:signal low time > maximum;50:signal low time < minimum;49:no signal;37:signal shape / waveform failure;33:signal amplitude < minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude > maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid ,18DAF1D2,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,18DAF1D2,49,49,1,0,0,,190A,590A,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,50,50,1,0,0,,190A,590A,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,18DAF1D2,51,51,1,0,0,,190A,590A,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,18DAF1D2,52,52,1,0,0,,190A,590A,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,18DAF1D2,53,53,1,0,0,,190A,590A,ff,DTCStatus.pendingDTC,0:No;1:Yes ,18DAF1D2,54,54,1,0,0,,190A,590A,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,18DAF1D2,55,55,1,0,0,,190A,590A,ff,DTCStatus.testFailed,0:No;1:Yes ,18DAF1D2,24,31,1,0,0,,220100,620100,ff,VIRGIN_FLAG_CF,0:VIRGIN_MODE;255:NORMAL ,18DAF1D2,27,27,1,0,0,,220111,620111,ff,DATA_MONITOR_S.APC_HARD_WIRE_STATUS,0:APC is OFF;1:APC is ON ,18DAF1D2,28,31,1,0,0,,220111,620111,ff,DATA_MONITOR_S.GATEWAY_MODE_S,0:MEMORY_FAILURE;1:EMPTY;2:SECURE_CONFIG_FAILURE;3:DIAG_COM_CONFIG_FAILURE;4:SECURE_MODE;5:DIAG_COM_MODE;6:BUS_MONITOR_MODE;7:ID_MONITOR_MODE;8:INTERMEDIATE ,18DAF1D2,32,32,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN1,1:SEMI;0:COMPLETE ,18DAF1D2,33,33,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN2,1:SEMI;0:COMPLETE ,18DAF1D2,34,34,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN3,0:COMPLETE;1:SEMI ,18DAF1D2,35,35,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN4,1:SEMI;0:COMPLETE ,18DAF1D2,36,36,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN5,1:SEMI;0:COMPLETE ,18DAF1D2,37,37,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN6,1:SEMI;0:COMPLETE ,18DAF1D2,38,38,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN7,1:SEMI;0:COMPLETE ,18DAF1D2,39,39,1,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_STATUS_CAN8,0:COMPLETE;1:SEMI ,18DAF1D2,40,47,10,0,0,,220111,620111,ff,DATA_MONITOR_S.WS_TIMEOUT_CF ,18DAF1D2,48,49,1,0,0,,220111,620111,ff,DATA_MONITOR_S.BSL_TRANS_REST_CF,0:NO_RESTRICTON;1:ONLY_DLC_DISABLED;2:ONLY_EXT_DISABLED;3:DLC_AND_EXT_DISABLED ,18DAF1D2,50,51,1,0,0,,220111,620111,ff,DATA_MONITOR_S.BSL_TRANS_REST_S,0:NO_VIOLATION;1:TRANS_DISABLED_FROM_DLC;2:TRANS_DISABLED_FROM_EXT;3:TRANS_DISABLED_FROM_DLC_EXT ,18DAF1D2,56,95,1,0,0,,220111,620111,2ff,DATA_MONITOR_S.ID_NUMBER_S ,18DAF1D2,96,111,1,0,0,,220111,620111,4ff,DATA_MONITOR_S.CONF_DATA_VARIATION ,18DAF1D2,112,175,1,0,0,,220111,620111,4ff,DATA_MONITOR_S.CONFIGURATION_DATA_VERSION_S ,18DAF1D2,176,199,1,0,0,,220111,620111,ff,DATA_MONITOR_S.MILEAGE_OF_LAST_BUSLOAD_VIOL ,18DAF1D2,200,207,1,0,0,,220111,620111,ff,DATA_MONITOR_S.CAN_GENERATION,1:C1A;2:N_GEN5;3:N_GEN3;20:R_G1;10:R_T4;30:R_CMF1 ,18DAF1D2,24,47,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_1 ,18DAF1D2,48,71,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_2 ,18DAF1D2,72,95,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_3 ,18DAF1D2,96,119,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_4 ,18DAF1D2,120,143,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_5 ,18DAF1D2,144,167,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_6 ,18DAF1D2,168,191,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_7 ,18DAF1D2,192,215,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_8 ,18DAF1D2,216,239,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_9 ,18DAF1D2,240,263,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_10 ,18DAF1D2,264,287,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_11 ,18DAF1D2,288,311,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_12 ,18DAF1D2,312,335,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_13 ,18DAF1D2,336,359,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_14 ,18DAF1D2,360,383,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_15 ,18DAF1D2,384,407,.01,0,2,,220112,620112,ff,MILEAGE_RESET.MILEAGE_WHEN_CGW_RESET_16 ,18DAF1D2,24,31,1,0,0,,220200,620200,ff,DIAG_COM_MODE_REQ_CF,170:DIAG_COM_MODE_START;255:DIAG_COM_MODE_STOP ,18DAF1D2,24,31,1,0,0,,220210,620210,ff,MONITOR_MODE_REQ_CF,170:MONITOR_BY_BUS_START;187:MONITOR_BY_ID_START;255:MONITOR_MODE_STOP ,18DAF1D2,24,31,1,0,0,,220220,620220,ff,MONITOR_TABLE_FOR_CH_CF,2:CAN2;4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,55,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_01_CF ,18DAF1D2,56,63,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_01_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,64,95,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_02_CF ,18DAF1D2,96,103,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_02_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,104,135,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_03_CF ,18DAF1D2,136,143,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_03_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,144,175,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_04_CF ,18DAF1D2,176,183,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_04_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,184,215,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_05_CF ,18DAF1D2,216,223,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_05_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,224,255,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_06_CF ,18DAF1D2,256,263,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_06_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,264,295,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_07_CF ,18DAF1D2,296,303,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_07_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,304,335,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_08_CF ,18DAF1D2,336,343,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_08_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,344,375,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_09_CF ,18DAF1D2,376,383,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_09_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,384,415,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_10_CF ,18DAF1D2,416,423,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_10_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,424,455,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_11_CF ,18DAF1D2,456,463,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_11_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,464,495,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_12_CF ,18DAF1D2,496,503,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_12_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,504,535,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_13_CF ,18DAF1D2,536,543,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_13_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,544,575,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_14_CF ,18DAF1D2,576,583,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_14_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,584,615,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_15_CF ,18DAF1D2,616,623,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_15_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,624,655,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_16_CF ,18DAF1D2,656,663,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_16_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,664,695,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_17_CF ,18DAF1D2,696,703,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_17_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,704,735,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_18_CF ,18DAF1D2,736,743,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_18_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,744,775,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_19_CF ,18DAF1D2,776,783,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_19_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,784,815,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_20_CF ,18DAF1D2,816,823,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_20_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,824,855,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_21_CF ,18DAF1D2,856,863,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_21_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,864,895,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_22_CF ,18DAF1D2,896,903,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_22_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,904,935,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_23_CF ,18DAF1D2,936,943,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_23_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,944,975,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_24_CF ,18DAF1D2,976,983,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_24_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,984,1015,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_25_CF ,18DAF1D2,1016,1023,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_25_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1024,1055,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_26_CF ,18DAF1D2,1056,1063,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_26_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1064,1095,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_27_CF ,18DAF1D2,1096,1103,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_27_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1104,1135,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_28_CF ,18DAF1D2,1136,1143,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_28_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1144,1175,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_29_CF ,18DAF1D2,1176,1183,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_29_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1184,1215,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_30_CF ,18DAF1D2,1216,1223,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_30_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1224,1255,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_31_CF ,18DAF1D2,1256,1263,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_31_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1264,1295,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_32_CF ,18DAF1D2,1296,1303,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_32_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1304,1335,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_33_CF ,18DAF1D2,1336,1343,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_33_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1344,1375,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_34_CF ,18DAF1D2,1376,1383,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_34_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1384,1415,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_35_CF ,18DAF1D2,1416,1423,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_35_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1424,1455,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_36_CF ,18DAF1D2,1456,1463,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_36_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1464,1495,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_37_CF ,18DAF1D2,1496,1503,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_37_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1504,1535,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_38_CF ,18DAF1D2,1536,1543,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_38_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1544,1575,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_39_CF ,18DAF1D2,1576,1583,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_39_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1584,1615,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_40_CF ,18DAF1D2,1616,1623,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_40_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1624,1655,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_41_CF ,18DAF1D2,1656,1663,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_41_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1664,1695,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_42_CF ,18DAF1D2,1696,1703,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_42_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1704,1735,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_43_CF ,18DAF1D2,1736,1743,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_43_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1744,1775,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_44_CF ,18DAF1D2,1776,1783,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_44_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1784,1815,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_45_CF ,18DAF1D2,1816,1823,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_45_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1824,1855,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_46_CF ,18DAF1D2,1856,1863,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_46_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1864,1895,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_47_CF ,18DAF1D2,1896,1903,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_47_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1904,1935,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_48_CF ,18DAF1D2,1936,1943,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_48_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1944,1975,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_49_CF ,18DAF1D2,1976,1983,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_49_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1984,2015,1,0,0,,220221,620221,4ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_ID_50_CF ,18DAF1D2,2016,2023,1,0,0,,220221,620221,ff,MONITOR_TABLE_FOR_ID_1_CF.MONITOR_RX_50_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,55,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_101_CF ,18DAF1D2,56,63,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_101_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,64,95,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_102_CF ,18DAF1D2,96,103,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_102_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,104,135,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_103_CF ,18DAF1D2,136,143,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_103_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,144,175,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_104_CF ,18DAF1D2,176,183,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_104_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,184,215,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_105_CF ,18DAF1D2,216,223,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_105_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,224,255,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_106_CF ,18DAF1D2,256,263,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_106_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,264,295,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_107_CF ,18DAF1D2,296,303,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_107_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,304,335,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_108_CF ,18DAF1D2,336,343,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_108_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,344,375,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_109_CF ,18DAF1D2,376,383,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_109_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,384,415,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_110_CF ,18DAF1D2,416,423,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_110_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,424,455,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_111_CF ,18DAF1D2,456,463,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_111_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,464,495,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_112_CF ,18DAF1D2,496,503,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_112_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,504,535,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_113_CF ,18DAF1D2,536,543,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_113_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,544,575,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_114_CF ,18DAF1D2,576,583,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_114_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,584,615,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_115_CF ,18DAF1D2,616,623,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_115_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,624,655,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_116_CF ,18DAF1D2,656,663,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_116_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,664,695,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_117_CF ,18DAF1D2,696,703,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_117_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,704,735,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_118_CF ,18DAF1D2,736,743,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_118_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,744,775,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_119_CF ,18DAF1D2,776,783,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_119_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,784,815,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_120_CF ,18DAF1D2,816,823,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_120_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,824,855,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_121_CF ,18DAF1D2,856,863,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_121_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,864,895,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_122_CF ,18DAF1D2,896,903,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_122_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,904,935,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_123_CF ,18DAF1D2,936,943,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_123_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,944,975,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_124_CF ,18DAF1D2,976,983,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_124_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,984,1015,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_125_CF ,18DAF1D2,1016,1023,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_125_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1024,1055,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_126_CF ,18DAF1D2,1056,1063,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_126_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1064,1095,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_127_CF ,18DAF1D2,1096,1103,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_127_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1104,1135,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_128_CF ,18DAF1D2,1136,1143,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_128_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1144,1175,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_129_CF ,18DAF1D2,1176,1183,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_129_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1184,1215,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_130_CF ,18DAF1D2,1216,1223,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_130_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1224,1255,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_131_CF ,18DAF1D2,1256,1263,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_131_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1264,1295,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_132_CF ,18DAF1D2,1296,1303,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_132_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1304,1335,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_133_CF ,18DAF1D2,1336,1343,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_133_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1344,1375,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_134_CF ,18DAF1D2,1376,1383,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_134_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1384,1415,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_135_CF ,18DAF1D2,1416,1423,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_135_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1424,1455,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_136_CF ,18DAF1D2,1456,1463,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_136_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1464,1495,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_137_CF ,18DAF1D2,1496,1503,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_137_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1504,1535,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_138_CF ,18DAF1D2,1536,1543,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_138_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1544,1575,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_139_CF ,18DAF1D2,1576,1583,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_139_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1584,1615,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_140_CF ,18DAF1D2,1616,1623,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_140_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1624,1655,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_141_CF ,18DAF1D2,1656,1663,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_141_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1664,1695,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_142_CF ,18DAF1D2,1696,1703,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_142_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1704,1735,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_143_CF ,18DAF1D2,1736,1743,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_143_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1744,1775,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_144_CF ,18DAF1D2,1776,1783,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_144_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1784,1815,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_145_CF ,18DAF1D2,1816,1823,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_145_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1824,1855,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_146_CF ,18DAF1D2,1856,1863,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_146_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1864,1895,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_147_CF ,18DAF1D2,1896,1903,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_147_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1904,1935,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_148_CF ,18DAF1D2,1936,1943,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_148_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1944,1975,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_149_CF ,18DAF1D2,1976,1983,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_149_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1984,2015,1,0,0,,220222,620222,4ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_ID_150_CF ,18DAF1D2,2016,2023,1,0,0,,220222,620222,ff,MONITOR_TABLE_FOR_ID_2_CF.MONITOR_RX_150_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,55,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_201_CF ,18DAF1D2,56,63,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_201_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,64,95,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_202_CF ,18DAF1D2,96,103,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_202_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,104,135,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_203_CF ,18DAF1D2,136,143,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_203_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,144,175,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_204_CF ,18DAF1D2,176,183,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_204_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,184,215,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_205_CF ,18DAF1D2,216,223,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_205_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,224,255,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_206_CF ,18DAF1D2,256,263,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_206_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,264,295,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_207_CF ,18DAF1D2,296,303,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_207_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,304,335,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_208_CF ,18DAF1D2,336,343,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_208_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,344,375,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_209_CF ,18DAF1D2,376,383,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_209_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,384,415,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_210_CF ,18DAF1D2,416,423,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_210_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,424,455,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_211_CF ,18DAF1D2,456,463,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_211_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,464,495,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_212_CF ,18DAF1D2,496,503,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_212_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,504,535,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_213_CF ,18DAF1D2,536,543,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_213_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,544,575,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_214_CF ,18DAF1D2,576,583,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_214_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,584,615,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_215_CF ,18DAF1D2,616,623,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_215_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,624,655,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_216_CF ,18DAF1D2,656,663,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_216_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,664,695,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_217_CF ,18DAF1D2,696,703,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_217_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,704,735,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_218_CF ,18DAF1D2,736,743,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_218_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,744,775,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_219_CF ,18DAF1D2,776,783,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_219_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,784,815,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_220_CF ,18DAF1D2,816,823,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_220_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,824,855,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_221_CF ,18DAF1D2,856,863,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_221_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,864,895,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_222_CF ,18DAF1D2,896,903,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_222_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,904,935,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_223_CF ,18DAF1D2,936,943,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_223_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,944,975,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_224_CF ,18DAF1D2,976,983,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_224_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,984,1015,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_225_CF ,18DAF1D2,1016,1023,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_225_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1024,1055,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_226_CF ,18DAF1D2,1056,1063,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_226_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1064,1095,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_227_CF ,18DAF1D2,1096,1103,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_227_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1104,1135,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_228_CF ,18DAF1D2,1136,1143,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_228_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1144,1175,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_229_CF ,18DAF1D2,1176,1183,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_229_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1184,1215,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_230_CF ,18DAF1D2,1216,1223,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_230_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1224,1255,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_231_CF ,18DAF1D2,1256,1263,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_231_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1264,1295,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_232_CF ,18DAF1D2,1296,1303,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_232_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1304,1335,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_233_CF ,18DAF1D2,1336,1343,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_233_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1344,1375,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_234_CF ,18DAF1D2,1376,1383,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_234_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1384,1415,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_235_CF ,18DAF1D2,1416,1423,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_235_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1424,1455,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_236_CF ,18DAF1D2,1456,1463,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_236_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1464,1495,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_237_CF ,18DAF1D2,1496,1503,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_237_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1504,1535,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_238_CF ,18DAF1D2,1536,1543,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_238_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1544,1575,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_239_CF ,18DAF1D2,1576,1583,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_239_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1584,1615,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_240_CF ,18DAF1D2,1616,1623,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_240_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1624,1655,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_241_CF ,18DAF1D2,1656,1663,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_241_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1664,1695,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_242_CF ,18DAF1D2,1696,1703,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_242_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1704,1735,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_243_CF ,18DAF1D2,1736,1743,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_243_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1744,1775,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_244_CF ,18DAF1D2,1776,1783,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_244_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1784,1815,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_245_CF ,18DAF1D2,1816,1823,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_245_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1824,1855,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_246_CF ,18DAF1D2,1856,1863,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_246_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1864,1895,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_247_CF ,18DAF1D2,1896,1903,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_247_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1904,1935,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_248_CF ,18DAF1D2,1936,1943,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_248_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1944,1975,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_249_CF ,18DAF1D2,1976,1983,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_249_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1984,2015,1,0,0,,220223,620223,4ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_ID_250_CF ,18DAF1D2,2016,2023,1,0,0,,220223,620223,ff,MONITOR_TABLE_FOR_ID_3_CF.MONITOR_RX_250_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,55,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_301_CF ,18DAF1D2,56,63,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_301_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,64,95,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_302_CF ,18DAF1D2,96,103,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_302_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,104,135,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_303_CF ,18DAF1D2,136,143,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_303_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,144,175,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_304_CF ,18DAF1D2,176,183,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_304_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,184,215,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_305_CF ,18DAF1D2,216,223,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_305_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,224,255,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_306_CF ,18DAF1D2,256,263,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_306_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,264,295,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_307_CF ,18DAF1D2,296,303,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_307_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,304,335,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_308_CF ,18DAF1D2,336,343,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_308_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,344,375,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_309_CF ,18DAF1D2,376,383,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_309_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,384,415,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_310_CF ,18DAF1D2,416,423,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_310_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,424,455,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_311_CF ,18DAF1D2,456,463,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_311_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,464,495,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_312_CF ,18DAF1D2,496,503,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_312_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,504,535,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_313_CF ,18DAF1D2,536,543,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_313_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,544,575,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_314_CF ,18DAF1D2,576,583,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_314_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,584,615,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_315_CF ,18DAF1D2,616,623,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_315_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,624,655,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_316_CF ,18DAF1D2,656,663,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_316_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,664,695,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_317_CF ,18DAF1D2,696,703,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_317_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,704,735,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_318_CF ,18DAF1D2,736,743,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_318_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,744,775,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_319_CF ,18DAF1D2,776,783,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_319_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,784,815,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_320_CF ,18DAF1D2,816,823,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_320_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,824,855,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_321_CF ,18DAF1D2,856,863,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_321_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,864,895,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_322_CF ,18DAF1D2,896,903,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_322_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,904,935,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_323_CF ,18DAF1D2,936,943,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_323_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,944,975,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_324_CF ,18DAF1D2,976,983,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_324_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,984,1015,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_325_CF ,18DAF1D2,1016,1023,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_325_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1024,1055,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_326_CF ,18DAF1D2,1056,1063,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_326_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1064,1095,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_327_CF ,18DAF1D2,1096,1103,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_327_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1104,1135,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_328_CF ,18DAF1D2,1136,1143,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_328_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1144,1175,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_329_CF ,18DAF1D2,1176,1183,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_329_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1184,1215,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_330_CF ,18DAF1D2,1216,1223,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_330_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1224,1255,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_331_CF ,18DAF1D2,1256,1263,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_331_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1264,1295,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_332_CF ,18DAF1D2,1296,1303,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_332_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1304,1335,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_333_CF ,18DAF1D2,1336,1343,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_333_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1344,1375,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_334_CF ,18DAF1D2,1376,1383,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_334_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1384,1415,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_335_CF ,18DAF1D2,1416,1423,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_335_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1424,1455,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_336_CF ,18DAF1D2,1456,1463,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_336_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1464,1495,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_337_CF ,18DAF1D2,1496,1503,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_337_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1504,1535,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_338_CF ,18DAF1D2,1536,1543,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_338_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1544,1575,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_339_CF ,18DAF1D2,1576,1583,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_339_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1584,1615,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_340_CF ,18DAF1D2,1616,1623,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_340_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1624,1655,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_341_CF ,18DAF1D2,1656,1663,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_341_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1664,1695,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_342_CF ,18DAF1D2,1696,1703,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_342_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1704,1735,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_343_CF ,18DAF1D2,1736,1743,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_343_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1744,1775,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_344_CF ,18DAF1D2,1776,1783,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_344_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1784,1815,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_345_CF ,18DAF1D2,1816,1823,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_345_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1824,1855,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_346_CF ,18DAF1D2,1856,1863,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_346_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1864,1895,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_347_CF ,18DAF1D2,1896,1903,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_347_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1904,1935,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_348_CF ,18DAF1D2,1936,1943,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_348_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1944,1975,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_349_CF ,18DAF1D2,1976,1983,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_349_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1984,2015,1,0,0,,220224,620224,4ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_ID_350_CF ,18DAF1D2,2016,2023,1,0,0,,220224,620224,ff,MONITOR_TABLE_FOR_ID_4_CF.MONITOR_RX_350_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,55,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_401_CF ,18DAF1D2,56,63,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_401_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,64,95,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_402_CF ,18DAF1D2,96,103,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_402_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,104,135,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_403_CF ,18DAF1D2,136,143,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_403_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,144,175,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_404_CF ,18DAF1D2,176,183,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_404_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,184,215,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_405_CF ,18DAF1D2,216,223,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_405_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,224,255,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_406_CF ,18DAF1D2,256,263,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_406_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,264,295,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_407_CF ,18DAF1D2,296,303,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_407_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,304,335,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_408_CF ,18DAF1D2,336,343,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_408_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,344,375,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_409_CF ,18DAF1D2,376,383,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_409_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,384,415,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_410_CF ,18DAF1D2,416,423,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_410_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,424,455,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_411_CF ,18DAF1D2,456,463,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_411_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,464,495,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_412_CF ,18DAF1D2,496,503,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_412_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,504,535,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_413_CF ,18DAF1D2,536,543,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_413_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,544,575,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_414_CF ,18DAF1D2,576,583,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_414_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,584,615,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_415_CF ,18DAF1D2,616,623,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_415_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,624,655,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_416_CF ,18DAF1D2,656,663,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_416_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,664,695,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_417_CF ,18DAF1D2,696,703,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_417_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,704,735,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_418_CF ,18DAF1D2,736,743,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_418_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,744,775,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_419_CF ,18DAF1D2,776,783,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_419_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,784,815,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_420_CF ,18DAF1D2,816,823,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_420_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,824,855,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_421_CF ,18DAF1D2,856,863,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_421_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,864,895,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_422_CF ,18DAF1D2,896,903,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_422_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,904,935,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_423_CF ,18DAF1D2,936,943,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_423_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,944,975,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_424_CF ,18DAF1D2,976,983,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_424_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,984,1015,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_425_CF ,18DAF1D2,1016,1023,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_425_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1024,1055,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_426_CF ,18DAF1D2,1056,1063,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_426_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1064,1095,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_427_CF ,18DAF1D2,1096,1103,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_427_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1104,1135,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_428_CF ,18DAF1D2,1136,1143,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_428_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1144,1175,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_429_CF ,18DAF1D2,1176,1183,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_429_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1184,1215,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_430_CF ,18DAF1D2,1216,1223,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_430_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1224,1255,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_431_CF ,18DAF1D2,1256,1263,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_431_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1264,1295,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_432_CF ,18DAF1D2,1296,1303,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_432_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1304,1335,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_433_CF ,18DAF1D2,1336,1343,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_433_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1344,1375,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_434_CF ,18DAF1D2,1376,1383,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_434_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1384,1415,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_435_CF ,18DAF1D2,1416,1423,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_435_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1424,1455,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_436_CF ,18DAF1D2,1456,1463,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_436_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1464,1495,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_437_CF ,18DAF1D2,1496,1503,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_437_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1504,1535,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_438_CF ,18DAF1D2,1536,1543,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_438_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1544,1575,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_439_CF ,18DAF1D2,1576,1583,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_439_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1584,1615,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_440_CF ,18DAF1D2,1616,1623,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_440_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1624,1655,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_441_CF ,18DAF1D2,1656,1663,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_441_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1664,1695,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_442_CF ,18DAF1D2,1696,1703,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_442_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1704,1735,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_443_CF ,18DAF1D2,1736,1743,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_443_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1744,1775,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_444_CF ,18DAF1D2,1776,1783,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_444_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1784,1815,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_445_CF ,18DAF1D2,1816,1823,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_445_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1824,1855,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_446_CF ,18DAF1D2,1856,1863,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_446_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1864,1895,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_447_CF ,18DAF1D2,1896,1903,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_447_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1904,1935,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_448_CF ,18DAF1D2,1936,1943,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_448_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1944,1975,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_449_CF ,18DAF1D2,1976,1983,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_449_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,1984,2015,1,0,0,,220225,620225,4ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_ID_450_CF ,18DAF1D2,2016,2023,1,0,0,,220225,620225,ff,MONITOR_TABLE_FOR_ID_5_CF.MONITOR_RX_450_CF,0:NO_CH_MONITOR;1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;16:CAN5;32:CAN6;64:CAN7;128:CAN8 ,18DAF1D2,24,63,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN1 ,18DAF1D2,64,103,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN2 ,18DAF1D2,104,143,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN3 ,18DAF1D2,144,183,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN4 ,18DAF1D2,184,223,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN5 ,18DAF1D2,224,263,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN6 ,18DAF1D2,264,303,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN7 ,18DAF1D2,304,343,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.ID_FILTER_VIOL_CAN8 ,18DAF1D2,344,383,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.PAYLOAD_FILTER_VIOL_CAN1 ,18DAF1D2,384,423,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.PAYLOAD_FILTER_VIOL_CAN2 ,18DAF1D2,424,463,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN3 ,18DAF1D2,464,503,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN4 ,18DAF1D2,504,543,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN5 ,18DAF1D2,544,583,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN6 ,18DAF1D2,584,623,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN7 ,18DAF1D2,624,663,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.BUSLOAD_FILTER_VIOL_CAN8 ,18DAF1D2,664,703,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.AUTHENT_VIOL ,18DAF1D2,704,719,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.APPLI_DIGITAL_SIGN_VIOL ,18DAF1D2,720,735,1,0,0,,2202FF,6202FF,4ff,SECURITY_VIOL_COUNTER.CALIB_DIGITAL_SIGN_VIOL ,18DAF1D2,24,47,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.ABOLUTE_TIME_N01 ,18DAF1D2,48,71,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.MILEAGE_N01 ,18DAF1D2,76,78,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.VIOLATION_TYPE_N01,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.SIZE_IDENTIFIER_N01,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220400,620400,4ff,SECURITY_LOG_N01.IDENTIFIER_VIOLATED_FRAME_N01 ,18DAF1D2,112,119,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.VIOLATED_BUS_N01,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.PAYLOAD_DLC_N01,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220400,620400,4ff,SECURITY_LOG_N01.PAYLOAD_VIOLATED_FRAME_N01 ,18DAF1D2,199,199,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_STATUS_N01,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN1_N01 ,18DAF1D2,208,215,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN2_N01 ,18DAF1D2,216,223,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN3_N01 ,18DAF1D2,224,231,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN4_N01 ,18DAF1D2,232,239,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN5_N01 ,18DAF1D2,240,247,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN6_N01 ,18DAF1D2,248,255,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN7_N01 ,18DAF1D2,256,263,1,0,0,,220400,620400,ff,SECURITY_LOG_N01.BUSLOAD_VALUE_CAN8_N01 ,18DAF1D2,24,47,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.ABOLUTE_TIME_N02 ,18DAF1D2,48,71,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.MILEAGE_N02 ,18DAF1D2,76,78,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.VIOLATION_TYPE_N02,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.SIZE_IDENTIFIER_N02,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220401,620401,4ff,SECURITY_LOG_N02.IDENTIFIER_VIOLATED_FRAME_N02 ,18DAF1D2,112,119,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.VIOLATED_BUS_N02,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.PAYLOAD_DLC_N02,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220401,620401,4ff,SECURITY_LOG_N02.PAYLOAD_VIOLATED_FRAME_N02 ,18DAF1D2,199,199,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.BUSLOAD_STATUS_N02,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.BUSLOAD_VALUE_CAN1_N02 ,18DAF1D2,208,215,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.BUSLOAD_VALUE_CAN2_N02 ,18DAF1D2,216,223,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.BUSLOAD_VALUE_CAN3_N02 ,18DAF1D2,224,231,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.BUSLOAD_VALUE_CAN4_N02 ,18DAF1D2,232,239,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.BUSLOAD_VALUE_CAN5_N02 ,18DAF1D2,240,247,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.BUSLOAD_VALUE_CAN6_N02 ,18DAF1D2,248,255,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.BUSLOAD_VALUE_CAN7_N02 ,18DAF1D2,256,263,1,0,0,,220401,620401,ff,SECURITY_LOG_N02.BUSLOAD_VALUE_CAN8_N02 ,18DAF1D2,24,47,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.ABOLUTE_TIME_N03 ,18DAF1D2,48,71,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.MILEAGE_N03 ,18DAF1D2,76,78,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.VIOLATION_TYPE_N03,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.SIZE_IDENTIFIER_N03,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220402,620402,4ff,SECURITY_LOG_N03.IDENTIFIER_VIOLATED_FRAME_N03 ,18DAF1D2,112,119,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.VIOLATED_BUS_N03,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.PAYLOAD_DLC_N03,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220402,620402,4ff,SECURITY_LOG_N03.PAYLOAD_VIOLATED_FRAME_N03 ,18DAF1D2,199,199,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.BUSLOAD_STATUS_N03,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.BUSLOAD_VALUE_CAN1_N03 ,18DAF1D2,208,215,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.BUSLOAD_VALUE_CAN2_N03 ,18DAF1D2,216,223,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.BUSLOAD_VALUE_CAN3_N03 ,18DAF1D2,224,231,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.BUSLOAD_VALUE_CAN4_N03 ,18DAF1D2,232,239,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.BUSLOAD_VALUE_CAN5_N03 ,18DAF1D2,240,247,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.BUSLOAD_VALUE_CAN6_N03 ,18DAF1D2,248,255,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.BUSLOAD_VALUE_CAN7_N03 ,18DAF1D2,256,263,1,0,0,,220402,620402,ff,SECURITY_LOG_N03.BUSLOAD_VALUE_CAN8_N03 ,18DAF1D2,24,47,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.ABOLUTE_TIME_N04 ,18DAF1D2,48,71,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.MILEAGE_N04 ,18DAF1D2,76,78,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.VIOLATION_TYPE_N04,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.SIZE_IDENTIFIER_N04,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220403,620403,4ff,SECURITY_LOG_N04.IDENTIFIER_VIOLATED_FRAME_N04 ,18DAF1D2,112,119,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.VIOLATED_BUS_N04,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.PAYLOAD_DLC_N04,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220403,620403,4ff,SECURITY_LOG_N04.PAYLOAD_VIOLATED_FRAME_N04 ,18DAF1D2,199,199,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.BUSLOAD_STATUS_N04,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.BUSLOAD_VALUE_CAN1_N04 ,18DAF1D2,208,215,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.BUSLOAD_VALUE_CAN2_N04 ,18DAF1D2,216,223,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.BUSLOAD_VALUE_CAN3_N04 ,18DAF1D2,224,231,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.BUSLOAD_VALUE_CAN4_N04 ,18DAF1D2,232,239,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.BUSLOAD_VALUE_CAN5_N04 ,18DAF1D2,240,247,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.BUSLOAD_VALUE_CAN6_N04 ,18DAF1D2,248,255,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.BUSLOAD_VALUE_CAN7_N04 ,18DAF1D2,256,263,1,0,0,,220403,620403,ff,SECURITY_LOG_N04.BUSLOAD_VALUE_CAN8_N04 ,18DAF1D2,24,47,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.ABOLUTE_TIME_N05 ,18DAF1D2,48,71,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.MILEAGE_N05 ,18DAF1D2,76,78,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.VIOLATION_TYPE_N05,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.SIZE_IDENTIFIER_N05,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220404,620404,4ff,SECURITY_LOG_N05.IDENTIFIER_VIOLATED_FRAME_N05 ,18DAF1D2,112,119,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.VIOLATED_BUS_N05,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.PAYLOAD_DLC_N05,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220404,620404,4ff,SECURITY_LOG_N05.PAYLOAD_VIOLATED_FRAME_N05 ,18DAF1D2,199,199,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.BUSLOAD_STATUS_N05,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.BUSLOAD_VALUE_CAN1_N05 ,18DAF1D2,208,215,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.BUSLOAD_VALUE_CAN2_N05 ,18DAF1D2,216,223,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.BUSLOAD_VALUE_CAN3_N05 ,18DAF1D2,224,231,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.BUSLOAD_VALUE_CAN4_N05 ,18DAF1D2,232,239,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.BUSLOAD_VALUE_CAN5_N05 ,18DAF1D2,240,247,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.BUSLOAD_VALUE_CAN6_N05 ,18DAF1D2,248,255,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.BUSLOAD_VALUE_CAN7_N05 ,18DAF1D2,256,263,1,0,0,,220404,620404,ff,SECURITY_LOG_N05.BUSLOAD_VALUE_CAN8_N05 ,18DAF1D2,24,47,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.ABOLUTE_TIME_N06 ,18DAF1D2,48,71,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.MILEAGE_N06 ,18DAF1D2,76,78,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.VIOLATION_TYPE_N06,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.SIZE_IDENTIFIER_N06,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220405,620405,4ff,SECURITY_LOG_N06.IDENTIFIER_VIOLATED_FRAME_N06 ,18DAF1D2,112,119,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.VIOLATED_BUS_N06,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.PAYLOAD_DLC_N06,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220405,620405,4ff,SECURITY_LOG_N06.PAYLOAD_VIOLATED_FRAME_N06 ,18DAF1D2,199,199,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.BUSLOAD_STATUS_N06,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.BUSLOAD_VALUE_CAN1_N06 ,18DAF1D2,208,215,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.BUSLOAD_VALUE_CAN2_N06 ,18DAF1D2,216,223,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.BUSLOAD_VALUE_CAN3_N06 ,18DAF1D2,224,231,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.BUSLOAD_VALUE_CAN4_N06 ,18DAF1D2,232,239,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.BUSLOAD_VALUE_CAN5_N06 ,18DAF1D2,240,247,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.BUSLOAD_VALUE_CAN6_N06 ,18DAF1D2,248,255,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.BUSLOAD_VALUE_CAN7_N06 ,18DAF1D2,256,263,1,0,0,,220405,620405,ff,SECURITY_LOG_N06.BUSLOAD_VALUE_CAN8_N06 ,18DAF1D2,24,47,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.ABOLUTE_TIME_N07 ,18DAF1D2,48,71,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.MILEAGE_N07 ,18DAF1D2,76,78,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.VIOLATION_TYPE_N07,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.SIZE_IDENTIFIER_N07,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220406,620406,4ff,SECURITY_LOG_N07.IDENTIFIER_VIOLATED_FRAME_N07 ,18DAF1D2,112,119,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.VIOLATED_BUS_N07,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.PAYLOAD_DLC_N07,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220406,620406,4ff,SECURITY_LOG_N07.PAYLOAD_VIOLATED_FRAME_N07 ,18DAF1D2,199,199,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.BUSLOAD_STATUS_N07,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.BUSLOAD_VALUE_CAN1_N07 ,18DAF1D2,208,215,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.BUSLOAD_VALUE_CAN2_N07 ,18DAF1D2,216,223,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.BUSLOAD_VALUE_CAN3_N07 ,18DAF1D2,224,231,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.BUSLOAD_VALUE_CAN4_N07 ,18DAF1D2,232,239,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.BUSLOAD_VALUE_CAN5_N07 ,18DAF1D2,240,247,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.BUSLOAD_VALUE_CAN6_N07 ,18DAF1D2,248,255,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.BUSLOAD_VALUE_CAN7_N07 ,18DAF1D2,256,263,1,0,0,,220406,620406,ff,SECURITY_LOG_N07.BUSLOAD_VALUE_CAN8_N07 ,18DAF1D2,24,47,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.ABOLUTE_TIME_N08 ,18DAF1D2,48,71,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.MILEAGE_N08 ,18DAF1D2,76,78,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.VIOLATION_TYPE_N08,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.SIZE_IDENTIFIER_N08,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220407,620407,4ff,SECURITY_LOG_N08.IDENTIFIER_VIOLATED_FRAME_N08 ,18DAF1D2,112,119,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.VIOLATED_BUS_N08,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.PAYLOAD_DLC_N08,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220407,620407,4ff,SECURITY_LOG_N08.PAYLOAD_VIOLATED_FRAME_N08 ,18DAF1D2,199,199,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.BUSLOAD_STATUS_N08,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.BUSLOAD_VALUE_CAN1_N08 ,18DAF1D2,208,215,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.BUSLOAD_VALUE_CAN2_N08 ,18DAF1D2,216,223,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.BUSLOAD_VALUE_CAN3_N08 ,18DAF1D2,224,231,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.BUSLOAD_VALUE_CAN4_N08 ,18DAF1D2,232,239,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.BUSLOAD_VALUE_CAN5_N08 ,18DAF1D2,240,247,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.BUSLOAD_VALUE_CAN6_N08 ,18DAF1D2,248,255,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.BUSLOAD_VALUE_CAN7_N08 ,18DAF1D2,256,263,1,0,0,,220407,620407,ff,SECURITY_LOG_N08.BUSLOAD_VALUE_CAN8_N08 ,18DAF1D2,24,47,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.ABOLUTE_TIME_N09 ,18DAF1D2,48,71,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.MILEAGE_N09 ,18DAF1D2,76,78,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.VIOLATION_TYPE_N09,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.SIZE_IDENTIFIER_N09,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220408,620408,4ff,SECURITY_LOG_N09.IDENTIFIER_VIOLATED_FRAME_N09 ,18DAF1D2,112,119,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.VIOLATED_BUS_N09,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.PAYLOAD_DLC_N09,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220408,620408,4ff,SECURITY_LOG_N09.PAYLOAD_VIOLATED_FRAME_N09 ,18DAF1D2,199,199,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.BUSLOAD_STATUS_N09,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.BUSLOAD_VALUE_CAN1_N09 ,18DAF1D2,208,215,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.BUSLOAD_VALUE_CAN2_N09 ,18DAF1D2,216,223,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.BUSLOAD_VALUE_CAN3_N09 ,18DAF1D2,224,231,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.BUSLOAD_VALUE_CAN4_N09 ,18DAF1D2,232,239,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.BUSLOAD_VALUE_CAN5_N09 ,18DAF1D2,240,247,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.BUSLOAD_VALUE_CAN6_N09 ,18DAF1D2,248,255,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.BUSLOAD_VALUE_CAN7_N09 ,18DAF1D2,256,263,1,0,0,,220408,620408,ff,SECURITY_LOG_N09.BUSLOAD_VALUE_CAN8_N09 ,18DAF1D2,24,47,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.ABOLUTE_TIME_N10 ,18DAF1D2,48,71,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.MILEAGE_N10 ,18DAF1D2,76,78,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.VIOLATION_TYPE_N10,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.SIZE_IDENTIFIER_N10,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220409,620409,4ff,SECURITY_LOG_N10.IDENTIFIER_VIOLATED_FRAME_N10 ,18DAF1D2,112,119,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.VIOLATED_BUS_N10,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.PAYLOAD_DLC_N10,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220409,620409,4ff,SECURITY_LOG_N10.PAYLOAD_VIOLATED_FRAME_N10 ,18DAF1D2,199,199,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.BUSLOAD_STATUS_N10,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.BUSLOAD_VALUE_CAN1_N10 ,18DAF1D2,208,215,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.BUSLOAD_VALUE_CAN2_N10 ,18DAF1D2,216,223,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.BUSLOAD_VALUE_CAN3_N10 ,18DAF1D2,224,231,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.BUSLOAD_VALUE_CAN4_N10 ,18DAF1D2,232,239,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.BUSLOAD_VALUE_CAN5_N10 ,18DAF1D2,240,247,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.BUSLOAD_VALUE_CAN6_N10 ,18DAF1D2,248,255,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.BUSLOAD_VALUE_CAN7_N10 ,18DAF1D2,256,263,1,0,0,,220409,620409,ff,SECURITY_LOG_N10.BUSLOAD_VALUE_CAN8_N10 ,18DAF1D2,24,47,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.ABOLUTE_TIME_N11 ,18DAF1D2,48,71,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.MILEAGE_N11 ,18DAF1D2,76,78,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.VIOLATION_TYPE_N11,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.SIZE_IDENTIFIER_N11,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22040A,62040A,4ff,SECURITY_LOG_N11.IDENTIFIER_VIOLATED_FRAME_N11 ,18DAF1D2,112,119,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.VIOLATED_BUS_N11,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.PAYLOAD_DLC_N11,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22040A,62040A,4ff,SECURITY_LOG_N11.PAYLOAD_VIOLATED_FRAME_N11 ,18DAF1D2,199,199,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.BUSLOAD_STATUS_N11,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.BUSLOAD_VALUE_CAN1_N11 ,18DAF1D2,208,215,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.BUSLOAD_VALUE_CAN2_N11 ,18DAF1D2,216,223,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.BUSLOAD_VALUE_CAN3_N11 ,18DAF1D2,224,231,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.BUSLOAD_VALUE_CAN4_N11 ,18DAF1D2,232,239,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.BUSLOAD_VALUE_CAN5_N11 ,18DAF1D2,240,247,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.BUSLOAD_VALUE_CAN6_N11 ,18DAF1D2,248,255,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.BUSLOAD_VALUE_CAN7_N11 ,18DAF1D2,256,263,1,0,0,,22040A,62040A,ff,SECURITY_LOG_N11.BUSLOAD_VALUE_CAN8_N11 ,18DAF1D2,24,47,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.ABOLUTE_TIME_N12 ,18DAF1D2,48,71,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.MILEAGE_N12 ,18DAF1D2,76,78,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.VIOLATION_TYPE_N12,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.SIZE_IDENTIFIER_N12,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22040B,62040B,4ff,SECURITY_LOG_N12.IDENTIFIER_VIOLATED_FRAME_N12 ,18DAF1D2,112,119,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.VIOLATED_BUS_N12,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.PAYLOAD_DLC_N12,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22040B,62040B,4ff,SECURITY_LOG_N12.PAYLOAD_VIOLATED_FRAME_N12 ,18DAF1D2,199,199,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.BUSLOAD_STATUS_N12,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.BUSLOAD_VALUE_CAN1_N12 ,18DAF1D2,208,215,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.BUSLOAD_VALUE_CAN2_N12 ,18DAF1D2,216,223,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.BUSLOAD_VALUE_CAN3_N12 ,18DAF1D2,224,231,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.BUSLOAD_VALUE_CAN4_N12 ,18DAF1D2,232,239,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.BUSLOAD_VALUE_CAN5_N12 ,18DAF1D2,240,247,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.BUSLOAD_VALUE_CAN6_N12 ,18DAF1D2,248,255,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.BUSLOAD_VALUE_CAN7_N12 ,18DAF1D2,256,263,1,0,0,,22040B,62040B,ff,SECURITY_LOG_N12.BUSLOAD_VALUE_CAN8_N12 ,18DAF1D2,24,47,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.ABOLUTE_TIME_N13 ,18DAF1D2,48,71,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.MILEAGE_N13 ,18DAF1D2,76,78,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.VIOLATION_TYPE_N13,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.SIZE_IDENTIFIER_N13,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22040C,62040C,4ff,SECURITY_LOG_N13.IDENTIFIER_VIOLATED_FRAME_N13 ,18DAF1D2,112,119,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.VIOLATED_BUS_N13,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.PAYLOAD_DLC_N13,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22040C,62040C,4ff,SECURITY_LOG_N13.PAYLOAD_VIOLATED_FRAME_N13 ,18DAF1D2,199,199,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.BUSLOAD_STATUS_N13,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.BUSLOAD_VALUE_CAN1_N13 ,18DAF1D2,208,215,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.BUSLOAD_VALUE_CAN2_N13 ,18DAF1D2,216,223,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.BUSLOAD_VALUE_CAN3_N13 ,18DAF1D2,224,231,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.BUSLOAD_VALUE_CAN4_N13 ,18DAF1D2,232,239,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.BUSLOAD_VALUE_CAN5_N13 ,18DAF1D2,240,247,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.BUSLOAD_VALUE_CAN6_N13 ,18DAF1D2,248,255,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.BUSLOAD_VALUE_CAN7_N13 ,18DAF1D2,256,263,1,0,0,,22040C,62040C,ff,SECURITY_LOG_N13.BUSLOAD_VALUE_CAN8_N13 ,18DAF1D2,24,47,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.ABOLUTE_TIME_N14 ,18DAF1D2,48,71,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.MILEAGE_N14 ,18DAF1D2,76,78,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.VIOLATION_TYPE_N14,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.SIZE_IDENTIFIER_N14,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22040D,62040D,4ff,SECURITY_LOG_N14.IDENTIFIER_VIOLATED_FRAME_N14 ,18DAF1D2,112,119,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.VIOLATED_BUS_N14,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.PAYLOAD_DLC_N14,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22040D,62040D,4ff,SECURITY_LOG_N14.PAYLOAD_VIOLATED_FRAME_N14 ,18DAF1D2,199,199,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.BUSLOAD_STATUS_N14,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.BUSLOAD_VALUE_CAN1_N14 ,18DAF1D2,208,215,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.BUSLOAD_VALUE_CAN2_N14 ,18DAF1D2,216,223,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.BUSLOAD_VALUE_CAN3_N14 ,18DAF1D2,224,231,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.BUSLOAD_VALUE_CAN4_N14 ,18DAF1D2,232,239,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.BUSLOAD_VALUE_CAN5_N14 ,18DAF1D2,240,247,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.BUSLOAD_VALUE_CAN6_N14 ,18DAF1D2,248,255,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.BUSLOAD_VALUE_CAN7_N14 ,18DAF1D2,256,263,1,0,0,,22040D,62040D,ff,SECURITY_LOG_N14.BUSLOAD_VALUE_CAN8_N14 ,18DAF1D2,24,47,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.ABOLUTE_TIME_N15 ,18DAF1D2,48,71,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.MILEAGE_N15 ,18DAF1D2,76,78,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.VIOLATION_TYPE_N15,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.SIZE_IDENTIFIER_N15,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22040E,62040E,4ff,SECURITY_LOG_N15.IDENTIFIER_VIOLATED_FRAME_N15 ,18DAF1D2,112,119,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.VIOLATED_BUS_N15,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.PAYLOAD_DLC_N15,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22040E,62040E,4ff,SECURITY_LOG_N15.PAYLOAD_VIOLATED_FRAME_N15 ,18DAF1D2,199,199,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.BUSLOAD_STATUS_N15,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.BUSLOAD_VALUE_CAN1_N15 ,18DAF1D2,208,215,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.BUSLOAD_VALUE_CAN2_N15 ,18DAF1D2,216,223,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.BUSLOAD_VALUE_CAN3_N15 ,18DAF1D2,224,231,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.BUSLOAD_VALUE_CAN4_N15 ,18DAF1D2,232,239,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.BUSLOAD_VALUE_CAN5_N15 ,18DAF1D2,240,247,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.BUSLOAD_VALUE_CAN6_N15 ,18DAF1D2,248,255,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.BUSLOAD_VALUE_CAN7_N15 ,18DAF1D2,256,263,1,0,0,,22040E,62040E,ff,SECURITY_LOG_N15.BUSLOAD_VALUE_CAN8_N15 ,18DAF1D2,24,47,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.ABOLUTE_TIME_N16 ,18DAF1D2,48,71,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.MILEAGE_N16 ,18DAF1D2,76,78,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.VIOLATION_TYPE_N16,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.SIZE_IDENTIFIER_N16,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22040F,62040F,4ff,SECURITY_LOG_N16.IDENTIFIER_VIOLATED_FRAME_N16 ,18DAF1D2,112,119,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.VIOLATED_BUS_N16,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.PAYLOAD_DLC_N16,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22040F,62040F,4ff,SECURITY_LOG_N16.PAYLOAD_VIOLATED_FRAME_N16 ,18DAF1D2,199,199,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.BUSLOAD_STATUS_N16,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.BUSLOAD_VALUE_CAN1_N16 ,18DAF1D2,208,215,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.BUSLOAD_VALUE_CAN2_N16 ,18DAF1D2,216,223,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.BUSLOAD_VALUE_CAN3_N16 ,18DAF1D2,224,231,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.BUSLOAD_VALUE_CAN4_N16 ,18DAF1D2,232,239,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.BUSLOAD_VALUE_CAN5_N16 ,18DAF1D2,240,247,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.BUSLOAD_VALUE_CAN6_N16 ,18DAF1D2,248,255,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.BUSLOAD_VALUE_CAN7_N16 ,18DAF1D2,256,263,1,0,0,,22040F,62040F,ff,SECURITY_LOG_N16.BUSLOAD_VALUE_CAN8_N16 ,18DAF1D2,24,47,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.ABOLUTE_TIME_N17 ,18DAF1D2,48,71,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.MILEAGE_N17 ,18DAF1D2,76,78,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.VIOLATION_TYPE_N17,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.SIZE_IDENTIFIER_N17,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220410,620410,4ff,SECURITY_LOG_N17.IDENTIFIER_VIOLATED_FRAME_N17 ,18DAF1D2,112,119,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.VIOLATED_BUS_N17,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.PAYLOAD_DLC_N17,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220410,620410,4ff,SECURITY_LOG_N17.PAYLOAD_VIOLATED_FRAME_N17 ,18DAF1D2,199,199,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.BUSLOAD_STATUS_N17,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.BUSLOAD_VALUE_CAN1_N17 ,18DAF1D2,208,215,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.BUSLOAD_VALUE_CAN2_N17 ,18DAF1D2,216,223,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.BUSLOAD_VALUE_CAN3_N17 ,18DAF1D2,224,231,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.BUSLOAD_VALUE_CAN4_N17 ,18DAF1D2,232,239,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.BUSLOAD_VALUE_CAN5_N17 ,18DAF1D2,240,247,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.BUSLOAD_VALUE_CAN6_N17 ,18DAF1D2,248,255,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.BUSLOAD_VALUE_CAN7_N17 ,18DAF1D2,256,263,1,0,0,,220410,620410,ff,SECURITY_LOG_N17.BUSLOAD_VALUE_CAN8_N17 ,18DAF1D2,24,47,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.ABOLUTE_TIME_N18 ,18DAF1D2,48,71,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.MILEAGE_N18 ,18DAF1D2,76,78,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.VIOLATION_TYPE_N18,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.SIZE_IDENTIFIER_N18,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220411,620411,4ff,SECURITY_LOG_N18.IDENTIFIER_VIOLATED_FRAME_N18 ,18DAF1D2,112,119,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.VIOLATED_BUS_N18,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.PAYLOAD_DLC_N18,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220411,620411,4ff,SECURITY_LOG_N18.PAYLOAD_VIOLATED_FRAME_N18 ,18DAF1D2,199,199,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.BUSLOAD_STATUS_N18,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.BUSLOAD_VALUE_CAN1_N18 ,18DAF1D2,208,215,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.BUSLOAD_VALUE_CAN2_N18 ,18DAF1D2,216,223,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.BUSLOAD_VALUE_CAN3_N18 ,18DAF1D2,224,231,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.BUSLOAD_VALUE_CAN4_N18 ,18DAF1D2,232,239,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.BUSLOAD_VALUE_CAN5_N18 ,18DAF1D2,240,247,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.BUSLOAD_VALUE_CAN6_N18 ,18DAF1D2,248,255,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.BUSLOAD_VALUE_CAN7_N18 ,18DAF1D2,256,263,1,0,0,,220411,620411,ff,SECURITY_LOG_N18.BUSLOAD_VALUE_CAN8_N18 ,18DAF1D2,24,47,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.ABOLUTE_TIME_N19 ,18DAF1D2,48,71,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.MILEAGE_N19 ,18DAF1D2,76,78,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.VIOLATION_TYPE_N19,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.SIZE_IDENTIFIER_N19,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220412,620412,4ff,SECURITY_LOG_N19.IDENTIFIER_VIOLATED_FRAME_N19 ,18DAF1D2,112,119,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.VIOLATED_BUS_N19,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.PAYLOAD_DLC_N19,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220412,620412,4ff,SECURITY_LOG_N19.PAYLOAD_VIOLATED_FRAME_N19 ,18DAF1D2,199,199,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.BUSLOAD_STATUS_N19,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.BUSLOAD_VALUE_CAN1_N19 ,18DAF1D2,208,215,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.BUSLOAD_VALUE_CAN2_N19 ,18DAF1D2,216,223,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.BUSLOAD_VALUE_CAN3_N19 ,18DAF1D2,224,231,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.BUSLOAD_VALUE_CAN4_N19 ,18DAF1D2,232,239,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.BUSLOAD_VALUE_CAN5_N19 ,18DAF1D2,240,247,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.BUSLOAD_VALUE_CAN6_N19 ,18DAF1D2,248,255,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.BUSLOAD_VALUE_CAN7_N19 ,18DAF1D2,256,263,1,0,0,,220412,620412,ff,SECURITY_LOG_N19.BUSLOAD_VALUE_CAN8_N19 ,18DAF1D2,24,47,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.ABOLUTE_TIME_N20 ,18DAF1D2,48,71,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.MILEAGE_N20 ,18DAF1D2,76,78,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.VIOLATION_TYPE_N20,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.SIZE_IDENTIFIER_N20,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220413,620413,4ff,SECURITY_LOG_N20.IDENTIFIER_VIOLATED_FRAME_N20 ,18DAF1D2,112,119,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.VIOLATED_BUS_N20,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.PAYLOAD_DLC_N20,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220413,620413,4ff,SECURITY_LOG_N20.PAYLOAD_VIOLATED_FRAME_N20 ,18DAF1D2,199,199,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.BUSLOAD_STATUS_N20,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.BUSLOAD_VALUE_CAN1_N20 ,18DAF1D2,208,215,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.BUSLOAD_VALUE_CAN2_N20 ,18DAF1D2,216,223,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.BUSLOAD_VALUE_CAN3_N20 ,18DAF1D2,224,231,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.BUSLOAD_VALUE_CAN4_N20 ,18DAF1D2,232,239,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.BUSLOAD_VALUE_CAN5_N20 ,18DAF1D2,240,247,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.BUSLOAD_VALUE_CAN6_N20 ,18DAF1D2,248,255,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.BUSLOAD_VALUE_CAN7_N20 ,18DAF1D2,256,263,1,0,0,,220413,620413,ff,SECURITY_LOG_N20.BUSLOAD_VALUE_CAN8_N20 ,18DAF1D2,24,47,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.ABOLUTE_TIME_N21 ,18DAF1D2,48,71,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.MILEAGE_N21 ,18DAF1D2,76,78,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.VIOLATION_TYPE_N21,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.SIZE_IDENTIFIER_N21,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220414,620414,4ff,SECURITY_LOG_N21.IDENTIFIER_VIOLATED_FRAME_N21 ,18DAF1D2,112,119,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.VIOLATED_BUS_N21,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.PAYLOAD_DLC_N21,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220414,620414,4ff,SECURITY_LOG_N21.PAYLOAD_VIOLATED_FRAME_N21 ,18DAF1D2,199,199,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.BUSLOAD_STATUS_N21,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.BUSLOAD_VALUE_CAN1_N21 ,18DAF1D2,208,215,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.BUSLOAD_VALUE_CAN2_N21 ,18DAF1D2,216,223,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.BUSLOAD_VALUE_CAN3_N21 ,18DAF1D2,224,231,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.BUSLOAD_VALUE_CAN4_N21 ,18DAF1D2,232,239,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.BUSLOAD_VALUE_CAN5_N21 ,18DAF1D2,240,247,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.BUSLOAD_VALUE_CAN6_N21 ,18DAF1D2,248,255,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.BUSLOAD_VALUE_CAN7_N21 ,18DAF1D2,256,263,1,0,0,,220414,620414,ff,SECURITY_LOG_N21.BUSLOAD_VALUE_CAN8_N21 ,18DAF1D2,24,47,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.ABOLUTE_TIME_N22 ,18DAF1D2,48,71,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.MILEAGE_N22 ,18DAF1D2,76,78,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.VIOLATION_TYPE_N22,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.SIZE_IDENTIFIER_N22,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220415,620415,4ff,SECURITY_LOG_N22.IDENTIFIER_VIOLATED_FRAME_N22 ,18DAF1D2,112,119,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.VIOLATED_BUS_N22,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.PAYLOAD_DLC_N22,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220415,620415,4ff,SECURITY_LOG_N22.PAYLOAD_VIOLATED_FRAME_N22 ,18DAF1D2,199,199,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.BUSLOAD_STATUS_N22,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.BUSLOAD_VALUE_CAN1_N22 ,18DAF1D2,208,215,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.BUSLOAD_VALUE_CAN2_N22 ,18DAF1D2,216,223,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.BUSLOAD_VALUE_CAN3_N22 ,18DAF1D2,224,231,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.BUSLOAD_VALUE_CAN4_N22 ,18DAF1D2,232,239,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.BUSLOAD_VALUE_CAN5_N22 ,18DAF1D2,240,247,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.BUSLOAD_VALUE_CAN6_N22 ,18DAF1D2,248,255,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.BUSLOAD_VALUE_CAN7_N22 ,18DAF1D2,256,263,1,0,0,,220415,620415,ff,SECURITY_LOG_N22.BUSLOAD_VALUE_CAN8_N22 ,18DAF1D2,24,47,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.ABOLUTE_TIME_N23 ,18DAF1D2,48,71,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.MILEAGE_N23 ,18DAF1D2,76,78,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.VIOLATION_TYPE_N23,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.SIZE_IDENTIFIER_N23,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220416,620416,4ff,SECURITY_LOG_N23.IDENTIFIER_VIOLATED_FRAME_N23 ,18DAF1D2,112,119,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.VIOLATED_BUS_N23,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.PAYLOAD_DLC_N23,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220416,620416,4ff,SECURITY_LOG_N23.PAYLOAD_VIOLATED_FRAME_N23 ,18DAF1D2,199,199,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.BUSLOAD_STATUS_N23,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.BUSLOAD_VALUE_CAN1_N23 ,18DAF1D2,208,215,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.BUSLOAD_VALUE_CAN2_N23 ,18DAF1D2,216,223,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.BUSLOAD_VALUE_CAN3_N23 ,18DAF1D2,224,231,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.BUSLOAD_VALUE_CAN4_N23 ,18DAF1D2,232,239,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.BUSLOAD_VALUE_CAN5_N23 ,18DAF1D2,240,247,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.BUSLOAD_VALUE_CAN6_N23 ,18DAF1D2,248,255,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.BUSLOAD_VALUE_CAN7_N23 ,18DAF1D2,256,263,1,0,0,,220416,620416,ff,SECURITY_LOG_N23.BUSLOAD_VALUE_CAN8_N23 ,18DAF1D2,24,47,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.ABOLUTE_TIME_N24 ,18DAF1D2,48,71,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.MILEAGE_N24 ,18DAF1D2,76,78,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.VIOLATION_TYPE_N24,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.SIZE_IDENTIFIER_N24,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220417,620417,4ff,SECURITY_LOG_N24.IDENTIFIER_VIOLATED_FRAME_N24 ,18DAF1D2,112,119,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.VIOLATED_BUS_N24,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.PAYLOAD_DLC_N24,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220417,620417,4ff,SECURITY_LOG_N24.PAYLOAD_VIOLATED_FRAME_N24 ,18DAF1D2,199,199,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.BUSLOAD_STATUS_N24,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.BUSLOAD_VALUE_CAN1_N24 ,18DAF1D2,208,215,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.BUSLOAD_VALUE_CAN2_N24 ,18DAF1D2,216,223,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.BUSLOAD_VALUE_CAN3_N24 ,18DAF1D2,224,231,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.BUSLOAD_VALUE_CAN4_N24 ,18DAF1D2,232,239,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.BUSLOAD_VALUE_CAN5_N24 ,18DAF1D2,240,247,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.BUSLOAD_VALUE_CAN6_N24 ,18DAF1D2,248,255,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.BUSLOAD_VALUE_CAN7_N24 ,18DAF1D2,256,263,1,0,0,,220417,620417,ff,SECURITY_LOG_N24.BUSLOAD_VALUE_CAN8_N24 ,18DAF1D2,24,47,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.ABOLUTE_TIME_N25 ,18DAF1D2,48,71,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.MILEAGE_N25 ,18DAF1D2,76,78,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.VIOLATION_TYPE_N25,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.SIZE_IDENTIFIER_N25,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220418,620418,4ff,SECURITY_LOG_N25.IDENTIFIER_VIOLATED_FRAME_N25 ,18DAF1D2,112,119,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.VIOLATED_BUS_N25,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.PAYLOAD_DLC_N25,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220418,620418,4ff,SECURITY_LOG_N25.PAYLOAD_VIOLATED_FRAME_N25 ,18DAF1D2,199,199,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.BUSLOAD_STATUS_N25,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.BUSLOAD_VALUE_CAN1_N25 ,18DAF1D2,208,215,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.BUSLOAD_VALUE_CAN2_N25 ,18DAF1D2,216,223,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.BUSLOAD_VALUE_CAN3_N25 ,18DAF1D2,224,231,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.BUSLOAD_VALUE_CAN4_N25 ,18DAF1D2,232,239,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.BUSLOAD_VALUE_CAN5_N25 ,18DAF1D2,240,247,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.BUSLOAD_VALUE_CAN6_N25 ,18DAF1D2,248,255,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.BUSLOAD_VALUE_CAN7_N25 ,18DAF1D2,256,263,1,0,0,,220418,620418,ff,SECURITY_LOG_N25.BUSLOAD_VALUE_CAN8_N25 ,18DAF1D2,24,47,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.ABOLUTE_TIME_N26 ,18DAF1D2,48,71,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.MILEAGE_N26 ,18DAF1D2,76,78,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.VIOLATION_TYPE_N26,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.SIZE_IDENTIFIER_N26,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220419,620419,4ff,SECURITY_LOG_N26.IDENTIFIER_VIOLATED_FRAME_N26 ,18DAF1D2,112,119,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.VIOLATED_BUS_N26,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.PAYLOAD_DLC_N26,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220419,620419,4ff,SECURITY_LOG_N26.PAYLOAD_VIOLATED_FRAME_N26 ,18DAF1D2,199,199,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.BUSLOAD_STATUS_N26,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.BUSLOAD_VALUE_CAN1_N26 ,18DAF1D2,208,215,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.BUSLOAD_VALUE_CAN2_N26 ,18DAF1D2,216,223,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.BUSLOAD_VALUE_CAN3_N26 ,18DAF1D2,224,231,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.BUSLOAD_VALUE_CAN4_N26 ,18DAF1D2,232,239,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.BUSLOAD_VALUE_CAN5_N26 ,18DAF1D2,240,247,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.BUSLOAD_VALUE_CAN6_N26 ,18DAF1D2,248,255,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.BUSLOAD_VALUE_CAN7_N26 ,18DAF1D2,256,263,1,0,0,,220419,620419,ff,SECURITY_LOG_N26.BUSLOAD_VALUE_CAN8_N26 ,18DAF1D2,24,47,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.ABOLUTE_TIME_N27 ,18DAF1D2,48,71,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.MILEAGE_N27 ,18DAF1D2,76,78,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.VIOLATION_TYPE_N27,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.SIZE_IDENTIFIER_N27,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22041A,62041A,4ff,SECURITY_LOG_N27.IDENTIFIER_VIOLATED_FRAME_N27 ,18DAF1D2,112,119,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.VIOLATED_BUS_N27,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.PAYLOAD_DLC_N27,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22041A,62041A,4ff,SECURITY_LOG_N27.PAYLOAD_VIOLATED_FRAME_N27 ,18DAF1D2,199,199,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.BUSLOAD_STATUS_N27,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.BUSLOAD_VALUE_CAN1_N27 ,18DAF1D2,208,215,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.BUSLOAD_VALUE_CAN2_N27 ,18DAF1D2,216,223,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.BUSLOAD_VALUE_CAN3_N27 ,18DAF1D2,224,231,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.BUSLOAD_VALUE_CAN4_N27 ,18DAF1D2,232,239,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.BUSLOAD_VALUE_CAN5_N27 ,18DAF1D2,240,247,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.BUSLOAD_VALUE_CAN6_N27 ,18DAF1D2,248,255,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.BUSLOAD_VALUE_CAN7_N27 ,18DAF1D2,256,263,1,0,0,,22041A,62041A,ff,SECURITY_LOG_N27.BUSLOAD_VALUE_CAN8_N27 ,18DAF1D2,24,47,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.ABOLUTE_TIME_N28 ,18DAF1D2,48,71,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.MILEAGE_N28 ,18DAF1D2,76,78,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.VIOLATION_TYPE_N28,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.SIZE_IDENTIFIER_N28,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22041B,62041B,4ff,SECURITY_LOG_N28.IDENTIFIER_VIOLATED_FRAME_N28 ,18DAF1D2,112,119,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.VIOLATED_BUS_N28,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.PAYLOAD_DLC_N28,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22041B,62041B,4ff,SECURITY_LOG_N28.PAYLOAD_VIOLATED_FRAME_N28 ,18DAF1D2,199,199,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.BUSLOAD_STATUS_N28,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.BUSLOAD_VALUE_CAN1_N28 ,18DAF1D2,208,215,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.BUSLOAD_VALUE_CAN2_N28 ,18DAF1D2,216,223,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.BUSLOAD_VALUE_CAN3_N28 ,18DAF1D2,224,231,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.BUSLOAD_VALUE_CAN4_N28 ,18DAF1D2,232,239,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.BUSLOAD_VALUE_CAN5_N28 ,18DAF1D2,240,247,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.BUSLOAD_VALUE_CAN6_N28 ,18DAF1D2,248,255,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.BUSLOAD_VALUE_CAN7_N28 ,18DAF1D2,256,263,1,0,0,,22041B,62041B,ff,SECURITY_LOG_N28.BUSLOAD_VALUE_CAN8_N28 ,18DAF1D2,24,47,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.ABOLUTE_TIME_N29 ,18DAF1D2,48,71,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.MILEAGE_N29 ,18DAF1D2,76,78,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.VIOLATION_TYPE_N29,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.SIZE_IDENTIFIER_N29,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22041C,62041C,4ff,SECURITY_LOG_N29.IDENTIFIER_VIOLATED_FRAME_N29 ,18DAF1D2,112,119,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.VIOLATED_BUS_N29,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.PAYLOAD_DLC_N29,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22041C,62041C,4ff,SECURITY_LOG_N29.PAYLOAD_VIOLATED_FRAME_N29 ,18DAF1D2,199,199,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.BUSLOAD_STATUS_N29,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.BUSLOAD_VALUE_CAN1_N29 ,18DAF1D2,208,215,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.BUSLOAD_VALUE_CAN2_N29 ,18DAF1D2,216,223,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.BUSLOAD_VALUE_CAN3_N29 ,18DAF1D2,224,231,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.BUSLOAD_VALUE_CAN4_N29 ,18DAF1D2,232,239,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.BUSLOAD_VALUE_CAN5_N29 ,18DAF1D2,240,247,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.BUSLOAD_VALUE_CAN6_N29 ,18DAF1D2,248,255,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.BUSLOAD_VALUE_CAN7_N29 ,18DAF1D2,256,263,1,0,0,,22041C,62041C,ff,SECURITY_LOG_N29.BUSLOAD_VALUE_CAN8_N29 ,18DAF1D2,24,47,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.ABOLUTE_TIME_N30 ,18DAF1D2,48,71,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.MILEAGE_N30 ,18DAF1D2,76,78,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.VIOLATION_TYPE_N30,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.SIZE_IDENTIFIER_N30,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22041D,62041D,4ff,SECURITY_LOG_N30.IDENTIFIER_VIOLATED_FRAME_N30 ,18DAF1D2,112,119,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.VIOLATED_BUS_N30,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.PAYLOAD_DLC_N30,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22041D,62041D,4ff,SECURITY_LOG_N30.PAYLOAD_VIOLATED_FRAME_N30 ,18DAF1D2,199,199,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.BUSLOAD_STATUS_N30,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.BUSLOAD_VALUE_CAN1_N30 ,18DAF1D2,208,215,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.BUSLOAD_VALUE_CAN2_N30 ,18DAF1D2,216,223,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.BUSLOAD_VALUE_CAN3_N30 ,18DAF1D2,224,231,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.BUSLOAD_VALUE_CAN4_N30 ,18DAF1D2,232,239,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.BUSLOAD_VALUE_CAN5_N30 ,18DAF1D2,240,247,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.BUSLOAD_VALUE_CAN6_N30 ,18DAF1D2,248,255,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.BUSLOAD_VALUE_CAN7_N30 ,18DAF1D2,256,263,1,0,0,,22041D,62041D,ff,SECURITY_LOG_N30.BUSLOAD_VALUE_CAN8_N30 ,18DAF1D2,24,47,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.ABOLUTE_TIME_N31 ,18DAF1D2,48,71,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.MILEAGE_N31 ,18DAF1D2,76,78,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.VIOLATION_TYPE_N31,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.SIZE_IDENTIFIER_N31,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22041E,62041E,4ff,SECURITY_LOG_N31.IDENTIFIER_VIOLATED_FRAME_N31 ,18DAF1D2,112,119,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.VIOLATED_BUS_N31,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.PAYLOAD_DLC_N31,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22041E,62041E,4ff,SECURITY_LOG_N31.PAYLOAD_VIOLATED_FRAME_N31 ,18DAF1D2,199,199,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.BUSLOAD_STATUS_N31,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.BUSLOAD_VALUE_CAN1_N31 ,18DAF1D2,208,215,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.BUSLOAD_VALUE_CAN2_N31 ,18DAF1D2,216,223,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.BUSLOAD_VALUE_CAN3_N31 ,18DAF1D2,224,231,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.BUSLOAD_VALUE_CAN4_N31 ,18DAF1D2,232,239,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.BUSLOAD_VALUE_CAN5_N31 ,18DAF1D2,240,247,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.BUSLOAD_VALUE_CAN6_N31 ,18DAF1D2,248,255,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.BUSLOAD_VALUE_CAN7_N31 ,18DAF1D2,256,263,1,0,0,,22041E,62041E,ff,SECURITY_LOG_N31.BUSLOAD_VALUE_CAN8_N31 ,18DAF1D2,24,47,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.ABOLUTE_TIME_N32 ,18DAF1D2,48,71,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.MILEAGE_N32 ,18DAF1D2,76,78,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.VIOLATION_TYPE_N32,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.SIZE_IDENTIFIER_N32,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22041F,62041F,4ff,SECURITY_LOG_N32.IDENTIFIER_VIOLATED_FRAME_N32 ,18DAF1D2,112,119,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.VIOLATED_BUS_N32,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.PAYLOAD_DLC_N32,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22041F,62041F,4ff,SECURITY_LOG_N32.PAYLOAD_VIOLATED_FRAME_N32 ,18DAF1D2,199,199,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.BUSLOAD_STATUS_N32,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.BUSLOAD_VALUE_CAN1_N32 ,18DAF1D2,208,215,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.BUSLOAD_VALUE_CAN2_N32 ,18DAF1D2,216,223,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.BUSLOAD_VALUE_CAN3_N32 ,18DAF1D2,224,231,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.BUSLOAD_VALUE_CAN4_N32 ,18DAF1D2,232,239,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.BUSLOAD_VALUE_CAN5_N32 ,18DAF1D2,240,247,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.BUSLOAD_VALUE_CAN6_N32 ,18DAF1D2,248,255,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.BUSLOAD_VALUE_CAN7_N32 ,18DAF1D2,256,263,1,0,0,,22041F,62041F,ff,SECURITY_LOG_N32.BUSLOAD_VALUE_CAN8_N32 ,18DAF1D2,24,47,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.ABOLUTE_TIME_N33 ,18DAF1D2,48,71,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.MILEAGE_N33 ,18DAF1D2,76,78,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.VIOLATION_TYPE_N33,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.SIZE_IDENTIFIER_N33,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220420,620420,4ff,SECURITY_LOG_N33.IDENTIFIER_VIOLATED_FRAME_N33 ,18DAF1D2,112,119,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.VIOLATED_BUS_N33,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.PAYLOAD_DLC_N33,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220420,620420,4ff,SECURITY_LOG_N33.PAYLOAD_VIOLATED_FRAME_N33 ,18DAF1D2,199,199,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.BUSLOAD_STATUS_N33,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.BUSLOAD_VALUE_CAN1_N33 ,18DAF1D2,208,215,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.BUSLOAD_VALUE_CAN2_N33 ,18DAF1D2,216,223,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.BUSLOAD_VALUE_CAN3_N33 ,18DAF1D2,224,231,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.BUSLOAD_VALUE_CAN4_N33 ,18DAF1D2,232,239,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.BUSLOAD_VALUE_CAN5_N33 ,18DAF1D2,240,247,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.BUSLOAD_VALUE_CAN6_N33 ,18DAF1D2,248,255,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.BUSLOAD_VALUE_CAN7_N33 ,18DAF1D2,256,263,1,0,0,,220420,620420,ff,SECURITY_LOG_N33.BUSLOAD_VALUE_CAN8_N33 ,18DAF1D2,24,47,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.ABOLUTE_TIME_N34 ,18DAF1D2,48,71,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.MILEAGE_N34 ,18DAF1D2,76,78,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.VIOLATION_TYPE_N34,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.SIZE_IDENTIFIER_N34,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220421,620421,4ff,SECURITY_LOG_N34.IDENTIFIER_VIOLATED_FRAME_N34 ,18DAF1D2,112,119,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.VIOLATED_BUS_N34,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.PAYLOAD_DLC_N34,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220421,620421,4ff,SECURITY_LOG_N34.PAYLOAD_VIOLATED_FRAME_N34 ,18DAF1D2,199,199,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.BUSLOAD_STATUS_N34,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.BUSLOAD_VALUE_CAN1_N34 ,18DAF1D2,208,215,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.BUSLOAD_VALUE_CAN2_N34 ,18DAF1D2,216,223,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.BUSLOAD_VALUE_CAN3_N34 ,18DAF1D2,224,231,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.BUSLOAD_VALUE_CAN4_N34 ,18DAF1D2,232,239,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.BUSLOAD_VALUE_CAN5_N34 ,18DAF1D2,240,247,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.BUSLOAD_VALUE_CAN6_N34 ,18DAF1D2,248,255,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.BUSLOAD_VALUE_CAN7_N34 ,18DAF1D2,256,263,1,0,0,,220421,620421,ff,SECURITY_LOG_N34.BUSLOAD_VALUE_CAN8_N34 ,18DAF1D2,24,47,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.ABOLUTE_TIME_N35 ,18DAF1D2,48,71,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.MILEAGE_N35 ,18DAF1D2,76,78,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.VIOLATION_TYPE_N35,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.SIZE_IDENTIFIER_N35,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220422,620422,4ff,SECURITY_LOG_N35.IDENTIFIER_VIOLATED_FRAME_N35 ,18DAF1D2,112,119,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.VIOLATED_BUS_N35,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.PAYLOAD_DLC_N35,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220422,620422,4ff,SECURITY_LOG_N35.PAYLOAD_VIOLATED_FRAME_N35 ,18DAF1D2,199,199,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.BUSLOAD_STATUS_N35,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.BUSLOAD_VALUE_CAN1_N35 ,18DAF1D2,208,215,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.BUSLOAD_VALUE_CAN2_N35 ,18DAF1D2,216,223,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.BUSLOAD_VALUE_CAN3_N35 ,18DAF1D2,224,231,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.BUSLOAD_VALUE_CAN4_N35 ,18DAF1D2,232,239,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.BUSLOAD_VALUE_CAN5_N35 ,18DAF1D2,240,247,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.BUSLOAD_VALUE_CAN6_N35 ,18DAF1D2,248,255,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.BUSLOAD_VALUE_CAN7_N35 ,18DAF1D2,256,263,1,0,0,,220422,620422,ff,SECURITY_LOG_N35.BUSLOAD_VALUE_CAN8_N35 ,18DAF1D2,24,47,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.ABOLUTE_TIME_N36 ,18DAF1D2,48,71,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.MILEAGE_N36 ,18DAF1D2,76,78,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.VIOLATION_TYPE_N36,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.SIZE_IDENTIFIER_N36,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220423,620423,4ff,SECURITY_LOG_N36.IDENTIFIER_VIOLATED_FRAME_N36 ,18DAF1D2,112,119,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.VIOLATED_BUS_N36,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.PAYLOAD_DLC_N36,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220423,620423,4ff,SECURITY_LOG_N36.PAYLOAD_VIOLATED_FRAME_N36 ,18DAF1D2,199,199,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.BUSLOAD_STATUS_N36,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.BUSLOAD_VALUE_CAN1_N36 ,18DAF1D2,208,215,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.BUSLOAD_VALUE_CAN2_N36 ,18DAF1D2,216,223,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.BUSLOAD_VALUE_CAN3_N36 ,18DAF1D2,224,231,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.BUSLOAD_VALUE_CAN4_N36 ,18DAF1D2,232,239,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.BUSLOAD_VALUE_CAN5_N36 ,18DAF1D2,240,247,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.BUSLOAD_VALUE_CAN6_N36 ,18DAF1D2,248,255,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.BUSLOAD_VALUE_CAN7_N36 ,18DAF1D2,256,263,1,0,0,,220423,620423,ff,SECURITY_LOG_N36.BUSLOAD_VALUE_CAN8_N36 ,18DAF1D2,24,47,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.ABOLUTE_TIME_N37 ,18DAF1D2,48,71,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.MILEAGE_N37 ,18DAF1D2,76,78,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.VIOLATION_TYPE_N37,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.SIZE_IDENTIFIER_N37,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220424,620424,4ff,SECURITY_LOG_N37.IDENTIFIER_VIOLATED_FRAME_N37 ,18DAF1D2,112,119,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.VIOLATED_BUS_N37,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.PAYLOAD_DLC_N37,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220424,620424,4ff,SECURITY_LOG_N37.PAYLOAD_VIOLATED_FRAME_N37 ,18DAF1D2,199,199,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.BUSLOAD_STATUS_N37,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.BUSLOAD_VALUE_CAN1_N37 ,18DAF1D2,208,215,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.BUSLOAD_VALUE_CAN2_N37 ,18DAF1D2,216,223,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.BUSLOAD_VALUE_CAN3_N37 ,18DAF1D2,224,231,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.BUSLOAD_VALUE_CAN4_N37 ,18DAF1D2,232,239,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.BUSLOAD_VALUE_CAN5_N37 ,18DAF1D2,240,247,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.BUSLOAD_VALUE_CAN6_N37 ,18DAF1D2,248,255,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.BUSLOAD_VALUE_CAN7_N37 ,18DAF1D2,256,263,1,0,0,,220424,620424,ff,SECURITY_LOG_N37.BUSLOAD_VALUE_CAN8_N37 ,18DAF1D2,24,47,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.ABOLUTE_TIME_N38 ,18DAF1D2,48,71,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.MILEAGE_N38 ,18DAF1D2,76,78,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.VIOLATION_TYPE_N38,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.SIZE_IDENTIFIER_N38,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220425,620425,4ff,SECURITY_LOG_N38.IDENTIFIER_VIOLATED_FRAME_N38 ,18DAF1D2,112,119,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.VIOLATED_BUS_N38,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.PAYLOAD_DLC_N38,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220425,620425,4ff,SECURITY_LOG_N38.PAYLOAD_VIOLATED_FRAME_N38 ,18DAF1D2,199,199,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.BUSLOAD_STATUS_N38,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.BUSLOAD_VALUE_CAN1_N38 ,18DAF1D2,208,215,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.BUSLOAD_VALUE_CAN2_N38 ,18DAF1D2,216,223,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.BUSLOAD_VALUE_CAN3_N38 ,18DAF1D2,224,231,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.BUSLOAD_VALUE_CAN4_N38 ,18DAF1D2,232,239,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.BUSLOAD_VALUE_CAN5_N38 ,18DAF1D2,240,247,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.BUSLOAD_VALUE_CAN6_N38 ,18DAF1D2,248,255,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.BUSLOAD_VALUE_CAN7_N38 ,18DAF1D2,256,263,1,0,0,,220425,620425,ff,SECURITY_LOG_N38.BUSLOAD_VALUE_CAN8_N38 ,18DAF1D2,24,47,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.ABOLUTE_TIME_N39 ,18DAF1D2,48,71,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.MILEAGE_N39 ,18DAF1D2,76,78,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.VIOLATION_TYPE_N39,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.SIZE_IDENTIFIER_N39,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220426,620426,4ff,SECURITY_LOG_N39.IDENTIFIER_VIOLATED_FRAME_N39 ,18DAF1D2,112,119,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.VIOLATED_BUS_N39,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.PAYLOAD_DLC_N39,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220426,620426,4ff,SECURITY_LOG_N39.PAYLOAD_VIOLATED_FRAME_N39 ,18DAF1D2,199,199,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.BUSLOAD_STATUS_N39,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.BUSLOAD_VALUE_CAN1_N39 ,18DAF1D2,208,215,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.BUSLOAD_VALUE_CAN2_N39 ,18DAF1D2,216,223,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.BUSLOAD_VALUE_CAN3_N39 ,18DAF1D2,224,231,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.BUSLOAD_VALUE_CAN4_N39 ,18DAF1D2,232,239,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.BUSLOAD_VALUE_CAN5_N39 ,18DAF1D2,240,247,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.BUSLOAD_VALUE_CAN6_N39 ,18DAF1D2,248,255,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.BUSLOAD_VALUE_CAN7_N39 ,18DAF1D2,256,263,1,0,0,,220426,620426,ff,SECURITY_LOG_N39.BUSLOAD_VALUE_CAN8_N39 ,18DAF1D2,24,47,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.ABOLUTE_TIME_N40 ,18DAF1D2,48,71,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.MILEAGE_N40 ,18DAF1D2,76,78,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.VIOLATION_TYPE_N40,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.SIZE_IDENTIFIER_N40,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220427,620427,4ff,SECURITY_LOG_N40.IDENTIFIER_VIOLATED_FRAME_N40 ,18DAF1D2,112,119,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.VIOLATED_BUS_N40,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.PAYLOAD_DLC_N40,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220427,620427,4ff,SECURITY_LOG_N40.PAYLOAD_VIOLATED_FRAME_N40 ,18DAF1D2,199,199,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.BUSLOAD_STATUS_N40,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.BUSLOAD_VALUE_CAN1_N40 ,18DAF1D2,208,215,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.BUSLOAD_VALUE_CAN2_N40 ,18DAF1D2,216,223,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.BUSLOAD_VALUE_CAN3_N40 ,18DAF1D2,224,231,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.BUSLOAD_VALUE_CAN4_N40 ,18DAF1D2,232,239,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.BUSLOAD_VALUE_CAN5_N40 ,18DAF1D2,240,247,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.BUSLOAD_VALUE_CAN6_N40 ,18DAF1D2,248,255,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.BUSLOAD_VALUE_CAN7_N40 ,18DAF1D2,256,263,1,0,0,,220427,620427,ff,SECURITY_LOG_N40.BUSLOAD_VALUE_CAN8_N40 ,18DAF1D2,24,47,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.ABOLUTE_TIME_N41 ,18DAF1D2,48,71,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.MILEAGE_N41 ,18DAF1D2,76,78,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.VIOLATION_TYPE_N41,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.SIZE_IDENTIFIER_N41,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220428,620428,4ff,SECURITY_LOG_N41.IDENTIFIER_VIOLATED_FRAME_N41 ,18DAF1D2,112,119,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.VIOLATED_BUS_N41,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.PAYLOAD_DLC_N41,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220428,620428,4ff,SECURITY_LOG_N41.PAYLOAD_VIOLATED_FRAME_N41 ,18DAF1D2,199,199,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.BUSLOAD_STATUS_N41,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.BUSLOAD_VALUE_CAN1_N41 ,18DAF1D2,208,215,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.BUSLOAD_VALUE_CAN2_N41 ,18DAF1D2,216,223,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.BUSLOAD_VALUE_CAN3_N41 ,18DAF1D2,224,231,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.BUSLOAD_VALUE_CAN4_N41 ,18DAF1D2,232,239,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.BUSLOAD_VALUE_CAN5_N41 ,18DAF1D2,240,247,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.BUSLOAD_VALUE_CAN6_N41 ,18DAF1D2,248,255,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.BUSLOAD_VALUE_CAN7_N41 ,18DAF1D2,256,263,1,0,0,,220428,620428,ff,SECURITY_LOG_N41.BUSLOAD_VALUE_CAN8_N41 ,18DAF1D2,24,47,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.ABOLUTE_TIME_N42 ,18DAF1D2,48,71,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.MILEAGE_N42 ,18DAF1D2,76,78,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.VIOLATION_TYPE_N42,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.SIZE_IDENTIFIER_N42,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220429,620429,4ff,SECURITY_LOG_N42.IDENTIFIER_VIOLATED_FRAME_N42 ,18DAF1D2,112,119,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.VIOLATED_BUS_N42,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.PAYLOAD_DLC_N42,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220429,620429,4ff,SECURITY_LOG_N42.PAYLOAD_VIOLATED_FRAME_N42 ,18DAF1D2,199,199,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.BUSLOAD_STATUS_N42,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.BUSLOAD_VALUE_CAN1_N42 ,18DAF1D2,208,215,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.BUSLOAD_VALUE_CAN2_N42 ,18DAF1D2,216,223,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.BUSLOAD_VALUE_CAN3_N42 ,18DAF1D2,224,231,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.BUSLOAD_VALUE_CAN4_N42 ,18DAF1D2,232,239,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.BUSLOAD_VALUE_CAN5_N42 ,18DAF1D2,240,247,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.BUSLOAD_VALUE_CAN6_N42 ,18DAF1D2,248,255,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.BUSLOAD_VALUE_CAN7_N42 ,18DAF1D2,256,263,1,0,0,,220429,620429,ff,SECURITY_LOG_N42.BUSLOAD_VALUE_CAN8_N42 ,18DAF1D2,24,47,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.ABOLUTE_TIME_N43 ,18DAF1D2,48,71,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.MILEAGE_N43 ,18DAF1D2,76,78,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.VIOLATION_TYPE_N43,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.SIZE_IDENTIFIER_N43,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22042A,62042A,4ff,SECURITY_LOG_N43.IDENTIFIER_VIOLATED_FRAME_N43 ,18DAF1D2,112,119,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.VIOLATED_BUS_N43,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.PAYLOAD_DLC_N43,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22042A,62042A,4ff,SECURITY_LOG_N43.PAYLOAD_VIOLATED_FRAME_N43 ,18DAF1D2,199,199,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.BUSLOAD_STATUS_N43,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.BUSLOAD_VALUE_CAN1_N43 ,18DAF1D2,208,215,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.BUSLOAD_VALUE_CAN2_N43 ,18DAF1D2,216,223,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.BUSLOAD_VALUE_CAN3_N43 ,18DAF1D2,224,231,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.BUSLOAD_VALUE_CAN4_N43 ,18DAF1D2,232,239,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.BUSLOAD_VALUE_CAN5_N43 ,18DAF1D2,240,247,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.BUSLOAD_VALUE_CAN6_N43 ,18DAF1D2,248,255,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.BUSLOAD_VALUE_CAN7_N43 ,18DAF1D2,256,263,1,0,0,,22042A,62042A,ff,SECURITY_LOG_N43.BUSLOAD_VALUE_CAN8_N43 ,18DAF1D2,24,47,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.ABOLUTE_TIME_N44 ,18DAF1D2,48,71,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.MILEAGE_N44 ,18DAF1D2,76,78,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.VIOLATION_TYPE_N44,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.SIZE_IDENTIFIER_N44,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22042B,62042B,4ff,SECURITY_LOG_N44.IDENTIFIER_VIOLATED_FRAME_N44 ,18DAF1D2,112,119,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.VIOLATED_BUS_N44,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.PAYLOAD_DLC_N44,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22042B,62042B,4ff,SECURITY_LOG_N44.PAYLOAD_VIOLATED_FRAME_N44 ,18DAF1D2,199,199,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.BUSLOAD_STATUS_N44,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.BUSLOAD_VALUE_CAN1_N44 ,18DAF1D2,208,215,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.BUSLOAD_VALUE_CAN2_N44 ,18DAF1D2,216,223,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.BUSLOAD_VALUE_CAN3_N44 ,18DAF1D2,224,231,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.BUSLOAD_VALUE_CAN4_N44 ,18DAF1D2,232,239,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.BUSLOAD_VALUE_CAN5_N44 ,18DAF1D2,240,247,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.BUSLOAD_VALUE_CAN6_N44 ,18DAF1D2,248,255,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.BUSLOAD_VALUE_CAN7_N44 ,18DAF1D2,256,263,1,0,0,,22042B,62042B,ff,SECURITY_LOG_N44.BUSLOAD_VALUE_CAN8_N44 ,18DAF1D2,24,47,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.ABOLUTE_TIME_N45 ,18DAF1D2,48,71,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.MILEAGE_N45 ,18DAF1D2,76,78,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.VIOLATION_TYPE_N45,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.SIZE_IDENTIFIER_N45,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22042C,62042C,4ff,SECURITY_LOG_N45.IDENTIFIER_VIOLATED_FRAME_N45 ,18DAF1D2,112,119,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.VIOLATED_BUS_N45,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.PAYLOAD_DLC_N45,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22042C,62042C,4ff,SECURITY_LOG_N45.PAYLOAD_VIOLATED_FRAME_N45 ,18DAF1D2,199,199,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.BUSLOAD_STATUS_N45,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.BUSLOAD_VALUE_CAN1_N45 ,18DAF1D2,208,215,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.BUSLOAD_VALUE_CAN2_N45 ,18DAF1D2,216,223,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.BUSLOAD_VALUE_CAN3_N45 ,18DAF1D2,224,231,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.BUSLOAD_VALUE_CAN4_N45 ,18DAF1D2,232,239,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.BUSLOAD_VALUE_CAN5_N45 ,18DAF1D2,240,247,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.BUSLOAD_VALUE_CAN6_N45 ,18DAF1D2,248,255,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.BUSLOAD_VALUE_CAN7_N45 ,18DAF1D2,256,263,1,0,0,,22042C,62042C,ff,SECURITY_LOG_N45.BUSLOAD_VALUE_CAN8_N45 ,18DAF1D2,24,47,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.ABOLUTE_TIME_N46 ,18DAF1D2,48,71,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.MILEAGE_N46 ,18DAF1D2,76,78,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.VIOLATION_TYPE_N46,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.SIZE_IDENTIFIER_N46,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22042D,62042D,4ff,SECURITY_LOG_N46.IDENTIFIER_VIOLATED_FRAME_N46 ,18DAF1D2,112,119,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.VIOLATED_BUS_N46,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.PAYLOAD_DLC_N46,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22042D,62042D,4ff,SECURITY_LOG_N46.PAYLOAD_VIOLATED_FRAME_N46 ,18DAF1D2,199,199,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.BUSLOAD_STATUS_N46,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.BUSLOAD_VALUE_CAN1_N46 ,18DAF1D2,208,215,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.BUSLOAD_VALUE_CAN2_N46 ,18DAF1D2,216,223,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.BUSLOAD_VALUE_CAN3_N46 ,18DAF1D2,224,231,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.BUSLOAD_VALUE_CAN4_N46 ,18DAF1D2,232,239,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.BUSLOAD_VALUE_CAN5_N46 ,18DAF1D2,240,247,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.BUSLOAD_VALUE_CAN6_N46 ,18DAF1D2,248,255,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.BUSLOAD_VALUE_CAN7_N46 ,18DAF1D2,256,263,1,0,0,,22042D,62042D,ff,SECURITY_LOG_N46.BUSLOAD_VALUE_CAN8_N46 ,18DAF1D2,24,47,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.ABOLUTE_TIME_N47 ,18DAF1D2,48,71,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.MILEAGE_N47 ,18DAF1D2,76,78,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.VIOLATION_TYPE_N47,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.SIZE_IDENTIFIER_N47,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22042E,62042E,4ff,SECURITY_LOG_N47.IDENTIFIER_VIOLATED_FRAME_N47 ,18DAF1D2,112,119,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.VIOLATED_BUS_N47,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.PAYLOAD_DLC_N47,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22042E,62042E,4ff,SECURITY_LOG_N47.PAYLOAD_VIOLATED_FRAME_N47 ,18DAF1D2,199,199,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.BUSLOAD_STATUS_N47,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.BUSLOAD_VALUE_CAN1_N47 ,18DAF1D2,208,215,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.BUSLOAD_VALUE_CAN2_N47 ,18DAF1D2,216,223,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.BUSLOAD_VALUE_CAN3_N47 ,18DAF1D2,224,231,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.BUSLOAD_VALUE_CAN4_N47 ,18DAF1D2,232,239,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.BUSLOAD_VALUE_CAN5_N47 ,18DAF1D2,240,247,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.BUSLOAD_VALUE_CAN6_N47 ,18DAF1D2,248,255,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.BUSLOAD_VALUE_CAN7_N47 ,18DAF1D2,256,263,1,0,0,,22042E,62042E,ff,SECURITY_LOG_N47.BUSLOAD_VALUE_CAN8_N47 ,18DAF1D2,24,47,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.ABOLUTE_TIME_N48 ,18DAF1D2,48,71,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.MILEAGE_N48 ,18DAF1D2,76,78,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.VIOLATION_TYPE_N48,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.SIZE_IDENTIFIER_N48,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22042F,62042F,4ff,SECURITY_LOG_N48.IDENTIFIER_VIOLATED_FRAME_N48 ,18DAF1D2,112,119,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.VIOLATED_BUS_N48,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.PAYLOAD_DLC_N48,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22042F,62042F,4ff,SECURITY_LOG_N48.PAYLOAD_VIOLATED_FRAME_N48 ,18DAF1D2,199,199,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.BUSLOAD_STATUS_N48,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.BUSLOAD_VALUE_CAN1_N48 ,18DAF1D2,208,215,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.BUSLOAD_VALUE_CAN2_N48 ,18DAF1D2,216,223,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.BUSLOAD_VALUE_CAN3_N48 ,18DAF1D2,224,231,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.BUSLOAD_VALUE_CAN4_N48 ,18DAF1D2,232,239,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.BUSLOAD_VALUE_CAN5_N48 ,18DAF1D2,240,247,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.BUSLOAD_VALUE_CAN6_N48 ,18DAF1D2,248,255,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.BUSLOAD_VALUE_CAN7_N48 ,18DAF1D2,256,263,1,0,0,,22042F,62042F,ff,SECURITY_LOG_N48.BUSLOAD_VALUE_CAN8_N48 ,18DAF1D2,24,47,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.ABOLUTE_TIME_N49 ,18DAF1D2,48,71,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.MILEAGE_N49 ,18DAF1D2,76,78,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.VIOLATION_TYPE_N49,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.SIZE_IDENTIFIER_N49,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220430,620430,4ff,SECURITY_LOG_N49.IDENTIFIER_VIOLATED_FRAME_N49 ,18DAF1D2,112,119,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.VIOLATED_BUS_N49,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.PAYLOAD_DLC_N49,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220430,620430,4ff,SECURITY_LOG_N49.PAYLOAD_VIOLATED_FRAME_N49 ,18DAF1D2,199,199,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.BUSLOAD_STATUS_N49,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.BUSLOAD_VALUE_CAN1_N49 ,18DAF1D2,208,215,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.BUSLOAD_VALUE_CAN2_N49 ,18DAF1D2,216,223,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.BUSLOAD_VALUE_CAN3_N49 ,18DAF1D2,224,231,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.BUSLOAD_VALUE_CAN4_N49 ,18DAF1D2,232,239,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.BUSLOAD_VALUE_CAN5_N49 ,18DAF1D2,240,247,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.BUSLOAD_VALUE_CAN6_N49 ,18DAF1D2,248,255,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.BUSLOAD_VALUE_CAN7_N49 ,18DAF1D2,256,263,1,0,0,,220430,620430,ff,SECURITY_LOG_N49.BUSLOAD_VALUE_CAN8_N49 ,18DAF1D2,24,47,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.ABOLUTE_TIME_N50 ,18DAF1D2,48,71,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.MILEAGE_N50 ,18DAF1D2,76,78,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.VIOLATION_TYPE_N50,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.SIZE_IDENTIFIER_N50,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220431,620431,4ff,SECURITY_LOG_N50.IDENTIFIER_VIOLATED_FRAME_N50 ,18DAF1D2,112,119,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.VIOLATED_BUS_N50,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.PAYLOAD_DLC_N50,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220431,620431,4ff,SECURITY_LOG_N50.PAYLOAD_VIOLATED_FRAME_N50 ,18DAF1D2,199,199,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.BUSLOAD_STATUS_N50,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.BUSLOAD_VALUE_CAN1_N50 ,18DAF1D2,208,215,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.BUSLOAD_VALUE_CAN2_N50 ,18DAF1D2,216,223,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.BUSLOAD_VALUE_CAN3_N50 ,18DAF1D2,224,231,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.BUSLOAD_VALUE_CAN4_N50 ,18DAF1D2,232,239,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.BUSLOAD_VALUE_CAN5_N50 ,18DAF1D2,240,247,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.BUSLOAD_VALUE_CAN6_N50 ,18DAF1D2,248,255,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.BUSLOAD_VALUE_CAN7_N50 ,18DAF1D2,256,263,1,0,0,,220431,620431,ff,SECURITY_LOG_N50.BUSLOAD_VALUE_CAN8_N50 ,18DAF1D2,24,47,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.ABOLUTE_TIME_N51 ,18DAF1D2,48,71,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.MILEAGE_N51 ,18DAF1D2,76,78,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.VIOLATION_TYPE_N51,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.SIZE_IDENTIFIER_N51,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220432,620432,4ff,SECURITY_LOG_N51.IDENTIFIER_VIOLATED_FRAME_N51 ,18DAF1D2,112,119,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.VIOLATED_BUS_N51,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.PAYLOAD_DLC_N51,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220432,620432,4ff,SECURITY_LOG_N51.PAYLOAD_VIOLATED_FRAME_N51 ,18DAF1D2,199,199,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.BUSLOAD_STATUS_N51,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.BUSLOAD_VALUE_CAN1_N51 ,18DAF1D2,208,215,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.BUSLOAD_VALUE_CAN2_N51 ,18DAF1D2,216,223,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.BUSLOAD_VALUE_CAN3_N51 ,18DAF1D2,224,231,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.BUSLOAD_VALUE_CAN4_N51 ,18DAF1D2,232,239,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.BUSLOAD_VALUE_CAN5_N51 ,18DAF1D2,240,247,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.BUSLOAD_VALUE_CAN6_N51 ,18DAF1D2,248,255,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.BUSLOAD_VALUE_CAN7_N51 ,18DAF1D2,256,263,1,0,0,,220432,620432,ff,SECURITY_LOG_N51.BUSLOAD_VALUE_CAN8_N51 ,18DAF1D2,24,47,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.ABOLUTE_TIME_N52 ,18DAF1D2,48,71,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.MILEAGE_N52 ,18DAF1D2,76,78,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.VIOLATION_TYPE_N52,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.SIZE_IDENTIFIER_N52,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220433,620433,4ff,SECURITY_LOG_N52.IDENTIFIER_VIOLATED_FRAME_N52 ,18DAF1D2,112,119,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.VIOLATED_BUS_N52,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.PAYLOAD_DLC_N52,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220433,620433,4ff,SECURITY_LOG_N52.PAYLOAD_VIOLATED_FRAME_N52 ,18DAF1D2,199,199,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.BUSLOAD_STATUS_N52,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.BUSLOAD_VALUE_CAN1_N52 ,18DAF1D2,208,215,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.BUSLOAD_VALUE_CAN2_N52 ,18DAF1D2,216,223,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.BUSLOAD_VALUE_CAN3_N52 ,18DAF1D2,224,231,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.BUSLOAD_VALUE_CAN4_N52 ,18DAF1D2,232,239,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.BUSLOAD_VALUE_CAN5_N52 ,18DAF1D2,240,247,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.BUSLOAD_VALUE_CAN6_N52 ,18DAF1D2,248,255,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.BUSLOAD_VALUE_CAN7_N52 ,18DAF1D2,256,263,1,0,0,,220433,620433,ff,SECURITY_LOG_N52.BUSLOAD_VALUE_CAN8_N52 ,18DAF1D2,24,47,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.ABOLUTE_TIME_N53 ,18DAF1D2,48,71,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.MILEAGE_N53 ,18DAF1D2,76,78,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.VIOLATION_TYPE_N53,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.SIZE_IDENTIFIER_N53,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220434,620434,4ff,SECURITY_LOG_N53.IDENTIFIER_VIOLATED_FRAME_N53 ,18DAF1D2,112,119,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.VIOLATED_BUS_N53,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.PAYLOAD_DLC_N53,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220434,620434,4ff,SECURITY_LOG_N53.PAYLOAD_VIOLATED_FRAME_N53 ,18DAF1D2,199,199,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.BUSLOAD_STATUS_N53,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.BUSLOAD_VALUE_CAN1_N53 ,18DAF1D2,208,215,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.BUSLOAD_VALUE_CAN2_N53 ,18DAF1D2,216,223,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.BUSLOAD_VALUE_CAN3_N53 ,18DAF1D2,224,231,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.BUSLOAD_VALUE_CAN4_N53 ,18DAF1D2,232,239,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.BUSLOAD_VALUE_CAN5_N53 ,18DAF1D2,240,247,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.BUSLOAD_VALUE_CAN6_N53 ,18DAF1D2,248,255,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.BUSLOAD_VALUE_CAN7_N53 ,18DAF1D2,256,263,1,0,0,,220434,620434,ff,SECURITY_LOG_N53.BUSLOAD_VALUE_CAN8_N53 ,18DAF1D2,24,47,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.ABOLUTE_TIME_N54 ,18DAF1D2,48,71,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.MILEAGE_N54 ,18DAF1D2,76,78,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.VIOLATION_TYPE_N54,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.SIZE_IDENTIFIER_N54,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220435,620435,4ff,SECURITY_LOG_N54.IDENTIFIER_VIOLATED_FRAME_N54 ,18DAF1D2,112,119,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.VIOLATED_BUS_N54,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.PAYLOAD_DLC_N54,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220435,620435,4ff,SECURITY_LOG_N54.PAYLOAD_VIOLATED_FRAME_N54 ,18DAF1D2,199,199,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.BUSLOAD_STATUS_N54,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.BUSLOAD_VALUE_CAN1_N54 ,18DAF1D2,208,215,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.BUSLOAD_VALUE_CAN2_N54 ,18DAF1D2,216,223,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.BUSLOAD_VALUE_CAN3_N54 ,18DAF1D2,224,231,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.BUSLOAD_VALUE_CAN4_N54 ,18DAF1D2,232,239,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.BUSLOAD_VALUE_CAN5_N54 ,18DAF1D2,240,247,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.BUSLOAD_VALUE_CAN6_N54 ,18DAF1D2,248,255,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.BUSLOAD_VALUE_CAN7_N54 ,18DAF1D2,256,263,1,0,0,,220435,620435,ff,SECURITY_LOG_N54.BUSLOAD_VALUE_CAN8_N54 ,18DAF1D2,24,47,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.ABOLUTE_TIME_N55 ,18DAF1D2,48,71,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.MILEAGE_N55 ,18DAF1D2,76,78,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.VIOLATION_TYPE_N55,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.SIZE_IDENTIFIER_N55,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220436,620436,4ff,SECURITY_LOG_N55.IDENTIFIER_VIOLATED_FRAME_N55 ,18DAF1D2,112,119,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.VIOLATED_BUS_N55,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.PAYLOAD_DLC_N55,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220436,620436,4ff,SECURITY_LOG_N55.PAYLOAD_VIOLATED_FRAME_N55 ,18DAF1D2,199,199,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.BUSLOAD_STATUS_N55,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.BUSLOAD_VALUE_CAN1_N55 ,18DAF1D2,208,215,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.BUSLOAD_VALUE_CAN2_N55 ,18DAF1D2,216,223,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.BUSLOAD_VALUE_CAN3_N55 ,18DAF1D2,224,231,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.BUSLOAD_VALUE_CAN4_N55 ,18DAF1D2,232,239,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.BUSLOAD_VALUE_CAN5_N55 ,18DAF1D2,240,247,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.BUSLOAD_VALUE_CAN6_N55 ,18DAF1D2,248,255,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.BUSLOAD_VALUE_CAN7_N55 ,18DAF1D2,256,263,1,0,0,,220436,620436,ff,SECURITY_LOG_N55.BUSLOAD_VALUE_CAN8_N55 ,18DAF1D2,24,47,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.ABOLUTE_TIME_N56 ,18DAF1D2,48,71,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.MILEAGE_N56 ,18DAF1D2,76,78,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.VIOLATION_TYPE_N56,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.SIZE_IDENTIFIER_N56,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220437,620437,4ff,SECURITY_LOG_N56.IDENTIFIER_VIOLATED_FRAME_N56 ,18DAF1D2,112,119,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.VIOLATED_BUS_N56,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.PAYLOAD_DLC_N56,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220437,620437,4ff,SECURITY_LOG_N56.PAYLOAD_VIOLATED_FRAME_N56 ,18DAF1D2,199,199,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.BUSLOAD_STATUS_N56,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.BUSLOAD_VALUE_CAN1_N56 ,18DAF1D2,208,215,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.BUSLOAD_VALUE_CAN2_N56 ,18DAF1D2,216,223,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.BUSLOAD_VALUE_CAN3_N56 ,18DAF1D2,224,231,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.BUSLOAD_VALUE_CAN4_N56 ,18DAF1D2,232,239,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.BUSLOAD_VALUE_CAN5_N56 ,18DAF1D2,240,247,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.BUSLOAD_VALUE_CAN6_N56 ,18DAF1D2,248,255,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.BUSLOAD_VALUE_CAN7_N56 ,18DAF1D2,256,263,1,0,0,,220437,620437,ff,SECURITY_LOG_N56.BUSLOAD_VALUE_CAN8_N56 ,18DAF1D2,24,47,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.ABOLUTE_TIME_N57 ,18DAF1D2,48,71,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.MILEAGE_N57 ,18DAF1D2,76,78,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.VIOLATION_TYPE_N57,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.SIZE_IDENTIFIER_N57,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220438,620438,4ff,SECURITY_LOG_N57.IDENTIFIER_VIOLATED_FRAME_N57 ,18DAF1D2,112,119,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.VIOLATED_BUS_N57,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.PAYLOAD_DLC_N57,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220438,620438,4ff,SECURITY_LOG_N57.PAYLOAD_VIOLATED_FRAME_N57 ,18DAF1D2,199,199,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.BUSLOAD_STATUS_N57,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.BUSLOAD_VALUE_CAN1_N57 ,18DAF1D2,208,215,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.BUSLOAD_VALUE_CAN2_N57 ,18DAF1D2,216,223,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.BUSLOAD_VALUE_CAN3_N57 ,18DAF1D2,224,231,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.BUSLOAD_VALUE_CAN4_N57 ,18DAF1D2,232,239,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.BUSLOAD_VALUE_CAN5_N57 ,18DAF1D2,240,247,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.BUSLOAD_VALUE_CAN6_N57 ,18DAF1D2,248,255,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.BUSLOAD_VALUE_CAN7_N57 ,18DAF1D2,256,263,1,0,0,,220438,620438,ff,SECURITY_LOG_N57.BUSLOAD_VALUE_CAN8_N57 ,18DAF1D2,24,47,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.ABOLUTE_TIME_N58 ,18DAF1D2,48,71,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.MILEAGE_N58 ,18DAF1D2,76,78,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.VIOLATION_TYPE_N58,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.SIZE_IDENTIFIER_N58,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220439,620439,4ff,SECURITY_LOG_N58.IDENTIFIER_VIOLATED_FRAME_N58 ,18DAF1D2,112,119,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.VIOLATED_BUS_N58,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.PAYLOAD_DLC_N58,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220439,620439,4ff,SECURITY_LOG_N58.PAYLOAD_VIOLATED_FRAME_N58 ,18DAF1D2,199,199,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.BUSLOAD_STATUS_N58,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.BUSLOAD_VALUE_CAN1_N58 ,18DAF1D2,208,215,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.BUSLOAD_VALUE_CAN2_N58 ,18DAF1D2,216,223,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.BUSLOAD_VALUE_CAN3_N58 ,18DAF1D2,224,231,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.BUSLOAD_VALUE_CAN4_N58 ,18DAF1D2,232,239,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.BUSLOAD_VALUE_CAN5_N58 ,18DAF1D2,240,247,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.BUSLOAD_VALUE_CAN6_N58 ,18DAF1D2,248,255,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.BUSLOAD_VALUE_CAN7_N58 ,18DAF1D2,256,263,1,0,0,,220439,620439,ff,SECURITY_LOG_N58.BUSLOAD_VALUE_CAN8_N58 ,18DAF1D2,24,47,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.ABOLUTE_TIME_N59 ,18DAF1D2,48,71,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.MILEAGE_N59 ,18DAF1D2,76,78,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.VIOLATION_TYPE_N59,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.SIZE_IDENTIFIER_N59,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22043A,62043A,4ff,SECURITY_LOG_N59.IDENTIFIER_VIOLATED_FRAME_N59 ,18DAF1D2,112,119,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.VIOLATED_BUS_N59,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.PAYLOAD_DLC_N59,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22043A,62043A,4ff,SECURITY_LOG_N59.PAYLOAD_VIOLATED_FRAME_N59 ,18DAF1D2,199,199,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.BUSLOAD_STATUS_N59,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.BUSLOAD_VALUE_CAN1_N59 ,18DAF1D2,208,215,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.BUSLOAD_VALUE_CAN2_N59 ,18DAF1D2,216,223,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.BUSLOAD_VALUE_CAN3_N59 ,18DAF1D2,224,231,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.BUSLOAD_VALUE_CAN4_N59 ,18DAF1D2,232,239,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.BUSLOAD_VALUE_CAN5_N59 ,18DAF1D2,240,247,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.BUSLOAD_VALUE_CAN6_N59 ,18DAF1D2,248,255,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.BUSLOAD_VALUE_CAN7_N59 ,18DAF1D2,256,263,1,0,0,,22043A,62043A,ff,SECURITY_LOG_N59.BUSLOAD_VALUE_CAN8_N59 ,18DAF1D2,24,47,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.ABOLUTE_TIME_N60 ,18DAF1D2,48,71,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.MILEAGE_N60 ,18DAF1D2,76,78,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.VIOLATION_TYPE_N60,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.SIZE_IDENTIFIER_N60,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22043B,62043B,4ff,SECURITY_LOG_N60.IDENTIFIER_VIOLATED_FRAME_N60 ,18DAF1D2,112,119,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.VIOLATED_BUS_N60,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.PAYLOAD_DLC_N60,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22043B,62043B,4ff,SECURITY_LOG_N60.PAYLOAD_VIOLATED_FRAME_N60 ,18DAF1D2,199,199,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.BUSLOAD_STATUS_N60,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.BUSLOAD_VALUE_CAN1_N60 ,18DAF1D2,208,215,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.BUSLOAD_VALUE_CAN2_N60 ,18DAF1D2,216,223,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.BUSLOAD_VALUE_CAN3_N60 ,18DAF1D2,224,231,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.BUSLOAD_VALUE_CAN4_N60 ,18DAF1D2,232,239,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.BUSLOAD_VALUE_CAN5_N60 ,18DAF1D2,240,247,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.BUSLOAD_VALUE_CAN6_N60 ,18DAF1D2,248,255,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.BUSLOAD_VALUE_CAN7_N60 ,18DAF1D2,256,263,1,0,0,,22043B,62043B,ff,SECURITY_LOG_N60.BUSLOAD_VALUE_CAN8_N60 ,18DAF1D2,24,47,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.ABOLUTE_TIME_N61 ,18DAF1D2,48,71,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.MILEAGE_N61 ,18DAF1D2,76,78,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.VIOLATION_TYPE_N61,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.SIZE_IDENTIFIER_N61,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22043C,62043C,4ff,SECURITY_LOG_N61.IDENTIFIER_VIOLATED_FRAME_N61 ,18DAF1D2,112,119,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.VIOLATED_BUS_N61,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.PAYLOAD_DLC_N61,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22043C,62043C,4ff,SECURITY_LOG_N61.PAYLOAD_VIOLATED_FRAME_N61 ,18DAF1D2,199,199,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.BUSLOAD_STATUS_N61,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.BUSLOAD_VALUE_CAN1_N61 ,18DAF1D2,208,215,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.BUSLOAD_VALUE_CAN2_N61 ,18DAF1D2,216,223,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.BUSLOAD_VALUE_CAN3_N61 ,18DAF1D2,224,231,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.BUSLOAD_VALUE_CAN4_N61 ,18DAF1D2,232,239,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.BUSLOAD_VALUE_CAN5_N61 ,18DAF1D2,240,247,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.BUSLOAD_VALUE_CAN6_N61 ,18DAF1D2,248,255,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.BUSLOAD_VALUE_CAN7_N61 ,18DAF1D2,256,263,1,0,0,,22043C,62043C,ff,SECURITY_LOG_N61.BUSLOAD_VALUE_CAN8_N61 ,18DAF1D2,24,47,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.ABOLUTE_TIME_N62 ,18DAF1D2,48,71,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.MILEAGE_N62 ,18DAF1D2,76,78,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.VIOLATION_TYPE_N62,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.SIZE_IDENTIFIER_N62,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22043D,62043D,4ff,SECURITY_LOG_N62.IDENTIFIER_VIOLATED_FRAME_N62 ,18DAF1D2,112,119,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.VIOLATED_BUS_N62,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.PAYLOAD_DLC_N62,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22043D,62043D,4ff,SECURITY_LOG_N62.PAYLOAD_VIOLATED_FRAME_N62 ,18DAF1D2,199,199,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.BUSLOAD_STATUS_N62,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.BUSLOAD_VALUE_CAN1_N62 ,18DAF1D2,208,215,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.BUSLOAD_VALUE_CAN2_N62 ,18DAF1D2,216,223,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.BUSLOAD_VALUE_CAN3_N62 ,18DAF1D2,224,231,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.BUSLOAD_VALUE_CAN4_N62 ,18DAF1D2,232,239,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.BUSLOAD_VALUE_CAN5_N62 ,18DAF1D2,240,247,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.BUSLOAD_VALUE_CAN6_N62 ,18DAF1D2,248,255,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.BUSLOAD_VALUE_CAN7_N62 ,18DAF1D2,256,263,1,0,0,,22043D,62043D,ff,SECURITY_LOG_N62.BUSLOAD_VALUE_CAN8_N62 ,18DAF1D2,24,47,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.ABOLUTE_TIME_N63 ,18DAF1D2,48,71,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.MILEAGE_N63 ,18DAF1D2,76,78,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.VIOLATION_TYPE_N63,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.SIZE_IDENTIFIER_N63,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22043E,62043E,4ff,SECURITY_LOG_N63.IDENTIFIER_VIOLATED_FRAME_N63 ,18DAF1D2,112,119,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.VIOLATED_BUS_N63,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.PAYLOAD_DLC_N63,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22043E,62043E,4ff,SECURITY_LOG_N63.PAYLOAD_VIOLATED_FRAME_N63 ,18DAF1D2,199,199,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.BUSLOAD_STATUS_N63,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.BUSLOAD_VALUE_CAN1_N63 ,18DAF1D2,208,215,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.BUSLOAD_VALUE_CAN2_N63 ,18DAF1D2,216,223,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.BUSLOAD_VALUE_CAN3_N63 ,18DAF1D2,224,231,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.BUSLOAD_VALUE_CAN4_N63 ,18DAF1D2,232,239,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.BUSLOAD_VALUE_CAN5_N63 ,18DAF1D2,240,247,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.BUSLOAD_VALUE_CAN6_N63 ,18DAF1D2,248,255,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.BUSLOAD_VALUE_CAN7_N63 ,18DAF1D2,256,263,1,0,0,,22043E,62043E,ff,SECURITY_LOG_N63.BUSLOAD_VALUE_CAN8_N63 ,18DAF1D2,24,47,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.ABOLUTE_TIME_N64 ,18DAF1D2,48,71,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.MILEAGE_N64 ,18DAF1D2,76,78,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.VIOLATION_TYPE_N64,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.SIZE_IDENTIFIER_N64,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22043F,62043F,4ff,SECURITY_LOG_N64.IDENTIFIER_VIOLATED_FRAME_N64 ,18DAF1D2,112,119,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.VIOLATED_BUS_N64,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.PAYLOAD_DLC_N64,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22043F,62043F,4ff,SECURITY_LOG_N64.PAYLOAD_VIOLATED_FRAME_N64 ,18DAF1D2,199,199,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.BUSLOAD_STATUS_N64,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.BUSLOAD_VALUE_CAN1_N64 ,18DAF1D2,208,215,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.BUSLOAD_VALUE_CAN2_N64 ,18DAF1D2,216,223,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.BUSLOAD_VALUE_CAN3_N64 ,18DAF1D2,224,231,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.BUSLOAD_VALUE_CAN4_N64 ,18DAF1D2,232,239,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.BUSLOAD_VALUE_CAN5_N64 ,18DAF1D2,240,247,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.BUSLOAD_VALUE_CAN6_N64 ,18DAF1D2,248,255,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.BUSLOAD_VALUE_CAN7_N64 ,18DAF1D2,256,263,1,0,0,,22043F,62043F,ff,SECURITY_LOG_N64.BUSLOAD_VALUE_CAN8_N64 ,18DAF1D2,24,47,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.ABOLUTE_TIME_N65 ,18DAF1D2,48,71,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.MILEAGE_N65 ,18DAF1D2,76,78,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.VIOLATION_TYPE_N65,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.SIZE_IDENTIFIER_N65,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220440,620440,4ff,SECURITY_LOG_N65.IDENTIFIER_VIOLATED_FRAME_N65 ,18DAF1D2,112,119,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.VIOLATED_BUS_N65,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.PAYLOAD_DLC_N65,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220440,620440,4ff,SECURITY_LOG_N65.PAYLOAD_VIOLATED_FRAME_N65 ,18DAF1D2,199,199,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.BUSLOAD_STATUS_N65,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.BUSLOAD_VALUE_CAN1_N65 ,18DAF1D2,208,215,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.BUSLOAD_VALUE_CAN2_N65 ,18DAF1D2,216,223,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.BUSLOAD_VALUE_CAN3_N65 ,18DAF1D2,224,231,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.BUSLOAD_VALUE_CAN4_N65 ,18DAF1D2,232,239,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.BUSLOAD_VALUE_CAN5_N65 ,18DAF1D2,240,247,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.BUSLOAD_VALUE_CAN6_N65 ,18DAF1D2,248,255,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.BUSLOAD_VALUE_CAN7_N65 ,18DAF1D2,256,263,1,0,0,,220440,620440,ff,SECURITY_LOG_N65.BUSLOAD_VALUE_CAN8_N65 ,18DAF1D2,24,47,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.ABOLUTE_TIME_N66 ,18DAF1D2,48,71,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.MILEAGE_N66 ,18DAF1D2,76,78,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.VIOLATION_TYPE_N66,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.SIZE_IDENTIFIER_N66,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220441,620441,4ff,SECURITY_LOG_N66.IDENTIFIER_VIOLATED_FRAME_N66 ,18DAF1D2,112,119,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.VIOLATED_BUS_N66,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.PAYLOAD_DLC_N66,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220441,620441,4ff,SECURITY_LOG_N66.PAYLOAD_VIOLATED_FRAME_N66 ,18DAF1D2,199,199,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.BUSLOAD_STATUS_N66,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.BUSLOAD_VALUE_CAN1_N66 ,18DAF1D2,208,215,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.BUSLOAD_VALUE_CAN2_N66 ,18DAF1D2,216,223,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.BUSLOAD_VALUE_CAN3_N66 ,18DAF1D2,224,231,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.BUSLOAD_VALUE_CAN4_N66 ,18DAF1D2,232,239,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.BUSLOAD_VALUE_CAN5_N66 ,18DAF1D2,240,247,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.BUSLOAD_VALUE_CAN6_N66 ,18DAF1D2,248,255,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.BUSLOAD_VALUE_CAN7_N66 ,18DAF1D2,256,263,1,0,0,,220441,620441,ff,SECURITY_LOG_N66.BUSLOAD_VALUE_CAN8_N66 ,18DAF1D2,24,47,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.ABOLUTE_TIME_N67 ,18DAF1D2,48,71,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.MILEAGE_N67 ,18DAF1D2,76,78,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.VIOLATION_TYPE_N67,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.SIZE_IDENTIFIER_N67,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220442,620442,4ff,SECURITY_LOG_N67.IDENTIFIER_VIOLATED_FRAME_N67 ,18DAF1D2,112,119,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.VIOLATED_BUS_N67,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.PAYLOAD_DLC_N67,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220442,620442,4ff,SECURITY_LOG_N67.PAYLOAD_VIOLATED_FRAME_N67 ,18DAF1D2,199,199,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.BUSLOAD_STATUS_N67,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.BUSLOAD_VALUE_CAN1_N67 ,18DAF1D2,208,215,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.BUSLOAD_VALUE_CAN2_N67 ,18DAF1D2,216,223,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.BUSLOAD_VALUE_CAN3_N67 ,18DAF1D2,224,231,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.BUSLOAD_VALUE_CAN4_N67 ,18DAF1D2,232,239,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.BUSLOAD_VALUE_CAN5_N67 ,18DAF1D2,240,247,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.BUSLOAD_VALUE_CAN6_N67 ,18DAF1D2,248,255,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.BUSLOAD_VALUE_CAN7_N67 ,18DAF1D2,256,263,1,0,0,,220442,620442,ff,SECURITY_LOG_N67.BUSLOAD_VALUE_CAN8_N67 ,18DAF1D2,24,47,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.ABOLUTE_TIME_N68 ,18DAF1D2,48,71,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.MILEAGE_N68 ,18DAF1D2,76,78,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.VIOLATION_TYPE_N68,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.SIZE_IDENTIFIER_N68,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220443,620443,4ff,SECURITY_LOG_N68.IDENTIFIER_VIOLATED_FRAME_N68 ,18DAF1D2,112,119,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.VIOLATED_BUS_N68,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.PAYLOAD_DLC_N68,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220443,620443,4ff,SECURITY_LOG_N68.PAYLOAD_VIOLATED_FRAME_N68 ,18DAF1D2,199,199,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.BUSLOAD_STATUS_N68,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.BUSLOAD_VALUE_CAN1_N68 ,18DAF1D2,208,215,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.BUSLOAD_VALUE_CAN2_N68 ,18DAF1D2,216,223,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.BUSLOAD_VALUE_CAN3_N68 ,18DAF1D2,224,231,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.BUSLOAD_VALUE_CAN4_N68 ,18DAF1D2,232,239,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.BUSLOAD_VALUE_CAN5_N68 ,18DAF1D2,240,247,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.BUSLOAD_VALUE_CAN6_N68 ,18DAF1D2,248,255,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.BUSLOAD_VALUE_CAN7_N68 ,18DAF1D2,256,263,1,0,0,,220443,620443,ff,SECURITY_LOG_N68.BUSLOAD_VALUE_CAN8_N68 ,18DAF1D2,24,47,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.ABOLUTE_TIME_N69 ,18DAF1D2,48,71,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.MILEAGE_N69 ,18DAF1D2,76,78,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.VIOLATION_TYPE_N69,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.SIZE_IDENTIFIER_N69,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220444,620444,4ff,SECURITY_LOG_N69.IDENTIFIER_VIOLATED_FRAME_N69 ,18DAF1D2,112,119,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.VIOLATED_BUS_N69,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.PAYLOAD_DLC_N69,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220444,620444,4ff,SECURITY_LOG_N69.PAYLOAD_VIOLATED_FRAME_N69 ,18DAF1D2,199,199,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.BUSLOAD_STATUS_N69,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.BUSLOAD_VALUE_CAN1_N69 ,18DAF1D2,208,215,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.BUSLOAD_VALUE_CAN2_N69 ,18DAF1D2,216,223,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.BUSLOAD_VALUE_CAN3_N69 ,18DAF1D2,224,231,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.BUSLOAD_VALUE_CAN4_N69 ,18DAF1D2,232,239,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.BUSLOAD_VALUE_CAN5_N69 ,18DAF1D2,240,247,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.BUSLOAD_VALUE_CAN6_N69 ,18DAF1D2,248,255,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.BUSLOAD_VALUE_CAN7_N69 ,18DAF1D2,256,263,1,0,0,,220444,620444,ff,SECURITY_LOG_N69.BUSLOAD_VALUE_CAN8_N69 ,18DAF1D2,24,47,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.ABOLUTE_TIME_N70 ,18DAF1D2,48,71,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.MILEAGE_N70 ,18DAF1D2,76,78,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.VIOLATION_TYPE_N70,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.SIZE_IDENTIFIER_N70,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220445,620445,4ff,SECURITY_LOG_N70.IDENTIFIER_VIOLATED_FRAME_N70 ,18DAF1D2,112,119,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.VIOLATED_BUS_N70,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.PAYLOAD_DLC_N70,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220445,620445,4ff,SECURITY_LOG_N70.PAYLOAD_VIOLATED_FRAME_N70 ,18DAF1D2,199,199,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.BUSLOAD_STATUS_N70,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.BUSLOAD_VALUE_CAN1_N70 ,18DAF1D2,208,215,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.BUSLOAD_VALUE_CAN2_N70 ,18DAF1D2,216,223,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.BUSLOAD_VALUE_CAN3_N70 ,18DAF1D2,224,231,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.BUSLOAD_VALUE_CAN4_N70 ,18DAF1D2,232,239,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.BUSLOAD_VALUE_CAN5_N70 ,18DAF1D2,240,247,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.BUSLOAD_VALUE_CAN6_N70 ,18DAF1D2,248,255,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.BUSLOAD_VALUE_CAN7_N70 ,18DAF1D2,256,263,1,0,0,,220445,620445,ff,SECURITY_LOG_N70.BUSLOAD_VALUE_CAN8_N70 ,18DAF1D2,24,47,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.ABOLUTE_TIME_N71 ,18DAF1D2,48,71,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.MILEAGE_N71 ,18DAF1D2,76,78,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.VIOLATION_TYPE_N71,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.SIZE_IDENTIFIER_N71,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220446,620446,4ff,SECURITY_LOG_N71.IDENTIFIER_VIOLATED_FRAME_N71 ,18DAF1D2,112,119,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.VIOLATED_BUS_N71,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.PAYLOAD_DLC_N71,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220446,620446,4ff,SECURITY_LOG_N71.PAYLOAD_VIOLATED_FRAME_N71 ,18DAF1D2,199,199,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.BUSLOAD_STATUS_N71,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.BUSLOAD_VALUE_CAN1_N71 ,18DAF1D2,208,215,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.BUSLOAD_VALUE_CAN2_N71 ,18DAF1D2,216,223,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.BUSLOAD_VALUE_CAN3_N71 ,18DAF1D2,224,231,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.BUSLOAD_VALUE_CAN4_N71 ,18DAF1D2,232,239,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.BUSLOAD_VALUE_CAN5_N71 ,18DAF1D2,240,247,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.BUSLOAD_VALUE_CAN6_N71 ,18DAF1D2,248,255,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.BUSLOAD_VALUE_CAN7_N71 ,18DAF1D2,256,263,1,0,0,,220446,620446,ff,SECURITY_LOG_N71.BUSLOAD_VALUE_CAN8_N71 ,18DAF1D2,24,47,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.ABOLUTE_TIME_N72 ,18DAF1D2,48,71,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.MILEAGE_N72 ,18DAF1D2,76,78,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.VIOLATION_TYPE_N72,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.SIZE_IDENTIFIER_N72,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220447,620447,4ff,SECURITY_LOG_N72.IDENTIFIER_VIOLATED_FRAME_N72 ,18DAF1D2,112,119,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.VIOLATED_BUS_N72,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.PAYLOAD_DLC_N72,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220447,620447,4ff,SECURITY_LOG_N72.PAYLOAD_VIOLATED_FRAME_N72 ,18DAF1D2,199,199,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.BUSLOAD_STATUS_N72,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.BUSLOAD_VALUE_CAN1_N72 ,18DAF1D2,208,215,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.BUSLOAD_VALUE_CAN2_N72 ,18DAF1D2,216,223,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.BUSLOAD_VALUE_CAN3_N72 ,18DAF1D2,224,231,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.BUSLOAD_VALUE_CAN4_N72 ,18DAF1D2,232,239,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.BUSLOAD_VALUE_CAN5_N72 ,18DAF1D2,240,247,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.BUSLOAD_VALUE_CAN6_N72 ,18DAF1D2,248,255,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.BUSLOAD_VALUE_CAN7_N72 ,18DAF1D2,256,263,1,0,0,,220447,620447,ff,SECURITY_LOG_N72.BUSLOAD_VALUE_CAN8_N72 ,18DAF1D2,24,47,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.ABOLUTE_TIME_N73 ,18DAF1D2,48,71,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.MILEAGE_N73 ,18DAF1D2,76,78,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.VIOLATION_TYPE_N73,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.SIZE_IDENTIFIER_N73,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220448,620448,4ff,SECURITY_LOG_N73.IDENTIFIER_VIOLATED_FRAME_N73 ,18DAF1D2,112,119,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.VIOLATED_BUS_N73,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.PAYLOAD_DLC_N73,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220448,620448,4ff,SECURITY_LOG_N73.PAYLOAD_VIOLATED_FRAME_N73 ,18DAF1D2,199,199,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.BUSLOAD_STATUS_N73,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.BUSLOAD_VALUE_CAN1_N73 ,18DAF1D2,208,215,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.BUSLOAD_VALUE_CAN2_N73 ,18DAF1D2,216,223,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.BUSLOAD_VALUE_CAN3_N73 ,18DAF1D2,224,231,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.BUSLOAD_VALUE_CAN4_N73 ,18DAF1D2,232,239,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.BUSLOAD_VALUE_CAN5_N73 ,18DAF1D2,240,247,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.BUSLOAD_VALUE_CAN6_N73 ,18DAF1D2,248,255,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.BUSLOAD_VALUE_CAN7_N73 ,18DAF1D2,256,263,1,0,0,,220448,620448,ff,SECURITY_LOG_N73.BUSLOAD_VALUE_CAN8_N73 ,18DAF1D2,24,47,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.ABOLUTE_TIME_N74 ,18DAF1D2,48,71,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.MILEAGE_N74 ,18DAF1D2,76,78,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.VIOLATION_TYPE_N74,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.SIZE_IDENTIFIER_N74,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220449,620449,4ff,SECURITY_LOG_N74.IDENTIFIER_VIOLATED_FRAME_N74 ,18DAF1D2,112,119,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.VIOLATED_BUS_N74,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.PAYLOAD_DLC_N74,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220449,620449,4ff,SECURITY_LOG_N74.PAYLOAD_VIOLATED_FRAME_N74 ,18DAF1D2,199,199,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.BUSLOAD_STATUS_N74,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.BUSLOAD_VALUE_CAN1_N74 ,18DAF1D2,208,215,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.BUSLOAD_VALUE_CAN2_N74 ,18DAF1D2,216,223,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.BUSLOAD_VALUE_CAN3_N74 ,18DAF1D2,224,231,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.BUSLOAD_VALUE_CAN4_N74 ,18DAF1D2,232,239,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.BUSLOAD_VALUE_CAN5_N74 ,18DAF1D2,240,247,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.BUSLOAD_VALUE_CAN6_N74 ,18DAF1D2,248,255,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.BUSLOAD_VALUE_CAN7_N74 ,18DAF1D2,256,263,1,0,0,,220449,620449,ff,SECURITY_LOG_N74.BUSLOAD_VALUE_CAN8_N74 ,18DAF1D2,24,47,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.ABOLUTE_TIME_N75 ,18DAF1D2,48,71,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.MILEAGE_N75 ,18DAF1D2,76,78,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.VIOLATION_TYPE_N75,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.SIZE_IDENTIFIER_N75,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22044A,62044A,4ff,SECURITY_LOG_N75.IDENTIFIER_VIOLATED_FRAME_N75 ,18DAF1D2,112,119,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.VIOLATED_BUS_N75,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.PAYLOAD_DLC_N75,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22044A,62044A,4ff,SECURITY_LOG_N75.PAYLOAD_VIOLATED_FRAME_N75 ,18DAF1D2,199,199,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.BUSLOAD_STATUS_N75,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.BUSLOAD_VALUE_CAN1_N75 ,18DAF1D2,208,215,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.BUSLOAD_VALUE_CAN2_N75 ,18DAF1D2,216,223,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.BUSLOAD_VALUE_CAN3_N75 ,18DAF1D2,224,231,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.BUSLOAD_VALUE_CAN4_N75 ,18DAF1D2,232,239,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.BUSLOAD_VALUE_CAN5_N75 ,18DAF1D2,240,247,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.BUSLOAD_VALUE_CAN6_N75 ,18DAF1D2,248,255,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.BUSLOAD_VALUE_CAN7_N75 ,18DAF1D2,256,263,1,0,0,,22044A,62044A,ff,SECURITY_LOG_N75.BUSLOAD_VALUE_CAN8_N75 ,18DAF1D2,24,47,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.ABOLUTE_TIME_N76 ,18DAF1D2,48,71,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.MILEAGE_N76 ,18DAF1D2,76,78,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.VIOLATION_TYPE_N76,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.SIZE_IDENTIFIER_N76,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22044B,62044B,4ff,SECURITY_LOG_N76.IDENTIFIER_VIOLATED_FRAME_N76 ,18DAF1D2,112,119,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.VIOLATED_BUS_N76,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.PAYLOAD_DLC_N76,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22044B,62044B,4ff,SECURITY_LOG_N76.PAYLOAD_VIOLATED_FRAME_N76 ,18DAF1D2,199,199,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.BUSLOAD_STATUS_N76,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.BUSLOAD_VALUE_CAN1_N76 ,18DAF1D2,208,215,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.BUSLOAD_VALUE_CAN2_N76 ,18DAF1D2,216,223,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.BUSLOAD_VALUE_CAN3_N76 ,18DAF1D2,224,231,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.BUSLOAD_VALUE_CAN4_N76 ,18DAF1D2,232,239,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.BUSLOAD_VALUE_CAN5_N76 ,18DAF1D2,240,247,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.BUSLOAD_VALUE_CAN6_N76 ,18DAF1D2,248,255,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.BUSLOAD_VALUE_CAN7_N76 ,18DAF1D2,256,263,1,0,0,,22044B,62044B,ff,SECURITY_LOG_N76.BUSLOAD_VALUE_CAN8_N76 ,18DAF1D2,24,47,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.ABOLUTE_TIME_N77 ,18DAF1D2,48,71,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.MILEAGE_N77 ,18DAF1D2,76,78,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.VIOLATION_TYPE_N77,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.SIZE_IDENTIFIER_N77,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22044C,62044C,4ff,SECURITY_LOG_N77.IDENTIFIER_VIOLATED_FRAME_N77 ,18DAF1D2,112,119,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.VIOLATED_BUS_N77,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.PAYLOAD_DLC_N77,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22044C,62044C,4ff,SECURITY_LOG_N77.PAYLOAD_VIOLATED_FRAME_N77 ,18DAF1D2,199,199,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.BUSLOAD_STATUS_N77,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.BUSLOAD_VALUE_CAN1_N77 ,18DAF1D2,208,215,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.BUSLOAD_VALUE_CAN2_N77 ,18DAF1D2,216,223,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.BUSLOAD_VALUE_CAN3_N77 ,18DAF1D2,224,231,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.BUSLOAD_VALUE_CAN4_N77 ,18DAF1D2,232,239,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.BUSLOAD_VALUE_CAN5_N77 ,18DAF1D2,240,247,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.BUSLOAD_VALUE_CAN6_N77 ,18DAF1D2,248,255,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.BUSLOAD_VALUE_CAN7_N77 ,18DAF1D2,256,263,1,0,0,,22044C,62044C,ff,SECURITY_LOG_N77.BUSLOAD_VALUE_CAN8_N77 ,18DAF1D2,24,47,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.ABOLUTE_TIME_N78 ,18DAF1D2,48,71,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.MILEAGE_N78 ,18DAF1D2,76,78,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.VIOLATION_TYPE_N78,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.SIZE_IDENTIFIER_N78,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22044D,62044D,4ff,SECURITY_LOG_N78.IDENTIFIER_VIOLATED_FRAME_N78 ,18DAF1D2,112,119,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.VIOLATED_BUS_N78,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.PAYLOAD_DLC_N78,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22044D,62044D,4ff,SECURITY_LOG_N78.PAYLOAD_VIOLATED_FRAME_N78 ,18DAF1D2,199,199,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.BUSLOAD_STATUS_N78,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.BUSLOAD_VALUE_CAN1_N78 ,18DAF1D2,208,215,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.BUSLOAD_VALUE_CAN2_N78 ,18DAF1D2,216,223,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.BUSLOAD_VALUE_CAN3_N78 ,18DAF1D2,224,231,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.BUSLOAD_VALUE_CAN4_N78 ,18DAF1D2,232,239,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.BUSLOAD_VALUE_CAN5_N78 ,18DAF1D2,240,247,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.BUSLOAD_VALUE_CAN6_N78 ,18DAF1D2,248,255,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.BUSLOAD_VALUE_CAN7_N78 ,18DAF1D2,256,263,1,0,0,,22044D,62044D,ff,SECURITY_LOG_N78.BUSLOAD_VALUE_CAN8_N78 ,18DAF1D2,24,47,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.ABOLUTE_TIME_N79 ,18DAF1D2,48,71,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.MILEAGE_N79 ,18DAF1D2,76,78,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.VIOLATION_TYPE_N79,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.SIZE_IDENTIFIER_N79,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22044E,62044E,4ff,SECURITY_LOG_N79.IDENTIFIER_VIOLATED_FRAME_N79 ,18DAF1D2,112,119,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.VIOLATED_BUS_N79,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.PAYLOAD_DLC_N79,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22044E,62044E,4ff,SECURITY_LOG_N79.PAYLOAD_VIOLATED_FRAME_N79 ,18DAF1D2,199,199,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.BUSLOAD_STATUS_N79,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.BUSLOAD_VALUE_CAN1_N79 ,18DAF1D2,208,215,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.BUSLOAD_VALUE_CAN2_N79 ,18DAF1D2,216,223,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.BUSLOAD_VALUE_CAN3_N79 ,18DAF1D2,224,231,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.BUSLOAD_VALUE_CAN4_N79 ,18DAF1D2,232,239,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.BUSLOAD_VALUE_CAN5_N79 ,18DAF1D2,240,247,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.BUSLOAD_VALUE_CAN6_N79 ,18DAF1D2,248,255,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.BUSLOAD_VALUE_CAN7_N79 ,18DAF1D2,256,263,1,0,0,,22044E,62044E,ff,SECURITY_LOG_N79.BUSLOAD_VALUE_CAN8_N79 ,18DAF1D2,24,47,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.ABOLUTE_TIME_N80 ,18DAF1D2,48,71,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.MILEAGE_N80 ,18DAF1D2,76,78,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.VIOLATION_TYPE_N80,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.SIZE_IDENTIFIER_N80,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22044F,62044F,4ff,SECURITY_LOG_N80.IDENTIFIER_VIOLATED_FRAME_N80 ,18DAF1D2,112,119,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.VIOLATED_BUS_N80,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.PAYLOAD_DLC_N80,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22044F,62044F,4ff,SECURITY_LOG_N80.PAYLOAD_VIOLATED_FRAME_N80 ,18DAF1D2,199,199,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.BUSLOAD_STATUS_N80,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.BUSLOAD_VALUE_CAN1_N80 ,18DAF1D2,208,215,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.BUSLOAD_VALUE_CAN2_N80 ,18DAF1D2,216,223,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.BUSLOAD_VALUE_CAN3_N80 ,18DAF1D2,224,231,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.BUSLOAD_VALUE_CAN4_N80 ,18DAF1D2,232,239,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.BUSLOAD_VALUE_CAN5_N80 ,18DAF1D2,240,247,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.BUSLOAD_VALUE_CAN6_N80 ,18DAF1D2,248,255,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.BUSLOAD_VALUE_CAN7_N80 ,18DAF1D2,256,263,1,0,0,,22044F,62044F,ff,SECURITY_LOG_N80.BUSLOAD_VALUE_CAN8_N80 ,18DAF1D2,24,47,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.ABOLUTE_TIME_N81 ,18DAF1D2,48,71,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.MILEAGE_N81 ,18DAF1D2,76,78,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.VIOLATION_TYPE_N81,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.SIZE_IDENTIFIER_N81,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220450,620450,4ff,SECURITY_LOG_N81.IDENTIFIER_VIOLATED_FRAME_N81 ,18DAF1D2,112,119,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.VIOLATED_BUS_N81,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.PAYLOAD_DLC_N81,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220450,620450,4ff,SECURITY_LOG_N81.PAYLOAD_VIOLATED_FRAME_N81 ,18DAF1D2,199,199,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.BUSLOAD_STATUS_N81,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.BUSLOAD_VALUE_CAN1_N81 ,18DAF1D2,208,215,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.BUSLOAD_VALUE_CAN2_N81 ,18DAF1D2,216,223,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.BUSLOAD_VALUE_CAN3_N81 ,18DAF1D2,224,231,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.BUSLOAD_VALUE_CAN4_N81 ,18DAF1D2,232,239,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.BUSLOAD_VALUE_CAN5_N81 ,18DAF1D2,240,247,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.BUSLOAD_VALUE_CAN6_N81 ,18DAF1D2,248,255,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.BUSLOAD_VALUE_CAN7_N81 ,18DAF1D2,256,263,1,0,0,,220450,620450,ff,SECURITY_LOG_N81.BUSLOAD_VALUE_CAN8_N81 ,18DAF1D2,24,47,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.ABOLUTE_TIME_N82 ,18DAF1D2,48,71,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.MILEAGE_N82 ,18DAF1D2,76,78,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.VIOLATION_TYPE_N82,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.SIZE_IDENTIFIER_N82,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220451,620451,4ff,SECURITY_LOG_N82.IDENTIFIER_VIOLATED_FRAME_N82 ,18DAF1D2,112,119,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.VIOLATED_BUS_N82,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.PAYLOAD_DLC_N82,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220451,620451,4ff,SECURITY_LOG_N82.PAYLOAD_VIOLATED_FRAME_N82 ,18DAF1D2,199,199,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.BUSLOAD_STATUS_N82,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.BUSLOAD_VALUE_CAN1_N82 ,18DAF1D2,208,215,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.BUSLOAD_VALUE_CAN2_N82 ,18DAF1D2,216,223,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.BUSLOAD_VALUE_CAN3_N82 ,18DAF1D2,224,231,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.BUSLOAD_VALUE_CAN4_N82 ,18DAF1D2,232,239,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.BUSLOAD_VALUE_CAN5_N82 ,18DAF1D2,240,247,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.BUSLOAD_VALUE_CAN6_N82 ,18DAF1D2,248,255,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.BUSLOAD_VALUE_CAN7_N82 ,18DAF1D2,256,263,1,0,0,,220451,620451,ff,SECURITY_LOG_N82.BUSLOAD_VALUE_CAN8_N82 ,18DAF1D2,24,47,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.ABOLUTE_TIME_N83 ,18DAF1D2,48,71,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.MILEAGE_N83 ,18DAF1D2,76,78,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.VIOLATION_TYPE_N83,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.SIZE_IDENTIFIER_N83,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220452,620452,4ff,SECURITY_LOG_N83.IDENTIFIER_VIOLATED_FRAME_N83 ,18DAF1D2,112,119,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.VIOLATED_BUS_N83,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.PAYLOAD_DLC_N83,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220452,620452,4ff,SECURITY_LOG_N83.PAYLOAD_VIOLATED_FRAME_N83 ,18DAF1D2,199,199,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.BUSLOAD_STATUS_N83,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.BUSLOAD_VALUE_CAN1_N83 ,18DAF1D2,208,215,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.BUSLOAD_VALUE_CAN2_N83 ,18DAF1D2,216,223,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.BUSLOAD_VALUE_CAN3_N83 ,18DAF1D2,224,231,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.BUSLOAD_VALUE_CAN4_N83 ,18DAF1D2,232,239,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.BUSLOAD_VALUE_CAN5_N83 ,18DAF1D2,240,247,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.BUSLOAD_VALUE_CAN6_N83 ,18DAF1D2,248,255,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.BUSLOAD_VALUE_CAN7_N83 ,18DAF1D2,256,263,1,0,0,,220452,620452,ff,SECURITY_LOG_N83.BUSLOAD_VALUE_CAN8_N83 ,18DAF1D2,24,47,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.ABOLUTE_TIME_N84 ,18DAF1D2,48,71,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.MILEAGE_N84 ,18DAF1D2,76,78,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.VIOLATION_TYPE_N84,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.SIZE_IDENTIFIER_N84,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220453,620453,4ff,SECURITY_LOG_N84.IDENTIFIER_VIOLATED_FRAME_N84 ,18DAF1D2,112,119,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.VIOLATED_BUS_N84,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.PAYLOAD_DLC_N84,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220453,620453,4ff,SECURITY_LOG_N84.PAYLOAD_VIOLATED_FRAME_N84 ,18DAF1D2,199,199,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.BUSLOAD_STATUS_N84,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.BUSLOAD_VALUE_CAN1_N84 ,18DAF1D2,208,215,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.BUSLOAD_VALUE_CAN2_N84 ,18DAF1D2,216,223,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.BUSLOAD_VALUE_CAN3_N84 ,18DAF1D2,224,231,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.BUSLOAD_VALUE_CAN4_N84 ,18DAF1D2,232,239,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.BUSLOAD_VALUE_CAN5_N84 ,18DAF1D2,240,247,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.BUSLOAD_VALUE_CAN6_N84 ,18DAF1D2,248,255,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.BUSLOAD_VALUE_CAN7_N84 ,18DAF1D2,256,263,1,0,0,,220453,620453,ff,SECURITY_LOG_N84.BUSLOAD_VALUE_CAN8_N84 ,18DAF1D2,24,47,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.ABOLUTE_TIME_N85 ,18DAF1D2,48,71,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.MILEAGE_N85 ,18DAF1D2,76,78,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.VIOLATION_TYPE_N85,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.SIZE_IDENTIFIER_N85,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220454,620454,4ff,SECURITY_LOG_N85.IDENTIFIER_VIOLATED_FRAME_N85 ,18DAF1D2,112,119,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.VIOLATED_BUS_N85,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.PAYLOAD_DLC_N85,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220454,620454,4ff,SECURITY_LOG_N85.PAYLOAD_VIOLATED_FRAME_N85 ,18DAF1D2,199,199,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.BUSLOAD_STATUS_N85,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.BUSLOAD_VALUE_CAN1_N85 ,18DAF1D2,208,215,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.BUSLOAD_VALUE_CAN2_N85 ,18DAF1D2,216,223,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.BUSLOAD_VALUE_CAN3_N85 ,18DAF1D2,224,231,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.BUSLOAD_VALUE_CAN4_N85 ,18DAF1D2,232,239,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.BUSLOAD_VALUE_CAN5_N85 ,18DAF1D2,240,247,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.BUSLOAD_VALUE_CAN6_N85 ,18DAF1D2,248,255,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.BUSLOAD_VALUE_CAN7_N85 ,18DAF1D2,256,263,1,0,0,,220454,620454,ff,SECURITY_LOG_N85.BUSLOAD_VALUE_CAN8_N85 ,18DAF1D2,24,47,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.ABOLUTE_TIME_N86 ,18DAF1D2,48,71,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.MILEAGE_N86 ,18DAF1D2,76,78,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.VIOLATION_TYPE_N86,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.SIZE_IDENTIFIER_N86,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220455,620455,4ff,SECURITY_LOG_N86.IDENTIFIER_VIOLATED_FRAME_N86 ,18DAF1D2,112,119,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.VIOLATED_BUS_N86,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.PAYLOAD_DLC_N86,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220455,620455,4ff,SECURITY_LOG_N86.PAYLOAD_VIOLATED_FRAME_N86 ,18DAF1D2,199,199,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.BUSLOAD_STATUS_N86,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.BUSLOAD_VALUE_CAN1_N86 ,18DAF1D2,208,215,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.BUSLOAD_VALUE_CAN2_N86 ,18DAF1D2,216,223,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.BUSLOAD_VALUE_CAN3_N86 ,18DAF1D2,224,231,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.BUSLOAD_VALUE_CAN4_N86 ,18DAF1D2,232,239,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.BUSLOAD_VALUE_CAN5_N86 ,18DAF1D2,240,247,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.BUSLOAD_VALUE_CAN6_N86 ,18DAF1D2,248,255,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.BUSLOAD_VALUE_CAN7_N86 ,18DAF1D2,256,263,1,0,0,,220455,620455,ff,SECURITY_LOG_N86.BUSLOAD_VALUE_CAN8_N86 ,18DAF1D2,24,47,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.ABOLUTE_TIME_N87 ,18DAF1D2,48,71,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.MILEAGE_N87 ,18DAF1D2,76,78,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.VIOLATION_TYPE_N87,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.SIZE_IDENTIFIER_N87,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220456,620456,4ff,SECURITY_LOG_N87.IDENTIFIER_VIOLATED_FRAME_N87 ,18DAF1D2,112,119,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.VIOLATED_BUS_N87,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.PAYLOAD_DLC_N87,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220456,620456,4ff,SECURITY_LOG_N87.PAYLOAD_VIOLATED_FRAME_N87 ,18DAF1D2,199,199,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.BUSLOAD_STATUS_N87,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.BUSLOAD_VALUE_CAN1_N87 ,18DAF1D2,208,215,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.BUSLOAD_VALUE_CAN2_N87 ,18DAF1D2,216,223,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.BUSLOAD_VALUE_CAN3_N87 ,18DAF1D2,224,231,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.BUSLOAD_VALUE_CAN4_N87 ,18DAF1D2,232,239,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.BUSLOAD_VALUE_CAN5_N87 ,18DAF1D2,240,247,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.BUSLOAD_VALUE_CAN6_N87 ,18DAF1D2,248,255,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.BUSLOAD_VALUE_CAN7_N87 ,18DAF1D2,256,263,1,0,0,,220456,620456,ff,SECURITY_LOG_N87.BUSLOAD_VALUE_CAN8_N87 ,18DAF1D2,24,47,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.ABOLUTE_TIME_N88 ,18DAF1D2,48,71,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.MILEAGE_N88 ,18DAF1D2,76,78,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.VIOLATION_TYPE_N88,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.SIZE_IDENTIFIER_N88,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220457,620457,4ff,SECURITY_LOG_N88.IDENTIFIER_VIOLATED_FRAME_N88 ,18DAF1D2,112,119,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.VIOLATED_BUS_N88,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.PAYLOAD_DLC_N88,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220457,620457,4ff,SECURITY_LOG_N88.PAYLOAD_VIOLATED_FRAME_N88 ,18DAF1D2,199,199,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.BUSLOAD_STATUS_N88,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.BUSLOAD_VALUE_CAN1_N88 ,18DAF1D2,208,215,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.BUSLOAD_VALUE_CAN2_N88 ,18DAF1D2,216,223,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.BUSLOAD_VALUE_CAN3_N88 ,18DAF1D2,224,231,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.BUSLOAD_VALUE_CAN4_N88 ,18DAF1D2,232,239,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.BUSLOAD_VALUE_CAN5_N88 ,18DAF1D2,240,247,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.BUSLOAD_VALUE_CAN6_N88 ,18DAF1D2,248,255,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.BUSLOAD_VALUE_CAN7_N88 ,18DAF1D2,256,263,1,0,0,,220457,620457,ff,SECURITY_LOG_N88.BUSLOAD_VALUE_CAN8_N88 ,18DAF1D2,24,47,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.ABOLUTE_TIME_N89 ,18DAF1D2,48,71,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.MILEAGE_N89 ,18DAF1D2,76,78,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.VIOLATION_TYPE_N89,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.SIZE_IDENTIFIER_N89,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220458,620458,4ff,SECURITY_LOG_N89.IDENTIFIER_VIOLATED_FRAME_N89 ,18DAF1D2,112,119,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.VIOLATED_BUS_N89,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.PAYLOAD_DLC_N89,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220458,620458,4ff,SECURITY_LOG_N89.PAYLOAD_VIOLATED_FRAME_N89 ,18DAF1D2,199,199,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.BUSLOAD_STATUS_N89,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.BUSLOAD_VALUE_CAN1_N89 ,18DAF1D2,208,215,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.BUSLOAD_VALUE_CAN2_N89 ,18DAF1D2,216,223,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.BUSLOAD_VALUE_CAN3_N89 ,18DAF1D2,224,231,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.BUSLOAD_VALUE_CAN4_N89 ,18DAF1D2,232,239,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.BUSLOAD_VALUE_CAN5_N89 ,18DAF1D2,240,247,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.BUSLOAD_VALUE_CAN6_N89 ,18DAF1D2,248,255,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.BUSLOAD_VALUE_CAN7_N89 ,18DAF1D2,256,263,1,0,0,,220458,620458,ff,SECURITY_LOG_N89.BUSLOAD_VALUE_CAN8_N89 ,18DAF1D2,24,47,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.ABOLUTE_TIME_N90 ,18DAF1D2,48,71,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.MILEAGE_N90 ,18DAF1D2,76,78,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.VIOLATION_TYPE_N90,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.SIZE_IDENTIFIER_N90,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220459,620459,4ff,SECURITY_LOG_N90.IDENTIFIER_VIOLATED_FRAME_N90 ,18DAF1D2,112,119,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.VIOLATED_BUS_N90,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.PAYLOAD_DLC_N90,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220459,620459,4ff,SECURITY_LOG_N90.PAYLOAD_VIOLATED_FRAME_N90 ,18DAF1D2,199,199,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.BUSLOAD_STATUS_N90,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.BUSLOAD_VALUE_CAN1_N90 ,18DAF1D2,208,215,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.BUSLOAD_VALUE_CAN2_N90 ,18DAF1D2,216,223,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.BUSLOAD_VALUE_CAN3_N90 ,18DAF1D2,224,231,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.BUSLOAD_VALUE_CAN4_N90 ,18DAF1D2,232,239,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.BUSLOAD_VALUE_CAN5_N90 ,18DAF1D2,240,247,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.BUSLOAD_VALUE_CAN6_N90 ,18DAF1D2,248,255,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.BUSLOAD_VALUE_CAN7_N90 ,18DAF1D2,256,263,1,0,0,,220459,620459,ff,SECURITY_LOG_N90.BUSLOAD_VALUE_CAN8_N90 ,18DAF1D2,24,47,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.ABOLUTE_TIME_N91 ,18DAF1D2,48,71,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.MILEAGE_N91 ,18DAF1D2,76,78,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.VIOLATION_TYPE_N91,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.SIZE_IDENTIFIER_N91,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22045A,62045A,4ff,SECURITY_LOG_N91.IDENTIFIER_VIOLATED_FRAME_N91 ,18DAF1D2,112,119,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.VIOLATED_BUS_N91,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.PAYLOAD_DLC_N91,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22045A,62045A,4ff,SECURITY_LOG_N91.PAYLOAD_VIOLATED_FRAME_N91 ,18DAF1D2,199,199,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.BUSLOAD_STATUS_N91,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.BUSLOAD_VALUE_CAN1_N91 ,18DAF1D2,208,215,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.BUSLOAD_VALUE_CAN2_N91 ,18DAF1D2,216,223,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.BUSLOAD_VALUE_CAN3_N91 ,18DAF1D2,224,231,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.BUSLOAD_VALUE_CAN4_N91 ,18DAF1D2,232,239,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.BUSLOAD_VALUE_CAN5_N91 ,18DAF1D2,240,247,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.BUSLOAD_VALUE_CAN6_N91 ,18DAF1D2,248,255,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.BUSLOAD_VALUE_CAN7_N91 ,18DAF1D2,256,263,1,0,0,,22045A,62045A,ff,SECURITY_LOG_N91.BUSLOAD_VALUE_CAN8_N91 ,18DAF1D2,24,47,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.ABOLUTE_TIME_N92 ,18DAF1D2,48,71,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.MILEAGE_N92 ,18DAF1D2,76,78,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.VIOLATION_TYPE_N92,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.SIZE_IDENTIFIER_N92,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22045B,62045B,4ff,SECURITY_LOG_N92.IDENTIFIER_VIOLATED_FRAME_N92 ,18DAF1D2,112,119,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.VIOLATED_BUS_N92,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.PAYLOAD_DLC_N92,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22045B,62045B,4ff,SECURITY_LOG_N92.PAYLOAD_VIOLATED_FRAME_N92 ,18DAF1D2,199,199,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.BUSLOAD_STATUS_N92,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.BUSLOAD_VALUE_CAN1_N92 ,18DAF1D2,208,215,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.BUSLOAD_VALUE_CAN2_N92 ,18DAF1D2,216,223,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.BUSLOAD_VALUE_CAN3_N92 ,18DAF1D2,224,231,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.BUSLOAD_VALUE_CAN4_N92 ,18DAF1D2,232,239,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.BUSLOAD_VALUE_CAN5_N92 ,18DAF1D2,240,247,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.BUSLOAD_VALUE_CAN6_N92 ,18DAF1D2,248,255,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.BUSLOAD_VALUE_CAN7_N92 ,18DAF1D2,256,263,1,0,0,,22045B,62045B,ff,SECURITY_LOG_N92.BUSLOAD_VALUE_CAN8_N92 ,18DAF1D2,24,47,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.ABOLUTE_TIME_N93 ,18DAF1D2,48,71,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.MILEAGE_N93 ,18DAF1D2,76,78,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.VIOLATION_TYPE_N93,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.SIZE_IDENTIFIER_N93,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22045C,62045C,4ff,SECURITY_LOG_N93.IDENTIFIER_VIOLATED_FRAME_N93 ,18DAF1D2,112,119,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.VIOLATED_BUS_N93,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.PAYLOAD_DLC_N93,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22045C,62045C,4ff,SECURITY_LOG_N93.PAYLOAD_VIOLATED_FRAME_N93 ,18DAF1D2,199,199,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.BUSLOAD_STATUS_N93,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.BUSLOAD_VALUE_CAN1_N93 ,18DAF1D2,208,215,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.BUSLOAD_VALUE_CAN2_N93 ,18DAF1D2,216,223,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.BUSLOAD_VALUE_CAN3_N93 ,18DAF1D2,224,231,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.BUSLOAD_VALUE_CAN4_N93 ,18DAF1D2,232,239,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.BUSLOAD_VALUE_CAN5_N93 ,18DAF1D2,240,247,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.BUSLOAD_VALUE_CAN6_N93 ,18DAF1D2,248,255,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.BUSLOAD_VALUE_CAN7_N93 ,18DAF1D2,256,263,1,0,0,,22045C,62045C,ff,SECURITY_LOG_N93.BUSLOAD_VALUE_CAN8_N93 ,18DAF1D2,24,47,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.ABOLUTE_TIME_N94 ,18DAF1D2,48,71,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.MILEAGE_N94 ,18DAF1D2,76,78,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.VIOLATION_TYPE_N94,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.SIZE_IDENTIFIER_N94,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22045D,62045D,4ff,SECURITY_LOG_N94.IDENTIFIER_VIOLATED_FRAME_N94 ,18DAF1D2,112,119,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.VIOLATED_BUS_N94,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.PAYLOAD_DLC_N94,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22045D,62045D,4ff,SECURITY_LOG_N94.PAYLOAD_VIOLATED_FRAME_N94 ,18DAF1D2,199,199,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.BUSLOAD_STATUS_N94,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.BUSLOAD_VALUE_CAN1_N94 ,18DAF1D2,208,215,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.BUSLOAD_VALUE_CAN2_N94 ,18DAF1D2,216,223,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.BUSLOAD_VALUE_CAN3_N94 ,18DAF1D2,224,231,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.BUSLOAD_VALUE_CAN4_N94 ,18DAF1D2,232,239,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.BUSLOAD_VALUE_CAN5_N94 ,18DAF1D2,240,247,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.BUSLOAD_VALUE_CAN6_N94 ,18DAF1D2,248,255,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.BUSLOAD_VALUE_CAN7_N94 ,18DAF1D2,256,263,1,0,0,,22045D,62045D,ff,SECURITY_LOG_N94.BUSLOAD_VALUE_CAN8_N94 ,18DAF1D2,24,47,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.ABOLUTE_TIME_N95 ,18DAF1D2,48,71,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.MILEAGE_N95 ,18DAF1D2,76,78,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.VIOLATION_TYPE_N95,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.SIZE_IDENTIFIER_N95,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22045E,62045E,4ff,SECURITY_LOG_N95.IDENTIFIER_VIOLATED_FRAME_N95 ,18DAF1D2,112,119,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.VIOLATED_BUS_N95,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.PAYLOAD_DLC_N95,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22045E,62045E,4ff,SECURITY_LOG_N95.PAYLOAD_VIOLATED_FRAME_N95 ,18DAF1D2,199,199,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.BUSLOAD_STATUS_N95,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.BUSLOAD_VALUE_CAN1_N95 ,18DAF1D2,208,215,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.BUSLOAD_VALUE_CAN2_N95 ,18DAF1D2,216,223,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.BUSLOAD_VALUE_CAN3_N95 ,18DAF1D2,224,231,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.BUSLOAD_VALUE_CAN4_N95 ,18DAF1D2,232,239,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.BUSLOAD_VALUE_CAN5_N95 ,18DAF1D2,240,247,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.BUSLOAD_VALUE_CAN6_N95 ,18DAF1D2,248,255,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.BUSLOAD_VALUE_CAN7_N95 ,18DAF1D2,256,263,1,0,0,,22045E,62045E,ff,SECURITY_LOG_N95.BUSLOAD_VALUE_CAN8_N95 ,18DAF1D2,24,47,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.ABOLUTE_TIME_N96 ,18DAF1D2,48,71,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.MILEAGE_N96 ,18DAF1D2,76,78,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.VIOLATION_TYPE_N96,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.SIZE_IDENTIFIER_N96,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22045F,62045F,4ff,SECURITY_LOG_N96.IDENTIFIER_VIOLATED_FRAME_N96 ,18DAF1D2,112,119,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.VIOLATED_BUS_N96,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.PAYLOAD_DLC_N96,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22045F,62045F,4ff,SECURITY_LOG_N96.PAYLOAD_VIOLATED_FRAME_N96 ,18DAF1D2,199,199,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.BUSLOAD_STATUS_N96,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.BUSLOAD_VALUE_CAN1_N96 ,18DAF1D2,208,215,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.BUSLOAD_VALUE_CAN2_N96 ,18DAF1D2,216,223,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.BUSLOAD_VALUE_CAN3_N96 ,18DAF1D2,224,231,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.BUSLOAD_VALUE_CAN4_N96 ,18DAF1D2,232,239,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.BUSLOAD_VALUE_CAN5_N96 ,18DAF1D2,240,247,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.BUSLOAD_VALUE_CAN6_N96 ,18DAF1D2,248,255,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.BUSLOAD_VALUE_CAN7_N96 ,18DAF1D2,256,263,1,0,0,,22045F,62045F,ff,SECURITY_LOG_N96.BUSLOAD_VALUE_CAN8_N96 ,18DAF1D2,24,47,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.ABOLUTE_TIME_N97 ,18DAF1D2,48,71,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.MILEAGE_N97 ,18DAF1D2,76,78,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.VIOLATION_TYPE_N97,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.SIZE_IDENTIFIER_N97,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220460,620460,4ff,SECURITY_LOG_N97.IDENTIFIER_VIOLATED_FRAME_N97 ,18DAF1D2,112,119,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.VIOLATED_BUS_N97,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.PAYLOAD_DLC_N97,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220460,620460,4ff,SECURITY_LOG_N97.PAYLOAD_VIOLATED_FRAME_N97 ,18DAF1D2,199,199,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.BUSLOAD_STATUS_N97,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.BUSLOAD_VALUE_CAN1_N97 ,18DAF1D2,208,215,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.BUSLOAD_VALUE_CAN2_N97 ,18DAF1D2,216,223,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.BUSLOAD_VALUE_CAN3_N97 ,18DAF1D2,224,231,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.BUSLOAD_VALUE_CAN4_N97 ,18DAF1D2,232,239,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.BUSLOAD_VALUE_CAN5_N97 ,18DAF1D2,240,247,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.BUSLOAD_VALUE_CAN6_N97 ,18DAF1D2,248,255,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.BUSLOAD_VALUE_CAN7_N97 ,18DAF1D2,256,263,1,0,0,,220460,620460,ff,SECURITY_LOG_N97.BUSLOAD_VALUE_CAN8_N97 ,18DAF1D2,24,47,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.ABOLUTE_TIME_N98 ,18DAF1D2,48,71,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.MILEAGE_N98 ,18DAF1D2,76,78,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.VIOLATION_TYPE_N98,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.SIZE_IDENTIFIER_N98,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220461,620461,4ff,SECURITY_LOG_N98.IDENTIFIER_VIOLATED_FRAME_N98 ,18DAF1D2,112,119,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.VIOLATED_BUS_N98,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.PAYLOAD_DLC_N98,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220461,620461,4ff,SECURITY_LOG_N98.PAYLOAD_VIOLATED_FRAME_N98 ,18DAF1D2,199,199,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.BUSLOAD_STATUS_N98,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.BUSLOAD_VALUE_CAN1_N98 ,18DAF1D2,208,215,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.BUSLOAD_VALUE_CAN2_N98 ,18DAF1D2,216,223,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.BUSLOAD_VALUE_CAN3_N98 ,18DAF1D2,224,231,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.BUSLOAD_VALUE_CAN4_N98 ,18DAF1D2,232,239,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.BUSLOAD_VALUE_CAN5_N98 ,18DAF1D2,240,247,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.BUSLOAD_VALUE_CAN6_N98 ,18DAF1D2,248,255,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.BUSLOAD_VALUE_CAN7_N98 ,18DAF1D2,256,263,1,0,0,,220461,620461,ff,SECURITY_LOG_N98.BUSLOAD_VALUE_CAN8_N98 ,18DAF1D2,24,47,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.ABOLUTE_TIME_N99 ,18DAF1D2,48,71,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.MILEAGE_N99 ,18DAF1D2,76,78,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.VIOLATION_TYPE_N99,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.SIZE_IDENTIFIER_N99,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220462,620462,4ff,SECURITY_LOG_N99.IDENTIFIER_VIOLATED_FRAME_N99 ,18DAF1D2,112,119,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.VIOLATED_BUS_N99,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.PAYLOAD_DLC_N99,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220462,620462,4ff,SECURITY_LOG_N99.PAYLOAD_VIOLATED_FRAME_N99 ,18DAF1D2,199,199,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.BUSLOAD_STATUS_N99,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.BUSLOAD_VALUE_CAN1_N99 ,18DAF1D2,208,215,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.BUSLOAD_VALUE_CAN2_N99 ,18DAF1D2,216,223,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.BUSLOAD_VALUE_CAN3_N99 ,18DAF1D2,224,231,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.BUSLOAD_VALUE_CAN4_N99 ,18DAF1D2,232,239,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.BUSLOAD_VALUE_CAN5_N99 ,18DAF1D2,240,247,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.BUSLOAD_VALUE_CAN6_N99 ,18DAF1D2,248,255,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.BUSLOAD_VALUE_CAN7_N99 ,18DAF1D2,256,263,1,0,0,,220462,620462,ff,SECURITY_LOG_N99.BUSLOAD_VALUE_CAN8_N99 ,18DAF1D2,24,47,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.ABOLUTE_TIME_N100 ,18DAF1D2,48,71,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.MILEAGE_N100 ,18DAF1D2,76,78,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.VIOLATION_TYPE_N100,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.SIZE_IDENTIFIER_N100,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220463,620463,4ff,SECURITY_LOG_N100.IDENTIFIER_VIOLATED_FRAME_N100 ,18DAF1D2,112,119,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.VIOLATED_BUS_N100,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.PAYLOAD_DLC_N100,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220463,620463,4ff,SECURITY_LOG_N100.PAYLOAD_VIOLATED_FRAME_N100 ,18DAF1D2,199,199,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.BUSLOAD_STATUS_N100,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.BUSLOAD_VALUE_CAN1_N100 ,18DAF1D2,208,215,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.BUSLOAD_VALUE_CAN2_N100 ,18DAF1D2,216,223,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.BUSLOAD_VALUE_CAN3_N100 ,18DAF1D2,224,231,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.BUSLOAD_VALUE_CAN4_N100 ,18DAF1D2,232,239,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.BUSLOAD_VALUE_CAN5_N100 ,18DAF1D2,240,247,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.BUSLOAD_VALUE_CAN6_N100 ,18DAF1D2,248,255,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.BUSLOAD_VALUE_CAN7_N100 ,18DAF1D2,256,263,1,0,0,,220463,620463,ff,SECURITY_LOG_N100.BUSLOAD_VALUE_CAN8_N100 ,18DAF1D2,24,47,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.ABOLUTE_TIME_N101 ,18DAF1D2,48,71,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.MILEAGE_N101 ,18DAF1D2,76,78,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.VIOLATION_TYPE_N101,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.SIZE_IDENTIFIER_N101,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220464,620464,4ff,SECURITY_LOG_N101.IDENTIFIER_VIOLATED_FRAME_N101 ,18DAF1D2,112,119,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.VIOLATED_BUS_N101,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.PAYLOAD_DLC_N101,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220464,620464,4ff,SECURITY_LOG_N101.PAYLOAD_VIOLATED_FRAME_N101 ,18DAF1D2,199,199,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.BUSLOAD_STATUS_N101,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.BUSLOAD_VALUE_CAN1_N101 ,18DAF1D2,208,215,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.BUSLOAD_VALUE_CAN2_N101 ,18DAF1D2,216,223,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.BUSLOAD_VALUE_CAN3_N101 ,18DAF1D2,224,231,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.BUSLOAD_VALUE_CAN4_N101 ,18DAF1D2,232,239,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.BUSLOAD_VALUE_CAN5_N101 ,18DAF1D2,240,247,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.BUSLOAD_VALUE_CAN6_N101 ,18DAF1D2,248,255,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.BUSLOAD_VALUE_CAN7_N101 ,18DAF1D2,256,263,1,0,0,,220464,620464,ff,SECURITY_LOG_N101.BUSLOAD_VALUE_CAN8_N101 ,18DAF1D2,24,47,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.ABOLUTE_TIME_N102 ,18DAF1D2,48,71,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.MILEAGE_N102 ,18DAF1D2,76,78,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.VIOLATION_TYPE_N102,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.SIZE_IDENTIFIER_N102,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220465,620465,4ff,SECURITY_LOG_N102.IDENTIFIER_VIOLATED_FRAME_N102 ,18DAF1D2,112,119,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.VIOLATED_BUS_N102,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.PAYLOAD_DLC_N102,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220465,620465,4ff,SECURITY_LOG_N102.PAYLOAD_VIOLATED_FRAME_N102 ,18DAF1D2,199,199,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.BUSLOAD_STATUS_N102,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.BUSLOAD_VALUE_CAN1_N102 ,18DAF1D2,208,215,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.BUSLOAD_VALUE_CAN2_N102 ,18DAF1D2,216,223,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.BUSLOAD_VALUE_CAN3_N102 ,18DAF1D2,224,231,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.BUSLOAD_VALUE_CAN4_N102 ,18DAF1D2,232,239,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.BUSLOAD_VALUE_CAN5_N102 ,18DAF1D2,240,247,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.BUSLOAD_VALUE_CAN6_N102 ,18DAF1D2,248,255,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.BUSLOAD_VALUE_CAN7_N102 ,18DAF1D2,256,263,1,0,0,,220465,620465,ff,SECURITY_LOG_N102.BUSLOAD_VALUE_CAN8_N102 ,18DAF1D2,24,47,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.ABOLUTE_TIME_N103 ,18DAF1D2,48,71,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.MILEAGE_N103 ,18DAF1D2,76,78,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.VIOLATION_TYPE_N103,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.SIZE_IDENTIFIER_N103,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220466,620466,4ff,SECURITY_LOG_N103.IDENTIFIER_VIOLATED_FRAME_N103 ,18DAF1D2,112,119,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.VIOLATED_BUS_N103,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.PAYLOAD_DLC_N103,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220466,620466,4ff,SECURITY_LOG_N103.PAYLOAD_VIOLATED_FRAME_N103 ,18DAF1D2,199,199,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.BUSLOAD_STATUS_N103,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.BUSLOAD_VALUE_CAN1_N103 ,18DAF1D2,208,215,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.BUSLOAD_VALUE_CAN2_N103 ,18DAF1D2,216,223,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.BUSLOAD_VALUE_CAN3_N103 ,18DAF1D2,224,231,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.BUSLOAD_VALUE_CAN4_N103 ,18DAF1D2,232,239,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.BUSLOAD_VALUE_CAN5_N103 ,18DAF1D2,240,247,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.BUSLOAD_VALUE_CAN6_N103 ,18DAF1D2,248,255,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.BUSLOAD_VALUE_CAN7_N103 ,18DAF1D2,256,263,1,0,0,,220466,620466,ff,SECURITY_LOG_N103.BUSLOAD_VALUE_CAN8_N103 ,18DAF1D2,24,47,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.ABOLUTE_TIME_N104 ,18DAF1D2,48,71,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.MILEAGE_N104 ,18DAF1D2,76,78,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.VIOLATION_TYPE_N104,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.SIZE_IDENTIFIER_N104,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220467,620467,4ff,SECURITY_LOG_N104.IDENTIFIER_VIOLATED_FRAME_N104 ,18DAF1D2,112,119,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.VIOLATED_BUS_N104,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.PAYLOAD_DLC_N104,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220467,620467,4ff,SECURITY_LOG_N104.PAYLOAD_VIOLATED_FRAME_N104 ,18DAF1D2,199,199,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.BUSLOAD_STATUS_N104,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.BUSLOAD_VALUE_CAN1_N104 ,18DAF1D2,208,215,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.BUSLOAD_VALUE_CAN2_N104 ,18DAF1D2,216,223,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.BUSLOAD_VALUE_CAN3_N104 ,18DAF1D2,224,231,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.BUSLOAD_VALUE_CAN4_N104 ,18DAF1D2,232,239,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.BUSLOAD_VALUE_CAN5_N104 ,18DAF1D2,240,247,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.BUSLOAD_VALUE_CAN6_N104 ,18DAF1D2,248,255,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.BUSLOAD_VALUE_CAN7_N104 ,18DAF1D2,256,263,1,0,0,,220467,620467,ff,SECURITY_LOG_N104.BUSLOAD_VALUE_CAN8_N104 ,18DAF1D2,24,47,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.ABOLUTE_TIME_N105 ,18DAF1D2,48,71,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.MILEAGE_N105 ,18DAF1D2,76,78,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.VIOLATION_TYPE_N105,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.SIZE_IDENTIFIER_N105,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220468,620468,4ff,SECURITY_LOG_N105.IDENTIFIER_VIOLATED_FRAME_N105 ,18DAF1D2,112,119,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.VIOLATED_BUS_N105,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.PAYLOAD_DLC_N105,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220468,620468,4ff,SECURITY_LOG_N105.PAYLOAD_VIOLATED_FRAME_N105 ,18DAF1D2,199,199,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.BUSLOAD_STATUS_N105,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.BUSLOAD_VALUE_CAN1_N105 ,18DAF1D2,208,215,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.BUSLOAD_VALUE_CAN2_N105 ,18DAF1D2,216,223,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.BUSLOAD_VALUE_CAN3_N105 ,18DAF1D2,224,231,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.BUSLOAD_VALUE_CAN4_N105 ,18DAF1D2,232,239,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.BUSLOAD_VALUE_CAN5_N105 ,18DAF1D2,240,247,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.BUSLOAD_VALUE_CAN6_N105 ,18DAF1D2,248,255,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.BUSLOAD_VALUE_CAN7_N105 ,18DAF1D2,256,263,1,0,0,,220468,620468,ff,SECURITY_LOG_N105.BUSLOAD_VALUE_CAN8_N105 ,18DAF1D2,24,47,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.ABOLUTE_TIME_N106 ,18DAF1D2,48,71,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.MILEAGE_N106 ,18DAF1D2,76,78,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.VIOLATION_TYPE_N106,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.SIZE_IDENTIFIER_N106,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220469,620469,4ff,SECURITY_LOG_N106.IDENTIFIER_VIOLATED_FRAME_N106 ,18DAF1D2,112,119,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.VIOLATED_BUS_N106,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.PAYLOAD_DLC_N106,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220469,620469,4ff,SECURITY_LOG_N106.PAYLOAD_VIOLATED_FRAME_N106 ,18DAF1D2,199,199,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.BUSLOAD_STATUS_N106,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.BUSLOAD_VALUE_CAN1_N106 ,18DAF1D2,208,215,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.BUSLOAD_VALUE_CAN2_N106 ,18DAF1D2,216,223,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.BUSLOAD_VALUE_CAN3_N106 ,18DAF1D2,224,231,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.BUSLOAD_VALUE_CAN4_N106 ,18DAF1D2,232,239,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.BUSLOAD_VALUE_CAN5_N106 ,18DAF1D2,240,247,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.BUSLOAD_VALUE_CAN6_N106 ,18DAF1D2,248,255,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.BUSLOAD_VALUE_CAN7_N106 ,18DAF1D2,256,263,1,0,0,,220469,620469,ff,SECURITY_LOG_N106.BUSLOAD_VALUE_CAN8_N106 ,18DAF1D2,24,47,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.ABOLUTE_TIME_N107 ,18DAF1D2,48,71,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.MILEAGE_N107 ,18DAF1D2,76,78,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.VIOLATION_TYPE_N107,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.SIZE_IDENTIFIER_N107,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22046A,62046A,4ff,SECURITY_LOG_N107.IDENTIFIER_VIOLATED_FRAME_N107 ,18DAF1D2,112,119,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.VIOLATED_BUS_N107,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.PAYLOAD_DLC_N107,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22046A,62046A,4ff,SECURITY_LOG_N107.PAYLOAD_VIOLATED_FRAME_N107 ,18DAF1D2,199,199,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.BUSLOAD_STATUS_N107,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.BUSLOAD_VALUE_CAN1_N107 ,18DAF1D2,208,215,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.BUSLOAD_VALUE_CAN2_N107 ,18DAF1D2,216,223,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.BUSLOAD_VALUE_CAN3_N107 ,18DAF1D2,224,231,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.BUSLOAD_VALUE_CAN4_N107 ,18DAF1D2,232,239,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.BUSLOAD_VALUE_CAN5_N107 ,18DAF1D2,240,247,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.BUSLOAD_VALUE_CAN6_N107 ,18DAF1D2,248,255,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.BUSLOAD_VALUE_CAN7_N107 ,18DAF1D2,256,263,1,0,0,,22046A,62046A,ff,SECURITY_LOG_N107.BUSLOAD_VALUE_CAN8_N107 ,18DAF1D2,24,47,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.ABOLUTE_TIME_N108 ,18DAF1D2,48,71,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.MILEAGE_N108 ,18DAF1D2,76,78,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.VIOLATION_TYPE_N108,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.SIZE_IDENTIFIER_N108,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22046B,62046B,4ff,SECURITY_LOG_N108.IDENTIFIER_VIOLATED_FRAME_N108 ,18DAF1D2,112,119,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.VIOLATED_BUS_N108,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.PAYLOAD_DLC_N108,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22046B,62046B,4ff,SECURITY_LOG_N108.PAYLOAD_VIOLATED_FRAME_N108 ,18DAF1D2,199,199,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.BUSLOAD_STATUS_N108,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.BUSLOAD_VALUE_CAN1_N108 ,18DAF1D2,208,215,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.BUSLOAD_VALUE_CAN2_N108 ,18DAF1D2,216,223,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.BUSLOAD_VALUE_CAN3_N108 ,18DAF1D2,224,231,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.BUSLOAD_VALUE_CAN4_N108 ,18DAF1D2,232,239,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.BUSLOAD_VALUE_CAN5_N108 ,18DAF1D2,240,247,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.BUSLOAD_VALUE_CAN6_N108 ,18DAF1D2,248,255,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.BUSLOAD_VALUE_CAN7_N108 ,18DAF1D2,256,263,1,0,0,,22046B,62046B,ff,SECURITY_LOG_N108.BUSLOAD_VALUE_CAN8_N108 ,18DAF1D2,24,47,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.ABOLUTE_TIME_N109 ,18DAF1D2,48,71,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.MILEAGE_N109 ,18DAF1D2,76,78,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.VIOLATION_TYPE_N109,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.SIZE_IDENTIFIER_N109,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22046C,62046C,4ff,SECURITY_LOG_N109.IDENTIFIER_VIOLATED_FRAME_N109 ,18DAF1D2,112,119,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.VIOLATED_BUS_N109,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.PAYLOAD_DLC_N109,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22046C,62046C,4ff,SECURITY_LOG_N109.PAYLOAD_VIOLATED_FRAME_N109 ,18DAF1D2,199,199,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.BUSLOAD_STATUS_N109,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.BUSLOAD_VALUE_CAN1_N109 ,18DAF1D2,208,215,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.BUSLOAD_VALUE_CAN2_N109 ,18DAF1D2,216,223,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.BUSLOAD_VALUE_CAN3_N109 ,18DAF1D2,224,231,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.BUSLOAD_VALUE_CAN4_N109 ,18DAF1D2,232,239,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.BUSLOAD_VALUE_CAN5_N109 ,18DAF1D2,240,247,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.BUSLOAD_VALUE_CAN6_N109 ,18DAF1D2,248,255,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.BUSLOAD_VALUE_CAN7_N109 ,18DAF1D2,256,263,1,0,0,,22046C,62046C,ff,SECURITY_LOG_N109.BUSLOAD_VALUE_CAN8_N109 ,18DAF1D2,24,47,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.ABOLUTE_TIME_N110 ,18DAF1D2,48,71,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.MILEAGE_N110 ,18DAF1D2,76,78,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.VIOLATION_TYPE_N110,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.SIZE_IDENTIFIER_N110,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22046D,62046D,4ff,SECURITY_LOG_N110.IDENTIFIER_VIOLATED_FRAME_N110 ,18DAF1D2,112,119,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.VIOLATED_BUS_N110,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.PAYLOAD_DLC_N110,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22046D,62046D,4ff,SECURITY_LOG_N110.PAYLOAD_VIOLATED_FRAME_N110 ,18DAF1D2,199,199,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.BUSLOAD_STATUS_N110,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.BUSLOAD_VALUE_CAN1_N110 ,18DAF1D2,208,215,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.BUSLOAD_VALUE_CAN2_N110 ,18DAF1D2,216,223,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.BUSLOAD_VALUE_CAN3_N110 ,18DAF1D2,224,231,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.BUSLOAD_VALUE_CAN4_N110 ,18DAF1D2,232,239,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.BUSLOAD_VALUE_CAN5_N110 ,18DAF1D2,240,247,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.BUSLOAD_VALUE_CAN6_N110 ,18DAF1D2,248,255,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.BUSLOAD_VALUE_CAN7_N110 ,18DAF1D2,256,263,1,0,0,,22046D,62046D,ff,SECURITY_LOG_N110.BUSLOAD_VALUE_CAN8_N110 ,18DAF1D2,24,47,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.ABOLUTE_TIME_N111 ,18DAF1D2,48,71,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.MILEAGE_N111 ,18DAF1D2,76,78,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.VIOLATION_TYPE_N111,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.SIZE_IDENTIFIER_N111,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22046E,62046E,4ff,SECURITY_LOG_N111.IDENTIFIER_VIOLATED_FRAME_N111 ,18DAF1D2,112,119,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.VIOLATED_BUS_N111,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.PAYLOAD_DLC_N111,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22046E,62046E,4ff,SECURITY_LOG_N111.PAYLOAD_VIOLATED_FRAME_N111 ,18DAF1D2,199,199,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.BUSLOAD_STATUS_N111,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.BUSLOAD_VALUE_CAN1_N111 ,18DAF1D2,208,215,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.BUSLOAD_VALUE_CAN2_N111 ,18DAF1D2,216,223,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.BUSLOAD_VALUE_CAN3_N111 ,18DAF1D2,224,231,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.BUSLOAD_VALUE_CAN4_N111 ,18DAF1D2,232,239,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.BUSLOAD_VALUE_CAN5_N111 ,18DAF1D2,240,247,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.BUSLOAD_VALUE_CAN6_N111 ,18DAF1D2,248,255,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.BUSLOAD_VALUE_CAN7_N111 ,18DAF1D2,256,263,1,0,0,,22046E,62046E,ff,SECURITY_LOG_N111.BUSLOAD_VALUE_CAN8_N111 ,18DAF1D2,24,47,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.ABOLUTE_TIME_N112 ,18DAF1D2,48,71,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.MILEAGE_N112 ,18DAF1D2,76,78,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.VIOLATION_TYPE_N112,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.SIZE_IDENTIFIER_N112,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22046F,62046F,4ff,SECURITY_LOG_N112.IDENTIFIER_VIOLATED_FRAME_N112 ,18DAF1D2,112,119,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.VIOLATED_BUS_N112,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.PAYLOAD_DLC_N112,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22046F,62046F,4ff,SECURITY_LOG_N112.PAYLOAD_VIOLATED_FRAME_N112 ,18DAF1D2,199,199,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.BUSLOAD_STATUS_N112,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.BUSLOAD_VALUE_CAN1_N112 ,18DAF1D2,208,215,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.BUSLOAD_VALUE_CAN2_N112 ,18DAF1D2,216,223,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.BUSLOAD_VALUE_CAN3_N112 ,18DAF1D2,224,231,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.BUSLOAD_VALUE_CAN4_N112 ,18DAF1D2,232,239,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.BUSLOAD_VALUE_CAN5_N112 ,18DAF1D2,240,247,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.BUSLOAD_VALUE_CAN6_N112 ,18DAF1D2,248,255,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.BUSLOAD_VALUE_CAN7_N112 ,18DAF1D2,256,263,1,0,0,,22046F,62046F,ff,SECURITY_LOG_N112.BUSLOAD_VALUE_CAN8_N112 ,18DAF1D2,24,47,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.ABOLUTE_TIME_N113 ,18DAF1D2,48,71,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.MILEAGE_N113 ,18DAF1D2,76,78,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.VIOLATION_TYPE_N113,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.SIZE_IDENTIFIER_N113,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220470,620470,4ff,SECURITY_LOG_N113.IDENTIFIER_VIOLATED_FRAME_N113 ,18DAF1D2,112,119,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.VIOLATED_BUS_N113,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.PAYLOAD_DLC_N113,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220470,620470,4ff,SECURITY_LOG_N113.PAYLOAD_VIOLATED_FRAME_N113 ,18DAF1D2,199,199,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.BUSLOAD_STATUS_N113,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.BUSLOAD_VALUE_CAN1_N113 ,18DAF1D2,208,215,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.BUSLOAD_VALUE_CAN2_N113 ,18DAF1D2,216,223,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.BUSLOAD_VALUE_CAN3_N113 ,18DAF1D2,224,231,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.BUSLOAD_VALUE_CAN4_N113 ,18DAF1D2,232,239,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.BUSLOAD_VALUE_CAN5_N113 ,18DAF1D2,240,247,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.BUSLOAD_VALUE_CAN6_N113 ,18DAF1D2,248,255,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.BUSLOAD_VALUE_CAN7_N113 ,18DAF1D2,256,263,1,0,0,,220470,620470,ff,SECURITY_LOG_N113.BUSLOAD_VALUE_CAN8_N113 ,18DAF1D2,24,47,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.ABOLUTE_TIME_N114 ,18DAF1D2,48,71,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.MILEAGE_N114 ,18DAF1D2,76,78,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.VIOLATION_TYPE_N114,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.SIZE_IDENTIFIER_N114,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220471,620471,4ff,SECURITY_LOG_N114.IDENTIFIER_VIOLATED_FRAME_N114 ,18DAF1D2,112,119,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.VIOLATED_BUS_N114,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.PAYLOAD_DLC_N114,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220471,620471,4ff,SECURITY_LOG_N114.PAYLOAD_VIOLATED_FRAME_N114 ,18DAF1D2,199,199,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.BUSLOAD_STATUS_N114,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.BUSLOAD_VALUE_CAN1_N114 ,18DAF1D2,208,215,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.BUSLOAD_VALUE_CAN2_N114 ,18DAF1D2,216,223,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.BUSLOAD_VALUE_CAN3_N114 ,18DAF1D2,224,231,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.BUSLOAD_VALUE_CAN4_N114 ,18DAF1D2,232,239,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.BUSLOAD_VALUE_CAN5_N114 ,18DAF1D2,240,247,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.BUSLOAD_VALUE_CAN6_N114 ,18DAF1D2,248,255,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.BUSLOAD_VALUE_CAN7_N114 ,18DAF1D2,256,263,1,0,0,,220471,620471,ff,SECURITY_LOG_N114.BUSLOAD_VALUE_CAN8_N114 ,18DAF1D2,24,47,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.ABOLUTE_TIME_N115 ,18DAF1D2,48,71,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.MILEAGE_N115 ,18DAF1D2,76,78,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.VIOLATION_TYPE_N115,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.SIZE_IDENTIFIER_N115,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220472,620472,4ff,SECURITY_LOG_N115.IDENTIFIER_VIOLATED_FRAME_N115 ,18DAF1D2,112,119,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.VIOLATED_BUS_N115,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.PAYLOAD_DLC_N115,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220472,620472,4ff,SECURITY_LOG_N115.PAYLOAD_VIOLATED_FRAME_N115 ,18DAF1D2,199,199,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.BUSLOAD_STATUS_N115,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.BUSLOAD_VALUE_CAN1_N115 ,18DAF1D2,208,215,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.BUSLOAD_VALUE_CAN2_N115 ,18DAF1D2,216,223,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.BUSLOAD_VALUE_CAN3_N115 ,18DAF1D2,224,231,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.BUSLOAD_VALUE_CAN4_N115 ,18DAF1D2,232,239,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.BUSLOAD_VALUE_CAN5_N115 ,18DAF1D2,240,247,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.BUSLOAD_VALUE_CAN6_N115 ,18DAF1D2,248,255,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.BUSLOAD_VALUE_CAN7_N115 ,18DAF1D2,256,263,1,0,0,,220472,620472,ff,SECURITY_LOG_N115.BUSLOAD_VALUE_CAN8_N115 ,18DAF1D2,24,47,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.ABOLUTE_TIME_N116 ,18DAF1D2,48,71,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.MILEAGE_N116 ,18DAF1D2,76,78,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.VIOLATION_TYPE_N116,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.SIZE_IDENTIFIER_N116,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220473,620473,4ff,SECURITY_LOG_N116.IDENTIFIER_VIOLATED_FRAME_N116 ,18DAF1D2,112,119,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.VIOLATED_BUS_N116,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.PAYLOAD_DLC_N116,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220473,620473,4ff,SECURITY_LOG_N116.PAYLOAD_VIOLATED_FRAME_N116 ,18DAF1D2,199,199,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.BUSLOAD_STATUS_N116,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.BUSLOAD_VALUE_CAN1_N116 ,18DAF1D2,208,215,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.BUSLOAD_VALUE_CAN2_N116 ,18DAF1D2,216,223,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.BUSLOAD_VALUE_CAN3_N116 ,18DAF1D2,224,231,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.BUSLOAD_VALUE_CAN4_N116 ,18DAF1D2,232,239,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.BUSLOAD_VALUE_CAN5_N116 ,18DAF1D2,240,247,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.BUSLOAD_VALUE_CAN6_N116 ,18DAF1D2,248,255,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.BUSLOAD_VALUE_CAN7_N116 ,18DAF1D2,256,263,1,0,0,,220473,620473,ff,SECURITY_LOG_N116.BUSLOAD_VALUE_CAN8_N116 ,18DAF1D2,24,47,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.ABOLUTE_TIME_N117 ,18DAF1D2,48,71,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.MILEAGE_N117 ,18DAF1D2,76,78,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.VIOLATION_TYPE_N117,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.SIZE_IDENTIFIER_N117,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220474,620474,4ff,SECURITY_LOG_N117.IDENTIFIER_VIOLATED_FRAME_N117 ,18DAF1D2,112,119,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.VIOLATED_BUS_N117,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.PAYLOAD_DLC_N117,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220474,620474,4ff,SECURITY_LOG_N117.PAYLOAD_VIOLATED_FRAME_N117 ,18DAF1D2,199,199,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.BUSLOAD_STATUS_N117,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.BUSLOAD_VALUE_CAN1_N117 ,18DAF1D2,208,215,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.BUSLOAD_VALUE_CAN2_N117 ,18DAF1D2,216,223,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.BUSLOAD_VALUE_CAN3_N117 ,18DAF1D2,224,231,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.BUSLOAD_VALUE_CAN4_N117 ,18DAF1D2,232,239,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.BUSLOAD_VALUE_CAN5_N117 ,18DAF1D2,240,247,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.BUSLOAD_VALUE_CAN6_N117 ,18DAF1D2,248,255,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.BUSLOAD_VALUE_CAN7_N117 ,18DAF1D2,256,263,1,0,0,,220474,620474,ff,SECURITY_LOG_N117.BUSLOAD_VALUE_CAN8_N117 ,18DAF1D2,24,47,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.ABOLUTE_TIME_N118 ,18DAF1D2,48,71,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.MILEAGE_N118 ,18DAF1D2,76,78,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.VIOLATION_TYPE_N118,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.SIZE_IDENTIFIER_N118,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220475,620475,4ff,SECURITY_LOG_N118.IDENTIFIER_VIOLATED_FRAME_N118 ,18DAF1D2,112,119,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.VIOLATED_BUS_N118,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.PAYLOAD_DLC_N118,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220475,620475,4ff,SECURITY_LOG_N118.PAYLOAD_VIOLATED_FRAME_N118 ,18DAF1D2,199,199,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.BUSLOAD_STATUS_N118,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.BUSLOAD_VALUE_CAN1_N118 ,18DAF1D2,208,215,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.BUSLOAD_VALUE_CAN2_N118 ,18DAF1D2,216,223,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.BUSLOAD_VALUE_CAN3_N118 ,18DAF1D2,224,231,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.BUSLOAD_VALUE_CAN4_N118 ,18DAF1D2,232,239,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.BUSLOAD_VALUE_CAN5_N118 ,18DAF1D2,240,247,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.BUSLOAD_VALUE_CAN6_N118 ,18DAF1D2,248,255,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.BUSLOAD_VALUE_CAN7_N118 ,18DAF1D2,256,263,1,0,0,,220475,620475,ff,SECURITY_LOG_N118.BUSLOAD_VALUE_CAN8_N118 ,18DAF1D2,24,47,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.ABOLUTE_TIME_N119 ,18DAF1D2,48,71,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.MILEAGE_N119 ,18DAF1D2,76,78,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.VIOLATION_TYPE_N119,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.SIZE_IDENTIFIER_N119,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220476,620476,4ff,SECURITY_LOG_N119.IDENTIFIER_VIOLATED_FRAME_N119 ,18DAF1D2,112,119,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.VIOLATED_BUS_N119,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.PAYLOAD_DLC_N119,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220476,620476,4ff,SECURITY_LOG_N119.PAYLOAD_VIOLATED_FRAME_N119 ,18DAF1D2,199,199,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.BUSLOAD_STATUS_N119,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.BUSLOAD_VALUE_CAN1_N119 ,18DAF1D2,208,215,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.BUSLOAD_VALUE_CAN2_N119 ,18DAF1D2,216,223,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.BUSLOAD_VALUE_CAN3_N119 ,18DAF1D2,224,231,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.BUSLOAD_VALUE_CAN4_N119 ,18DAF1D2,232,239,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.BUSLOAD_VALUE_CAN5_N119 ,18DAF1D2,240,247,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.BUSLOAD_VALUE_CAN6_N119 ,18DAF1D2,248,255,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.BUSLOAD_VALUE_CAN7_N119 ,18DAF1D2,256,263,1,0,0,,220476,620476,ff,SECURITY_LOG_N119.BUSLOAD_VALUE_CAN8_N119 ,18DAF1D2,24,47,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.ABOLUTE_TIME_N120 ,18DAF1D2,48,71,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.MILEAGE_N120 ,18DAF1D2,76,78,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.VIOLATION_TYPE_N120,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.SIZE_IDENTIFIER_N120,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220477,620477,4ff,SECURITY_LOG_N120.IDENTIFIER_VIOLATED_FRAME_N120 ,18DAF1D2,112,119,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.VIOLATED_BUS_N120,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.PAYLOAD_DLC_N120,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220477,620477,4ff,SECURITY_LOG_N120.PAYLOAD_VIOLATED_FRAME_N120 ,18DAF1D2,199,199,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.BUSLOAD_STATUS_N120,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.BUSLOAD_VALUE_CAN1_N120 ,18DAF1D2,208,215,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.BUSLOAD_VALUE_CAN2_N120 ,18DAF1D2,216,223,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.BUSLOAD_VALUE_CAN3_N120 ,18DAF1D2,224,231,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.BUSLOAD_VALUE_CAN4_N120 ,18DAF1D2,232,239,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.BUSLOAD_VALUE_CAN5_N120 ,18DAF1D2,240,247,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.BUSLOAD_VALUE_CAN6_N120 ,18DAF1D2,248,255,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.BUSLOAD_VALUE_CAN7_N120 ,18DAF1D2,256,263,1,0,0,,220477,620477,ff,SECURITY_LOG_N120.BUSLOAD_VALUE_CAN8_N120 ,18DAF1D2,24,47,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.ABOLUTE_TIME_N121 ,18DAF1D2,48,71,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.MILEAGE_N121 ,18DAF1D2,76,78,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.VIOLATION_TYPE_N121,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.SIZE_IDENTIFIER_N121,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220478,620478,4ff,SECURITY_LOG_N121.IDENTIFIER_VIOLATED_FRAME_N121 ,18DAF1D2,112,119,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.VIOLATED_BUS_N121,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.PAYLOAD_DLC_N121,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220478,620478,4ff,SECURITY_LOG_N121.PAYLOAD_VIOLATED_FRAME_N121 ,18DAF1D2,199,199,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.BUSLOAD_STATUS_N121,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.BUSLOAD_VALUE_CAN1_N121 ,18DAF1D2,208,215,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.BUSLOAD_VALUE_CAN2_N121 ,18DAF1D2,216,223,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.BUSLOAD_VALUE_CAN3_N121 ,18DAF1D2,224,231,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.BUSLOAD_VALUE_CAN4_N121 ,18DAF1D2,232,239,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.BUSLOAD_VALUE_CAN5_N121 ,18DAF1D2,240,247,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.BUSLOAD_VALUE_CAN6_N121 ,18DAF1D2,248,255,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.BUSLOAD_VALUE_CAN7_N121 ,18DAF1D2,256,263,1,0,0,,220478,620478,ff,SECURITY_LOG_N121.BUSLOAD_VALUE_CAN8_N121 ,18DAF1D2,24,47,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.ABOLUTE_TIME_N122 ,18DAF1D2,48,71,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.MILEAGE_N122 ,18DAF1D2,76,78,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.VIOLATION_TYPE_N122,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.SIZE_IDENTIFIER_N122,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220479,620479,4ff,SECURITY_LOG_N122.IDENTIFIER_VIOLATED_FRAME_N122 ,18DAF1D2,112,119,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.VIOLATED_BUS_N122,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.PAYLOAD_DLC_N122,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220479,620479,4ff,SECURITY_LOG_N122.PAYLOAD_VIOLATED_FRAME_N122 ,18DAF1D2,199,199,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.BUSLOAD_STATUS_N122,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.BUSLOAD_VALUE_CAN1_N122 ,18DAF1D2,208,215,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.BUSLOAD_VALUE_CAN2_N122 ,18DAF1D2,216,223,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.BUSLOAD_VALUE_CAN3_N122 ,18DAF1D2,224,231,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.BUSLOAD_VALUE_CAN4_N122 ,18DAF1D2,232,239,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.BUSLOAD_VALUE_CAN5_N122 ,18DAF1D2,240,247,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.BUSLOAD_VALUE_CAN6_N122 ,18DAF1D2,248,255,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.BUSLOAD_VALUE_CAN7_N122 ,18DAF1D2,256,263,1,0,0,,220479,620479,ff,SECURITY_LOG_N122.BUSLOAD_VALUE_CAN8_N122 ,18DAF1D2,24,47,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.ABOLUTE_TIME_N123 ,18DAF1D2,48,71,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.MILEAGE_N123 ,18DAF1D2,76,78,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.VIOLATION_TYPE_N123,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.SIZE_IDENTIFIER_N123,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22047A,62047A,4ff,SECURITY_LOG_N123.IDENTIFIER_VIOLATED_FRAME_N123 ,18DAF1D2,112,119,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.VIOLATED_BUS_N123,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.PAYLOAD_DLC_N123,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22047A,62047A,4ff,SECURITY_LOG_N123.PAYLOAD_VIOLATED_FRAME_N123 ,18DAF1D2,199,199,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.BUSLOAD_STATUS_N123,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.BUSLOAD_VALUE_CAN1_N123 ,18DAF1D2,208,215,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.BUSLOAD_VALUE_CAN2_N123 ,18DAF1D2,216,223,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.BUSLOAD_VALUE_CAN3_N123 ,18DAF1D2,224,231,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.BUSLOAD_VALUE_CAN4_N123 ,18DAF1D2,232,239,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.BUSLOAD_VALUE_CAN5_N123 ,18DAF1D2,240,247,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.BUSLOAD_VALUE_CAN6_N123 ,18DAF1D2,248,255,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.BUSLOAD_VALUE_CAN7_N123 ,18DAF1D2,256,263,1,0,0,,22047A,62047A,ff,SECURITY_LOG_N123.BUSLOAD_VALUE_CAN8_N123 ,18DAF1D2,24,47,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.ABOLUTE_TIME_N124 ,18DAF1D2,48,71,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.MILEAGE_N124 ,18DAF1D2,76,78,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.VIOLATION_TYPE_N124,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.SIZE_IDENTIFIER_N124,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22047B,62047B,4ff,SECURITY_LOG_N124.IDENTIFIER_VIOLATED_FRAME_N124 ,18DAF1D2,112,119,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.VIOLATED_BUS_N124,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.PAYLOAD_DLC_N124,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22047B,62047B,4ff,SECURITY_LOG_N124.PAYLOAD_VIOLATED_FRAME_N124 ,18DAF1D2,199,199,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.BUSLOAD_STATUS_N124,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.BUSLOAD_VALUE_CAN1_N124 ,18DAF1D2,208,215,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.BUSLOAD_VALUE_CAN2_N124 ,18DAF1D2,216,223,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.BUSLOAD_VALUE_CAN3_N124 ,18DAF1D2,224,231,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.BUSLOAD_VALUE_CAN4_N124 ,18DAF1D2,232,239,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.BUSLOAD_VALUE_CAN5_N124 ,18DAF1D2,240,247,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.BUSLOAD_VALUE_CAN6_N124 ,18DAF1D2,248,255,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.BUSLOAD_VALUE_CAN7_N124 ,18DAF1D2,256,263,1,0,0,,22047B,62047B,ff,SECURITY_LOG_N124.BUSLOAD_VALUE_CAN8_N124 ,18DAF1D2,24,47,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.ABOLUTE_TIME_N125 ,18DAF1D2,48,71,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.MILEAGE_N125 ,18DAF1D2,76,78,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.VIOLATION_TYPE_N125,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.SIZE_IDENTIFIER_N125,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22047C,62047C,4ff,SECURITY_LOG_N125.IDENTIFIER_VIOLATED_FRAME_N125 ,18DAF1D2,112,119,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.VIOLATED_BUS_N125,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.PAYLOAD_DLC_N125,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22047C,62047C,4ff,SECURITY_LOG_N125.PAYLOAD_VIOLATED_FRAME_N125 ,18DAF1D2,199,199,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.BUSLOAD_STATUS_N125,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.BUSLOAD_VALUE_CAN1_N125 ,18DAF1D2,208,215,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.BUSLOAD_VALUE_CAN2_N125 ,18DAF1D2,216,223,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.BUSLOAD_VALUE_CAN3_N125 ,18DAF1D2,224,231,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.BUSLOAD_VALUE_CAN4_N125 ,18DAF1D2,232,239,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.BUSLOAD_VALUE_CAN5_N125 ,18DAF1D2,240,247,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.BUSLOAD_VALUE_CAN6_N125 ,18DAF1D2,248,255,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.BUSLOAD_VALUE_CAN7_N125 ,18DAF1D2,256,263,1,0,0,,22047C,62047C,ff,SECURITY_LOG_N125.BUSLOAD_VALUE_CAN8_N125 ,18DAF1D2,24,47,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.ABOLUTE_TIME_N126 ,18DAF1D2,48,71,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.MILEAGE_N126 ,18DAF1D2,76,78,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.VIOLATION_TYPE_N126,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.SIZE_IDENTIFIER_N126,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22047D,62047D,4ff,SECURITY_LOG_N126.IDENTIFIER_VIOLATED_FRAME_N126 ,18DAF1D2,112,119,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.VIOLATED_BUS_N126,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.PAYLOAD_DLC_N126,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22047D,62047D,4ff,SECURITY_LOG_N126.PAYLOAD_VIOLATED_FRAME_N126 ,18DAF1D2,199,199,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.BUSLOAD_STATUS_N126,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.BUSLOAD_VALUE_CAN1_N126 ,18DAF1D2,208,215,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.BUSLOAD_VALUE_CAN2_N126 ,18DAF1D2,216,223,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.BUSLOAD_VALUE_CAN3_N126 ,18DAF1D2,224,231,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.BUSLOAD_VALUE_CAN4_N126 ,18DAF1D2,232,239,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.BUSLOAD_VALUE_CAN5_N126 ,18DAF1D2,240,247,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.BUSLOAD_VALUE_CAN6_N126 ,18DAF1D2,248,255,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.BUSLOAD_VALUE_CAN7_N126 ,18DAF1D2,256,263,1,0,0,,22047D,62047D,ff,SECURITY_LOG_N126.BUSLOAD_VALUE_CAN8_N126 ,18DAF1D2,24,47,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.ABOLUTE_TIME_N127 ,18DAF1D2,48,71,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.MILEAGE_N127 ,18DAF1D2,76,78,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.VIOLATION_TYPE_N127,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.SIZE_IDENTIFIER_N127,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22047E,62047E,4ff,SECURITY_LOG_N127.IDENTIFIER_VIOLATED_FRAME_N127 ,18DAF1D2,112,119,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.VIOLATED_BUS_N127,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.PAYLOAD_DLC_N127,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22047E,62047E,4ff,SECURITY_LOG_N127.PAYLOAD_VIOLATED_FRAME_N127 ,18DAF1D2,199,199,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.BUSLOAD_STATUS_N127,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.BUSLOAD_VALUE_CAN1_N127 ,18DAF1D2,208,215,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.BUSLOAD_VALUE_CAN2_N127 ,18DAF1D2,216,223,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.BUSLOAD_VALUE_CAN3_N127 ,18DAF1D2,224,231,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.BUSLOAD_VALUE_CAN4_N127 ,18DAF1D2,232,239,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.BUSLOAD_VALUE_CAN5_N127 ,18DAF1D2,240,247,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.BUSLOAD_VALUE_CAN6_N127 ,18DAF1D2,248,255,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.BUSLOAD_VALUE_CAN7_N127 ,18DAF1D2,256,263,1,0,0,,22047E,62047E,ff,SECURITY_LOG_N127.BUSLOAD_VALUE_CAN8_N127 ,18DAF1D2,24,47,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.ABOLUTE_TIME_N128 ,18DAF1D2,48,71,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.MILEAGE_N128 ,18DAF1D2,76,78,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.VIOLATION_TYPE_N128,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.SIZE_IDENTIFIER_N128,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22047F,62047F,4ff,SECURITY_LOG_N128.IDENTIFIER_VIOLATED_FRAME_N128 ,18DAF1D2,112,119,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.VIOLATED_BUS_N128,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.PAYLOAD_DLC_N128,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22047F,62047F,4ff,SECURITY_LOG_N128.PAYLOAD_VIOLATED_FRAME_N128 ,18DAF1D2,199,199,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.BUSLOAD_STATUS_N128,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.BUSLOAD_VALUE_CAN1_N128 ,18DAF1D2,208,215,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.BUSLOAD_VALUE_CAN2_N128 ,18DAF1D2,216,223,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.BUSLOAD_VALUE_CAN3_N128 ,18DAF1D2,224,231,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.BUSLOAD_VALUE_CAN4_N128 ,18DAF1D2,232,239,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.BUSLOAD_VALUE_CAN5_N128 ,18DAF1D2,240,247,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.BUSLOAD_VALUE_CAN6_N128 ,18DAF1D2,248,255,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.BUSLOAD_VALUE_CAN7_N128 ,18DAF1D2,256,263,1,0,0,,22047F,62047F,ff,SECURITY_LOG_N128.BUSLOAD_VALUE_CAN8_N128 ,18DAF1D2,24,47,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.ABOLUTE_TIME_N129 ,18DAF1D2,48,71,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.MILEAGE_N129 ,18DAF1D2,76,78,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.VIOLATION_TYPE_N129,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.SIZE_IDENTIFIER_N129,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220480,620480,4ff,SECURITY_LOG_N129.IDENTIFIER_VIOLATED_FRAME_N129 ,18DAF1D2,112,119,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.VIOLATED_BUS_N129,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.PAYLOAD_DLC_N129,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220480,620480,4ff,SECURITY_LOG_N129.PAYLOAD_VIOLATED_FRAME_N129 ,18DAF1D2,199,199,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.BUSLOAD_STATUS_N129,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.BUSLOAD_VALUE_CAN1_N129 ,18DAF1D2,208,215,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.BUSLOAD_VALUE_CAN2_N129 ,18DAF1D2,216,223,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.BUSLOAD_VALUE_CAN3_N129 ,18DAF1D2,224,231,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.BUSLOAD_VALUE_CAN4_N129 ,18DAF1D2,232,239,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.BUSLOAD_VALUE_CAN5_N129 ,18DAF1D2,240,247,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.BUSLOAD_VALUE_CAN6_N129 ,18DAF1D2,248,255,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.BUSLOAD_VALUE_CAN7_N129 ,18DAF1D2,256,263,1,0,0,,220480,620480,ff,SECURITY_LOG_N129.BUSLOAD_VALUE_CAN8_N129 ,18DAF1D2,24,47,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.ABOLUTE_TIME_N130 ,18DAF1D2,48,71,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.MILEAGE_N130 ,18DAF1D2,76,78,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.VIOLATION_TYPE_N130,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.SIZE_IDENTIFIER_N130,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220481,620481,4ff,SECURITY_LOG_N130.IDENTIFIER_VIOLATED_FRAME_N130 ,18DAF1D2,112,119,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.VIOLATED_BUS_N130,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.PAYLOAD_DLC_N130,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220481,620481,4ff,SECURITY_LOG_N130.PAYLOAD_VIOLATED_FRAME_N130 ,18DAF1D2,199,199,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.BUSLOAD_STATUS_N130,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.BUSLOAD_VALUE_CAN1_N130 ,18DAF1D2,208,215,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.BUSLOAD_VALUE_CAN2_N130 ,18DAF1D2,216,223,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.BUSLOAD_VALUE_CAN3_N130 ,18DAF1D2,224,231,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.BUSLOAD_VALUE_CAN4_N130 ,18DAF1D2,232,239,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.BUSLOAD_VALUE_CAN5_N130 ,18DAF1D2,240,247,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.BUSLOAD_VALUE_CAN6_N130 ,18DAF1D2,248,255,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.BUSLOAD_VALUE_CAN7_N130 ,18DAF1D2,256,263,1,0,0,,220481,620481,ff,SECURITY_LOG_N130.BUSLOAD_VALUE_CAN8_N130 ,18DAF1D2,24,47,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.ABOLUTE_TIME_N131 ,18DAF1D2,48,71,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.MILEAGE_N131 ,18DAF1D2,76,78,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.VIOLATION_TYPE_N131,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.SIZE_IDENTIFIER_N131,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220482,620482,4ff,SECURITY_LOG_N131.IDENTIFIER_VIOLATED_FRAME_N131 ,18DAF1D2,112,119,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.VIOLATED_BUS_N131,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.PAYLOAD_DLC_N131,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220482,620482,4ff,SECURITY_LOG_N131.PAYLOAD_VIOLATED_FRAME_N131 ,18DAF1D2,199,199,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.BUSLOAD_STATUS_N131,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.BUSLOAD_VALUE_CAN1_N131 ,18DAF1D2,208,215,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.BUSLOAD_VALUE_CAN2_N131 ,18DAF1D2,216,223,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.BUSLOAD_VALUE_CAN3_N131 ,18DAF1D2,224,231,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.BUSLOAD_VALUE_CAN4_N131 ,18DAF1D2,232,239,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.BUSLOAD_VALUE_CAN5_N131 ,18DAF1D2,240,247,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.BUSLOAD_VALUE_CAN6_N131 ,18DAF1D2,248,255,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.BUSLOAD_VALUE_CAN7_N131 ,18DAF1D2,256,263,1,0,0,,220482,620482,ff,SECURITY_LOG_N131.BUSLOAD_VALUE_CAN8_N131 ,18DAF1D2,24,47,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.ABOLUTE_TIME_N132 ,18DAF1D2,48,71,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.MILEAGE_N132 ,18DAF1D2,76,78,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.VIOLATION_TYPE_N132,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.SIZE_IDENTIFIER_N132,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220483,620483,4ff,SECURITY_LOG_N132.IDENTIFIER_VIOLATED_FRAME_N132 ,18DAF1D2,112,119,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.VIOLATED_BUS_N132,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.PAYLOAD_DLC_N132,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220483,620483,4ff,SECURITY_LOG_N132.PAYLOAD_VIOLATED_FRAME_N132 ,18DAF1D2,199,199,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.BUSLOAD_STATUS_N132,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.BUSLOAD_VALUE_CAN1_N132 ,18DAF1D2,208,215,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.BUSLOAD_VALUE_CAN2_N132 ,18DAF1D2,216,223,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.BUSLOAD_VALUE_CAN3_N132 ,18DAF1D2,224,231,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.BUSLOAD_VALUE_CAN4_N132 ,18DAF1D2,232,239,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.BUSLOAD_VALUE_CAN5_N132 ,18DAF1D2,240,247,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.BUSLOAD_VALUE_CAN6_N132 ,18DAF1D2,248,255,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.BUSLOAD_VALUE_CAN7_N132 ,18DAF1D2,256,263,1,0,0,,220483,620483,ff,SECURITY_LOG_N132.BUSLOAD_VALUE_CAN8_N132 ,18DAF1D2,24,47,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.ABOLUTE_TIME_N133 ,18DAF1D2,48,71,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.MILEAGE_N133 ,18DAF1D2,76,78,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.VIOLATION_TYPE_N133,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.SIZE_IDENTIFIER_N133,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220484,620484,4ff,SECURITY_LOG_N133.IDENTIFIER_VIOLATED_FRAME_N133 ,18DAF1D2,112,119,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.VIOLATED_BUS_N133,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.PAYLOAD_DLC_N133,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220484,620484,4ff,SECURITY_LOG_N133.PAYLOAD_VIOLATED_FRAME_N133 ,18DAF1D2,199,199,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.BUSLOAD_STATUS_N133,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.BUSLOAD_VALUE_CAN1_N133 ,18DAF1D2,208,215,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.BUSLOAD_VALUE_CAN2_N133 ,18DAF1D2,216,223,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.BUSLOAD_VALUE_CAN3_N133 ,18DAF1D2,224,231,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.BUSLOAD_VALUE_CAN4_N133 ,18DAF1D2,232,239,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.BUSLOAD_VALUE_CAN5_N133 ,18DAF1D2,240,247,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.BUSLOAD_VALUE_CAN6_N133 ,18DAF1D2,248,255,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.BUSLOAD_VALUE_CAN7_N133 ,18DAF1D2,256,263,1,0,0,,220484,620484,ff,SECURITY_LOG_N133.BUSLOAD_VALUE_CAN8_N133 ,18DAF1D2,24,47,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.ABOLUTE_TIME_N134 ,18DAF1D2,48,71,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.MILEAGE_N134 ,18DAF1D2,76,78,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.VIOLATION_TYPE_N134,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.SIZE_IDENTIFIER_N134,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220485,620485,4ff,SECURITY_LOG_N134.IDENTIFIER_VIOLATED_FRAME_N134 ,18DAF1D2,112,119,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.VIOLATED_BUS_N134,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.PAYLOAD_DLC_N134,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220485,620485,4ff,SECURITY_LOG_N134.PAYLOAD_VIOLATED_FRAME_N134 ,18DAF1D2,199,199,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.BUSLOAD_STATUS_N134,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.BUSLOAD_VALUE_CAN1_N134 ,18DAF1D2,208,215,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.BUSLOAD_VALUE_CAN2_N134 ,18DAF1D2,216,223,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.BUSLOAD_VALUE_CAN3_N134 ,18DAF1D2,224,231,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.BUSLOAD_VALUE_CAN4_N134 ,18DAF1D2,232,239,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.BUSLOAD_VALUE_CAN5_N134 ,18DAF1D2,240,247,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.BUSLOAD_VALUE_CAN6_N134 ,18DAF1D2,248,255,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.BUSLOAD_VALUE_CAN7_N134 ,18DAF1D2,256,263,1,0,0,,220485,620485,ff,SECURITY_LOG_N134.BUSLOAD_VALUE_CAN8_N134 ,18DAF1D2,24,47,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.ABOLUTE_TIME_N135 ,18DAF1D2,48,71,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.MILEAGE_N135 ,18DAF1D2,76,78,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.VIOLATION_TYPE_N135,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.SIZE_IDENTIFIER_N135,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220486,620486,4ff,SECURITY_LOG_N135.IDENTIFIER_VIOLATED_FRAME_N135 ,18DAF1D2,112,119,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.VIOLATED_BUS_N135,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.PAYLOAD_DLC_N135,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220486,620486,4ff,SECURITY_LOG_N135.PAYLOAD_VIOLATED_FRAME_N135 ,18DAF1D2,199,199,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.BUSLOAD_STATUS_N135,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.BUSLOAD_VALUE_CAN1_N135 ,18DAF1D2,208,215,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.BUSLOAD_VALUE_CAN2_N135 ,18DAF1D2,216,223,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.BUSLOAD_VALUE_CAN3_N135 ,18DAF1D2,224,231,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.BUSLOAD_VALUE_CAN4_N135 ,18DAF1D2,232,239,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.BUSLOAD_VALUE_CAN5_N135 ,18DAF1D2,240,247,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.BUSLOAD_VALUE_CAN6_N135 ,18DAF1D2,248,255,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.BUSLOAD_VALUE_CAN7_N135 ,18DAF1D2,256,263,1,0,0,,220486,620486,ff,SECURITY_LOG_N135.BUSLOAD_VALUE_CAN8_N135 ,18DAF1D2,24,47,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.ABOLUTE_TIME_N136 ,18DAF1D2,48,71,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.MILEAGE_N136 ,18DAF1D2,76,78,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.VIOLATION_TYPE_N136,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.SIZE_IDENTIFIER_N136,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220487,620487,4ff,SECURITY_LOG_N136.IDENTIFIER_VIOLATED_FRAME_N136 ,18DAF1D2,112,119,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.VIOLATED_BUS_N136,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.PAYLOAD_DLC_N136,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220487,620487,4ff,SECURITY_LOG_N136.PAYLOAD_VIOLATED_FRAME_N136 ,18DAF1D2,199,199,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.BUSLOAD_STATUS_N136,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.BUSLOAD_VALUE_CAN1_N136 ,18DAF1D2,208,215,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.BUSLOAD_VALUE_CAN2_N136 ,18DAF1D2,216,223,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.BUSLOAD_VALUE_CAN3_N136 ,18DAF1D2,224,231,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.BUSLOAD_VALUE_CAN4_N136 ,18DAF1D2,232,239,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.BUSLOAD_VALUE_CAN5_N136 ,18DAF1D2,240,247,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.BUSLOAD_VALUE_CAN6_N136 ,18DAF1D2,248,255,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.BUSLOAD_VALUE_CAN7_N136 ,18DAF1D2,256,263,1,0,0,,220487,620487,ff,SECURITY_LOG_N136.BUSLOAD_VALUE_CAN8_N136 ,18DAF1D2,24,47,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.ABOLUTE_TIME_N137 ,18DAF1D2,48,71,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.MILEAGE_N137 ,18DAF1D2,76,78,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.VIOLATION_TYPE_N137,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.SIZE_IDENTIFIER_N137,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220488,620488,4ff,SECURITY_LOG_N137.IDENTIFIER_VIOLATED_FRAME_N137 ,18DAF1D2,112,119,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.VIOLATED_BUS_N137,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.PAYLOAD_DLC_N137,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220488,620488,4ff,SECURITY_LOG_N137.PAYLOAD_VIOLATED_FRAME_N137 ,18DAF1D2,199,199,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.BUSLOAD_STATUS_N137,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.BUSLOAD_VALUE_CAN1_N137 ,18DAF1D2,208,215,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.BUSLOAD_VALUE_CAN2_N137 ,18DAF1D2,216,223,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.BUSLOAD_VALUE_CAN3_N137 ,18DAF1D2,224,231,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.BUSLOAD_VALUE_CAN4_N137 ,18DAF1D2,232,239,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.BUSLOAD_VALUE_CAN5_N137 ,18DAF1D2,240,247,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.BUSLOAD_VALUE_CAN6_N137 ,18DAF1D2,248,255,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.BUSLOAD_VALUE_CAN7_N137 ,18DAF1D2,256,263,1,0,0,,220488,620488,ff,SECURITY_LOG_N137.BUSLOAD_VALUE_CAN8_N137 ,18DAF1D2,24,47,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.ABOLUTE_TIME_N138 ,18DAF1D2,48,71,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.MILEAGE_N138 ,18DAF1D2,76,78,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.VIOLATION_TYPE_N138,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.SIZE_IDENTIFIER_N138,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220489,620489,4ff,SECURITY_LOG_N138.IDENTIFIER_VIOLATED_FRAME_N138 ,18DAF1D2,112,119,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.VIOLATED_BUS_N138,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.PAYLOAD_DLC_N138,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220489,620489,4ff,SECURITY_LOG_N138.PAYLOAD_VIOLATED_FRAME_N138 ,18DAF1D2,199,199,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.BUSLOAD_STATUS_N138,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.BUSLOAD_VALUE_CAN1_N138 ,18DAF1D2,208,215,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.BUSLOAD_VALUE_CAN2_N138 ,18DAF1D2,216,223,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.BUSLOAD_VALUE_CAN3_N138 ,18DAF1D2,224,231,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.BUSLOAD_VALUE_CAN4_N138 ,18DAF1D2,232,239,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.BUSLOAD_VALUE_CAN5_N138 ,18DAF1D2,240,247,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.BUSLOAD_VALUE_CAN6_N138 ,18DAF1D2,248,255,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.BUSLOAD_VALUE_CAN7_N138 ,18DAF1D2,256,263,1,0,0,,220489,620489,ff,SECURITY_LOG_N138.BUSLOAD_VALUE_CAN8_N138 ,18DAF1D2,24,47,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.ABOLUTE_TIME_N139 ,18DAF1D2,48,71,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.MILEAGE_N139 ,18DAF1D2,76,78,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.VIOLATION_TYPE_N139,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.SIZE_IDENTIFIER_N139,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22048A,62048A,4ff,SECURITY_LOG_N139.IDENTIFIER_VIOLATED_FRAME_N139 ,18DAF1D2,112,119,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.VIOLATED_BUS_N139,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.PAYLOAD_DLC_N139,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22048A,62048A,4ff,SECURITY_LOG_N139.PAYLOAD_VIOLATED_FRAME_N139 ,18DAF1D2,199,199,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.BUSLOAD_STATUS_N139,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.BUSLOAD_VALUE_CAN1_N139 ,18DAF1D2,208,215,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.BUSLOAD_VALUE_CAN2_N139 ,18DAF1D2,216,223,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.BUSLOAD_VALUE_CAN3_N139 ,18DAF1D2,224,231,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.BUSLOAD_VALUE_CAN4_N139 ,18DAF1D2,232,239,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.BUSLOAD_VALUE_CAN5_N139 ,18DAF1D2,240,247,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.BUSLOAD_VALUE_CAN6_N139 ,18DAF1D2,248,255,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.BUSLOAD_VALUE_CAN7_N139 ,18DAF1D2,256,263,1,0,0,,22048A,62048A,ff,SECURITY_LOG_N139.BUSLOAD_VALUE_CAN8_N139 ,18DAF1D2,24,47,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.ABOLUTE_TIME_N140 ,18DAF1D2,48,71,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.MILEAGE_N140 ,18DAF1D2,76,78,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.VIOLATION_TYPE_N140,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.SIZE_IDENTIFIER_N140,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22048B,62048B,4ff,SECURITY_LOG_N140.IDENTIFIER_VIOLATED_FRAME_N140 ,18DAF1D2,112,119,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.VIOLATED_BUS_N140,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.PAYLOAD_DLC_N140,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22048B,62048B,4ff,SECURITY_LOG_N140.PAYLOAD_VIOLATED_FRAME_N140 ,18DAF1D2,199,199,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.BUSLOAD_STATUS_N140,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.BUSLOAD_VALUE_CAN1_N140 ,18DAF1D2,208,215,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.BUSLOAD_VALUE_CAN2_N140 ,18DAF1D2,216,223,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.BUSLOAD_VALUE_CAN3_N140 ,18DAF1D2,224,231,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.BUSLOAD_VALUE_CAN4_N140 ,18DAF1D2,232,239,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.BUSLOAD_VALUE_CAN5_N140 ,18DAF1D2,240,247,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.BUSLOAD_VALUE_CAN6_N140 ,18DAF1D2,248,255,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.BUSLOAD_VALUE_CAN7_N140 ,18DAF1D2,256,263,1,0,0,,22048B,62048B,ff,SECURITY_LOG_N140.BUSLOAD_VALUE_CAN8_N140 ,18DAF1D2,24,47,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.ABOLUTE_TIME_N141 ,18DAF1D2,48,71,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.MILEAGE_N141 ,18DAF1D2,76,78,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.VIOLATION_TYPE_N141,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.SIZE_IDENTIFIER_N141,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22048C,62048C,4ff,SECURITY_LOG_N141.IDENTIFIER_VIOLATED_FRAME_N141 ,18DAF1D2,112,119,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.VIOLATED_BUS_N141,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.PAYLOAD_DLC_N141,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22048C,62048C,4ff,SECURITY_LOG_N141.PAYLOAD_VIOLATED_FRAME_N141 ,18DAF1D2,199,199,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.BUSLOAD_STATUS_N141,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.BUSLOAD_VALUE_CAN1_N141 ,18DAF1D2,208,215,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.BUSLOAD_VALUE_CAN2_N141 ,18DAF1D2,216,223,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.BUSLOAD_VALUE_CAN3_N141 ,18DAF1D2,224,231,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.BUSLOAD_VALUE_CAN4_N141 ,18DAF1D2,232,239,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.BUSLOAD_VALUE_CAN5_N141 ,18DAF1D2,240,247,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.BUSLOAD_VALUE_CAN6_N141 ,18DAF1D2,248,255,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.BUSLOAD_VALUE_CAN7_N141 ,18DAF1D2,256,263,1,0,0,,22048C,62048C,ff,SECURITY_LOG_N141.BUSLOAD_VALUE_CAN8_N141 ,18DAF1D2,24,47,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.ABOLUTE_TIME_N142 ,18DAF1D2,48,71,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.MILEAGE_N142 ,18DAF1D2,76,78,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.VIOLATION_TYPE_N142,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.SIZE_IDENTIFIER_N142,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22048D,62048D,4ff,SECURITY_LOG_N142.IDENTIFIER_VIOLATED_FRAME_N142 ,18DAF1D2,112,119,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.VIOLATED_BUS_N142,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.PAYLOAD_DLC_N142,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22048D,62048D,4ff,SECURITY_LOG_N142.PAYLOAD_VIOLATED_FRAME_N142 ,18DAF1D2,199,199,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.BUSLOAD_STATUS_N142,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.BUSLOAD_VALUE_CAN1_N142 ,18DAF1D2,208,215,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.BUSLOAD_VALUE_CAN2_N142 ,18DAF1D2,216,223,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.BUSLOAD_VALUE_CAN3_N142 ,18DAF1D2,224,231,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.BUSLOAD_VALUE_CAN4_N142 ,18DAF1D2,232,239,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.BUSLOAD_VALUE_CAN5_N142 ,18DAF1D2,240,247,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.BUSLOAD_VALUE_CAN6_N142 ,18DAF1D2,248,255,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.BUSLOAD_VALUE_CAN7_N142 ,18DAF1D2,256,263,1,0,0,,22048D,62048D,ff,SECURITY_LOG_N142.BUSLOAD_VALUE_CAN8_N142 ,18DAF1D2,24,47,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.ABOLUTE_TIME_N143 ,18DAF1D2,48,71,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.MILEAGE_N143 ,18DAF1D2,76,78,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.VIOLATION_TYPE_N143,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.SIZE_IDENTIFIER_N143,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22048E,62048E,4ff,SECURITY_LOG_N143.IDENTIFIER_VIOLATED_FRAME_N143 ,18DAF1D2,112,119,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.VIOLATED_BUS_N143,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.PAYLOAD_DLC_N143,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22048E,62048E,4ff,SECURITY_LOG_N143.PAYLOAD_VIOLATED_FRAME_N143 ,18DAF1D2,199,199,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.BUSLOAD_STATUS_N143,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.BUSLOAD_VALUE_CAN1_N143 ,18DAF1D2,208,215,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.BUSLOAD_VALUE_CAN2_N143 ,18DAF1D2,216,223,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.BUSLOAD_VALUE_CAN3_N143 ,18DAF1D2,224,231,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.BUSLOAD_VALUE_CAN4_N143 ,18DAF1D2,232,239,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.BUSLOAD_VALUE_CAN5_N143 ,18DAF1D2,240,247,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.BUSLOAD_VALUE_CAN6_N143 ,18DAF1D2,248,255,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.BUSLOAD_VALUE_CAN7_N143 ,18DAF1D2,256,263,1,0,0,,22048E,62048E,ff,SECURITY_LOG_N143.BUSLOAD_VALUE_CAN8_N143 ,18DAF1D2,24,47,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.ABOLUTE_TIME_N144 ,18DAF1D2,48,71,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.MILEAGE_N144 ,18DAF1D2,76,78,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.VIOLATION_TYPE_N144,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.SIZE_IDENTIFIER_N144,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22048F,62048F,4ff,SECURITY_LOG_N144.IDENTIFIER_VIOLATED_FRAME_N144 ,18DAF1D2,112,119,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.VIOLATED_BUS_N144,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.PAYLOAD_DLC_N144,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22048F,62048F,4ff,SECURITY_LOG_N144.PAYLOAD_VIOLATED_FRAME_N144 ,18DAF1D2,199,199,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.BUSLOAD_STATUS_N144,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.BUSLOAD_VALUE_CAN1_N144 ,18DAF1D2,208,215,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.BUSLOAD_VALUE_CAN2_N144 ,18DAF1D2,216,223,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.BUSLOAD_VALUE_CAN3_N144 ,18DAF1D2,224,231,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.BUSLOAD_VALUE_CAN4_N144 ,18DAF1D2,232,239,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.BUSLOAD_VALUE_CAN5_N144 ,18DAF1D2,240,247,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.BUSLOAD_VALUE_CAN6_N144 ,18DAF1D2,248,255,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.BUSLOAD_VALUE_CAN7_N144 ,18DAF1D2,256,263,1,0,0,,22048F,62048F,ff,SECURITY_LOG_N144.BUSLOAD_VALUE_CAN8_N144 ,18DAF1D2,24,47,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.ABOLUTE_TIME_N145 ,18DAF1D2,48,71,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.MILEAGE_N145 ,18DAF1D2,76,78,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.VIOLATION_TYPE_N145,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.SIZE_IDENTIFIER_N145,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220490,620490,4ff,SECURITY_LOG_N145.IDENTIFIER_VIOLATED_FRAME_N145 ,18DAF1D2,112,119,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.VIOLATED_BUS_N145,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.PAYLOAD_DLC_N145,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220490,620490,4ff,SECURITY_LOG_N145.PAYLOAD_VIOLATED_FRAME_N145 ,18DAF1D2,199,199,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.BUSLOAD_STATUS_N145,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.BUSLOAD_VALUE_CAN1_N145 ,18DAF1D2,208,215,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.BUSLOAD_VALUE_CAN2_N145 ,18DAF1D2,216,223,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.BUSLOAD_VALUE_CAN3_N145 ,18DAF1D2,224,231,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.BUSLOAD_VALUE_CAN4_N145 ,18DAF1D2,232,239,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.BUSLOAD_VALUE_CAN5_N145 ,18DAF1D2,240,247,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.BUSLOAD_VALUE_CAN6_N145 ,18DAF1D2,248,255,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.BUSLOAD_VALUE_CAN7_N145 ,18DAF1D2,256,263,1,0,0,,220490,620490,ff,SECURITY_LOG_N145.BUSLOAD_VALUE_CAN8_N145 ,18DAF1D2,24,47,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.ABOLUTE_TIME_N146 ,18DAF1D2,48,71,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.MILEAGE_N146 ,18DAF1D2,76,78,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.VIOLATION_TYPE_N146,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.SIZE_IDENTIFIER_N146,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220491,620491,4ff,SECURITY_LOG_N146.IDENTIFIER_VIOLATED_FRAME_N146 ,18DAF1D2,112,119,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.VIOLATED_BUS_N146,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.PAYLOAD_DLC_N146,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220491,620491,4ff,SECURITY_LOG_N146.PAYLOAD_VIOLATED_FRAME_N146 ,18DAF1D2,199,199,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.BUSLOAD_STATUS_N146,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.BUSLOAD_VALUE_CAN1_N146 ,18DAF1D2,208,215,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.BUSLOAD_VALUE_CAN2_N146 ,18DAF1D2,216,223,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.BUSLOAD_VALUE_CAN3_N146 ,18DAF1D2,224,231,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.BUSLOAD_VALUE_CAN4_N146 ,18DAF1D2,232,239,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.BUSLOAD_VALUE_CAN5_N146 ,18DAF1D2,240,247,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.BUSLOAD_VALUE_CAN6_N146 ,18DAF1D2,248,255,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.BUSLOAD_VALUE_CAN7_N146 ,18DAF1D2,256,263,1,0,0,,220491,620491,ff,SECURITY_LOG_N146.BUSLOAD_VALUE_CAN8_N146 ,18DAF1D2,24,47,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.ABOLUTE_TIME_N147 ,18DAF1D2,48,71,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.MILEAGE_N147 ,18DAF1D2,76,78,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.VIOLATION_TYPE_N147,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.SIZE_IDENTIFIER_N147,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220492,620492,4ff,SECURITY_LOG_N147.IDENTIFIER_VIOLATED_FRAME_N147 ,18DAF1D2,112,119,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.VIOLATED_BUS_N147,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.PAYLOAD_DLC_N147,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220492,620492,4ff,SECURITY_LOG_N147.PAYLOAD_VIOLATED_FRAME_N147 ,18DAF1D2,199,199,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.BUSLOAD_STATUS_N147,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.BUSLOAD_VALUE_CAN1_N147 ,18DAF1D2,208,215,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.BUSLOAD_VALUE_CAN2_N147 ,18DAF1D2,216,223,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.BUSLOAD_VALUE_CAN3_N147 ,18DAF1D2,224,231,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.BUSLOAD_VALUE_CAN4_N147 ,18DAF1D2,232,239,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.BUSLOAD_VALUE_CAN5_N147 ,18DAF1D2,240,247,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.BUSLOAD_VALUE_CAN6_N147 ,18DAF1D2,248,255,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.BUSLOAD_VALUE_CAN7_N147 ,18DAF1D2,256,263,1,0,0,,220492,620492,ff,SECURITY_LOG_N147.BUSLOAD_VALUE_CAN8_N147 ,18DAF1D2,24,47,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.ABOLUTE_TIME_N148 ,18DAF1D2,48,71,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.MILEAGE_N148 ,18DAF1D2,76,78,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.VIOLATION_TYPE_N148,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.SIZE_IDENTIFIER_N148,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220493,620493,4ff,SECURITY_LOG_N148.IDENTIFIER_VIOLATED_FRAME_N148 ,18DAF1D2,112,119,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.VIOLATED_BUS_N148,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.PAYLOAD_DLC_N148,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220493,620493,4ff,SECURITY_LOG_N148.PAYLOAD_VIOLATED_FRAME_N148 ,18DAF1D2,199,199,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.BUSLOAD_STATUS_N148,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.BUSLOAD_VALUE_CAN1_N148 ,18DAF1D2,208,215,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.BUSLOAD_VALUE_CAN2_N148 ,18DAF1D2,216,223,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.BUSLOAD_VALUE_CAN3_N148 ,18DAF1D2,224,231,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.BUSLOAD_VALUE_CAN4_N148 ,18DAF1D2,232,239,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.BUSLOAD_VALUE_CAN5_N148 ,18DAF1D2,240,247,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.BUSLOAD_VALUE_CAN6_N148 ,18DAF1D2,248,255,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.BUSLOAD_VALUE_CAN7_N148 ,18DAF1D2,256,263,1,0,0,,220493,620493,ff,SECURITY_LOG_N148.BUSLOAD_VALUE_CAN8_N148 ,18DAF1D2,24,47,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.ABOLUTE_TIME_N149 ,18DAF1D2,48,71,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.MILEAGE_N149 ,18DAF1D2,76,78,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.VIOLATION_TYPE_N149,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.SIZE_IDENTIFIER_N149,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220494,620494,4ff,SECURITY_LOG_N149.IDENTIFIER_VIOLATED_FRAME_N149 ,18DAF1D2,112,119,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.VIOLATED_BUS_N149,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.PAYLOAD_DLC_N149,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220494,620494,4ff,SECURITY_LOG_N149.PAYLOAD_VIOLATED_FRAME_N149 ,18DAF1D2,199,199,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.BUSLOAD_STATUS_N149,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.BUSLOAD_VALUE_CAN1_N149 ,18DAF1D2,208,215,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.BUSLOAD_VALUE_CAN2_N149 ,18DAF1D2,216,223,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.BUSLOAD_VALUE_CAN3_N149 ,18DAF1D2,224,231,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.BUSLOAD_VALUE_CAN4_N149 ,18DAF1D2,232,239,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.BUSLOAD_VALUE_CAN5_N149 ,18DAF1D2,240,247,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.BUSLOAD_VALUE_CAN6_N149 ,18DAF1D2,248,255,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.BUSLOAD_VALUE_CAN7_N149 ,18DAF1D2,256,263,1,0,0,,220494,620494,ff,SECURITY_LOG_N149.BUSLOAD_VALUE_CAN8_N149 ,18DAF1D2,24,47,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.ABOLUTE_TIME_N150 ,18DAF1D2,48,71,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.MILEAGE_N150 ,18DAF1D2,76,78,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.VIOLATION_TYPE_N150,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.SIZE_IDENTIFIER_N150,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220495,620495,4ff,SECURITY_LOG_N150.IDENTIFIER_VIOLATED_FRAME_N150 ,18DAF1D2,112,119,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.VIOLATED_BUS_N150,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.PAYLOAD_DLC_N150,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220495,620495,4ff,SECURITY_LOG_N150.PAYLOAD_VIOLATED_FRAME_N150 ,18DAF1D2,199,199,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.BUSLOAD_STATUS_N150,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.BUSLOAD_VALUE_CAN1_N150 ,18DAF1D2,208,215,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.BUSLOAD_VALUE_CAN2_N150 ,18DAF1D2,216,223,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.BUSLOAD_VALUE_CAN3_N150 ,18DAF1D2,224,231,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.BUSLOAD_VALUE_CAN4_N150 ,18DAF1D2,232,239,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.BUSLOAD_VALUE_CAN5_N150 ,18DAF1D2,240,247,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.BUSLOAD_VALUE_CAN6_N150 ,18DAF1D2,248,255,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.BUSLOAD_VALUE_CAN7_N150 ,18DAF1D2,256,263,1,0,0,,220495,620495,ff,SECURITY_LOG_N150.BUSLOAD_VALUE_CAN8_N150 ,18DAF1D2,24,47,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.ABOLUTE_TIME_N151 ,18DAF1D2,48,71,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.MILEAGE_N151 ,18DAF1D2,76,78,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.VIOLATION_TYPE_N151,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.SIZE_IDENTIFIER_N151,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220496,620496,4ff,SECURITY_LOG_N151.IDENTIFIER_VIOLATED_FRAME_N151 ,18DAF1D2,112,119,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.VIOLATED_BUS_N151,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.PAYLOAD_DLC_N151,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220496,620496,4ff,SECURITY_LOG_N151.PAYLOAD_VIOLATED_FRAME_N151 ,18DAF1D2,199,199,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.BUSLOAD_STATUS_N151,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.BUSLOAD_VALUE_CAN1_N151 ,18DAF1D2,208,215,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.BUSLOAD_VALUE_CAN2_N151 ,18DAF1D2,216,223,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.BUSLOAD_VALUE_CAN3_N151 ,18DAF1D2,224,231,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.BUSLOAD_VALUE_CAN4_N151 ,18DAF1D2,232,239,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.BUSLOAD_VALUE_CAN5_N151 ,18DAF1D2,240,247,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.BUSLOAD_VALUE_CAN6_N151 ,18DAF1D2,248,255,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.BUSLOAD_VALUE_CAN7_N151 ,18DAF1D2,256,263,1,0,0,,220496,620496,ff,SECURITY_LOG_N151.BUSLOAD_VALUE_CAN8_N151 ,18DAF1D2,24,47,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.ABOLUTE_TIME_N152 ,18DAF1D2,48,71,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.MILEAGE_N152 ,18DAF1D2,76,78,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.VIOLATION_TYPE_N152,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.SIZE_IDENTIFIER_N152,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220497,620497,4ff,SECURITY_LOG_N152.IDENTIFIER_VIOLATED_FRAME_N152 ,18DAF1D2,112,119,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.VIOLATED_BUS_N152,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.PAYLOAD_DLC_N152,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220497,620497,4ff,SECURITY_LOG_N152.PAYLOAD_VIOLATED_FRAME_N152 ,18DAF1D2,199,199,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.BUSLOAD_STATUS_N152,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.BUSLOAD_VALUE_CAN1_N152 ,18DAF1D2,208,215,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.BUSLOAD_VALUE_CAN2_N152 ,18DAF1D2,216,223,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.BUSLOAD_VALUE_CAN3_N152 ,18DAF1D2,224,231,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.BUSLOAD_VALUE_CAN4_N152 ,18DAF1D2,232,239,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.BUSLOAD_VALUE_CAN5_N152 ,18DAF1D2,240,247,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.BUSLOAD_VALUE_CAN6_N152 ,18DAF1D2,248,255,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.BUSLOAD_VALUE_CAN7_N152 ,18DAF1D2,256,263,1,0,0,,220497,620497,ff,SECURITY_LOG_N152.BUSLOAD_VALUE_CAN8_N152 ,18DAF1D2,24,47,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.ABOLUTE_TIME_N153 ,18DAF1D2,48,71,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.MILEAGE_N153 ,18DAF1D2,76,78,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.VIOLATION_TYPE_N153,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.SIZE_IDENTIFIER_N153,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220498,620498,4ff,SECURITY_LOG_N153.IDENTIFIER_VIOLATED_FRAME_N153 ,18DAF1D2,112,119,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.VIOLATED_BUS_N153,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.PAYLOAD_DLC_N153,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220498,620498,4ff,SECURITY_LOG_N153.PAYLOAD_VIOLATED_FRAME_N153 ,18DAF1D2,199,199,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.BUSLOAD_STATUS_N153,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.BUSLOAD_VALUE_CAN1_N153 ,18DAF1D2,208,215,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.BUSLOAD_VALUE_CAN2_N153 ,18DAF1D2,216,223,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.BUSLOAD_VALUE_CAN3_N153 ,18DAF1D2,224,231,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.BUSLOAD_VALUE_CAN4_N153 ,18DAF1D2,232,239,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.BUSLOAD_VALUE_CAN5_N153 ,18DAF1D2,240,247,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.BUSLOAD_VALUE_CAN6_N153 ,18DAF1D2,248,255,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.BUSLOAD_VALUE_CAN7_N153 ,18DAF1D2,256,263,1,0,0,,220498,620498,ff,SECURITY_LOG_N153.BUSLOAD_VALUE_CAN8_N153 ,18DAF1D2,24,47,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.ABOLUTE_TIME_N154 ,18DAF1D2,48,71,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.MILEAGE_N154 ,18DAF1D2,76,78,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.VIOLATION_TYPE_N154,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.SIZE_IDENTIFIER_N154,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220499,620499,4ff,SECURITY_LOG_N154.IDENTIFIER_VIOLATED_FRAME_N154 ,18DAF1D2,112,119,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.VIOLATED_BUS_N154,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.PAYLOAD_DLC_N154,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220499,620499,4ff,SECURITY_LOG_N154.PAYLOAD_VIOLATED_FRAME_N154 ,18DAF1D2,199,199,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.BUSLOAD_STATUS_N154,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.BUSLOAD_VALUE_CAN1_N154 ,18DAF1D2,208,215,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.BUSLOAD_VALUE_CAN2_N154 ,18DAF1D2,216,223,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.BUSLOAD_VALUE_CAN3_N154 ,18DAF1D2,224,231,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.BUSLOAD_VALUE_CAN4_N154 ,18DAF1D2,232,239,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.BUSLOAD_VALUE_CAN5_N154 ,18DAF1D2,240,247,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.BUSLOAD_VALUE_CAN6_N154 ,18DAF1D2,248,255,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.BUSLOAD_VALUE_CAN7_N154 ,18DAF1D2,256,263,1,0,0,,220499,620499,ff,SECURITY_LOG_N154.BUSLOAD_VALUE_CAN8_N154 ,18DAF1D2,24,47,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.ABOLUTE_TIME_N155 ,18DAF1D2,48,71,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.MILEAGE_N155 ,18DAF1D2,76,78,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.VIOLATION_TYPE_N155,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.SIZE_IDENTIFIER_N155,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22049A,62049A,4ff,SECURITY_LOG_N155.IDENTIFIER_VIOLATED_FRAME_N155 ,18DAF1D2,112,119,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.VIOLATED_BUS_N155,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.PAYLOAD_DLC_N155,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22049A,62049A,4ff,SECURITY_LOG_N155.PAYLOAD_VIOLATED_FRAME_N155 ,18DAF1D2,199,199,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.BUSLOAD_STATUS_N155,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.BUSLOAD_VALUE_CAN1_N155 ,18DAF1D2,208,215,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.BUSLOAD_VALUE_CAN2_N155 ,18DAF1D2,216,223,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.BUSLOAD_VALUE_CAN3_N155 ,18DAF1D2,224,231,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.BUSLOAD_VALUE_CAN4_N155 ,18DAF1D2,232,239,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.BUSLOAD_VALUE_CAN5_N155 ,18DAF1D2,240,247,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.BUSLOAD_VALUE_CAN6_N155 ,18DAF1D2,248,255,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.BUSLOAD_VALUE_CAN7_N155 ,18DAF1D2,256,263,1,0,0,,22049A,62049A,ff,SECURITY_LOG_N155.BUSLOAD_VALUE_CAN8_N155 ,18DAF1D2,24,47,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.ABOLUTE_TIME_N156 ,18DAF1D2,48,71,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.MILEAGE_N156 ,18DAF1D2,76,78,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.VIOLATION_TYPE_N156,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.SIZE_IDENTIFIER_N156,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22049B,62049B,4ff,SECURITY_LOG_N156.IDENTIFIER_VIOLATED_FRAME_N156 ,18DAF1D2,112,119,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.VIOLATED_BUS_N156,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.PAYLOAD_DLC_N156,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22049B,62049B,4ff,SECURITY_LOG_N156.PAYLOAD_VIOLATED_FRAME_N156 ,18DAF1D2,199,199,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.BUSLOAD_STATUS_N156,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.BUSLOAD_VALUE_CAN1_N156 ,18DAF1D2,208,215,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.BUSLOAD_VALUE_CAN2_N156 ,18DAF1D2,216,223,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.BUSLOAD_VALUE_CAN3_N156 ,18DAF1D2,224,231,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.BUSLOAD_VALUE_CAN4_N156 ,18DAF1D2,232,239,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.BUSLOAD_VALUE_CAN5_N156 ,18DAF1D2,240,247,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.BUSLOAD_VALUE_CAN6_N156 ,18DAF1D2,248,255,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.BUSLOAD_VALUE_CAN7_N156 ,18DAF1D2,256,263,1,0,0,,22049B,62049B,ff,SECURITY_LOG_N156.BUSLOAD_VALUE_CAN8_N156 ,18DAF1D2,24,47,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.ABOLUTE_TIME_N157 ,18DAF1D2,48,71,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.MILEAGE_N157 ,18DAF1D2,76,78,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.VIOLATION_TYPE_N157,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.SIZE_IDENTIFIER_N157,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22049C,62049C,4ff,SECURITY_LOG_N157.IDENTIFIER_VIOLATED_FRAME_N157 ,18DAF1D2,112,119,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.VIOLATED_BUS_N157,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.PAYLOAD_DLC_N157,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22049C,62049C,4ff,SECURITY_LOG_N157.PAYLOAD_VIOLATED_FRAME_N157 ,18DAF1D2,199,199,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.BUSLOAD_STATUS_N157,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.BUSLOAD_VALUE_CAN1_N157 ,18DAF1D2,208,215,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.BUSLOAD_VALUE_CAN2_N157 ,18DAF1D2,216,223,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.BUSLOAD_VALUE_CAN3_N157 ,18DAF1D2,224,231,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.BUSLOAD_VALUE_CAN4_N157 ,18DAF1D2,232,239,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.BUSLOAD_VALUE_CAN5_N157 ,18DAF1D2,240,247,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.BUSLOAD_VALUE_CAN6_N157 ,18DAF1D2,248,255,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.BUSLOAD_VALUE_CAN7_N157 ,18DAF1D2,256,263,1,0,0,,22049C,62049C,ff,SECURITY_LOG_N157.BUSLOAD_VALUE_CAN8_N157 ,18DAF1D2,24,47,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.ABOLUTE_TIME_N158 ,18DAF1D2,48,71,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.MILEAGE_N158 ,18DAF1D2,76,78,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.VIOLATION_TYPE_N158,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.SIZE_IDENTIFIER_N158,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22049D,62049D,4ff,SECURITY_LOG_N158.IDENTIFIER_VIOLATED_FRAME_N158 ,18DAF1D2,112,119,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.VIOLATED_BUS_N158,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.PAYLOAD_DLC_N158,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22049D,62049D,4ff,SECURITY_LOG_N158.PAYLOAD_VIOLATED_FRAME_N158 ,18DAF1D2,199,199,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.BUSLOAD_STATUS_N158,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.BUSLOAD_VALUE_CAN1_N158 ,18DAF1D2,208,215,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.BUSLOAD_VALUE_CAN2_N158 ,18DAF1D2,216,223,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.BUSLOAD_VALUE_CAN3_N158 ,18DAF1D2,224,231,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.BUSLOAD_VALUE_CAN4_N158 ,18DAF1D2,232,239,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.BUSLOAD_VALUE_CAN5_N158 ,18DAF1D2,240,247,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.BUSLOAD_VALUE_CAN6_N158 ,18DAF1D2,248,255,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.BUSLOAD_VALUE_CAN7_N158 ,18DAF1D2,256,263,1,0,0,,22049D,62049D,ff,SECURITY_LOG_N158.BUSLOAD_VALUE_CAN8_N158 ,18DAF1D2,24,47,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.ABOLUTE_TIME_N159 ,18DAF1D2,48,71,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.MILEAGE_N159 ,18DAF1D2,76,78,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.VIOLATION_TYPE_N159,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.SIZE_IDENTIFIER_N159,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22049E,62049E,4ff,SECURITY_LOG_N159.IDENTIFIER_VIOLATED_FRAME_N159 ,18DAF1D2,112,119,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.VIOLATED_BUS_N159,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.PAYLOAD_DLC_N159,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22049E,62049E,4ff,SECURITY_LOG_N159.PAYLOAD_VIOLATED_FRAME_N159 ,18DAF1D2,199,199,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.BUSLOAD_STATUS_N159,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.BUSLOAD_VALUE_CAN1_N159 ,18DAF1D2,208,215,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.BUSLOAD_VALUE_CAN2_N159 ,18DAF1D2,216,223,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.BUSLOAD_VALUE_CAN3_N159 ,18DAF1D2,224,231,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.BUSLOAD_VALUE_CAN4_N159 ,18DAF1D2,232,239,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.BUSLOAD_VALUE_CAN5_N159 ,18DAF1D2,240,247,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.BUSLOAD_VALUE_CAN6_N159 ,18DAF1D2,248,255,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.BUSLOAD_VALUE_CAN7_N159 ,18DAF1D2,256,263,1,0,0,,22049E,62049E,ff,SECURITY_LOG_N159.BUSLOAD_VALUE_CAN8_N159 ,18DAF1D2,24,47,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.ABOLUTE_TIME_N160 ,18DAF1D2,48,71,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.MILEAGE_N160 ,18DAF1D2,76,78,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.VIOLATION_TYPE_N160,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.SIZE_IDENTIFIER_N160,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22049F,62049F,4ff,SECURITY_LOG_N160.IDENTIFIER_VIOLATED_FRAME_N160 ,18DAF1D2,112,119,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.VIOLATED_BUS_N160,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.PAYLOAD_DLC_N160,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22049F,62049F,4ff,SECURITY_LOG_N160.PAYLOAD_VIOLATED_FRAME_N160 ,18DAF1D2,199,199,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.BUSLOAD_STATUS_N160,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.BUSLOAD_VALUE_CAN1_N160 ,18DAF1D2,208,215,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.BUSLOAD_VALUE_CAN2_N160 ,18DAF1D2,216,223,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.BUSLOAD_VALUE_CAN3_N160 ,18DAF1D2,224,231,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.BUSLOAD_VALUE_CAN4_N160 ,18DAF1D2,232,239,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.BUSLOAD_VALUE_CAN5_N160 ,18DAF1D2,240,247,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.BUSLOAD_VALUE_CAN6_N160 ,18DAF1D2,248,255,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.BUSLOAD_VALUE_CAN7_N160 ,18DAF1D2,256,263,1,0,0,,22049F,62049F,ff,SECURITY_LOG_N160.BUSLOAD_VALUE_CAN8_N160 ,18DAF1D2,24,47,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.ABOLUTE_TIME_N161 ,18DAF1D2,48,71,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.MILEAGE_N161 ,18DAF1D2,76,78,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.VIOLATION_TYPE_N161,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.SIZE_IDENTIFIER_N161,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204A0,6204A0,4ff,SECURITY_LOG_N161.IDENTIFIER_VIOLATED_FRAME_N161 ,18DAF1D2,112,119,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.VIOLATED_BUS_N161,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.PAYLOAD_DLC_N161,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204A0,6204A0,4ff,SECURITY_LOG_N161.PAYLOAD_VIOLATED_FRAME_N161 ,18DAF1D2,199,199,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.BUSLOAD_STATUS_N161,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.BUSLOAD_VALUE_CAN1_N161 ,18DAF1D2,208,215,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.BUSLOAD_VALUE_CAN2_N161 ,18DAF1D2,216,223,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.BUSLOAD_VALUE_CAN3_N161 ,18DAF1D2,224,231,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.BUSLOAD_VALUE_CAN4_N161 ,18DAF1D2,232,239,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.BUSLOAD_VALUE_CAN5_N161 ,18DAF1D2,240,247,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.BUSLOAD_VALUE_CAN6_N161 ,18DAF1D2,248,255,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.BUSLOAD_VALUE_CAN7_N161 ,18DAF1D2,256,263,1,0,0,,2204A0,6204A0,ff,SECURITY_LOG_N161.BUSLOAD_VALUE_CAN8_N161 ,18DAF1D2,24,47,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.ABOLUTE_TIME_N162 ,18DAF1D2,48,71,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.MILEAGE_N162 ,18DAF1D2,76,78,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.VIOLATION_TYPE_N162,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.SIZE_IDENTIFIER_N162,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204A1,6204A1,4ff,SECURITY_LOG_N162.IDENTIFIER_VIOLATED_FRAME_N162 ,18DAF1D2,112,119,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.VIOLATED_BUS_N162,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.PAYLOAD_DLC_N162,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204A1,6204A1,4ff,SECURITY_LOG_N162.PAYLOAD_VIOLATED_FRAME_N162 ,18DAF1D2,199,199,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.BUSLOAD_STATUS_N162,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.BUSLOAD_VALUE_CAN1_N162 ,18DAF1D2,208,215,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.BUSLOAD_VALUE_CAN2_N162 ,18DAF1D2,216,223,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.BUSLOAD_VALUE_CAN3_N162 ,18DAF1D2,224,231,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.BUSLOAD_VALUE_CAN4_N162 ,18DAF1D2,232,239,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.BUSLOAD_VALUE_CAN5_N162 ,18DAF1D2,240,247,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.BUSLOAD_VALUE_CAN6_N162 ,18DAF1D2,248,255,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.BUSLOAD_VALUE_CAN7_N162 ,18DAF1D2,256,263,1,0,0,,2204A1,6204A1,ff,SECURITY_LOG_N162.BUSLOAD_VALUE_CAN8_N162 ,18DAF1D2,24,47,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.ABOLUTE_TIME_N163 ,18DAF1D2,48,71,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.MILEAGE_N163 ,18DAF1D2,76,78,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.VIOLATION_TYPE_N163,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.SIZE_IDENTIFIER_N163,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204A2,6204A2,4ff,SECURITY_LOG_N163.IDENTIFIER_VIOLATED_FRAME_N163 ,18DAF1D2,112,119,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.VIOLATED_BUS_N163,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.PAYLOAD_DLC_N163,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204A2,6204A2,4ff,SECURITY_LOG_N163.PAYLOAD_VIOLATED_FRAME_N163 ,18DAF1D2,199,199,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.BUSLOAD_STATUS_N163,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.BUSLOAD_VALUE_CAN1_N163 ,18DAF1D2,208,215,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.BUSLOAD_VALUE_CAN2_N163 ,18DAF1D2,216,223,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.BUSLOAD_VALUE_CAN3_N163 ,18DAF1D2,224,231,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.BUSLOAD_VALUE_CAN4_N163 ,18DAF1D2,232,239,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.BUSLOAD_VALUE_CAN5_N163 ,18DAF1D2,240,247,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.BUSLOAD_VALUE_CAN6_N163 ,18DAF1D2,248,255,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.BUSLOAD_VALUE_CAN7_N163 ,18DAF1D2,256,263,1,0,0,,2204A2,6204A2,ff,SECURITY_LOG_N163.BUSLOAD_VALUE_CAN8_N163 ,18DAF1D2,24,47,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.ABOLUTE_TIME_N164 ,18DAF1D2,48,71,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.MILEAGE_N164 ,18DAF1D2,76,78,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.VIOLATION_TYPE_N164,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.SIZE_IDENTIFIER_N164,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204A3,6204A3,4ff,SECURITY_LOG_N164.IDENTIFIER_VIOLATED_FRAME_N164 ,18DAF1D2,112,119,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.VIOLATED_BUS_N164,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.PAYLOAD_DLC_N164,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204A3,6204A3,4ff,SECURITY_LOG_N164.PAYLOAD_VIOLATED_FRAME_N164 ,18DAF1D2,199,199,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.BUSLOAD_STATUS_N164,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.BUSLOAD_VALUE_CAN1_N164 ,18DAF1D2,208,215,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.BUSLOAD_VALUE_CAN2_N164 ,18DAF1D2,216,223,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.BUSLOAD_VALUE_CAN3_N164 ,18DAF1D2,224,231,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.BUSLOAD_VALUE_CAN4_N164 ,18DAF1D2,232,239,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.BUSLOAD_VALUE_CAN5_N164 ,18DAF1D2,240,247,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.BUSLOAD_VALUE_CAN6_N164 ,18DAF1D2,248,255,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.BUSLOAD_VALUE_CAN7_N164 ,18DAF1D2,256,263,1,0,0,,2204A3,6204A3,ff,SECURITY_LOG_N164.BUSLOAD_VALUE_CAN8_N164 ,18DAF1D2,24,47,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.ABOLUTE_TIME_N165 ,18DAF1D2,48,71,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.MILEAGE_N165 ,18DAF1D2,76,78,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.VIOLATION_TYPE_N165,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.SIZE_IDENTIFIER_N165,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204A4,6204A4,4ff,SECURITY_LOG_N165.IDENTIFIER_VIOLATED_FRAME_N165 ,18DAF1D2,112,119,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.VIOLATED_BUS_N165,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.PAYLOAD_DLC_N165,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204A4,6204A4,4ff,SECURITY_LOG_N165.PAYLOAD_VIOLATED_FRAME_N165 ,18DAF1D2,199,199,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.BUSLOAD_STATUS_N165,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.BUSLOAD_VALUE_CAN1_N165 ,18DAF1D2,208,215,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.BUSLOAD_VALUE_CAN2_N165 ,18DAF1D2,216,223,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.BUSLOAD_VALUE_CAN3_N165 ,18DAF1D2,224,231,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.BUSLOAD_VALUE_CAN4_N165 ,18DAF1D2,232,239,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.BUSLOAD_VALUE_CAN5_N165 ,18DAF1D2,240,247,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.BUSLOAD_VALUE_CAN6_N165 ,18DAF1D2,248,255,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.BUSLOAD_VALUE_CAN7_N165 ,18DAF1D2,256,263,1,0,0,,2204A4,6204A4,ff,SECURITY_LOG_N165.BUSLOAD_VALUE_CAN8_N165 ,18DAF1D2,24,47,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.ABOLUTE_TIME_N166 ,18DAF1D2,48,71,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.MILEAGE_N166 ,18DAF1D2,76,78,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.VIOLATION_TYPE_N166,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.SIZE_IDENTIFIER_N166,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204A5,6204A5,4ff,SECURITY_LOG_N166.IDENTIFIER_VIOLATED_FRAME_N166 ,18DAF1D2,112,119,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.VIOLATED_BUS_N166,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.PAYLOAD_DLC_N166,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204A5,6204A5,4ff,SECURITY_LOG_N166.PAYLOAD_VIOLATED_FRAME_N166 ,18DAF1D2,199,199,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.BUSLOAD_STATUS_N166,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.BUSLOAD_VALUE_CAN1_N166 ,18DAF1D2,208,215,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.BUSLOAD_VALUE_CAN2_N166 ,18DAF1D2,216,223,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.BUSLOAD_VALUE_CAN3_N166 ,18DAF1D2,224,231,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.BUSLOAD_VALUE_CAN4_N166 ,18DAF1D2,232,239,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.BUSLOAD_VALUE_CAN5_N166 ,18DAF1D2,240,247,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.BUSLOAD_VALUE_CAN6_N166 ,18DAF1D2,248,255,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.BUSLOAD_VALUE_CAN7_N166 ,18DAF1D2,256,263,1,0,0,,2204A5,6204A5,ff,SECURITY_LOG_N166.BUSLOAD_VALUE_CAN8_N166 ,18DAF1D2,24,47,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.ABOLUTE_TIME_N167 ,18DAF1D2,48,71,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.MILEAGE_N167 ,18DAF1D2,76,78,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.VIOLATION_TYPE_N167,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.SIZE_IDENTIFIER_N167,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204A6,6204A6,4ff,SECURITY_LOG_N167.IDENTIFIER_VIOLATED_FRAME_N167 ,18DAF1D2,112,119,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.VIOLATED_BUS_N167,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.PAYLOAD_DLC_N167,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204A6,6204A6,4ff,SECURITY_LOG_N167.PAYLOAD_VIOLATED_FRAME_N167 ,18DAF1D2,199,199,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.BUSLOAD_STATUS_N167,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.BUSLOAD_VALUE_CAN1_N167 ,18DAF1D2,208,215,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.BUSLOAD_VALUE_CAN2_N167 ,18DAF1D2,216,223,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.BUSLOAD_VALUE_CAN3_N167 ,18DAF1D2,224,231,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.BUSLOAD_VALUE_CAN4_N167 ,18DAF1D2,232,239,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.BUSLOAD_VALUE_CAN5_N167 ,18DAF1D2,240,247,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.BUSLOAD_VALUE_CAN6_N167 ,18DAF1D2,248,255,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.BUSLOAD_VALUE_CAN7_N167 ,18DAF1D2,256,263,1,0,0,,2204A6,6204A6,ff,SECURITY_LOG_N167.BUSLOAD_VALUE_CAN8_N167 ,18DAF1D2,24,47,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.ABOLUTE_TIME_N168 ,18DAF1D2,48,71,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.MILEAGE_N168 ,18DAF1D2,76,78,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.VIOLATION_TYPE_N168,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.SIZE_IDENTIFIER_N168,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204A7,6204A7,4ff,SECURITY_LOG_N168.IDENTIFIER_VIOLATED_FRAME_N168 ,18DAF1D2,112,119,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.VIOLATED_BUS_N168,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.PAYLOAD_DLC_N168,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204A7,6204A7,4ff,SECURITY_LOG_N168.PAYLOAD_VIOLATED_FRAME_N168 ,18DAF1D2,199,199,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.BUSLOAD_STATUS_N168,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.BUSLOAD_VALUE_CAN1_N168 ,18DAF1D2,208,215,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.BUSLOAD_VALUE_CAN2_N168 ,18DAF1D2,216,223,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.BUSLOAD_VALUE_CAN3_N168 ,18DAF1D2,224,231,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.BUSLOAD_VALUE_CAN4_N168 ,18DAF1D2,232,239,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.BUSLOAD_VALUE_CAN5_N168 ,18DAF1D2,240,247,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.BUSLOAD_VALUE_CAN6_N168 ,18DAF1D2,248,255,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.BUSLOAD_VALUE_CAN7_N168 ,18DAF1D2,256,263,1,0,0,,2204A7,6204A7,ff,SECURITY_LOG_N168.BUSLOAD_VALUE_CAN8_N168 ,18DAF1D2,24,47,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.ABOLUTE_TIME_N169 ,18DAF1D2,48,71,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.MILEAGE_N169 ,18DAF1D2,76,78,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.VIOLATION_TYPE_N169,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.SIZE_IDENTIFIER_N169,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204A8,6204A8,4ff,SECURITY_LOG_N169.IDENTIFIER_VIOLATED_FRAME_N169 ,18DAF1D2,112,119,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.VIOLATED_BUS_N169,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.PAYLOAD_DLC_N169,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204A8,6204A8,4ff,SECURITY_LOG_N169.PAYLOAD_VIOLATED_FRAME_N169 ,18DAF1D2,199,199,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.BUSLOAD_STATUS_N169,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.BUSLOAD_VALUE_CAN1_N169 ,18DAF1D2,208,215,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.BUSLOAD_VALUE_CAN2_N169 ,18DAF1D2,216,223,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.BUSLOAD_VALUE_CAN3_N169 ,18DAF1D2,224,231,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.BUSLOAD_VALUE_CAN4_N169 ,18DAF1D2,232,239,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.BUSLOAD_VALUE_CAN5_N169 ,18DAF1D2,240,247,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.BUSLOAD_VALUE_CAN6_N169 ,18DAF1D2,248,255,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.BUSLOAD_VALUE_CAN7_N169 ,18DAF1D2,256,263,1,0,0,,2204A8,6204A8,ff,SECURITY_LOG_N169.BUSLOAD_VALUE_CAN8_N169 ,18DAF1D2,24,47,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.ABOLUTE_TIME_N170 ,18DAF1D2,48,71,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.MILEAGE_N170 ,18DAF1D2,76,78,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.VIOLATION_TYPE_N170,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.SIZE_IDENTIFIER_N170,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204A9,6204A9,4ff,SECURITY_LOG_N170.IDENTIFIER_VIOLATED_FRAME_N170 ,18DAF1D2,112,119,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.VIOLATED_BUS_N170,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.PAYLOAD_DLC_N170,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204A9,6204A9,4ff,SECURITY_LOG_N170.PAYLOAD_VIOLATED_FRAME_N170 ,18DAF1D2,199,199,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.BUSLOAD_STATUS_N170,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.BUSLOAD_VALUE_CAN1_N170 ,18DAF1D2,208,215,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.BUSLOAD_VALUE_CAN2_N170 ,18DAF1D2,216,223,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.BUSLOAD_VALUE_CAN3_N170 ,18DAF1D2,224,231,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.BUSLOAD_VALUE_CAN4_N170 ,18DAF1D2,232,239,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.BUSLOAD_VALUE_CAN5_N170 ,18DAF1D2,240,247,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.BUSLOAD_VALUE_CAN6_N170 ,18DAF1D2,248,255,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.BUSLOAD_VALUE_CAN7_N170 ,18DAF1D2,256,263,1,0,0,,2204A9,6204A9,ff,SECURITY_LOG_N170.BUSLOAD_VALUE_CAN8_N170 ,18DAF1D2,24,47,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.ABOLUTE_TIME_N171 ,18DAF1D2,48,71,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.MILEAGE_N171 ,18DAF1D2,76,78,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.VIOLATION_TYPE_N171,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.SIZE_IDENTIFIER_N171,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204AA,6204AA,4ff,SECURITY_LOG_N171.IDENTIFIER_VIOLATED_FRAME_N171 ,18DAF1D2,112,119,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.VIOLATED_BUS_N171,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.PAYLOAD_DLC_N171,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204AA,6204AA,4ff,SECURITY_LOG_N171.PAYLOAD_VIOLATED_FRAME_N171 ,18DAF1D2,199,199,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.BUSLOAD_STATUS_N171,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.BUSLOAD_VALUE_CAN1_N171 ,18DAF1D2,208,215,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.BUSLOAD_VALUE_CAN2_N171 ,18DAF1D2,216,223,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.BUSLOAD_VALUE_CAN3_N171 ,18DAF1D2,224,231,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.BUSLOAD_VALUE_CAN4_N171 ,18DAF1D2,232,239,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.BUSLOAD_VALUE_CAN5_N171 ,18DAF1D2,240,247,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.BUSLOAD_VALUE_CAN6_N171 ,18DAF1D2,248,255,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.BUSLOAD_VALUE_CAN7_N171 ,18DAF1D2,256,263,1,0,0,,2204AA,6204AA,ff,SECURITY_LOG_N171.BUSLOAD_VALUE_CAN8_N171 ,18DAF1D2,24,47,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.ABOLUTE_TIME_N172 ,18DAF1D2,48,71,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.MILEAGE_N172 ,18DAF1D2,76,78,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.VIOLATION_TYPE_N172,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.SIZE_IDENTIFIER_N172,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204AB,6204AB,4ff,SECURITY_LOG_N172.IDENTIFIER_VIOLATED_FRAME_N172 ,18DAF1D2,112,119,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.VIOLATED_BUS_N172,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.PAYLOAD_DLC_N172,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204AB,6204AB,4ff,SECURITY_LOG_N172.PAYLOAD_VIOLATED_FRAME_N172 ,18DAF1D2,199,199,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.BUSLOAD_STATUS_N172,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.BUSLOAD_VALUE_CAN1_N172 ,18DAF1D2,208,215,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.BUSLOAD_VALUE_CAN2_N172 ,18DAF1D2,216,223,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.BUSLOAD_VALUE_CAN3_N172 ,18DAF1D2,224,231,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.BUSLOAD_VALUE_CAN4_N172 ,18DAF1D2,232,239,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.BUSLOAD_VALUE_CAN5_N172 ,18DAF1D2,240,247,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.BUSLOAD_VALUE_CAN6_N172 ,18DAF1D2,248,255,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.BUSLOAD_VALUE_CAN7_N172 ,18DAF1D2,256,263,1,0,0,,2204AB,6204AB,ff,SECURITY_LOG_N172.BUSLOAD_VALUE_CAN8_N172 ,18DAF1D2,24,47,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.ABOLUTE_TIME_N173 ,18DAF1D2,48,71,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.MILEAGE_N173 ,18DAF1D2,76,78,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.VIOLATION_TYPE_N173,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.SIZE_IDENTIFIER_N173,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204AC,6204AC,4ff,SECURITY_LOG_N173.IDENTIFIER_VIOLATED_FRAME_N173 ,18DAF1D2,112,119,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.VIOLATED_BUS_N173,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.PAYLOAD_DLC_N173,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204AC,6204AC,4ff,SECURITY_LOG_N173.PAYLOAD_VIOLATED_FRAME_N173 ,18DAF1D2,199,199,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.BUSLOAD_STATUS_N173,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.BUSLOAD_VALUE_CAN1_N173 ,18DAF1D2,208,215,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.BUSLOAD_VALUE_CAN2_N173 ,18DAF1D2,216,223,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.BUSLOAD_VALUE_CAN3_N173 ,18DAF1D2,224,231,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.BUSLOAD_VALUE_CAN4_N173 ,18DAF1D2,232,239,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.BUSLOAD_VALUE_CAN5_N173 ,18DAF1D2,240,247,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.BUSLOAD_VALUE_CAN6_N173 ,18DAF1D2,248,255,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.BUSLOAD_VALUE_CAN7_N173 ,18DAF1D2,256,263,1,0,0,,2204AC,6204AC,ff,SECURITY_LOG_N173.BUSLOAD_VALUE_CAN8_N173 ,18DAF1D2,24,47,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.ABOLUTE_TIME_N174 ,18DAF1D2,48,71,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.MILEAGE_N174 ,18DAF1D2,76,78,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.VIOLATION_TYPE_N174,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.SIZE_IDENTIFIER_N174,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204AD,6204AD,4ff,SECURITY_LOG_N174.IDENTIFIER_VIOLATED_FRAME_N174 ,18DAF1D2,112,119,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.VIOLATED_BUS_N174,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.PAYLOAD_DLC_N174,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204AD,6204AD,4ff,SECURITY_LOG_N174.PAYLOAD_VIOLATED_FRAME_N174 ,18DAF1D2,199,199,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.BUSLOAD_STATUS_N174,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.BUSLOAD_VALUE_CAN1_N174 ,18DAF1D2,208,215,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.BUSLOAD_VALUE_CAN2_N174 ,18DAF1D2,216,223,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.BUSLOAD_VALUE_CAN3_N174 ,18DAF1D2,224,231,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.BUSLOAD_VALUE_CAN4_N174 ,18DAF1D2,232,239,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.BUSLOAD_VALUE_CAN5_N174 ,18DAF1D2,240,247,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.BUSLOAD_VALUE_CAN6_N174 ,18DAF1D2,248,255,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.BUSLOAD_VALUE_CAN7_N174 ,18DAF1D2,256,263,1,0,0,,2204AD,6204AD,ff,SECURITY_LOG_N174.BUSLOAD_VALUE_CAN8_N174 ,18DAF1D2,24,47,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.ABOLUTE_TIME_N175 ,18DAF1D2,48,71,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.MILEAGE_N175 ,18DAF1D2,76,78,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.VIOLATION_TYPE_N175,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.SIZE_IDENTIFIER_N175,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204AE,6204AE,4ff,SECURITY_LOG_N175.IDENTIFIER_VIOLATED_FRAME_N175 ,18DAF1D2,112,119,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.VIOLATED_BUS_N175,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.PAYLOAD_DLC_N175,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204AE,6204AE,4ff,SECURITY_LOG_N175.PAYLOAD_VIOLATED_FRAME_N175 ,18DAF1D2,199,199,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.BUSLOAD_STATUS_N175,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.BUSLOAD_VALUE_CAN1_N175 ,18DAF1D2,208,215,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.BUSLOAD_VALUE_CAN2_N175 ,18DAF1D2,216,223,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.BUSLOAD_VALUE_CAN3_N175 ,18DAF1D2,224,231,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.BUSLOAD_VALUE_CAN4_N175 ,18DAF1D2,232,239,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.BUSLOAD_VALUE_CAN5_N175 ,18DAF1D2,240,247,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.BUSLOAD_VALUE_CAN6_N175 ,18DAF1D2,248,255,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.BUSLOAD_VALUE_CAN7_N175 ,18DAF1D2,256,263,1,0,0,,2204AE,6204AE,ff,SECURITY_LOG_N175.BUSLOAD_VALUE_CAN8_N175 ,18DAF1D2,24,47,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.ABOLUTE_TIME_N176 ,18DAF1D2,48,71,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.MILEAGE_N176 ,18DAF1D2,76,78,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.VIOLATION_TYPE_N176,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.SIZE_IDENTIFIER_N176,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204AF,6204AF,4ff,SECURITY_LOG_N176.IDENTIFIER_VIOLATED_FRAME_N176 ,18DAF1D2,112,119,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.VIOLATED_BUS_N176,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.PAYLOAD_DLC_N176,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204AF,6204AF,4ff,SECURITY_LOG_N176.PAYLOAD_VIOLATED_FRAME_N176 ,18DAF1D2,199,199,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.BUSLOAD_STATUS_N176,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.BUSLOAD_VALUE_CAN1_N176 ,18DAF1D2,208,215,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.BUSLOAD_VALUE_CAN2_N176 ,18DAF1D2,216,223,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.BUSLOAD_VALUE_CAN3_N176 ,18DAF1D2,224,231,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.BUSLOAD_VALUE_CAN4_N176 ,18DAF1D2,232,239,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.BUSLOAD_VALUE_CAN5_N176 ,18DAF1D2,240,247,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.BUSLOAD_VALUE_CAN6_N176 ,18DAF1D2,248,255,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.BUSLOAD_VALUE_CAN7_N176 ,18DAF1D2,256,263,1,0,0,,2204AF,6204AF,ff,SECURITY_LOG_N176.BUSLOAD_VALUE_CAN8_N176 ,18DAF1D2,24,47,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.ABOLUTE_TIME_N177 ,18DAF1D2,48,71,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.MILEAGE_N177 ,18DAF1D2,76,78,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.VIOLATION_TYPE_N177,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.SIZE_IDENTIFIER_N177,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204B0,6204B0,4ff,SECURITY_LOG_N177.IDENTIFIER_VIOLATED_FRAME_N177 ,18DAF1D2,112,119,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.VIOLATED_BUS_N177,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.PAYLOAD_DLC_N177,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204B0,6204B0,4ff,SECURITY_LOG_N177.PAYLOAD_VIOLATED_FRAME_N177 ,18DAF1D2,199,199,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.BUSLOAD_STATUS_N177,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.BUSLOAD_VALUE_CAN1_N177 ,18DAF1D2,208,215,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.BUSLOAD_VALUE_CAN2_N177 ,18DAF1D2,216,223,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.BUSLOAD_VALUE_CAN3_N177 ,18DAF1D2,224,231,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.BUSLOAD_VALUE_CAN4_N177 ,18DAF1D2,232,239,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.BUSLOAD_VALUE_CAN5_N177 ,18DAF1D2,240,247,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.BUSLOAD_VALUE_CAN6_N177 ,18DAF1D2,248,255,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.BUSLOAD_VALUE_CAN7_N177 ,18DAF1D2,256,263,1,0,0,,2204B0,6204B0,ff,SECURITY_LOG_N177.BUSLOAD_VALUE_CAN8_N177 ,18DAF1D2,24,47,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.ABOLUTE_TIME_N178 ,18DAF1D2,48,71,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.MILEAGE_N178 ,18DAF1D2,76,78,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.VIOLATION_TYPE_N178,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.SIZE_IDENTIFIER_N178,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204B1,6204B1,4ff,SECURITY_LOG_N178.IDENTIFIER_VIOLATED_FRAME_N178 ,18DAF1D2,112,119,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.VIOLATED_BUS_N178,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.PAYLOAD_DLC_N178,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204B1,6204B1,4ff,SECURITY_LOG_N178.PAYLOAD_VIOLATED_FRAME_N178 ,18DAF1D2,199,199,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.BUSLOAD_STATUS_N178,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.BUSLOAD_VALUE_CAN1_N178 ,18DAF1D2,208,215,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.BUSLOAD_VALUE_CAN2_N178 ,18DAF1D2,216,223,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.BUSLOAD_VALUE_CAN3_N178 ,18DAF1D2,224,231,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.BUSLOAD_VALUE_CAN4_N178 ,18DAF1D2,232,239,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.BUSLOAD_VALUE_CAN5_N178 ,18DAF1D2,240,247,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.BUSLOAD_VALUE_CAN6_N178 ,18DAF1D2,248,255,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.BUSLOAD_VALUE_CAN7_N178 ,18DAF1D2,256,263,1,0,0,,2204B1,6204B1,ff,SECURITY_LOG_N178.BUSLOAD_VALUE_CAN8_N178 ,18DAF1D2,24,47,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.ABOLUTE_TIME_N179 ,18DAF1D2,48,71,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.MILEAGE_N179 ,18DAF1D2,76,78,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.VIOLATION_TYPE_N179,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.SIZE_IDENTIFIER_N179,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204B2,6204B2,4ff,SECURITY_LOG_N179.IDENTIFIER_VIOLATED_FRAME_N179 ,18DAF1D2,112,119,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.VIOLATED_BUS_N179,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.PAYLOAD_DLC_N179,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204B2,6204B2,4ff,SECURITY_LOG_N179.PAYLOAD_VIOLATED_FRAME_N179 ,18DAF1D2,199,199,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.BUSLOAD_STATUS_N179,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.BUSLOAD_VALUE_CAN1_N179 ,18DAF1D2,208,215,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.BUSLOAD_VALUE_CAN2_N179 ,18DAF1D2,216,223,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.BUSLOAD_VALUE_CAN3_N179 ,18DAF1D2,224,231,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.BUSLOAD_VALUE_CAN4_N179 ,18DAF1D2,232,239,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.BUSLOAD_VALUE_CAN5_N179 ,18DAF1D2,240,247,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.BUSLOAD_VALUE_CAN6_N179 ,18DAF1D2,248,255,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.BUSLOAD_VALUE_CAN7_N179 ,18DAF1D2,256,263,1,0,0,,2204B2,6204B2,ff,SECURITY_LOG_N179.BUSLOAD_VALUE_CAN8_N179 ,18DAF1D2,24,47,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.ABOLUTE_TIME_N180 ,18DAF1D2,48,71,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.MILEAGE_N180 ,18DAF1D2,76,78,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.VIOLATION_TYPE_N180,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.SIZE_IDENTIFIER_N180,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204B3,6204B3,4ff,SECURITY_LOG_N180.IDENTIFIER_VIOLATED_FRAME_N180 ,18DAF1D2,112,119,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.VIOLATED_BUS_N180,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.PAYLOAD_DLC_N180,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204B3,6204B3,4ff,SECURITY_LOG_N180.PAYLOAD_VIOLATED_FRAME_N180 ,18DAF1D2,199,199,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.BUSLOAD_STATUS_N180,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.BUSLOAD_VALUE_CAN1_N180 ,18DAF1D2,208,215,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.BUSLOAD_VALUE_CAN2_N180 ,18DAF1D2,216,223,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.BUSLOAD_VALUE_CAN3_N180 ,18DAF1D2,224,231,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.BUSLOAD_VALUE_CAN4_N180 ,18DAF1D2,232,239,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.BUSLOAD_VALUE_CAN5_N180 ,18DAF1D2,240,247,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.BUSLOAD_VALUE_CAN6_N180 ,18DAF1D2,248,255,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.BUSLOAD_VALUE_CAN7_N180 ,18DAF1D2,256,263,1,0,0,,2204B3,6204B3,ff,SECURITY_LOG_N180.BUSLOAD_VALUE_CAN8_N180 ,18DAF1D2,24,47,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.ABOLUTE_TIME_N181 ,18DAF1D2,48,71,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.MILEAGE_N181 ,18DAF1D2,76,78,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.VIOLATION_TYPE_N181,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.SIZE_IDENTIFIER_N181,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204B4,6204B4,4ff,SECURITY_LOG_N181.IDENTIFIER_VIOLATED_FRAME_N181 ,18DAF1D2,112,119,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.VIOLATED_BUS_N181,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.PAYLOAD_DLC_N181,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204B4,6204B4,4ff,SECURITY_LOG_N181.PAYLOAD_VIOLATED_FRAME_N181 ,18DAF1D2,199,199,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.BUSLOAD_STATUS_N181,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.BUSLOAD_VALUE_CAN1_N181 ,18DAF1D2,208,215,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.BUSLOAD_VALUE_CAN2_N181 ,18DAF1D2,216,223,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.BUSLOAD_VALUE_CAN3_N181 ,18DAF1D2,224,231,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.BUSLOAD_VALUE_CAN4_N181 ,18DAF1D2,232,239,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.BUSLOAD_VALUE_CAN5_N181 ,18DAF1D2,240,247,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.BUSLOAD_VALUE_CAN6_N181 ,18DAF1D2,248,255,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.BUSLOAD_VALUE_CAN7_N181 ,18DAF1D2,256,263,1,0,0,,2204B4,6204B4,ff,SECURITY_LOG_N181.BUSLOAD_VALUE_CAN8_N181 ,18DAF1D2,24,47,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.ABOLUTE_TIME_N182 ,18DAF1D2,48,71,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.MILEAGE_N182 ,18DAF1D2,76,78,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.VIOLATION_TYPE_N182,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.SIZE_IDENTIFIER_N182,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204B5,6204B5,4ff,SECURITY_LOG_N182.IDENTIFIER_VIOLATED_FRAME_N182 ,18DAF1D2,112,119,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.VIOLATED_BUS_N182,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.PAYLOAD_DLC_N182,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204B5,6204B5,4ff,SECURITY_LOG_N182.PAYLOAD_VIOLATED_FRAME_N182 ,18DAF1D2,199,199,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.BUSLOAD_STATUS_N182,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.BUSLOAD_VALUE_CAN1_N182 ,18DAF1D2,208,215,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.BUSLOAD_VALUE_CAN2_N182 ,18DAF1D2,216,223,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.BUSLOAD_VALUE_CAN3_N182 ,18DAF1D2,224,231,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.BUSLOAD_VALUE_CAN4_N182 ,18DAF1D2,232,239,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.BUSLOAD_VALUE_CAN5_N182 ,18DAF1D2,240,247,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.BUSLOAD_VALUE_CAN6_N182 ,18DAF1D2,248,255,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.BUSLOAD_VALUE_CAN7_N182 ,18DAF1D2,256,263,1,0,0,,2204B5,6204B5,ff,SECURITY_LOG_N182.BUSLOAD_VALUE_CAN8_N182 ,18DAF1D2,24,47,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.ABOLUTE_TIME_N183 ,18DAF1D2,48,71,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.MILEAGE_N183 ,18DAF1D2,76,78,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.VIOLATION_TYPE_N183,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.SIZE_IDENTIFIER_N183,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204B6,6204B6,4ff,SECURITY_LOG_N183.IDENTIFIER_VIOLATED_FRAME_N183 ,18DAF1D2,112,119,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.VIOLATED_BUS_N183,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.PAYLOAD_DLC_N183,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204B6,6204B6,4ff,SECURITY_LOG_N183.PAYLOAD_VIOLATED_FRAME_N183 ,18DAF1D2,199,199,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.BUSLOAD_STATUS_N183,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.BUSLOAD_VALUE_CAN1_N183 ,18DAF1D2,208,215,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.BUSLOAD_VALUE_CAN2_N183 ,18DAF1D2,216,223,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.BUSLOAD_VALUE_CAN3_N183 ,18DAF1D2,224,231,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.BUSLOAD_VALUE_CAN4_N183 ,18DAF1D2,232,239,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.BUSLOAD_VALUE_CAN5_N183 ,18DAF1D2,240,247,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.BUSLOAD_VALUE_CAN6_N183 ,18DAF1D2,248,255,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.BUSLOAD_VALUE_CAN7_N183 ,18DAF1D2,256,263,1,0,0,,2204B6,6204B6,ff,SECURITY_LOG_N183.BUSLOAD_VALUE_CAN8_N183 ,18DAF1D2,24,47,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.ABOLUTE_TIME_N184 ,18DAF1D2,48,71,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.MILEAGE_N184 ,18DAF1D2,76,78,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.VIOLATION_TYPE_N184,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.SIZE_IDENTIFIER_N184,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204B7,6204B7,4ff,SECURITY_LOG_N184.IDENTIFIER_VIOLATED_FRAME_N184 ,18DAF1D2,112,119,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.VIOLATED_BUS_N184,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.PAYLOAD_DLC_N184,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204B7,6204B7,4ff,SECURITY_LOG_N184.PAYLOAD_VIOLATED_FRAME_N184 ,18DAF1D2,199,199,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.BUSLOAD_STATUS_N184,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.BUSLOAD_VALUE_CAN1_N184 ,18DAF1D2,208,215,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.BUSLOAD_VALUE_CAN2_N184 ,18DAF1D2,216,223,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.BUSLOAD_VALUE_CAN3_N184 ,18DAF1D2,224,231,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.BUSLOAD_VALUE_CAN4_N184 ,18DAF1D2,232,239,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.BUSLOAD_VALUE_CAN5_N184 ,18DAF1D2,240,247,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.BUSLOAD_VALUE_CAN6_N184 ,18DAF1D2,248,255,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.BUSLOAD_VALUE_CAN7_N184 ,18DAF1D2,256,263,1,0,0,,2204B7,6204B7,ff,SECURITY_LOG_N184.BUSLOAD_VALUE_CAN8_N184 ,18DAF1D2,24,47,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.ABOLUTE_TIME_N185 ,18DAF1D2,48,71,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.MILEAGE_N185 ,18DAF1D2,76,78,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.VIOLATION_TYPE_N185,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.SIZE_IDENTIFIER_N185,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204B8,6204B8,4ff,SECURITY_LOG_N185.IDENTIFIER_VIOLATED_FRAME_N185 ,18DAF1D2,112,119,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.VIOLATED_BUS_N185,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.PAYLOAD_DLC_N185,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204B8,6204B8,4ff,SECURITY_LOG_N185.PAYLOAD_VIOLATED_FRAME_N185 ,18DAF1D2,199,199,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.BUSLOAD_STATUS_N185,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.BUSLOAD_VALUE_CAN1_N185 ,18DAF1D2,208,215,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.BUSLOAD_VALUE_CAN2_N185 ,18DAF1D2,216,223,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.BUSLOAD_VALUE_CAN3_N185 ,18DAF1D2,224,231,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.BUSLOAD_VALUE_CAN4_N185 ,18DAF1D2,232,239,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.BUSLOAD_VALUE_CAN5_N185 ,18DAF1D2,240,247,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.BUSLOAD_VALUE_CAN6_N185 ,18DAF1D2,248,255,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.BUSLOAD_VALUE_CAN7_N185 ,18DAF1D2,256,263,1,0,0,,2204B8,6204B8,ff,SECURITY_LOG_N185.BUSLOAD_VALUE_CAN8_N185 ,18DAF1D2,24,47,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.ABOLUTE_TIME_N186 ,18DAF1D2,48,71,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.MILEAGE_N186 ,18DAF1D2,76,78,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.VIOLATION_TYPE_N186,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.SIZE_IDENTIFIER_N186,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204B9,6204B9,4ff,SECURITY_LOG_N186.IDENTIFIER_VIOLATED_FRAME_N186 ,18DAF1D2,112,119,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.VIOLATED_BUS_N186,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.PAYLOAD_DLC_N186,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204B9,6204B9,4ff,SECURITY_LOG_N186.PAYLOAD_VIOLATED_FRAME_N186 ,18DAF1D2,199,199,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.BUSLOAD_STATUS_N186,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.BUSLOAD_VALUE_CAN1_N186 ,18DAF1D2,208,215,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.BUSLOAD_VALUE_CAN2_N186 ,18DAF1D2,216,223,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.BUSLOAD_VALUE_CAN3_N186 ,18DAF1D2,224,231,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.BUSLOAD_VALUE_CAN4_N186 ,18DAF1D2,232,239,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.BUSLOAD_VALUE_CAN5_N186 ,18DAF1D2,240,247,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.BUSLOAD_VALUE_CAN6_N186 ,18DAF1D2,248,255,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.BUSLOAD_VALUE_CAN7_N186 ,18DAF1D2,256,263,1,0,0,,2204B9,6204B9,ff,SECURITY_LOG_N186.BUSLOAD_VALUE_CAN8_N186 ,18DAF1D2,24,47,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.ABOLUTE_TIME_N187 ,18DAF1D2,48,71,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.MILEAGE_N187 ,18DAF1D2,76,78,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.VIOLATION_TYPE_N187,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.SIZE_IDENTIFIER_N187,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204BA,6204BA,4ff,SECURITY_LOG_N187.IDENTIFIER_VIOLATED_FRAME_N187 ,18DAF1D2,112,119,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.VIOLATED_BUS_N187,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.PAYLOAD_DLC_N187,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204BA,6204BA,4ff,SECURITY_LOG_N187.PAYLOAD_VIOLATED_FRAME_N187 ,18DAF1D2,199,199,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.BUSLOAD_STATUS_N187,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.BUSLOAD_VALUE_CAN1_N187 ,18DAF1D2,208,215,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.BUSLOAD_VALUE_CAN2_N187 ,18DAF1D2,216,223,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.BUSLOAD_VALUE_CAN3_N187 ,18DAF1D2,224,231,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.BUSLOAD_VALUE_CAN4_N187 ,18DAF1D2,232,239,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.BUSLOAD_VALUE_CAN5_N187 ,18DAF1D2,240,247,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.BUSLOAD_VALUE_CAN6_N187 ,18DAF1D2,248,255,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.BUSLOAD_VALUE_CAN7_N187 ,18DAF1D2,256,263,1,0,0,,2204BA,6204BA,ff,SECURITY_LOG_N187.BUSLOAD_VALUE_CAN8_N187 ,18DAF1D2,24,47,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.ABOLUTE_TIME_N188 ,18DAF1D2,48,71,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.MILEAGE_N188 ,18DAF1D2,76,78,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.VIOLATION_TYPE_N188,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.SIZE_IDENTIFIER_N188,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204BB,6204BB,4ff,SECURITY_LOG_N188.IDENTIFIER_VIOLATED_FRAME_N188 ,18DAF1D2,112,119,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.VIOLATED_BUS_N188,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.PAYLOAD_DLC_N188,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204BB,6204BB,4ff,SECURITY_LOG_N188.PAYLOAD_VIOLATED_FRAME_N188 ,18DAF1D2,199,199,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.BUSLOAD_STATUS_N188,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.BUSLOAD_VALUE_CAN1_N188 ,18DAF1D2,208,215,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.BUSLOAD_VALUE_CAN2_N188 ,18DAF1D2,216,223,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.BUSLOAD_VALUE_CAN3_N188 ,18DAF1D2,224,231,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.BUSLOAD_VALUE_CAN4_N188 ,18DAF1D2,232,239,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.BUSLOAD_VALUE_CAN5_N188 ,18DAF1D2,240,247,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.BUSLOAD_VALUE_CAN6_N188 ,18DAF1D2,248,255,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.BUSLOAD_VALUE_CAN7_N188 ,18DAF1D2,256,263,1,0,0,,2204BB,6204BB,ff,SECURITY_LOG_N188.BUSLOAD_VALUE_CAN8_N188 ,18DAF1D2,24,47,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.ABOLUTE_TIME_N189 ,18DAF1D2,48,71,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.MILEAGE_N189 ,18DAF1D2,76,78,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.VIOLATION_TYPE_N189,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.SIZE_IDENTIFIER_N189,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204BC,6204BC,4ff,SECURITY_LOG_N189.IDENTIFIER_VIOLATED_FRAME_N189 ,18DAF1D2,112,119,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.VIOLATED_BUS_N189,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.PAYLOAD_DLC_N189,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204BC,6204BC,4ff,SECURITY_LOG_N189.PAYLOAD_VIOLATED_FRAME_N189 ,18DAF1D2,199,199,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.BUSLOAD_STATUS_N189,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.BUSLOAD_VALUE_CAN1_N189 ,18DAF1D2,208,215,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.BUSLOAD_VALUE_CAN2_N189 ,18DAF1D2,216,223,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.BUSLOAD_VALUE_CAN3_N189 ,18DAF1D2,224,231,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.BUSLOAD_VALUE_CAN4_N189 ,18DAF1D2,232,239,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.BUSLOAD_VALUE_CAN5_N189 ,18DAF1D2,240,247,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.BUSLOAD_VALUE_CAN6_N189 ,18DAF1D2,248,255,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.BUSLOAD_VALUE_CAN7_N189 ,18DAF1D2,256,263,1,0,0,,2204BC,6204BC,ff,SECURITY_LOG_N189.BUSLOAD_VALUE_CAN8_N189 ,18DAF1D2,24,47,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.ABOLUTE_TIME_N190 ,18DAF1D2,48,71,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.MILEAGE_N190 ,18DAF1D2,76,78,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.VIOLATION_TYPE_N190,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.SIZE_IDENTIFIER_N190,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204BD,6204BD,4ff,SECURITY_LOG_N190.IDENTIFIER_VIOLATED_FRAME_N190 ,18DAF1D2,112,119,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.VIOLATED_BUS_N190,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.PAYLOAD_DLC_N190,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204BD,6204BD,4ff,SECURITY_LOG_N190.PAYLOAD_VIOLATED_FRAME_N190 ,18DAF1D2,199,199,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.BUSLOAD_STATUS_N190,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.BUSLOAD_VALUE_CAN1_N190 ,18DAF1D2,208,215,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.BUSLOAD_VALUE_CAN2_N190 ,18DAF1D2,216,223,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.BUSLOAD_VALUE_CAN3_N190 ,18DAF1D2,224,231,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.BUSLOAD_VALUE_CAN4_N190 ,18DAF1D2,232,239,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.BUSLOAD_VALUE_CAN5_N190 ,18DAF1D2,240,247,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.BUSLOAD_VALUE_CAN6_N190 ,18DAF1D2,248,255,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.BUSLOAD_VALUE_CAN7_N190 ,18DAF1D2,256,263,1,0,0,,2204BD,6204BD,ff,SECURITY_LOG_N190.BUSLOAD_VALUE_CAN8_N190 ,18DAF1D2,24,47,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.ABOLUTE_TIME_N191 ,18DAF1D2,48,71,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.MILEAGE_N191 ,18DAF1D2,76,78,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.VIOLATION_TYPE_N191,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.SIZE_IDENTIFIER_N191,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204BE,6204BE,4ff,SECURITY_LOG_N191.IDENTIFIER_VIOLATED_FRAME_N191 ,18DAF1D2,112,119,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.VIOLATED_BUS_N191,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.PAYLOAD_DLC_N191,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204BE,6204BE,4ff,SECURITY_LOG_N191.PAYLOAD_VIOLATED_FRAME_N191 ,18DAF1D2,199,199,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.BUSLOAD_STATUS_N191,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.BUSLOAD_VALUE_CAN1_N191 ,18DAF1D2,208,215,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.BUSLOAD_VALUE_CAN2_N191 ,18DAF1D2,216,223,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.BUSLOAD_VALUE_CAN3_N191 ,18DAF1D2,224,231,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.BUSLOAD_VALUE_CAN4_N191 ,18DAF1D2,232,239,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.BUSLOAD_VALUE_CAN5_N191 ,18DAF1D2,240,247,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.BUSLOAD_VALUE_CAN6_N191 ,18DAF1D2,248,255,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.BUSLOAD_VALUE_CAN7_N191 ,18DAF1D2,256,263,1,0,0,,2204BE,6204BE,ff,SECURITY_LOG_N191.BUSLOAD_VALUE_CAN8_N191 ,18DAF1D2,24,47,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.ABOLUTE_TIME_N192 ,18DAF1D2,48,71,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.MILEAGE_N192 ,18DAF1D2,76,78,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.VIOLATION_TYPE_N192,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.SIZE_IDENTIFIER_N192,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204BF,6204BF,4ff,SECURITY_LOG_N192.IDENTIFIER_VIOLATED_FRAME_N192 ,18DAF1D2,112,119,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.VIOLATED_BUS_N192,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.PAYLOAD_DLC_N192,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204BF,6204BF,4ff,SECURITY_LOG_N192.PAYLOAD_VIOLATED_FRAME_N192 ,18DAF1D2,199,199,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.BUSLOAD_STATUS_N192,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.BUSLOAD_VALUE_CAN1_N192 ,18DAF1D2,208,215,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.BUSLOAD_VALUE_CAN2_N192 ,18DAF1D2,216,223,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.BUSLOAD_VALUE_CAN3_N192 ,18DAF1D2,224,231,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.BUSLOAD_VALUE_CAN4_N192 ,18DAF1D2,232,239,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.BUSLOAD_VALUE_CAN5_N192 ,18DAF1D2,240,247,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.BUSLOAD_VALUE_CAN6_N192 ,18DAF1D2,248,255,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.BUSLOAD_VALUE_CAN7_N192 ,18DAF1D2,256,263,1,0,0,,2204BF,6204BF,ff,SECURITY_LOG_N192.BUSLOAD_VALUE_CAN8_N192 ,18DAF1D2,24,47,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.ABOLUTE_TIME_N193 ,18DAF1D2,48,71,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.MILEAGE_N193 ,18DAF1D2,76,78,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.VIOLATION_TYPE_N193,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.SIZE_IDENTIFIER_N193,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204C0,6204C0,4ff,SECURITY_LOG_N193.IDENTIFIER_VIOLATED_FRAME_N193 ,18DAF1D2,112,119,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.VIOLATED_BUS_N193,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.PAYLOAD_DLC_N193,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204C0,6204C0,4ff,SECURITY_LOG_N193.PAYLOAD_VIOLATED_FRAME_N193 ,18DAF1D2,199,199,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.BUSLOAD_STATUS_N193,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.BUSLOAD_VALUE_CAN1_N193 ,18DAF1D2,208,215,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.BUSLOAD_VALUE_CAN2_N193 ,18DAF1D2,216,223,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.BUSLOAD_VALUE_CAN3_N193 ,18DAF1D2,224,231,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.BUSLOAD_VALUE_CAN4_N193 ,18DAF1D2,232,239,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.BUSLOAD_VALUE_CAN5_N193 ,18DAF1D2,240,247,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.BUSLOAD_VALUE_CAN6_N193 ,18DAF1D2,248,255,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.BUSLOAD_VALUE_CAN7_N193 ,18DAF1D2,256,263,1,0,0,,2204C0,6204C0,ff,SECURITY_LOG_N193.BUSLOAD_VALUE_CAN8_N193 ,18DAF1D2,24,47,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.ABOLUTE_TIME_N194 ,18DAF1D2,48,71,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.MILEAGE_N194 ,18DAF1D2,76,78,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.VIOLATION_TYPE_N194,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.SIZE_IDENTIFIER_N194,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204C1,6204C1,4ff,SECURITY_LOG_N194.IDENTIFIER_VIOLATED_FRAME_N194 ,18DAF1D2,112,119,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.VIOLATED_BUS_N194,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.PAYLOAD_DLC_N194,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204C1,6204C1,4ff,SECURITY_LOG_N194.PAYLOAD_VIOLATED_FRAME_N194 ,18DAF1D2,199,199,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.BUSLOAD_STATUS_N194,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.BUSLOAD_VALUE_CAN1_N194 ,18DAF1D2,208,215,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.BUSLOAD_VALUE_CAN2_N194 ,18DAF1D2,216,223,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.BUSLOAD_VALUE_CAN3_N194 ,18DAF1D2,224,231,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.BUSLOAD_VALUE_CAN4_N194 ,18DAF1D2,232,239,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.BUSLOAD_VALUE_CAN5_N194 ,18DAF1D2,240,247,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.BUSLOAD_VALUE_CAN6_N194 ,18DAF1D2,248,255,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.BUSLOAD_VALUE_CAN7_N194 ,18DAF1D2,256,263,1,0,0,,2204C1,6204C1,ff,SECURITY_LOG_N194.BUSLOAD_VALUE_CAN8_N194 ,18DAF1D2,24,47,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.ABOLUTE_TIME_N195 ,18DAF1D2,48,71,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.MILEAGE_N195 ,18DAF1D2,76,78,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.VIOLATION_TYPE_N195,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.SIZE_IDENTIFIER_N195,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204C2,6204C2,4ff,SECURITY_LOG_N195.IDENTIFIER_VIOLATED_FRAME_N195 ,18DAF1D2,112,119,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.VIOLATED_BUS_N195,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.PAYLOAD_DLC_N195,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204C2,6204C2,4ff,SECURITY_LOG_N195.PAYLOAD_VIOLATED_FRAME_N195 ,18DAF1D2,199,199,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.BUSLOAD_STATUS_N195,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.BUSLOAD_VALUE_CAN1_N195 ,18DAF1D2,208,215,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.BUSLOAD_VALUE_CAN2_N195 ,18DAF1D2,216,223,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.BUSLOAD_VALUE_CAN3_N195 ,18DAF1D2,224,231,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.BUSLOAD_VALUE_CAN4_N195 ,18DAF1D2,232,239,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.BUSLOAD_VALUE_CAN5_N195 ,18DAF1D2,240,247,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.BUSLOAD_VALUE_CAN6_N195 ,18DAF1D2,248,255,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.BUSLOAD_VALUE_CAN7_N195 ,18DAF1D2,256,263,1,0,0,,2204C2,6204C2,ff,SECURITY_LOG_N195.BUSLOAD_VALUE_CAN8_N195 ,18DAF1D2,24,47,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.ABOLUTE_TIME_N196 ,18DAF1D2,48,71,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.MILEAGE_N196 ,18DAF1D2,76,78,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.VIOLATION_TYPE_N196,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.SIZE_IDENTIFIER_N196,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204C3,6204C3,4ff,SECURITY_LOG_N196.IDENTIFIER_VIOLATED_FRAME_N196 ,18DAF1D2,112,119,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.VIOLATED_BUS_N196,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.PAYLOAD_DLC_N196,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204C3,6204C3,4ff,SECURITY_LOG_N196.PAYLOAD_VIOLATED_FRAME_N196 ,18DAF1D2,199,199,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.BUSLOAD_STATUS_N196,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.BUSLOAD_VALUE_CAN1_N196 ,18DAF1D2,208,215,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.BUSLOAD_VALUE_CAN2_N196 ,18DAF1D2,216,223,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.BUSLOAD_VALUE_CAN3_N196 ,18DAF1D2,224,231,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.BUSLOAD_VALUE_CAN4_N196 ,18DAF1D2,232,239,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.BUSLOAD_VALUE_CAN5_N196 ,18DAF1D2,240,247,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.BUSLOAD_VALUE_CAN6_N196 ,18DAF1D2,248,255,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.BUSLOAD_VALUE_CAN7_N196 ,18DAF1D2,256,263,1,0,0,,2204C3,6204C3,ff,SECURITY_LOG_N196.BUSLOAD_VALUE_CAN8_N196 ,18DAF1D2,24,47,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.ABOLUTE_TIME_N197 ,18DAF1D2,48,71,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.MILEAGE_N197 ,18DAF1D2,76,78,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.VIOLATION_TYPE_N197,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.SIZE_IDENTIFIER_N197,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204C4,6204C4,4ff,SECURITY_LOG_N197.IDENTIFIER_VIOLATED_FRAME_N197 ,18DAF1D2,112,119,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.VIOLATED_BUS_N197,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.PAYLOAD_DLC_N197,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204C4,6204C4,4ff,SECURITY_LOG_N197.PAYLOAD_VIOLATED_FRAME_N197 ,18DAF1D2,199,199,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.BUSLOAD_STATUS_N197,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.BUSLOAD_VALUE_CAN1_N197 ,18DAF1D2,208,215,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.BUSLOAD_VALUE_CAN2_N197 ,18DAF1D2,216,223,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.BUSLOAD_VALUE_CAN3_N197 ,18DAF1D2,224,231,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.BUSLOAD_VALUE_CAN4_N197 ,18DAF1D2,232,239,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.BUSLOAD_VALUE_CAN5_N197 ,18DAF1D2,240,247,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.BUSLOAD_VALUE_CAN6_N197 ,18DAF1D2,248,255,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.BUSLOAD_VALUE_CAN7_N197 ,18DAF1D2,256,263,1,0,0,,2204C4,6204C4,ff,SECURITY_LOG_N197.BUSLOAD_VALUE_CAN8_N197 ,18DAF1D2,24,47,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.ABOLUTE_TIME_N198 ,18DAF1D2,48,71,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.MILEAGE_N198 ,18DAF1D2,76,78,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.VIOLATION_TYPE_N198,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.SIZE_IDENTIFIER_N198,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204C5,6204C5,4ff,SECURITY_LOG_N198.IDENTIFIER_VIOLATED_FRAME_N198 ,18DAF1D2,112,119,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.VIOLATED_BUS_N198,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.PAYLOAD_DLC_N198,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204C5,6204C5,4ff,SECURITY_LOG_N198.PAYLOAD_VIOLATED_FRAME_N198 ,18DAF1D2,199,199,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.BUSLOAD_STATUS_N198,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.BUSLOAD_VALUE_CAN1_N198 ,18DAF1D2,208,215,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.BUSLOAD_VALUE_CAN2_N198 ,18DAF1D2,216,223,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.BUSLOAD_VALUE_CAN3_N198 ,18DAF1D2,224,231,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.BUSLOAD_VALUE_CAN4_N198 ,18DAF1D2,232,239,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.BUSLOAD_VALUE_CAN5_N198 ,18DAF1D2,240,247,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.BUSLOAD_VALUE_CAN6_N198 ,18DAF1D2,248,255,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.BUSLOAD_VALUE_CAN7_N198 ,18DAF1D2,256,263,1,0,0,,2204C5,6204C5,ff,SECURITY_LOG_N198.BUSLOAD_VALUE_CAN8_N198 ,18DAF1D2,24,47,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.ABOLUTE_TIME_N199 ,18DAF1D2,48,71,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.MILEAGE_N199 ,18DAF1D2,76,78,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.VIOLATION_TYPE_N199,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.SIZE_IDENTIFIER_N199,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204C6,6204C6,4ff,SECURITY_LOG_N199.IDENTIFIER_VIOLATED_FRAME_N199 ,18DAF1D2,112,119,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.VIOLATED_BUS_N199,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.PAYLOAD_DLC_N199,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204C6,6204C6,4ff,SECURITY_LOG_N199.PAYLOAD_VIOLATED_FRAME_N199 ,18DAF1D2,199,199,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.BUSLOAD_STATUS_N199,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.BUSLOAD_VALUE_CAN1_N199 ,18DAF1D2,208,215,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.BUSLOAD_VALUE_CAN2_N199 ,18DAF1D2,216,223,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.BUSLOAD_VALUE_CAN3_N199 ,18DAF1D2,224,231,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.BUSLOAD_VALUE_CAN4_N199 ,18DAF1D2,232,239,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.BUSLOAD_VALUE_CAN5_N199 ,18DAF1D2,240,247,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.BUSLOAD_VALUE_CAN6_N199 ,18DAF1D2,248,255,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.BUSLOAD_VALUE_CAN7_N199 ,18DAF1D2,256,263,1,0,0,,2204C6,6204C6,ff,SECURITY_LOG_N199.BUSLOAD_VALUE_CAN8_N199 ,18DAF1D2,24,47,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.ABOLUTE_TIME_N200 ,18DAF1D2,48,71,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.MILEAGE_N200 ,18DAF1D2,76,78,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.VIOLATION_TYPE_N200,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.SIZE_IDENTIFIER_N200,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204C7,6204C7,4ff,SECURITY_LOG_N200.IDENTIFIER_VIOLATED_FRAME_N200 ,18DAF1D2,112,119,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.VIOLATED_BUS_N200,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.PAYLOAD_DLC_N200,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204C7,6204C7,4ff,SECURITY_LOG_N200.PAYLOAD_VIOLATED_FRAME_N200 ,18DAF1D2,199,199,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.BUSLOAD_STATUS_N200,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.BUSLOAD_VALUE_CAN2_N200 ,18DAF1D2,216,223,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.BUSLOAD_VALUE_CAN3_N200 ,18DAF1D2,224,231,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.BUSLOAD_VALUE_CAN4_N200 ,18DAF1D2,232,239,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.BUSLOAD_VALUE_CAN5_N200 ,18DAF1D2,240,247,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.BUSLOAD_VALUE_CAN6_N200 ,18DAF1D2,248,255,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.BUSLOAD_VALUE_CAN7_N200 ,18DAF1D2,256,263,1,0,0,,2204C7,6204C7,ff,SECURITY_LOG_N200.BUSLOAD_VALUE_CAN8_N200 ,18DAF1D2,24,47,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.ABOLUTE_TIME_N201 ,18DAF1D2,48,71,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.MILEAGE_N201 ,18DAF1D2,76,78,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.VIOLATION_TYPE_N201,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.SIZE_IDENTIFIER_N201,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204C8,6204C8,4ff,SECURITY_LOG_N201.IDENTIFIER_VIOLATED_FRAME_N201 ,18DAF1D2,112,119,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.VIOLATED_BUS_N201,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.PAYLOAD_DLC_N201,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204C8,6204C8,4ff,SECURITY_LOG_N201.PAYLOAD_VIOLATED_FRAME_N201 ,18DAF1D2,199,199,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.BUSLOAD_STATUS_N201,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.BUSLOAD_VALUE_CAN2_N201 ,18DAF1D2,216,223,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.BUSLOAD_VALUE_CAN3_N201 ,18DAF1D2,224,231,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.BUSLOAD_VALUE_CAN4_N201 ,18DAF1D2,232,239,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.BUSLOAD_VALUE_CAN5_N201 ,18DAF1D2,240,247,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.BUSLOAD_VALUE_CAN6_N201 ,18DAF1D2,248,255,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.BUSLOAD_VALUE_CAN7_N201 ,18DAF1D2,256,263,1,0,0,,2204C8,6204C8,ff,SECURITY_LOG_N201.BUSLOAD_VALUE_CAN8_N201 ,18DAF1D2,24,47,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.ABOLUTE_TIME_N202 ,18DAF1D2,48,71,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.MILEAGE_N202 ,18DAF1D2,76,78,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.VIOLATION_TYPE_N202,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.SIZE_IDENTIFIER_N202,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204C9,6204C9,4ff,SECURITY_LOG_N202.IDENTIFIER_VIOLATED_FRAME_N202 ,18DAF1D2,112,119,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.VIOLATED_BUS_N202,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.PAYLOAD_DLC_N202,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204C9,6204C9,4ff,SECURITY_LOG_N202.PAYLOAD_VIOLATED_FRAME_N202 ,18DAF1D2,199,199,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.BUSLOAD_STATUS_N202,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.BUSLOAD_VALUE_CAN1_N202 ,18DAF1D2,208,215,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.BUSLOAD_VALUE_CAN2_N202 ,18DAF1D2,216,223,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.BUSLOAD_VALUE_CAN3_N202 ,18DAF1D2,224,231,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.BUSLOAD_VALUE_CAN4_N202 ,18DAF1D2,232,239,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.BUSLOAD_VALUE_CAN5_N202 ,18DAF1D2,240,247,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.BUSLOAD_VALUE_CAN6_N202 ,18DAF1D2,248,255,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.BUSLOAD_VALUE_CAN7_N202 ,18DAF1D2,256,263,1,0,0,,2204C9,6204C9,ff,SECURITY_LOG_N202.BUSLOAD_VALUE_CAN8_N202 ,18DAF1D2,24,47,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.ABOLUTE_TIME_N203 ,18DAF1D2,48,71,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.MILEAGE_N203 ,18DAF1D2,76,78,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.VIOLATION_TYPE_N203,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.SIZE_IDENTIFIER_N203,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204CA,6204CA,4ff,SECURITY_LOG_N203.IDENTIFIER_VIOLATED_FRAME_N203 ,18DAF1D2,112,119,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.VIOLATED_BUS_N203,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.PAYLOAD_DLC_N203,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204CA,6204CA,4ff,SECURITY_LOG_N203.PAYLOAD_VIOLATED_FRAME_N203 ,18DAF1D2,199,199,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.BUSLOAD_STATUS_N203,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.BUSLOAD_VALUE_CAN1_N203 ,18DAF1D2,208,215,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.BUSLOAD_VALUE_CAN2_N203 ,18DAF1D2,216,223,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.BUSLOAD_VALUE_CAN3_N203 ,18DAF1D2,224,231,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.BUSLOAD_VALUE_CAN4_N203 ,18DAF1D2,232,239,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.BUSLOAD_VALUE_CAN5_N203 ,18DAF1D2,240,247,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.BUSLOAD_VALUE_CAN6_N203 ,18DAF1D2,248,255,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.BUSLOAD_VALUE_CAN7_N203 ,18DAF1D2,256,263,1,0,0,,2204CA,6204CA,ff,SECURITY_LOG_N203.BUSLOAD_VALUE_CAN8_N203 ,18DAF1D2,24,47,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.ABOLUTE_TIME_N204 ,18DAF1D2,48,71,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.MILEAGE_N204 ,18DAF1D2,76,78,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.VIOLATION_TYPE_N204,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.SIZE_IDENTIFIER_N204,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204CB,6204CB,4ff,SECURITY_LOG_N204.IDENTIFIER_VIOLATED_FRAME_N204 ,18DAF1D2,112,119,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.VIOLATED_BUS_N204,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.PAYLOAD_DLC_N204,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204CB,6204CB,4ff,SECURITY_LOG_N204.PAYLOAD_VIOLATED_FRAME_N204 ,18DAF1D2,199,199,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.BUSLOAD_STATUS_N204,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.BUSLOAD_VALUE_CAN1_N204 ,18DAF1D2,208,215,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.BUSLOAD_VALUE_CAN2_N204 ,18DAF1D2,216,223,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.BUSLOAD_VALUE_CAN3_N204 ,18DAF1D2,224,231,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.BUSLOAD_VALUE_CAN4_N204 ,18DAF1D2,232,239,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.BUSLOAD_VALUE_CAN5_N204 ,18DAF1D2,240,247,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.BUSLOAD_VALUE_CAN6_N204 ,18DAF1D2,248,255,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.BUSLOAD_VALUE_CAN7_N204 ,18DAF1D2,256,263,1,0,0,,2204CB,6204CB,ff,SECURITY_LOG_N204.BUSLOAD_VALUE_CAN8_N204 ,18DAF1D2,24,47,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.ABOLUTE_TIME_N205 ,18DAF1D2,48,71,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.MILEAGE_N205 ,18DAF1D2,76,78,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.VIOLATION_TYPE_N205,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.SIZE_IDENTIFIER_N205,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204CC,6204CC,4ff,SECURITY_LOG_N205.IDENTIFIER_VIOLATED_FRAME_N205 ,18DAF1D2,112,119,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.VIOLATED_BUS_N205,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.PAYLOAD_DLC_N205,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204CC,6204CC,4ff,SECURITY_LOG_N205.PAYLOAD_VIOLATED_FRAME_N205 ,18DAF1D2,199,199,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.BUSLOAD_STATUS_N205,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.BUSLOAD_VALUE_CAN1_N205 ,18DAF1D2,208,215,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.BUSLOAD_VALUE_CAN2_N205 ,18DAF1D2,216,223,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.BUSLOAD_VALUE_CAN3_N205 ,18DAF1D2,224,231,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.BUSLOAD_VALUE_CAN4_N205 ,18DAF1D2,232,239,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.BUSLOAD_VALUE_CAN5_N205 ,18DAF1D2,240,247,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.BUSLOAD_VALUE_CAN6_N205 ,18DAF1D2,248,255,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.BUSLOAD_VALUE_CAN7_N205 ,18DAF1D2,256,263,1,0,0,,2204CC,6204CC,ff,SECURITY_LOG_N205.BUSLOAD_VALUE_CAN8_N205 ,18DAF1D2,24,47,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.ABOLUTE_TIME_N206 ,18DAF1D2,48,71,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.MILEAGE_N206 ,18DAF1D2,76,78,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.VIOLATION_TYPE_N206,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.SIZE_IDENTIFIER_N206,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204CD,6204CD,4ff,SECURITY_LOG_N206.IDENTIFIER_VIOLATED_FRAME_N206 ,18DAF1D2,112,119,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.VIOLATED_BUS_N206,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.PAYLOAD_DLC_N206,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204CD,6204CD,4ff,SECURITY_LOG_N206.PAYLOAD_VIOLATED_FRAME_N206 ,18DAF1D2,199,199,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.BUSLOAD_STATUS_N206,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.BUSLOAD_VALUE_CAN1_N206 ,18DAF1D2,208,215,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.BUSLOAD_VALUE_CAN2_N206 ,18DAF1D2,216,223,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.BUSLOAD_VALUE_CAN3_N206 ,18DAF1D2,224,231,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.BUSLOAD_VALUE_CAN4_N206 ,18DAF1D2,232,239,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.BUSLOAD_VALUE_CAN5_N206 ,18DAF1D2,240,247,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.BUSLOAD_VALUE_CAN6_N206 ,18DAF1D2,248,255,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.BUSLOAD_VALUE_CAN7_N206 ,18DAF1D2,256,263,1,0,0,,2204CD,6204CD,ff,SECURITY_LOG_N206.BUSLOAD_VALUE_CAN8_N206 ,18DAF1D2,24,47,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.ABOLUTE_TIME_N207 ,18DAF1D2,48,71,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.MILEAGE_N207 ,18DAF1D2,76,78,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.VIOLATION_TYPE_N207,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.SIZE_IDENTIFIER_N207,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204CE,6204CE,4ff,SECURITY_LOG_N207.IDENTIFIER_VIOLATED_FRAME_N207 ,18DAF1D2,112,119,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.VIOLATED_BUS_N207,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.PAYLOAD_DLC_N207,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204CE,6204CE,4ff,SECURITY_LOG_N207.PAYLOAD_VIOLATED_FRAME_N207 ,18DAF1D2,199,199,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.BUSLOAD_STATUS_N207,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.BUSLOAD_VALUE_CAN1_N207 ,18DAF1D2,208,215,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.BUSLOAD_VALUE_CAN2_N207 ,18DAF1D2,216,223,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.BUSLOAD_VALUE_CAN3_N207 ,18DAF1D2,224,231,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.BUSLOAD_VALUE_CAN4_N207 ,18DAF1D2,232,239,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.BUSLOAD_VALUE_CAN5_N207 ,18DAF1D2,240,247,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.BUSLOAD_VALUE_CAN6_N207 ,18DAF1D2,248,255,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.BUSLOAD_VALUE_CAN7_N207 ,18DAF1D2,256,263,1,0,0,,2204CE,6204CE,ff,SECURITY_LOG_N207.BUSLOAD_VALUE_CAN8_N207 ,18DAF1D2,24,47,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.ABOLUTE_TIME_N208 ,18DAF1D2,48,71,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.MILEAGE_N208 ,18DAF1D2,76,78,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.VIOLATION_TYPE_N208,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.SIZE_IDENTIFIER_N208,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204CF,6204CF,4ff,SECURITY_LOG_N208.IDENTIFIER_VIOLATED_FRAME_N208 ,18DAF1D2,112,119,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.VIOLATED_BUS_N208,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.PAYLOAD_DLC_N208,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204CF,6204CF,4ff,SECURITY_LOG_N208.PAYLOAD_VIOLATED_FRAME_N208 ,18DAF1D2,199,199,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.BUSLOAD_STATUS_N208,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.BUSLOAD_VALUE_CAN1_N208 ,18DAF1D2,208,215,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.BUSLOAD_VALUE_CAN2_N208 ,18DAF1D2,216,223,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.BUSLOAD_VALUE_CAN3_N208 ,18DAF1D2,224,231,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.BUSLOAD_VALUE_CAN4_N208 ,18DAF1D2,232,239,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.BUSLOAD_VALUE_CAN5_N208 ,18DAF1D2,240,247,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.BUSLOAD_VALUE_CAN6_N208 ,18DAF1D2,248,255,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.BUSLOAD_VALUE_CAN7_N208 ,18DAF1D2,256,263,1,0,0,,2204CF,6204CF,ff,SECURITY_LOG_N208.BUSLOAD_VALUE_CAN8_N208 ,18DAF1D2,24,47,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.ABOLUTE_TIME_N209 ,18DAF1D2,48,71,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.MILEAGE_N209 ,18DAF1D2,76,78,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.VIOLATION_TYPE_N209,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.SIZE_IDENTIFIER_N209,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204D0,6204D0,4ff,SECURITY_LOG_N209.IDENTIFIER_VIOLATED_FRAME_N209 ,18DAF1D2,112,119,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.VIOLATED_BUS_N209,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.PAYLOAD_DLC_N209,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204D0,6204D0,4ff,SECURITY_LOG_N209.PAYLOAD_VIOLATED_FRAME_N209 ,18DAF1D2,199,199,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.BUSLOAD_STATUS_N209,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.BUSLOAD_VALUE_CAN1_N209 ,18DAF1D2,208,215,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.BUSLOAD_VALUE_CAN2_N209 ,18DAF1D2,216,223,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.BUSLOAD_VALUE_CAN3_N209 ,18DAF1D2,224,231,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.BUSLOAD_VALUE_CAN4_N209 ,18DAF1D2,232,239,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.BUSLOAD_VALUE_CAN5_N209 ,18DAF1D2,240,247,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.BUSLOAD_VALUE_CAN6_N209 ,18DAF1D2,248,255,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.BUSLOAD_VALUE_CAN7_N209 ,18DAF1D2,256,263,1,0,0,,2204D0,6204D0,ff,SECURITY_LOG_N209.BUSLOAD_VALUE_CAN8_N209 ,18DAF1D2,24,47,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.ABOLUTE_TIME_N210 ,18DAF1D2,48,71,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.MILEAGE_N210 ,18DAF1D2,76,78,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.VIOLATION_TYPE_N210,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.SIZE_IDENTIFIER_N210,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204D1,6204D1,4ff,SECURITY_LOG_N210.IDENTIFIER_VIOLATED_FRAME_N210 ,18DAF1D2,112,119,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.VIOLATED_BUS_N210,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.PAYLOAD_DLC_N210,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204D1,6204D1,4ff,SECURITY_LOG_N210.PAYLOAD_VIOLATED_FRAME_N210 ,18DAF1D2,199,199,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.BUSLOAD_STATUS_N210,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.BUSLOAD_VALUE_CAN1_N210 ,18DAF1D2,208,215,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.BUSLOAD_VALUE_CAN2_N210 ,18DAF1D2,216,223,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.BUSLOAD_VALUE_CAN3_N210 ,18DAF1D2,224,231,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.BUSLOAD_VALUE_CAN4_N210 ,18DAF1D2,232,239,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.BUSLOAD_VALUE_CAN5_N210 ,18DAF1D2,240,247,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.BUSLOAD_VALUE_CAN6_N210 ,18DAF1D2,248,255,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.BUSLOAD_VALUE_CAN7_N210 ,18DAF1D2,256,263,1,0,0,,2204D1,6204D1,ff,SECURITY_LOG_N210.BUSLOAD_VALUE_CAN8_N210 ,18DAF1D2,24,47,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.ABOLUTE_TIME_N211 ,18DAF1D2,48,71,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.MILEAGE_N211 ,18DAF1D2,76,78,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.VIOLATION_TYPE_N211,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.SIZE_IDENTIFIER_N211,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204D2,6204D2,4ff,SECURITY_LOG_N211.IDENTIFIER_VIOLATED_FRAME_N211 ,18DAF1D2,112,119,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.VIOLATED_BUS_N211,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.PAYLOAD_DLC_N211,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204D2,6204D2,4ff,SECURITY_LOG_N211.PAYLOAD_VIOLATED_FRAME_N211 ,18DAF1D2,199,199,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.BUSLOAD_STATUS_N211,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.BUSLOAD_VALUE_CAN1_N211 ,18DAF1D2,208,215,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.BUSLOAD_VALUE_CAN2_N211 ,18DAF1D2,216,223,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.BUSLOAD_VALUE_CAN3_N211 ,18DAF1D2,224,231,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.BUSLOAD_VALUE_CAN4_N211 ,18DAF1D2,232,239,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.BUSLOAD_VALUE_CAN5_N211 ,18DAF1D2,240,247,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.BUSLOAD_VALUE_CAN6_N211 ,18DAF1D2,248,255,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.BUSLOAD_VALUE_CAN7_N211 ,18DAF1D2,256,263,1,0,0,,2204D2,6204D2,ff,SECURITY_LOG_N211.BUSLOAD_VALUE_CAN8_N211 ,18DAF1D2,24,47,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.ABOLUTE_TIME_N212 ,18DAF1D2,48,71,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.MILEAGE_N212 ,18DAF1D2,76,78,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.VIOLATION_TYPE_N212,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.SIZE_IDENTIFIER_N212,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204D3,6204D3,4ff,SECURITY_LOG_N212.IDENTIFIER_VIOLATED_FRAME_N212 ,18DAF1D2,112,119,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.VIOLATED_BUS_N212,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.PAYLOAD_DLC_N212,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204D3,6204D3,4ff,SECURITY_LOG_N212.PAYLOAD_VIOLATED_FRAME_N212 ,18DAF1D2,199,199,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.BUSLOAD_STATUS_N212,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.BUSLOAD_VALUE_CAN1_N212 ,18DAF1D2,208,215,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.BUSLOAD_VALUE_CAN2_N212 ,18DAF1D2,216,223,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.BUSLOAD_VALUE_CAN3_N212 ,18DAF1D2,224,231,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.BUSLOAD_VALUE_CAN4_N212 ,18DAF1D2,232,239,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.BUSLOAD_VALUE_CAN5_N212 ,18DAF1D2,240,247,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.BUSLOAD_VALUE_CAN6_N212 ,18DAF1D2,248,255,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.BUSLOAD_VALUE_CAN7_N212 ,18DAF1D2,256,263,1,0,0,,2204D3,6204D3,ff,SECURITY_LOG_N212.BUSLOAD_VALUE_CAN8_N212 ,18DAF1D2,24,47,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.ABOLUTE_TIME_N213 ,18DAF1D2,48,71,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.MILEAGE_N213 ,18DAF1D2,76,78,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.VIOLATION_TYPE_N213,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.SIZE_IDENTIFIER_N213,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204D4,6204D4,4ff,SECURITY_LOG_N213.IDENTIFIER_VIOLATED_FRAME_N213 ,18DAF1D2,112,119,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.VIOLATED_BUS_N213,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.PAYLOAD_DLC_N213,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204D4,6204D4,4ff,SECURITY_LOG_N213.PAYLOAD_VIOLATED_FRAME_N213 ,18DAF1D2,199,199,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.BUSLOAD_STATUS_N213,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.BUSLOAD_VALUE_CAN1_N213 ,18DAF1D2,208,215,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.BUSLOAD_VALUE_CAN2_N213 ,18DAF1D2,216,223,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.BUSLOAD_VALUE_CAN3_N213 ,18DAF1D2,224,231,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.BUSLOAD_VALUE_CAN4_N213 ,18DAF1D2,232,239,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.BUSLOAD_VALUE_CAN5_N213 ,18DAF1D2,240,247,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.BUSLOAD_VALUE_CAN6_N213 ,18DAF1D2,248,255,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.BUSLOAD_VALUE_CAN7_N213 ,18DAF1D2,256,263,1,0,0,,2204D4,6204D4,ff,SECURITY_LOG_N213.BUSLOAD_VALUE_CAN8_N213 ,18DAF1D2,24,47,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.ABOLUTE_TIME_N214 ,18DAF1D2,48,71,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.MILEAGE_N214 ,18DAF1D2,76,78,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.VIOLATION_TYPE_N214,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.SIZE_IDENTIFIER_N214,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204D5,6204D5,4ff,SECURITY_LOG_N214.IDENTIFIER_VIOLATED_FRAME_N214 ,18DAF1D2,112,119,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.VIOLATED_BUS_N214,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.PAYLOAD_DLC_N214,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204D5,6204D5,4ff,SECURITY_LOG_N214.PAYLOAD_VIOLATED_FRAME_N214 ,18DAF1D2,199,199,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.BUSLOAD_STATUS_N214,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.BUSLOAD_VALUE_CAN1_N214 ,18DAF1D2,208,215,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.BUSLOAD_VALUE_CAN2_N214 ,18DAF1D2,216,223,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.BUSLOAD_VALUE_CAN3_N214 ,18DAF1D2,224,231,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.BUSLOAD_VALUE_CAN4_N214 ,18DAF1D2,232,239,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.BUSLOAD_VALUE_CAN5_N214 ,18DAF1D2,240,247,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.BUSLOAD_VALUE_CAN6_N214 ,18DAF1D2,248,255,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.BUSLOAD_VALUE_CAN7_N214 ,18DAF1D2,256,263,1,0,0,,2204D5,6204D5,ff,SECURITY_LOG_N214.BUSLOAD_VALUE_CAN8_N214 ,18DAF1D2,24,47,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.ABOLUTE_TIME_N215 ,18DAF1D2,48,71,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.MILEAGE_N215 ,18DAF1D2,76,78,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.VIOLATION_TYPE_N215,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.SIZE_IDENTIFIER_N215,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204D6,6204D6,4ff,SECURITY_LOG_N215.IDENTIFIER_VIOLATED_FRAME_N215 ,18DAF1D2,112,119,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.VIOLATED_BUS_N215,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.PAYLOAD_DLC_N215,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204D6,6204D6,4ff,SECURITY_LOG_N215.PAYLOAD_VIOLATED_FRAME_N215 ,18DAF1D2,199,199,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.BUSLOAD_STATUS_N215,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.BUSLOAD_VALUE_CAN1_N215 ,18DAF1D2,208,215,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.BUSLOAD_VALUE_CAN2_N215 ,18DAF1D2,216,223,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.BUSLOAD_VALUE_CAN3_N215 ,18DAF1D2,224,231,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.BUSLOAD_VALUE_CAN4_N215 ,18DAF1D2,232,239,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.BUSLOAD_VALUE_CAN5_N215 ,18DAF1D2,240,247,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.BUSLOAD_VALUE_CAN6_N215 ,18DAF1D2,248,255,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.BUSLOAD_VALUE_CAN7_N215 ,18DAF1D2,256,263,1,0,0,,2204D6,6204D6,ff,SECURITY_LOG_N215.BUSLOAD_VALUE_CAN8_N215 ,18DAF1D2,24,47,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.ABOLUTE_TIME_N216 ,18DAF1D2,48,71,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.MILEAGE_N216 ,18DAF1D2,76,78,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.VIOLATION_TYPE_N216,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.SIZE_IDENTIFIER_N216,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204D7,6204D7,4ff,SECURITY_LOG_N216.IDENTIFIER_VIOLATED_FRAME_N216 ,18DAF1D2,112,119,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.VIOLATED_BUS_N216,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.PAYLOAD_DLC_N216,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204D7,6204D7,4ff,SECURITY_LOG_N216.PAYLOAD_VIOLATED_FRAME_N216 ,18DAF1D2,199,199,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.BUSLOAD_STATUS_N216,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.BUSLOAD_VALUE_CAN1_N216 ,18DAF1D2,208,215,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.BUSLOAD_VALUE_CAN2_N216 ,18DAF1D2,216,223,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.BUSLOAD_VALUE_CAN3_N216 ,18DAF1D2,224,231,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.BUSLOAD_VALUE_CAN4_N216 ,18DAF1D2,232,239,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.BUSLOAD_VALUE_CAN5_N216 ,18DAF1D2,240,247,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.BUSLOAD_VALUE_CAN6_N216 ,18DAF1D2,248,255,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.BUSLOAD_VALUE_CAN7_N216 ,18DAF1D2,256,263,1,0,0,,2204D7,6204D7,ff,SECURITY_LOG_N216.BUSLOAD_VALUE_CAN8_N216 ,18DAF1D2,24,47,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.ABOLUTE_TIME_N217 ,18DAF1D2,48,71,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.MILEAGE_N217 ,18DAF1D2,76,78,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.VIOLATION_TYPE_N217,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.SIZE_IDENTIFIER_N217,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204D8,6204D8,4ff,SECURITY_LOG_N217.IDENTIFIER_VIOLATED_FRAME_N217 ,18DAF1D2,112,119,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.VIOLATED_BUS_N217,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.PAYLOAD_DLC_N217,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204D8,6204D8,4ff,SECURITY_LOG_N217.PAYLOAD_VIOLATED_FRAME_N217 ,18DAF1D2,199,199,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.BUSLOAD_STATUS_N217,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.BUSLOAD_VALUE_CAN1_N217 ,18DAF1D2,208,215,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.BUSLOAD_VALUE_CAN2_N217 ,18DAF1D2,216,223,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.BUSLOAD_VALUE_CAN3_N217 ,18DAF1D2,224,231,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.BUSLOAD_VALUE_CAN4_N217 ,18DAF1D2,232,239,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.BUSLOAD_VALUE_CAN5_N217 ,18DAF1D2,240,247,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.BUSLOAD_VALUE_CAN6_N217 ,18DAF1D2,248,255,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.BUSLOAD_VALUE_CAN7_N217 ,18DAF1D2,256,263,1,0,0,,2204D8,6204D8,ff,SECURITY_LOG_N217.BUSLOAD_VALUE_CAN8_N217 ,18DAF1D2,24,47,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.ABOLUTE_TIME_N218 ,18DAF1D2,48,71,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.MILEAGE_N218 ,18DAF1D2,76,78,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.VIOLATION_TYPE_N218,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.SIZE_IDENTIFIER_N218,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204D9,6204D9,4ff,SECURITY_LOG_N218.IDENTIFIER_VIOLATED_FRAME_N218 ,18DAF1D2,112,119,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.VIOLATED_BUS_N218,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.PAYLOAD_DLC_N218,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204D9,6204D9,4ff,SECURITY_LOG_N218.PAYLOAD_VIOLATED_FRAME_N218 ,18DAF1D2,199,199,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.BUSLOAD_STATUS_N218,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.BUSLOAD_VALUE_CAN1_N218 ,18DAF1D2,208,215,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.BUSLOAD_VALUE_CAN2_N218 ,18DAF1D2,216,223,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.BUSLOAD_VALUE_CAN3_N218 ,18DAF1D2,224,231,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.BUSLOAD_VALUE_CAN4_N218 ,18DAF1D2,232,239,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.BUSLOAD_VALUE_CAN5_N218 ,18DAF1D2,240,247,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.BUSLOAD_VALUE_CAN6_N218 ,18DAF1D2,248,255,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.BUSLOAD_VALUE_CAN7_N218 ,18DAF1D2,256,263,1,0,0,,2204D9,6204D9,ff,SECURITY_LOG_N218.BUSLOAD_VALUE_CAN8_N218 ,18DAF1D2,24,47,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.ABOLUTE_TIME_N219 ,18DAF1D2,48,71,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.MILEAGE_N219 ,18DAF1D2,76,78,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.VIOLATION_TYPE_N219,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.SIZE_IDENTIFIER_N219,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204DA,6204DA,4ff,SECURITY_LOG_N219.IDENTIFIER_VIOLATED_FRAME_N219 ,18DAF1D2,112,119,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.VIOLATED_BUS_N219,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.PAYLOAD_DLC_N219,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204DA,6204DA,4ff,SECURITY_LOG_N219.PAYLOAD_VIOLATED_FRAME_N219 ,18DAF1D2,199,199,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.BUSLOAD_STATUS_N219,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.BUSLOAD_VALUE_CAN1_N219 ,18DAF1D2,208,215,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.BUSLOAD_VALUE_CAN2_N219 ,18DAF1D2,216,223,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.BUSLOAD_VALUE_CAN3_N219 ,18DAF1D2,224,231,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.BUSLOAD_VALUE_CAN4_N219 ,18DAF1D2,232,239,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.BUSLOAD_VALUE_CAN5_N219 ,18DAF1D2,240,247,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.BUSLOAD_VALUE_CAN6_N219 ,18DAF1D2,248,255,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.BUSLOAD_VALUE_CAN7_N219 ,18DAF1D2,256,263,1,0,0,,2204DA,6204DA,ff,SECURITY_LOG_N219.BUSLOAD_VALUE_CAN8_N219 ,18DAF1D2,24,47,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.ABOLUTE_TIME_N220 ,18DAF1D2,48,71,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.MILEAGE_N220 ,18DAF1D2,76,78,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.VIOLATION_TYPE_N220,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.SIZE_IDENTIFIER_N220,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204DB,6204DB,4ff,SECURITY_LOG_N220.IDENTIFIER_VIOLATED_FRAME_N220 ,18DAF1D2,112,119,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.VIOLATED_BUS_N220,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.PAYLOAD_DLC_N220,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204DB,6204DB,4ff,SECURITY_LOG_N220.PAYLOAD_VIOLATED_FRAME_N220 ,18DAF1D2,199,199,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.BUSLOAD_STATUS_N220,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.BUSLOAD_VALUE_CAN1_N220 ,18DAF1D2,208,215,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.BUSLOAD_VALUE_CAN2_N220 ,18DAF1D2,216,223,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.BUSLOAD_VALUE_CAN3_N220 ,18DAF1D2,224,231,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.BUSLOAD_VALUE_CAN4_N220 ,18DAF1D2,232,239,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.BUSLOAD_VALUE_CAN5_N220 ,18DAF1D2,240,247,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.BUSLOAD_VALUE_CAN6_N220 ,18DAF1D2,248,255,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.BUSLOAD_VALUE_CAN7_N220 ,18DAF1D2,256,263,1,0,0,,2204DB,6204DB,ff,SECURITY_LOG_N220.BUSLOAD_VALUE_CAN8_N220 ,18DAF1D2,24,47,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.ABOLUTE_TIME_N221 ,18DAF1D2,48,71,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.MILEAGE_N221 ,18DAF1D2,76,78,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.VIOLATION_TYPE_N221,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.SIZE_IDENTIFIER_N221,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204DC,6204DC,4ff,SECURITY_LOG_N221.IDENTIFIER_VIOLATED_FRAME_N221 ,18DAF1D2,112,119,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.VIOLATED_BUS_N221,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.PAYLOAD_DLC_N221,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204DC,6204DC,4ff,SECURITY_LOG_N221.PAYLOAD_VIOLATED_FRAME_N221 ,18DAF1D2,199,199,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.BUSLOAD_STATUS_N221,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.BUSLOAD_VALUE_CAN1_N221 ,18DAF1D2,208,215,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.BUSLOAD_VALUE_CAN2_N221 ,18DAF1D2,216,223,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.BUSLOAD_VALUE_CAN3_N221 ,18DAF1D2,224,231,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.BUSLOAD_VALUE_CAN4_N221 ,18DAF1D2,232,239,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.BUSLOAD_VALUE_CAN5_N221 ,18DAF1D2,240,247,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.BUSLOAD_VALUE_CAN6_N221 ,18DAF1D2,248,255,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.BUSLOAD_VALUE_CAN7_N221 ,18DAF1D2,256,263,1,0,0,,2204DC,6204DC,ff,SECURITY_LOG_N221.BUSLOAD_VALUE_CAN8_N221 ,18DAF1D2,24,47,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.ABOLUTE_TIME_N222 ,18DAF1D2,48,71,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.MILEAGE_N222 ,18DAF1D2,76,78,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.VIOLATION_TYPE_N222,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.SIZE_IDENTIFIER_N222,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204DD,6204DD,4ff,SECURITY_LOG_N222.IDENTIFIER_VIOLATED_FRAME_N222 ,18DAF1D2,112,119,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.VIOLATED_BUS_N222,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.PAYLOAD_DLC_N222,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204DD,6204DD,4ff,SECURITY_LOG_N222.PAYLOAD_VIOLATED_FRAME_N222 ,18DAF1D2,199,199,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.BUSLOAD_STATUS_N222,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.BUSLOAD_VALUE_CAN1_N222 ,18DAF1D2,208,215,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.BUSLOAD_VALUE_CAN2_N222 ,18DAF1D2,216,223,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.BUSLOAD_VALUE_CAN3_N222 ,18DAF1D2,224,231,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.BUSLOAD_VALUE_CAN4_N222 ,18DAF1D2,232,239,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.BUSLOAD_VALUE_CAN5_N222 ,18DAF1D2,240,247,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.BUSLOAD_VALUE_CAN6_N222 ,18DAF1D2,248,255,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.BUSLOAD_VALUE_CAN7_N222 ,18DAF1D2,256,263,1,0,0,,2204DD,6204DD,ff,SECURITY_LOG_N222.BUSLOAD_VALUE_CAN8_N222 ,18DAF1D2,24,47,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.ABOLUTE_TIME_N223 ,18DAF1D2,48,71,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.MILEAGE_N223 ,18DAF1D2,76,78,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.VIOLATION_TYPE_N223,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.SIZE_IDENTIFIER_N223,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204DE,6204DE,4ff,SECURITY_LOG_N223.IDENTIFIER_VIOLATED_FRAME_N223 ,18DAF1D2,112,119,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.VIOLATED_BUS_N223,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.PAYLOAD_DLC_N223,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204DE,6204DE,4ff,SECURITY_LOG_N223.PAYLOAD_VIOLATED_FRAME_N223 ,18DAF1D2,199,199,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.BUSLOAD_STATUS_N223,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.BUSLOAD_VALUE_CAN1_N223 ,18DAF1D2,208,215,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.BUSLOAD_VALUE_CAN2_N223 ,18DAF1D2,216,223,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.BUSLOAD_VALUE_CAN3_N223 ,18DAF1D2,224,231,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.BUSLOAD_VALUE_CAN4_N223 ,18DAF1D2,232,239,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.BUSLOAD_VALUE_CAN5_N223 ,18DAF1D2,240,247,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.BUSLOAD_VALUE_CAN6_N223 ,18DAF1D2,248,255,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.BUSLOAD_VALUE_CAN7_N223 ,18DAF1D2,256,263,1,0,0,,2204DE,6204DE,ff,SECURITY_LOG_N223.BUSLOAD_VALUE_CAN8_N223 ,18DAF1D2,24,47,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.ABOLUTE_TIME_N224 ,18DAF1D2,48,71,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.MILEAGE_N224 ,18DAF1D2,76,78,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.VIOLATION_TYPE_N224,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.SIZE_IDENTIFIER_N224,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204DF,6204DF,4ff,SECURITY_LOG_N224.IDENTIFIER_VIOLATED_FRAME_N224 ,18DAF1D2,112,119,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.VIOLATED_BUS_N224,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.PAYLOAD_DLC_N224,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204DF,6204DF,4ff,SECURITY_LOG_N224.PAYLOAD_VIOLATED_FRAME_N224 ,18DAF1D2,199,199,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.BUSLOAD_STATUS_N224,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.BUSLOAD_VALUE_CAN1_N224 ,18DAF1D2,208,215,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.BUSLOAD_VALUE_CAN2_N224 ,18DAF1D2,216,223,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.BUSLOAD_VALUE_CAN3_N224 ,18DAF1D2,224,231,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.BUSLOAD_VALUE_CAN4_N224 ,18DAF1D2,232,239,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.BUSLOAD_VALUE_CAN5_N224 ,18DAF1D2,240,247,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.BUSLOAD_VALUE_CAN6_N224 ,18DAF1D2,248,255,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.BUSLOAD_VALUE_CAN7_N224 ,18DAF1D2,256,263,1,0,0,,2204DF,6204DF,ff,SECURITY_LOG_N224.BUSLOAD_VALUE_CAN8_N224 ,18DAF1D2,24,47,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.ABOLUTE_TIME_N225 ,18DAF1D2,48,71,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.MILEAGE_N225 ,18DAF1D2,76,78,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.VIOLATION_TYPE_N225,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.SIZE_IDENTIFIER_N225,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204E0,6204E0,4ff,SECURITY_LOG_N225.IDENTIFIER_VIOLATED_FRAME_N225 ,18DAF1D2,112,119,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.VIOLATED_BUS_N225,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.PAYLOAD_DLC_N225,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204E0,6204E0,4ff,SECURITY_LOG_N225.PAYLOAD_VIOLATED_FRAME_N225 ,18DAF1D2,199,199,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.BUSLOAD_STATUS_N225,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.BUSLOAD_VALUE_CAN1_N225 ,18DAF1D2,208,215,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.BUSLOAD_VALUE_CAN2_N225 ,18DAF1D2,216,223,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.BUSLOAD_VALUE_CAN3_N225 ,18DAF1D2,224,231,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.BUSLOAD_VALUE_CAN4_N225 ,18DAF1D2,232,239,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.BUSLOAD_VALUE_CAN5_N225 ,18DAF1D2,240,247,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.BUSLOAD_VALUE_CAN6_N225 ,18DAF1D2,248,255,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.BUSLOAD_VALUE_CAN7_N225 ,18DAF1D2,256,263,1,0,0,,2204E0,6204E0,ff,SECURITY_LOG_N225.BUSLOAD_VALUE_CAN8_N225 ,18DAF1D2,24,47,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.ABOLUTE_TIME_N226 ,18DAF1D2,48,71,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.MILEAGE_N226 ,18DAF1D2,76,78,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.VIOLATION_TYPE_N226,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.SIZE_IDENTIFIER_N226,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204E1,6204E1,4ff,SECURITY_LOG_N226.IDENTIFIER_VIOLATED_FRAME_N226 ,18DAF1D2,112,119,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.VIOLATED_BUS_N226,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.PAYLOAD_DLC_N226,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204E1,6204E1,4ff,SECURITY_LOG_N226.PAYLOAD_VIOLATED_FRAME_N226 ,18DAF1D2,199,199,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.BUSLOAD_STATUS_N226,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.BUSLOAD_VALUE_CAN1_N226 ,18DAF1D2,208,215,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.BUSLOAD_VALUE_CAN2_N226 ,18DAF1D2,216,223,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.BUSLOAD_VALUE_CAN3_N226 ,18DAF1D2,224,231,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.BUSLOAD_VALUE_CAN4_N226 ,18DAF1D2,232,239,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.BUSLOAD_VALUE_CAN5_N226 ,18DAF1D2,240,247,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.BUSLOAD_VALUE_CAN6_N226 ,18DAF1D2,248,255,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.BUSLOAD_VALUE_CAN7_N226 ,18DAF1D2,256,263,1,0,0,,2204E1,6204E1,ff,SECURITY_LOG_N226.BUSLOAD_VALUE_CAN8_N226 ,18DAF1D2,24,47,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.ABOLUTE_TIME_N227 ,18DAF1D2,48,71,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.MILEAGE_N227 ,18DAF1D2,76,78,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.VIOLATION_TYPE_N227,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.SIZE_IDENTIFIER_N227,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204E2,6204E2,4ff,SECURITY_LOG_N227.IDENTIFIER_VIOLATED_FRAME_N227 ,18DAF1D2,112,119,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.VIOLATED_BUS_N227,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.PAYLOAD_DLC_N227,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204E2,6204E2,4ff,SECURITY_LOG_N227.PAYLOAD_VIOLATED_FRAME_N227 ,18DAF1D2,199,199,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.BUSLOAD_STATUS_N227,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.BUSLOAD_VALUE_CAN1_N227 ,18DAF1D2,208,215,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.BUSLOAD_VALUE_CAN2_N227 ,18DAF1D2,216,223,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.BUSLOAD_VALUE_CAN3_N227 ,18DAF1D2,224,231,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.BUSLOAD_VALUE_CAN4_N227 ,18DAF1D2,232,239,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.BUSLOAD_VALUE_CAN5_N227 ,18DAF1D2,240,247,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.BUSLOAD_VALUE_CAN6_N227 ,18DAF1D2,248,255,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.BUSLOAD_VALUE_CAN7_N227 ,18DAF1D2,256,263,1,0,0,,2204E2,6204E2,ff,SECURITY_LOG_N227.BUSLOAD_VALUE_CAN8_N227 ,18DAF1D2,24,47,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.ABOLUTE_TIME_N228 ,18DAF1D2,48,71,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.MILEAGE_N228 ,18DAF1D2,76,78,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.VIOLATION_TYPE_N228,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.SIZE_IDENTIFIER_N228,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204E3,6204E3,4ff,SECURITY_LOG_N228.IDENTIFIER_VIOLATED_FRAME_N228 ,18DAF1D2,112,119,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.VIOLATED_BUS_N228,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.PAYLOAD_DLC_N228,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204E3,6204E3,4ff,SECURITY_LOG_N228.PAYLOAD_VIOLATED_FRAME_N228 ,18DAF1D2,199,199,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.BUSLOAD_STATUS_N228,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.BUSLOAD_VALUE_CAN1_N228 ,18DAF1D2,208,215,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.BUSLOAD_VALUE_CAN2_N228 ,18DAF1D2,216,223,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.BUSLOAD_VALUE_CAN3_N228 ,18DAF1D2,224,231,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.BUSLOAD_VALUE_CAN4_N228 ,18DAF1D2,232,239,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.BUSLOAD_VALUE_CAN5_N228 ,18DAF1D2,240,247,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.BUSLOAD_VALUE_CAN6_N228 ,18DAF1D2,248,255,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.BUSLOAD_VALUE_CAN7_N228 ,18DAF1D2,256,263,1,0,0,,2204E3,6204E3,ff,SECURITY_LOG_N228.BUSLOAD_VALUE_CAN8_N228 ,18DAF1D2,24,47,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.ABOLUTE_TIME_N229 ,18DAF1D2,48,71,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.MILEAGE_N229 ,18DAF1D2,76,78,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.VIOLATION_TYPE_N229,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.SIZE_IDENTIFIER_N229,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204E4,6204E4,4ff,SECURITY_LOG_N229.IDENTIFIER_VIOLATED_FRAME_N229 ,18DAF1D2,112,119,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.VIOLATED_BUS_N229,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.PAYLOAD_DLC_N229,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204E4,6204E4,4ff,SECURITY_LOG_N229.PAYLOAD_VIOLATED_FRAME_N229 ,18DAF1D2,199,199,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.BUSLOAD_STATUS_N229,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.BUSLOAD_VALUE_CAN1_N229 ,18DAF1D2,208,215,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.BUSLOAD_VALUE_CAN2_N229 ,18DAF1D2,216,223,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.BUSLOAD_VALUE_CAN3_N229 ,18DAF1D2,224,231,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.BUSLOAD_VALUE_CAN4_N229 ,18DAF1D2,232,239,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.BUSLOAD_VALUE_CAN5_N229 ,18DAF1D2,240,247,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.BUSLOAD_VALUE_CAN6_N229 ,18DAF1D2,248,255,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.BUSLOAD_VALUE_CAN7_N229 ,18DAF1D2,256,263,1,0,0,,2204E4,6204E4,ff,SECURITY_LOG_N229.BUSLOAD_VALUE_CAN8_N229 ,18DAF1D2,24,47,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.ABOLUTE_TIME_N230 ,18DAF1D2,48,71,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.MILEAGE_N230 ,18DAF1D2,76,78,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.VIOLATION_TYPE_N230,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.SIZE_IDENTIFIER_N230,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204E5,6204E5,4ff,SECURITY_LOG_N230.IDENTIFIER_VIOLATED_FRAME_N230 ,18DAF1D2,112,119,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.VIOLATED_BUS_N230,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.PAYLOAD_DLC_N230,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204E5,6204E5,4ff,SECURITY_LOG_N230.PAYLOAD_VIOLATED_FRAME_N230 ,18DAF1D2,199,199,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.BUSLOAD_STATUS_N230,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.BUSLOAD_VALUE_CAN1_N230 ,18DAF1D2,208,215,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.BUSLOAD_VALUE_CAN2_N230 ,18DAF1D2,216,223,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.BUSLOAD_VALUE_CAN3_N230 ,18DAF1D2,224,231,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.BUSLOAD_VALUE_CAN4_N230 ,18DAF1D2,232,239,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.BUSLOAD_VALUE_CAN5_N230 ,18DAF1D2,240,247,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.BUSLOAD_VALUE_CAN6_N230 ,18DAF1D2,248,255,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.BUSLOAD_VALUE_CAN7_N230 ,18DAF1D2,256,263,1,0,0,,2204E5,6204E5,ff,SECURITY_LOG_N230.BUSLOAD_VALUE_CAN8_N230 ,18DAF1D2,24,47,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.ABOLUTE_TIME_N231 ,18DAF1D2,48,71,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.MILEAGE_N231 ,18DAF1D2,76,78,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.VIOLATION_TYPE_N231,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.SIZE_IDENTIFIER_N231,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204E6,6204E6,4ff,SECURITY_LOG_N231.IDENTIFIER_VIOLATED_FRAME_N231 ,18DAF1D2,112,119,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.VIOLATED_BUS_N231,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.PAYLOAD_DLC_N231,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204E6,6204E6,4ff,SECURITY_LOG_N231.PAYLOAD_VIOLATED_FRAME_N231 ,18DAF1D2,199,199,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.BUSLOAD_STATUS_N231,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.BUSLOAD_VALUE_CAN1_N231 ,18DAF1D2,208,215,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.BUSLOAD_VALUE_CAN2_N231 ,18DAF1D2,216,223,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.BUSLOAD_VALUE_CAN3_N231 ,18DAF1D2,224,231,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.BUSLOAD_VALUE_CAN4_N231 ,18DAF1D2,232,239,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.BUSLOAD_VALUE_CAN5_N231 ,18DAF1D2,240,247,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.BUSLOAD_VALUE_CAN6_N231 ,18DAF1D2,248,255,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.BUSLOAD_VALUE_CAN7_N231 ,18DAF1D2,256,263,1,0,0,,2204E6,6204E6,ff,SECURITY_LOG_N231.BUSLOAD_VALUE_CAN8_N231 ,18DAF1D2,24,47,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.ABOLUTE_TIME_N232 ,18DAF1D2,48,71,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.MILEAGE_N232 ,18DAF1D2,76,78,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.VIOLATION_TYPE_N232,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.SIZE_IDENTIFIER_N232,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204E7,6204E7,4ff,SECURITY_LOG_N232.IDENTIFIER_VIOLATED_FRAME_N232 ,18DAF1D2,112,119,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.VIOLATED_BUS_N232,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.PAYLOAD_DLC_N232,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204E7,6204E7,4ff,SECURITY_LOG_N232.PAYLOAD_VIOLATED_FRAME_N232 ,18DAF1D2,199,199,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.BUSLOAD_STATUS_N232,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.BUSLOAD_VALUE_CAN1_N232 ,18DAF1D2,208,215,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.BUSLOAD_VALUE_CAN2_N232 ,18DAF1D2,216,223,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.BUSLOAD_VALUE_CAN3_N232 ,18DAF1D2,224,231,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.BUSLOAD_VALUE_CAN4_N232 ,18DAF1D2,232,239,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.BUSLOAD_VALUE_CAN5_N232 ,18DAF1D2,240,247,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.BUSLOAD_VALUE_CAN6_N232 ,18DAF1D2,248,255,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.BUSLOAD_VALUE_CAN7_N232 ,18DAF1D2,256,263,1,0,0,,2204E7,6204E7,ff,SECURITY_LOG_N232.BUSLOAD_VALUE_CAN8_N232 ,18DAF1D2,24,47,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.ABOLUTE_TIME_N233 ,18DAF1D2,48,71,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.MILEAGE_N233 ,18DAF1D2,76,78,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.VIOLATION_TYPE_N233,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.SIZE_IDENTIFIER_N233,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204E8,6204E8,4ff,SECURITY_LOG_N233.IDENTIFIER_VIOLATED_FRAME_N233 ,18DAF1D2,112,119,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.VIOLATED_BUS_N233,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.PAYLOAD_DLC_N233,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204E8,6204E8,4ff,SECURITY_LOG_N233.PAYLOAD_VIOLATED_FRAME_N233 ,18DAF1D2,199,199,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.BUSLOAD_STATUS_N233,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.BUSLOAD_VALUE_CAN1_N233 ,18DAF1D2,208,215,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.BUSLOAD_VALUE_CAN2_N233 ,18DAF1D2,216,223,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.BUSLOAD_VALUE_CAN3_N233 ,18DAF1D2,224,231,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.BUSLOAD_VALUE_CAN4_N233 ,18DAF1D2,232,239,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.BUSLOAD_VALUE_CAN5_N233 ,18DAF1D2,240,247,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.BUSLOAD_VALUE_CAN6_N233 ,18DAF1D2,248,255,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.BUSLOAD_VALUE_CAN7_N233 ,18DAF1D2,256,263,1,0,0,,2204E8,6204E8,ff,SECURITY_LOG_N233.BUSLOAD_VALUE_CAN8_N233 ,18DAF1D2,24,47,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.ABOLUTE_TIME_N234 ,18DAF1D2,48,71,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.MILEAGE_N234 ,18DAF1D2,76,78,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.VIOLATION_TYPE_N234,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.SIZE_IDENTIFIER_N234,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204E9,6204E9,4ff,SECURITY_LOG_N234.IDENTIFIER_VIOLATED_FRAME_N234 ,18DAF1D2,112,119,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.VIOLATED_BUS_N234,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.PAYLOAD_DLC_N234,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204E9,6204E9,4ff,SECURITY_LOG_N234.PAYLOAD_VIOLATED_FRAME_N234 ,18DAF1D2,199,199,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.BUSLOAD_STATUS_N234,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.BUSLOAD_VALUE_CAN1_N234 ,18DAF1D2,208,215,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.BUSLOAD_VALUE_CAN2_N234 ,18DAF1D2,216,223,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.BUSLOAD_VALUE_CAN3_N234 ,18DAF1D2,224,231,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.BUSLOAD_VALUE_CAN4_N234 ,18DAF1D2,232,239,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.BUSLOAD_VALUE_CAN5_N234 ,18DAF1D2,240,247,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.BUSLOAD_VALUE_CAN6_N234 ,18DAF1D2,248,255,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.BUSLOAD_VALUE_CAN7_N234 ,18DAF1D2,256,263,1,0,0,,2204E9,6204E9,ff,SECURITY_LOG_N234.BUSLOAD_VALUE_CAN8_N234 ,18DAF1D2,24,47,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.ABOLUTE_TIME_N235 ,18DAF1D2,48,71,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.MILEAGE_N235 ,18DAF1D2,76,78,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.VIOLATION_TYPE_N235,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.SIZE_IDENTIFIER_N235,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204EA,6204EA,4ff,SECURITY_LOG_N235.IDENTIFIER_VIOLATED_FRAME_N235 ,18DAF1D2,112,119,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.VIOLATED_BUS_N235,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.PAYLOAD_DLC_N235,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204EA,6204EA,4ff,SECURITY_LOG_N235.PAYLOAD_VIOLATED_FRAME_N235 ,18DAF1D2,199,199,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.BUSLOAD_STATUS_N235,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.BUSLOAD_VALUE_CAN1_N235 ,18DAF1D2,208,215,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.BUSLOAD_VALUE_CAN2_N235 ,18DAF1D2,216,223,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.BUSLOAD_VALUE_CAN3_N235 ,18DAF1D2,224,231,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.BUSLOAD_VALUE_CAN4_N235 ,18DAF1D2,232,239,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.BUSLOAD_VALUE_CAN5_N235 ,18DAF1D2,240,247,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.BUSLOAD_VALUE_CAN6_N235 ,18DAF1D2,248,255,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.BUSLOAD_VALUE_CAN7_N235 ,18DAF1D2,256,263,1,0,0,,2204EA,6204EA,ff,SECURITY_LOG_N235.BUSLOAD_VALUE_CAN8_N235 ,18DAF1D2,24,47,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.ABOLUTE_TIME_N236 ,18DAF1D2,48,71,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.MILEAGE_N236 ,18DAF1D2,76,78,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.VIOLATION_TYPE_N236,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.SIZE_IDENTIFIER_N236,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204EB,6204EB,4ff,SECURITY_LOG_N236.IDENTIFIER_VIOLATED_FRAME_N236 ,18DAF1D2,112,119,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.VIOLATED_BUS_N236,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.PAYLOAD_DLC_N236,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204EB,6204EB,4ff,SECURITY_LOG_N236.PAYLOAD_VIOLATED_FRAME_N236 ,18DAF1D2,199,199,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.BUSLOAD_STATUS_N236,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.BUSLOAD_VALUE_CAN1_N236 ,18DAF1D2,208,215,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.BUSLOAD_VALUE_CAN2_N236 ,18DAF1D2,216,223,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.BUSLOAD_VALUE_CAN3_N236 ,18DAF1D2,224,231,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.BUSLOAD_VALUE_CAN4_N236 ,18DAF1D2,232,239,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.BUSLOAD_VALUE_CAN5_N236 ,18DAF1D2,240,247,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.BUSLOAD_VALUE_CAN6_N236 ,18DAF1D2,248,255,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.BUSLOAD_VALUE_CAN7_N236 ,18DAF1D2,256,263,1,0,0,,2204EB,6204EB,ff,SECURITY_LOG_N236.BUSLOAD_VALUE_CAN8_N236 ,18DAF1D2,24,47,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.ABOLUTE_TIME_N237 ,18DAF1D2,48,71,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.MILEAGE_N237 ,18DAF1D2,76,78,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.VIOLATION_TYPE_N237,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.SIZE_IDENTIFIER_N237,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204EC,6204EC,4ff,SECURITY_LOG_N237.IDENTIFIER_VIOLATED_FRAME_N237 ,18DAF1D2,112,119,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.VIOLATED_BUS_N237,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.PAYLOAD_DLC_N237,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204EC,6204EC,4ff,SECURITY_LOG_N237.PAYLOAD_VIOLATED_FRAME_N237 ,18DAF1D2,199,199,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.BUSLOAD_STATUS_N237,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.BUSLOAD_VALUE_CAN1_N237 ,18DAF1D2,208,215,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.BUSLOAD_VALUE_CAN2_N237 ,18DAF1D2,216,223,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.BUSLOAD_VALUE_CAN3_N237 ,18DAF1D2,224,231,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.BUSLOAD_VALUE_CAN4_N237 ,18DAF1D2,232,239,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.BUSLOAD_VALUE_CAN5_N237 ,18DAF1D2,240,247,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.BUSLOAD_VALUE_CAN6_N237 ,18DAF1D2,248,255,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.BUSLOAD_VALUE_CAN7_N237 ,18DAF1D2,256,263,1,0,0,,2204EC,6204EC,ff,SECURITY_LOG_N237.BUSLOAD_VALUE_CAN8_N237 ,18DAF1D2,24,47,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.ABOLUTE_TIME_N238 ,18DAF1D2,48,71,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.MILEAGE_N238 ,18DAF1D2,76,78,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.VIOLATION_TYPE_N238,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.SIZE_IDENTIFIER_N238,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204ED,6204ED,4ff,SECURITY_LOG_N238.IDENTIFIER_VIOLATED_FRAME_N238 ,18DAF1D2,112,119,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.VIOLATED_BUS_N238,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.PAYLOAD_DLC_N238,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204ED,6204ED,4ff,SECURITY_LOG_N238.PAYLOAD_VIOLATED_FRAME_N238 ,18DAF1D2,199,199,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.BUSLOAD_STATUS_N238,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.BUSLOAD_VALUE_CAN1_N238 ,18DAF1D2,208,215,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.BUSLOAD_VALUE_CAN2_N238 ,18DAF1D2,216,223,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.BUSLOAD_VALUE_CAN3_N238 ,18DAF1D2,224,231,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.BUSLOAD_VALUE_CAN4_N238 ,18DAF1D2,232,239,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.BUSLOAD_VALUE_CAN5_N238 ,18DAF1D2,240,247,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.BUSLOAD_VALUE_CAN6_N238 ,18DAF1D2,248,255,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.BUSLOAD_VALUE_CAN7_N238 ,18DAF1D2,256,263,1,0,0,,2204ED,6204ED,ff,SECURITY_LOG_N238.BUSLOAD_VALUE_CAN8_N238 ,18DAF1D2,24,47,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.ABOLUTE_TIME_N239 ,18DAF1D2,48,71,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.MILEAGE_N239 ,18DAF1D2,76,78,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.VIOLATION_TYPE_N239,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.SIZE_IDENTIFIER_N239,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204EE,6204EE,4ff,SECURITY_LOG_N239.IDENTIFIER_VIOLATED_FRAME_N239 ,18DAF1D2,112,119,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.VIOLATED_BUS_N239,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.PAYLOAD_DLC_N239,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204EE,6204EE,4ff,SECURITY_LOG_N239.PAYLOAD_VIOLATED_FRAME_N239 ,18DAF1D2,199,199,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.BUSLOAD_STATUS_N239,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.BUSLOAD_VALUE_CAN1_N239 ,18DAF1D2,208,215,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.BUSLOAD_VALUE_CAN2_N239 ,18DAF1D2,216,223,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.BUSLOAD_VALUE_CAN3_N239 ,18DAF1D2,224,231,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.BUSLOAD_VALUE_CAN4_N239 ,18DAF1D2,232,239,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.BUSLOAD_VALUE_CAN5_N239 ,18DAF1D2,240,247,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.BUSLOAD_VALUE_CAN6_N239 ,18DAF1D2,248,255,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.BUSLOAD_VALUE_CAN7_N239 ,18DAF1D2,256,263,1,0,0,,2204EE,6204EE,ff,SECURITY_LOG_N239.BUSLOAD_VALUE_CAN8_N239 ,18DAF1D2,24,47,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.ABOLUTE_TIME_N240 ,18DAF1D2,48,71,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.MILEAGE_N240 ,18DAF1D2,76,78,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.VIOLATION_TYPE_N240,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.SIZE_IDENTIFIER_N240,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204EF,6204EF,4ff,SECURITY_LOG_N240.IDENTIFIER_VIOLATED_FRAME_N240 ,18DAF1D2,112,119,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.VIOLATED_BUS_N240,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.PAYLOAD_DLC_N240,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204EF,6204EF,4ff,SECURITY_LOG_N240.PAYLOAD_VIOLATED_FRAME_N240 ,18DAF1D2,199,199,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.BUSLOAD_STATUS_N240,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.BUSLOAD_VALUE_CAN1_N240 ,18DAF1D2,208,215,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.BUSLOAD_VALUE_CAN2_N240 ,18DAF1D2,216,223,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.BUSLOAD_VALUE_CAN3_N240 ,18DAF1D2,224,231,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.BUSLOAD_VALUE_CAN4_N240 ,18DAF1D2,232,239,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.BUSLOAD_VALUE_CAN5_N240 ,18DAF1D2,240,247,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.BUSLOAD_VALUE_CAN6_N240 ,18DAF1D2,248,255,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.BUSLOAD_VALUE_CAN7_N240 ,18DAF1D2,256,263,1,0,0,,2204EF,6204EF,ff,SECURITY_LOG_N240.BUSLOAD_VALUE_CAN8_N240 ,18DAF1D2,24,47,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.ABOLUTE_TIME_N241 ,18DAF1D2,48,71,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.MILEAGE_N241 ,18DAF1D2,76,78,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.VIOLATION_TYPE_N241,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.SIZE_IDENTIFIER_N241,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204F0,6204F0,4ff,SECURITY_LOG_N241.IDENTIFIER_VIOLATED_FRAME_N241 ,18DAF1D2,112,119,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.VIOLATED_BUS_N241,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.PAYLOAD_DLC_N241,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204F0,6204F0,4ff,SECURITY_LOG_N241.PAYLOAD_VIOLATED_FRAME_N241 ,18DAF1D2,199,199,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.BUSLOAD_STATUS_N241,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.BUSLOAD_VALUE_CAN1_N241 ,18DAF1D2,208,215,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.BUSLOAD_VALUE_CAN2_N241 ,18DAF1D2,216,223,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.BUSLOAD_VALUE_CAN3_N241 ,18DAF1D2,224,231,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.BUSLOAD_VALUE_CAN4_N241 ,18DAF1D2,232,239,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.BUSLOAD_VALUE_CAN5_N241 ,18DAF1D2,240,247,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.BUSLOAD_VALUE_CAN6_N241 ,18DAF1D2,248,255,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.BUSLOAD_VALUE_CAN7_N241 ,18DAF1D2,256,263,1,0,0,,2204F0,6204F0,ff,SECURITY_LOG_N241.BUSLOAD_VALUE_CAN8_N241 ,18DAF1D2,24,47,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.ABOLUTE_TIME_N242 ,18DAF1D2,48,71,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.MILEAGE_N242 ,18DAF1D2,76,78,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.VIOLATION_TYPE_N242,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.SIZE_IDENTIFIER_N242,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204F1,6204F1,4ff,SECURITY_LOG_N242.IDENTIFIER_VIOLATED_FRAME_N242 ,18DAF1D2,112,119,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.VIOLATED_BUS_N242,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.PAYLOAD_DLC_N242,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204F1,6204F1,4ff,SECURITY_LOG_N242.PAYLOAD_VIOLATED_FRAME_N242 ,18DAF1D2,199,199,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.BUSLOAD_STATUS_N242,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.BUSLOAD_VALUE_CAN1_N242 ,18DAF1D2,208,215,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.BUSLOAD_VALUE_CAN2_N242 ,18DAF1D2,216,223,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.BUSLOAD_VALUE_CAN3_N242 ,18DAF1D2,224,231,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.BUSLOAD_VALUE_CAN4_N242 ,18DAF1D2,232,239,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.BUSLOAD_VALUE_CAN5_N242 ,18DAF1D2,240,247,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.BUSLOAD_VALUE_CAN6_N242 ,18DAF1D2,248,255,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.BUSLOAD_VALUE_CAN7_N242 ,18DAF1D2,256,263,1,0,0,,2204F1,6204F1,ff,SECURITY_LOG_N242.BUSLOAD_VALUE_CAN8_N242 ,18DAF1D2,24,47,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.ABOLUTE_TIME_N243 ,18DAF1D2,48,71,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.MILEAGE_N243 ,18DAF1D2,76,78,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.VIOLATION_TYPE_N243,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.SIZE_IDENTIFIER_N243,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204F2,6204F2,4ff,SECURITY_LOG_N243.IDENTIFIER_VIOLATED_FRAME_N243 ,18DAF1D2,112,119,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.VIOLATED_BUS_N243,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.PAYLOAD_DLC_N243,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204F2,6204F2,4ff,SECURITY_LOG_N243.PAYLOAD_VIOLATED_FRAME_N243 ,18DAF1D2,199,199,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.BUSLOAD_STATUS_N243,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.BUSLOAD_VALUE_CAN1_N243 ,18DAF1D2,208,215,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.BUSLOAD_VALUE_CAN2_N243 ,18DAF1D2,216,223,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.BUSLOAD_VALUE_CAN3_N243 ,18DAF1D2,224,231,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.BUSLOAD_VALUE_CAN4_N243 ,18DAF1D2,232,239,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.BUSLOAD_VALUE_CAN5_N243 ,18DAF1D2,240,247,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.BUSLOAD_VALUE_CAN6_N243 ,18DAF1D2,248,255,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.BUSLOAD_VALUE_CAN7_N243 ,18DAF1D2,256,263,1,0,0,,2204F2,6204F2,ff,SECURITY_LOG_N243.BUSLOAD_VALUE_CAN8_N243 ,18DAF1D2,24,47,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.ABOLUTE_TIME_N244 ,18DAF1D2,48,71,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.MILEAGE_N244 ,18DAF1D2,76,78,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.VIOLATION_TYPE_N244,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.SIZE_IDENTIFIER_N244,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204F3,6204F3,4ff,SECURITY_LOG_N244.IDENTIFIER_VIOLATED_FRAME_N244 ,18DAF1D2,112,119,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.VIOLATED_BUS_N244,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.PAYLOAD_DLC_N244,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204F3,6204F3,4ff,SECURITY_LOG_N244.PAYLOAD_VIOLATED_FRAME_N244 ,18DAF1D2,199,199,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.BUSLOAD_STATUS_N244,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.BUSLOAD_VALUE_CAN1_N244 ,18DAF1D2,208,215,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.BUSLOAD_VALUE_CAN2_N244 ,18DAF1D2,216,223,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.BUSLOAD_VALUE_CAN3_N244 ,18DAF1D2,224,231,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.BUSLOAD_VALUE_CAN4_N244 ,18DAF1D2,232,239,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.BUSLOAD_VALUE_CAN5_N244 ,18DAF1D2,240,247,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.BUSLOAD_VALUE_CAN6_N244 ,18DAF1D2,248,255,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.BUSLOAD_VALUE_CAN7_N244 ,18DAF1D2,256,263,1,0,0,,2204F3,6204F3,ff,SECURITY_LOG_N244.BUSLOAD_VALUE_CAN8_N244 ,18DAF1D2,24,47,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.ABOLUTE_TIME_N245 ,18DAF1D2,48,71,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.MILEAGE_N245 ,18DAF1D2,76,78,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.VIOLATION_TYPE_N245,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.SIZE_IDENTIFIER_N245,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204F4,6204F4,4ff,SECURITY_LOG_N245.IDENTIFIER_VIOLATED_FRAME_N245 ,18DAF1D2,112,119,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.VIOLATED_BUS_N245,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.PAYLOAD_DLC_N245,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204F4,6204F4,4ff,SECURITY_LOG_N245.PAYLOAD_VIOLATED_FRAME_N245 ,18DAF1D2,199,199,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.BUSLOAD_STATUS_N245,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.BUSLOAD_VALUE_CAN1_N245 ,18DAF1D2,208,215,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.BUSLOAD_VALUE_CAN2_N245 ,18DAF1D2,216,223,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.BUSLOAD_VALUE_CAN3_N245 ,18DAF1D2,224,231,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.BUSLOAD_VALUE_CAN4_N245 ,18DAF1D2,232,239,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.BUSLOAD_VALUE_CAN5_N245 ,18DAF1D2,240,247,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.BUSLOAD_VALUE_CAN6_N245 ,18DAF1D2,248,255,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.BUSLOAD_VALUE_CAN7_N245 ,18DAF1D2,256,263,1,0,0,,2204F4,6204F4,ff,SECURITY_LOG_N245.BUSLOAD_VALUE_CAN8_N245 ,18DAF1D2,24,47,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.ABOLUTE_TIME_N246 ,18DAF1D2,48,71,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.MILEAGE_N246 ,18DAF1D2,76,78,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.VIOLATION_TYPE_N246,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.SIZE_IDENTIFIER_N246,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204F5,6204F5,4ff,SECURITY_LOG_N246.IDENTIFIER_VIOLATED_FRAME_N246 ,18DAF1D2,112,119,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.VIOLATED_BUS_N246,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.PAYLOAD_DLC_N246,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204F5,6204F5,4ff,SECURITY_LOG_N246.PAYLOAD_VIOLATED_FRAME_N246 ,18DAF1D2,199,199,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.BUSLOAD_STATUS_N246,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.BUSLOAD_VALUE_CAN1_N246 ,18DAF1D2,208,215,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.BUSLOAD_VALUE_CAN2_N246 ,18DAF1D2,216,223,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.BUSLOAD_VALUE_CAN3_N246 ,18DAF1D2,224,231,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.BUSLOAD_VALUE_CAN4_N246 ,18DAF1D2,232,239,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.BUSLOAD_VALUE_CAN5_N246 ,18DAF1D2,240,247,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.BUSLOAD_VALUE_CAN6_N246 ,18DAF1D2,248,255,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.BUSLOAD_VALUE_CAN7_N246 ,18DAF1D2,256,263,1,0,0,,2204F5,6204F5,ff,SECURITY_LOG_N246.BUSLOAD_VALUE_CAN8_N246 ,18DAF1D2,24,47,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.ABOLUTE_TIME_N247 ,18DAF1D2,48,71,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.MILEAGE_N247 ,18DAF1D2,76,78,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.VIOLATION_TYPE_N247,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.SIZE_IDENTIFIER_N247,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204F6,6204F6,4ff,SECURITY_LOG_N247.IDENTIFIER_VIOLATED_FRAME_N247 ,18DAF1D2,112,119,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.VIOLATED_BUS_N247,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.PAYLOAD_DLC_N247,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204F6,6204F6,4ff,SECURITY_LOG_N247.PAYLOAD_VIOLATED_FRAME_N247 ,18DAF1D2,199,199,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.BUSLOAD_STATUS_N247,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.BUSLOAD_VALUE_CAN1_N247 ,18DAF1D2,208,215,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.BUSLOAD_VALUE_CAN2_N247 ,18DAF1D2,216,223,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.BUSLOAD_VALUE_CAN3_N247 ,18DAF1D2,224,231,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.BUSLOAD_VALUE_CAN4_N247 ,18DAF1D2,232,239,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.BUSLOAD_VALUE_CAN5_N247 ,18DAF1D2,240,247,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.BUSLOAD_VALUE_CAN6_N247 ,18DAF1D2,248,255,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.BUSLOAD_VALUE_CAN7_N247 ,18DAF1D2,256,263,1,0,0,,2204F6,6204F6,ff,SECURITY_LOG_N247.BUSLOAD_VALUE_CAN8_N247 ,18DAF1D2,24,47,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.ABOLUTE_TIME_N248 ,18DAF1D2,48,71,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.MILEAGE_N248 ,18DAF1D2,76,78,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.VIOLATION_TYPE_N248,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.SIZE_IDENTIFIER_N248,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204F7,6204F7,4ff,SECURITY_LOG_N248.IDENTIFIER_VIOLATED_FRAME_N248 ,18DAF1D2,112,119,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.VIOLATED_BUS_N248,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.PAYLOAD_DLC_N248,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204F7,6204F7,4ff,SECURITY_LOG_N248.PAYLOAD_VIOLATED_FRAME_N248 ,18DAF1D2,199,199,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.BUSLOAD_STATUS_N248,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.BUSLOAD_VALUE_CAN1_N248 ,18DAF1D2,208,215,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.BUSLOAD_VALUE_CAN2_N248 ,18DAF1D2,216,223,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.BUSLOAD_VALUE_CAN3_N248 ,18DAF1D2,224,231,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.BUSLOAD_VALUE_CAN4_N248 ,18DAF1D2,232,239,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.BUSLOAD_VALUE_CAN5_N248 ,18DAF1D2,240,247,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.BUSLOAD_VALUE_CAN6_N248 ,18DAF1D2,248,255,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.BUSLOAD_VALUE_CAN7_N248 ,18DAF1D2,256,263,1,0,0,,2204F7,6204F7,ff,SECURITY_LOG_N248.BUSLOAD_VALUE_CAN8_N248 ,18DAF1D2,24,47,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.ABOLUTE_TIME_N249 ,18DAF1D2,48,71,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.MILEAGE_N249 ,18DAF1D2,76,78,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.VIOLATION_TYPE_N249,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.SIZE_IDENTIFIER_N249,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204F8,6204F8,4ff,SECURITY_LOG_N249.IDENTIFIER_VIOLATED_FRAME_N249 ,18DAF1D2,112,119,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.VIOLATED_BUS_N249,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.PAYLOAD_DLC_N249,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204F8,6204F8,4ff,SECURITY_LOG_N249.PAYLOAD_VIOLATED_FRAME_N249 ,18DAF1D2,199,199,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.BUSLOAD_STATUS_N249,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.BUSLOAD_VALUE_CAN1_N249 ,18DAF1D2,208,215,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.BUSLOAD_VALUE_CAN2_N249 ,18DAF1D2,216,223,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.BUSLOAD_VALUE_CAN3_N249 ,18DAF1D2,224,231,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.BUSLOAD_VALUE_CAN4_N249 ,18DAF1D2,232,239,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.BUSLOAD_VALUE_CAN5_N249 ,18DAF1D2,240,247,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.BUSLOAD_VALUE_CAN6_N249 ,18DAF1D2,248,255,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.BUSLOAD_VALUE_CAN7_N249 ,18DAF1D2,256,263,1,0,0,,2204F8,6204F8,ff,SECURITY_LOG_N249.BUSLOAD_VALUE_CAN8_N249 ,18DAF1D2,24,47,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.ABOLUTE_TIME_N250 ,18DAF1D2,48,71,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.MILEAGE_N250 ,18DAF1D2,76,78,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.VIOLATION_TYPE_N250,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.SIZE_IDENTIFIER_N250,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204F9,6204F9,4ff,SECURITY_LOG_N250.IDENTIFIER_VIOLATED_FRAME_N250 ,18DAF1D2,112,119,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.VIOLATED_BUS_N250,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.PAYLOAD_DLC_N250,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204F9,6204F9,4ff,SECURITY_LOG_N250.PAYLOAD_VIOLATED_FRAME_N250 ,18DAF1D2,199,199,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.BUSLOAD_STATUS_N250,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.BUSLOAD_VALUE_CAN1_N250 ,18DAF1D2,208,215,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.BUSLOAD_VALUE_CAN2_N250 ,18DAF1D2,216,223,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.BUSLOAD_VALUE_CAN3_N250 ,18DAF1D2,224,231,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.BUSLOAD_VALUE_CAN4_N250 ,18DAF1D2,232,239,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.BUSLOAD_VALUE_CAN5_N250 ,18DAF1D2,240,247,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.BUSLOAD_VALUE_CAN6_N250 ,18DAF1D2,248,255,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.BUSLOAD_VALUE_CAN7_N250 ,18DAF1D2,256,263,1,0,0,,2204F9,6204F9,ff,SECURITY_LOG_N250.BUSLOAD_VALUE_CAN8_N250 ,18DAF1D2,24,47,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.ABOLUTE_TIME_N251 ,18DAF1D2,48,71,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.MILEAGE_N251 ,18DAF1D2,76,78,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.VIOLATION_TYPE_N251,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.SIZE_IDENTIFIER_N251,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204FA,6204FA,4ff,SECURITY_LOG_N251.IDENTIFIER_VIOLATED_FRAME_N251 ,18DAF1D2,112,119,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.VIOLATED_BUS_N251,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.PAYLOAD_DLC_N251,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204FA,6204FA,4ff,SECURITY_LOG_N251.PAYLOAD_VIOLATED_FRAME_N251 ,18DAF1D2,199,199,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.BUSLOAD_STATUS_N251,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.BUSLOAD_VALUE_CAN1_N251 ,18DAF1D2,208,215,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.BUSLOAD_VALUE_CAN2_N251 ,18DAF1D2,216,223,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.BUSLOAD_VALUE_CAN3_N251 ,18DAF1D2,224,231,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.BUSLOAD_VALUE_CAN4_N251 ,18DAF1D2,232,239,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.BUSLOAD_VALUE_CAN5_N251 ,18DAF1D2,240,247,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.BUSLOAD_VALUE_CAN6_N251 ,18DAF1D2,248,255,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.BUSLOAD_VALUE_CAN7_N251 ,18DAF1D2,256,263,1,0,0,,2204FA,6204FA,ff,SECURITY_LOG_N251.BUSLOAD_VALUE_CAN8_N251 ,18DAF1D2,24,47,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.ABOLUTE_TIME_N252 ,18DAF1D2,48,71,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.MILEAGE_N252 ,18DAF1D2,76,78,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.VIOLATION_TYPE_N252,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.SIZE_IDENTIFIER_N252,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204FB,6204FB,4ff,SECURITY_LOG_N252.IDENTIFIER_VIOLATED_FRAME_N252 ,18DAF1D2,112,119,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.VIOLATED_BUS_N252,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.PAYLOAD_DLC_N252,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204FB,6204FB,4ff,SECURITY_LOG_N252.PAYLOAD_VIOLATED_FRAME_N252 ,18DAF1D2,199,199,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.BUSLOAD_STATUS_N252,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.BUSLOAD_VALUE_CAN1_N252 ,18DAF1D2,208,215,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.BUSLOAD_VALUE_CAN2_N252 ,18DAF1D2,216,223,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.BUSLOAD_VALUE_CAN3_N252 ,18DAF1D2,224,231,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.BUSLOAD_VALUE_CAN4_N252 ,18DAF1D2,232,239,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.BUSLOAD_VALUE_CAN5_N252 ,18DAF1D2,240,247,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.BUSLOAD_VALUE_CAN6_N252 ,18DAF1D2,248,255,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.BUSLOAD_VALUE_CAN7_N252 ,18DAF1D2,256,263,1,0,0,,2204FB,6204FB,ff,SECURITY_LOG_N252.BUSLOAD_VALUE_CAN8_N252 ,18DAF1D2,24,47,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.ABOLUTE_TIME_N253 ,18DAF1D2,48,71,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.MILEAGE_N253 ,18DAF1D2,76,78,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.VIOLATION_TYPE_N253,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.SIZE_IDENTIFIER_N253,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204FC,6204FC,4ff,SECURITY_LOG_N253.IDENTIFIER_VIOLATED_FRAME_N253 ,18DAF1D2,112,119,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.VIOLATED_BUS_N253,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.PAYLOAD_DLC_N253,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204FC,6204FC,4ff,SECURITY_LOG_N253.PAYLOAD_VIOLATED_FRAME_N253 ,18DAF1D2,199,199,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.BUSLOAD_STATUS_N253,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.BUSLOAD_VALUE_CAN1_N253 ,18DAF1D2,208,215,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.BUSLOAD_VALUE_CAN2_N253 ,18DAF1D2,216,223,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.BUSLOAD_VALUE_CAN3_N253 ,18DAF1D2,224,231,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.BUSLOAD_VALUE_CAN4_N253 ,18DAF1D2,232,239,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.BUSLOAD_VALUE_CAN5_N253 ,18DAF1D2,240,247,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.BUSLOAD_VALUE_CAN6_N253 ,18DAF1D2,248,255,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.BUSLOAD_VALUE_CAN7_N253 ,18DAF1D2,256,263,1,0,0,,2204FC,6204FC,ff,SECURITY_LOG_N253.BUSLOAD_VALUE_CAN8_N253 ,18DAF1D2,24,47,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.ABOLUTE_TIME_N254 ,18DAF1D2,48,71,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.MILEAGE_N254 ,18DAF1D2,76,78,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.VIOLATION_TYPE_N254,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.SIZE_IDENTIFIER_N254,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204FD,6204FD,4ff,SECURITY_LOG_N254.IDENTIFIER_VIOLATED_FRAME_N254 ,18DAF1D2,112,119,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.VIOLATED_BUS_N254,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.PAYLOAD_DLC_N254,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204FD,6204FD,4ff,SECURITY_LOG_N254.PAYLOAD_VIOLATED_FRAME_N254 ,18DAF1D2,199,199,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.BUSLOAD_STATUS_N254,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.BUSLOAD_VALUE_CAN1_N254 ,18DAF1D2,208,215,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.BUSLOAD_VALUE_CAN2_N254 ,18DAF1D2,216,223,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.BUSLOAD_VALUE_CAN3_N254 ,18DAF1D2,224,231,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.BUSLOAD_VALUE_CAN4_N254 ,18DAF1D2,232,239,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.BUSLOAD_VALUE_CAN5_N254 ,18DAF1D2,240,247,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.BUSLOAD_VALUE_CAN6_N254 ,18DAF1D2,248,255,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.BUSLOAD_VALUE_CAN7_N254 ,18DAF1D2,256,263,1,0,0,,2204FD,6204FD,ff,SECURITY_LOG_N254.BUSLOAD_VALUE_CAN8_N254 ,18DAF1D2,24,47,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.ABOLUTE_TIME_N255 ,18DAF1D2,48,71,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.MILEAGE_N255 ,18DAF1D2,76,78,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.VIOLATION_TYPE_N255,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.SIZE_IDENTIFIER_N255,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204FE,6204FE,4ff,SECURITY_LOG_N255.IDENTIFIER_VIOLATED_FRAME_N255 ,18DAF1D2,112,119,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.VIOLATED_BUS_N255,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.PAYLOAD_DLC_N255,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204FE,6204FE,4ff,SECURITY_LOG_N255.PAYLOAD_VIOLATED_FRAME_N255 ,18DAF1D2,199,199,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.BUSLOAD_STATUS_N255,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.BUSLOAD_VALUE_CAN1_N255 ,18DAF1D2,208,215,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.BUSLOAD_VALUE_CAN2_N255 ,18DAF1D2,216,223,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.BUSLOAD_VALUE_CAN3_N255 ,18DAF1D2,224,231,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.BUSLOAD_VALUE_CAN4_N255 ,18DAF1D2,232,239,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.BUSLOAD_VALUE_CAN5_N255 ,18DAF1D2,240,247,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.BUSLOAD_VALUE_CAN6_N255 ,18DAF1D2,248,255,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.BUSLOAD_VALUE_CAN7_N255 ,18DAF1D2,256,263,1,0,0,,2204FE,6204FE,ff,SECURITY_LOG_N255.BUSLOAD_VALUE_CAN8_N255 ,18DAF1D2,24,47,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.ABOLUTE_TIME_N256 ,18DAF1D2,48,71,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.MILEAGE_N256 ,18DAF1D2,76,78,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.VIOLATION_TYPE_N256,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.SIZE_IDENTIFIER_N256,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2204FF,6204FF,4ff,SECURITY_LOG_N256.IDENTIFIER_VIOLATED_FRAME_N256 ,18DAF1D2,112,119,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.VIOLATED_BUS_N256,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.PAYLOAD_DLC_N256,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2204FF,6204FF,4ff,SECURITY_LOG_N256.PAYLOAD_VIOLATED_FRAME_N256 ,18DAF1D2,199,199,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.BUSLOAD_STATUS_N256,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.BUSLOAD_VALUE_CAN1_N256 ,18DAF1D2,208,215,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.BUSLOAD_VALUE_CAN2_N256 ,18DAF1D2,216,223,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.BUSLOAD_VALUE_CAN3_N256 ,18DAF1D2,224,231,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.BUSLOAD_VALUE_CAN4_N256 ,18DAF1D2,232,239,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.BUSLOAD_VALUE_CAN5_N256 ,18DAF1D2,240,247,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.BUSLOAD_VALUE_CAN6_N256 ,18DAF1D2,248,255,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.BUSLOAD_VALUE_CAN7_N256 ,18DAF1D2,256,263,1,0,0,,2204FF,6204FF,ff,SECURITY_LOG_N256.BUSLOAD_VALUE_CAN8_N256 ,18DAF1D2,24,47,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.ABOLUTE_TIME_N257 ,18DAF1D2,48,71,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.MILEAGE_N257 ,18DAF1D2,76,78,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.VIOLATION_TYPE_N257,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.SIZE_IDENTIFIER_N257,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220500,620500,4ff,SECURITY_LOG_N257.IDENTIFIER_VIOLATED_FRAME_N257 ,18DAF1D2,112,119,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.VIOLATED_BUS_N257,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.PAYLOAD_DLC_N257,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220500,620500,4ff,SECURITY_LOG_N257.PAYLOAD_VIOLATED_FRAME_N257 ,18DAF1D2,199,199,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.BUSLOAD_STATUS_N257,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.BUSLOAD_VALUE_CAN1_N257 ,18DAF1D2,208,215,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.BUSLOAD_VALUE_CAN2_N257 ,18DAF1D2,216,223,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.BUSLOAD_VALUE_CAN3_N257 ,18DAF1D2,224,231,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.BUSLOAD_VALUE_CAN4_N257 ,18DAF1D2,232,239,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.BUSLOAD_VALUE_CAN5_N257 ,18DAF1D2,240,247,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.BUSLOAD_VALUE_CAN6_N257 ,18DAF1D2,248,255,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.BUSLOAD_VALUE_CAN7_N257 ,18DAF1D2,256,263,1,0,0,,220500,620500,ff,SECURITY_LOG_N257.BUSLOAD_VALUE_CAN8_N257 ,18DAF1D2,24,47,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.ABOLUTE_TIME_N258 ,18DAF1D2,48,71,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.MILEAGE_N258 ,18DAF1D2,76,78,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.VIOLATION_TYPE_N258,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.SIZE_IDENTIFIER_N258,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220501,620501,4ff,SECURITY_LOG_N258.IDENTIFIER_VIOLATED_FRAME_N258 ,18DAF1D2,112,119,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.VIOLATED_BUS_N258,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.PAYLOAD_DLC_N258,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220501,620501,4ff,SECURITY_LOG_N258.PAYLOAD_VIOLATED_FRAME_N258 ,18DAF1D2,199,199,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.BUSLOAD_STATUS_N258,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.BUSLOAD_VALUE_CAN1_N258 ,18DAF1D2,208,215,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.BUSLOAD_VALUE_CAN2_N258 ,18DAF1D2,216,223,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.BUSLOAD_VALUE_CAN3_N258 ,18DAF1D2,224,231,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.BUSLOAD_VALUE_CAN4_N258 ,18DAF1D2,232,239,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.BUSLOAD_VALUE_CAN5_N258 ,18DAF1D2,240,247,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.BUSLOAD_VALUE_CAN6_N258 ,18DAF1D2,248,255,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.BUSLOAD_VALUE_CAN7_N258 ,18DAF1D2,256,263,1,0,0,,220501,620501,ff,SECURITY_LOG_N258.BUSLOAD_VALUE_CAN8_N258 ,18DAF1D2,24,47,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.ABOLUTE_TIME_N259 ,18DAF1D2,48,71,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.MILEAGE_N259 ,18DAF1D2,76,78,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.VIOLATION_TYPE_N259,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.SIZE_IDENTIFIER_N259,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220502,620502,4ff,SECURITY_LOG_N259.IDENTIFIER_VIOLATED_FRAME_N259 ,18DAF1D2,112,119,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.VIOLATED_BUS_N259,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.PAYLOAD_DLC_N259,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220502,620502,4ff,SECURITY_LOG_N259.PAYLOAD_VIOLATED_FRAME_N259 ,18DAF1D2,199,199,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.BUSLOAD_STATUS_N259,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.BUSLOAD_VALUE_CAN1_N259 ,18DAF1D2,208,215,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.BUSLOAD_VALUE_CAN2_N259 ,18DAF1D2,216,223,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.BUSLOAD_VALUE_CAN3_N259 ,18DAF1D2,224,231,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.BUSLOAD_VALUE_CAN4_N259 ,18DAF1D2,232,239,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.BUSLOAD_VALUE_CAN5_N259 ,18DAF1D2,240,247,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.BUSLOAD_VALUE_CAN6_N259 ,18DAF1D2,248,255,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.BUSLOAD_VALUE_CAN7_N259 ,18DAF1D2,256,263,1,0,0,,220502,620502,ff,SECURITY_LOG_N259.BUSLOAD_VALUE_CAN8_N259 ,18DAF1D2,24,47,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.ABOLUTE_TIME_N260 ,18DAF1D2,48,71,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.MILEAGE_N260 ,18DAF1D2,76,78,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.VIOLATION_TYPE_N260,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.SIZE_IDENTIFIER_N260,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220503,620503,4ff,SECURITY_LOG_N260.IDENTIFIER_VIOLATED_FRAME_N260 ,18DAF1D2,112,119,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.VIOLATED_BUS_N260,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.PAYLOAD_DLC_N260,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220503,620503,4ff,SECURITY_LOG_N260.PAYLOAD_VIOLATED_FRAME_N260 ,18DAF1D2,199,199,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.BUSLOAD_STATUS_N260,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.BUSLOAD_VALUE_CAN1_N260 ,18DAF1D2,208,215,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.BUSLOAD_VALUE_CAN2_N260 ,18DAF1D2,216,223,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.BUSLOAD_VALUE_CAN3_N260 ,18DAF1D2,224,231,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.BUSLOAD_VALUE_CAN4_N260 ,18DAF1D2,232,239,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.BUSLOAD_VALUE_CAN5_N260 ,18DAF1D2,240,247,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.BUSLOAD_VALUE_CAN6_N260 ,18DAF1D2,248,255,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.BUSLOAD_VALUE_CAN7_N260 ,18DAF1D2,256,263,1,0,0,,220503,620503,ff,SECURITY_LOG_N260.BUSLOAD_VALUE_CAN8_N260 ,18DAF1D2,24,47,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.ABOLUTE_TIME_N261 ,18DAF1D2,48,71,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.MILEAGE_N261 ,18DAF1D2,76,78,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.VIOLATION_TYPE_N261,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.SIZE_IDENTIFIER_N261,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220504,620504,4ff,SECURITY_LOG_N261.IDENTIFIER_VIOLATED_FRAME_N261 ,18DAF1D2,112,119,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.VIOLATED_BUS_N261,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.PAYLOAD_DLC_N261,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220504,620504,4ff,SECURITY_LOG_N261.PAYLOAD_VIOLATED_FRAME_N261 ,18DAF1D2,199,199,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.BUSLOAD_STATUS_N261,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.BUSLOAD_VALUE_CAN1_N261 ,18DAF1D2,208,215,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.BUSLOAD_VALUE_CAN2_N261 ,18DAF1D2,216,223,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.BUSLOAD_VALUE_CAN3_N261 ,18DAF1D2,224,231,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.BUSLOAD_VALUE_CAN4_N261 ,18DAF1D2,232,239,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.BUSLOAD_VALUE_CAN5_N261 ,18DAF1D2,240,247,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.BUSLOAD_VALUE_CAN6_N261 ,18DAF1D2,248,255,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.BUSLOAD_VALUE_CAN7_N261 ,18DAF1D2,256,263,1,0,0,,220504,620504,ff,SECURITY_LOG_N261.BUSLOAD_VALUE_CAN8_N261 ,18DAF1D2,24,47,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.ABOLUTE_TIME_N262 ,18DAF1D2,48,71,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.MILEAGE_N262 ,18DAF1D2,76,78,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.VIOLATION_TYPE_N262,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.SIZE_IDENTIFIER_N262,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220505,620505,4ff,SECURITY_LOG_N262.IDENTIFIER_VIOLATED_FRAME_N262 ,18DAF1D2,112,119,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.VIOLATED_BUS_N262,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.PAYLOAD_DLC_N262,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220505,620505,4ff,SECURITY_LOG_N262.PAYLOAD_VIOLATED_FRAME_N262 ,18DAF1D2,199,199,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.BUSLOAD_STATUS_N262,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.BUSLOAD_VALUE_CAN1_N262 ,18DAF1D2,208,215,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.BUSLOAD_VALUE_CAN2_N262 ,18DAF1D2,216,223,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.BUSLOAD_VALUE_CAN3_N262 ,18DAF1D2,224,231,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.BUSLOAD_VALUE_CAN4_N262 ,18DAF1D2,232,239,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.BUSLOAD_VALUE_CAN5_N262 ,18DAF1D2,240,247,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.BUSLOAD_VALUE_CAN6_N262 ,18DAF1D2,248,255,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.BUSLOAD_VALUE_CAN7_N262 ,18DAF1D2,256,263,1,0,0,,220505,620505,ff,SECURITY_LOG_N262.BUSLOAD_VALUE_CAN8_N262 ,18DAF1D2,24,47,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.ABOLUTE_TIME_N263 ,18DAF1D2,48,71,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.MILEAGE_N263 ,18DAF1D2,76,78,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.VIOLATION_TYPE_N263,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.SIZE_IDENTIFIER_N263,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220506,620506,4ff,SECURITY_LOG_N263.IDENTIFIER_VIOLATED_FRAME_N263 ,18DAF1D2,112,119,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.VIOLATED_BUS_N263,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.PAYLOAD_DLC_N263,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220506,620506,4ff,SECURITY_LOG_N263.PAYLOAD_VIOLATED_FRAME_N263 ,18DAF1D2,199,199,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.BUSLOAD_STATUS_N263,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.BUSLOAD_VALUE_CAN1_N263 ,18DAF1D2,208,215,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.BUSLOAD_VALUE_CAN2_N263 ,18DAF1D2,216,223,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.BUSLOAD_VALUE_CAN3_N263 ,18DAF1D2,224,231,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.BUSLOAD_VALUE_CAN4_N263 ,18DAF1D2,232,239,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.BUSLOAD_VALUE_CAN5_N263 ,18DAF1D2,240,247,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.BUSLOAD_VALUE_CAN6_N263 ,18DAF1D2,248,255,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.BUSLOAD_VALUE_CAN7_N263 ,18DAF1D2,256,263,1,0,0,,220506,620506,ff,SECURITY_LOG_N263.BUSLOAD_VALUE_CAN8_N263 ,18DAF1D2,24,47,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.ABOLUTE_TIME_N264 ,18DAF1D2,48,71,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.MILEAGE_N264 ,18DAF1D2,76,78,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.VIOLATION_TYPE_N264,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.SIZE_IDENTIFIER_N264,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220507,620507,4ff,SECURITY_LOG_N264.IDENTIFIER_VIOLATED_FRAME_N264 ,18DAF1D2,112,119,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.VIOLATED_BUS_N264,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.PAYLOAD_DLC_N264,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220507,620507,4ff,SECURITY_LOG_N264.PAYLOAD_VIOLATED_FRAME_N264 ,18DAF1D2,199,199,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.BUSLOAD_STATUS_N264,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.BUSLOAD_VALUE_CAN1_N264 ,18DAF1D2,208,215,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.BUSLOAD_VALUE_CAN2_N264 ,18DAF1D2,216,223,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.BUSLOAD_VALUE_CAN3_N264 ,18DAF1D2,224,231,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.BUSLOAD_VALUE_CAN4_N264 ,18DAF1D2,232,239,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.BUSLOAD_VALUE_CAN5_N264 ,18DAF1D2,240,247,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.BUSLOAD_VALUE_CAN6_N264 ,18DAF1D2,248,255,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.BUSLOAD_VALUE_CAN7_N264 ,18DAF1D2,256,263,1,0,0,,220507,620507,ff,SECURITY_LOG_N264.BUSLOAD_VALUE_CAN8_N264 ,18DAF1D2,24,47,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.ABOLUTE_TIME_N265 ,18DAF1D2,48,71,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.MILEAGE_N265 ,18DAF1D2,76,78,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.VIOLATION_TYPE_N265,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.SIZE_IDENTIFIER_N265,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220508,620508,4ff,SECURITY_LOG_N265.IDENTIFIER_VIOLATED_FRAME_N265 ,18DAF1D2,112,119,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.VIOLATED_BUS_N265,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.PAYLOAD_DLC_N265,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220508,620508,4ff,SECURITY_LOG_N265.PAYLOAD_VIOLATED_FRAME_N265 ,18DAF1D2,199,199,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.BUSLOAD_STATUS_N265,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.BUSLOAD_VALUE_CAN1_N265 ,18DAF1D2,208,215,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.BUSLOAD_VALUE_CAN2_N265 ,18DAF1D2,216,223,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.BUSLOAD_VALUE_CAN3_N265 ,18DAF1D2,224,231,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.BUSLOAD_VALUE_CAN4_N265 ,18DAF1D2,232,239,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.BUSLOAD_VALUE_CAN5_N265 ,18DAF1D2,240,247,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.BUSLOAD_VALUE_CAN6_N265 ,18DAF1D2,248,255,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.BUSLOAD_VALUE_CAN7_N265 ,18DAF1D2,256,263,1,0,0,,220508,620508,ff,SECURITY_LOG_N265.BUSLOAD_VALUE_CAN8_N265 ,18DAF1D2,24,47,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.ABOLUTE_TIME_N266 ,18DAF1D2,48,71,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.MILEAGE_N266 ,18DAF1D2,76,78,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.VIOLATION_TYPE_N266,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.SIZE_IDENTIFIER_N266,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220509,620509,4ff,SECURITY_LOG_N266.IDENTIFIER_VIOLATED_FRAME_N266 ,18DAF1D2,112,119,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.VIOLATED_BUS_N266,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.PAYLOAD_DLC_N266,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220509,620509,4ff,SECURITY_LOG_N266.PAYLOAD_VIOLATED_FRAME_N266 ,18DAF1D2,199,199,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.BUSLOAD_STATUS_N266,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.BUSLOAD_VALUE_CAN1_N266 ,18DAF1D2,208,215,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.BUSLOAD_VALUE_CAN2_N266 ,18DAF1D2,216,223,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.BUSLOAD_VALUE_CAN3_N266 ,18DAF1D2,224,231,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.BUSLOAD_VALUE_CAN4_N266 ,18DAF1D2,232,239,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.BUSLOAD_VALUE_CAN5_N266 ,18DAF1D2,240,247,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.BUSLOAD_VALUE_CAN6_N266 ,18DAF1D2,248,255,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.BUSLOAD_VALUE_CAN7_N266 ,18DAF1D2,256,263,1,0,0,,220509,620509,ff,SECURITY_LOG_N266.BUSLOAD_VALUE_CAN8_N266 ,18DAF1D2,24,47,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.ABOLUTE_TIME_N267 ,18DAF1D2,48,71,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.MILEAGE_N267 ,18DAF1D2,76,78,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.VIOLATION_TYPE_N267,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.SIZE_IDENTIFIER_N267,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22050A,62050A,4ff,SECURITY_LOG_N267.IDENTIFIER_VIOLATED_FRAME_N267 ,18DAF1D2,112,119,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.VIOLATED_BUS_N267,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.PAYLOAD_DLC_N267,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22050A,62050A,4ff,SECURITY_LOG_N267.PAYLOAD_VIOLATED_FRAME_N267 ,18DAF1D2,199,199,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.BUSLOAD_STATUS_N267,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.BUSLOAD_VALUE_CAN1_N267 ,18DAF1D2,208,215,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.BUSLOAD_VALUE_CAN2_N267 ,18DAF1D2,216,223,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.BUSLOAD_VALUE_CAN3_N267 ,18DAF1D2,224,231,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.BUSLOAD_VALUE_CAN4_N267 ,18DAF1D2,232,239,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.BUSLOAD_VALUE_CAN5_N267 ,18DAF1D2,240,247,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.BUSLOAD_VALUE_CAN6_N267 ,18DAF1D2,248,255,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.BUSLOAD_VALUE_CAN7_N267 ,18DAF1D2,256,263,1,0,0,,22050A,62050A,ff,SECURITY_LOG_N267.BUSLOAD_VALUE_CAN8_N267 ,18DAF1D2,24,47,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.ABOLUTE_TIME_N268 ,18DAF1D2,48,71,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.MILEAGE_N268 ,18DAF1D2,76,78,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.VIOLATION_TYPE_N268,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.SIZE_IDENTIFIER_N268,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22050B,62050B,4ff,SECURITY_LOG_N268.IDENTIFIER_VIOLATED_FRAME_N268 ,18DAF1D2,112,119,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.VIOLATED_BUS_N268,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.PAYLOAD_DLC_N268,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22050B,62050B,4ff,SECURITY_LOG_N268.PAYLOAD_VIOLATED_FRAME_N268 ,18DAF1D2,199,199,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.BUSLOAD_STATUS_N268,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.BUSLOAD_VALUE_CAN1_N268 ,18DAF1D2,208,215,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.BUSLOAD_VALUE_CAN2_N268 ,18DAF1D2,216,223,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.BUSLOAD_VALUE_CAN3_N268 ,18DAF1D2,224,231,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.BUSLOAD_VALUE_CAN4_N268 ,18DAF1D2,232,239,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.BUSLOAD_VALUE_CAN5_N268 ,18DAF1D2,240,247,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.BUSLOAD_VALUE_CAN6_N268 ,18DAF1D2,248,255,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.BUSLOAD_VALUE_CAN7_N268 ,18DAF1D2,256,263,1,0,0,,22050B,62050B,ff,SECURITY_LOG_N268.BUSLOAD_VALUE_CAN8_N268 ,18DAF1D2,24,47,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.ABOLUTE_TIME_N269 ,18DAF1D2,48,71,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.MILEAGE_N269 ,18DAF1D2,76,78,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.VIOLATION_TYPE_N269,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.SIZE_IDENTIFIER_N269,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22050C,62050C,4ff,SECURITY_LOG_N269.IDENTIFIER_VIOLATED_FRAME_N269 ,18DAF1D2,112,119,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.VIOLATED_BUS_N269,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.PAYLOAD_DLC_N269,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22050C,62050C,4ff,SECURITY_LOG_N269.PAYLOAD_VIOLATED_FRAME_N269 ,18DAF1D2,199,199,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.BUSLOAD_STATUS_N269,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.BUSLOAD_VALUE_CAN1_N269 ,18DAF1D2,208,215,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.BUSLOAD_VALUE_CAN2_N269 ,18DAF1D2,216,223,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.BUSLOAD_VALUE_CAN3_N269 ,18DAF1D2,224,231,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.BUSLOAD_VALUE_CAN4_N269 ,18DAF1D2,232,239,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.BUSLOAD_VALUE_CAN5_N269 ,18DAF1D2,240,247,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.BUSLOAD_VALUE_CAN6_N269 ,18DAF1D2,248,255,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.BUSLOAD_VALUE_CAN7_N269 ,18DAF1D2,256,263,1,0,0,,22050C,62050C,ff,SECURITY_LOG_N269.BUSLOAD_VALUE_CAN8_N269 ,18DAF1D2,24,47,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.ABOLUTE_TIME_N270 ,18DAF1D2,48,71,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.MILEAGE_N270 ,18DAF1D2,76,78,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.VIOLATION_TYPE_N270,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.SIZE_IDENTIFIER_N270,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22050D,62050D,4ff,SECURITY_LOG_N270.IDENTIFIER_VIOLATED_FRAME_N270 ,18DAF1D2,112,119,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.VIOLATED_BUS_N270,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.PAYLOAD_DLC_N270,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22050D,62050D,4ff,SECURITY_LOG_N270.PAYLOAD_VIOLATED_FRAME_N270 ,18DAF1D2,199,199,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.BUSLOAD_STATUS_N270,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.BUSLOAD_VALUE_CAN1_N270 ,18DAF1D2,208,215,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.BUSLOAD_VALUE_CAN2_N270 ,18DAF1D2,216,223,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.BUSLOAD_VALUE_CAN3_N270 ,18DAF1D2,224,231,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.BUSLOAD_VALUE_CAN4_N270 ,18DAF1D2,232,239,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.BUSLOAD_VALUE_CAN5_N270 ,18DAF1D2,240,247,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.BUSLOAD_VALUE_CAN6_N270 ,18DAF1D2,248,255,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.BUSLOAD_VALUE_CAN7_N270 ,18DAF1D2,256,263,1,0,0,,22050D,62050D,ff,SECURITY_LOG_N270.BUSLOAD_VALUE_CAN8_N270 ,18DAF1D2,24,47,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.ABOLUTE_TIME_N271 ,18DAF1D2,48,71,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.MILEAGE_N271 ,18DAF1D2,76,78,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.VIOLATION_TYPE_N271,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.SIZE_IDENTIFIER_N271,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22050E,62050E,4ff,SECURITY_LOG_N271.IDENTIFIER_VIOLATED_FRAME_N271 ,18DAF1D2,112,119,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.VIOLATED_BUS_N271,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.PAYLOAD_DLC_N271,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22050E,62050E,4ff,SECURITY_LOG_N271.PAYLOAD_VIOLATED_FRAME_N271 ,18DAF1D2,199,199,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.BUSLOAD_STATUS_N271,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.BUSLOAD_VALUE_CAN1_N271 ,18DAF1D2,208,215,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.BUSLOAD_VALUE_CAN2_N271 ,18DAF1D2,216,223,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.BUSLOAD_VALUE_CAN3_N271 ,18DAF1D2,224,231,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.BUSLOAD_VALUE_CAN4_N271 ,18DAF1D2,232,239,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.BUSLOAD_VALUE_CAN5_N271 ,18DAF1D2,240,247,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.BUSLOAD_VALUE_CAN6_N271 ,18DAF1D2,248,255,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.BUSLOAD_VALUE_CAN7_N271 ,18DAF1D2,256,263,1,0,0,,22050E,62050E,ff,SECURITY_LOG_N271.BUSLOAD_VALUE_CAN8_N271 ,18DAF1D2,24,47,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.ABOLUTE_TIME_N272 ,18DAF1D2,48,71,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.MILEAGE_N272 ,18DAF1D2,76,78,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.VIOLATION_TYPE_N272,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.SIZE_IDENTIFIER_N272,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22050F,62050F,4ff,SECURITY_LOG_N272.IDENTIFIER_VIOLATED_FRAME_N272 ,18DAF1D2,112,119,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.VIOLATED_BUS_N272,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.PAYLOAD_DLC_N272,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22050F,62050F,4ff,SECURITY_LOG_N272.PAYLOAD_VIOLATED_FRAME_N272 ,18DAF1D2,199,199,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.BUSLOAD_STATUS_N272,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.BUSLOAD_VALUE_CAN1_N272 ,18DAF1D2,208,215,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.BUSLOAD_VALUE_CAN2_N272 ,18DAF1D2,216,223,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.BUSLOAD_VALUE_CAN3_N272 ,18DAF1D2,224,231,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.BUSLOAD_VALUE_CAN4_N272 ,18DAF1D2,232,239,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.BUSLOAD_VALUE_CAN5_N272 ,18DAF1D2,240,247,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.BUSLOAD_VALUE_CAN6_N272 ,18DAF1D2,248,255,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.BUSLOAD_VALUE_CAN7_N272 ,18DAF1D2,256,263,1,0,0,,22050F,62050F,ff,SECURITY_LOG_N272.BUSLOAD_VALUE_CAN8_N272 ,18DAF1D2,24,47,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.ABOLUTE_TIME_N273 ,18DAF1D2,48,71,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.MILEAGE_N273 ,18DAF1D2,76,78,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.VIOLATION_TYPE_N273,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.SIZE_IDENTIFIER_N273,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220510,620510,4ff,SECURITY_LOG_N273.IDENTIFIER_VIOLATED_FRAME_N273 ,18DAF1D2,112,119,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.VIOLATED_BUS_N273,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.PAYLOAD_DLC_N273,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220510,620510,4ff,SECURITY_LOG_N273.PAYLOAD_VIOLATED_FRAME_N273 ,18DAF1D2,199,199,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.BUSLOAD_STATUS_N273,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.BUSLOAD_VALUE_CAN1_N273 ,18DAF1D2,208,215,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.BUSLOAD_VALUE_CAN2_N273 ,18DAF1D2,216,223,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.BUSLOAD_VALUE_CAN3_N273 ,18DAF1D2,224,231,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.BUSLOAD_VALUE_CAN4_N273 ,18DAF1D2,232,239,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.BUSLOAD_VALUE_CAN5_N273 ,18DAF1D2,240,247,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.BUSLOAD_VALUE_CAN6_N273 ,18DAF1D2,248,255,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.BUSLOAD_VALUE_CAN7_N273 ,18DAF1D2,256,263,1,0,0,,220510,620510,ff,SECURITY_LOG_N273.BUSLOAD_VALUE_CAN8_N273 ,18DAF1D2,24,47,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.ABOLUTE_TIME_N274 ,18DAF1D2,48,71,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.MILEAGE_N274 ,18DAF1D2,76,78,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.VIOLATION_TYPE_N274,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.SIZE_IDENTIFIER_N274,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220511,620511,4ff,SECURITY_LOG_N274.IDENTIFIER_VIOLATED_FRAME_N274 ,18DAF1D2,112,119,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.VIOLATED_BUS_N274,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.PAYLOAD_DLC_N274,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220511,620511,4ff,SECURITY_LOG_N274.PAYLOAD_VIOLATED_FRAME_N274 ,18DAF1D2,199,199,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.BUSLOAD_STATUS_N274,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.BUSLOAD_VALUE_CAN1_N274 ,18DAF1D2,208,215,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.BUSLOAD_VALUE_CAN2_N274 ,18DAF1D2,216,223,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.BUSLOAD_VALUE_CAN3_N274 ,18DAF1D2,224,231,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.BUSLOAD_VALUE_CAN4_N274 ,18DAF1D2,232,239,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.BUSLOAD_VALUE_CAN5_N274 ,18DAF1D2,240,247,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.BUSLOAD_VALUE_CAN6_N274 ,18DAF1D2,248,255,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.BUSLOAD_VALUE_CAN7_N274 ,18DAF1D2,256,263,1,0,0,,220511,620511,ff,SECURITY_LOG_N274.BUSLOAD_VALUE_CAN8_N274 ,18DAF1D2,24,47,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.ABOLUTE_TIME_N275 ,18DAF1D2,48,71,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.MILEAGE_N275 ,18DAF1D2,76,78,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.VIOLATION_TYPE_N275,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.SIZE_IDENTIFIER_N275,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220512,620512,4ff,SECURITY_LOG_N275.IDENTIFIER_VIOLATED_FRAME_N275 ,18DAF1D2,112,119,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.VIOLATED_BUS_N275,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.PAYLOAD_DLC_N275,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220512,620512,4ff,SECURITY_LOG_N275.PAYLOAD_VIOLATED_FRAME_N275 ,18DAF1D2,199,199,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.BUSLOAD_STATUS_N275,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.BUSLOAD_VALUE_CAN1_N275 ,18DAF1D2,208,215,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.BUSLOAD_VALUE_CAN2_N275 ,18DAF1D2,216,223,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.BUSLOAD_VALUE_CAN3_N275 ,18DAF1D2,224,231,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.BUSLOAD_VALUE_CAN4_N275 ,18DAF1D2,232,239,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.BUSLOAD_VALUE_CAN5_N275 ,18DAF1D2,240,247,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.BUSLOAD_VALUE_CAN6_N275 ,18DAF1D2,248,255,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.BUSLOAD_VALUE_CAN7_N275 ,18DAF1D2,256,263,1,0,0,,220512,620512,ff,SECURITY_LOG_N275.BUSLOAD_VALUE_CAN8_N275 ,18DAF1D2,24,47,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.ABOLUTE_TIME_N276 ,18DAF1D2,48,71,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.MILEAGE_N276 ,18DAF1D2,76,78,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.VIOLATION_TYPE_N276,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.SIZE_IDENTIFIER_N276,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220513,620513,4ff,SECURITY_LOG_N276.IDENTIFIER_VIOLATED_FRAME_N276 ,18DAF1D2,112,119,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.VIOLATED_BUS_N276,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.PAYLOAD_DLC_N276,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220513,620513,4ff,SECURITY_LOG_N276.PAYLOAD_VIOLATED_FRAME_N276 ,18DAF1D2,199,199,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.BUSLOAD_STATUS_N276,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.BUSLOAD_VALUE_CAN1_N276 ,18DAF1D2,208,215,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.BUSLOAD_VALUE_CAN2_N276 ,18DAF1D2,216,223,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.BUSLOAD_VALUE_CAN3_N276 ,18DAF1D2,224,231,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.BUSLOAD_VALUE_CAN4_N276 ,18DAF1D2,232,239,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.BUSLOAD_VALUE_CAN5_N276 ,18DAF1D2,240,247,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.BUSLOAD_VALUE_CAN6_N276 ,18DAF1D2,248,255,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.BUSLOAD_VALUE_CAN7_N276 ,18DAF1D2,256,263,1,0,0,,220513,620513,ff,SECURITY_LOG_N276.BUSLOAD_VALUE_CAN8_N276 ,18DAF1D2,24,47,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.ABOLUTE_TIME_N277 ,18DAF1D2,48,71,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.MILEAGE_N277 ,18DAF1D2,76,78,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.VIOLATION_TYPE_N277,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.SIZE_IDENTIFIER_N277,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220514,620514,4ff,SECURITY_LOG_N277.IDENTIFIER_VIOLATED_FRAME_N277 ,18DAF1D2,112,119,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.VIOLATED_BUS_N277,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.PAYLOAD_DLC_N277,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220514,620514,4ff,SECURITY_LOG_N277.PAYLOAD_VIOLATED_FRAME_N277 ,18DAF1D2,199,199,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.BUSLOAD_STATUS_N277,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.BUSLOAD_VALUE_CAN1_N277 ,18DAF1D2,208,215,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.BUSLOAD_VALUE_CAN2_N277 ,18DAF1D2,216,223,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.BUSLOAD_VALUE_CAN3_N277 ,18DAF1D2,224,231,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.BUSLOAD_VALUE_CAN4_N277 ,18DAF1D2,232,239,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.BUSLOAD_VALUE_CAN5_N277 ,18DAF1D2,240,247,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.BUSLOAD_VALUE_CAN6_N277 ,18DAF1D2,248,255,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.BUSLOAD_VALUE_CAN7_N277 ,18DAF1D2,256,263,1,0,0,,220514,620514,ff,SECURITY_LOG_N277.BUSLOAD_VALUE_CAN8_N277 ,18DAF1D2,24,47,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.ABOLUTE_TIME_N278 ,18DAF1D2,48,71,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.MILEAGE_N278 ,18DAF1D2,76,78,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.VIOLATION_TYPE_N278,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.SIZE_IDENTIFIER_N278,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220515,620515,4ff,SECURITY_LOG_N278.IDENTIFIER_VIOLATED_FRAME_N278 ,18DAF1D2,112,119,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.VIOLATED_BUS_N278,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.PAYLOAD_DLC_N278,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220515,620515,4ff,SECURITY_LOG_N278.PAYLOAD_VIOLATED_FRAME_N278 ,18DAF1D2,199,199,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.BUSLOAD_STATUS_N278,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.BUSLOAD_VALUE_CAN1_N278 ,18DAF1D2,208,215,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.BUSLOAD_VALUE_CAN2_N278 ,18DAF1D2,216,223,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.BUSLOAD_VALUE_CAN3_N278 ,18DAF1D2,224,231,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.BUSLOAD_VALUE_CAN4_N278 ,18DAF1D2,232,239,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.BUSLOAD_VALUE_CAN5_N278 ,18DAF1D2,240,247,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.BUSLOAD_VALUE_CAN6_N278 ,18DAF1D2,248,255,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.BUSLOAD_VALUE_CAN7_N278 ,18DAF1D2,256,263,1,0,0,,220515,620515,ff,SECURITY_LOG_N278.BUSLOAD_VALUE_CAN8_N278 ,18DAF1D2,24,47,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.ABOLUTE_TIME_N279 ,18DAF1D2,48,71,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.MILEAGE_N279 ,18DAF1D2,76,78,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.VIOLATION_TYPE_N279,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.SIZE_IDENTIFIER_N279,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220516,620516,4ff,SECURITY_LOG_N279.IDENTIFIER_VIOLATED_FRAME_N279 ,18DAF1D2,112,119,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.VIOLATED_BUS_N279,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.PAYLOAD_DLC_N279,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220516,620516,4ff,SECURITY_LOG_N279.PAYLOAD_VIOLATED_FRAME_N279 ,18DAF1D2,199,199,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.BUSLOAD_STATUS_N279,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.BUSLOAD_VALUE_CAN1_N279 ,18DAF1D2,208,215,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.BUSLOAD_VALUE_CAN2_N279 ,18DAF1D2,216,223,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.BUSLOAD_VALUE_CAN3_N279 ,18DAF1D2,224,231,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.BUSLOAD_VALUE_CAN4_N279 ,18DAF1D2,232,239,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.BUSLOAD_VALUE_CAN5_N279 ,18DAF1D2,240,247,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.BUSLOAD_VALUE_CAN6_N279 ,18DAF1D2,248,255,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.BUSLOAD_VALUE_CAN7_N279 ,18DAF1D2,256,263,1,0,0,,220516,620516,ff,SECURITY_LOG_N279.BUSLOAD_VALUE_CAN8_N279 ,18DAF1D2,24,47,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.ABOLUTE_TIME_N280 ,18DAF1D2,48,71,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.MILEAGE_N280 ,18DAF1D2,76,78,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.VIOLATION_TYPE_N280,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.SIZE_IDENTIFIER_N280,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220517,620517,4ff,SECURITY_LOG_N280.IDENTIFIER_VIOLATED_FRAME_N280 ,18DAF1D2,112,119,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.VIOLATED_BUS_N280,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.PAYLOAD_DLC_N280,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220517,620517,4ff,SECURITY_LOG_N280.PAYLOAD_VIOLATED_FRAME_N280 ,18DAF1D2,199,199,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.BUSLOAD_STATUS_N280,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.BUSLOAD_VALUE_CAN1_N280 ,18DAF1D2,208,215,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.BUSLOAD_VALUE_CAN2_N280 ,18DAF1D2,216,223,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.BUSLOAD_VALUE_CAN3_N280 ,18DAF1D2,224,231,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.BUSLOAD_VALUE_CAN4_N280 ,18DAF1D2,232,239,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.BUSLOAD_VALUE_CAN5_N280 ,18DAF1D2,240,247,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.BUSLOAD_VALUE_CAN6_N280 ,18DAF1D2,248,255,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.BUSLOAD_VALUE_CAN7_N280 ,18DAF1D2,256,263,1,0,0,,220517,620517,ff,SECURITY_LOG_N280.BUSLOAD_VALUE_CAN8_N280 ,18DAF1D2,24,47,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.ABOLUTE_TIME_N281 ,18DAF1D2,48,71,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.MILEAGE_N281 ,18DAF1D2,76,78,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.VIOLATION_TYPE_N281,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.SIZE_IDENTIFIER_N281,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220518,620518,4ff,SECURITY_LOG_N281.IDENTIFIER_VIOLATED_FRAME_N281 ,18DAF1D2,112,119,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.VIOLATED_BUS_N281,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.PAYLOAD_DLC_N281,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220518,620518,4ff,SECURITY_LOG_N281.PAYLOAD_VIOLATED_FRAME_N281 ,18DAF1D2,199,199,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.BUSLOAD_STATUS_N281,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.BUSLOAD_VALUE_CAN1_N281 ,18DAF1D2,208,215,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.BUSLOAD_VALUE_CAN2_N281 ,18DAF1D2,216,223,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.BUSLOAD_VALUE_CAN3_N281 ,18DAF1D2,224,231,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.BUSLOAD_VALUE_CAN4_N281 ,18DAF1D2,232,239,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.BUSLOAD_VALUE_CAN5_N281 ,18DAF1D2,240,247,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.BUSLOAD_VALUE_CAN6_N281 ,18DAF1D2,248,255,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.BUSLOAD_VALUE_CAN7_N281 ,18DAF1D2,256,263,1,0,0,,220518,620518,ff,SECURITY_LOG_N281.BUSLOAD_VALUE_CAN8_N281 ,18DAF1D2,24,47,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.ABOLUTE_TIME_N282 ,18DAF1D2,48,71,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.MILEAGE_N282 ,18DAF1D2,76,78,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.VIOLATION_TYPE_N282,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.SIZE_IDENTIFIER_N282,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220519,620519,4ff,SECURITY_LOG_N282.IDENTIFIER_VIOLATED_FRAME_N282 ,18DAF1D2,112,119,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.VIOLATED_BUS_N282,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.PAYLOAD_DLC_N282,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220519,620519,4ff,SECURITY_LOG_N282.PAYLOAD_VIOLATED_FRAME_N282 ,18DAF1D2,199,199,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.BUSLOAD_STATUS_N282,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.BUSLOAD_VALUE_CAN1_N282 ,18DAF1D2,208,215,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.BUSLOAD_VALUE_CAN2_N282 ,18DAF1D2,216,223,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.BUSLOAD_VALUE_CAN3_N282 ,18DAF1D2,224,231,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.BUSLOAD_VALUE_CAN4_N282 ,18DAF1D2,232,239,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.BUSLOAD_VALUE_CAN5_N282 ,18DAF1D2,240,247,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.BUSLOAD_VALUE_CAN6_N282 ,18DAF1D2,248,255,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.BUSLOAD_VALUE_CAN7_N282 ,18DAF1D2,256,263,1,0,0,,220519,620519,ff,SECURITY_LOG_N282.BUSLOAD_VALUE_CAN8_N282 ,18DAF1D2,24,47,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.ABOLUTE_TIME_N283 ,18DAF1D2,48,71,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.MILEAGE_N283 ,18DAF1D2,76,78,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.VIOLATION_TYPE_N283,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.SIZE_IDENTIFIER_N283,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22051A,62051A,4ff,SECURITY_LOG_N283.IDENTIFIER_VIOLATED_FRAME_N283 ,18DAF1D2,112,119,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.VIOLATED_BUS_N283,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.PAYLOAD_DLC_N283,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22051A,62051A,4ff,SECURITY_LOG_N283.PAYLOAD_VIOLATED_FRAME_N283 ,18DAF1D2,199,199,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.BUSLOAD_STATUS_N283,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.BUSLOAD_VALUE_CAN1_N283 ,18DAF1D2,208,215,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.BUSLOAD_VALUE_CAN2_N283 ,18DAF1D2,216,223,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.BUSLOAD_VALUE_CAN3_N283 ,18DAF1D2,224,231,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.BUSLOAD_VALUE_CAN4_N283 ,18DAF1D2,232,239,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.BUSLOAD_VALUE_CAN5_N283 ,18DAF1D2,240,247,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.BUSLOAD_VALUE_CAN6_N283 ,18DAF1D2,248,255,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.BUSLOAD_VALUE_CAN7_N283 ,18DAF1D2,256,263,1,0,0,,22051A,62051A,ff,SECURITY_LOG_N283.BUSLOAD_VALUE_CAN8_N283 ,18DAF1D2,24,47,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.ABOLUTE_TIME_N284 ,18DAF1D2,48,71,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.MILEAGE_N284 ,18DAF1D2,76,78,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.VIOLATION_TYPE_N284,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.SIZE_IDENTIFIER_N284,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22051B,62051B,4ff,SECURITY_LOG_N284.IDENTIFIER_VIOLATED_FRAME_N284 ,18DAF1D2,112,119,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.VIOLATED_BUS_N284,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.PAYLOAD_DLC_N284,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22051B,62051B,4ff,SECURITY_LOG_N284.PAYLOAD_VIOLATED_FRAME_N284 ,18DAF1D2,199,199,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.BUSLOAD_STATUS_N284,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.BUSLOAD_VALUE_CAN1_N284 ,18DAF1D2,208,215,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.BUSLOAD_VALUE_CAN2_N284 ,18DAF1D2,216,223,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.BUSLOAD_VALUE_CAN3_N284 ,18DAF1D2,224,231,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.BUSLOAD_VALUE_CAN4_N284 ,18DAF1D2,232,239,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.BUSLOAD_VALUE_CAN5_N284 ,18DAF1D2,240,247,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.BUSLOAD_VALUE_CAN6_N284 ,18DAF1D2,248,255,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.BUSLOAD_VALUE_CAN7_N284 ,18DAF1D2,256,263,1,0,0,,22051B,62051B,ff,SECURITY_LOG_N284.BUSLOAD_VALUE_CAN8_N284 ,18DAF1D2,24,47,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.ABOLUTE_TIME_N285 ,18DAF1D2,48,71,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.MILEAGE_N285 ,18DAF1D2,76,78,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.VIOLATION_TYPE_N285,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.SIZE_IDENTIFIER_N285,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22051C,62051C,4ff,SECURITY_LOG_N285.IDENTIFIER_VIOLATED_FRAME_N285 ,18DAF1D2,112,119,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.VIOLATED_BUS_N285,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.PAYLOAD_DLC_N285,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22051C,62051C,4ff,SECURITY_LOG_N285.PAYLOAD_VIOLATED_FRAME_N285 ,18DAF1D2,199,199,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.BUSLOAD_STATUS_N285,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.BUSLOAD_VALUE_CAN1_N285 ,18DAF1D2,208,215,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.BUSLOAD_VALUE_CAN2_N285 ,18DAF1D2,216,223,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.BUSLOAD_VALUE_CAN3_N285 ,18DAF1D2,224,231,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.BUSLOAD_VALUE_CAN4_N285 ,18DAF1D2,232,239,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.BUSLOAD_VALUE_CAN5_N285 ,18DAF1D2,240,247,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.BUSLOAD_VALUE_CAN6_N285 ,18DAF1D2,248,255,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.BUSLOAD_VALUE_CAN7_N285 ,18DAF1D2,256,263,1,0,0,,22051C,62051C,ff,SECURITY_LOG_N285.BUSLOAD_VALUE_CAN8_N285 ,18DAF1D2,24,47,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.ABOLUTE_TIME_N286 ,18DAF1D2,48,71,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.MILEAGE_N286 ,18DAF1D2,76,78,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.VIOLATION_TYPE_N286,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.SIZE_IDENTIFIER_N286,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22051D,62051D,4ff,SECURITY_LOG_N286.IDENTIFIER_VIOLATED_FRAME_N286 ,18DAF1D2,112,119,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.VIOLATED_BUS_N286,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.PAYLOAD_DLC_N286,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22051D,62051D,4ff,SECURITY_LOG_N286.PAYLOAD_VIOLATED_FRAME_N286 ,18DAF1D2,199,199,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.BUSLOAD_STATUS_N286,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.BUSLOAD_VALUE_CAN1_N286 ,18DAF1D2,208,215,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.BUSLOAD_VALUE_CAN2_N286 ,18DAF1D2,216,223,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.BUSLOAD_VALUE_CAN3_N286 ,18DAF1D2,224,231,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.BUSLOAD_VALUE_CAN4_N286 ,18DAF1D2,232,239,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.BUSLOAD_VALUE_CAN5_N286 ,18DAF1D2,240,247,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.BUSLOAD_VALUE_CAN6_N286 ,18DAF1D2,248,255,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.BUSLOAD_VALUE_CAN7_N286 ,18DAF1D2,256,263,1,0,0,,22051D,62051D,ff,SECURITY_LOG_N286.BUSLOAD_VALUE_CAN8_N286 ,18DAF1D2,24,47,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.ABOLUTE_TIME_N287 ,18DAF1D2,48,71,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.MILEAGE_N287 ,18DAF1D2,76,78,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.VIOLATION_TYPE_N287,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.SIZE_IDENTIFIER_N287,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22051E,62051E,4ff,SECURITY_LOG_N287.IDENTIFIER_VIOLATED_FRAME_N287 ,18DAF1D2,112,119,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.VIOLATED_BUS_N287,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.PAYLOAD_DLC_N287,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22051E,62051E,4ff,SECURITY_LOG_N287.PAYLOAD_VIOLATED_FRAME_N287 ,18DAF1D2,199,199,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.BUSLOAD_STATUS_N287,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.BUSLOAD_VALUE_CAN1_N287 ,18DAF1D2,208,215,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.BUSLOAD_VALUE_CAN2_N287 ,18DAF1D2,216,223,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.BUSLOAD_VALUE_CAN3_N287 ,18DAF1D2,224,231,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.BUSLOAD_VALUE_CAN4_N287 ,18DAF1D2,232,239,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.BUSLOAD_VALUE_CAN5_N287 ,18DAF1D2,240,247,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.BUSLOAD_VALUE_CAN6_N287 ,18DAF1D2,248,255,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.BUSLOAD_VALUE_CAN7_N287 ,18DAF1D2,256,263,1,0,0,,22051E,62051E,ff,SECURITY_LOG_N287.BUSLOAD_VALUE_CAN8_N287 ,18DAF1D2,24,47,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.ABOLUTE_TIME_N288 ,18DAF1D2,48,71,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.MILEAGE_N288 ,18DAF1D2,76,78,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.VIOLATION_TYPE_N288,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.SIZE_IDENTIFIER_N288,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22051F,62051F,4ff,SECURITY_LOG_N288.IDENTIFIER_VIOLATED_FRAME_N288 ,18DAF1D2,112,119,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.VIOLATED_BUS_N288,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.PAYLOAD_DLC_N288,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22051F,62051F,4ff,SECURITY_LOG_N288.PAYLOAD_VIOLATED_FRAME_N288 ,18DAF1D2,199,199,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.BUSLOAD_STATUS_N288,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.BUSLOAD_VALUE_CAN1_N288 ,18DAF1D2,208,215,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.BUSLOAD_VALUE_CAN2_N288 ,18DAF1D2,216,223,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.BUSLOAD_VALUE_CAN3_N288 ,18DAF1D2,224,231,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.BUSLOAD_VALUE_CAN4_N288 ,18DAF1D2,232,239,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.BUSLOAD_VALUE_CAN5_N288 ,18DAF1D2,240,247,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.BUSLOAD_VALUE_CAN6_N288 ,18DAF1D2,248,255,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.BUSLOAD_VALUE_CAN7_N288 ,18DAF1D2,256,263,1,0,0,,22051F,62051F,ff,SECURITY_LOG_N288.BUSLOAD_VALUE_CAN8_N288 ,18DAF1D2,24,47,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.ABOLUTE_TIME_N289 ,18DAF1D2,48,71,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.MILEAGE_N289 ,18DAF1D2,76,78,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.VIOLATION_TYPE_N289,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.SIZE_IDENTIFIER_N289,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220520,620520,4ff,SECURITY_LOG_N289.IDENTIFIER_VIOLATED_FRAME_N289 ,18DAF1D2,112,119,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.VIOLATED_BUS_N289,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.PAYLOAD_DLC_N289,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220520,620520,4ff,SECURITY_LOG_N289.PAYLOAD_VIOLATED_FRAME_N289 ,18DAF1D2,199,199,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.BUSLOAD_STATUS_N289,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.BUSLOAD_VALUE_CAN1_N289 ,18DAF1D2,208,215,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.BUSLOAD_VALUE_CAN2_N289 ,18DAF1D2,216,223,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.BUSLOAD_VALUE_CAN3_N289 ,18DAF1D2,224,231,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.BUSLOAD_VALUE_CAN4_N289 ,18DAF1D2,232,239,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.BUSLOAD_VALUE_CAN5_N289 ,18DAF1D2,240,247,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.BUSLOAD_VALUE_CAN6_N289 ,18DAF1D2,248,255,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.BUSLOAD_VALUE_CAN7_N289 ,18DAF1D2,256,263,1,0,0,,220520,620520,ff,SECURITY_LOG_N289.BUSLOAD_VALUE_CAN8_N289 ,18DAF1D2,24,47,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.ABOLUTE_TIME_N290 ,18DAF1D2,48,71,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.MILEAGE_N290 ,18DAF1D2,76,78,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.VIOLATION_TYPE_N290,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.SIZE_IDENTIFIER_N290,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220521,620521,4ff,SECURITY_LOG_N290.IDENTIFIER_VIOLATED_FRAME_N290 ,18DAF1D2,112,119,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.VIOLATED_BUS_N290,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.PAYLOAD_DLC_N290,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220521,620521,4ff,SECURITY_LOG_N290.PAYLOAD_VIOLATED_FRAME_N290 ,18DAF1D2,199,199,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.BUSLOAD_STATUS_N290,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.BUSLOAD_VALUE_CAN1_N290 ,18DAF1D2,208,215,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.BUSLOAD_VALUE_CAN2_N290 ,18DAF1D2,216,223,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.BUSLOAD_VALUE_CAN3_N290 ,18DAF1D2,224,231,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.BUSLOAD_VALUE_CAN4_N290 ,18DAF1D2,232,239,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.BUSLOAD_VALUE_CAN5_N290 ,18DAF1D2,240,247,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.BUSLOAD_VALUE_CAN6_N290 ,18DAF1D2,248,255,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.BUSLOAD_VALUE_CAN7_N290 ,18DAF1D2,256,263,1,0,0,,220521,620521,ff,SECURITY_LOG_N290.BUSLOAD_VALUE_CAN8_N290 ,18DAF1D2,24,47,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.ABOLUTE_TIME_N291 ,18DAF1D2,48,71,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.MILEAGE_N291 ,18DAF1D2,76,78,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.VIOLATION_TYPE_N291,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.SIZE_IDENTIFIER_N291,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220522,620522,4ff,SECURITY_LOG_N291.IDENTIFIER_VIOLATED_FRAME_N291 ,18DAF1D2,112,119,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.VIOLATED_BUS_N291,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.PAYLOAD_DLC_N291,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220522,620522,4ff,SECURITY_LOG_N291.PAYLOAD_VIOLATED_FRAME_N291 ,18DAF1D2,199,199,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.BUSLOAD_STATUS_N291,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.BUSLOAD_VALUE_CAN1_N291 ,18DAF1D2,208,215,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.BUSLOAD_VALUE_CAN2_N291 ,18DAF1D2,216,223,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.BUSLOAD_VALUE_CAN3_N291 ,18DAF1D2,224,231,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.BUSLOAD_VALUE_CAN4_N291 ,18DAF1D2,232,239,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.BUSLOAD_VALUE_CAN5_N291 ,18DAF1D2,240,247,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.BUSLOAD_VALUE_CAN6_N291 ,18DAF1D2,248,255,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.BUSLOAD_VALUE_CAN7_N291 ,18DAF1D2,256,263,1,0,0,,220522,620522,ff,SECURITY_LOG_N291.BUSLOAD_VALUE_CAN8_N291 ,18DAF1D2,24,47,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.ABOLUTE_TIME_N292 ,18DAF1D2,48,71,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.MILEAGE_N292 ,18DAF1D2,76,78,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.VIOLATION_TYPE_N292,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.SIZE_IDENTIFIER_N292,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220523,620523,4ff,SECURITY_LOG_N292.IDENTIFIER_VIOLATED_FRAME_N292 ,18DAF1D2,112,119,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.VIOLATED_BUS_N292,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.PAYLOAD_DLC_N292,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220523,620523,4ff,SECURITY_LOG_N292.PAYLOAD_VIOLATED_FRAME_N292 ,18DAF1D2,199,199,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.BUSLOAD_STATUS_N292,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.BUSLOAD_VALUE_CAN1_N292 ,18DAF1D2,208,215,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.BUSLOAD_VALUE_CAN2_N292 ,18DAF1D2,216,223,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.BUSLOAD_VALUE_CAN3_N292 ,18DAF1D2,224,231,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.BUSLOAD_VALUE_CAN4_N292 ,18DAF1D2,232,239,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.BUSLOAD_VALUE_CAN5_N292 ,18DAF1D2,240,247,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.BUSLOAD_VALUE_CAN6_N292 ,18DAF1D2,248,255,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.BUSLOAD_VALUE_CAN7_N292 ,18DAF1D2,256,263,1,0,0,,220523,620523,ff,SECURITY_LOG_N292.BUSLOAD_VALUE_CAN8_N292 ,18DAF1D2,24,47,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.ABOLUTE_TIME_N293 ,18DAF1D2,48,71,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.MILEAGE_N293 ,18DAF1D2,76,78,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.VIOLATION_TYPE_N293,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.SIZE_IDENTIFIER_N293,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220524,620524,4ff,SECURITY_LOG_N293.IDENTIFIER_VIOLATED_FRAME_N293 ,18DAF1D2,112,119,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.VIOLATED_BUS_N293,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.PAYLOAD_DLC_N293,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220524,620524,4ff,SECURITY_LOG_N293.PAYLOAD_VIOLATED_FRAME_N293 ,18DAF1D2,199,199,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.BUSLOAD_STATUS_N293,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.BUSLOAD_VALUE_CAN1_N293 ,18DAF1D2,208,215,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.BUSLOAD_VALUE_CAN2_N293 ,18DAF1D2,216,223,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.BUSLOAD_VALUE_CAN3_N293 ,18DAF1D2,224,231,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.BUSLOAD_VALUE_CAN4_N293 ,18DAF1D2,232,239,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.BUSLOAD_VALUE_CAN5_N293 ,18DAF1D2,240,247,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.BUSLOAD_VALUE_CAN6_N293 ,18DAF1D2,248,255,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.BUSLOAD_VALUE_CAN7_N293 ,18DAF1D2,256,263,1,0,0,,220524,620524,ff,SECURITY_LOG_N293.BUSLOAD_VALUE_CAN8_N293 ,18DAF1D2,24,47,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.ABOLUTE_TIME_N294 ,18DAF1D2,48,71,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.MILEAGE_N294 ,18DAF1D2,76,78,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.VIOLATION_TYPE_N294,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.SIZE_IDENTIFIER_N294,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220525,620525,4ff,SECURITY_LOG_N294.IDENTIFIER_VIOLATED_FRAME_N294 ,18DAF1D2,112,119,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.VIOLATED_BUS_N294,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.PAYLOAD_DLC_N294,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220525,620525,4ff,SECURITY_LOG_N294.PAYLOAD_VIOLATED_FRAME_N294 ,18DAF1D2,199,199,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.BUSLOAD_STATUS_N294,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.BUSLOAD_VALUE_CAN1_N294 ,18DAF1D2,208,215,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.BUSLOAD_VALUE_CAN2_N294 ,18DAF1D2,216,223,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.BUSLOAD_VALUE_CAN3_N294 ,18DAF1D2,224,231,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.BUSLOAD_VALUE_CAN4_N294 ,18DAF1D2,232,239,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.BUSLOAD_VALUE_CAN5_N294 ,18DAF1D2,240,247,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.BUSLOAD_VALUE_CAN6_N294 ,18DAF1D2,248,255,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.BUSLOAD_VALUE_CAN7_N294 ,18DAF1D2,256,263,1,0,0,,220525,620525,ff,SECURITY_LOG_N294.BUSLOAD_VALUE_CAN8_N294 ,18DAF1D2,24,47,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.ABOLUTE_TIME_N295 ,18DAF1D2,48,71,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.MILEAGE_N295 ,18DAF1D2,76,78,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.VIOLATION_TYPE_N295,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.SIZE_IDENTIFIER_N295,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220526,620526,4ff,SECURITY_LOG_N295.IDENTIFIER_VIOLATED_FRAME_N295 ,18DAF1D2,112,119,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.VIOLATED_BUS_N295,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.PAYLOAD_DLC_N295,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220526,620526,4ff,SECURITY_LOG_N295.PAYLOAD_VIOLATED_FRAME_N295 ,18DAF1D2,199,199,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.BUSLOAD_STATUS_N295,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.BUSLOAD_VALUE_CAN1_N295 ,18DAF1D2,208,215,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.BUSLOAD_VALUE_CAN2_N295 ,18DAF1D2,216,223,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.BUSLOAD_VALUE_CAN3_N295 ,18DAF1D2,224,231,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.BUSLOAD_VALUE_CAN4_N295 ,18DAF1D2,232,239,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.BUSLOAD_VALUE_CAN5_N295 ,18DAF1D2,240,247,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.BUSLOAD_VALUE_CAN6_N295 ,18DAF1D2,248,255,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.BUSLOAD_VALUE_CAN7_N295 ,18DAF1D2,256,263,1,0,0,,220526,620526,ff,SECURITY_LOG_N295.BUSLOAD_VALUE_CAN8_N295 ,18DAF1D2,24,47,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.ABOLUTE_TIME_N296 ,18DAF1D2,48,71,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.MILEAGE_N296 ,18DAF1D2,76,78,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.VIOLATION_TYPE_N296,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.SIZE_IDENTIFIER_N296,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220527,620527,4ff,SECURITY_LOG_N296.IDENTIFIER_VIOLATED_FRAME_N296 ,18DAF1D2,112,119,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.VIOLATED_BUS_N296,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.PAYLOAD_DLC_N296,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220527,620527,4ff,SECURITY_LOG_N296.PAYLOAD_VIOLATED_FRAME_N296 ,18DAF1D2,199,199,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.BUSLOAD_STATUS_N296,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.BUSLOAD_VALUE_CAN1_N296 ,18DAF1D2,208,215,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.BUSLOAD_VALUE_CAN2_N296 ,18DAF1D2,216,223,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.BUSLOAD_VALUE_CAN3_N296 ,18DAF1D2,224,231,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.BUSLOAD_VALUE_CAN4_N296 ,18DAF1D2,232,239,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.BUSLOAD_VALUE_CAN5_N296 ,18DAF1D2,240,247,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.BUSLOAD_VALUE_CAN6_N296 ,18DAF1D2,248,255,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.BUSLOAD_VALUE_CAN7_N296 ,18DAF1D2,256,263,1,0,0,,220527,620527,ff,SECURITY_LOG_N296.BUSLOAD_VALUE_CAN8_N296 ,18DAF1D2,24,47,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.ABOLUTE_TIME_N297 ,18DAF1D2,48,71,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.MILEAGE_N297 ,18DAF1D2,76,78,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.VIOLATION_TYPE_N297,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.SIZE_IDENTIFIER_N297,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220528,620528,4ff,SECURITY_LOG_N297.IDENTIFIER_VIOLATED_FRAME_N297 ,18DAF1D2,112,119,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.VIOLATED_BUS_N297,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.PAYLOAD_DLC_N297,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220528,620528,4ff,SECURITY_LOG_N297.PAYLOAD_VIOLATED_FRAME_N297 ,18DAF1D2,199,199,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.BUSLOAD_STATUS_N297,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.BUSLOAD_VALUE_CAN1_N297 ,18DAF1D2,208,215,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.BUSLOAD_VALUE_CAN2_N297 ,18DAF1D2,216,223,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.BUSLOAD_VALUE_CAN3_N297 ,18DAF1D2,224,231,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.BUSLOAD_VALUE_CAN4_N297 ,18DAF1D2,232,239,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.BUSLOAD_VALUE_CAN5_N297 ,18DAF1D2,240,247,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.BUSLOAD_VALUE_CAN6_N297 ,18DAF1D2,248,255,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.BUSLOAD_VALUE_CAN7_N297 ,18DAF1D2,256,263,1,0,0,,220528,620528,ff,SECURITY_LOG_N297.BUSLOAD_VALUE_CAN8_N297 ,18DAF1D2,24,47,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.ABOLUTE_TIME_N298 ,18DAF1D2,48,71,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.MILEAGE_N298 ,18DAF1D2,76,78,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.VIOLATION_TYPE_N298,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.SIZE_IDENTIFIER_N298,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220529,620529,4ff,SECURITY_LOG_N298.IDENTIFIER_VIOLATED_FRAME_N298 ,18DAF1D2,112,119,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.VIOLATED_BUS_N298,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.PAYLOAD_DLC_N298,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220529,620529,4ff,SECURITY_LOG_N298.PAYLOAD_VIOLATED_FRAME_N298 ,18DAF1D2,199,199,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.BUSLOAD_STATUS_N298,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.BUSLOAD_VALUE_CAN1_N298 ,18DAF1D2,208,215,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.BUSLOAD_VALUE_CAN2_N298 ,18DAF1D2,216,223,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.BUSLOAD_VALUE_CAN3_N298 ,18DAF1D2,224,231,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.BUSLOAD_VALUE_CAN4_N298 ,18DAF1D2,232,239,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.BUSLOAD_VALUE_CAN5_N298 ,18DAF1D2,240,247,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.BUSLOAD_VALUE_CAN6_N298 ,18DAF1D2,248,255,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.BUSLOAD_VALUE_CAN7_N298 ,18DAF1D2,256,263,1,0,0,,220529,620529,ff,SECURITY_LOG_N298.BUSLOAD_VALUE_CAN8_N298 ,18DAF1D2,24,47,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.ABOLUTE_TIME_N299 ,18DAF1D2,48,71,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.MILEAGE_N299 ,18DAF1D2,76,78,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.VIOLATION_TYPE_N299,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.SIZE_IDENTIFIER_N299,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22052A,62052A,4ff,SECURITY_LOG_N299.IDENTIFIER_VIOLATED_FRAME_N299 ,18DAF1D2,112,119,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.VIOLATED_BUS_N299,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.PAYLOAD_DLC_N299,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22052A,62052A,4ff,SECURITY_LOG_N299.PAYLOAD_VIOLATED_FRAME_N299 ,18DAF1D2,199,199,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.BUSLOAD_STATUS_N299,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.BUSLOAD_VALUE_CAN1_N299 ,18DAF1D2,208,215,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.BUSLOAD_VALUE_CAN2_N299 ,18DAF1D2,216,223,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.BUSLOAD_VALUE_CAN3_N299 ,18DAF1D2,224,231,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.BUSLOAD_VALUE_CAN4_N299 ,18DAF1D2,232,239,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.BUSLOAD_VALUE_CAN5_N299 ,18DAF1D2,240,247,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.BUSLOAD_VALUE_CAN6_N299 ,18DAF1D2,248,255,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.BUSLOAD_VALUE_CAN7_N299 ,18DAF1D2,256,263,1,0,0,,22052A,62052A,ff,SECURITY_LOG_N299.BUSLOAD_VALUE_CAN8_N299 ,18DAF1D2,24,47,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.ABOLUTE_TIME_N300 ,18DAF1D2,48,71,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.MILEAGE_N300 ,18DAF1D2,76,78,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.VIOLATION_TYPE_N300,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.SIZE_IDENTIFIER_N300,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22052B,62052B,4ff,SECURITY_LOG_N300.IDENTIFIER_VIOLATED_FRAME_N300 ,18DAF1D2,112,119,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.VIOLATED_BUS_N300,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.PAYLOAD_DLC_N300,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22052B,62052B,4ff,SECURITY_LOG_N300.PAYLOAD_VIOLATED_FRAME_N300 ,18DAF1D2,199,199,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.BUSLOAD_STATUS_N300,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.BUSLOAD_VALUE_CAN3_N300 ,18DAF1D2,224,231,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.BUSLOAD_VALUE_CAN4_N300 ,18DAF1D2,232,239,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.BUSLOAD_VALUE_CAN5_N300 ,18DAF1D2,240,247,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.BUSLOAD_VALUE_CAN6_N300 ,18DAF1D2,248,255,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.BUSLOAD_VALUE_CAN7_N300 ,18DAF1D2,256,263,1,0,0,,22052B,62052B,ff,SECURITY_LOG_N300.BUSLOAD_VALUE_CAN8_N300 ,18DAF1D2,24,47,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.ABOLUTE_TIME_N301 ,18DAF1D2,48,71,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.MILEAGE_N301 ,18DAF1D2,76,78,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.VIOLATION_TYPE_N301,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.SIZE_IDENTIFIER_N301,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22052C,62052C,4ff,SECURITY_LOG_N301.IDENTIFIER_VIOLATED_FRAME_N301 ,18DAF1D2,112,119,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.VIOLATED_BUS_N301,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.PAYLOAD_DLC_N301,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22052C,62052C,4ff,SECURITY_LOG_N301.PAYLOAD_VIOLATED_FRAME_N301 ,18DAF1D2,199,199,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.BUSLOAD_STATUS_N301,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.BUSLOAD_VALUE_CAN3_N301 ,18DAF1D2,224,231,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.BUSLOAD_VALUE_CAN4_N301 ,18DAF1D2,232,239,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.BUSLOAD_VALUE_CAN5_N301 ,18DAF1D2,240,247,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.BUSLOAD_VALUE_CAN6_N301 ,18DAF1D2,248,255,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.BUSLOAD_VALUE_CAN7_N301 ,18DAF1D2,256,263,1,0,0,,22052C,62052C,ff,SECURITY_LOG_N301.BUSLOAD_VALUE_CAN8_N301 ,18DAF1D2,24,47,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.ABOLUTE_TIME_N302 ,18DAF1D2,48,71,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.MILEAGE_N302 ,18DAF1D2,76,78,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.VIOLATION_TYPE_N302,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.SIZE_IDENTIFIER_N302,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22052D,62052D,4ff,SECURITY_LOG_N302.IDENTIFIER_VIOLATED_FRAME_N302 ,18DAF1D2,112,119,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.VIOLATED_BUS_N302,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.PAYLOAD_DLC_N302,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22052D,62052D,4ff,SECURITY_LOG_N302.PAYLOAD_VIOLATED_FRAME_N302 ,18DAF1D2,199,199,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.BUSLOAD_STATUS_N302,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.BUSLOAD_VALUE_CAN1_N302 ,18DAF1D2,208,215,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.BUSLOAD_VALUE_CAN2_N302 ,18DAF1D2,216,223,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.BUSLOAD_VALUE_CAN3_N302 ,18DAF1D2,224,231,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.BUSLOAD_VALUE_CAN4_N302 ,18DAF1D2,232,239,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.BUSLOAD_VALUE_CAN5_N302 ,18DAF1D2,240,247,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.BUSLOAD_VALUE_CAN6_N302 ,18DAF1D2,248,255,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.BUSLOAD_VALUE_CAN7_N302 ,18DAF1D2,256,263,1,0,0,,22052D,62052D,ff,SECURITY_LOG_N302.BUSLOAD_VALUE_CAN8_N302 ,18DAF1D2,24,47,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.ABOLUTE_TIME_N303 ,18DAF1D2,48,71,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.MILEAGE_N303 ,18DAF1D2,76,78,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.VIOLATION_TYPE_N303,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.SIZE_IDENTIFIER_N303,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22052E,62052E,4ff,SECURITY_LOG_N303.IDENTIFIER_VIOLATED_FRAME_N303 ,18DAF1D2,112,119,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.VIOLATED_BUS_N303,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.PAYLOAD_DLC_N303,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22052E,62052E,4ff,SECURITY_LOG_N303.PAYLOAD_VIOLATED_FRAME_N303 ,18DAF1D2,199,199,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.BUSLOAD_STATUS_N303,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.BUSLOAD_VALUE_CAN1_N303 ,18DAF1D2,208,215,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.BUSLOAD_VALUE_CAN2_N303 ,18DAF1D2,216,223,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.BUSLOAD_VALUE_CAN3_N303 ,18DAF1D2,224,231,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.BUSLOAD_VALUE_CAN4_N303 ,18DAF1D2,232,239,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.BUSLOAD_VALUE_CAN5_N303 ,18DAF1D2,240,247,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.BUSLOAD_VALUE_CAN6_N303 ,18DAF1D2,248,255,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.BUSLOAD_VALUE_CAN7_N303 ,18DAF1D2,256,263,1,0,0,,22052E,62052E,ff,SECURITY_LOG_N303.BUSLOAD_VALUE_CAN8_N303 ,18DAF1D2,24,47,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.ABOLUTE_TIME_N304 ,18DAF1D2,48,71,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.MILEAGE_N304 ,18DAF1D2,76,78,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.VIOLATION_TYPE_N304,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.SIZE_IDENTIFIER_N304,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22052F,62052F,4ff,SECURITY_LOG_N304.IDENTIFIER_VIOLATED_FRAME_N304 ,18DAF1D2,112,119,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.VIOLATED_BUS_N304,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.PAYLOAD_DLC_N304,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22052F,62052F,4ff,SECURITY_LOG_N304.PAYLOAD_VIOLATED_FRAME_N304 ,18DAF1D2,199,199,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.BUSLOAD_STATUS_N304,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.BUSLOAD_VALUE_CAN1_N304 ,18DAF1D2,208,215,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.BUSLOAD_VALUE_CAN2_N304 ,18DAF1D2,216,223,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.BUSLOAD_VALUE_CAN3_N304 ,18DAF1D2,224,231,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.BUSLOAD_VALUE_CAN4_N304 ,18DAF1D2,232,239,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.BUSLOAD_VALUE_CAN5_N304 ,18DAF1D2,240,247,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.BUSLOAD_VALUE_CAN6_N304 ,18DAF1D2,248,255,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.BUSLOAD_VALUE_CAN7_N304 ,18DAF1D2,256,263,1,0,0,,22052F,62052F,ff,SECURITY_LOG_N304.BUSLOAD_VALUE_CAN8_N304 ,18DAF1D2,24,47,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.ABOLUTE_TIME_N305 ,18DAF1D2,48,71,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.MILEAGE_N305 ,18DAF1D2,76,78,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.VIOLATION_TYPE_N305,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.SIZE_IDENTIFIER_N305,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220530,620530,4ff,SECURITY_LOG_N305.IDENTIFIER_VIOLATED_FRAME_N305 ,18DAF1D2,112,119,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.VIOLATED_BUS_N305,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.PAYLOAD_DLC_N305,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220530,620530,4ff,SECURITY_LOG_N305.PAYLOAD_VIOLATED_FRAME_N305 ,18DAF1D2,199,199,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.BUSLOAD_STATUS_N305,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.BUSLOAD_VALUE_CAN1_N305 ,18DAF1D2,208,215,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.BUSLOAD_VALUE_CAN2_N305 ,18DAF1D2,216,223,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.BUSLOAD_VALUE_CAN3_N305 ,18DAF1D2,224,231,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.BUSLOAD_VALUE_CAN4_N305 ,18DAF1D2,232,239,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.BUSLOAD_VALUE_CAN5_N305 ,18DAF1D2,240,247,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.BUSLOAD_VALUE_CAN6_N305 ,18DAF1D2,248,255,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.BUSLOAD_VALUE_CAN7_N305 ,18DAF1D2,256,263,1,0,0,,220530,620530,ff,SECURITY_LOG_N305.BUSLOAD_VALUE_CAN8_N305 ,18DAF1D2,24,47,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.ABOLUTE_TIME_N306 ,18DAF1D2,48,71,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.MILEAGE_N306 ,18DAF1D2,76,78,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.VIOLATION_TYPE_N306,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.SIZE_IDENTIFIER_N306,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220531,620531,4ff,SECURITY_LOG_N306.IDENTIFIER_VIOLATED_FRAME_N306 ,18DAF1D2,112,119,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.VIOLATED_BUS_N306,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.PAYLOAD_DLC_N306,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220531,620531,4ff,SECURITY_LOG_N306.PAYLOAD_VIOLATED_FRAME_N306 ,18DAF1D2,199,199,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.BUSLOAD_STATUS_N306,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.BUSLOAD_VALUE_CAN1_N306 ,18DAF1D2,208,215,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.BUSLOAD_VALUE_CAN2_N306 ,18DAF1D2,216,223,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.BUSLOAD_VALUE_CAN3_N306 ,18DAF1D2,224,231,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.BUSLOAD_VALUE_CAN4_N306 ,18DAF1D2,232,239,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.BUSLOAD_VALUE_CAN5_N306 ,18DAF1D2,240,247,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.BUSLOAD_VALUE_CAN6_N306 ,18DAF1D2,248,255,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.BUSLOAD_VALUE_CAN7_N306 ,18DAF1D2,256,263,1,0,0,,220531,620531,ff,SECURITY_LOG_N306.BUSLOAD_VALUE_CAN8_N306 ,18DAF1D2,24,47,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.ABOLUTE_TIME_N307 ,18DAF1D2,48,71,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.MILEAGE_N307 ,18DAF1D2,76,78,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.VIOLATION_TYPE_N307,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.SIZE_IDENTIFIER_N307,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220532,620532,4ff,SECURITY_LOG_N307.IDENTIFIER_VIOLATED_FRAME_N307 ,18DAF1D2,112,119,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.VIOLATED_BUS_N307,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.PAYLOAD_DLC_N307,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220532,620532,4ff,SECURITY_LOG_N307.PAYLOAD_VIOLATED_FRAME_N307 ,18DAF1D2,199,199,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.BUSLOAD_STATUS_N307,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.BUSLOAD_VALUE_CAN1_N307 ,18DAF1D2,208,215,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.BUSLOAD_VALUE_CAN2_N307 ,18DAF1D2,216,223,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.BUSLOAD_VALUE_CAN3_N307 ,18DAF1D2,224,231,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.BUSLOAD_VALUE_CAN4_N307 ,18DAF1D2,232,239,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.BUSLOAD_VALUE_CAN5_N307 ,18DAF1D2,240,247,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.BUSLOAD_VALUE_CAN6_N307 ,18DAF1D2,248,255,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.BUSLOAD_VALUE_CAN7_N307 ,18DAF1D2,256,263,1,0,0,,220532,620532,ff,SECURITY_LOG_N307.BUSLOAD_VALUE_CAN8_N307 ,18DAF1D2,24,47,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.ABOLUTE_TIME_N308 ,18DAF1D2,48,71,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.MILEAGE_N308 ,18DAF1D2,76,78,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.VIOLATION_TYPE_N308,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.SIZE_IDENTIFIER_N308,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220533,620533,4ff,SECURITY_LOG_N308.IDENTIFIER_VIOLATED_FRAME_N308 ,18DAF1D2,112,119,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.VIOLATED_BUS_N308,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.PAYLOAD_DLC_N308,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220533,620533,4ff,SECURITY_LOG_N308.PAYLOAD_VIOLATED_FRAME_N308 ,18DAF1D2,199,199,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.BUSLOAD_STATUS_N308,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.BUSLOAD_VALUE_CAN1_N308 ,18DAF1D2,208,215,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.BUSLOAD_VALUE_CAN2_N308 ,18DAF1D2,216,223,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.BUSLOAD_VALUE_CAN3_N308 ,18DAF1D2,224,231,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.BUSLOAD_VALUE_CAN4_N308 ,18DAF1D2,232,239,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.BUSLOAD_VALUE_CAN5_N308 ,18DAF1D2,240,247,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.BUSLOAD_VALUE_CAN6_N308 ,18DAF1D2,248,255,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.BUSLOAD_VALUE_CAN7_N308 ,18DAF1D2,256,263,1,0,0,,220533,620533,ff,SECURITY_LOG_N308.BUSLOAD_VALUE_CAN8_N308 ,18DAF1D2,24,47,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.ABOLUTE_TIME_N309 ,18DAF1D2,48,71,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.MILEAGE_N309 ,18DAF1D2,76,78,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.VIOLATION_TYPE_N309,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.SIZE_IDENTIFIER_N309,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220534,620534,4ff,SECURITY_LOG_N309.IDENTIFIER_VIOLATED_FRAME_N309 ,18DAF1D2,112,119,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.VIOLATED_BUS_N309,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.PAYLOAD_DLC_N309,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220534,620534,4ff,SECURITY_LOG_N309.PAYLOAD_VIOLATED_FRAME_N309 ,18DAF1D2,199,199,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.BUSLOAD_STATUS_N309,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.BUSLOAD_VALUE_CAN1_N309 ,18DAF1D2,208,215,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.BUSLOAD_VALUE_CAN2_N309 ,18DAF1D2,216,223,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.BUSLOAD_VALUE_CAN3_N309 ,18DAF1D2,224,231,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.BUSLOAD_VALUE_CAN4_N309 ,18DAF1D2,232,239,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.BUSLOAD_VALUE_CAN5_N309 ,18DAF1D2,240,247,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.BUSLOAD_VALUE_CAN6_N309 ,18DAF1D2,248,255,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.BUSLOAD_VALUE_CAN7_N309 ,18DAF1D2,256,263,1,0,0,,220534,620534,ff,SECURITY_LOG_N309.BUSLOAD_VALUE_CAN8_N309 ,18DAF1D2,24,47,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.ABOLUTE_TIME_N310 ,18DAF1D2,48,71,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.MILEAGE_N310 ,18DAF1D2,76,78,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.VIOLATION_TYPE_N310,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.SIZE_IDENTIFIER_N310,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220535,620535,4ff,SECURITY_LOG_N310.IDENTIFIER_VIOLATED_FRAME_N310 ,18DAF1D2,112,119,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.VIOLATED_BUS_N310,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.PAYLOAD_DLC_N310,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220535,620535,4ff,SECURITY_LOG_N310.PAYLOAD_VIOLATED_FRAME_N310 ,18DAF1D2,199,199,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.BUSLOAD_STATUS_N310,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.BUSLOAD_VALUE_CAN1_N310 ,18DAF1D2,208,215,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.BUSLOAD_VALUE_CAN2_N310 ,18DAF1D2,216,223,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.BUSLOAD_VALUE_CAN3_N310 ,18DAF1D2,224,231,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.BUSLOAD_VALUE_CAN4_N310 ,18DAF1D2,232,239,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.BUSLOAD_VALUE_CAN5_N310 ,18DAF1D2,240,247,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.BUSLOAD_VALUE_CAN6_N310 ,18DAF1D2,248,255,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.BUSLOAD_VALUE_CAN7_N310 ,18DAF1D2,256,263,1,0,0,,220535,620535,ff,SECURITY_LOG_N310.BUSLOAD_VALUE_CAN8_N310 ,18DAF1D2,24,47,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.ABOLUTE_TIME_N311 ,18DAF1D2,48,71,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.MILEAGE_N311 ,18DAF1D2,76,78,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.VIOLATION_TYPE_N311,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.SIZE_IDENTIFIER_N311,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220536,620536,4ff,SECURITY_LOG_N311.IDENTIFIER_VIOLATED_FRAME_N311 ,18DAF1D2,112,119,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.VIOLATED_BUS_N311,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.PAYLOAD_DLC_N311,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220536,620536,4ff,SECURITY_LOG_N311.PAYLOAD_VIOLATED_FRAME_N311 ,18DAF1D2,199,199,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.BUSLOAD_STATUS_N311,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.BUSLOAD_VALUE_CAN1_N311 ,18DAF1D2,208,215,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.BUSLOAD_VALUE_CAN2_N311 ,18DAF1D2,216,223,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.BUSLOAD_VALUE_CAN3_N311 ,18DAF1D2,224,231,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.BUSLOAD_VALUE_CAN4_N311 ,18DAF1D2,232,239,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.BUSLOAD_VALUE_CAN5_N311 ,18DAF1D2,240,247,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.BUSLOAD_VALUE_CAN6_N311 ,18DAF1D2,248,255,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.BUSLOAD_VALUE_CAN7_N311 ,18DAF1D2,256,263,1,0,0,,220536,620536,ff,SECURITY_LOG_N311.BUSLOAD_VALUE_CAN8_N311 ,18DAF1D2,24,47,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.ABOLUTE_TIME_N312 ,18DAF1D2,48,71,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.MILEAGE_N312 ,18DAF1D2,76,78,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.VIOLATION_TYPE_N312,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.SIZE_IDENTIFIER_N312,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220537,620537,4ff,SECURITY_LOG_N312.IDENTIFIER_VIOLATED_FRAME_N312 ,18DAF1D2,112,119,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.VIOLATED_BUS_N312,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.PAYLOAD_DLC_N312,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220537,620537,4ff,SECURITY_LOG_N312.PAYLOAD_VIOLATED_FRAME_N312 ,18DAF1D2,199,199,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.BUSLOAD_STATUS_N312,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.BUSLOAD_VALUE_CAN1_N312 ,18DAF1D2,208,215,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.BUSLOAD_VALUE_CAN2_N312 ,18DAF1D2,216,223,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.BUSLOAD_VALUE_CAN3_N312 ,18DAF1D2,224,231,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.BUSLOAD_VALUE_CAN4_N312 ,18DAF1D2,232,239,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.BUSLOAD_VALUE_CAN5_N312 ,18DAF1D2,240,247,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.BUSLOAD_VALUE_CAN6_N312 ,18DAF1D2,248,255,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.BUSLOAD_VALUE_CAN7_N312 ,18DAF1D2,256,263,1,0,0,,220537,620537,ff,SECURITY_LOG_N312.BUSLOAD_VALUE_CAN8_N312 ,18DAF1D2,24,47,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.ABOLUTE_TIME_N313 ,18DAF1D2,48,71,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.MILEAGE_N313 ,18DAF1D2,76,78,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.VIOLATION_TYPE_N313,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.SIZE_IDENTIFIER_N313,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220538,620538,4ff,SECURITY_LOG_N313.IDENTIFIER_VIOLATED_FRAME_N313 ,18DAF1D2,112,119,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.VIOLATED_BUS_N313,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.PAYLOAD_DLC_N313,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220538,620538,4ff,SECURITY_LOG_N313.PAYLOAD_VIOLATED_FRAME_N313 ,18DAF1D2,199,199,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.BUSLOAD_STATUS_N313,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.BUSLOAD_VALUE_CAN1_N313 ,18DAF1D2,208,215,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.BUSLOAD_VALUE_CAN2_N313 ,18DAF1D2,216,223,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.BUSLOAD_VALUE_CAN3_N313 ,18DAF1D2,224,231,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.BUSLOAD_VALUE_CAN4_N313 ,18DAF1D2,232,239,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.BUSLOAD_VALUE_CAN5_N313 ,18DAF1D2,240,247,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.BUSLOAD_VALUE_CAN6_N313 ,18DAF1D2,248,255,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.BUSLOAD_VALUE_CAN7_N313 ,18DAF1D2,256,263,1,0,0,,220538,620538,ff,SECURITY_LOG_N313.BUSLOAD_VALUE_CAN8_N313 ,18DAF1D2,24,47,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.ABOLUTE_TIME_N314 ,18DAF1D2,48,71,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.MILEAGE_N314 ,18DAF1D2,76,78,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.VIOLATION_TYPE_N314,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.SIZE_IDENTIFIER_N314,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220539,620539,4ff,SECURITY_LOG_N314.IDENTIFIER_VIOLATED_FRAME_N314 ,18DAF1D2,112,119,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.VIOLATED_BUS_N314,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.PAYLOAD_DLC_N314,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220539,620539,4ff,SECURITY_LOG_N314.PAYLOAD_VIOLATED_FRAME_N314 ,18DAF1D2,199,199,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.BUSLOAD_STATUS_N314,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.BUSLOAD_VALUE_CAN1_N314 ,18DAF1D2,208,215,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.BUSLOAD_VALUE_CAN2_N314 ,18DAF1D2,216,223,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.BUSLOAD_VALUE_CAN3_N314 ,18DAF1D2,224,231,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.BUSLOAD_VALUE_CAN4_N314 ,18DAF1D2,232,239,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.BUSLOAD_VALUE_CAN5_N314 ,18DAF1D2,240,247,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.BUSLOAD_VALUE_CAN6_N314 ,18DAF1D2,248,255,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.BUSLOAD_VALUE_CAN7_N314 ,18DAF1D2,256,263,1,0,0,,220539,620539,ff,SECURITY_LOG_N314.BUSLOAD_VALUE_CAN8_N314 ,18DAF1D2,24,47,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.ABOLUTE_TIME_N315 ,18DAF1D2,48,71,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.MILEAGE_N315 ,18DAF1D2,76,78,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.VIOLATION_TYPE_N315,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.SIZE_IDENTIFIER_N315,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22053A,62053A,4ff,SECURITY_LOG_N315.IDENTIFIER_VIOLATED_FRAME_N315 ,18DAF1D2,112,119,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.VIOLATED_BUS_N315,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.PAYLOAD_DLC_N315,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22053A,62053A,4ff,SECURITY_LOG_N315.PAYLOAD_VIOLATED_FRAME_N315 ,18DAF1D2,199,199,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.BUSLOAD_STATUS_N315,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.BUSLOAD_VALUE_CAN1_N315 ,18DAF1D2,208,215,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.BUSLOAD_VALUE_CAN2_N315 ,18DAF1D2,216,223,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.BUSLOAD_VALUE_CAN3_N315 ,18DAF1D2,224,231,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.BUSLOAD_VALUE_CAN4_N315 ,18DAF1D2,232,239,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.BUSLOAD_VALUE_CAN5_N315 ,18DAF1D2,240,247,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.BUSLOAD_VALUE_CAN6_N315 ,18DAF1D2,248,255,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.BUSLOAD_VALUE_CAN7_N315 ,18DAF1D2,256,263,1,0,0,,22053A,62053A,ff,SECURITY_LOG_N315.BUSLOAD_VALUE_CAN8_N315 ,18DAF1D2,24,47,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.ABOLUTE_TIME_N316 ,18DAF1D2,48,71,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.MILEAGE_N316 ,18DAF1D2,76,78,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.VIOLATION_TYPE_N316,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.SIZE_IDENTIFIER_N316,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22053B,62053B,4ff,SECURITY_LOG_N316.IDENTIFIER_VIOLATED_FRAME_N316 ,18DAF1D2,112,119,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.VIOLATED_BUS_N316,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.PAYLOAD_DLC_N316,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22053B,62053B,4ff,SECURITY_LOG_N316.PAYLOAD_VIOLATED_FRAME_N316 ,18DAF1D2,199,199,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.BUSLOAD_STATUS_N316,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.BUSLOAD_VALUE_CAN1_N316 ,18DAF1D2,208,215,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.BUSLOAD_VALUE_CAN2_N316 ,18DAF1D2,216,223,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.BUSLOAD_VALUE_CAN3_N316 ,18DAF1D2,224,231,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.BUSLOAD_VALUE_CAN4_N316 ,18DAF1D2,232,239,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.BUSLOAD_VALUE_CAN5_N316 ,18DAF1D2,240,247,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.BUSLOAD_VALUE_CAN6_N316 ,18DAF1D2,248,255,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.BUSLOAD_VALUE_CAN7_N316 ,18DAF1D2,256,263,1,0,0,,22053B,62053B,ff,SECURITY_LOG_N316.BUSLOAD_VALUE_CAN8_N316 ,18DAF1D2,24,47,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.ABOLUTE_TIME_N317 ,18DAF1D2,48,71,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.MILEAGE_N317 ,18DAF1D2,76,78,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.VIOLATION_TYPE_N317,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.SIZE_IDENTIFIER_N317,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22053C,62053C,4ff,SECURITY_LOG_N317.IDENTIFIER_VIOLATED_FRAME_N317 ,18DAF1D2,112,119,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.VIOLATED_BUS_N317,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.PAYLOAD_DLC_N317,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22053C,62053C,4ff,SECURITY_LOG_N317.PAYLOAD_VIOLATED_FRAME_N317 ,18DAF1D2,199,199,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.BUSLOAD_STATUS_N317,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.BUSLOAD_VALUE_CAN1_N317 ,18DAF1D2,208,215,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.BUSLOAD_VALUE_CAN2_N317 ,18DAF1D2,216,223,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.BUSLOAD_VALUE_CAN3_N317 ,18DAF1D2,224,231,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.BUSLOAD_VALUE_CAN4_N317 ,18DAF1D2,232,239,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.BUSLOAD_VALUE_CAN5_N317 ,18DAF1D2,240,247,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.BUSLOAD_VALUE_CAN6_N317 ,18DAF1D2,248,255,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.BUSLOAD_VALUE_CAN7_N317 ,18DAF1D2,256,263,1,0,0,,22053C,62053C,ff,SECURITY_LOG_N317.BUSLOAD_VALUE_CAN8_N317 ,18DAF1D2,24,47,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.ABOLUTE_TIME_N318 ,18DAF1D2,48,71,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.MILEAGE_N318 ,18DAF1D2,76,78,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.VIOLATION_TYPE_N318,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.SIZE_IDENTIFIER_N318,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22053D,62053D,4ff,SECURITY_LOG_N318.IDENTIFIER_VIOLATED_FRAME_N318 ,18DAF1D2,112,119,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.VIOLATED_BUS_N318,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.PAYLOAD_DLC_N318,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22053D,62053D,4ff,SECURITY_LOG_N318.PAYLOAD_VIOLATED_FRAME_N318 ,18DAF1D2,199,199,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.BUSLOAD_STATUS_N318,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.BUSLOAD_VALUE_CAN1_N318 ,18DAF1D2,208,215,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.BUSLOAD_VALUE_CAN2_N318 ,18DAF1D2,216,223,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.BUSLOAD_VALUE_CAN3_N318 ,18DAF1D2,224,231,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.BUSLOAD_VALUE_CAN4_N318 ,18DAF1D2,232,239,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.BUSLOAD_VALUE_CAN5_N318 ,18DAF1D2,240,247,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.BUSLOAD_VALUE_CAN6_N318 ,18DAF1D2,248,255,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.BUSLOAD_VALUE_CAN7_N318 ,18DAF1D2,256,263,1,0,0,,22053D,62053D,ff,SECURITY_LOG_N318.BUSLOAD_VALUE_CAN8_N318 ,18DAF1D2,24,47,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.ABOLUTE_TIME_N319 ,18DAF1D2,48,71,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.MILEAGE_N319 ,18DAF1D2,76,78,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.VIOLATION_TYPE_N319,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.SIZE_IDENTIFIER_N319,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22053E,62053E,4ff,SECURITY_LOG_N319.IDENTIFIER_VIOLATED_FRAME_N319 ,18DAF1D2,112,119,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.VIOLATED_BUS_N319,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.PAYLOAD_DLC_N319,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22053E,62053E,4ff,SECURITY_LOG_N319.PAYLOAD_VIOLATED_FRAME_N319 ,18DAF1D2,199,199,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.BUSLOAD_STATUS_N319,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.BUSLOAD_VALUE_CAN1_N319 ,18DAF1D2,208,215,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.BUSLOAD_VALUE_CAN2_N319 ,18DAF1D2,216,223,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.BUSLOAD_VALUE_CAN3_N319 ,18DAF1D2,224,231,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.BUSLOAD_VALUE_CAN4_N319 ,18DAF1D2,232,239,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.BUSLOAD_VALUE_CAN5_N319 ,18DAF1D2,240,247,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.BUSLOAD_VALUE_CAN6_N319 ,18DAF1D2,248,255,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.BUSLOAD_VALUE_CAN7_N319 ,18DAF1D2,256,263,1,0,0,,22053E,62053E,ff,SECURITY_LOG_N319.BUSLOAD_VALUE_CAN8_N319 ,18DAF1D2,24,47,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.ABOLUTE_TIME_N320 ,18DAF1D2,48,71,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.MILEAGE_N320 ,18DAF1D2,76,78,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.VIOLATION_TYPE_N320,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.SIZE_IDENTIFIER_N320,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22053F,62053F,4ff,SECURITY_LOG_N320.IDENTIFIER_VIOLATED_FRAME_N320 ,18DAF1D2,112,119,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.VIOLATED_BUS_N320,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.PAYLOAD_DLC_N320,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22053F,62053F,4ff,SECURITY_LOG_N320.PAYLOAD_VIOLATED_FRAME_N320 ,18DAF1D2,199,199,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.BUSLOAD_STATUS_N320,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.BUSLOAD_VALUE_CAN1_N320 ,18DAF1D2,208,215,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.BUSLOAD_VALUE_CAN2_N320 ,18DAF1D2,216,223,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.BUSLOAD_VALUE_CAN3_N320 ,18DAF1D2,224,231,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.BUSLOAD_VALUE_CAN4_N320 ,18DAF1D2,232,239,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.BUSLOAD_VALUE_CAN5_N320 ,18DAF1D2,240,247,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.BUSLOAD_VALUE_CAN6_N320 ,18DAF1D2,248,255,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.BUSLOAD_VALUE_CAN7_N320 ,18DAF1D2,256,263,1,0,0,,22053F,62053F,ff,SECURITY_LOG_N320.BUSLOAD_VALUE_CAN8_N320 ,18DAF1D2,24,47,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.ABOLUTE_TIME_N321 ,18DAF1D2,48,71,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.MILEAGE_N321 ,18DAF1D2,76,78,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.VIOLATION_TYPE_N321,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.SIZE_IDENTIFIER_N321,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220540,620540,4ff,SECURITY_LOG_N321.IDENTIFIER_VIOLATED_FRAME_N321 ,18DAF1D2,112,119,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.VIOLATED_BUS_N321,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.PAYLOAD_DLC_N321,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220540,620540,4ff,SECURITY_LOG_N321.PAYLOAD_VIOLATED_FRAME_N321 ,18DAF1D2,199,199,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.BUSLOAD_STATUS_N321,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.BUSLOAD_VALUE_CAN1_N321 ,18DAF1D2,208,215,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.BUSLOAD_VALUE_CAN2_N321 ,18DAF1D2,216,223,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.BUSLOAD_VALUE_CAN3_N321 ,18DAF1D2,224,231,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.BUSLOAD_VALUE_CAN4_N321 ,18DAF1D2,232,239,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.BUSLOAD_VALUE_CAN5_N321 ,18DAF1D2,240,247,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.BUSLOAD_VALUE_CAN6_N321 ,18DAF1D2,248,255,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.BUSLOAD_VALUE_CAN7_N321 ,18DAF1D2,256,263,1,0,0,,220540,620540,ff,SECURITY_LOG_N321.BUSLOAD_VALUE_CAN8_N321 ,18DAF1D2,24,47,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.ABOLUTE_TIME_N322 ,18DAF1D2,48,71,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.MILEAGE_N322 ,18DAF1D2,76,78,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.VIOLATION_TYPE_N322,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.SIZE_IDENTIFIER_N322,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220541,620541,4ff,SECURITY_LOG_N322.IDENTIFIER_VIOLATED_FRAME_N322 ,18DAF1D2,112,119,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.VIOLATED_BUS_N322,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.PAYLOAD_DLC_N322,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220541,620541,4ff,SECURITY_LOG_N322.PAYLOAD_VIOLATED_FRAME_N322 ,18DAF1D2,199,199,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.BUSLOAD_STATUS_N322,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.BUSLOAD_VALUE_CAN1_N322 ,18DAF1D2,208,215,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.BUSLOAD_VALUE_CAN2_N322 ,18DAF1D2,216,223,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.BUSLOAD_VALUE_CAN3_N322 ,18DAF1D2,224,231,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.BUSLOAD_VALUE_CAN4_N322 ,18DAF1D2,232,239,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.BUSLOAD_VALUE_CAN5_N322 ,18DAF1D2,240,247,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.BUSLOAD_VALUE_CAN6_N322 ,18DAF1D2,248,255,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.BUSLOAD_VALUE_CAN7_N322 ,18DAF1D2,256,263,1,0,0,,220541,620541,ff,SECURITY_LOG_N322.BUSLOAD_VALUE_CAN8_N322 ,18DAF1D2,24,47,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.ABOLUTE_TIME_N323 ,18DAF1D2,48,71,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.MILEAGE_N323 ,18DAF1D2,76,78,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.VIOLATION_TYPE_N323,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.SIZE_IDENTIFIER_N323,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220542,620542,4ff,SECURITY_LOG_N323.IDENTIFIER_VIOLATED_FRAME_N323 ,18DAF1D2,112,119,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.VIOLATED_BUS_N323,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.PAYLOAD_DLC_N323,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220542,620542,4ff,SECURITY_LOG_N323.PAYLOAD_VIOLATED_FRAME_N323 ,18DAF1D2,199,199,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.BUSLOAD_STATUS_N323,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.BUSLOAD_VALUE_CAN1_N323 ,18DAF1D2,208,215,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.BUSLOAD_VALUE_CAN2_N323 ,18DAF1D2,216,223,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.BUSLOAD_VALUE_CAN3_N323 ,18DAF1D2,224,231,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.BUSLOAD_VALUE_CAN4_N323 ,18DAF1D2,232,239,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.BUSLOAD_VALUE_CAN5_N323 ,18DAF1D2,240,247,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.BUSLOAD_VALUE_CAN6_N323 ,18DAF1D2,248,255,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.BUSLOAD_VALUE_CAN7_N323 ,18DAF1D2,256,263,1,0,0,,220542,620542,ff,SECURITY_LOG_N323.BUSLOAD_VALUE_CAN8_N323 ,18DAF1D2,24,47,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.ABOLUTE_TIME_N324 ,18DAF1D2,48,71,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.MILEAGE_N324 ,18DAF1D2,76,78,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.VIOLATION_TYPE_N324,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.SIZE_IDENTIFIER_N324,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220543,620543,4ff,SECURITY_LOG_N324.IDENTIFIER_VIOLATED_FRAME_N324 ,18DAF1D2,112,119,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.VIOLATED_BUS_N324,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.PAYLOAD_DLC_N324,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220543,620543,4ff,SECURITY_LOG_N324.PAYLOAD_VIOLATED_FRAME_N324 ,18DAF1D2,199,199,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.BUSLOAD_STATUS_N324,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.BUSLOAD_VALUE_CAN1_N324 ,18DAF1D2,208,215,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.BUSLOAD_VALUE_CAN2_N324 ,18DAF1D2,216,223,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.BUSLOAD_VALUE_CAN3_N324 ,18DAF1D2,224,231,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.BUSLOAD_VALUE_CAN4_N324 ,18DAF1D2,232,239,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.BUSLOAD_VALUE_CAN5_N324 ,18DAF1D2,240,247,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.BUSLOAD_VALUE_CAN6_N324 ,18DAF1D2,248,255,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.BUSLOAD_VALUE_CAN7_N324 ,18DAF1D2,256,263,1,0,0,,220543,620543,ff,SECURITY_LOG_N324.BUSLOAD_VALUE_CAN8_N324 ,18DAF1D2,24,47,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.ABOLUTE_TIME_N325 ,18DAF1D2,48,71,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.MILEAGE_N325 ,18DAF1D2,76,78,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.VIOLATION_TYPE_N325,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.SIZE_IDENTIFIER_N325,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220544,620544,4ff,SECURITY_LOG_N325.IDENTIFIER_VIOLATED_FRAME_N325 ,18DAF1D2,112,119,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.VIOLATED_BUS_N325,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.PAYLOAD_DLC_N325,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220544,620544,4ff,SECURITY_LOG_N325.PAYLOAD_VIOLATED_FRAME_N325 ,18DAF1D2,199,199,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.BUSLOAD_STATUS_N325,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.BUSLOAD_VALUE_CAN1_N325 ,18DAF1D2,208,215,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.BUSLOAD_VALUE_CAN2_N325 ,18DAF1D2,216,223,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.BUSLOAD_VALUE_CAN3_N325 ,18DAF1D2,224,231,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.BUSLOAD_VALUE_CAN4_N325 ,18DAF1D2,232,239,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.BUSLOAD_VALUE_CAN5_N325 ,18DAF1D2,240,247,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.BUSLOAD_VALUE_CAN6_N325 ,18DAF1D2,248,255,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.BUSLOAD_VALUE_CAN7_N325 ,18DAF1D2,256,263,1,0,0,,220544,620544,ff,SECURITY_LOG_N325.BUSLOAD_VALUE_CAN8_N325 ,18DAF1D2,24,47,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.ABOLUTE_TIME_N326 ,18DAF1D2,48,71,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.MILEAGE_N326 ,18DAF1D2,76,78,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.VIOLATION_TYPE_N326,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.SIZE_IDENTIFIER_N326,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220545,620545,4ff,SECURITY_LOG_N326.IDENTIFIER_VIOLATED_FRAME_N326 ,18DAF1D2,112,119,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.VIOLATED_BUS_N326,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.PAYLOAD_DLC_N326,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220545,620545,4ff,SECURITY_LOG_N326.PAYLOAD_VIOLATED_FRAME_N326 ,18DAF1D2,199,199,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.BUSLOAD_STATUS_N326,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.BUSLOAD_VALUE_CAN1_N326 ,18DAF1D2,208,215,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.BUSLOAD_VALUE_CAN2_N326 ,18DAF1D2,216,223,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.BUSLOAD_VALUE_CAN3_N326 ,18DAF1D2,224,231,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.BUSLOAD_VALUE_CAN4_N326 ,18DAF1D2,232,239,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.BUSLOAD_VALUE_CAN5_N326 ,18DAF1D2,240,247,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.BUSLOAD_VALUE_CAN6_N326 ,18DAF1D2,248,255,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.BUSLOAD_VALUE_CAN7_N326 ,18DAF1D2,256,263,1,0,0,,220545,620545,ff,SECURITY_LOG_N326.BUSLOAD_VALUE_CAN8_N326 ,18DAF1D2,24,47,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.ABOLUTE_TIME_N327 ,18DAF1D2,48,71,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.MILEAGE_N327 ,18DAF1D2,76,78,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.VIOLATION_TYPE_N327,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.SIZE_IDENTIFIER_N327,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220546,620546,4ff,SECURITY_LOG_N327.IDENTIFIER_VIOLATED_FRAME_N327 ,18DAF1D2,112,119,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.VIOLATED_BUS_N327,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.PAYLOAD_DLC_N327,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220546,620546,4ff,SECURITY_LOG_N327.PAYLOAD_VIOLATED_FRAME_N327 ,18DAF1D2,199,199,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.BUSLOAD_STATUS_N327,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.BUSLOAD_VALUE_CAN1_N327 ,18DAF1D2,208,215,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.BUSLOAD_VALUE_CAN2_N327 ,18DAF1D2,216,223,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.BUSLOAD_VALUE_CAN3_N327 ,18DAF1D2,224,231,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.BUSLOAD_VALUE_CAN4_N327 ,18DAF1D2,232,239,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.BUSLOAD_VALUE_CAN5_N327 ,18DAF1D2,240,247,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.BUSLOAD_VALUE_CAN6_N327 ,18DAF1D2,248,255,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.BUSLOAD_VALUE_CAN7_N327 ,18DAF1D2,256,263,1,0,0,,220546,620546,ff,SECURITY_LOG_N327.BUSLOAD_VALUE_CAN8_N327 ,18DAF1D2,24,47,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.ABOLUTE_TIME_N328 ,18DAF1D2,48,71,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.MILEAGE_N328 ,18DAF1D2,76,78,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.VIOLATION_TYPE_N328,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.SIZE_IDENTIFIER_N328,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220547,620547,4ff,SECURITY_LOG_N328.IDENTIFIER_VIOLATED_FRAME_N328 ,18DAF1D2,112,119,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.VIOLATED_BUS_N328,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.PAYLOAD_DLC_N328,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220547,620547,4ff,SECURITY_LOG_N328.PAYLOAD_VIOLATED_FRAME_N328 ,18DAF1D2,199,199,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.BUSLOAD_STATUS_N328,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.BUSLOAD_VALUE_CAN1_N328 ,18DAF1D2,208,215,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.BUSLOAD_VALUE_CAN2_N328 ,18DAF1D2,216,223,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.BUSLOAD_VALUE_CAN3_N328 ,18DAF1D2,224,231,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.BUSLOAD_VALUE_CAN4_N328 ,18DAF1D2,232,239,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.BUSLOAD_VALUE_CAN5_N328 ,18DAF1D2,240,247,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.BUSLOAD_VALUE_CAN6_N328 ,18DAF1D2,248,255,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.BUSLOAD_VALUE_CAN7_N328 ,18DAF1D2,256,263,1,0,0,,220547,620547,ff,SECURITY_LOG_N328.BUSLOAD_VALUE_CAN8_N328 ,18DAF1D2,24,47,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.ABOLUTE_TIME_N329 ,18DAF1D2,48,71,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.MILEAGE_N329 ,18DAF1D2,76,78,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.VIOLATION_TYPE_N329,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.SIZE_IDENTIFIER_N329,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220548,620548,4ff,SECURITY_LOG_N329.IDENTIFIER_VIOLATED_FRAME_N329 ,18DAF1D2,112,119,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.VIOLATED_BUS_N329,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.PAYLOAD_DLC_N329,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220548,620548,4ff,SECURITY_LOG_N329.PAYLOAD_VIOLATED_FRAME_N329 ,18DAF1D2,199,199,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.BUSLOAD_STATUS_N329,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.BUSLOAD_VALUE_CAN1_N329 ,18DAF1D2,208,215,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.BUSLOAD_VALUE_CAN2_N329 ,18DAF1D2,216,223,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.BUSLOAD_VALUE_CAN3_N329 ,18DAF1D2,224,231,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.BUSLOAD_VALUE_CAN4_N329 ,18DAF1D2,232,239,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.BUSLOAD_VALUE_CAN5_N329 ,18DAF1D2,240,247,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.BUSLOAD_VALUE_CAN6_N329 ,18DAF1D2,248,255,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.BUSLOAD_VALUE_CAN7_N329 ,18DAF1D2,256,263,1,0,0,,220548,620548,ff,SECURITY_LOG_N329.BUSLOAD_VALUE_CAN8_N329 ,18DAF1D2,24,47,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.ABOLUTE_TIME_N330 ,18DAF1D2,48,71,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.MILEAGE_N330 ,18DAF1D2,76,78,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.VIOLATION_TYPE_N330,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.SIZE_IDENTIFIER_N330,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220549,620549,4ff,SECURITY_LOG_N330.IDENTIFIER_VIOLATED_FRAME_N330 ,18DAF1D2,112,119,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.VIOLATED_BUS_N330,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.PAYLOAD_DLC_N330,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220549,620549,4ff,SECURITY_LOG_N330.PAYLOAD_VIOLATED_FRAME_N330 ,18DAF1D2,199,199,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.BUSLOAD_STATUS_N330,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.BUSLOAD_VALUE_CAN1_N330 ,18DAF1D2,208,215,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.BUSLOAD_VALUE_CAN2_N330 ,18DAF1D2,216,223,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.BUSLOAD_VALUE_CAN3_N330 ,18DAF1D2,224,231,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.BUSLOAD_VALUE_CAN4_N330 ,18DAF1D2,232,239,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.BUSLOAD_VALUE_CAN5_N330 ,18DAF1D2,240,247,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.BUSLOAD_VALUE_CAN6_N330 ,18DAF1D2,248,255,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.BUSLOAD_VALUE_CAN7_N330 ,18DAF1D2,256,263,1,0,0,,220549,620549,ff,SECURITY_LOG_N330.BUSLOAD_VALUE_CAN8_N330 ,18DAF1D2,24,47,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.ABOLUTE_TIME_N331 ,18DAF1D2,48,71,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.MILEAGE_N331 ,18DAF1D2,76,78,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.VIOLATION_TYPE_N331,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.SIZE_IDENTIFIER_N331,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22054A,62054A,4ff,SECURITY_LOG_N331.IDENTIFIER_VIOLATED_FRAME_N331 ,18DAF1D2,112,119,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.VIOLATED_BUS_N331,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.PAYLOAD_DLC_N331,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22054A,62054A,4ff,SECURITY_LOG_N331.PAYLOAD_VIOLATED_FRAME_N331 ,18DAF1D2,199,199,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.BUSLOAD_STATUS_N331,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.BUSLOAD_VALUE_CAN1_N331 ,18DAF1D2,208,215,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.BUSLOAD_VALUE_CAN2_N331 ,18DAF1D2,216,223,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.BUSLOAD_VALUE_CAN3_N331 ,18DAF1D2,224,231,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.BUSLOAD_VALUE_CAN4_N331 ,18DAF1D2,232,239,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.BUSLOAD_VALUE_CAN5_N331 ,18DAF1D2,240,247,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.BUSLOAD_VALUE_CAN6_N331 ,18DAF1D2,248,255,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.BUSLOAD_VALUE_CAN7_N331 ,18DAF1D2,256,263,1,0,0,,22054A,62054A,ff,SECURITY_LOG_N331.BUSLOAD_VALUE_CAN8_N331 ,18DAF1D2,24,47,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.ABOLUTE_TIME_N332 ,18DAF1D2,48,71,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.MILEAGE_N332 ,18DAF1D2,76,78,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.VIOLATION_TYPE_N332,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.SIZE_IDENTIFIER_N332,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22054B,62054B,4ff,SECURITY_LOG_N332.IDENTIFIER_VIOLATED_FRAME_N332 ,18DAF1D2,112,119,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.VIOLATED_BUS_N332,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.PAYLOAD_DLC_N332,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22054B,62054B,4ff,SECURITY_LOG_N332.PAYLOAD_VIOLATED_FRAME_N332 ,18DAF1D2,199,199,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.BUSLOAD_STATUS_N332,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.BUSLOAD_VALUE_CAN1_N332 ,18DAF1D2,208,215,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.BUSLOAD_VALUE_CAN2_N332 ,18DAF1D2,216,223,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.BUSLOAD_VALUE_CAN3_N332 ,18DAF1D2,224,231,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.BUSLOAD_VALUE_CAN4_N332 ,18DAF1D2,232,239,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.BUSLOAD_VALUE_CAN5_N332 ,18DAF1D2,240,247,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.BUSLOAD_VALUE_CAN6_N332 ,18DAF1D2,248,255,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.BUSLOAD_VALUE_CAN7_N332 ,18DAF1D2,256,263,1,0,0,,22054B,62054B,ff,SECURITY_LOG_N332.BUSLOAD_VALUE_CAN8_N332 ,18DAF1D2,24,47,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.ABOLUTE_TIME_N333 ,18DAF1D2,48,71,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.MILEAGE_N333 ,18DAF1D2,76,78,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.VIOLATION_TYPE_N333,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.SIZE_IDENTIFIER_N333,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22054C,62054C,4ff,SECURITY_LOG_N333.IDENTIFIER_VIOLATED_FRAME_N333 ,18DAF1D2,112,119,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.VIOLATED_BUS_N333,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.PAYLOAD_DLC_N333,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22054C,62054C,4ff,SECURITY_LOG_N333.PAYLOAD_VIOLATED_FRAME_N333 ,18DAF1D2,199,199,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.BUSLOAD_STATUS_N333,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.BUSLOAD_VALUE_CAN1_N333 ,18DAF1D2,208,215,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.BUSLOAD_VALUE_CAN2_N333 ,18DAF1D2,216,223,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.BUSLOAD_VALUE_CAN3_N333 ,18DAF1D2,224,231,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.BUSLOAD_VALUE_CAN4_N333 ,18DAF1D2,232,239,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.BUSLOAD_VALUE_CAN5_N333 ,18DAF1D2,240,247,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.BUSLOAD_VALUE_CAN6_N333 ,18DAF1D2,248,255,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.BUSLOAD_VALUE_CAN7_N333 ,18DAF1D2,256,263,1,0,0,,22054C,62054C,ff,SECURITY_LOG_N333.BUSLOAD_VALUE_CAN8_N333 ,18DAF1D2,24,47,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.ABOLUTE_TIME_N334 ,18DAF1D2,48,71,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.MILEAGE_N334 ,18DAF1D2,76,78,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.VIOLATION_TYPE_N334,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.SIZE_IDENTIFIER_N334,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22054D,62054D,4ff,SECURITY_LOG_N334.IDENTIFIER_VIOLATED_FRAME_N334 ,18DAF1D2,112,119,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.VIOLATED_BUS_N334,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.PAYLOAD_DLC_N334,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22054D,62054D,4ff,SECURITY_LOG_N334.PAYLOAD_VIOLATED_FRAME_N334 ,18DAF1D2,199,199,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.BUSLOAD_STATUS_N334,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.BUSLOAD_VALUE_CAN1_N334 ,18DAF1D2,208,215,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.BUSLOAD_VALUE_CAN2_N334 ,18DAF1D2,216,223,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.BUSLOAD_VALUE_CAN3_N334 ,18DAF1D2,224,231,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.BUSLOAD_VALUE_CAN4_N334 ,18DAF1D2,232,239,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.BUSLOAD_VALUE_CAN5_N334 ,18DAF1D2,240,247,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.BUSLOAD_VALUE_CAN6_N334 ,18DAF1D2,248,255,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.BUSLOAD_VALUE_CAN7_N334 ,18DAF1D2,256,263,1,0,0,,22054D,62054D,ff,SECURITY_LOG_N334.BUSLOAD_VALUE_CAN8_N334 ,18DAF1D2,24,47,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.ABOLUTE_TIME_N335 ,18DAF1D2,48,71,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.MILEAGE_N335 ,18DAF1D2,76,78,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.VIOLATION_TYPE_N335,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.SIZE_IDENTIFIER_N335,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22054E,62054E,4ff,SECURITY_LOG_N335.IDENTIFIER_VIOLATED_FRAME_N335 ,18DAF1D2,112,119,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.VIOLATED_BUS_N335,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.PAYLOAD_DLC_N335,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22054E,62054E,4ff,SECURITY_LOG_N335.PAYLOAD_VIOLATED_FRAME_N335 ,18DAF1D2,199,199,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.BUSLOAD_STATUS_N335,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.BUSLOAD_VALUE_CAN1_N335 ,18DAF1D2,208,215,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.BUSLOAD_VALUE_CAN2_N335 ,18DAF1D2,216,223,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.BUSLOAD_VALUE_CAN3_N335 ,18DAF1D2,224,231,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.BUSLOAD_VALUE_CAN4_N335 ,18DAF1D2,232,239,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.BUSLOAD_VALUE_CAN5_N335 ,18DAF1D2,240,247,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.BUSLOAD_VALUE_CAN6_N335 ,18DAF1D2,248,255,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.BUSLOAD_VALUE_CAN7_N335 ,18DAF1D2,256,263,1,0,0,,22054E,62054E,ff,SECURITY_LOG_N335.BUSLOAD_VALUE_CAN8_N335 ,18DAF1D2,24,47,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.ABOLUTE_TIME_N336 ,18DAF1D2,48,71,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.MILEAGE_N336 ,18DAF1D2,76,78,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.VIOLATION_TYPE_N336,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.SIZE_IDENTIFIER_N336,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22054F,62054F,4ff,SECURITY_LOG_N336.IDENTIFIER_VIOLATED_FRAME_N336 ,18DAF1D2,112,119,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.VIOLATED_BUS_N336,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.PAYLOAD_DLC_N336,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22054F,62054F,4ff,SECURITY_LOG_N336.PAYLOAD_VIOLATED_FRAME_N336 ,18DAF1D2,199,199,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.BUSLOAD_STATUS_N336,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.BUSLOAD_VALUE_CAN1_N336 ,18DAF1D2,208,215,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.BUSLOAD_VALUE_CAN2_N336 ,18DAF1D2,216,223,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.BUSLOAD_VALUE_CAN3_N336 ,18DAF1D2,224,231,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.BUSLOAD_VALUE_CAN4_N336 ,18DAF1D2,232,239,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.BUSLOAD_VALUE_CAN5_N336 ,18DAF1D2,240,247,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.BUSLOAD_VALUE_CAN6_N336 ,18DAF1D2,248,255,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.BUSLOAD_VALUE_CAN7_N336 ,18DAF1D2,256,263,1,0,0,,22054F,62054F,ff,SECURITY_LOG_N336.BUSLOAD_VALUE_CAN8_N336 ,18DAF1D2,24,47,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.ABOLUTE_TIME_N337 ,18DAF1D2,48,71,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.MILEAGE_N337 ,18DAF1D2,76,78,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.VIOLATION_TYPE_N337,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.SIZE_IDENTIFIER_N337,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220550,620550,4ff,SECURITY_LOG_N337.IDENTIFIER_VIOLATED_FRAME_N337 ,18DAF1D2,112,119,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.VIOLATED_BUS_N337,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.PAYLOAD_DLC_N337,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220550,620550,4ff,SECURITY_LOG_N337.PAYLOAD_VIOLATED_FRAME_N337 ,18DAF1D2,199,199,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.BUSLOAD_STATUS_N337,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.BUSLOAD_VALUE_CAN1_N337 ,18DAF1D2,208,215,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.BUSLOAD_VALUE_CAN2_N337 ,18DAF1D2,216,223,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.BUSLOAD_VALUE_CAN3_N337 ,18DAF1D2,224,231,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.BUSLOAD_VALUE_CAN4_N337 ,18DAF1D2,232,239,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.BUSLOAD_VALUE_CAN5_N337 ,18DAF1D2,240,247,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.BUSLOAD_VALUE_CAN6_N337 ,18DAF1D2,248,255,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.BUSLOAD_VALUE_CAN7_N337 ,18DAF1D2,256,263,1,0,0,,220550,620550,ff,SECURITY_LOG_N337.BUSLOAD_VALUE_CAN8_N337 ,18DAF1D2,24,47,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.ABOLUTE_TIME_N338 ,18DAF1D2,48,71,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.MILEAGE_N338 ,18DAF1D2,76,78,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.VIOLATION_TYPE_N338,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.SIZE_IDENTIFIER_N338,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220551,620551,4ff,SECURITY_LOG_N338.IDENTIFIER_VIOLATED_FRAME_N338 ,18DAF1D2,112,119,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.VIOLATED_BUS_N338,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.PAYLOAD_DLC_N338,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220551,620551,4ff,SECURITY_LOG_N338.PAYLOAD_VIOLATED_FRAME_N338 ,18DAF1D2,199,199,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.BUSLOAD_STATUS_N338,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.BUSLOAD_VALUE_CAN1_N338 ,18DAF1D2,208,215,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.BUSLOAD_VALUE_CAN2_N338 ,18DAF1D2,216,223,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.BUSLOAD_VALUE_CAN3_N338 ,18DAF1D2,224,231,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.BUSLOAD_VALUE_CAN4_N338 ,18DAF1D2,232,239,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.BUSLOAD_VALUE_CAN5_N338 ,18DAF1D2,240,247,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.BUSLOAD_VALUE_CAN6_N338 ,18DAF1D2,248,255,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.BUSLOAD_VALUE_CAN7_N338 ,18DAF1D2,256,263,1,0,0,,220551,620551,ff,SECURITY_LOG_N338.BUSLOAD_VALUE_CAN8_N338 ,18DAF1D2,24,47,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.ABOLUTE_TIME_N339 ,18DAF1D2,48,71,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.MILEAGE_N339 ,18DAF1D2,76,78,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.VIOLATION_TYPE_N339,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.SIZE_IDENTIFIER_N339,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220552,620552,4ff,SECURITY_LOG_N339.IDENTIFIER_VIOLATED_FRAME_N339 ,18DAF1D2,112,119,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.VIOLATED_BUS_N339,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.PAYLOAD_DLC_N339,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220552,620552,4ff,SECURITY_LOG_N339.PAYLOAD_VIOLATED_FRAME_N339 ,18DAF1D2,199,199,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.BUSLOAD_STATUS_N339,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.BUSLOAD_VALUE_CAN1_N339 ,18DAF1D2,208,215,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.BUSLOAD_VALUE_CAN2_N339 ,18DAF1D2,216,223,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.BUSLOAD_VALUE_CAN3_N339 ,18DAF1D2,224,231,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.BUSLOAD_VALUE_CAN4_N339 ,18DAF1D2,232,239,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.BUSLOAD_VALUE_CAN5_N339 ,18DAF1D2,240,247,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.BUSLOAD_VALUE_CAN6_N339 ,18DAF1D2,248,255,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.BUSLOAD_VALUE_CAN7_N339 ,18DAF1D2,256,263,1,0,0,,220552,620552,ff,SECURITY_LOG_N339.BUSLOAD_VALUE_CAN8_N339 ,18DAF1D2,24,47,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.ABOLUTE_TIME_N340 ,18DAF1D2,48,71,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.MILEAGE_N340 ,18DAF1D2,76,78,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.VIOLATION_TYPE_N340,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.SIZE_IDENTIFIER_N340,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220553,620553,4ff,SECURITY_LOG_N340.IDENTIFIER_VIOLATED_FRAME_N340 ,18DAF1D2,112,119,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.VIOLATED_BUS_N340,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.PAYLOAD_DLC_N340,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220553,620553,4ff,SECURITY_LOG_N340.PAYLOAD_VIOLATED_FRAME_N340 ,18DAF1D2,199,199,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.BUSLOAD_STATUS_N340,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.BUSLOAD_VALUE_CAN1_N340 ,18DAF1D2,208,215,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.BUSLOAD_VALUE_CAN2_N340 ,18DAF1D2,216,223,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.BUSLOAD_VALUE_CAN3_N340 ,18DAF1D2,224,231,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.BUSLOAD_VALUE_CAN4_N340 ,18DAF1D2,232,239,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.BUSLOAD_VALUE_CAN5_N340 ,18DAF1D2,240,247,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.BUSLOAD_VALUE_CAN6_N340 ,18DAF1D2,248,255,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.BUSLOAD_VALUE_CAN7_N340 ,18DAF1D2,256,263,1,0,0,,220553,620553,ff,SECURITY_LOG_N340.BUSLOAD_VALUE_CAN8_N340 ,18DAF1D2,24,47,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.ABOLUTE_TIME_N341 ,18DAF1D2,48,71,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.MILEAGE_N341 ,18DAF1D2,76,78,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.VIOLATION_TYPE_N341,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.SIZE_IDENTIFIER_N341,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220554,620554,4ff,SECURITY_LOG_N341.IDENTIFIER_VIOLATED_FRAME_N341 ,18DAF1D2,112,119,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.VIOLATED_BUS_N341,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.PAYLOAD_DLC_N341,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220554,620554,4ff,SECURITY_LOG_N341.PAYLOAD_VIOLATED_FRAME_N341 ,18DAF1D2,199,199,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.BUSLOAD_STATUS_N341,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.BUSLOAD_VALUE_CAN1_N341 ,18DAF1D2,208,215,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.BUSLOAD_VALUE_CAN2_N341 ,18DAF1D2,216,223,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.BUSLOAD_VALUE_CAN3_N341 ,18DAF1D2,224,231,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.BUSLOAD_VALUE_CAN4_N341 ,18DAF1D2,232,239,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.BUSLOAD_VALUE_CAN5_N341 ,18DAF1D2,240,247,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.BUSLOAD_VALUE_CAN6_N341 ,18DAF1D2,248,255,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.BUSLOAD_VALUE_CAN7_N341 ,18DAF1D2,256,263,1,0,0,,220554,620554,ff,SECURITY_LOG_N341.BUSLOAD_VALUE_CAN8_N341 ,18DAF1D2,24,47,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.ABOLUTE_TIME_N342 ,18DAF1D2,48,71,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.MILEAGE_N342 ,18DAF1D2,76,78,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.VIOLATION_TYPE_N342,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.SIZE_IDENTIFIER_N342,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220555,620555,4ff,SECURITY_LOG_N342.IDENTIFIER_VIOLATED_FRAME_N342 ,18DAF1D2,112,119,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.VIOLATED_BUS_N342,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.PAYLOAD_DLC_N342,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220555,620555,4ff,SECURITY_LOG_N342.PAYLOAD_VIOLATED_FRAME_N342 ,18DAF1D2,199,199,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.BUSLOAD_STATUS_N342,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.BUSLOAD_VALUE_CAN1_N342 ,18DAF1D2,208,215,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.BUSLOAD_VALUE_CAN2_N342 ,18DAF1D2,216,223,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.BUSLOAD_VALUE_CAN3_N342 ,18DAF1D2,224,231,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.BUSLOAD_VALUE_CAN4_N342 ,18DAF1D2,232,239,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.BUSLOAD_VALUE_CAN5_N342 ,18DAF1D2,240,247,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.BUSLOAD_VALUE_CAN6_N342 ,18DAF1D2,248,255,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.BUSLOAD_VALUE_CAN7_N342 ,18DAF1D2,256,263,1,0,0,,220555,620555,ff,SECURITY_LOG_N342.BUSLOAD_VALUE_CAN8_N342 ,18DAF1D2,24,47,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.ABOLUTE_TIME_N343 ,18DAF1D2,48,71,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.MILEAGE_N343 ,18DAF1D2,76,78,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.VIOLATION_TYPE_N343,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.SIZE_IDENTIFIER_N343,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220556,620556,4ff,SECURITY_LOG_N343.IDENTIFIER_VIOLATED_FRAME_N343 ,18DAF1D2,112,119,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.VIOLATED_BUS_N343,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.PAYLOAD_DLC_N343,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220556,620556,4ff,SECURITY_LOG_N343.PAYLOAD_VIOLATED_FRAME_N343 ,18DAF1D2,199,199,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.BUSLOAD_STATUS_N343,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.BUSLOAD_VALUE_CAN1_N343 ,18DAF1D2,208,215,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.BUSLOAD_VALUE_CAN2_N343 ,18DAF1D2,216,223,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.BUSLOAD_VALUE_CAN3_N343 ,18DAF1D2,224,231,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.BUSLOAD_VALUE_CAN4_N343 ,18DAF1D2,232,239,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.BUSLOAD_VALUE_CAN5_N343 ,18DAF1D2,240,247,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.BUSLOAD_VALUE_CAN6_N343 ,18DAF1D2,248,255,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.BUSLOAD_VALUE_CAN7_N343 ,18DAF1D2,256,263,1,0,0,,220556,620556,ff,SECURITY_LOG_N343.BUSLOAD_VALUE_CAN8_N343 ,18DAF1D2,24,47,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.ABOLUTE_TIME_N344 ,18DAF1D2,48,71,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.MILEAGE_N344 ,18DAF1D2,76,78,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.VIOLATION_TYPE_N344,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.SIZE_IDENTIFIER_N344,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220557,620557,4ff,SECURITY_LOG_N344.IDENTIFIER_VIOLATED_FRAME_N344 ,18DAF1D2,112,119,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.VIOLATED_BUS_N344,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.PAYLOAD_DLC_N344,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220557,620557,4ff,SECURITY_LOG_N344.PAYLOAD_VIOLATED_FRAME_N344 ,18DAF1D2,199,199,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.BUSLOAD_STATUS_N344,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.BUSLOAD_VALUE_CAN1_N344 ,18DAF1D2,208,215,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.BUSLOAD_VALUE_CAN2_N344 ,18DAF1D2,216,223,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.BUSLOAD_VALUE_CAN3_N344 ,18DAF1D2,224,231,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.BUSLOAD_VALUE_CAN4_N344 ,18DAF1D2,232,239,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.BUSLOAD_VALUE_CAN5_N344 ,18DAF1D2,240,247,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.BUSLOAD_VALUE_CAN6_N344 ,18DAF1D2,248,255,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.BUSLOAD_VALUE_CAN7_N344 ,18DAF1D2,256,263,1,0,0,,220557,620557,ff,SECURITY_LOG_N344.BUSLOAD_VALUE_CAN8_N344 ,18DAF1D2,24,47,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.ABOLUTE_TIME_N345 ,18DAF1D2,48,71,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.MILEAGE_N345 ,18DAF1D2,76,78,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.VIOLATION_TYPE_N345,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.SIZE_IDENTIFIER_N345,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220558,620558,4ff,SECURITY_LOG_N345.IDENTIFIER_VIOLATED_FRAME_N345 ,18DAF1D2,112,119,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.VIOLATED_BUS_N345,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.PAYLOAD_DLC_N345,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220558,620558,4ff,SECURITY_LOG_N345.PAYLOAD_VIOLATED_FRAME_N345 ,18DAF1D2,199,199,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.BUSLOAD_STATUS_N345,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.BUSLOAD_VALUE_CAN1_N345 ,18DAF1D2,208,215,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.BUSLOAD_VALUE_CAN2_N345 ,18DAF1D2,216,223,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.BUSLOAD_VALUE_CAN3_N345 ,18DAF1D2,224,231,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.BUSLOAD_VALUE_CAN4_N345 ,18DAF1D2,232,239,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.BUSLOAD_VALUE_CAN5_N345 ,18DAF1D2,240,247,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.BUSLOAD_VALUE_CAN6_N345 ,18DAF1D2,248,255,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.BUSLOAD_VALUE_CAN7_N345 ,18DAF1D2,256,263,1,0,0,,220558,620558,ff,SECURITY_LOG_N345.BUSLOAD_VALUE_CAN8_N345 ,18DAF1D2,24,47,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.ABOLUTE_TIME_N346 ,18DAF1D2,48,71,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.MILEAGE_N346 ,18DAF1D2,76,78,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.VIOLATION_TYPE_N346,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.SIZE_IDENTIFIER_N346,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220559,620559,4ff,SECURITY_LOG_N346.IDENTIFIER_VIOLATED_FRAME_N346 ,18DAF1D2,112,119,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.VIOLATED_BUS_N346,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.PAYLOAD_DLC_N346,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220559,620559,4ff,SECURITY_LOG_N346.PAYLOAD_VIOLATED_FRAME_N346 ,18DAF1D2,199,199,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.BUSLOAD_STATUS_N346,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.BUSLOAD_VALUE_CAN1_N346 ,18DAF1D2,208,215,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.BUSLOAD_VALUE_CAN2_N346 ,18DAF1D2,216,223,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.BUSLOAD_VALUE_CAN3_N346 ,18DAF1D2,224,231,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.BUSLOAD_VALUE_CAN4_N346 ,18DAF1D2,232,239,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.BUSLOAD_VALUE_CAN5_N346 ,18DAF1D2,240,247,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.BUSLOAD_VALUE_CAN6_N346 ,18DAF1D2,248,255,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.BUSLOAD_VALUE_CAN7_N346 ,18DAF1D2,256,263,1,0,0,,220559,620559,ff,SECURITY_LOG_N346.BUSLOAD_VALUE_CAN8_N346 ,18DAF1D2,24,47,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.ABOLUTE_TIME_N347 ,18DAF1D2,48,71,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.MILEAGE_N347 ,18DAF1D2,76,78,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.VIOLATION_TYPE_N347,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.SIZE_IDENTIFIER_N347,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22055A,62055A,4ff,SECURITY_LOG_N347.IDENTIFIER_VIOLATED_FRAME_N347 ,18DAF1D2,112,119,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.VIOLATED_BUS_N347,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.PAYLOAD_DLC_N347,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22055A,62055A,4ff,SECURITY_LOG_N347.PAYLOAD_VIOLATED_FRAME_N347 ,18DAF1D2,199,199,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.BUSLOAD_STATUS_N347,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.BUSLOAD_VALUE_CAN1_N347 ,18DAF1D2,208,215,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.BUSLOAD_VALUE_CAN2_N347 ,18DAF1D2,216,223,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.BUSLOAD_VALUE_CAN3_N347 ,18DAF1D2,224,231,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.BUSLOAD_VALUE_CAN4_N347 ,18DAF1D2,232,239,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.BUSLOAD_VALUE_CAN5_N347 ,18DAF1D2,240,247,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.BUSLOAD_VALUE_CAN6_N347 ,18DAF1D2,248,255,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.BUSLOAD_VALUE_CAN7_N347 ,18DAF1D2,256,263,1,0,0,,22055A,62055A,ff,SECURITY_LOG_N347.BUSLOAD_VALUE_CAN8_N347 ,18DAF1D2,24,47,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.ABOLUTE_TIME_N348 ,18DAF1D2,48,71,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.MILEAGE_N348 ,18DAF1D2,76,78,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.VIOLATION_TYPE_N348,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.SIZE_IDENTIFIER_N348,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22055B,62055B,4ff,SECURITY_LOG_N348.IDENTIFIER_VIOLATED_FRAME_N348 ,18DAF1D2,112,119,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.VIOLATED_BUS_N348,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.PAYLOAD_DLC_N348,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22055B,62055B,4ff,SECURITY_LOG_N348.PAYLOAD_VIOLATED_FRAME_N348 ,18DAF1D2,199,199,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.BUSLOAD_STATUS_N348,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.BUSLOAD_VALUE_CAN1_N348 ,18DAF1D2,208,215,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.BUSLOAD_VALUE_CAN2_N348 ,18DAF1D2,216,223,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.BUSLOAD_VALUE_CAN3_N348 ,18DAF1D2,224,231,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.BUSLOAD_VALUE_CAN4_N348 ,18DAF1D2,232,239,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.BUSLOAD_VALUE_CAN5_N348 ,18DAF1D2,240,247,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.BUSLOAD_VALUE_CAN6_N348 ,18DAF1D2,248,255,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.BUSLOAD_VALUE_CAN7_N348 ,18DAF1D2,256,263,1,0,0,,22055B,62055B,ff,SECURITY_LOG_N348.BUSLOAD_VALUE_CAN8_N348 ,18DAF1D2,24,47,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.ABOLUTE_TIME_N349 ,18DAF1D2,48,71,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.MILEAGE_N349 ,18DAF1D2,76,78,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.VIOLATION_TYPE_N349,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.SIZE_IDENTIFIER_N349,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22055C,62055C,4ff,SECURITY_LOG_N349.IDENTIFIER_VIOLATED_FRAME_N349 ,18DAF1D2,112,119,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.VIOLATED_BUS_N349,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.PAYLOAD_DLC_N349,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22055C,62055C,4ff,SECURITY_LOG_N349.PAYLOAD_VIOLATED_FRAME_N349 ,18DAF1D2,199,199,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.BUSLOAD_STATUS_N349,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.BUSLOAD_VALUE_CAN1_N349 ,18DAF1D2,208,215,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.BUSLOAD_VALUE_CAN2_N349 ,18DAF1D2,216,223,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.BUSLOAD_VALUE_CAN3_N349 ,18DAF1D2,224,231,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.BUSLOAD_VALUE_CAN4_N349 ,18DAF1D2,232,239,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.BUSLOAD_VALUE_CAN5_N349 ,18DAF1D2,240,247,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.BUSLOAD_VALUE_CAN6_N349 ,18DAF1D2,248,255,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.BUSLOAD_VALUE_CAN7_N349 ,18DAF1D2,256,263,1,0,0,,22055C,62055C,ff,SECURITY_LOG_N349.BUSLOAD_VALUE_CAN8_N349 ,18DAF1D2,24,47,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.ABOLUTE_TIME_N350 ,18DAF1D2,48,71,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.MILEAGE_N350 ,18DAF1D2,76,78,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.VIOLATION_TYPE_N350,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.SIZE_IDENTIFIER_N350,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22055D,62055D,4ff,SECURITY_LOG_N350.IDENTIFIER_VIOLATED_FRAME_N350 ,18DAF1D2,112,119,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.VIOLATED_BUS_N350,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.PAYLOAD_DLC_N350,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22055D,62055D,4ff,SECURITY_LOG_N350.PAYLOAD_VIOLATED_FRAME_N350 ,18DAF1D2,199,199,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.BUSLOAD_STATUS_N350,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.BUSLOAD_VALUE_CAN1_N350 ,18DAF1D2,208,215,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.BUSLOAD_VALUE_CAN2_N350 ,18DAF1D2,216,223,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.BUSLOAD_VALUE_CAN3_N350 ,18DAF1D2,224,231,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.BUSLOAD_VALUE_CAN4_N350 ,18DAF1D2,232,239,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.BUSLOAD_VALUE_CAN5_N350 ,18DAF1D2,240,247,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.BUSLOAD_VALUE_CAN6_N350 ,18DAF1D2,248,255,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.BUSLOAD_VALUE_CAN7_N350 ,18DAF1D2,256,263,1,0,0,,22055D,62055D,ff,SECURITY_LOG_N350.BUSLOAD_VALUE_CAN8_N350 ,18DAF1D2,24,47,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.ABOLUTE_TIME_N351 ,18DAF1D2,48,71,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.MILEAGE_N351 ,18DAF1D2,76,78,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.VIOLATION_TYPE_N351,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.SIZE_IDENTIFIER_N351,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22055E,62055E,4ff,SECURITY_LOG_N351.IDENTIFIER_VIOLATED_FRAME_N351 ,18DAF1D2,112,119,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.VIOLATED_BUS_N351,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.PAYLOAD_DLC_N351,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22055E,62055E,4ff,SECURITY_LOG_N351.PAYLOAD_VIOLATED_FRAME_N351 ,18DAF1D2,199,199,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.BUSLOAD_STATUS_N351,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.BUSLOAD_VALUE_CAN1_N351 ,18DAF1D2,208,215,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.BUSLOAD_VALUE_CAN2_N351 ,18DAF1D2,216,223,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.BUSLOAD_VALUE_CAN3_N351 ,18DAF1D2,224,231,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.BUSLOAD_VALUE_CAN4_N351 ,18DAF1D2,232,239,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.BUSLOAD_VALUE_CAN5_N351 ,18DAF1D2,240,247,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.BUSLOAD_VALUE_CAN6_N351 ,18DAF1D2,248,255,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.BUSLOAD_VALUE_CAN7_N351 ,18DAF1D2,256,263,1,0,0,,22055E,62055E,ff,SECURITY_LOG_N351.BUSLOAD_VALUE_CAN8_N351 ,18DAF1D2,24,47,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.ABOLUTE_TIME_N352 ,18DAF1D2,48,71,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.MILEAGE_N352 ,18DAF1D2,76,78,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.VIOLATION_TYPE_N352,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.SIZE_IDENTIFIER_N352,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22055F,62055F,4ff,SECURITY_LOG_N352.IDENTIFIER_VIOLATED_FRAME_N352 ,18DAF1D2,112,119,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.VIOLATED_BUS_N352,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.PAYLOAD_DLC_N352,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22055F,62055F,4ff,SECURITY_LOG_N352.PAYLOAD_VIOLATED_FRAME_N352 ,18DAF1D2,199,199,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.BUSLOAD_STATUS_N352,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.BUSLOAD_VALUE_CAN1_N352 ,18DAF1D2,208,215,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.BUSLOAD_VALUE_CAN2_N352 ,18DAF1D2,216,223,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.BUSLOAD_VALUE_CAN3_N352 ,18DAF1D2,224,231,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.BUSLOAD_VALUE_CAN4_N352 ,18DAF1D2,232,239,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.BUSLOAD_VALUE_CAN5_N352 ,18DAF1D2,240,247,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.BUSLOAD_VALUE_CAN6_N352 ,18DAF1D2,248,255,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.BUSLOAD_VALUE_CAN7_N352 ,18DAF1D2,256,263,1,0,0,,22055F,62055F,ff,SECURITY_LOG_N352.BUSLOAD_VALUE_CAN8_N352 ,18DAF1D2,24,47,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.ABOLUTE_TIME_N353 ,18DAF1D2,48,71,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.MILEAGE_N353 ,18DAF1D2,76,78,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.VIOLATION_TYPE_N353,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.SIZE_IDENTIFIER_N353,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220560,620560,4ff,SECURITY_LOG_N353.IDENTIFIER_VIOLATED_FRAME_N353 ,18DAF1D2,112,119,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.VIOLATED_BUS_N353,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.PAYLOAD_DLC_N353,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220560,620560,4ff,SECURITY_LOG_N353.PAYLOAD_VIOLATED_FRAME_N353 ,18DAF1D2,199,199,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.BUSLOAD_STATUS_N353,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.BUSLOAD_VALUE_CAN1_N353 ,18DAF1D2,208,215,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.BUSLOAD_VALUE_CAN2_N353 ,18DAF1D2,216,223,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.BUSLOAD_VALUE_CAN3_N353 ,18DAF1D2,224,231,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.BUSLOAD_VALUE_CAN4_N353 ,18DAF1D2,232,239,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.BUSLOAD_VALUE_CAN5_N353 ,18DAF1D2,240,247,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.BUSLOAD_VALUE_CAN6_N353 ,18DAF1D2,248,255,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.BUSLOAD_VALUE_CAN7_N353 ,18DAF1D2,256,263,1,0,0,,220560,620560,ff,SECURITY_LOG_N353.BUSLOAD_VALUE_CAN8_N353 ,18DAF1D2,24,47,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.ABOLUTE_TIME_N354 ,18DAF1D2,48,71,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.MILEAGE_N354 ,18DAF1D2,76,78,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.VIOLATION_TYPE_N354,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.SIZE_IDENTIFIER_N354,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220561,620561,4ff,SECURITY_LOG_N354.IDENTIFIER_VIOLATED_FRAME_N354 ,18DAF1D2,112,119,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.VIOLATED_BUS_N354,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.PAYLOAD_DLC_N354,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220561,620561,4ff,SECURITY_LOG_N354.PAYLOAD_VIOLATED_FRAME_N354 ,18DAF1D2,199,199,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.BUSLOAD_STATUS_N354,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.BUSLOAD_VALUE_CAN1_N354 ,18DAF1D2,208,215,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.BUSLOAD_VALUE_CAN2_N354 ,18DAF1D2,216,223,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.BUSLOAD_VALUE_CAN3_N354 ,18DAF1D2,224,231,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.BUSLOAD_VALUE_CAN4_N354 ,18DAF1D2,232,239,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.BUSLOAD_VALUE_CAN5_N354 ,18DAF1D2,240,247,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.BUSLOAD_VALUE_CAN6_N354 ,18DAF1D2,248,255,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.BUSLOAD_VALUE_CAN7_N354 ,18DAF1D2,256,263,1,0,0,,220561,620561,ff,SECURITY_LOG_N354.BUSLOAD_VALUE_CAN8_N354 ,18DAF1D2,24,47,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.ABOLUTE_TIME_N355 ,18DAF1D2,48,71,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.MILEAGE_N355 ,18DAF1D2,76,78,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.VIOLATION_TYPE_N355,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.SIZE_IDENTIFIER_N355,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220562,620562,4ff,SECURITY_LOG_N355.IDENTIFIER_VIOLATED_FRAME_N355 ,18DAF1D2,112,119,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.VIOLATED_BUS_N355,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.PAYLOAD_DLC_N355,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220562,620562,4ff,SECURITY_LOG_N355.PAYLOAD_VIOLATED_FRAME_N355 ,18DAF1D2,199,199,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.BUSLOAD_STATUS_N355,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.BUSLOAD_VALUE_CAN1_N355 ,18DAF1D2,208,215,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.BUSLOAD_VALUE_CAN2_N355 ,18DAF1D2,216,223,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.BUSLOAD_VALUE_CAN3_N355 ,18DAF1D2,224,231,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.BUSLOAD_VALUE_CAN4_N355 ,18DAF1D2,232,239,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.BUSLOAD_VALUE_CAN5_N355 ,18DAF1D2,240,247,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.BUSLOAD_VALUE_CAN6_N355 ,18DAF1D2,248,255,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.BUSLOAD_VALUE_CAN7_N355 ,18DAF1D2,256,263,1,0,0,,220562,620562,ff,SECURITY_LOG_N355.BUSLOAD_VALUE_CAN8_N355 ,18DAF1D2,24,47,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.ABOLUTE_TIME_N356 ,18DAF1D2,48,71,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.MILEAGE_N356 ,18DAF1D2,76,78,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.VIOLATION_TYPE_N356,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.SIZE_IDENTIFIER_N356,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220563,620563,4ff,SECURITY_LOG_N356.IDENTIFIER_VIOLATED_FRAME_N356 ,18DAF1D2,112,119,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.VIOLATED_BUS_N356,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.PAYLOAD_DLC_N356,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220563,620563,4ff,SECURITY_LOG_N356.PAYLOAD_VIOLATED_FRAME_N356 ,18DAF1D2,199,199,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.BUSLOAD_STATUS_N356,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.BUSLOAD_VALUE_CAN1_N356 ,18DAF1D2,208,215,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.BUSLOAD_VALUE_CAN2_N356 ,18DAF1D2,216,223,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.BUSLOAD_VALUE_CAN3_N356 ,18DAF1D2,224,231,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.BUSLOAD_VALUE_CAN4_N356 ,18DAF1D2,232,239,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.BUSLOAD_VALUE_CAN5_N356 ,18DAF1D2,240,247,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.BUSLOAD_VALUE_CAN6_N356 ,18DAF1D2,248,255,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.BUSLOAD_VALUE_CAN7_N356 ,18DAF1D2,256,263,1,0,0,,220563,620563,ff,SECURITY_LOG_N356.BUSLOAD_VALUE_CAN8_N356 ,18DAF1D2,24,47,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.ABOLUTE_TIME_N357 ,18DAF1D2,48,71,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.MILEAGE_N357 ,18DAF1D2,76,78,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.VIOLATION_TYPE_N357,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.SIZE_IDENTIFIER_N357,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220564,620564,4ff,SECURITY_LOG_N357.IDENTIFIER_VIOLATED_FRAME_N357 ,18DAF1D2,112,119,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.VIOLATED_BUS_N357,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.PAYLOAD_DLC_N357,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220564,620564,4ff,SECURITY_LOG_N357.PAYLOAD_VIOLATED_FRAME_N357 ,18DAF1D2,199,199,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.BUSLOAD_STATUS_N357,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.BUSLOAD_VALUE_CAN1_N357 ,18DAF1D2,208,215,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.BUSLOAD_VALUE_CAN2_N357 ,18DAF1D2,216,223,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.BUSLOAD_VALUE_CAN3_N357 ,18DAF1D2,224,231,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.BUSLOAD_VALUE_CAN4_N357 ,18DAF1D2,232,239,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.BUSLOAD_VALUE_CAN5_N357 ,18DAF1D2,240,247,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.BUSLOAD_VALUE_CAN6_N357 ,18DAF1D2,248,255,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.BUSLOAD_VALUE_CAN7_N357 ,18DAF1D2,256,263,1,0,0,,220564,620564,ff,SECURITY_LOG_N357.BUSLOAD_VALUE_CAN8_N357 ,18DAF1D2,24,47,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.ABOLUTE_TIME_N358 ,18DAF1D2,48,71,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.MILEAGE_N358 ,18DAF1D2,76,78,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.VIOLATION_TYPE_N358,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.SIZE_IDENTIFIER_N358,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220565,620565,4ff,SECURITY_LOG_N358.IDENTIFIER_VIOLATED_FRAME_N358 ,18DAF1D2,112,119,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.VIOLATED_BUS_N358,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.PAYLOAD_DLC_N358,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220565,620565,4ff,SECURITY_LOG_N358.PAYLOAD_VIOLATED_FRAME_N358 ,18DAF1D2,199,199,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.BUSLOAD_STATUS_N358,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.BUSLOAD_VALUE_CAN1_N358 ,18DAF1D2,208,215,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.BUSLOAD_VALUE_CAN2_N358 ,18DAF1D2,216,223,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.BUSLOAD_VALUE_CAN3_N358 ,18DAF1D2,224,231,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.BUSLOAD_VALUE_CAN4_N358 ,18DAF1D2,232,239,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.BUSLOAD_VALUE_CAN5_N358 ,18DAF1D2,240,247,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.BUSLOAD_VALUE_CAN6_N358 ,18DAF1D2,248,255,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.BUSLOAD_VALUE_CAN7_N358 ,18DAF1D2,256,263,1,0,0,,220565,620565,ff,SECURITY_LOG_N358.BUSLOAD_VALUE_CAN8_N358 ,18DAF1D2,24,47,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.ABOLUTE_TIME_N359 ,18DAF1D2,48,71,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.MILEAGE_N359 ,18DAF1D2,76,78,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.VIOLATION_TYPE_N359,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.SIZE_IDENTIFIER_N359,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220566,620566,4ff,SECURITY_LOG_N359.IDENTIFIER_VIOLATED_FRAME_N359 ,18DAF1D2,112,119,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.VIOLATED_BUS_N359,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.PAYLOAD_DLC_N359,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220566,620566,4ff,SECURITY_LOG_N359.PAYLOAD_VIOLATED_FRAME_N359 ,18DAF1D2,199,199,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.BUSLOAD_STATUS_N359,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.BUSLOAD_VALUE_CAN1_N359 ,18DAF1D2,208,215,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.BUSLOAD_VALUE_CAN2_N359 ,18DAF1D2,216,223,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.BUSLOAD_VALUE_CAN3_N359 ,18DAF1D2,224,231,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.BUSLOAD_VALUE_CAN4_N359 ,18DAF1D2,232,239,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.BUSLOAD_VALUE_CAN5_N359 ,18DAF1D2,240,247,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.BUSLOAD_VALUE_CAN6_N359 ,18DAF1D2,248,255,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.BUSLOAD_VALUE_CAN7_N359 ,18DAF1D2,256,263,1,0,0,,220566,620566,ff,SECURITY_LOG_N359.BUSLOAD_VALUE_CAN8_N359 ,18DAF1D2,24,47,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.ABOLUTE_TIME_N360 ,18DAF1D2,48,71,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.MILEAGE_N360 ,18DAF1D2,76,78,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.VIOLATION_TYPE_N360,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.SIZE_IDENTIFIER_N360,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220567,620567,4ff,SECURITY_LOG_N360.IDENTIFIER_VIOLATED_FRAME_N360 ,18DAF1D2,112,119,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.VIOLATED_BUS_N360,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.PAYLOAD_DLC_N360,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220567,620567,4ff,SECURITY_LOG_N360.PAYLOAD_VIOLATED_FRAME_N360 ,18DAF1D2,199,199,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.BUSLOAD_STATUS_N360,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.BUSLOAD_VALUE_CAN1_N360 ,18DAF1D2,208,215,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.BUSLOAD_VALUE_CAN2_N360 ,18DAF1D2,216,223,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.BUSLOAD_VALUE_CAN3_N360 ,18DAF1D2,224,231,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.BUSLOAD_VALUE_CAN4_N360 ,18DAF1D2,232,239,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.BUSLOAD_VALUE_CAN5_N360 ,18DAF1D2,240,247,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.BUSLOAD_VALUE_CAN6_N360 ,18DAF1D2,248,255,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.BUSLOAD_VALUE_CAN7_N360 ,18DAF1D2,256,263,1,0,0,,220567,620567,ff,SECURITY_LOG_N360.BUSLOAD_VALUE_CAN8_N360 ,18DAF1D2,24,47,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.ABOLUTE_TIME_N361 ,18DAF1D2,48,71,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.MILEAGE_N361 ,18DAF1D2,76,78,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.VIOLATION_TYPE_N361,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.SIZE_IDENTIFIER_N361,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220568,620568,4ff,SECURITY_LOG_N361.IDENTIFIER_VIOLATED_FRAME_N361 ,18DAF1D2,112,119,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.VIOLATED_BUS_N361,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.PAYLOAD_DLC_N361,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220568,620568,4ff,SECURITY_LOG_N361.PAYLOAD_VIOLATED_FRAME_N361 ,18DAF1D2,199,199,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.BUSLOAD_STATUS_N361,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.BUSLOAD_VALUE_CAN1_N361 ,18DAF1D2,208,215,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.BUSLOAD_VALUE_CAN2_N361 ,18DAF1D2,216,223,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.BUSLOAD_VALUE_CAN3_N361 ,18DAF1D2,224,231,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.BUSLOAD_VALUE_CAN4_N361 ,18DAF1D2,232,239,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.BUSLOAD_VALUE_CAN5_N361 ,18DAF1D2,240,247,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.BUSLOAD_VALUE_CAN6_N361 ,18DAF1D2,248,255,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.BUSLOAD_VALUE_CAN7_N361 ,18DAF1D2,256,263,1,0,0,,220568,620568,ff,SECURITY_LOG_N361.BUSLOAD_VALUE_CAN8_N361 ,18DAF1D2,24,47,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.ABOLUTE_TIME_N362 ,18DAF1D2,48,71,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.MILEAGE_N362 ,18DAF1D2,76,78,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.VIOLATION_TYPE_N362,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.SIZE_IDENTIFIER_N362,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220569,620569,4ff,SECURITY_LOG_N362.IDENTIFIER_VIOLATED_FRAME_N362 ,18DAF1D2,112,119,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.VIOLATED_BUS_N362,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.PAYLOAD_DLC_N362,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220569,620569,4ff,SECURITY_LOG_N362.PAYLOAD_VIOLATED_FRAME_N362 ,18DAF1D2,199,199,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.BUSLOAD_STATUS_N362,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.BUSLOAD_VALUE_CAN1_N362 ,18DAF1D2,208,215,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.BUSLOAD_VALUE_CAN2_N362 ,18DAF1D2,216,223,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.BUSLOAD_VALUE_CAN3_N362 ,18DAF1D2,224,231,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.BUSLOAD_VALUE_CAN4_N362 ,18DAF1D2,232,239,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.BUSLOAD_VALUE_CAN5_N362 ,18DAF1D2,240,247,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.BUSLOAD_VALUE_CAN6_N362 ,18DAF1D2,248,255,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.BUSLOAD_VALUE_CAN7_N362 ,18DAF1D2,256,263,1,0,0,,220569,620569,ff,SECURITY_LOG_N362.BUSLOAD_VALUE_CAN8_N362 ,18DAF1D2,24,47,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.ABOLUTE_TIME_N363 ,18DAF1D2,48,71,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.MILEAGE_N363 ,18DAF1D2,76,78,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.VIOLATION_TYPE_N363,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.SIZE_IDENTIFIER_N363,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22056A,62056A,4ff,SECURITY_LOG_N363.IDENTIFIER_VIOLATED_FRAME_N363 ,18DAF1D2,112,119,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.VIOLATED_BUS_N363,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.PAYLOAD_DLC_N363,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22056A,62056A,4ff,SECURITY_LOG_N363.PAYLOAD_VIOLATED_FRAME_N363 ,18DAF1D2,199,199,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.BUSLOAD_STATUS_N363,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.BUSLOAD_VALUE_CAN1_N363 ,18DAF1D2,208,215,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.BUSLOAD_VALUE_CAN2_N363 ,18DAF1D2,216,223,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.BUSLOAD_VALUE_CAN3_N363 ,18DAF1D2,224,231,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.BUSLOAD_VALUE_CAN4_N363 ,18DAF1D2,232,239,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.BUSLOAD_VALUE_CAN5_N363 ,18DAF1D2,240,247,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.BUSLOAD_VALUE_CAN6_N363 ,18DAF1D2,248,255,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.BUSLOAD_VALUE_CAN7_N363 ,18DAF1D2,256,263,1,0,0,,22056A,62056A,ff,SECURITY_LOG_N363.BUSLOAD_VALUE_CAN8_N363 ,18DAF1D2,24,47,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.ABOLUTE_TIME_N364 ,18DAF1D2,48,71,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.MILEAGE_N364 ,18DAF1D2,76,78,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.VIOLATION_TYPE_N364,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.SIZE_IDENTIFIER_N364,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22056B,62056B,4ff,SECURITY_LOG_N364.IDENTIFIER_VIOLATED_FRAME_N364 ,18DAF1D2,112,119,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.VIOLATED_BUS_N364,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.PAYLOAD_DLC_N364,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22056B,62056B,4ff,SECURITY_LOG_N364.PAYLOAD_VIOLATED_FRAME_N364 ,18DAF1D2,199,199,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.BUSLOAD_STATUS_N364,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.BUSLOAD_VALUE_CAN1_N364 ,18DAF1D2,208,215,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.BUSLOAD_VALUE_CAN2_N364 ,18DAF1D2,216,223,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.BUSLOAD_VALUE_CAN3_N364 ,18DAF1D2,224,231,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.BUSLOAD_VALUE_CAN4_N364 ,18DAF1D2,232,239,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.BUSLOAD_VALUE_CAN5_N364 ,18DAF1D2,240,247,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.BUSLOAD_VALUE_CAN6_N364 ,18DAF1D2,248,255,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.BUSLOAD_VALUE_CAN7_N364 ,18DAF1D2,256,263,1,0,0,,22056B,62056B,ff,SECURITY_LOG_N364.BUSLOAD_VALUE_CAN8_N364 ,18DAF1D2,24,47,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.ABOLUTE_TIME_N365 ,18DAF1D2,48,71,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.MILEAGE_N365 ,18DAF1D2,76,78,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.VIOLATION_TYPE_N365,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.SIZE_IDENTIFIER_N365,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22056C,62056C,4ff,SECURITY_LOG_N365.IDENTIFIER_VIOLATED_FRAME_N365 ,18DAF1D2,112,119,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.VIOLATED_BUS_N365,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.PAYLOAD_DLC_N365,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22056C,62056C,4ff,SECURITY_LOG_N365.PAYLOAD_VIOLATED_FRAME_N365 ,18DAF1D2,199,199,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.BUSLOAD_STATUS_N365,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.BUSLOAD_VALUE_CAN1_N365 ,18DAF1D2,208,215,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.BUSLOAD_VALUE_CAN2_N365 ,18DAF1D2,216,223,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.BUSLOAD_VALUE_CAN3_N365 ,18DAF1D2,224,231,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.BUSLOAD_VALUE_CAN4_N365 ,18DAF1D2,232,239,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.BUSLOAD_VALUE_CAN5_N365 ,18DAF1D2,240,247,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.BUSLOAD_VALUE_CAN6_N365 ,18DAF1D2,248,255,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.BUSLOAD_VALUE_CAN7_N365 ,18DAF1D2,256,263,1,0,0,,22056C,62056C,ff,SECURITY_LOG_N365.BUSLOAD_VALUE_CAN8_N365 ,18DAF1D2,24,47,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.ABOLUTE_TIME_N366 ,18DAF1D2,48,71,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.MILEAGE_N366 ,18DAF1D2,76,78,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.VIOLATION_TYPE_N366,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.SIZE_IDENTIFIER_N366,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22056D,62056D,4ff,SECURITY_LOG_N366.IDENTIFIER_VIOLATED_FRAME_N366 ,18DAF1D2,112,119,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.VIOLATED_BUS_N366,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.PAYLOAD_DLC_N366,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22056D,62056D,4ff,SECURITY_LOG_N366.PAYLOAD_VIOLATED_FRAME_N366 ,18DAF1D2,199,199,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.BUSLOAD_STATUS_N366,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.BUSLOAD_VALUE_CAN1_N366 ,18DAF1D2,208,215,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.BUSLOAD_VALUE_CAN2_N366 ,18DAF1D2,216,223,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.BUSLOAD_VALUE_CAN3_N366 ,18DAF1D2,224,231,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.BUSLOAD_VALUE_CAN4_N366 ,18DAF1D2,232,239,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.BUSLOAD_VALUE_CAN5_N366 ,18DAF1D2,240,247,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.BUSLOAD_VALUE_CAN6_N366 ,18DAF1D2,248,255,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.BUSLOAD_VALUE_CAN7_N366 ,18DAF1D2,256,263,1,0,0,,22056D,62056D,ff,SECURITY_LOG_N366.BUSLOAD_VALUE_CAN8_N366 ,18DAF1D2,24,47,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.ABOLUTE_TIME_N367 ,18DAF1D2,48,71,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.MILEAGE_N367 ,18DAF1D2,76,78,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.VIOLATION_TYPE_N367,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.SIZE_IDENTIFIER_N367,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22056E,62056E,4ff,SECURITY_LOG_N367.IDENTIFIER_VIOLATED_FRAME_N367 ,18DAF1D2,112,119,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.VIOLATED_BUS_N367,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.PAYLOAD_DLC_N367,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22056E,62056E,4ff,SECURITY_LOG_N367.PAYLOAD_VIOLATED_FRAME_N367 ,18DAF1D2,199,199,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.BUSLOAD_STATUS_N367,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.BUSLOAD_VALUE_CAN1_N367 ,18DAF1D2,208,215,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.BUSLOAD_VALUE_CAN2_N367 ,18DAF1D2,216,223,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.BUSLOAD_VALUE_CAN3_N367 ,18DAF1D2,224,231,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.BUSLOAD_VALUE_CAN4_N367 ,18DAF1D2,232,239,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.BUSLOAD_VALUE_CAN5_N367 ,18DAF1D2,240,247,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.BUSLOAD_VALUE_CAN6_N367 ,18DAF1D2,248,255,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.BUSLOAD_VALUE_CAN7_N367 ,18DAF1D2,256,263,1,0,0,,22056E,62056E,ff,SECURITY_LOG_N367.BUSLOAD_VALUE_CAN8_N367 ,18DAF1D2,24,47,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.ABOLUTE_TIME_N368 ,18DAF1D2,48,71,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.MILEAGE_N368 ,18DAF1D2,76,78,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.VIOLATION_TYPE_N368,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.SIZE_IDENTIFIER_N368,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22056F,62056F,4ff,SECURITY_LOG_N368.IDENTIFIER_VIOLATED_FRAME_N368 ,18DAF1D2,112,119,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.VIOLATED_BUS_N368,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.PAYLOAD_DLC_N368,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22056F,62056F,4ff,SECURITY_LOG_N368.PAYLOAD_VIOLATED_FRAME_N368 ,18DAF1D2,199,199,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.BUSLOAD_STATUS_N368,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.BUSLOAD_VALUE_CAN1_N368 ,18DAF1D2,208,215,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.BUSLOAD_VALUE_CAN2_N368 ,18DAF1D2,216,223,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.BUSLOAD_VALUE_CAN3_N368 ,18DAF1D2,224,231,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.BUSLOAD_VALUE_CAN4_N368 ,18DAF1D2,232,239,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.BUSLOAD_VALUE_CAN5_N368 ,18DAF1D2,240,247,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.BUSLOAD_VALUE_CAN6_N368 ,18DAF1D2,248,255,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.BUSLOAD_VALUE_CAN7_N368 ,18DAF1D2,256,263,1,0,0,,22056F,62056F,ff,SECURITY_LOG_N368.BUSLOAD_VALUE_CAN8_N368 ,18DAF1D2,24,47,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.ABOLUTE_TIME_N369 ,18DAF1D2,48,71,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.MILEAGE_N369 ,18DAF1D2,76,78,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.VIOLATION_TYPE_N369,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.SIZE_IDENTIFIER_N369,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220570,620570,4ff,SECURITY_LOG_N369.IDENTIFIER_VIOLATED_FRAME_N369 ,18DAF1D2,112,119,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.VIOLATED_BUS_N369,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.PAYLOAD_DLC_N369,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220570,620570,4ff,SECURITY_LOG_N369.PAYLOAD_VIOLATED_FRAME_N369 ,18DAF1D2,199,199,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.BUSLOAD_STATUS_N369,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.BUSLOAD_VALUE_CAN1_N369 ,18DAF1D2,208,215,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.BUSLOAD_VALUE_CAN2_N369 ,18DAF1D2,216,223,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.BUSLOAD_VALUE_CAN3_N369 ,18DAF1D2,224,231,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.BUSLOAD_VALUE_CAN4_N369 ,18DAF1D2,232,239,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.BUSLOAD_VALUE_CAN5_N369 ,18DAF1D2,240,247,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.BUSLOAD_VALUE_CAN6_N369 ,18DAF1D2,248,255,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.BUSLOAD_VALUE_CAN7_N369 ,18DAF1D2,256,263,1,0,0,,220570,620570,ff,SECURITY_LOG_N369.BUSLOAD_VALUE_CAN8_N369 ,18DAF1D2,24,47,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.ABOLUTE_TIME_N370 ,18DAF1D2,48,71,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.MILEAGE_N370 ,18DAF1D2,76,78,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.VIOLATION_TYPE_N370,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.SIZE_IDENTIFIER_N370,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220571,620571,4ff,SECURITY_LOG_N370.IDENTIFIER_VIOLATED_FRAME_N370 ,18DAF1D2,112,119,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.VIOLATED_BUS_N370,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.PAYLOAD_DLC_N370,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220571,620571,4ff,SECURITY_LOG_N370.PAYLOAD_VIOLATED_FRAME_N370 ,18DAF1D2,199,199,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.BUSLOAD_STATUS_N370,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.BUSLOAD_VALUE_CAN1_N370 ,18DAF1D2,208,215,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.BUSLOAD_VALUE_CAN2_N370 ,18DAF1D2,216,223,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.BUSLOAD_VALUE_CAN3_N370 ,18DAF1D2,224,231,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.BUSLOAD_VALUE_CAN4_N370 ,18DAF1D2,232,239,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.BUSLOAD_VALUE_CAN5_N370 ,18DAF1D2,240,247,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.BUSLOAD_VALUE_CAN6_N370 ,18DAF1D2,248,255,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.BUSLOAD_VALUE_CAN7_N370 ,18DAF1D2,256,263,1,0,0,,220571,620571,ff,SECURITY_LOG_N370.BUSLOAD_VALUE_CAN8_N370 ,18DAF1D2,24,47,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.ABOLUTE_TIME_N371 ,18DAF1D2,48,71,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.MILEAGE_N371 ,18DAF1D2,76,78,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.VIOLATION_TYPE_N371,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.SIZE_IDENTIFIER_N371,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220572,620572,4ff,SECURITY_LOG_N371.IDENTIFIER_VIOLATED_FRAME_N371 ,18DAF1D2,112,119,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.VIOLATED_BUS_N371,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.PAYLOAD_DLC_N371,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220572,620572,4ff,SECURITY_LOG_N371.PAYLOAD_VIOLATED_FRAME_N371 ,18DAF1D2,199,199,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.BUSLOAD_STATUS_N371,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.BUSLOAD_VALUE_CAN1_N371 ,18DAF1D2,208,215,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.BUSLOAD_VALUE_CAN2_N371 ,18DAF1D2,216,223,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.BUSLOAD_VALUE_CAN3_N371 ,18DAF1D2,224,231,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.BUSLOAD_VALUE_CAN4_N371 ,18DAF1D2,232,239,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.BUSLOAD_VALUE_CAN5_N371 ,18DAF1D2,240,247,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.BUSLOAD_VALUE_CAN6_N371 ,18DAF1D2,248,255,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.BUSLOAD_VALUE_CAN7_N371 ,18DAF1D2,256,263,1,0,0,,220572,620572,ff,SECURITY_LOG_N371.BUSLOAD_VALUE_CAN8_N371 ,18DAF1D2,24,47,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.ABOLUTE_TIME_N372 ,18DAF1D2,48,71,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.MILEAGE_N372 ,18DAF1D2,76,78,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.VIOLATION_TYPE_N372,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.SIZE_IDENTIFIER_N372,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220573,620573,4ff,SECURITY_LOG_N372.IDENTIFIER_VIOLATED_FRAME_N372 ,18DAF1D2,112,119,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.VIOLATED_BUS_N372,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.PAYLOAD_DLC_N372,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220573,620573,4ff,SECURITY_LOG_N372.PAYLOAD_VIOLATED_FRAME_N372 ,18DAF1D2,199,199,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.BUSLOAD_STATUS_N372,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.BUSLOAD_VALUE_CAN1_N372 ,18DAF1D2,208,215,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.BUSLOAD_VALUE_CAN2_N372 ,18DAF1D2,216,223,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.BUSLOAD_VALUE_CAN3_N372 ,18DAF1D2,224,231,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.BUSLOAD_VALUE_CAN4_N372 ,18DAF1D2,232,239,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.BUSLOAD_VALUE_CAN5_N372 ,18DAF1D2,240,247,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.BUSLOAD_VALUE_CAN6_N372 ,18DAF1D2,248,255,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.BUSLOAD_VALUE_CAN7_N372 ,18DAF1D2,256,263,1,0,0,,220573,620573,ff,SECURITY_LOG_N372.BUSLOAD_VALUE_CAN8_N372 ,18DAF1D2,24,47,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.ABOLUTE_TIME_N373 ,18DAF1D2,48,71,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.MILEAGE_N373 ,18DAF1D2,76,78,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.VIOLATION_TYPE_N373,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.SIZE_IDENTIFIER_N373,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220574,620574,4ff,SECURITY_LOG_N373.IDENTIFIER_VIOLATED_FRAME_N373 ,18DAF1D2,112,119,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.VIOLATED_BUS_N373,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.PAYLOAD_DLC_N373,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220574,620574,4ff,SECURITY_LOG_N373.PAYLOAD_VIOLATED_FRAME_N373 ,18DAF1D2,199,199,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.BUSLOAD_STATUS_N373,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.BUSLOAD_VALUE_CAN1_N373 ,18DAF1D2,208,215,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.BUSLOAD_VALUE_CAN2_N373 ,18DAF1D2,216,223,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.BUSLOAD_VALUE_CAN3_N373 ,18DAF1D2,224,231,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.BUSLOAD_VALUE_CAN4_N373 ,18DAF1D2,232,239,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.BUSLOAD_VALUE_CAN5_N373 ,18DAF1D2,240,247,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.BUSLOAD_VALUE_CAN6_N373 ,18DAF1D2,248,255,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.BUSLOAD_VALUE_CAN7_N373 ,18DAF1D2,256,263,1,0,0,,220574,620574,ff,SECURITY_LOG_N373.BUSLOAD_VALUE_CAN8_N373 ,18DAF1D2,24,47,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.ABOLUTE_TIME_N374 ,18DAF1D2,48,71,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.MILEAGE_N374 ,18DAF1D2,76,78,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.VIOLATION_TYPE_N374,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.SIZE_IDENTIFIER_N374,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220575,620575,4ff,SECURITY_LOG_N374.IDENTIFIER_VIOLATED_FRAME_N374 ,18DAF1D2,112,119,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.VIOLATED_BUS_N374,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.PAYLOAD_DLC_N374,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220575,620575,4ff,SECURITY_LOG_N374.PAYLOAD_VIOLATED_FRAME_N374 ,18DAF1D2,199,199,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.BUSLOAD_STATUS_N374,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.BUSLOAD_VALUE_CAN1_N374 ,18DAF1D2,208,215,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.BUSLOAD_VALUE_CAN2_N374 ,18DAF1D2,216,223,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.BUSLOAD_VALUE_CAN3_N374 ,18DAF1D2,224,231,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.BUSLOAD_VALUE_CAN4_N374 ,18DAF1D2,232,239,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.BUSLOAD_VALUE_CAN5_N374 ,18DAF1D2,240,247,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.BUSLOAD_VALUE_CAN6_N374 ,18DAF1D2,248,255,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.BUSLOAD_VALUE_CAN7_N374 ,18DAF1D2,256,263,1,0,0,,220575,620575,ff,SECURITY_LOG_N374.BUSLOAD_VALUE_CAN8_N374 ,18DAF1D2,24,47,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.ABOLUTE_TIME_N375 ,18DAF1D2,48,71,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.MILEAGE_N375 ,18DAF1D2,76,78,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.VIOLATION_TYPE_N375,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.SIZE_IDENTIFIER_N375,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220576,620576,4ff,SECURITY_LOG_N375.IDENTIFIER_VIOLATED_FRAME_N375 ,18DAF1D2,112,119,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.VIOLATED_BUS_N375,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.PAYLOAD_DLC_N375,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220576,620576,4ff,SECURITY_LOG_N375.PAYLOAD_VIOLATED_FRAME_N375 ,18DAF1D2,199,199,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.BUSLOAD_STATUS_N375,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.BUSLOAD_VALUE_CAN1_N375 ,18DAF1D2,208,215,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.BUSLOAD_VALUE_CAN2_N375 ,18DAF1D2,216,223,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.BUSLOAD_VALUE_CAN3_N375 ,18DAF1D2,224,231,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.BUSLOAD_VALUE_CAN4_N375 ,18DAF1D2,232,239,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.BUSLOAD_VALUE_CAN5_N375 ,18DAF1D2,240,247,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.BUSLOAD_VALUE_CAN6_N375 ,18DAF1D2,248,255,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.BUSLOAD_VALUE_CAN7_N375 ,18DAF1D2,256,263,1,0,0,,220576,620576,ff,SECURITY_LOG_N375.BUSLOAD_VALUE_CAN8_N375 ,18DAF1D2,24,47,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.ABOLUTE_TIME_N376 ,18DAF1D2,48,71,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.MILEAGE_N376 ,18DAF1D2,76,78,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.VIOLATION_TYPE_N376,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.SIZE_IDENTIFIER_N376,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220577,620577,4ff,SECURITY_LOG_N376.IDENTIFIER_VIOLATED_FRAME_N376 ,18DAF1D2,112,119,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.VIOLATED_BUS_N376,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.PAYLOAD_DLC_N376,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220577,620577,4ff,SECURITY_LOG_N376.PAYLOAD_VIOLATED_FRAME_N376 ,18DAF1D2,199,199,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.BUSLOAD_STATUS_N376,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.BUSLOAD_VALUE_CAN1_N376 ,18DAF1D2,208,215,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.BUSLOAD_VALUE_CAN2_N376 ,18DAF1D2,216,223,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.BUSLOAD_VALUE_CAN3_N376 ,18DAF1D2,224,231,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.BUSLOAD_VALUE_CAN4_N376 ,18DAF1D2,232,239,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.BUSLOAD_VALUE_CAN5_N376 ,18DAF1D2,240,247,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.BUSLOAD_VALUE_CAN6_N376 ,18DAF1D2,248,255,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.BUSLOAD_VALUE_CAN7_N376 ,18DAF1D2,256,263,1,0,0,,220577,620577,ff,SECURITY_LOG_N376.BUSLOAD_VALUE_CAN8_N376 ,18DAF1D2,24,47,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.ABOLUTE_TIME_N377 ,18DAF1D2,48,71,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.MILEAGE_N377 ,18DAF1D2,76,78,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.VIOLATION_TYPE_N377,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.SIZE_IDENTIFIER_N377,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220578,620578,4ff,SECURITY_LOG_N377.IDENTIFIER_VIOLATED_FRAME_N377 ,18DAF1D2,112,119,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.VIOLATED_BUS_N377,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.PAYLOAD_DLC_N377,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220578,620578,4ff,SECURITY_LOG_N377.PAYLOAD_VIOLATED_FRAME_N377 ,18DAF1D2,199,199,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.BUSLOAD_STATUS_N377,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.BUSLOAD_VALUE_CAN1_N377 ,18DAF1D2,208,215,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.BUSLOAD_VALUE_CAN2_N377 ,18DAF1D2,216,223,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.BUSLOAD_VALUE_CAN3_N377 ,18DAF1D2,224,231,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.BUSLOAD_VALUE_CAN4_N377 ,18DAF1D2,232,239,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.BUSLOAD_VALUE_CAN5_N377 ,18DAF1D2,240,247,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.BUSLOAD_VALUE_CAN6_N377 ,18DAF1D2,248,255,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.BUSLOAD_VALUE_CAN7_N377 ,18DAF1D2,256,263,1,0,0,,220578,620578,ff,SECURITY_LOG_N377.BUSLOAD_VALUE_CAN8_N377 ,18DAF1D2,24,47,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.ABOLUTE_TIME_N378 ,18DAF1D2,48,71,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.MILEAGE_N378 ,18DAF1D2,76,78,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.VIOLATION_TYPE_N378,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.SIZE_IDENTIFIER_N378,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220579,620579,4ff,SECURITY_LOG_N378.IDENTIFIER_VIOLATED_FRAME_N378 ,18DAF1D2,112,119,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.VIOLATED_BUS_N378,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.PAYLOAD_DLC_N378,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220579,620579,4ff,SECURITY_LOG_N378.PAYLOAD_VIOLATED_FRAME_N378 ,18DAF1D2,199,199,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.BUSLOAD_STATUS_N378,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.BUSLOAD_VALUE_CAN1_N378 ,18DAF1D2,208,215,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.BUSLOAD_VALUE_CAN2_N378 ,18DAF1D2,216,223,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.BUSLOAD_VALUE_CAN3_N378 ,18DAF1D2,224,231,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.BUSLOAD_VALUE_CAN4_N378 ,18DAF1D2,232,239,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.BUSLOAD_VALUE_CAN5_N378 ,18DAF1D2,240,247,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.BUSLOAD_VALUE_CAN6_N378 ,18DAF1D2,248,255,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.BUSLOAD_VALUE_CAN7_N378 ,18DAF1D2,256,263,1,0,0,,220579,620579,ff,SECURITY_LOG_N378.BUSLOAD_VALUE_CAN8_N378 ,18DAF1D2,24,47,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.ABOLUTE_TIME_N379 ,18DAF1D2,48,71,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.MILEAGE_N379 ,18DAF1D2,76,78,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.VIOLATION_TYPE_N379,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.SIZE_IDENTIFIER_N379,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22057A,62057A,4ff,SECURITY_LOG_N379.IDENTIFIER_VIOLATED_FRAME_N379 ,18DAF1D2,112,119,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.VIOLATED_BUS_N379,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.PAYLOAD_DLC_N379,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22057A,62057A,4ff,SECURITY_LOG_N379.PAYLOAD_VIOLATED_FRAME_N379 ,18DAF1D2,199,199,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.BUSLOAD_STATUS_N379,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.BUSLOAD_VALUE_CAN1_N379 ,18DAF1D2,208,215,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.BUSLOAD_VALUE_CAN2_N379 ,18DAF1D2,216,223,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.BUSLOAD_VALUE_CAN3_N379 ,18DAF1D2,224,231,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.BUSLOAD_VALUE_CAN4_N379 ,18DAF1D2,232,239,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.BUSLOAD_VALUE_CAN5_N379 ,18DAF1D2,240,247,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.BUSLOAD_VALUE_CAN6_N379 ,18DAF1D2,248,255,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.BUSLOAD_VALUE_CAN7_N379 ,18DAF1D2,256,263,1,0,0,,22057A,62057A,ff,SECURITY_LOG_N379.BUSLOAD_VALUE_CAN8_N379 ,18DAF1D2,24,47,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.ABOLUTE_TIME_N380 ,18DAF1D2,48,71,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.MILEAGE_N380 ,18DAF1D2,76,78,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.VIOLATION_TYPE_N380,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.SIZE_IDENTIFIER_N380,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22057B,62057B,4ff,SECURITY_LOG_N380.IDENTIFIER_VIOLATED_FRAME_N380 ,18DAF1D2,112,119,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.VIOLATED_BUS_N380,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.PAYLOAD_DLC_N380,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22057B,62057B,4ff,SECURITY_LOG_N380.PAYLOAD_VIOLATED_FRAME_N380 ,18DAF1D2,199,199,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.BUSLOAD_STATUS_N380,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.BUSLOAD_VALUE_CAN1_N380 ,18DAF1D2,208,215,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.BUSLOAD_VALUE_CAN2_N380 ,18DAF1D2,216,223,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.BUSLOAD_VALUE_CAN3_N380 ,18DAF1D2,224,231,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.BUSLOAD_VALUE_CAN4_N380 ,18DAF1D2,232,239,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.BUSLOAD_VALUE_CAN5_N380 ,18DAF1D2,240,247,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.BUSLOAD_VALUE_CAN6_N380 ,18DAF1D2,248,255,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.BUSLOAD_VALUE_CAN7_N380 ,18DAF1D2,256,263,1,0,0,,22057B,62057B,ff,SECURITY_LOG_N380.BUSLOAD_VALUE_CAN8_N380 ,18DAF1D2,24,47,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.ABOLUTE_TIME_N381 ,18DAF1D2,48,71,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.MILEAGE_N381 ,18DAF1D2,76,78,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.VIOLATION_TYPE_N381,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.SIZE_IDENTIFIER_N381,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22057C,62057C,4ff,SECURITY_LOG_N381.IDENTIFIER_VIOLATED_FRAME_N381 ,18DAF1D2,112,119,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.VIOLATED_BUS_N381,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.PAYLOAD_DLC_N381,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22057C,62057C,4ff,SECURITY_LOG_N381.PAYLOAD_VIOLATED_FRAME_N381 ,18DAF1D2,199,199,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.BUSLOAD_STATUS_N381,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.BUSLOAD_VALUE_CAN1_N381 ,18DAF1D2,208,215,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.BUSLOAD_VALUE_CAN2_N381 ,18DAF1D2,216,223,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.BUSLOAD_VALUE_CAN3_N381 ,18DAF1D2,224,231,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.BUSLOAD_VALUE_CAN4_N381 ,18DAF1D2,232,239,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.BUSLOAD_VALUE_CAN5_N381 ,18DAF1D2,240,247,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.BUSLOAD_VALUE_CAN6_N381 ,18DAF1D2,248,255,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.BUSLOAD_VALUE_CAN7_N381 ,18DAF1D2,256,263,1,0,0,,22057C,62057C,ff,SECURITY_LOG_N381.BUSLOAD_VALUE_CAN8_N381 ,18DAF1D2,24,47,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.ABOLUTE_TIME_N382 ,18DAF1D2,48,71,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.MILEAGE_N382 ,18DAF1D2,76,78,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.VIOLATION_TYPE_N382,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.SIZE_IDENTIFIER_N382,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22057D,62057D,4ff,SECURITY_LOG_N382.IDENTIFIER_VIOLATED_FRAME_N382 ,18DAF1D2,112,119,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.VIOLATED_BUS_N382,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.PAYLOAD_DLC_N382,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22057D,62057D,4ff,SECURITY_LOG_N382.PAYLOAD_VIOLATED_FRAME_N382 ,18DAF1D2,199,199,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.BUSLOAD_STATUS_N382,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.BUSLOAD_VALUE_CAN1_N382 ,18DAF1D2,208,215,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.BUSLOAD_VALUE_CAN2_N382 ,18DAF1D2,216,223,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.BUSLOAD_VALUE_CAN3_N382 ,18DAF1D2,224,231,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.BUSLOAD_VALUE_CAN4_N382 ,18DAF1D2,232,239,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.BUSLOAD_VALUE_CAN5_N382 ,18DAF1D2,240,247,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.BUSLOAD_VALUE_CAN6_N382 ,18DAF1D2,248,255,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.BUSLOAD_VALUE_CAN7_N382 ,18DAF1D2,256,263,1,0,0,,22057D,62057D,ff,SECURITY_LOG_N382.BUSLOAD_VALUE_CAN8_N382 ,18DAF1D2,24,47,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.ABOLUTE_TIME_N383 ,18DAF1D2,48,71,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.MILEAGE_N383 ,18DAF1D2,76,78,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.VIOLATION_TYPE_N383,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.SIZE_IDENTIFIER_N383,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22057E,62057E,4ff,SECURITY_LOG_N383.IDENTIFIER_VIOLATED_FRAME_N383 ,18DAF1D2,112,119,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.VIOLATED_BUS_N383,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.PAYLOAD_DLC_N383,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22057E,62057E,4ff,SECURITY_LOG_N383.PAYLOAD_VIOLATED_FRAME_N383 ,18DAF1D2,199,199,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.BUSLOAD_STATUS_N383,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.BUSLOAD_VALUE_CAN1_N383 ,18DAF1D2,208,215,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.BUSLOAD_VALUE_CAN2_N383 ,18DAF1D2,216,223,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.BUSLOAD_VALUE_CAN3_N383 ,18DAF1D2,224,231,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.BUSLOAD_VALUE_CAN4_N383 ,18DAF1D2,232,239,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.BUSLOAD_VALUE_CAN5_N383 ,18DAF1D2,240,247,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.BUSLOAD_VALUE_CAN6_N383 ,18DAF1D2,248,255,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.BUSLOAD_VALUE_CAN7_N383 ,18DAF1D2,256,263,1,0,0,,22057E,62057E,ff,SECURITY_LOG_N383.BUSLOAD_VALUE_CAN8_N383 ,18DAF1D2,24,47,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.ABOLUTE_TIME_N384 ,18DAF1D2,48,71,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.MILEAGE_N384 ,18DAF1D2,76,78,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.VIOLATION_TYPE_N384,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.SIZE_IDENTIFIER_N384,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22057F,62057F,4ff,SECURITY_LOG_N384.IDENTIFIER_VIOLATED_FRAME_N384 ,18DAF1D2,112,119,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.VIOLATED_BUS_N384,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.PAYLOAD_DLC_N384,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22057F,62057F,4ff,SECURITY_LOG_N384.PAYLOAD_VIOLATED_FRAME_N384 ,18DAF1D2,199,199,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.BUSLOAD_STATUS_N384,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.BUSLOAD_VALUE_CAN1_N384 ,18DAF1D2,208,215,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.BUSLOAD_VALUE_CAN2_N384 ,18DAF1D2,216,223,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.BUSLOAD_VALUE_CAN3_N384 ,18DAF1D2,224,231,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.BUSLOAD_VALUE_CAN4_N384 ,18DAF1D2,232,239,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.BUSLOAD_VALUE_CAN5_N384 ,18DAF1D2,240,247,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.BUSLOAD_VALUE_CAN6_N384 ,18DAF1D2,248,255,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.BUSLOAD_VALUE_CAN7_N384 ,18DAF1D2,256,263,1,0,0,,22057F,62057F,ff,SECURITY_LOG_N384.BUSLOAD_VALUE_CAN8_N384 ,18DAF1D2,24,47,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.ABOLUTE_TIME_N385 ,18DAF1D2,48,71,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.MILEAGE_N385 ,18DAF1D2,76,78,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.VIOLATION_TYPE_N385,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.SIZE_IDENTIFIER_N385,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220580,620580,4ff,SECURITY_LOG_N385.IDENTIFIER_VIOLATED_FRAME_N385 ,18DAF1D2,112,119,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.VIOLATED_BUS_N385,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.PAYLOAD_DLC_N385,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220580,620580,4ff,SECURITY_LOG_N385.PAYLOAD_VIOLATED_FRAME_N385 ,18DAF1D2,199,199,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.BUSLOAD_STATUS_N385,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.BUSLOAD_VALUE_CAN1_N385 ,18DAF1D2,208,215,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.BUSLOAD_VALUE_CAN2_N385 ,18DAF1D2,216,223,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.BUSLOAD_VALUE_CAN3_N385 ,18DAF1D2,224,231,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.BUSLOAD_VALUE_CAN4_N385 ,18DAF1D2,232,239,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.BUSLOAD_VALUE_CAN5_N385 ,18DAF1D2,240,247,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.BUSLOAD_VALUE_CAN6_N385 ,18DAF1D2,248,255,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.BUSLOAD_VALUE_CAN7_N385 ,18DAF1D2,256,263,1,0,0,,220580,620580,ff,SECURITY_LOG_N385.BUSLOAD_VALUE_CAN8_N385 ,18DAF1D2,24,47,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.ABOLUTE_TIME_N386 ,18DAF1D2,48,71,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.MILEAGE_N386 ,18DAF1D2,76,78,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.VIOLATION_TYPE_N386,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.SIZE_IDENTIFIER_N386,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220581,620581,4ff,SECURITY_LOG_N386.IDENTIFIER_VIOLATED_FRAME_N386 ,18DAF1D2,112,119,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.VIOLATED_BUS_N386,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.PAYLOAD_DLC_N386,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220581,620581,4ff,SECURITY_LOG_N386.PAYLOAD_VIOLATED_FRAME_N386 ,18DAF1D2,199,199,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.BUSLOAD_STATUS_N386,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.BUSLOAD_VALUE_CAN1_N386 ,18DAF1D2,208,215,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.BUSLOAD_VALUE_CAN2_N386 ,18DAF1D2,216,223,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.BUSLOAD_VALUE_CAN3_N386 ,18DAF1D2,224,231,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.BUSLOAD_VALUE_CAN4_N386 ,18DAF1D2,232,239,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.BUSLOAD_VALUE_CAN5_N386 ,18DAF1D2,240,247,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.BUSLOAD_VALUE_CAN6_N386 ,18DAF1D2,248,255,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.BUSLOAD_VALUE_CAN7_N386 ,18DAF1D2,256,263,1,0,0,,220581,620581,ff,SECURITY_LOG_N386.BUSLOAD_VALUE_CAN8_N386 ,18DAF1D2,24,47,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.ABOLUTE_TIME_N387 ,18DAF1D2,48,71,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.MILEAGE_N387 ,18DAF1D2,76,78,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.VIOLATION_TYPE_N387,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.SIZE_IDENTIFIER_N387,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220582,620582,4ff,SECURITY_LOG_N387.IDENTIFIER_VIOLATED_FRAME_N387 ,18DAF1D2,112,119,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.VIOLATED_BUS_N387,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.PAYLOAD_DLC_N387,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220582,620582,4ff,SECURITY_LOG_N387.PAYLOAD_VIOLATED_FRAME_N387 ,18DAF1D2,199,199,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.BUSLOAD_STATUS_N387,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.BUSLOAD_VALUE_CAN1_N387 ,18DAF1D2,208,215,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.BUSLOAD_VALUE_CAN2_N387 ,18DAF1D2,216,223,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.BUSLOAD_VALUE_CAN3_N387 ,18DAF1D2,224,231,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.BUSLOAD_VALUE_CAN4_N387 ,18DAF1D2,232,239,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.BUSLOAD_VALUE_CAN5_N387 ,18DAF1D2,240,247,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.BUSLOAD_VALUE_CAN6_N387 ,18DAF1D2,248,255,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.BUSLOAD_VALUE_CAN7_N387 ,18DAF1D2,256,263,1,0,0,,220582,620582,ff,SECURITY_LOG_N387.BUSLOAD_VALUE_CAN8_N387 ,18DAF1D2,24,47,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.ABOLUTE_TIME_N388 ,18DAF1D2,48,71,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.MILEAGE_N388 ,18DAF1D2,76,78,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.VIOLATION_TYPE_N388,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.SIZE_IDENTIFIER_N388,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220583,620583,4ff,SECURITY_LOG_N388.IDENTIFIER_VIOLATED_FRAME_N388 ,18DAF1D2,112,119,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.VIOLATED_BUS_N388,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.PAYLOAD_DLC_N388,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220583,620583,4ff,SECURITY_LOG_N388.PAYLOAD_VIOLATED_FRAME_N388 ,18DAF1D2,199,199,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.BUSLOAD_STATUS_N388,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.BUSLOAD_VALUE_CAN1_N388 ,18DAF1D2,208,215,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.BUSLOAD_VALUE_CAN2_N388 ,18DAF1D2,216,223,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.BUSLOAD_VALUE_CAN3_N388 ,18DAF1D2,224,231,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.BUSLOAD_VALUE_CAN4_N388 ,18DAF1D2,232,239,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.BUSLOAD_VALUE_CAN5_N388 ,18DAF1D2,240,247,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.BUSLOAD_VALUE_CAN6_N388 ,18DAF1D2,248,255,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.BUSLOAD_VALUE_CAN7_N388 ,18DAF1D2,256,263,1,0,0,,220583,620583,ff,SECURITY_LOG_N388.BUSLOAD_VALUE_CAN8_N388 ,18DAF1D2,24,47,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.ABOLUTE_TIME_N389 ,18DAF1D2,48,71,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.MILEAGE_N389 ,18DAF1D2,76,78,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.VIOLATION_TYPE_N389,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.SIZE_IDENTIFIER_N389,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220584,620584,4ff,SECURITY_LOG_N389.IDENTIFIER_VIOLATED_FRAME_N389 ,18DAF1D2,112,119,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.VIOLATED_BUS_N389,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.PAYLOAD_DLC_N389,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220584,620584,4ff,SECURITY_LOG_N389.PAYLOAD_VIOLATED_FRAME_N389 ,18DAF1D2,199,199,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.BUSLOAD_STATUS_N389,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.BUSLOAD_VALUE_CAN1_N389 ,18DAF1D2,208,215,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.BUSLOAD_VALUE_CAN2_N389 ,18DAF1D2,216,223,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.BUSLOAD_VALUE_CAN3_N389 ,18DAF1D2,224,231,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.BUSLOAD_VALUE_CAN4_N389 ,18DAF1D2,232,239,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.BUSLOAD_VALUE_CAN5_N389 ,18DAF1D2,240,247,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.BUSLOAD_VALUE_CAN6_N389 ,18DAF1D2,248,255,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.BUSLOAD_VALUE_CAN7_N389 ,18DAF1D2,256,263,1,0,0,,220584,620584,ff,SECURITY_LOG_N389.BUSLOAD_VALUE_CAN8_N389 ,18DAF1D2,24,47,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.ABOLUTE_TIME_N390 ,18DAF1D2,48,71,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.MILEAGE_N390 ,18DAF1D2,76,78,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.VIOLATION_TYPE_N390,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.SIZE_IDENTIFIER_N390,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220585,620585,4ff,SECURITY_LOG_N390.IDENTIFIER_VIOLATED_FRAME_N390 ,18DAF1D2,112,119,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.VIOLATED_BUS_N390,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.PAYLOAD_DLC_N390,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220585,620585,4ff,SECURITY_LOG_N390.PAYLOAD_VIOLATED_FRAME_N390 ,18DAF1D2,199,199,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.BUSLOAD_STATUS_N390,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.BUSLOAD_VALUE_CAN1_N390 ,18DAF1D2,208,215,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.BUSLOAD_VALUE_CAN2_N390 ,18DAF1D2,216,223,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.BUSLOAD_VALUE_CAN3_N390 ,18DAF1D2,224,231,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.BUSLOAD_VALUE_CAN4_N390 ,18DAF1D2,232,239,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.BUSLOAD_VALUE_CAN5_N390 ,18DAF1D2,240,247,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.BUSLOAD_VALUE_CAN6_N390 ,18DAF1D2,248,255,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.BUSLOAD_VALUE_CAN7_N390 ,18DAF1D2,256,263,1,0,0,,220585,620585,ff,SECURITY_LOG_N390.BUSLOAD_VALUE_CAN8_N390 ,18DAF1D2,24,47,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.ABOLUTE_TIME_N391 ,18DAF1D2,48,71,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.MILEAGE_N391 ,18DAF1D2,76,78,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.VIOLATION_TYPE_N391,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.SIZE_IDENTIFIER_N391,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220586,620586,4ff,SECURITY_LOG_N391.IDENTIFIER_VIOLATED_FRAME_N391 ,18DAF1D2,112,119,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.VIOLATED_BUS_N391,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.PAYLOAD_DLC_N391,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220586,620586,4ff,SECURITY_LOG_N391.PAYLOAD_VIOLATED_FRAME_N391 ,18DAF1D2,199,199,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.BUSLOAD_STATUS_N391,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.BUSLOAD_VALUE_CAN1_N391 ,18DAF1D2,208,215,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.BUSLOAD_VALUE_CAN2_N391 ,18DAF1D2,216,223,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.BUSLOAD_VALUE_CAN3_N391 ,18DAF1D2,224,231,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.BUSLOAD_VALUE_CAN4_N391 ,18DAF1D2,232,239,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.BUSLOAD_VALUE_CAN5_N391 ,18DAF1D2,240,247,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.BUSLOAD_VALUE_CAN6_N391 ,18DAF1D2,248,255,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.BUSLOAD_VALUE_CAN7_N391 ,18DAF1D2,256,263,1,0,0,,220586,620586,ff,SECURITY_LOG_N391.BUSLOAD_VALUE_CAN8_N391 ,18DAF1D2,24,47,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.ABOLUTE_TIME_N392 ,18DAF1D2,48,71,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.MILEAGE_N392 ,18DAF1D2,76,78,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.VIOLATION_TYPE_N392,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.SIZE_IDENTIFIER_N392,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220587,620587,4ff,SECURITY_LOG_N392.IDENTIFIER_VIOLATED_FRAME_N392 ,18DAF1D2,112,119,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.VIOLATED_BUS_N392,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.PAYLOAD_DLC_N392,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220587,620587,4ff,SECURITY_LOG_N392.PAYLOAD_VIOLATED_FRAME_N392 ,18DAF1D2,199,199,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.BUSLOAD_STATUS_N392,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.BUSLOAD_VALUE_CAN1_N392 ,18DAF1D2,208,215,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.BUSLOAD_VALUE_CAN2_N392 ,18DAF1D2,216,223,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.BUSLOAD_VALUE_CAN3_N392 ,18DAF1D2,224,231,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.BUSLOAD_VALUE_CAN4_N392 ,18DAF1D2,232,239,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.BUSLOAD_VALUE_CAN5_N392 ,18DAF1D2,240,247,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.BUSLOAD_VALUE_CAN6_N392 ,18DAF1D2,248,255,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.BUSLOAD_VALUE_CAN7_N392 ,18DAF1D2,256,263,1,0,0,,220587,620587,ff,SECURITY_LOG_N392.BUSLOAD_VALUE_CAN8_N392 ,18DAF1D2,24,47,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.ABOLUTE_TIME_N393 ,18DAF1D2,48,71,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.MILEAGE_N393 ,18DAF1D2,76,78,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.VIOLATION_TYPE_N393,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.SIZE_IDENTIFIER_N393,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220588,620588,4ff,SECURITY_LOG_N393.IDENTIFIER_VIOLATED_FRAME_N393 ,18DAF1D2,112,119,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.VIOLATED_BUS_N393,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.PAYLOAD_DLC_N393,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220588,620588,4ff,SECURITY_LOG_N393.PAYLOAD_VIOLATED_FRAME_N393 ,18DAF1D2,199,199,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.BUSLOAD_STATUS_N393,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.BUSLOAD_VALUE_CAN1_N393 ,18DAF1D2,208,215,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.BUSLOAD_VALUE_CAN2_N393 ,18DAF1D2,216,223,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.BUSLOAD_VALUE_CAN3_N393 ,18DAF1D2,224,231,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.BUSLOAD_VALUE_CAN4_N393 ,18DAF1D2,232,239,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.BUSLOAD_VALUE_CAN5_N393 ,18DAF1D2,240,247,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.BUSLOAD_VALUE_CAN6_N393 ,18DAF1D2,248,255,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.BUSLOAD_VALUE_CAN7_N393 ,18DAF1D2,256,263,1,0,0,,220588,620588,ff,SECURITY_LOG_N393.BUSLOAD_VALUE_CAN8_N393 ,18DAF1D2,24,47,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.ABOLUTE_TIME_N394 ,18DAF1D2,48,71,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.MILEAGE_N394 ,18DAF1D2,76,78,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.VIOLATION_TYPE_N394,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.SIZE_IDENTIFIER_N394,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220589,620589,4ff,SECURITY_LOG_N394.IDENTIFIER_VIOLATED_FRAME_N394 ,18DAF1D2,112,119,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.VIOLATED_BUS_N394,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.PAYLOAD_DLC_N394,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220589,620589,4ff,SECURITY_LOG_N394.PAYLOAD_VIOLATED_FRAME_N394 ,18DAF1D2,199,199,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.BUSLOAD_STATUS_N394,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.BUSLOAD_VALUE_CAN1_N394 ,18DAF1D2,208,215,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.BUSLOAD_VALUE_CAN2_N394 ,18DAF1D2,216,223,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.BUSLOAD_VALUE_CAN3_N394 ,18DAF1D2,224,231,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.BUSLOAD_VALUE_CAN4_N394 ,18DAF1D2,232,239,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.BUSLOAD_VALUE_CAN5_N394 ,18DAF1D2,240,247,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.BUSLOAD_VALUE_CAN6_N394 ,18DAF1D2,248,255,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.BUSLOAD_VALUE_CAN7_N394 ,18DAF1D2,256,263,1,0,0,,220589,620589,ff,SECURITY_LOG_N394.BUSLOAD_VALUE_CAN8_N394 ,18DAF1D2,24,47,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.ABOLUTE_TIME_N395 ,18DAF1D2,48,71,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.MILEAGE_N395 ,18DAF1D2,76,78,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.VIOLATION_TYPE_N395,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.SIZE_IDENTIFIER_N395,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22058A,62058A,4ff,SECURITY_LOG_N395.IDENTIFIER_VIOLATED_FRAME_N395 ,18DAF1D2,112,119,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.VIOLATED_BUS_N395,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.PAYLOAD_DLC_N395,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22058A,62058A,4ff,SECURITY_LOG_N395.PAYLOAD_VIOLATED_FRAME_N395 ,18DAF1D2,199,199,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.BUSLOAD_STATUS_N395,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.BUSLOAD_VALUE_CAN1_N395 ,18DAF1D2,208,215,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.BUSLOAD_VALUE_CAN2_N395 ,18DAF1D2,216,223,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.BUSLOAD_VALUE_CAN3_N395 ,18DAF1D2,224,231,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.BUSLOAD_VALUE_CAN4_N395 ,18DAF1D2,232,239,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.BUSLOAD_VALUE_CAN5_N395 ,18DAF1D2,240,247,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.BUSLOAD_VALUE_CAN6_N395 ,18DAF1D2,248,255,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.BUSLOAD_VALUE_CAN7_N395 ,18DAF1D2,256,263,1,0,0,,22058A,62058A,ff,SECURITY_LOG_N395.BUSLOAD_VALUE_CAN8_N395 ,18DAF1D2,24,47,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.ABOLUTE_TIME_N396 ,18DAF1D2,48,71,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.MILEAGE_N396 ,18DAF1D2,76,78,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.VIOLATION_TYPE_N396,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.SIZE_IDENTIFIER_N396,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22058B,62058B,4ff,SECURITY_LOG_N396.IDENTIFIER_VIOLATED_FRAME_N396 ,18DAF1D2,112,119,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.VIOLATED_BUS_N396,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.PAYLOAD_DLC_N396,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22058B,62058B,4ff,SECURITY_LOG_N396.PAYLOAD_VIOLATED_FRAME_N396 ,18DAF1D2,199,199,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.BUSLOAD_STATUS_N396,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.BUSLOAD_VALUE_CAN1_N396 ,18DAF1D2,208,215,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.BUSLOAD_VALUE_CAN2_N396 ,18DAF1D2,216,223,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.BUSLOAD_VALUE_CAN3_N396 ,18DAF1D2,224,231,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.BUSLOAD_VALUE_CAN4_N396 ,18DAF1D2,232,239,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.BUSLOAD_VALUE_CAN5_N396 ,18DAF1D2,240,247,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.BUSLOAD_VALUE_CAN6_N396 ,18DAF1D2,248,255,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.BUSLOAD_VALUE_CAN7_N396 ,18DAF1D2,256,263,1,0,0,,22058B,62058B,ff,SECURITY_LOG_N396.BUSLOAD_VALUE_CAN8_N396 ,18DAF1D2,24,47,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.ABOLUTE_TIME_N397 ,18DAF1D2,48,71,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.MILEAGE_N397 ,18DAF1D2,76,78,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.VIOLATION_TYPE_N397,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.SIZE_IDENTIFIER_N397,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22058C,62058C,4ff,SECURITY_LOG_N397.IDENTIFIER_VIOLATED_FRAME_N397 ,18DAF1D2,112,119,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.VIOLATED_BUS_N397,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.PAYLOAD_DLC_N397,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22058C,62058C,4ff,SECURITY_LOG_N397.PAYLOAD_VIOLATED_FRAME_N397 ,18DAF1D2,199,199,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.BUSLOAD_STATUS_N397,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.BUSLOAD_VALUE_CAN1_N397 ,18DAF1D2,208,215,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.BUSLOAD_VALUE_CAN2_N397 ,18DAF1D2,216,223,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.BUSLOAD_VALUE_CAN3_N397 ,18DAF1D2,224,231,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.BUSLOAD_VALUE_CAN4_N397 ,18DAF1D2,232,239,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.BUSLOAD_VALUE_CAN5_N397 ,18DAF1D2,240,247,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.BUSLOAD_VALUE_CAN6_N397 ,18DAF1D2,248,255,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.BUSLOAD_VALUE_CAN7_N397 ,18DAF1D2,256,263,1,0,0,,22058C,62058C,ff,SECURITY_LOG_N397.BUSLOAD_VALUE_CAN8_N397 ,18DAF1D2,24,47,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.ABOLUTE_TIME_N398 ,18DAF1D2,48,71,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.MILEAGE_N398 ,18DAF1D2,76,78,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.VIOLATION_TYPE_N398,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.SIZE_IDENTIFIER_N398,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22058D,62058D,4ff,SECURITY_LOG_N398.IDENTIFIER_VIOLATED_FRAME_N398 ,18DAF1D2,112,119,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.VIOLATED_BUS_N398,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.PAYLOAD_DLC_N398,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22058D,62058D,4ff,SECURITY_LOG_N398.PAYLOAD_VIOLATED_FRAME_N398 ,18DAF1D2,199,199,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.BUSLOAD_STATUS_N398,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.BUSLOAD_VALUE_CAN1_N398 ,18DAF1D2,208,215,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.BUSLOAD_VALUE_CAN2_N398 ,18DAF1D2,216,223,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.BUSLOAD_VALUE_CAN3_N398 ,18DAF1D2,224,231,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.BUSLOAD_VALUE_CAN4_N398 ,18DAF1D2,232,239,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.BUSLOAD_VALUE_CAN5_N398 ,18DAF1D2,240,247,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.BUSLOAD_VALUE_CAN6_N398 ,18DAF1D2,248,255,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.BUSLOAD_VALUE_CAN7_N398 ,18DAF1D2,256,263,1,0,0,,22058D,62058D,ff,SECURITY_LOG_N398.BUSLOAD_VALUE_CAN8_N398 ,18DAF1D2,24,47,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.ABOLUTE_TIME_N399 ,18DAF1D2,48,71,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.MILEAGE_N399 ,18DAF1D2,76,78,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.VIOLATION_TYPE_N399,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.SIZE_IDENTIFIER_N399,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22058E,62058E,4ff,SECURITY_LOG_N399.IDENTIFIER_VIOLATED_FRAME_N399 ,18DAF1D2,112,119,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.VIOLATED_BUS_N399,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.PAYLOAD_DLC_N399,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22058E,62058E,4ff,SECURITY_LOG_N399.PAYLOAD_VIOLATED_FRAME_N399 ,18DAF1D2,199,199,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.BUSLOAD_STATUS_N399,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.BUSLOAD_VALUE_CAN1_N399 ,18DAF1D2,208,215,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.BUSLOAD_VALUE_CAN2_N399 ,18DAF1D2,216,223,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.BUSLOAD_VALUE_CAN3_N399 ,18DAF1D2,224,231,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.BUSLOAD_VALUE_CAN4_N399 ,18DAF1D2,232,239,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.BUSLOAD_VALUE_CAN5_N399 ,18DAF1D2,240,247,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.BUSLOAD_VALUE_CAN6_N399 ,18DAF1D2,248,255,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.BUSLOAD_VALUE_CAN7_N399 ,18DAF1D2,256,263,1,0,0,,22058E,62058E,ff,SECURITY_LOG_N399.BUSLOAD_VALUE_CAN8_N399 ,18DAF1D2,24,47,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.ABOLUTE_TIME_N400 ,18DAF1D2,48,71,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.MILEAGE_N400 ,18DAF1D2,76,78,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.VIOLATION_TYPE_N400,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.SIZE_IDENTIFIER_N400,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22058F,62058F,4ff,SECURITY_LOG_N400.IDENTIFIER_VIOLATED_FRAME_N400 ,18DAF1D2,112,119,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.VIOLATED_BUS_N400,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.PAYLOAD_DLC_N400,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22058F,62058F,4ff,SECURITY_LOG_N400.PAYLOAD_VIOLATED_FRAME_N400 ,18DAF1D2,199,199,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.BUSLOAD_STATUS_N400,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.BUSLOAD_VALUE_CAN4_N400 ,18DAF1D2,232,239,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.BUSLOAD_VALUE_CAN5_N400 ,18DAF1D2,240,247,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.BUSLOAD_VALUE_CAN6_N400 ,18DAF1D2,248,255,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.BUSLOAD_VALUE_CAN7_N400 ,18DAF1D2,256,263,1,0,0,,22058F,62058F,ff,SECURITY_LOG_N400.BUSLOAD_VALUE_CAN8_N400 ,18DAF1D2,24,47,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.ABOLUTE_TIME_N401 ,18DAF1D2,48,71,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.MILEAGE_N401 ,18DAF1D2,76,78,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.VIOLATION_TYPE_N401,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.SIZE_IDENTIFIER_N401,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220590,620590,4ff,SECURITY_LOG_N401.IDENTIFIER_VIOLATED_FRAME_N401 ,18DAF1D2,112,119,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.VIOLATED_BUS_N401,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.PAYLOAD_DLC_N401,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220590,620590,4ff,SECURITY_LOG_N401.PAYLOAD_VIOLATED_FRAME_N401 ,18DAF1D2,199,199,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.BUSLOAD_STATUS_N401,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.BUSLOAD_VALUE_CAN4_N401 ,18DAF1D2,232,239,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.BUSLOAD_VALUE_CAN5_N401 ,18DAF1D2,240,247,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.BUSLOAD_VALUE_CAN6_N401 ,18DAF1D2,248,255,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.BUSLOAD_VALUE_CAN7_N401 ,18DAF1D2,256,263,1,0,0,,220590,620590,ff,SECURITY_LOG_N401.BUSLOAD_VALUE_CAN8_N401 ,18DAF1D2,24,47,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.ABOLUTE_TIME_N402 ,18DAF1D2,48,71,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.MILEAGE_N402 ,18DAF1D2,76,78,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.VIOLATION_TYPE_N402,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.SIZE_IDENTIFIER_N402,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220591,620591,4ff,SECURITY_LOG_N402.IDENTIFIER_VIOLATED_FRAME_N402 ,18DAF1D2,112,119,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.VIOLATED_BUS_N402,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.PAYLOAD_DLC_N402,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220591,620591,4ff,SECURITY_LOG_N402.PAYLOAD_VIOLATED_FRAME_N402 ,18DAF1D2,199,199,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.BUSLOAD_STATUS_N402,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.BUSLOAD_VALUE_CAN1_N402 ,18DAF1D2,208,215,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.BUSLOAD_VALUE_CAN2_N402 ,18DAF1D2,216,223,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.BUSLOAD_VALUE_CAN3_N402 ,18DAF1D2,224,231,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.BUSLOAD_VALUE_CAN4_N402 ,18DAF1D2,232,239,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.BUSLOAD_VALUE_CAN5_N402 ,18DAF1D2,240,247,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.BUSLOAD_VALUE_CAN6_N402 ,18DAF1D2,248,255,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.BUSLOAD_VALUE_CAN7_N402 ,18DAF1D2,256,263,1,0,0,,220591,620591,ff,SECURITY_LOG_N402.BUSLOAD_VALUE_CAN8_N402 ,18DAF1D2,24,47,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.ABOLUTE_TIME_N403 ,18DAF1D2,48,71,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.MILEAGE_N403 ,18DAF1D2,76,78,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.VIOLATION_TYPE_N403,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.SIZE_IDENTIFIER_N403,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220592,620592,4ff,SECURITY_LOG_N403.IDENTIFIER_VIOLATED_FRAME_N403 ,18DAF1D2,112,119,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.VIOLATED_BUS_N403,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.PAYLOAD_DLC_N403,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220592,620592,4ff,SECURITY_LOG_N403.PAYLOAD_VIOLATED_FRAME_N403 ,18DAF1D2,199,199,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.BUSLOAD_STATUS_N403,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.BUSLOAD_VALUE_CAN1_N403 ,18DAF1D2,208,215,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.BUSLOAD_VALUE_CAN2_N403 ,18DAF1D2,216,223,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.BUSLOAD_VALUE_CAN3_N403 ,18DAF1D2,224,231,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.BUSLOAD_VALUE_CAN4_N403 ,18DAF1D2,232,239,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.BUSLOAD_VALUE_CAN5_N403 ,18DAF1D2,240,247,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.BUSLOAD_VALUE_CAN6_N403 ,18DAF1D2,248,255,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.BUSLOAD_VALUE_CAN7_N403 ,18DAF1D2,256,263,1,0,0,,220592,620592,ff,SECURITY_LOG_N403.BUSLOAD_VALUE_CAN8_N403 ,18DAF1D2,24,47,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.ABOLUTE_TIME_N404 ,18DAF1D2,48,71,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.MILEAGE_N404 ,18DAF1D2,76,78,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.VIOLATION_TYPE_N404,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.SIZE_IDENTIFIER_N404,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220593,620593,4ff,SECURITY_LOG_N404.IDENTIFIER_VIOLATED_FRAME_N404 ,18DAF1D2,112,119,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.VIOLATED_BUS_N404,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.PAYLOAD_DLC_N404,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220593,620593,4ff,SECURITY_LOG_N404.PAYLOAD_VIOLATED_FRAME_N404 ,18DAF1D2,199,199,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.BUSLOAD_STATUS_N404,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.BUSLOAD_VALUE_CAN1_N404 ,18DAF1D2,208,215,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.BUSLOAD_VALUE_CAN2_N404 ,18DAF1D2,216,223,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.BUSLOAD_VALUE_CAN3_N404 ,18DAF1D2,224,231,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.BUSLOAD_VALUE_CAN4_N404 ,18DAF1D2,232,239,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.BUSLOAD_VALUE_CAN5_N404 ,18DAF1D2,240,247,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.BUSLOAD_VALUE_CAN6_N404 ,18DAF1D2,248,255,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.BUSLOAD_VALUE_CAN7_N404 ,18DAF1D2,256,263,1,0,0,,220593,620593,ff,SECURITY_LOG_N404.BUSLOAD_VALUE_CAN8_N404 ,18DAF1D2,24,47,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.ABOLUTE_TIME_N405 ,18DAF1D2,48,71,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.MILEAGE_N405 ,18DAF1D2,76,78,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.VIOLATION_TYPE_N405,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.SIZE_IDENTIFIER_N405,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220594,620594,4ff,SECURITY_LOG_N405.IDENTIFIER_VIOLATED_FRAME_N405 ,18DAF1D2,112,119,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.VIOLATED_BUS_N405,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.PAYLOAD_DLC_N405,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220594,620594,4ff,SECURITY_LOG_N405.PAYLOAD_VIOLATED_FRAME_N405 ,18DAF1D2,199,199,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.BUSLOAD_STATUS_N405,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.BUSLOAD_VALUE_CAN1_N405 ,18DAF1D2,208,215,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.BUSLOAD_VALUE_CAN2_N405 ,18DAF1D2,216,223,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.BUSLOAD_VALUE_CAN3_N405 ,18DAF1D2,224,231,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.BUSLOAD_VALUE_CAN4_N405 ,18DAF1D2,232,239,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.BUSLOAD_VALUE_CAN5_N405 ,18DAF1D2,240,247,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.BUSLOAD_VALUE_CAN6_N405 ,18DAF1D2,248,255,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.BUSLOAD_VALUE_CAN7_N405 ,18DAF1D2,256,263,1,0,0,,220594,620594,ff,SECURITY_LOG_N405.BUSLOAD_VALUE_CAN8_N405 ,18DAF1D2,24,47,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.ABOLUTE_TIME_N406 ,18DAF1D2,48,71,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.MILEAGE_N406 ,18DAF1D2,76,78,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.VIOLATION_TYPE_N406,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.SIZE_IDENTIFIER_N406,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220595,620595,4ff,SECURITY_LOG_N406.IDENTIFIER_VIOLATED_FRAME_N406 ,18DAF1D2,112,119,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.VIOLATED_BUS_N406,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.PAYLOAD_DLC_N406,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220595,620595,4ff,SECURITY_LOG_N406.PAYLOAD_VIOLATED_FRAME_N406 ,18DAF1D2,199,199,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.BUSLOAD_STATUS_N406,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.BUSLOAD_VALUE_CAN1_N406 ,18DAF1D2,208,215,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.BUSLOAD_VALUE_CAN2_N406 ,18DAF1D2,216,223,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.BUSLOAD_VALUE_CAN3_N406 ,18DAF1D2,224,231,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.BUSLOAD_VALUE_CAN4_N406 ,18DAF1D2,232,239,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.BUSLOAD_VALUE_CAN5_N406 ,18DAF1D2,240,247,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.BUSLOAD_VALUE_CAN6_N406 ,18DAF1D2,248,255,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.BUSLOAD_VALUE_CAN7_N406 ,18DAF1D2,256,263,1,0,0,,220595,620595,ff,SECURITY_LOG_N406.BUSLOAD_VALUE_CAN8_N406 ,18DAF1D2,24,47,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.ABOLUTE_TIME_N407 ,18DAF1D2,48,71,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.MILEAGE_N407 ,18DAF1D2,76,78,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.VIOLATION_TYPE_N407,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.SIZE_IDENTIFIER_N407,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220596,620596,4ff,SECURITY_LOG_N407.IDENTIFIER_VIOLATED_FRAME_N407 ,18DAF1D2,112,119,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.VIOLATED_BUS_N407,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.PAYLOAD_DLC_N407,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220596,620596,4ff,SECURITY_LOG_N407.PAYLOAD_VIOLATED_FRAME_N407 ,18DAF1D2,199,199,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.BUSLOAD_STATUS_N407,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.BUSLOAD_VALUE_CAN1_N407 ,18DAF1D2,208,215,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.BUSLOAD_VALUE_CAN2_N407 ,18DAF1D2,216,223,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.BUSLOAD_VALUE_CAN3_N407 ,18DAF1D2,224,231,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.BUSLOAD_VALUE_CAN4_N407 ,18DAF1D2,232,239,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.BUSLOAD_VALUE_CAN5_N407 ,18DAF1D2,240,247,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.BUSLOAD_VALUE_CAN6_N407 ,18DAF1D2,248,255,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.BUSLOAD_VALUE_CAN7_N407 ,18DAF1D2,256,263,1,0,0,,220596,620596,ff,SECURITY_LOG_N407.BUSLOAD_VALUE_CAN8_N407 ,18DAF1D2,24,47,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.ABOLUTE_TIME_N408 ,18DAF1D2,48,71,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.MILEAGE_N408 ,18DAF1D2,76,78,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.VIOLATION_TYPE_N408,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.SIZE_IDENTIFIER_N408,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220597,620597,4ff,SECURITY_LOG_N408.IDENTIFIER_VIOLATED_FRAME_N408 ,18DAF1D2,112,119,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.VIOLATED_BUS_N408,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.PAYLOAD_DLC_N408,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220597,620597,4ff,SECURITY_LOG_N408.PAYLOAD_VIOLATED_FRAME_N408 ,18DAF1D2,199,199,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.BUSLOAD_STATUS_N408,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.BUSLOAD_VALUE_CAN1_N408 ,18DAF1D2,208,215,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.BUSLOAD_VALUE_CAN2_N408 ,18DAF1D2,216,223,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.BUSLOAD_VALUE_CAN3_N408 ,18DAF1D2,224,231,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.BUSLOAD_VALUE_CAN4_N408 ,18DAF1D2,232,239,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.BUSLOAD_VALUE_CAN5_N408 ,18DAF1D2,240,247,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.BUSLOAD_VALUE_CAN6_N408 ,18DAF1D2,248,255,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.BUSLOAD_VALUE_CAN7_N408 ,18DAF1D2,256,263,1,0,0,,220597,620597,ff,SECURITY_LOG_N408.BUSLOAD_VALUE_CAN8_N408 ,18DAF1D2,24,47,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.ABOLUTE_TIME_N409 ,18DAF1D2,48,71,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.MILEAGE_N409 ,18DAF1D2,76,78,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.VIOLATION_TYPE_N409,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.SIZE_IDENTIFIER_N409,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220598,620598,4ff,SECURITY_LOG_N409.IDENTIFIER_VIOLATED_FRAME_N409 ,18DAF1D2,112,119,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.VIOLATED_BUS_N409,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.PAYLOAD_DLC_N409,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220598,620598,4ff,SECURITY_LOG_N409.PAYLOAD_VIOLATED_FRAME_N409 ,18DAF1D2,199,199,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.BUSLOAD_STATUS_N409,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.BUSLOAD_VALUE_CAN1_N409 ,18DAF1D2,208,215,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.BUSLOAD_VALUE_CAN2_N409 ,18DAF1D2,216,223,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.BUSLOAD_VALUE_CAN3_N409 ,18DAF1D2,224,231,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.BUSLOAD_VALUE_CAN4_N409 ,18DAF1D2,232,239,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.BUSLOAD_VALUE_CAN5_N409 ,18DAF1D2,240,247,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.BUSLOAD_VALUE_CAN6_N409 ,18DAF1D2,248,255,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.BUSLOAD_VALUE_CAN7_N409 ,18DAF1D2,256,263,1,0,0,,220598,620598,ff,SECURITY_LOG_N409.BUSLOAD_VALUE_CAN8_N409 ,18DAF1D2,24,47,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.ABOLUTE_TIME_N410 ,18DAF1D2,48,71,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.MILEAGE_N410 ,18DAF1D2,76,78,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.VIOLATION_TYPE_N410,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.SIZE_IDENTIFIER_N410,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,220599,620599,4ff,SECURITY_LOG_N410.IDENTIFIER_VIOLATED_FRAME_N410 ,18DAF1D2,112,119,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.VIOLATED_BUS_N410,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.PAYLOAD_DLC_N410,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,220599,620599,4ff,SECURITY_LOG_N410.PAYLOAD_VIOLATED_FRAME_N410 ,18DAF1D2,199,199,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.BUSLOAD_STATUS_N410,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.BUSLOAD_VALUE_CAN1_N410 ,18DAF1D2,208,215,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.BUSLOAD_VALUE_CAN2_N410 ,18DAF1D2,216,223,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.BUSLOAD_VALUE_CAN3_N410 ,18DAF1D2,224,231,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.BUSLOAD_VALUE_CAN4_N410 ,18DAF1D2,232,239,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.BUSLOAD_VALUE_CAN5_N410 ,18DAF1D2,240,247,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.BUSLOAD_VALUE_CAN6_N410 ,18DAF1D2,248,255,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.BUSLOAD_VALUE_CAN7_N410 ,18DAF1D2,256,263,1,0,0,,220599,620599,ff,SECURITY_LOG_N410.BUSLOAD_VALUE_CAN8_N410 ,18DAF1D2,24,47,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.ABOLUTE_TIME_N411 ,18DAF1D2,48,71,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.MILEAGE_N411 ,18DAF1D2,76,78,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.VIOLATION_TYPE_N411,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.SIZE_IDENTIFIER_N411,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22059A,62059A,4ff,SECURITY_LOG_N411.IDENTIFIER_VIOLATED_FRAME_N411 ,18DAF1D2,112,119,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.VIOLATED_BUS_N411,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.PAYLOAD_DLC_N411,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22059A,62059A,4ff,SECURITY_LOG_N411.PAYLOAD_VIOLATED_FRAME_N411 ,18DAF1D2,199,199,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.BUSLOAD_STATUS_N411,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.BUSLOAD_VALUE_CAN1_N411 ,18DAF1D2,208,215,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.BUSLOAD_VALUE_CAN2_N411 ,18DAF1D2,216,223,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.BUSLOAD_VALUE_CAN3_N411 ,18DAF1D2,224,231,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.BUSLOAD_VALUE_CAN4_N411 ,18DAF1D2,232,239,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.BUSLOAD_VALUE_CAN5_N411 ,18DAF1D2,240,247,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.BUSLOAD_VALUE_CAN6_N411 ,18DAF1D2,248,255,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.BUSLOAD_VALUE_CAN7_N411 ,18DAF1D2,256,263,1,0,0,,22059A,62059A,ff,SECURITY_LOG_N411.BUSLOAD_VALUE_CAN8_N411 ,18DAF1D2,24,47,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.ABOLUTE_TIME_N412 ,18DAF1D2,48,71,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.MILEAGE_N412 ,18DAF1D2,76,78,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.VIOLATION_TYPE_N412,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.SIZE_IDENTIFIER_N412,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22059B,62059B,4ff,SECURITY_LOG_N412.IDENTIFIER_VIOLATED_FRAME_N412 ,18DAF1D2,112,119,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.VIOLATED_BUS_N412,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.PAYLOAD_DLC_N412,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22059B,62059B,4ff,SECURITY_LOG_N412.PAYLOAD_VIOLATED_FRAME_N412 ,18DAF1D2,199,199,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.BUSLOAD_STATUS_N412,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.BUSLOAD_VALUE_CAN1_N412 ,18DAF1D2,208,215,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.BUSLOAD_VALUE_CAN2_N412 ,18DAF1D2,216,223,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.BUSLOAD_VALUE_CAN3_N412 ,18DAF1D2,224,231,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.BUSLOAD_VALUE_CAN4_N412 ,18DAF1D2,232,239,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.BUSLOAD_VALUE_CAN5_N412 ,18DAF1D2,240,247,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.BUSLOAD_VALUE_CAN6_N412 ,18DAF1D2,248,255,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.BUSLOAD_VALUE_CAN7_N412 ,18DAF1D2,256,263,1,0,0,,22059B,62059B,ff,SECURITY_LOG_N412.BUSLOAD_VALUE_CAN8_N412 ,18DAF1D2,24,47,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.ABOLUTE_TIME_N413 ,18DAF1D2,48,71,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.MILEAGE_N413 ,18DAF1D2,76,78,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.VIOLATION_TYPE_N413,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.SIZE_IDENTIFIER_N413,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22059C,62059C,4ff,SECURITY_LOG_N413.IDENTIFIER_VIOLATED_FRAME_N413 ,18DAF1D2,112,119,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.VIOLATED_BUS_N413,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.PAYLOAD_DLC_N413,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22059C,62059C,4ff,SECURITY_LOG_N413.PAYLOAD_VIOLATED_FRAME_N413 ,18DAF1D2,199,199,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.BUSLOAD_STATUS_N413,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.BUSLOAD_VALUE_CAN1_N413 ,18DAF1D2,208,215,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.BUSLOAD_VALUE_CAN2_N413 ,18DAF1D2,216,223,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.BUSLOAD_VALUE_CAN3_N413 ,18DAF1D2,224,231,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.BUSLOAD_VALUE_CAN4_N413 ,18DAF1D2,232,239,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.BUSLOAD_VALUE_CAN5_N413 ,18DAF1D2,240,247,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.BUSLOAD_VALUE_CAN6_N413 ,18DAF1D2,248,255,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.BUSLOAD_VALUE_CAN7_N413 ,18DAF1D2,256,263,1,0,0,,22059C,62059C,ff,SECURITY_LOG_N413.BUSLOAD_VALUE_CAN8_N413 ,18DAF1D2,24,47,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.ABOLUTE_TIME_N414 ,18DAF1D2,48,71,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.MILEAGE_N414 ,18DAF1D2,76,78,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.VIOLATION_TYPE_N414,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.SIZE_IDENTIFIER_N414,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22059D,62059D,4ff,SECURITY_LOG_N414.IDENTIFIER_VIOLATED_FRAME_N414 ,18DAF1D2,112,119,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.VIOLATED_BUS_N414,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.PAYLOAD_DLC_N414,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22059D,62059D,4ff,SECURITY_LOG_N414.PAYLOAD_VIOLATED_FRAME_N414 ,18DAF1D2,199,199,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.BUSLOAD_STATUS_N414,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.BUSLOAD_VALUE_CAN1_N414 ,18DAF1D2,208,215,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.BUSLOAD_VALUE_CAN2_N414 ,18DAF1D2,216,223,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.BUSLOAD_VALUE_CAN3_N414 ,18DAF1D2,224,231,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.BUSLOAD_VALUE_CAN4_N414 ,18DAF1D2,232,239,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.BUSLOAD_VALUE_CAN5_N414 ,18DAF1D2,240,247,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.BUSLOAD_VALUE_CAN6_N414 ,18DAF1D2,248,255,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.BUSLOAD_VALUE_CAN7_N414 ,18DAF1D2,256,263,1,0,0,,22059D,62059D,ff,SECURITY_LOG_N414.BUSLOAD_VALUE_CAN8_N414 ,18DAF1D2,24,47,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.ABOLUTE_TIME_N415 ,18DAF1D2,48,71,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.MILEAGE_N415 ,18DAF1D2,76,78,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.VIOLATION_TYPE_N415,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.SIZE_IDENTIFIER_N415,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22059E,62059E,4ff,SECURITY_LOG_N415.IDENTIFIER_VIOLATED_FRAME_N415 ,18DAF1D2,112,119,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.VIOLATED_BUS_N415,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.PAYLOAD_DLC_N415,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22059E,62059E,4ff,SECURITY_LOG_N415.PAYLOAD_VIOLATED_FRAME_N415 ,18DAF1D2,199,199,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.BUSLOAD_STATUS_N415,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.BUSLOAD_VALUE_CAN1_N415 ,18DAF1D2,208,215,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.BUSLOAD_VALUE_CAN2_N415 ,18DAF1D2,216,223,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.BUSLOAD_VALUE_CAN3_N415 ,18DAF1D2,224,231,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.BUSLOAD_VALUE_CAN4_N415 ,18DAF1D2,232,239,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.BUSLOAD_VALUE_CAN5_N415 ,18DAF1D2,240,247,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.BUSLOAD_VALUE_CAN6_N415 ,18DAF1D2,248,255,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.BUSLOAD_VALUE_CAN7_N415 ,18DAF1D2,256,263,1,0,0,,22059E,62059E,ff,SECURITY_LOG_N415.BUSLOAD_VALUE_CAN8_N415 ,18DAF1D2,24,47,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.ABOLUTE_TIME_N416 ,18DAF1D2,48,71,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.MILEAGE_N416 ,18DAF1D2,76,78,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.VIOLATION_TYPE_N416,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.SIZE_IDENTIFIER_N416,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,22059F,62059F,4ff,SECURITY_LOG_N416.IDENTIFIER_VIOLATED_FRAME_N416 ,18DAF1D2,112,119,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.VIOLATED_BUS_N416,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.PAYLOAD_DLC_N416,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,22059F,62059F,4ff,SECURITY_LOG_N416.PAYLOAD_VIOLATED_FRAME_N416 ,18DAF1D2,199,199,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.BUSLOAD_STATUS_N416,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.BUSLOAD_VALUE_CAN1_N416 ,18DAF1D2,208,215,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.BUSLOAD_VALUE_CAN2_N416 ,18DAF1D2,216,223,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.BUSLOAD_VALUE_CAN3_N416 ,18DAF1D2,224,231,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.BUSLOAD_VALUE_CAN4_N416 ,18DAF1D2,232,239,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.BUSLOAD_VALUE_CAN5_N416 ,18DAF1D2,240,247,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.BUSLOAD_VALUE_CAN6_N416 ,18DAF1D2,248,255,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.BUSLOAD_VALUE_CAN7_N416 ,18DAF1D2,256,263,1,0,0,,22059F,62059F,ff,SECURITY_LOG_N416.BUSLOAD_VALUE_CAN8_N416 ,18DAF1D2,24,47,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.ABOLUTE_TIME_N417 ,18DAF1D2,48,71,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.MILEAGE_N417 ,18DAF1D2,76,78,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.VIOLATION_TYPE_N417,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.SIZE_IDENTIFIER_N417,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205A0,6205A0,4ff,SECURITY_LOG_N417.IDENTIFIER_VIOLATED_FRAME_N417 ,18DAF1D2,112,119,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.VIOLATED_BUS_N417,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.PAYLOAD_DLC_N417,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205A0,6205A0,4ff,SECURITY_LOG_N417.PAYLOAD_VIOLATED_FRAME_N417 ,18DAF1D2,199,199,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.BUSLOAD_STATUS_N417,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.BUSLOAD_VALUE_CAN1_N417 ,18DAF1D2,208,215,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.BUSLOAD_VALUE_CAN2_N417 ,18DAF1D2,216,223,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.BUSLOAD_VALUE_CAN3_N417 ,18DAF1D2,224,231,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.BUSLOAD_VALUE_CAN4_N417 ,18DAF1D2,232,239,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.BUSLOAD_VALUE_CAN5_N417 ,18DAF1D2,240,247,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.BUSLOAD_VALUE_CAN6_N417 ,18DAF1D2,248,255,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.BUSLOAD_VALUE_CAN7_N417 ,18DAF1D2,256,263,1,0,0,,2205A0,6205A0,ff,SECURITY_LOG_N417.BUSLOAD_VALUE_CAN8_N417 ,18DAF1D2,24,47,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.ABOLUTE_TIME_N418 ,18DAF1D2,48,71,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.MILEAGE_N418 ,18DAF1D2,76,78,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.VIOLATION_TYPE_N418,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.SIZE_IDENTIFIER_N418,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205A1,6205A1,4ff,SECURITY_LOG_N418.IDENTIFIER_VIOLATED_FRAME_N418 ,18DAF1D2,112,119,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.VIOLATED_BUS_N418,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.PAYLOAD_DLC_N418,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205A1,6205A1,4ff,SECURITY_LOG_N418.PAYLOAD_VIOLATED_FRAME_N418 ,18DAF1D2,199,199,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.BUSLOAD_STATUS_N418,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.BUSLOAD_VALUE_CAN1_N418 ,18DAF1D2,208,215,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.BUSLOAD_VALUE_CAN2_N418 ,18DAF1D2,216,223,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.BUSLOAD_VALUE_CAN3_N418 ,18DAF1D2,224,231,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.BUSLOAD_VALUE_CAN4_N418 ,18DAF1D2,232,239,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.BUSLOAD_VALUE_CAN5_N418 ,18DAF1D2,240,247,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.BUSLOAD_VALUE_CAN6_N418 ,18DAF1D2,248,255,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.BUSLOAD_VALUE_CAN7_N418 ,18DAF1D2,256,263,1,0,0,,2205A1,6205A1,ff,SECURITY_LOG_N418.BUSLOAD_VALUE_CAN8_N418 ,18DAF1D2,24,47,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.ABOLUTE_TIME_N419 ,18DAF1D2,48,71,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.MILEAGE_N419 ,18DAF1D2,76,78,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.VIOLATION_TYPE_N419,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.SIZE_IDENTIFIER_N419,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205A2,6205A2,4ff,SECURITY_LOG_N419.IDENTIFIER_VIOLATED_FRAME_N419 ,18DAF1D2,112,119,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.VIOLATED_BUS_N419,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.PAYLOAD_DLC_N419,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205A2,6205A2,4ff,SECURITY_LOG_N419.PAYLOAD_VIOLATED_FRAME_N419 ,18DAF1D2,199,199,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.BUSLOAD_STATUS_N419,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.BUSLOAD_VALUE_CAN1_N419 ,18DAF1D2,208,215,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.BUSLOAD_VALUE_CAN2_N419 ,18DAF1D2,216,223,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.BUSLOAD_VALUE_CAN3_N419 ,18DAF1D2,224,231,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.BUSLOAD_VALUE_CAN4_N419 ,18DAF1D2,232,239,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.BUSLOAD_VALUE_CAN5_N419 ,18DAF1D2,240,247,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.BUSLOAD_VALUE_CAN6_N419 ,18DAF1D2,248,255,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.BUSLOAD_VALUE_CAN7_N419 ,18DAF1D2,256,263,1,0,0,,2205A2,6205A2,ff,SECURITY_LOG_N419.BUSLOAD_VALUE_CAN8_N419 ,18DAF1D2,24,47,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.ABOLUTE_TIME_N420 ,18DAF1D2,48,71,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.MILEAGE_N420 ,18DAF1D2,76,78,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.VIOLATION_TYPE_N420,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.SIZE_IDENTIFIER_N420,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205A3,6205A3,4ff,SECURITY_LOG_N420.IDENTIFIER_VIOLATED_FRAME_N420 ,18DAF1D2,112,119,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.VIOLATED_BUS_N420,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.PAYLOAD_DLC_N420,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205A3,6205A3,4ff,SECURITY_LOG_N420.PAYLOAD_VIOLATED_FRAME_N420 ,18DAF1D2,199,199,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.BUSLOAD_STATUS_N420,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.BUSLOAD_VALUE_CAN1_N420 ,18DAF1D2,208,215,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.BUSLOAD_VALUE_CAN2_N420 ,18DAF1D2,216,223,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.BUSLOAD_VALUE_CAN3_N420 ,18DAF1D2,224,231,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.BUSLOAD_VALUE_CAN4_N420 ,18DAF1D2,232,239,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.BUSLOAD_VALUE_CAN5_N420 ,18DAF1D2,240,247,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.BUSLOAD_VALUE_CAN6_N420 ,18DAF1D2,248,255,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.BUSLOAD_VALUE_CAN7_N420 ,18DAF1D2,256,263,1,0,0,,2205A3,6205A3,ff,SECURITY_LOG_N420.BUSLOAD_VALUE_CAN8_N420 ,18DAF1D2,24,47,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.ABOLUTE_TIME_N421 ,18DAF1D2,48,71,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.MILEAGE_N421 ,18DAF1D2,76,78,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.VIOLATION_TYPE_N421,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.SIZE_IDENTIFIER_N421,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205A4,6205A4,4ff,SECURITY_LOG_N421.IDENTIFIER_VIOLATED_FRAME_N421 ,18DAF1D2,112,119,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.VIOLATED_BUS_N421,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.PAYLOAD_DLC_N421,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205A4,6205A4,4ff,SECURITY_LOG_N421.PAYLOAD_VIOLATED_FRAME_N421 ,18DAF1D2,199,199,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.BUSLOAD_STATUS_N421,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.BUSLOAD_VALUE_CAN1_N421 ,18DAF1D2,208,215,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.BUSLOAD_VALUE_CAN2_N421 ,18DAF1D2,216,223,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.BUSLOAD_VALUE_CAN3_N421 ,18DAF1D2,224,231,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.BUSLOAD_VALUE_CAN4_N421 ,18DAF1D2,232,239,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.BUSLOAD_VALUE_CAN5_N421 ,18DAF1D2,240,247,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.BUSLOAD_VALUE_CAN6_N421 ,18DAF1D2,248,255,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.BUSLOAD_VALUE_CAN7_N421 ,18DAF1D2,256,263,1,0,0,,2205A4,6205A4,ff,SECURITY_LOG_N421.BUSLOAD_VALUE_CAN8_N421 ,18DAF1D2,24,47,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.ABOLUTE_TIME_N422 ,18DAF1D2,48,71,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.MILEAGE_N422 ,18DAF1D2,76,78,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.VIOLATION_TYPE_N422,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.SIZE_IDENTIFIER_N422,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205A5,6205A5,4ff,SECURITY_LOG_N422.IDENTIFIER_VIOLATED_FRAME_N422 ,18DAF1D2,112,119,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.VIOLATED_BUS_N422,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.PAYLOAD_DLC_N422,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205A5,6205A5,4ff,SECURITY_LOG_N422.PAYLOAD_VIOLATED_FRAME_N422 ,18DAF1D2,199,199,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.BUSLOAD_STATUS_N422,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.BUSLOAD_VALUE_CAN1_N422 ,18DAF1D2,208,215,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.BUSLOAD_VALUE_CAN2_N422 ,18DAF1D2,216,223,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.BUSLOAD_VALUE_CAN3_N422 ,18DAF1D2,224,231,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.BUSLOAD_VALUE_CAN4_N422 ,18DAF1D2,232,239,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.BUSLOAD_VALUE_CAN5_N422 ,18DAF1D2,240,247,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.BUSLOAD_VALUE_CAN6_N422 ,18DAF1D2,248,255,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.BUSLOAD_VALUE_CAN7_N422 ,18DAF1D2,256,263,1,0,0,,2205A5,6205A5,ff,SECURITY_LOG_N422.BUSLOAD_VALUE_CAN8_N422 ,18DAF1D2,24,47,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.ABOLUTE_TIME_N423 ,18DAF1D2,48,71,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.MILEAGE_N423 ,18DAF1D2,76,78,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.VIOLATION_TYPE_N423,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.SIZE_IDENTIFIER_N423,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205A6,6205A6,4ff,SECURITY_LOG_N423.IDENTIFIER_VIOLATED_FRAME_N423 ,18DAF1D2,112,119,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.VIOLATED_BUS_N423,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.PAYLOAD_DLC_N423,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205A6,6205A6,4ff,SECURITY_LOG_N423.PAYLOAD_VIOLATED_FRAME_N423 ,18DAF1D2,199,199,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.BUSLOAD_STATUS_N423,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.BUSLOAD_VALUE_CAN1_N423 ,18DAF1D2,208,215,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.BUSLOAD_VALUE_CAN2_N423 ,18DAF1D2,216,223,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.BUSLOAD_VALUE_CAN3_N423 ,18DAF1D2,224,231,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.BUSLOAD_VALUE_CAN4_N423 ,18DAF1D2,232,239,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.BUSLOAD_VALUE_CAN5_N423 ,18DAF1D2,240,247,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.BUSLOAD_VALUE_CAN6_N423 ,18DAF1D2,248,255,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.BUSLOAD_VALUE_CAN7_N423 ,18DAF1D2,256,263,1,0,0,,2205A6,6205A6,ff,SECURITY_LOG_N423.BUSLOAD_VALUE_CAN8_N423 ,18DAF1D2,24,47,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.ABOLUTE_TIME_N424 ,18DAF1D2,48,71,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.MILEAGE_N424 ,18DAF1D2,76,78,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.VIOLATION_TYPE_N424,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.SIZE_IDENTIFIER_N424,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205A7,6205A7,4ff,SECURITY_LOG_N424.IDENTIFIER_VIOLATED_FRAME_N424 ,18DAF1D2,112,119,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.VIOLATED_BUS_N424,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.PAYLOAD_DLC_N424,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205A7,6205A7,4ff,SECURITY_LOG_N424.PAYLOAD_VIOLATED_FRAME_N424 ,18DAF1D2,199,199,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.BUSLOAD_STATUS_N424,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.BUSLOAD_VALUE_CAN1_N424 ,18DAF1D2,208,215,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.BUSLOAD_VALUE_CAN2_N424 ,18DAF1D2,216,223,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.BUSLOAD_VALUE_CAN3_N424 ,18DAF1D2,224,231,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.BUSLOAD_VALUE_CAN4_N424 ,18DAF1D2,232,239,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.BUSLOAD_VALUE_CAN5_N424 ,18DAF1D2,240,247,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.BUSLOAD_VALUE_CAN6_N424 ,18DAF1D2,248,255,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.BUSLOAD_VALUE_CAN7_N424 ,18DAF1D2,256,263,1,0,0,,2205A7,6205A7,ff,SECURITY_LOG_N424.BUSLOAD_VALUE_CAN8_N424 ,18DAF1D2,24,47,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.ABOLUTE_TIME_N425 ,18DAF1D2,48,71,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.MILEAGE_N425 ,18DAF1D2,76,78,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.VIOLATION_TYPE_N425,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.SIZE_IDENTIFIER_N425,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205A8,6205A8,4ff,SECURITY_LOG_N425.IDENTIFIER_VIOLATED_FRAME_N425 ,18DAF1D2,112,119,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.VIOLATED_BUS_N425,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.PAYLOAD_DLC_N425,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205A8,6205A8,4ff,SECURITY_LOG_N425.PAYLOAD_VIOLATED_FRAME_N425 ,18DAF1D2,199,199,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.BUSLOAD_STATUS_N425,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.BUSLOAD_VALUE_CAN1_N425 ,18DAF1D2,208,215,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.BUSLOAD_VALUE_CAN2_N425 ,18DAF1D2,216,223,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.BUSLOAD_VALUE_CAN3_N425 ,18DAF1D2,224,231,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.BUSLOAD_VALUE_CAN4_N425 ,18DAF1D2,232,239,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.BUSLOAD_VALUE_CAN5_N425 ,18DAF1D2,240,247,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.BUSLOAD_VALUE_CAN6_N425 ,18DAF1D2,248,255,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.BUSLOAD_VALUE_CAN7_N425 ,18DAF1D2,256,263,1,0,0,,2205A8,6205A8,ff,SECURITY_LOG_N425.BUSLOAD_VALUE_CAN8_N425 ,18DAF1D2,24,47,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.ABOLUTE_TIME_N426 ,18DAF1D2,48,71,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.MILEAGE_N426 ,18DAF1D2,76,78,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.VIOLATION_TYPE_N426,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.SIZE_IDENTIFIER_N426,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205A9,6205A9,4ff,SECURITY_LOG_N426.IDENTIFIER_VIOLATED_FRAME_N426 ,18DAF1D2,112,119,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.VIOLATED_BUS_N426,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.PAYLOAD_DLC_N426,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205A9,6205A9,4ff,SECURITY_LOG_N426.PAYLOAD_VIOLATED_FRAME_N426 ,18DAF1D2,199,199,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.BUSLOAD_STATUS_N426,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.BUSLOAD_VALUE_CAN1_N426 ,18DAF1D2,208,215,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.BUSLOAD_VALUE_CAN2_N426 ,18DAF1D2,216,223,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.BUSLOAD_VALUE_CAN3_N426 ,18DAF1D2,224,231,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.BUSLOAD_VALUE_CAN4_N426 ,18DAF1D2,232,239,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.BUSLOAD_VALUE_CAN5_N426 ,18DAF1D2,240,247,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.BUSLOAD_VALUE_CAN6_N426 ,18DAF1D2,248,255,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.BUSLOAD_VALUE_CAN7_N426 ,18DAF1D2,256,263,1,0,0,,2205A9,6205A9,ff,SECURITY_LOG_N426.BUSLOAD_VALUE_CAN8_N426 ,18DAF1D2,24,47,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.ABOLUTE_TIME_N427 ,18DAF1D2,48,71,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.MILEAGE_N427 ,18DAF1D2,76,78,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.VIOLATION_TYPE_N427,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.SIZE_IDENTIFIER_N427,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205AA,6205AA,4ff,SECURITY_LOG_N427.IDENTIFIER_VIOLATED_FRAME_N427 ,18DAF1D2,112,119,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.VIOLATED_BUS_N427,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.PAYLOAD_DLC_N427,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205AA,6205AA,4ff,SECURITY_LOG_N427.PAYLOAD_VIOLATED_FRAME_N427 ,18DAF1D2,199,199,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.BUSLOAD_STATUS_N427,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.BUSLOAD_VALUE_CAN1_N427 ,18DAF1D2,208,215,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.BUSLOAD_VALUE_CAN2_N427 ,18DAF1D2,216,223,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.BUSLOAD_VALUE_CAN3_N427 ,18DAF1D2,224,231,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.BUSLOAD_VALUE_CAN4_N427 ,18DAF1D2,232,239,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.BUSLOAD_VALUE_CAN5_N427 ,18DAF1D2,240,247,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.BUSLOAD_VALUE_CAN6_N427 ,18DAF1D2,248,255,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.BUSLOAD_VALUE_CAN7_N427 ,18DAF1D2,256,263,1,0,0,,2205AA,6205AA,ff,SECURITY_LOG_N427.BUSLOAD_VALUE_CAN8_N427 ,18DAF1D2,24,47,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.ABOLUTE_TIME_N428 ,18DAF1D2,48,71,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.MILEAGE_N428 ,18DAF1D2,76,78,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.VIOLATION_TYPE_N428,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.SIZE_IDENTIFIER_N428,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205AB,6205AB,4ff,SECURITY_LOG_N428.IDENTIFIER_VIOLATED_FRAME_N428 ,18DAF1D2,112,119,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.VIOLATED_BUS_N428,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.PAYLOAD_DLC_N428,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205AB,6205AB,4ff,SECURITY_LOG_N428.PAYLOAD_VIOLATED_FRAME_N428 ,18DAF1D2,199,199,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.BUSLOAD_STATUS_N428,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.BUSLOAD_VALUE_CAN1_N428 ,18DAF1D2,208,215,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.BUSLOAD_VALUE_CAN2_N428 ,18DAF1D2,216,223,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.BUSLOAD_VALUE_CAN3_N428 ,18DAF1D2,224,231,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.BUSLOAD_VALUE_CAN4_N428 ,18DAF1D2,232,239,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.BUSLOAD_VALUE_CAN5_N428 ,18DAF1D2,240,247,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.BUSLOAD_VALUE_CAN6_N428 ,18DAF1D2,248,255,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.BUSLOAD_VALUE_CAN7_N428 ,18DAF1D2,256,263,1,0,0,,2205AB,6205AB,ff,SECURITY_LOG_N428.BUSLOAD_VALUE_CAN8_N428 ,18DAF1D2,24,47,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.ABOLUTE_TIME_N429 ,18DAF1D2,48,71,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.MILEAGE_N429 ,18DAF1D2,76,78,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.VIOLATION_TYPE_N429,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.SIZE_IDENTIFIER_N429,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205AC,6205AC,4ff,SECURITY_LOG_N429.IDENTIFIER_VIOLATED_FRAME_N429 ,18DAF1D2,112,119,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.VIOLATED_BUS_N429,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.PAYLOAD_DLC_N429,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205AC,6205AC,4ff,SECURITY_LOG_N429.PAYLOAD_VIOLATED_FRAME_N429 ,18DAF1D2,199,199,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.BUSLOAD_STATUS_N429,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.BUSLOAD_VALUE_CAN1_N429 ,18DAF1D2,208,215,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.BUSLOAD_VALUE_CAN2_N429 ,18DAF1D2,216,223,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.BUSLOAD_VALUE_CAN3_N429 ,18DAF1D2,224,231,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.BUSLOAD_VALUE_CAN4_N429 ,18DAF1D2,232,239,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.BUSLOAD_VALUE_CAN5_N429 ,18DAF1D2,240,247,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.BUSLOAD_VALUE_CAN6_N429 ,18DAF1D2,248,255,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.BUSLOAD_VALUE_CAN7_N429 ,18DAF1D2,256,263,1,0,0,,2205AC,6205AC,ff,SECURITY_LOG_N429.BUSLOAD_VALUE_CAN8_N429 ,18DAF1D2,24,47,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.ABOLUTE_TIME_N430 ,18DAF1D2,48,71,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.MILEAGE_N430 ,18DAF1D2,76,78,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.VIOLATION_TYPE_N430,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.SIZE_IDENTIFIER_N430,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205AD,6205AD,4ff,SECURITY_LOG_N430.IDENTIFIER_VIOLATED_FRAME_N430 ,18DAF1D2,112,119,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.VIOLATED_BUS_N430,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.PAYLOAD_DLC_N430,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205AD,6205AD,4ff,SECURITY_LOG_N430.PAYLOAD_VIOLATED_FRAME_N430 ,18DAF1D2,199,199,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.BUSLOAD_STATUS_N430,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.BUSLOAD_VALUE_CAN1_N430 ,18DAF1D2,208,215,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.BUSLOAD_VALUE_CAN2_N430 ,18DAF1D2,216,223,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.BUSLOAD_VALUE_CAN3_N430 ,18DAF1D2,224,231,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.BUSLOAD_VALUE_CAN4_N430 ,18DAF1D2,232,239,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.BUSLOAD_VALUE_CAN5_N430 ,18DAF1D2,240,247,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.BUSLOAD_VALUE_CAN6_N430 ,18DAF1D2,248,255,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.BUSLOAD_VALUE_CAN7_N430 ,18DAF1D2,256,263,1,0,0,,2205AD,6205AD,ff,SECURITY_LOG_N430.BUSLOAD_VALUE_CAN8_N430 ,18DAF1D2,24,47,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.ABOLUTE_TIME_N431 ,18DAF1D2,48,71,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.MILEAGE_N431 ,18DAF1D2,76,78,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.VIOLATION_TYPE_N431,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.SIZE_IDENTIFIER_N431,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205AE,6205AE,4ff,SECURITY_LOG_N431.IDENTIFIER_VIOLATED_FRAME_N431 ,18DAF1D2,112,119,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.VIOLATED_BUS_N431,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.PAYLOAD_DLC_N431,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205AE,6205AE,4ff,SECURITY_LOG_N431.PAYLOAD_VIOLATED_FRAME_N431 ,18DAF1D2,199,199,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.BUSLOAD_STATUS_N431,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.BUSLOAD_VALUE_CAN1_N431 ,18DAF1D2,208,215,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.BUSLOAD_VALUE_CAN2_N431 ,18DAF1D2,216,223,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.BUSLOAD_VALUE_CAN3_N431 ,18DAF1D2,224,231,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.BUSLOAD_VALUE_CAN4_N431 ,18DAF1D2,232,239,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.BUSLOAD_VALUE_CAN5_N431 ,18DAF1D2,240,247,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.BUSLOAD_VALUE_CAN6_N431 ,18DAF1D2,248,255,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.BUSLOAD_VALUE_CAN7_N431 ,18DAF1D2,256,263,1,0,0,,2205AE,6205AE,ff,SECURITY_LOG_N431.BUSLOAD_VALUE_CAN8_N431 ,18DAF1D2,24,47,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.ABOLUTE_TIME_N432 ,18DAF1D2,48,71,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.MILEAGE_N432 ,18DAF1D2,76,78,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.VIOLATION_TYPE_N432,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.SIZE_IDENTIFIER_N432,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205AF,6205AF,4ff,SECURITY_LOG_N432.IDENTIFIER_VIOLATED_FRAME_N432 ,18DAF1D2,112,119,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.VIOLATED_BUS_N432,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.PAYLOAD_DLC_N432,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205AF,6205AF,4ff,SECURITY_LOG_N432.PAYLOAD_VIOLATED_FRAME_N432 ,18DAF1D2,199,199,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.BUSLOAD_STATUS_N432,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.BUSLOAD_VALUE_CAN1_N432 ,18DAF1D2,208,215,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.BUSLOAD_VALUE_CAN2_N432 ,18DAF1D2,216,223,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.BUSLOAD_VALUE_CAN3_N432 ,18DAF1D2,224,231,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.BUSLOAD_VALUE_CAN4_N432 ,18DAF1D2,232,239,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.BUSLOAD_VALUE_CAN5_N432 ,18DAF1D2,240,247,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.BUSLOAD_VALUE_CAN6_N432 ,18DAF1D2,248,255,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.BUSLOAD_VALUE_CAN7_N432 ,18DAF1D2,256,263,1,0,0,,2205AF,6205AF,ff,SECURITY_LOG_N432.BUSLOAD_VALUE_CAN8_N432 ,18DAF1D2,24,47,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.ABOLUTE_TIME_N433 ,18DAF1D2,48,71,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.MILEAGE_N433 ,18DAF1D2,76,78,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.VIOLATION_TYPE_N433,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.SIZE_IDENTIFIER_N433,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205B0,6205B0,4ff,SECURITY_LOG_N433.IDENTIFIER_VIOLATED_FRAME_N433 ,18DAF1D2,112,119,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.VIOLATED_BUS_N433,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.PAYLOAD_DLC_N433,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205B0,6205B0,4ff,SECURITY_LOG_N433.PAYLOAD_VIOLATED_FRAME_N433 ,18DAF1D2,199,199,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.BUSLOAD_STATUS_N433,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.BUSLOAD_VALUE_CAN1_N433 ,18DAF1D2,208,215,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.BUSLOAD_VALUE_CAN2_N433 ,18DAF1D2,216,223,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.BUSLOAD_VALUE_CAN3_N433 ,18DAF1D2,224,231,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.BUSLOAD_VALUE_CAN4_N433 ,18DAF1D2,232,239,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.BUSLOAD_VALUE_CAN5_N433 ,18DAF1D2,240,247,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.BUSLOAD_VALUE_CAN6_N433 ,18DAF1D2,248,255,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.BUSLOAD_VALUE_CAN7_N433 ,18DAF1D2,256,263,1,0,0,,2205B0,6205B0,ff,SECURITY_LOG_N433.BUSLOAD_VALUE_CAN8_N433 ,18DAF1D2,24,47,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.ABOLUTE_TIME_N434 ,18DAF1D2,48,71,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.MILEAGE_N434 ,18DAF1D2,76,78,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.VIOLATION_TYPE_N434,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.SIZE_IDENTIFIER_N434,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205B1,6205B1,4ff,SECURITY_LOG_N434.IDENTIFIER_VIOLATED_FRAME_N434 ,18DAF1D2,112,119,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.VIOLATED_BUS_N434,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.PAYLOAD_DLC_N434,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205B1,6205B1,4ff,SECURITY_LOG_N434.PAYLOAD_VIOLATED_FRAME_N434 ,18DAF1D2,199,199,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.BUSLOAD_STATUS_N434,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.BUSLOAD_VALUE_CAN1_N434 ,18DAF1D2,208,215,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.BUSLOAD_VALUE_CAN2_N434 ,18DAF1D2,216,223,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.BUSLOAD_VALUE_CAN3_N434 ,18DAF1D2,224,231,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.BUSLOAD_VALUE_CAN4_N434 ,18DAF1D2,232,239,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.BUSLOAD_VALUE_CAN5_N434 ,18DAF1D2,240,247,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.BUSLOAD_VALUE_CAN6_N434 ,18DAF1D2,248,255,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.BUSLOAD_VALUE_CAN7_N434 ,18DAF1D2,256,263,1,0,0,,2205B1,6205B1,ff,SECURITY_LOG_N434.BUSLOAD_VALUE_CAN8_N434 ,18DAF1D2,24,47,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.ABOLUTE_TIME_N435 ,18DAF1D2,48,71,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.MILEAGE_N435 ,18DAF1D2,76,78,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.VIOLATION_TYPE_N435,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.SIZE_IDENTIFIER_N435,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205B2,6205B2,4ff,SECURITY_LOG_N435.IDENTIFIER_VIOLATED_FRAME_N435 ,18DAF1D2,112,119,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.VIOLATED_BUS_N435,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.PAYLOAD_DLC_N435,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205B2,6205B2,4ff,SECURITY_LOG_N435.PAYLOAD_VIOLATED_FRAME_N435 ,18DAF1D2,199,199,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.BUSLOAD_STATUS_N435,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.BUSLOAD_VALUE_CAN1_N435 ,18DAF1D2,208,215,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.BUSLOAD_VALUE_CAN2_N435 ,18DAF1D2,216,223,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.BUSLOAD_VALUE_CAN3_N435 ,18DAF1D2,224,231,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.BUSLOAD_VALUE_CAN4_N435 ,18DAF1D2,232,239,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.BUSLOAD_VALUE_CAN5_N435 ,18DAF1D2,240,247,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.BUSLOAD_VALUE_CAN6_N435 ,18DAF1D2,248,255,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.BUSLOAD_VALUE_CAN7_N435 ,18DAF1D2,256,263,1,0,0,,2205B2,6205B2,ff,SECURITY_LOG_N435.BUSLOAD_VALUE_CAN8_N435 ,18DAF1D2,24,47,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.ABOLUTE_TIME_N436 ,18DAF1D2,48,71,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.MILEAGE_N436 ,18DAF1D2,76,78,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.VIOLATION_TYPE_N436,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.SIZE_IDENTIFIER_N436,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205B3,6205B3,4ff,SECURITY_LOG_N436.IDENTIFIER_VIOLATED_FRAME_N436 ,18DAF1D2,112,119,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.VIOLATED_BUS_N436,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.PAYLOAD_DLC_N436,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205B3,6205B3,4ff,SECURITY_LOG_N436.PAYLOAD_VIOLATED_FRAME_N436 ,18DAF1D2,199,199,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.BUSLOAD_STATUS_N436,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.BUSLOAD_VALUE_CAN1_N436 ,18DAF1D2,208,215,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.BUSLOAD_VALUE_CAN2_N436 ,18DAF1D2,216,223,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.BUSLOAD_VALUE_CAN3_N436 ,18DAF1D2,224,231,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.BUSLOAD_VALUE_CAN4_N436 ,18DAF1D2,232,239,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.BUSLOAD_VALUE_CAN5_N436 ,18DAF1D2,240,247,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.BUSLOAD_VALUE_CAN6_N436 ,18DAF1D2,248,255,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.BUSLOAD_VALUE_CAN7_N436 ,18DAF1D2,256,263,1,0,0,,2205B3,6205B3,ff,SECURITY_LOG_N436.BUSLOAD_VALUE_CAN8_N436 ,18DAF1D2,24,47,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.ABOLUTE_TIME_N437 ,18DAF1D2,48,71,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.MILEAGE_N437 ,18DAF1D2,76,78,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.VIOLATION_TYPE_N437,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.SIZE_IDENTIFIER_N437,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205B4,6205B4,4ff,SECURITY_LOG_N437.IDENTIFIER_VIOLATED_FRAME_N437 ,18DAF1D2,112,119,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.VIOLATED_BUS_N437,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.PAYLOAD_DLC_N437,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205B4,6205B4,4ff,SECURITY_LOG_N437.PAYLOAD_VIOLATED_FRAME_N437 ,18DAF1D2,199,199,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.BUSLOAD_STATUS_N437,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.BUSLOAD_VALUE_CAN1_N437 ,18DAF1D2,208,215,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.BUSLOAD_VALUE_CAN2_N437 ,18DAF1D2,216,223,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.BUSLOAD_VALUE_CAN3_N437 ,18DAF1D2,224,231,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.BUSLOAD_VALUE_CAN4_N437 ,18DAF1D2,232,239,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.BUSLOAD_VALUE_CAN5_N437 ,18DAF1D2,240,247,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.BUSLOAD_VALUE_CAN6_N437 ,18DAF1D2,248,255,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.BUSLOAD_VALUE_CAN7_N437 ,18DAF1D2,256,263,1,0,0,,2205B4,6205B4,ff,SECURITY_LOG_N437.BUSLOAD_VALUE_CAN8_N437 ,18DAF1D2,24,47,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.ABOLUTE_TIME_N438 ,18DAF1D2,48,71,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.MILEAGE_N438 ,18DAF1D2,76,78,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.VIOLATION_TYPE_N438,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.SIZE_IDENTIFIER_N438,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205B5,6205B5,4ff,SECURITY_LOG_N438.IDENTIFIER_VIOLATED_FRAME_N438 ,18DAF1D2,112,119,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.VIOLATED_BUS_N438,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.PAYLOAD_DLC_N438,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205B5,6205B5,4ff,SECURITY_LOG_N438.PAYLOAD_VIOLATED_FRAME_N438 ,18DAF1D2,199,199,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.BUSLOAD_STATUS_N438,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.BUSLOAD_VALUE_CAN1_N438 ,18DAF1D2,208,215,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.BUSLOAD_VALUE_CAN2_N438 ,18DAF1D2,216,223,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.BUSLOAD_VALUE_CAN3_N438 ,18DAF1D2,224,231,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.BUSLOAD_VALUE_CAN4_N438 ,18DAF1D2,232,239,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.BUSLOAD_VALUE_CAN5_N438 ,18DAF1D2,240,247,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.BUSLOAD_VALUE_CAN6_N438 ,18DAF1D2,248,255,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.BUSLOAD_VALUE_CAN7_N438 ,18DAF1D2,256,263,1,0,0,,2205B5,6205B5,ff,SECURITY_LOG_N438.BUSLOAD_VALUE_CAN8_N438 ,18DAF1D2,24,47,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.ABOLUTE_TIME_N439 ,18DAF1D2,48,71,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.MILEAGE_N439 ,18DAF1D2,76,78,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.VIOLATION_TYPE_N439,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.SIZE_IDENTIFIER_N439,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205B6,6205B6,4ff,SECURITY_LOG_N439.IDENTIFIER_VIOLATED_FRAME_N439 ,18DAF1D2,112,119,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.VIOLATED_BUS_N439,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.PAYLOAD_DLC_N439,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205B6,6205B6,4ff,SECURITY_LOG_N439.PAYLOAD_VIOLATED_FRAME_N439 ,18DAF1D2,199,199,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.BUSLOAD_STATUS_N439,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.BUSLOAD_VALUE_CAN1_N439 ,18DAF1D2,208,215,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.BUSLOAD_VALUE_CAN2_N439 ,18DAF1D2,216,223,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.BUSLOAD_VALUE_CAN3_N439 ,18DAF1D2,224,231,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.BUSLOAD_VALUE_CAN4_N439 ,18DAF1D2,232,239,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.BUSLOAD_VALUE_CAN5_N439 ,18DAF1D2,240,247,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.BUSLOAD_VALUE_CAN6_N439 ,18DAF1D2,248,255,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.BUSLOAD_VALUE_CAN7_N439 ,18DAF1D2,256,263,1,0,0,,2205B6,6205B6,ff,SECURITY_LOG_N439.BUSLOAD_VALUE_CAN8_N439 ,18DAF1D2,24,47,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.ABOLUTE_TIME_N440 ,18DAF1D2,48,71,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.MILEAGE_N440 ,18DAF1D2,76,78,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.VIOLATION_TYPE_N440,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.SIZE_IDENTIFIER_N440,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205B7,6205B7,4ff,SECURITY_LOG_N440.IDENTIFIER_VIOLATED_FRAME_N440 ,18DAF1D2,112,119,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.VIOLATED_BUS_N440,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.PAYLOAD_DLC_N440,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205B7,6205B7,4ff,SECURITY_LOG_N440.PAYLOAD_VIOLATED_FRAME_N440 ,18DAF1D2,199,199,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.BUSLOAD_STATUS_N440,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.BUSLOAD_VALUE_CAN1_N440 ,18DAF1D2,208,215,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.BUSLOAD_VALUE_CAN2_N440 ,18DAF1D2,216,223,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.BUSLOAD_VALUE_CAN3_N440 ,18DAF1D2,224,231,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.BUSLOAD_VALUE_CAN4_N440 ,18DAF1D2,232,239,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.BUSLOAD_VALUE_CAN5_N440 ,18DAF1D2,240,247,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.BUSLOAD_VALUE_CAN6_N440 ,18DAF1D2,248,255,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.BUSLOAD_VALUE_CAN7_N440 ,18DAF1D2,256,263,1,0,0,,2205B7,6205B7,ff,SECURITY_LOG_N440.BUSLOAD_VALUE_CAN8_N440 ,18DAF1D2,24,47,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.ABOLUTE_TIME_N441 ,18DAF1D2,48,71,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.MILEAGE_N441 ,18DAF1D2,76,78,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.VIOLATION_TYPE_N441,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.SIZE_IDENTIFIER_N441,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205B8,6205B8,4ff,SECURITY_LOG_N441.IDENTIFIER_VIOLATED_FRAME_N441 ,18DAF1D2,112,119,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.VIOLATED_BUS_N441,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.PAYLOAD_DLC_N441,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205B8,6205B8,4ff,SECURITY_LOG_N441.PAYLOAD_VIOLATED_FRAME_N441 ,18DAF1D2,199,199,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.BUSLOAD_STATUS_N441,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.BUSLOAD_VALUE_CAN1_N441 ,18DAF1D2,208,215,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.BUSLOAD_VALUE_CAN2_N441 ,18DAF1D2,216,223,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.BUSLOAD_VALUE_CAN3_N441 ,18DAF1D2,224,231,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.BUSLOAD_VALUE_CAN4_N441 ,18DAF1D2,232,239,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.BUSLOAD_VALUE_CAN5_N441 ,18DAF1D2,240,247,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.BUSLOAD_VALUE_CAN6_N441 ,18DAF1D2,248,255,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.BUSLOAD_VALUE_CAN7_N441 ,18DAF1D2,256,263,1,0,0,,2205B8,6205B8,ff,SECURITY_LOG_N441.BUSLOAD_VALUE_CAN8_N441 ,18DAF1D2,24,47,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.ABOLUTE_TIME_N442 ,18DAF1D2,48,71,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.MILEAGE_N442 ,18DAF1D2,76,78,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.VIOLATION_TYPE_N442,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.SIZE_IDENTIFIER_N442,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205B9,6205B9,4ff,SECURITY_LOG_N442.IDENTIFIER_VIOLATED_FRAME_N442 ,18DAF1D2,112,119,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.VIOLATED_BUS_N442,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.PAYLOAD_DLC_N442,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205B9,6205B9,4ff,SECURITY_LOG_N442.PAYLOAD_VIOLATED_FRAME_N442 ,18DAF1D2,199,199,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.BUSLOAD_STATUS_N442,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.BUSLOAD_VALUE_CAN1_N442 ,18DAF1D2,208,215,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.BUSLOAD_VALUE_CAN2_N442 ,18DAF1D2,216,223,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.BUSLOAD_VALUE_CAN3_N442 ,18DAF1D2,224,231,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.BUSLOAD_VALUE_CAN4_N442 ,18DAF1D2,232,239,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.BUSLOAD_VALUE_CAN5_N442 ,18DAF1D2,240,247,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.BUSLOAD_VALUE_CAN6_N442 ,18DAF1D2,248,255,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.BUSLOAD_VALUE_CAN7_N442 ,18DAF1D2,256,263,1,0,0,,2205B9,6205B9,ff,SECURITY_LOG_N442.BUSLOAD_VALUE_CAN8_N442 ,18DAF1D2,24,47,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.ABOLUTE_TIME_N443 ,18DAF1D2,48,71,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.MILEAGE_N443 ,18DAF1D2,76,78,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.VIOLATION_TYPE_N443,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.SIZE_IDENTIFIER_N443,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205BA,6205BA,4ff,SECURITY_LOG_N443.IDENTIFIER_VIOLATED_FRAME_N443 ,18DAF1D2,112,119,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.VIOLATED_BUS_N443,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.PAYLOAD_DLC_N443,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205BA,6205BA,4ff,SECURITY_LOG_N443.PAYLOAD_VIOLATED_FRAME_N443 ,18DAF1D2,199,199,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.BUSLOAD_STATUS_N443,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.BUSLOAD_VALUE_CAN1_N443 ,18DAF1D2,208,215,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.BUSLOAD_VALUE_CAN2_N443 ,18DAF1D2,216,223,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.BUSLOAD_VALUE_CAN3_N443 ,18DAF1D2,224,231,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.BUSLOAD_VALUE_CAN4_N443 ,18DAF1D2,232,239,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.BUSLOAD_VALUE_CAN5_N443 ,18DAF1D2,240,247,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.BUSLOAD_VALUE_CAN6_N443 ,18DAF1D2,248,255,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.BUSLOAD_VALUE_CAN7_N443 ,18DAF1D2,256,263,1,0,0,,2205BA,6205BA,ff,SECURITY_LOG_N443.BUSLOAD_VALUE_CAN8_N443 ,18DAF1D2,24,47,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.ABOLUTE_TIME_N444 ,18DAF1D2,48,71,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.MILEAGE_N444 ,18DAF1D2,76,78,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.VIOLATION_TYPE_N444,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.SIZE_IDENTIFIER_N444,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205BB,6205BB,4ff,SECURITY_LOG_N444.IDENTIFIER_VIOLATED_FRAME_N444 ,18DAF1D2,112,119,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.VIOLATED_BUS_N444,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.PAYLOAD_DLC_N444,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205BB,6205BB,4ff,SECURITY_LOG_N444.PAYLOAD_VIOLATED_FRAME_N444 ,18DAF1D2,199,199,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.BUSLOAD_STATUS_N444,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.BUSLOAD_VALUE_CAN1_N444 ,18DAF1D2,208,215,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.BUSLOAD_VALUE_CAN2_N444 ,18DAF1D2,216,223,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.BUSLOAD_VALUE_CAN3_N444 ,18DAF1D2,224,231,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.BUSLOAD_VALUE_CAN4_N444 ,18DAF1D2,232,239,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.BUSLOAD_VALUE_CAN5_N444 ,18DAF1D2,240,247,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.BUSLOAD_VALUE_CAN6_N444 ,18DAF1D2,248,255,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.BUSLOAD_VALUE_CAN7_N444 ,18DAF1D2,256,263,1,0,0,,2205BB,6205BB,ff,SECURITY_LOG_N444.BUSLOAD_VALUE_CAN8_N444 ,18DAF1D2,24,47,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.ABOLUTE_TIME_N445 ,18DAF1D2,48,71,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.MILEAGE_N445 ,18DAF1D2,76,78,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.VIOLATION_TYPE_N445,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.SIZE_IDENTIFIER_N445,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205BC,6205BC,4ff,SECURITY_LOG_N445.IDENTIFIER_VIOLATED_FRAME_N445 ,18DAF1D2,112,119,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.VIOLATED_BUS_N445,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.PAYLOAD_DLC_N445,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205BC,6205BC,4ff,SECURITY_LOG_N445.PAYLOAD_VIOLATED_FRAME_N445 ,18DAF1D2,199,199,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.BUSLOAD_STATUS_N445,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.BUSLOAD_VALUE_CAN1_N445 ,18DAF1D2,208,215,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.BUSLOAD_VALUE_CAN2_N445 ,18DAF1D2,216,223,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.BUSLOAD_VALUE_CAN3_N445 ,18DAF1D2,224,231,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.BUSLOAD_VALUE_CAN4_N445 ,18DAF1D2,232,239,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.BUSLOAD_VALUE_CAN5_N445 ,18DAF1D2,240,247,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.BUSLOAD_VALUE_CAN6_N445 ,18DAF1D2,248,255,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.BUSLOAD_VALUE_CAN7_N445 ,18DAF1D2,256,263,1,0,0,,2205BC,6205BC,ff,SECURITY_LOG_N445.BUSLOAD_VALUE_CAN8_N445 ,18DAF1D2,24,47,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.ABOLUTE_TIME_N446 ,18DAF1D2,48,71,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.MILEAGE_N446 ,18DAF1D2,76,78,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.VIOLATION_TYPE_N446,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.SIZE_IDENTIFIER_N446,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205BD,6205BD,4ff,SECURITY_LOG_N446.IDENTIFIER_VIOLATED_FRAME_N446 ,18DAF1D2,112,119,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.VIOLATED_BUS_N446,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.PAYLOAD_DLC_N446,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205BD,6205BD,4ff,SECURITY_LOG_N446.PAYLOAD_VIOLATED_FRAME_N446 ,18DAF1D2,199,199,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.BUSLOAD_STATUS_N446,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.BUSLOAD_VALUE_CAN1_N446 ,18DAF1D2,208,215,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.BUSLOAD_VALUE_CAN2_N446 ,18DAF1D2,216,223,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.BUSLOAD_VALUE_CAN3_N446 ,18DAF1D2,224,231,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.BUSLOAD_VALUE_CAN4_N446 ,18DAF1D2,232,239,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.BUSLOAD_VALUE_CAN5_N446 ,18DAF1D2,240,247,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.BUSLOAD_VALUE_CAN6_N446 ,18DAF1D2,248,255,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.BUSLOAD_VALUE_CAN7_N446 ,18DAF1D2,256,263,1,0,0,,2205BD,6205BD,ff,SECURITY_LOG_N446.BUSLOAD_VALUE_CAN8_N446 ,18DAF1D2,24,47,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.ABOLUTE_TIME_N447 ,18DAF1D2,48,71,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.MILEAGE_N447 ,18DAF1D2,76,78,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.VIOLATION_TYPE_N447,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.SIZE_IDENTIFIER_N447,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205BE,6205BE,4ff,SECURITY_LOG_N447.IDENTIFIER_VIOLATED_FRAME_N447 ,18DAF1D2,112,119,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.VIOLATED_BUS_N447,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.PAYLOAD_DLC_N447,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205BE,6205BE,4ff,SECURITY_LOG_N447.PAYLOAD_VIOLATED_FRAME_N447 ,18DAF1D2,199,199,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.BUSLOAD_STATUS_N447,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.BUSLOAD_VALUE_CAN1_N447 ,18DAF1D2,208,215,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.BUSLOAD_VALUE_CAN2_N447 ,18DAF1D2,216,223,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.BUSLOAD_VALUE_CAN3_N447 ,18DAF1D2,224,231,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.BUSLOAD_VALUE_CAN4_N447 ,18DAF1D2,232,239,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.BUSLOAD_VALUE_CAN5_N447 ,18DAF1D2,240,247,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.BUSLOAD_VALUE_CAN6_N447 ,18DAF1D2,248,255,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.BUSLOAD_VALUE_CAN7_N447 ,18DAF1D2,256,263,1,0,0,,2205BE,6205BE,ff,SECURITY_LOG_N447.BUSLOAD_VALUE_CAN8_N447 ,18DAF1D2,24,47,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.ABOLUTE_TIME_N448 ,18DAF1D2,48,71,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.MILEAGE_N448 ,18DAF1D2,76,78,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.VIOLATION_TYPE_N448,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.SIZE_IDENTIFIER_N448,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205BF,6205BF,4ff,SECURITY_LOG_N448.IDENTIFIER_VIOLATED_FRAME_N448 ,18DAF1D2,112,119,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.VIOLATED_BUS_N448,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.PAYLOAD_DLC_N448,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205BF,6205BF,4ff,SECURITY_LOG_N448.PAYLOAD_VIOLATED_FRAME_N448 ,18DAF1D2,199,199,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.BUSLOAD_STATUS_N448,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.BUSLOAD_VALUE_CAN1_N448 ,18DAF1D2,208,215,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.BUSLOAD_VALUE_CAN2_N448 ,18DAF1D2,216,223,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.BUSLOAD_VALUE_CAN3_N448 ,18DAF1D2,224,231,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.BUSLOAD_VALUE_CAN4_N448 ,18DAF1D2,232,239,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.BUSLOAD_VALUE_CAN5_N448 ,18DAF1D2,240,247,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.BUSLOAD_VALUE_CAN6_N448 ,18DAF1D2,248,255,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.BUSLOAD_VALUE_CAN7_N448 ,18DAF1D2,256,263,1,0,0,,2205BF,6205BF,ff,SECURITY_LOG_N448.BUSLOAD_VALUE_CAN8_N448 ,18DAF1D2,24,47,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.ABOLUTE_TIME_N449 ,18DAF1D2,48,71,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.MILEAGE_N449 ,18DAF1D2,76,78,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.VIOLATION_TYPE_N449,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.SIZE_IDENTIFIER_N449,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205C0,6205C0,4ff,SECURITY_LOG_N449.IDENTIFIER_VIOLATED_FRAME_N449 ,18DAF1D2,112,119,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.VIOLATED_BUS_N449,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.PAYLOAD_DLC_N449,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205C0,6205C0,4ff,SECURITY_LOG_N449.PAYLOAD_VIOLATED_FRAME_N449 ,18DAF1D2,199,199,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.BUSLOAD_STATUS_N449,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.BUSLOAD_VALUE_CAN1_N449 ,18DAF1D2,208,215,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.BUSLOAD_VALUE_CAN2_N449 ,18DAF1D2,216,223,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.BUSLOAD_VALUE_CAN3_N449 ,18DAF1D2,224,231,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.BUSLOAD_VALUE_CAN4_N449 ,18DAF1D2,232,239,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.BUSLOAD_VALUE_CAN5_N449 ,18DAF1D2,240,247,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.BUSLOAD_VALUE_CAN6_N449 ,18DAF1D2,248,255,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.BUSLOAD_VALUE_CAN7_N449 ,18DAF1D2,256,263,1,0,0,,2205C0,6205C0,ff,SECURITY_LOG_N449.BUSLOAD_VALUE_CAN8_N449 ,18DAF1D2,24,47,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.ABOLUTE_TIME_N450 ,18DAF1D2,48,71,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.MILEAGE_N450 ,18DAF1D2,76,78,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.VIOLATION_TYPE_N450,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.SIZE_IDENTIFIER_N450,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205C1,6205C1,4ff,SECURITY_LOG_N450.IDENTIFIER_VIOLATED_FRAME_N450 ,18DAF1D2,112,119,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.VIOLATED_BUS_N450,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.PAYLOAD_DLC_N450,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205C1,6205C1,4ff,SECURITY_LOG_N450.PAYLOAD_VIOLATED_FRAME_N450 ,18DAF1D2,199,199,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.BUSLOAD_STATUS_N450,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.BUSLOAD_VALUE_CAN1_N450 ,18DAF1D2,208,215,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.BUSLOAD_VALUE_CAN2_N450 ,18DAF1D2,216,223,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.BUSLOAD_VALUE_CAN3_N450 ,18DAF1D2,224,231,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.BUSLOAD_VALUE_CAN4_N450 ,18DAF1D2,232,239,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.BUSLOAD_VALUE_CAN5_N450 ,18DAF1D2,240,247,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.BUSLOAD_VALUE_CAN6_N450 ,18DAF1D2,248,255,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.BUSLOAD_VALUE_CAN7_N450 ,18DAF1D2,256,263,1,0,0,,2205C1,6205C1,ff,SECURITY_LOG_N450.BUSLOAD_VALUE_CAN8_N450 ,18DAF1D2,24,47,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.ABOLUTE_TIME_N451 ,18DAF1D2,48,71,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.MILEAGE_N451 ,18DAF1D2,76,78,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.VIOLATION_TYPE_N451,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.SIZE_IDENTIFIER_N451,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205C2,6205C2,4ff,SECURITY_LOG_N451.IDENTIFIER_VIOLATED_FRAME_N451 ,18DAF1D2,112,119,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.VIOLATED_BUS_N451,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.PAYLOAD_DLC_N451,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205C2,6205C2,4ff,SECURITY_LOG_N451.PAYLOAD_VIOLATED_FRAME_N451 ,18DAF1D2,199,199,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.BUSLOAD_STATUS_N451,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.BUSLOAD_VALUE_CAN1_N451 ,18DAF1D2,208,215,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.BUSLOAD_VALUE_CAN2_N451 ,18DAF1D2,216,223,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.BUSLOAD_VALUE_CAN3_N451 ,18DAF1D2,224,231,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.BUSLOAD_VALUE_CAN4_N451 ,18DAF1D2,232,239,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.BUSLOAD_VALUE_CAN5_N451 ,18DAF1D2,240,247,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.BUSLOAD_VALUE_CAN6_N451 ,18DAF1D2,248,255,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.BUSLOAD_VALUE_CAN7_N451 ,18DAF1D2,256,263,1,0,0,,2205C2,6205C2,ff,SECURITY_LOG_N451.BUSLOAD_VALUE_CAN8_N451 ,18DAF1D2,24,47,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.ABOLUTE_TIME_N452 ,18DAF1D2,48,71,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.MILEAGE_N452 ,18DAF1D2,76,78,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.VIOLATION_TYPE_N452,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.SIZE_IDENTIFIER_N452,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205C3,6205C3,4ff,SECURITY_LOG_N452.IDENTIFIER_VIOLATED_FRAME_N452 ,18DAF1D2,112,119,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.VIOLATED_BUS_N452,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.PAYLOAD_DLC_N452,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205C3,6205C3,4ff,SECURITY_LOG_N452.PAYLOAD_VIOLATED_FRAME_N452 ,18DAF1D2,199,199,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.BUSLOAD_STATUS_N452,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.BUSLOAD_VALUE_CAN1_N452 ,18DAF1D2,208,215,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.BUSLOAD_VALUE_CAN2_N452 ,18DAF1D2,216,223,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.BUSLOAD_VALUE_CAN3_N452 ,18DAF1D2,224,231,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.BUSLOAD_VALUE_CAN4_N452 ,18DAF1D2,232,239,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.BUSLOAD_VALUE_CAN5_N452 ,18DAF1D2,240,247,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.BUSLOAD_VALUE_CAN6_N452 ,18DAF1D2,248,255,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.BUSLOAD_VALUE_CAN7_N452 ,18DAF1D2,256,263,1,0,0,,2205C3,6205C3,ff,SECURITY_LOG_N452.BUSLOAD_VALUE_CAN8_N452 ,18DAF1D2,24,47,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.ABOLUTE_TIME_N453 ,18DAF1D2,48,71,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.MILEAGE_N453 ,18DAF1D2,76,78,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.VIOLATION_TYPE_N453,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.SIZE_IDENTIFIER_N453,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205C4,6205C4,4ff,SECURITY_LOG_N453.IDENTIFIER_VIOLATED_FRAME_N453 ,18DAF1D2,112,119,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.VIOLATED_BUS_N453,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.PAYLOAD_DLC_N453,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205C4,6205C4,4ff,SECURITY_LOG_N453.PAYLOAD_VIOLATED_FRAME_N453 ,18DAF1D2,199,199,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.BUSLOAD_STATUS_N453,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.BUSLOAD_VALUE_CAN1_N453 ,18DAF1D2,208,215,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.BUSLOAD_VALUE_CAN2_N453 ,18DAF1D2,216,223,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.BUSLOAD_VALUE_CAN3_N453 ,18DAF1D2,224,231,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.BUSLOAD_VALUE_CAN4_N453 ,18DAF1D2,232,239,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.BUSLOAD_VALUE_CAN5_N453 ,18DAF1D2,240,247,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.BUSLOAD_VALUE_CAN6_N453 ,18DAF1D2,248,255,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.BUSLOAD_VALUE_CAN7_N453 ,18DAF1D2,256,263,1,0,0,,2205C4,6205C4,ff,SECURITY_LOG_N453.BUSLOAD_VALUE_CAN8_N453 ,18DAF1D2,24,47,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.ABOLUTE_TIME_N454 ,18DAF1D2,48,71,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.MILEAGE_N454 ,18DAF1D2,76,78,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.VIOLATION_TYPE_N454,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.SIZE_IDENTIFIER_N454,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205C5,6205C5,4ff,SECURITY_LOG_N454.IDENTIFIER_VIOLATED_FRAME_N454 ,18DAF1D2,112,119,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.VIOLATED_BUS_N454,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.PAYLOAD_DLC_N454,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205C5,6205C5,4ff,SECURITY_LOG_N454.PAYLOAD_VIOLATED_FRAME_N454 ,18DAF1D2,199,199,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.BUSLOAD_STATUS_N454,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.BUSLOAD_VALUE_CAN1_N454 ,18DAF1D2,208,215,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.BUSLOAD_VALUE_CAN2_N454 ,18DAF1D2,216,223,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.BUSLOAD_VALUE_CAN3_N454 ,18DAF1D2,224,231,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.BUSLOAD_VALUE_CAN4_N454 ,18DAF1D2,232,239,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.BUSLOAD_VALUE_CAN5_N454 ,18DAF1D2,240,247,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.BUSLOAD_VALUE_CAN6_N454 ,18DAF1D2,248,255,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.BUSLOAD_VALUE_CAN7_N454 ,18DAF1D2,256,263,1,0,0,,2205C5,6205C5,ff,SECURITY_LOG_N454.BUSLOAD_VALUE_CAN8_N454 ,18DAF1D2,24,47,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.ABOLUTE_TIME_N455 ,18DAF1D2,48,71,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.MILEAGE_N455 ,18DAF1D2,76,78,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.VIOLATION_TYPE_N455,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.SIZE_IDENTIFIER_N455,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205C6,6205C6,4ff,SECURITY_LOG_N455.IDENTIFIER_VIOLATED_FRAME_N455 ,18DAF1D2,112,119,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.VIOLATED_BUS_N455,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.PAYLOAD_DLC_N455,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205C6,6205C6,4ff,SECURITY_LOG_N455.PAYLOAD_VIOLATED_FRAME_N455 ,18DAF1D2,199,199,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.BUSLOAD_STATUS_N455,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.BUSLOAD_VALUE_CAN1_N455 ,18DAF1D2,208,215,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.BUSLOAD_VALUE_CAN2_N455 ,18DAF1D2,216,223,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.BUSLOAD_VALUE_CAN3_N455 ,18DAF1D2,224,231,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.BUSLOAD_VALUE_CAN4_N455 ,18DAF1D2,232,239,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.BUSLOAD_VALUE_CAN5_N455 ,18DAF1D2,240,247,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.BUSLOAD_VALUE_CAN6_N455 ,18DAF1D2,248,255,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.BUSLOAD_VALUE_CAN7_N455 ,18DAF1D2,256,263,1,0,0,,2205C6,6205C6,ff,SECURITY_LOG_N455.BUSLOAD_VALUE_CAN8_N455 ,18DAF1D2,24,47,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.ABOLUTE_TIME_N456 ,18DAF1D2,48,71,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.MILEAGE_N456 ,18DAF1D2,76,78,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.VIOLATION_TYPE_N456,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.SIZE_IDENTIFIER_N456,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205C7,6205C7,4ff,SECURITY_LOG_N456.IDENTIFIER_VIOLATED_FRAME_N456 ,18DAF1D2,112,119,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.VIOLATED_BUS_N456,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.PAYLOAD_DLC_N456,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205C7,6205C7,4ff,SECURITY_LOG_N456.PAYLOAD_VIOLATED_FRAME_N456 ,18DAF1D2,199,199,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.BUSLOAD_STATUS_N456,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.BUSLOAD_VALUE_CAN1_N456 ,18DAF1D2,208,215,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.BUSLOAD_VALUE_CAN2_N456 ,18DAF1D2,216,223,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.BUSLOAD_VALUE_CAN3_N456 ,18DAF1D2,224,231,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.BUSLOAD_VALUE_CAN4_N456 ,18DAF1D2,232,239,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.BUSLOAD_VALUE_CAN5_N456 ,18DAF1D2,240,247,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.BUSLOAD_VALUE_CAN6_N456 ,18DAF1D2,248,255,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.BUSLOAD_VALUE_CAN7_N456 ,18DAF1D2,256,263,1,0,0,,2205C7,6205C7,ff,SECURITY_LOG_N456.BUSLOAD_VALUE_CAN8_N456 ,18DAF1D2,24,47,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.ABOLUTE_TIME_N457 ,18DAF1D2,48,71,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.MILEAGE_N457 ,18DAF1D2,76,78,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.VIOLATION_TYPE_N457,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.SIZE_IDENTIFIER_N457,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205C8,6205C8,4ff,SECURITY_LOG_N457.IDENTIFIER_VIOLATED_FRAME_N457 ,18DAF1D2,112,119,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.VIOLATED_BUS_N457,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.PAYLOAD_DLC_N457,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205C8,6205C8,4ff,SECURITY_LOG_N457.PAYLOAD_VIOLATED_FRAME_N457 ,18DAF1D2,199,199,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.BUSLOAD_STATUS_N457,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.BUSLOAD_VALUE_CAN1_N457 ,18DAF1D2,208,215,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.BUSLOAD_VALUE_CAN2_N457 ,18DAF1D2,216,223,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.BUSLOAD_VALUE_CAN3_N457 ,18DAF1D2,224,231,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.BUSLOAD_VALUE_CAN4_N457 ,18DAF1D2,232,239,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.BUSLOAD_VALUE_CAN5_N457 ,18DAF1D2,240,247,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.BUSLOAD_VALUE_CAN6_N457 ,18DAF1D2,248,255,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.BUSLOAD_VALUE_CAN7_N457 ,18DAF1D2,256,263,1,0,0,,2205C8,6205C8,ff,SECURITY_LOG_N457.BUSLOAD_VALUE_CAN8_N457 ,18DAF1D2,24,47,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.ABOLUTE_TIME_N458 ,18DAF1D2,48,71,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.MILEAGE_N458 ,18DAF1D2,76,78,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.VIOLATION_TYPE_N458,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.SIZE_IDENTIFIER_N458,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205C9,6205C9,4ff,SECURITY_LOG_N458.IDENTIFIER_VIOLATED_FRAME_N458 ,18DAF1D2,112,119,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.VIOLATED_BUS_N458,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.PAYLOAD_DLC_N458,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205C9,6205C9,4ff,SECURITY_LOG_N458.PAYLOAD_VIOLATED_FRAME_N458 ,18DAF1D2,199,199,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.BUSLOAD_STATUS_N458,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.BUSLOAD_VALUE_CAN1_N458 ,18DAF1D2,208,215,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.BUSLOAD_VALUE_CAN2_N458 ,18DAF1D2,216,223,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.BUSLOAD_VALUE_CAN3_N458 ,18DAF1D2,224,231,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.BUSLOAD_VALUE_CAN4_N458 ,18DAF1D2,232,239,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.BUSLOAD_VALUE_CAN5_N458 ,18DAF1D2,240,247,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.BUSLOAD_VALUE_CAN6_N458 ,18DAF1D2,248,255,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.BUSLOAD_VALUE_CAN7_N458 ,18DAF1D2,256,263,1,0,0,,2205C9,6205C9,ff,SECURITY_LOG_N458.BUSLOAD_VALUE_CAN8_N458 ,18DAF1D2,24,47,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.ABOLUTE_TIME_N459 ,18DAF1D2,48,71,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.MILEAGE_N459 ,18DAF1D2,76,78,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.VIOLATION_TYPE_N459,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.SIZE_IDENTIFIER_N459,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205CA,6205CA,4ff,SECURITY_LOG_N459.IDENTIFIER_VIOLATED_FRAME_N459 ,18DAF1D2,112,119,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.VIOLATED_BUS_N459,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.PAYLOAD_DLC_N459,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205CA,6205CA,4ff,SECURITY_LOG_N459.PAYLOAD_VIOLATED_FRAME_N459 ,18DAF1D2,199,199,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.BUSLOAD_STATUS_N459,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.BUSLOAD_VALUE_CAN1_N459 ,18DAF1D2,208,215,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.BUSLOAD_VALUE_CAN2_N459 ,18DAF1D2,216,223,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.BUSLOAD_VALUE_CAN3_N459 ,18DAF1D2,224,231,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.BUSLOAD_VALUE_CAN4_N459 ,18DAF1D2,232,239,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.BUSLOAD_VALUE_CAN5_N459 ,18DAF1D2,240,247,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.BUSLOAD_VALUE_CAN6_N459 ,18DAF1D2,248,255,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.BUSLOAD_VALUE_CAN7_N459 ,18DAF1D2,256,263,1,0,0,,2205CA,6205CA,ff,SECURITY_LOG_N459.BUSLOAD_VALUE_CAN8_N459 ,18DAF1D2,24,47,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.ABOLUTE_TIME_N460 ,18DAF1D2,48,71,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.MILEAGE_N460 ,18DAF1D2,76,78,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.VIOLATION_TYPE_N460,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.SIZE_IDENTIFIER_N460,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205CB,6205CB,4ff,SECURITY_LOG_N460.IDENTIFIER_VIOLATED_FRAME_N460 ,18DAF1D2,112,119,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.VIOLATED_BUS_N460,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.PAYLOAD_DLC_N460,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205CB,6205CB,4ff,SECURITY_LOG_N460.PAYLOAD_VIOLATED_FRAME_N460 ,18DAF1D2,199,199,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.BUSLOAD_STATUS_N460,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.BUSLOAD_VALUE_CAN1_N460 ,18DAF1D2,208,215,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.BUSLOAD_VALUE_CAN2_N460 ,18DAF1D2,216,223,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.BUSLOAD_VALUE_CAN3_N460 ,18DAF1D2,224,231,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.BUSLOAD_VALUE_CAN4_N460 ,18DAF1D2,232,239,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.BUSLOAD_VALUE_CAN5_N460 ,18DAF1D2,240,247,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.BUSLOAD_VALUE_CAN6_N460 ,18DAF1D2,248,255,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.BUSLOAD_VALUE_CAN7_N460 ,18DAF1D2,256,263,1,0,0,,2205CB,6205CB,ff,SECURITY_LOG_N460.BUSLOAD_VALUE_CAN8_N460 ,18DAF1D2,24,47,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.ABOLUTE_TIME_N461 ,18DAF1D2,48,71,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.MILEAGE_N461 ,18DAF1D2,76,78,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.VIOLATION_TYPE_N461,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.SIZE_IDENTIFIER_N461,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205CC,6205CC,4ff,SECURITY_LOG_N461.IDENTIFIER_VIOLATED_FRAME_N461 ,18DAF1D2,112,119,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.VIOLATED_BUS_N461,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.PAYLOAD_DLC_N461,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205CC,6205CC,4ff,SECURITY_LOG_N461.PAYLOAD_VIOLATED_FRAME_N461 ,18DAF1D2,199,199,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.BUSLOAD_STATUS_N461,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.BUSLOAD_VALUE_CAN1_N461 ,18DAF1D2,208,215,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.BUSLOAD_VALUE_CAN2_N461 ,18DAF1D2,216,223,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.BUSLOAD_VALUE_CAN3_N461 ,18DAF1D2,224,231,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.BUSLOAD_VALUE_CAN4_N461 ,18DAF1D2,232,239,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.BUSLOAD_VALUE_CAN5_N461 ,18DAF1D2,240,247,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.BUSLOAD_VALUE_CAN6_N461 ,18DAF1D2,248,255,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.BUSLOAD_VALUE_CAN7_N461 ,18DAF1D2,256,263,1,0,0,,2205CC,6205CC,ff,SECURITY_LOG_N461.BUSLOAD_VALUE_CAN8_N461 ,18DAF1D2,24,47,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.ABOLUTE_TIME_N462 ,18DAF1D2,48,71,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.MILEAGE_N462 ,18DAF1D2,76,78,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.VIOLATION_TYPE_N462,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.SIZE_IDENTIFIER_N462,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205CD,6205CD,4ff,SECURITY_LOG_N462.IDENTIFIER_VIOLATED_FRAME_N462 ,18DAF1D2,112,119,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.VIOLATED_BUS_N462,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.PAYLOAD_DLC_N462,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205CD,6205CD,4ff,SECURITY_LOG_N462.PAYLOAD_VIOLATED_FRAME_N462 ,18DAF1D2,199,199,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.BUSLOAD_STATUS_N462,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.BUSLOAD_VALUE_CAN1_N462 ,18DAF1D2,208,215,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.BUSLOAD_VALUE_CAN2_N462 ,18DAF1D2,216,223,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.BUSLOAD_VALUE_CAN3_N462 ,18DAF1D2,224,231,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.BUSLOAD_VALUE_CAN4_N462 ,18DAF1D2,232,239,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.BUSLOAD_VALUE_CAN5_N462 ,18DAF1D2,240,247,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.BUSLOAD_VALUE_CAN6_N462 ,18DAF1D2,248,255,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.BUSLOAD_VALUE_CAN7_N462 ,18DAF1D2,256,263,1,0,0,,2205CD,6205CD,ff,SECURITY_LOG_N462.BUSLOAD_VALUE_CAN8_N462 ,18DAF1D2,24,47,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.ABOLUTE_TIME_N463 ,18DAF1D2,48,71,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.MILEAGE_N463 ,18DAF1D2,76,78,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.VIOLATION_TYPE_N463,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.SIZE_IDENTIFIER_N463,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205CE,6205CE,4ff,SECURITY_LOG_N463.IDENTIFIER_VIOLATED_FRAME_N463 ,18DAF1D2,112,119,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.VIOLATED_BUS_N463,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.PAYLOAD_DLC_N463,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205CE,6205CE,4ff,SECURITY_LOG_N463.PAYLOAD_VIOLATED_FRAME_N463 ,18DAF1D2,199,199,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.BUSLOAD_STATUS_N463,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.BUSLOAD_VALUE_CAN1_N463 ,18DAF1D2,208,215,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.BUSLOAD_VALUE_CAN2_N463 ,18DAF1D2,216,223,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.BUSLOAD_VALUE_CAN3_N463 ,18DAF1D2,224,231,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.BUSLOAD_VALUE_CAN4_N463 ,18DAF1D2,232,239,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.BUSLOAD_VALUE_CAN5_N463 ,18DAF1D2,240,247,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.BUSLOAD_VALUE_CAN6_N463 ,18DAF1D2,248,255,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.BUSLOAD_VALUE_CAN7_N463 ,18DAF1D2,256,263,1,0,0,,2205CE,6205CE,ff,SECURITY_LOG_N463.BUSLOAD_VALUE_CAN8_N463 ,18DAF1D2,24,47,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.ABOLUTE_TIME_N464 ,18DAF1D2,48,71,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.MILEAGE_N464 ,18DAF1D2,76,78,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.VIOLATION_TYPE_N464,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.SIZE_IDENTIFIER_N464,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205CF,6205CF,4ff,SECURITY_LOG_N464.IDENTIFIER_VIOLATED_FRAME_N464 ,18DAF1D2,112,119,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.VIOLATED_BUS_N464,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.PAYLOAD_DLC_N464,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205CF,6205CF,4ff,SECURITY_LOG_N464.PAYLOAD_VIOLATED_FRAME_N464 ,18DAF1D2,199,199,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.BUSLOAD_STATUS_N464,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.BUSLOAD_VALUE_CAN1_N464 ,18DAF1D2,208,215,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.BUSLOAD_VALUE_CAN2_N464 ,18DAF1D2,216,223,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.BUSLOAD_VALUE_CAN3_N464 ,18DAF1D2,224,231,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.BUSLOAD_VALUE_CAN4_N464 ,18DAF1D2,232,239,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.BUSLOAD_VALUE_CAN5_N464 ,18DAF1D2,240,247,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.BUSLOAD_VALUE_CAN6_N464 ,18DAF1D2,248,255,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.BUSLOAD_VALUE_CAN7_N464 ,18DAF1D2,256,263,1,0,0,,2205CF,6205CF,ff,SECURITY_LOG_N464.BUSLOAD_VALUE_CAN8_N464 ,18DAF1D2,24,47,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.ABOLUTE_TIME_N465 ,18DAF1D2,48,71,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.MILEAGE_N465 ,18DAF1D2,76,78,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.VIOLATION_TYPE_N465,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.SIZE_IDENTIFIER_N465,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205D0,6205D0,4ff,SECURITY_LOG_N465.IDENTIFIER_VIOLATED_FRAME_N465 ,18DAF1D2,112,119,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.VIOLATED_BUS_N465,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.PAYLOAD_DLC_N465,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205D0,6205D0,4ff,SECURITY_LOG_N465.PAYLOAD_VIOLATED_FRAME_N465 ,18DAF1D2,199,199,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.BUSLOAD_STATUS_N465,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.BUSLOAD_VALUE_CAN1_N465 ,18DAF1D2,208,215,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.BUSLOAD_VALUE_CAN2_N465 ,18DAF1D2,216,223,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.BUSLOAD_VALUE_CAN3_N465 ,18DAF1D2,224,231,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.BUSLOAD_VALUE_CAN4_N465 ,18DAF1D2,232,239,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.BUSLOAD_VALUE_CAN5_N465 ,18DAF1D2,240,247,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.BUSLOAD_VALUE_CAN6_N465 ,18DAF1D2,248,255,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.BUSLOAD_VALUE_CAN7_N465 ,18DAF1D2,256,263,1,0,0,,2205D0,6205D0,ff,SECURITY_LOG_N465.BUSLOAD_VALUE_CAN8_N465 ,18DAF1D2,24,47,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.ABOLUTE_TIME_N466 ,18DAF1D2,48,71,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.MILEAGE_N466 ,18DAF1D2,76,78,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.VIOLATION_TYPE_N466,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.SIZE_IDENTIFIER_N466,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205D1,6205D1,4ff,SECURITY_LOG_N466.IDENTIFIER_VIOLATED_FRAME_N466 ,18DAF1D2,112,119,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.VIOLATED_BUS_N466,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.PAYLOAD_DLC_N466,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205D1,6205D1,4ff,SECURITY_LOG_N466.PAYLOAD_VIOLATED_FRAME_N466 ,18DAF1D2,199,199,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.BUSLOAD_STATUS_N466,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.BUSLOAD_VALUE_CAN1_N466 ,18DAF1D2,208,215,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.BUSLOAD_VALUE_CAN2_N466 ,18DAF1D2,216,223,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.BUSLOAD_VALUE_CAN3_N466 ,18DAF1D2,224,231,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.BUSLOAD_VALUE_CAN4_N466 ,18DAF1D2,232,239,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.BUSLOAD_VALUE_CAN5_N466 ,18DAF1D2,240,247,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.BUSLOAD_VALUE_CAN6_N466 ,18DAF1D2,248,255,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.BUSLOAD_VALUE_CAN7_N466 ,18DAF1D2,256,263,1,0,0,,2205D1,6205D1,ff,SECURITY_LOG_N466.BUSLOAD_VALUE_CAN8_N466 ,18DAF1D2,24,47,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.ABOLUTE_TIME_N467 ,18DAF1D2,48,71,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.MILEAGE_N467 ,18DAF1D2,76,78,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.VIOLATION_TYPE_N467,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.SIZE_IDENTIFIER_N467,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205D2,6205D2,4ff,SECURITY_LOG_N467.IDENTIFIER_VIOLATED_FRAME_N467 ,18DAF1D2,112,119,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.VIOLATED_BUS_N467,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.PAYLOAD_DLC_N467,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205D2,6205D2,4ff,SECURITY_LOG_N467.PAYLOAD_VIOLATED_FRAME_N467 ,18DAF1D2,199,199,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.BUSLOAD_STATUS_N467,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.BUSLOAD_VALUE_CAN1_N467 ,18DAF1D2,208,215,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.BUSLOAD_VALUE_CAN2_N467 ,18DAF1D2,216,223,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.BUSLOAD_VALUE_CAN3_N467 ,18DAF1D2,224,231,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.BUSLOAD_VALUE_CAN4_N467 ,18DAF1D2,232,239,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.BUSLOAD_VALUE_CAN5_N467 ,18DAF1D2,240,247,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.BUSLOAD_VALUE_CAN6_N467 ,18DAF1D2,248,255,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.BUSLOAD_VALUE_CAN7_N467 ,18DAF1D2,256,263,1,0,0,,2205D2,6205D2,ff,SECURITY_LOG_N467.BUSLOAD_VALUE_CAN8_N467 ,18DAF1D2,24,47,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.ABOLUTE_TIME_N468 ,18DAF1D2,48,71,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.MILEAGE_N468 ,18DAF1D2,76,78,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.VIOLATION_TYPE_N468,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.SIZE_IDENTIFIER_N468,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205D3,6205D3,4ff,SECURITY_LOG_N468.IDENTIFIER_VIOLATED_FRAME_N468 ,18DAF1D2,112,119,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.VIOLATED_BUS_N468,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.PAYLOAD_DLC_N468,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205D3,6205D3,4ff,SECURITY_LOG_N468.PAYLOAD_VIOLATED_FRAME_N468 ,18DAF1D2,199,199,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.BUSLOAD_STATUS_N468,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.BUSLOAD_VALUE_CAN1_N468 ,18DAF1D2,208,215,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.BUSLOAD_VALUE_CAN2_N468 ,18DAF1D2,216,223,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.BUSLOAD_VALUE_CAN3_N468 ,18DAF1D2,224,231,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.BUSLOAD_VALUE_CAN4_N468 ,18DAF1D2,232,239,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.BUSLOAD_VALUE_CAN5_N468 ,18DAF1D2,240,247,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.BUSLOAD_VALUE_CAN6_N468 ,18DAF1D2,248,255,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.BUSLOAD_VALUE_CAN7_N468 ,18DAF1D2,256,263,1,0,0,,2205D3,6205D3,ff,SECURITY_LOG_N468.BUSLOAD_VALUE_CAN8_N468 ,18DAF1D2,24,47,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.ABOLUTE_TIME_N469 ,18DAF1D2,48,71,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.MILEAGE_N469 ,18DAF1D2,76,78,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.VIOLATION_TYPE_N469,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.SIZE_IDENTIFIER_N469,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205D4,6205D4,4ff,SECURITY_LOG_N469.IDENTIFIER_VIOLATED_FRAME_N469 ,18DAF1D2,112,119,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.VIOLATED_BUS_N469,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.PAYLOAD_DLC_N469,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205D4,6205D4,4ff,SECURITY_LOG_N469.PAYLOAD_VIOLATED_FRAME_N469 ,18DAF1D2,199,199,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.BUSLOAD_STATUS_N469,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.BUSLOAD_VALUE_CAN1_N469 ,18DAF1D2,208,215,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.BUSLOAD_VALUE_CAN2_N469 ,18DAF1D2,216,223,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.BUSLOAD_VALUE_CAN3_N469 ,18DAF1D2,224,231,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.BUSLOAD_VALUE_CAN4_N469 ,18DAF1D2,232,239,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.BUSLOAD_VALUE_CAN5_N469 ,18DAF1D2,240,247,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.BUSLOAD_VALUE_CAN6_N469 ,18DAF1D2,248,255,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.BUSLOAD_VALUE_CAN7_N469 ,18DAF1D2,256,263,1,0,0,,2205D4,6205D4,ff,SECURITY_LOG_N469.BUSLOAD_VALUE_CAN8_N469 ,18DAF1D2,24,47,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.ABOLUTE_TIME_N470 ,18DAF1D2,48,71,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.MILEAGE_N470 ,18DAF1D2,76,78,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.VIOLATION_TYPE_N470,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.SIZE_IDENTIFIER_N470,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205D5,6205D5,4ff,SECURITY_LOG_N470.IDENTIFIER_VIOLATED_FRAME_N470 ,18DAF1D2,112,119,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.VIOLATED_BUS_N470,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.PAYLOAD_DLC_N470,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205D5,6205D5,4ff,SECURITY_LOG_N470.PAYLOAD_VIOLATED_FRAME_N470 ,18DAF1D2,199,199,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.BUSLOAD_STATUS_N470,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.BUSLOAD_VALUE_CAN1_N470 ,18DAF1D2,208,215,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.BUSLOAD_VALUE_CAN2_N470 ,18DAF1D2,216,223,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.BUSLOAD_VALUE_CAN3_N470 ,18DAF1D2,224,231,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.BUSLOAD_VALUE_CAN4_N470 ,18DAF1D2,232,239,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.BUSLOAD_VALUE_CAN5_N470 ,18DAF1D2,240,247,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.BUSLOAD_VALUE_CAN6_N470 ,18DAF1D2,248,255,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.BUSLOAD_VALUE_CAN7_N470 ,18DAF1D2,256,263,1,0,0,,2205D5,6205D5,ff,SECURITY_LOG_N470.BUSLOAD_VALUE_CAN8_N470 ,18DAF1D2,24,47,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.ABOLUTE_TIME_N471 ,18DAF1D2,48,71,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.MILEAGE_N471 ,18DAF1D2,76,78,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.VIOLATION_TYPE_N471,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.SIZE_IDENTIFIER_N471,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205D6,6205D6,4ff,SECURITY_LOG_N471.IDENTIFIER_VIOLATED_FRAME_N471 ,18DAF1D2,112,119,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.VIOLATED_BUS_N471,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.PAYLOAD_DLC_N471,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205D6,6205D6,4ff,SECURITY_LOG_N471.PAYLOAD_VIOLATED_FRAME_N471 ,18DAF1D2,199,199,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.BUSLOAD_STATUS_N471,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.BUSLOAD_VALUE_CAN1_N471 ,18DAF1D2,208,215,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.BUSLOAD_VALUE_CAN2_N471 ,18DAF1D2,216,223,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.BUSLOAD_VALUE_CAN3_N471 ,18DAF1D2,224,231,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.BUSLOAD_VALUE_CAN4_N471 ,18DAF1D2,232,239,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.BUSLOAD_VALUE_CAN5_N471 ,18DAF1D2,240,247,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.BUSLOAD_VALUE_CAN6_N471 ,18DAF1D2,248,255,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.BUSLOAD_VALUE_CAN7_N471 ,18DAF1D2,256,263,1,0,0,,2205D6,6205D6,ff,SECURITY_LOG_N471.BUSLOAD_VALUE_CAN8_N471 ,18DAF1D2,24,47,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.ABOLUTE_TIME_N472 ,18DAF1D2,48,71,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.MILEAGE_N472 ,18DAF1D2,76,78,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.VIOLATION_TYPE_N472,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.SIZE_IDENTIFIER_N472,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205D7,6205D7,4ff,SECURITY_LOG_N472.IDENTIFIER_VIOLATED_FRAME_N472 ,18DAF1D2,112,119,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.VIOLATED_BUS_N472,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.PAYLOAD_DLC_N472,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205D7,6205D7,4ff,SECURITY_LOG_N472.PAYLOAD_VIOLATED_FRAME_N472 ,18DAF1D2,199,199,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.BUSLOAD_STATUS_N472,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.BUSLOAD_VALUE_CAN1_N472 ,18DAF1D2,208,215,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.BUSLOAD_VALUE_CAN2_N472 ,18DAF1D2,216,223,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.BUSLOAD_VALUE_CAN3_N472 ,18DAF1D2,224,231,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.BUSLOAD_VALUE_CAN4_N472 ,18DAF1D2,232,239,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.BUSLOAD_VALUE_CAN5_N472 ,18DAF1D2,240,247,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.BUSLOAD_VALUE_CAN6_N472 ,18DAF1D2,248,255,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.BUSLOAD_VALUE_CAN7_N472 ,18DAF1D2,256,263,1,0,0,,2205D7,6205D7,ff,SECURITY_LOG_N472.BUSLOAD_VALUE_CAN8_N472 ,18DAF1D2,24,47,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.ABOLUTE_TIME_N473 ,18DAF1D2,48,71,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.MILEAGE_N473 ,18DAF1D2,76,78,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.VIOLATION_TYPE_N473,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.SIZE_IDENTIFIER_N473,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205D8,6205D8,4ff,SECURITY_LOG_N473.IDENTIFIER_VIOLATED_FRAME_N473 ,18DAF1D2,112,119,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.VIOLATED_BUS_N473,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.PAYLOAD_DLC_N473,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205D8,6205D8,4ff,SECURITY_LOG_N473.PAYLOAD_VIOLATED_FRAME_N473 ,18DAF1D2,199,199,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.BUSLOAD_STATUS_N473,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.BUSLOAD_VALUE_CAN1_N473 ,18DAF1D2,208,215,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.BUSLOAD_VALUE_CAN2_N473 ,18DAF1D2,216,223,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.BUSLOAD_VALUE_CAN3_N473 ,18DAF1D2,224,231,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.BUSLOAD_VALUE_CAN4_N473 ,18DAF1D2,232,239,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.BUSLOAD_VALUE_CAN5_N473 ,18DAF1D2,240,247,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.BUSLOAD_VALUE_CAN6_N473 ,18DAF1D2,248,255,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.BUSLOAD_VALUE_CAN7_N473 ,18DAF1D2,256,263,1,0,0,,2205D8,6205D8,ff,SECURITY_LOG_N473.BUSLOAD_VALUE_CAN8_N473 ,18DAF1D2,24,47,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.ABOLUTE_TIME_N474 ,18DAF1D2,48,71,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.MILEAGE_N474 ,18DAF1D2,76,78,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.VIOLATION_TYPE_N474,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.SIZE_IDENTIFIER_N474,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205D9,6205D9,4ff,SECURITY_LOG_N474.IDENTIFIER_VIOLATED_FRAME_N474 ,18DAF1D2,112,119,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.VIOLATED_BUS_N474,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.PAYLOAD_DLC_N474,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205D9,6205D9,4ff,SECURITY_LOG_N474.PAYLOAD_VIOLATED_FRAME_N474 ,18DAF1D2,199,199,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.BUSLOAD_STATUS_N474,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.BUSLOAD_VALUE_CAN1_N474 ,18DAF1D2,208,215,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.BUSLOAD_VALUE_CAN2_N474 ,18DAF1D2,216,223,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.BUSLOAD_VALUE_CAN3_N474 ,18DAF1D2,224,231,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.BUSLOAD_VALUE_CAN4_N474 ,18DAF1D2,232,239,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.BUSLOAD_VALUE_CAN5_N474 ,18DAF1D2,240,247,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.BUSLOAD_VALUE_CAN6_N474 ,18DAF1D2,248,255,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.BUSLOAD_VALUE_CAN7_N474 ,18DAF1D2,256,263,1,0,0,,2205D9,6205D9,ff,SECURITY_LOG_N474.BUSLOAD_VALUE_CAN8_N474 ,18DAF1D2,24,47,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.ABOLUTE_TIME_N475 ,18DAF1D2,48,71,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.MILEAGE_N475 ,18DAF1D2,76,78,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.VIOLATION_TYPE_N475,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.SIZE_IDENTIFIER_N475,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205DA,6205DA,4ff,SECURITY_LOG_N475.IDENTIFIER_VIOLATED_FRAME_N475 ,18DAF1D2,112,119,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.VIOLATED_BUS_N475,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.PAYLOAD_DLC_N475,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205DA,6205DA,4ff,SECURITY_LOG_N475.PAYLOAD_VIOLATED_FRAME_N475 ,18DAF1D2,199,199,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.BUSLOAD_STATUS_N475,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.BUSLOAD_VALUE_CAN1_N475 ,18DAF1D2,208,215,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.BUSLOAD_VALUE_CAN2_N475 ,18DAF1D2,216,223,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.BUSLOAD_VALUE_CAN3_N475 ,18DAF1D2,224,231,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.BUSLOAD_VALUE_CAN4_N475 ,18DAF1D2,232,239,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.BUSLOAD_VALUE_CAN5_N475 ,18DAF1D2,240,247,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.BUSLOAD_VALUE_CAN6_N475 ,18DAF1D2,248,255,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.BUSLOAD_VALUE_CAN7_N475 ,18DAF1D2,256,263,1,0,0,,2205DA,6205DA,ff,SECURITY_LOG_N475.BUSLOAD_VALUE_CAN8_N475 ,18DAF1D2,24,47,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.ABOLUTE_TIME_N476 ,18DAF1D2,48,71,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.MILEAGE_N476 ,18DAF1D2,76,78,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.VIOLATION_TYPE_N476,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.SIZE_IDENTIFIER_N476,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205DB,6205DB,4ff,SECURITY_LOG_N476.IDENTIFIER_VIOLATED_FRAME_N476 ,18DAF1D2,112,119,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.VIOLATED_BUS_N476,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.PAYLOAD_DLC_N476,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205DB,6205DB,4ff,SECURITY_LOG_N476.PAYLOAD_VIOLATED_FRAME_N476 ,18DAF1D2,199,199,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.BUSLOAD_STATUS_N476,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.BUSLOAD_VALUE_CAN1_N476 ,18DAF1D2,208,215,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.BUSLOAD_VALUE_CAN2_N476 ,18DAF1D2,216,223,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.BUSLOAD_VALUE_CAN3_N476 ,18DAF1D2,224,231,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.BUSLOAD_VALUE_CAN4_N476 ,18DAF1D2,232,239,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.BUSLOAD_VALUE_CAN5_N476 ,18DAF1D2,240,247,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.BUSLOAD_VALUE_CAN6_N476 ,18DAF1D2,248,255,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.BUSLOAD_VALUE_CAN7_N476 ,18DAF1D2,256,263,1,0,0,,2205DB,6205DB,ff,SECURITY_LOG_N476.BUSLOAD_VALUE_CAN8_N476 ,18DAF1D2,24,47,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.ABOLUTE_TIME_N477 ,18DAF1D2,48,71,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.MILEAGE_N477 ,18DAF1D2,76,78,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.VIOLATION_TYPE_N477,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.SIZE_IDENTIFIER_N477,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205DC,6205DC,4ff,SECURITY_LOG_N477.IDENTIFIER_VIOLATED_FRAME_N477 ,18DAF1D2,112,119,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.VIOLATED_BUS_N477,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.PAYLOAD_DLC_N477,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205DC,6205DC,4ff,SECURITY_LOG_N477.PAYLOAD_VIOLATED_FRAME_N477 ,18DAF1D2,199,199,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.BUSLOAD_STATUS_N477,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.BUSLOAD_VALUE_CAN1_N477 ,18DAF1D2,208,215,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.BUSLOAD_VALUE_CAN2_N477 ,18DAF1D2,216,223,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.BUSLOAD_VALUE_CAN3_N477 ,18DAF1D2,224,231,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.BUSLOAD_VALUE_CAN4_N477 ,18DAF1D2,232,239,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.BUSLOAD_VALUE_CAN5_N477 ,18DAF1D2,240,247,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.BUSLOAD_VALUE_CAN6_N477 ,18DAF1D2,248,255,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.BUSLOAD_VALUE_CAN7_N477 ,18DAF1D2,256,263,1,0,0,,2205DC,6205DC,ff,SECURITY_LOG_N477.BUSLOAD_VALUE_CAN8_N477 ,18DAF1D2,24,47,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.ABOLUTE_TIME_N478 ,18DAF1D2,48,71,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.MILEAGE_N478 ,18DAF1D2,76,78,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.VIOLATION_TYPE_N478,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.SIZE_IDENTIFIER_N478,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205DD,6205DD,4ff,SECURITY_LOG_N478.IDENTIFIER_VIOLATED_FRAME_N478 ,18DAF1D2,112,119,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.VIOLATED_BUS_N478,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.PAYLOAD_DLC_N478,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205DD,6205DD,4ff,SECURITY_LOG_N478.PAYLOAD_VIOLATED_FRAME_N478 ,18DAF1D2,199,199,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.BUSLOAD_STATUS_N478,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.BUSLOAD_VALUE_CAN1_N478 ,18DAF1D2,208,215,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.BUSLOAD_VALUE_CAN2_N478 ,18DAF1D2,216,223,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.BUSLOAD_VALUE_CAN3_N478 ,18DAF1D2,224,231,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.BUSLOAD_VALUE_CAN4_N478 ,18DAF1D2,232,239,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.BUSLOAD_VALUE_CAN5_N478 ,18DAF1D2,240,247,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.BUSLOAD_VALUE_CAN6_N478 ,18DAF1D2,248,255,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.BUSLOAD_VALUE_CAN7_N478 ,18DAF1D2,256,263,1,0,0,,2205DD,6205DD,ff,SECURITY_LOG_N478.BUSLOAD_VALUE_CAN8_N478 ,18DAF1D2,24,47,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.ABOLUTE_TIME_N479 ,18DAF1D2,48,71,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.MILEAGE_N479 ,18DAF1D2,76,78,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.VIOLATION_TYPE_N479,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.SIZE_IDENTIFIER_N479,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205DE,6205DE,4ff,SECURITY_LOG_N479.IDENTIFIER_VIOLATED_FRAME_N479 ,18DAF1D2,112,119,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.VIOLATED_BUS_N479,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.PAYLOAD_DLC_N479,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205DE,6205DE,4ff,SECURITY_LOG_N479.PAYLOAD_VIOLATED_FRAME_N479 ,18DAF1D2,199,199,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.BUSLOAD_STATUS_N479,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.BUSLOAD_VALUE_CAN1_N479 ,18DAF1D2,208,215,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.BUSLOAD_VALUE_CAN2_N479 ,18DAF1D2,216,223,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.BUSLOAD_VALUE_CAN3_N479 ,18DAF1D2,224,231,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.BUSLOAD_VALUE_CAN4_N479 ,18DAF1D2,232,239,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.BUSLOAD_VALUE_CAN5_N479 ,18DAF1D2,240,247,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.BUSLOAD_VALUE_CAN6_N479 ,18DAF1D2,248,255,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.BUSLOAD_VALUE_CAN7_N479 ,18DAF1D2,256,263,1,0,0,,2205DE,6205DE,ff,SECURITY_LOG_N479.BUSLOAD_VALUE_CAN8_N479 ,18DAF1D2,24,47,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.ABOLUTE_TIME_N480 ,18DAF1D2,48,71,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.MILEAGE_N480 ,18DAF1D2,76,78,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.VIOLATION_TYPE_N480,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.SIZE_IDENTIFIER_N480,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205DF,6205DF,4ff,SECURITY_LOG_N480.IDENTIFIER_VIOLATED_FRAME_N480 ,18DAF1D2,112,119,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.VIOLATED_BUS_N480,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.PAYLOAD_DLC_N480,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205DF,6205DF,4ff,SECURITY_LOG_N480.PAYLOAD_VIOLATED_FRAME_N480 ,18DAF1D2,199,199,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.BUSLOAD_STATUS_N480,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.BUSLOAD_VALUE_CAN1_N480 ,18DAF1D2,208,215,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.BUSLOAD_VALUE_CAN2_N480 ,18DAF1D2,216,223,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.BUSLOAD_VALUE_CAN3_N480 ,18DAF1D2,224,231,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.BUSLOAD_VALUE_CAN4_N480 ,18DAF1D2,232,239,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.BUSLOAD_VALUE_CAN5_N480 ,18DAF1D2,240,247,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.BUSLOAD_VALUE_CAN6_N480 ,18DAF1D2,248,255,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.BUSLOAD_VALUE_CAN7_N480 ,18DAF1D2,256,263,1,0,0,,2205DF,6205DF,ff,SECURITY_LOG_N480.BUSLOAD_VALUE_CAN8_N480 ,18DAF1D2,24,47,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.ABOLUTE_TIME_N481 ,18DAF1D2,48,71,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.MILEAGE_N481 ,18DAF1D2,76,78,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.VIOLATION_TYPE_N481,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.SIZE_IDENTIFIER_N481,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205E0,6205E0,4ff,SECURITY_LOG_N481.IDENTIFIER_VIOLATED_FRAME_N481 ,18DAF1D2,112,119,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.VIOLATED_BUS_N481,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.PAYLOAD_DLC_N481,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205E0,6205E0,4ff,SECURITY_LOG_N481.PAYLOAD_VIOLATED_FRAME_N481 ,18DAF1D2,199,199,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.BUSLOAD_STATUS_N481,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.BUSLOAD_VALUE_CAN1_N481 ,18DAF1D2,208,215,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.BUSLOAD_VALUE_CAN2_N481 ,18DAF1D2,216,223,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.BUSLOAD_VALUE_CAN3_N481 ,18DAF1D2,224,231,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.BUSLOAD_VALUE_CAN4_N481 ,18DAF1D2,232,239,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.BUSLOAD_VALUE_CAN5_N481 ,18DAF1D2,240,247,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.BUSLOAD_VALUE_CAN6_N481 ,18DAF1D2,248,255,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.BUSLOAD_VALUE_CAN7_N481 ,18DAF1D2,256,263,1,0,0,,2205E0,6205E0,ff,SECURITY_LOG_N481.BUSLOAD_VALUE_CAN8_N481 ,18DAF1D2,24,47,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.ABOLUTE_TIME_N482 ,18DAF1D2,48,71,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.MILEAGE_N482 ,18DAF1D2,76,78,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.VIOLATION_TYPE_N482,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.SIZE_IDENTIFIER_N482,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205E1,6205E1,4ff,SECURITY_LOG_N482.IDENTIFIER_VIOLATED_FRAME_N482 ,18DAF1D2,112,119,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.VIOLATED_BUS_N482,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.PAYLOAD_DLC_N482,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205E1,6205E1,4ff,SECURITY_LOG_N482.PAYLOAD_VIOLATED_FRAME_N482 ,18DAF1D2,199,199,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.BUSLOAD_STATUS_N482,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.BUSLOAD_VALUE_CAN1_N482 ,18DAF1D2,208,215,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.BUSLOAD_VALUE_CAN2_N482 ,18DAF1D2,216,223,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.BUSLOAD_VALUE_CAN3_N482 ,18DAF1D2,224,231,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.BUSLOAD_VALUE_CAN4_N482 ,18DAF1D2,232,239,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.BUSLOAD_VALUE_CAN5_N482 ,18DAF1D2,240,247,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.BUSLOAD_VALUE_CAN6_N482 ,18DAF1D2,248,255,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.BUSLOAD_VALUE_CAN7_N482 ,18DAF1D2,256,263,1,0,0,,2205E1,6205E1,ff,SECURITY_LOG_N482.BUSLOAD_VALUE_CAN8_N482 ,18DAF1D2,24,47,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.ABOLUTE_TIME_N483 ,18DAF1D2,48,71,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.MILEAGE_N483 ,18DAF1D2,76,78,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.VIOLATION_TYPE_N483,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.SIZE_IDENTIFIER_N483,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205E2,6205E2,4ff,SECURITY_LOG_N483.IDENTIFIER_VIOLATED_FRAME_N483 ,18DAF1D2,112,119,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.VIOLATED_BUS_N483,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.PAYLOAD_DLC_N483,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205E2,6205E2,4ff,SECURITY_LOG_N483.PAYLOAD_VIOLATED_FRAME_N483 ,18DAF1D2,199,199,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.BUSLOAD_STATUS_N483,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.BUSLOAD_VALUE_CAN1_N483 ,18DAF1D2,208,215,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.BUSLOAD_VALUE_CAN2_N483 ,18DAF1D2,216,223,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.BUSLOAD_VALUE_CAN3_N483 ,18DAF1D2,224,231,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.BUSLOAD_VALUE_CAN4_N483 ,18DAF1D2,232,239,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.BUSLOAD_VALUE_CAN5_N483 ,18DAF1D2,240,247,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.BUSLOAD_VALUE_CAN6_N483 ,18DAF1D2,248,255,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.BUSLOAD_VALUE_CAN7_N483 ,18DAF1D2,256,263,1,0,0,,2205E2,6205E2,ff,SECURITY_LOG_N483.BUSLOAD_VALUE_CAN8_N483 ,18DAF1D2,24,47,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.ABOLUTE_TIME_N484 ,18DAF1D2,48,71,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.MILEAGE_N484 ,18DAF1D2,76,78,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.VIOLATION_TYPE_N484,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.SIZE_IDENTIFIER_N484,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205E3,6205E3,4ff,SECURITY_LOG_N484.IDENTIFIER_VIOLATED_FRAME_N484 ,18DAF1D2,112,119,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.VIOLATED_BUS_N484,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.PAYLOAD_DLC_N484,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205E3,6205E3,4ff,SECURITY_LOG_N484.PAYLOAD_VIOLATED_FRAME_N484 ,18DAF1D2,199,199,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.BUSLOAD_STATUS_N484,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.BUSLOAD_VALUE_CAN1_N484 ,18DAF1D2,208,215,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.BUSLOAD_VALUE_CAN2_N484 ,18DAF1D2,216,223,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.BUSLOAD_VALUE_CAN3_N484 ,18DAF1D2,224,231,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.BUSLOAD_VALUE_CAN4_N484 ,18DAF1D2,232,239,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.BUSLOAD_VALUE_CAN5_N484 ,18DAF1D2,240,247,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.BUSLOAD_VALUE_CAN6_N484 ,18DAF1D2,248,255,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.BUSLOAD_VALUE_CAN7_N484 ,18DAF1D2,256,263,1,0,0,,2205E3,6205E3,ff,SECURITY_LOG_N484.BUSLOAD_VALUE_CAN8_N484 ,18DAF1D2,24,47,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.ABOLUTE_TIME_N485 ,18DAF1D2,48,71,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.MILEAGE_N485 ,18DAF1D2,76,78,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.VIOLATION_TYPE_N485,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.SIZE_IDENTIFIER_N485,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205E4,6205E4,4ff,SECURITY_LOG_N485.IDENTIFIER_VIOLATED_FRAME_N485 ,18DAF1D2,112,119,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.VIOLATED_BUS_N485,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.PAYLOAD_DLC_N485,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205E4,6205E4,4ff,SECURITY_LOG_N485.PAYLOAD_VIOLATED_FRAME_N485 ,18DAF1D2,199,199,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.BUSLOAD_STATUS_N485,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.BUSLOAD_VALUE_CAN1_N485 ,18DAF1D2,208,215,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.BUSLOAD_VALUE_CAN2_N485 ,18DAF1D2,216,223,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.BUSLOAD_VALUE_CAN3_N485 ,18DAF1D2,224,231,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.BUSLOAD_VALUE_CAN4_N485 ,18DAF1D2,232,239,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.BUSLOAD_VALUE_CAN5_N485 ,18DAF1D2,240,247,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.BUSLOAD_VALUE_CAN6_N485 ,18DAF1D2,248,255,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.BUSLOAD_VALUE_CAN7_N485 ,18DAF1D2,256,263,1,0,0,,2205E4,6205E4,ff,SECURITY_LOG_N485.BUSLOAD_VALUE_CAN8_N485 ,18DAF1D2,24,47,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.ABOLUTE_TIME_N486 ,18DAF1D2,48,71,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.MILEAGE_N486 ,18DAF1D2,76,78,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.VIOLATION_TYPE_N486,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.SIZE_IDENTIFIER_N486,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205E5,6205E5,4ff,SECURITY_LOG_N486.IDENTIFIER_VIOLATED_FRAME_N486 ,18DAF1D2,112,119,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.VIOLATED_BUS_N486,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.PAYLOAD_DLC_N486,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205E5,6205E5,4ff,SECURITY_LOG_N486.PAYLOAD_VIOLATED_FRAME_N486 ,18DAF1D2,199,199,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.BUSLOAD_STATUS_N486,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.BUSLOAD_VALUE_CAN1_N486 ,18DAF1D2,208,215,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.BUSLOAD_VALUE_CAN2_N486 ,18DAF1D2,216,223,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.BUSLOAD_VALUE_CAN3_N486 ,18DAF1D2,224,231,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.BUSLOAD_VALUE_CAN4_N486 ,18DAF1D2,232,239,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.BUSLOAD_VALUE_CAN5_N486 ,18DAF1D2,240,247,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.BUSLOAD_VALUE_CAN6_N486 ,18DAF1D2,248,255,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.BUSLOAD_VALUE_CAN7_N486 ,18DAF1D2,256,263,1,0,0,,2205E5,6205E5,ff,SECURITY_LOG_N486.BUSLOAD_VALUE_CAN8_N486 ,18DAF1D2,24,47,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.ABOLUTE_TIME_N487 ,18DAF1D2,48,71,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.MILEAGE_N487 ,18DAF1D2,76,78,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.VIOLATION_TYPE_N487,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.SIZE_IDENTIFIER_N487,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205E6,6205E6,4ff,SECURITY_LOG_N487.IDENTIFIER_VIOLATED_FRAME_N487 ,18DAF1D2,112,119,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.VIOLATED_BUS_N487,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.PAYLOAD_DLC_N487,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205E6,6205E6,4ff,SECURITY_LOG_N487.PAYLOAD_VIOLATED_FRAME_N487 ,18DAF1D2,199,199,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.BUSLOAD_STATUS_N487,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.BUSLOAD_VALUE_CAN1_N487 ,18DAF1D2,208,215,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.BUSLOAD_VALUE_CAN2_N487 ,18DAF1D2,216,223,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.BUSLOAD_VALUE_CAN3_N487 ,18DAF1D2,224,231,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.BUSLOAD_VALUE_CAN4_N487 ,18DAF1D2,232,239,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.BUSLOAD_VALUE_CAN5_N487 ,18DAF1D2,240,247,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.BUSLOAD_VALUE_CAN6_N487 ,18DAF1D2,248,255,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.BUSLOAD_VALUE_CAN7_N487 ,18DAF1D2,256,263,1,0,0,,2205E6,6205E6,ff,SECURITY_LOG_N487.BUSLOAD_VALUE_CAN8_N487 ,18DAF1D2,24,47,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.ABOLUTE_TIME_N488 ,18DAF1D2,48,71,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.MILEAGE_N488 ,18DAF1D2,76,78,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.VIOLATION_TYPE_N488,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.SIZE_IDENTIFIER_N488,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205E7,6205E7,4ff,SECURITY_LOG_N488.IDENTIFIER_VIOLATED_FRAME_N488 ,18DAF1D2,112,119,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.VIOLATED_BUS_N488,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.PAYLOAD_DLC_N488,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205E7,6205E7,4ff,SECURITY_LOG_N488.PAYLOAD_VIOLATED_FRAME_N488 ,18DAF1D2,199,199,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.BUSLOAD_STATUS_N488,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.BUSLOAD_VALUE_CAN1_N488 ,18DAF1D2,208,215,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.BUSLOAD_VALUE_CAN2_N488 ,18DAF1D2,216,223,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.BUSLOAD_VALUE_CAN3_N488 ,18DAF1D2,224,231,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.BUSLOAD_VALUE_CAN4_N488 ,18DAF1D2,232,239,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.BUSLOAD_VALUE_CAN5_N488 ,18DAF1D2,240,247,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.BUSLOAD_VALUE_CAN6_N488 ,18DAF1D2,248,255,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.BUSLOAD_VALUE_CAN7_N488 ,18DAF1D2,256,263,1,0,0,,2205E7,6205E7,ff,SECURITY_LOG_N488.BUSLOAD_VALUE_CAN8_N488 ,18DAF1D2,24,47,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.ABOLUTE_TIME_N489 ,18DAF1D2,48,71,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.MILEAGE_N489 ,18DAF1D2,76,78,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.VIOLATION_TYPE_N489,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.SIZE_IDENTIFIER_N489,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205E8,6205E8,4ff,SECURITY_LOG_N489.IDENTIFIER_VIOLATED_FRAME_N489 ,18DAF1D2,112,119,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.VIOLATED_BUS_N489,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.PAYLOAD_DLC_N489,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205E8,6205E8,4ff,SECURITY_LOG_N489.PAYLOAD_VIOLATED_FRAME_N489 ,18DAF1D2,199,199,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.BUSLOAD_STATUS_N489,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.BUSLOAD_VALUE_CAN1_N489 ,18DAF1D2,208,215,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.BUSLOAD_VALUE_CAN2_N489 ,18DAF1D2,216,223,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.BUSLOAD_VALUE_CAN3_N489 ,18DAF1D2,224,231,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.BUSLOAD_VALUE_CAN4_N489 ,18DAF1D2,232,239,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.BUSLOAD_VALUE_CAN5_N489 ,18DAF1D2,240,247,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.BUSLOAD_VALUE_CAN6_N489 ,18DAF1D2,248,255,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.BUSLOAD_VALUE_CAN7_N489 ,18DAF1D2,256,263,1,0,0,,2205E8,6205E8,ff,SECURITY_LOG_N489.BUSLOAD_VALUE_CAN8_N489 ,18DAF1D2,24,47,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.ABOLUTE_TIME_N490 ,18DAF1D2,48,71,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.MILEAGE_N490 ,18DAF1D2,76,78,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.VIOLATION_TYPE_N490,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.SIZE_IDENTIFIER_N490,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205E9,6205E9,4ff,SECURITY_LOG_N490.IDENTIFIER_VIOLATED_FRAME_N490 ,18DAF1D2,112,119,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.VIOLATED_BUS_N490,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.PAYLOAD_DLC_N490,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205E9,6205E9,4ff,SECURITY_LOG_N490.PAYLOAD_VIOLATED_FRAME_N490 ,18DAF1D2,199,199,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.BUSLOAD_STATUS_N490,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.BUSLOAD_VALUE_CAN1_N490 ,18DAF1D2,208,215,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.BUSLOAD_VALUE_CAN2_N490 ,18DAF1D2,216,223,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.BUSLOAD_VALUE_CAN3_N490 ,18DAF1D2,224,231,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.BUSLOAD_VALUE_CAN4_N490 ,18DAF1D2,232,239,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.BUSLOAD_VALUE_CAN5_N490 ,18DAF1D2,240,247,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.BUSLOAD_VALUE_CAN6_N490 ,18DAF1D2,248,255,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.BUSLOAD_VALUE_CAN7_N490 ,18DAF1D2,256,263,1,0,0,,2205E9,6205E9,ff,SECURITY_LOG_N490.BUSLOAD_VALUE_CAN8_N490 ,18DAF1D2,24,47,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.ABOLUTE_TIME_N491 ,18DAF1D2,48,71,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.MILEAGE_N491 ,18DAF1D2,76,78,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.VIOLATION_TYPE_N491,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.SIZE_IDENTIFIER_N491,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205EA,6205EA,4ff,SECURITY_LOG_N491.IDENTIFIER_VIOLATED_FRAME_N491 ,18DAF1D2,112,119,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.VIOLATED_BUS_N491,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.PAYLOAD_DLC_N491,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205EA,6205EA,4ff,SECURITY_LOG_N491.PAYLOAD_VIOLATED_FRAME_N491 ,18DAF1D2,199,199,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.BUSLOAD_STATUS_N491,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.BUSLOAD_VALUE_CAN1_N491 ,18DAF1D2,208,215,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.BUSLOAD_VALUE_CAN2_N491 ,18DAF1D2,216,223,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.BUSLOAD_VALUE_CAN3_N491 ,18DAF1D2,224,231,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.BUSLOAD_VALUE_CAN4_N491 ,18DAF1D2,232,239,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.BUSLOAD_VALUE_CAN5_N491 ,18DAF1D2,240,247,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.BUSLOAD_VALUE_CAN6_N491 ,18DAF1D2,248,255,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.BUSLOAD_VALUE_CAN7_N491 ,18DAF1D2,256,263,1,0,0,,2205EA,6205EA,ff,SECURITY_LOG_N491.BUSLOAD_VALUE_CAN8_N491 ,18DAF1D2,24,47,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.ABOLUTE_TIME_N492 ,18DAF1D2,48,71,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.MILEAGE_N492 ,18DAF1D2,76,78,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.VIOLATION_TYPE_N492,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.SIZE_IDENTIFIER_N492,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205EB,6205EB,4ff,SECURITY_LOG_N492.IDENTIFIER_VIOLATED_FRAME_N492 ,18DAF1D2,112,119,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.VIOLATED_BUS_N492,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.PAYLOAD_DLC_N492,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205EB,6205EB,4ff,SECURITY_LOG_N492.PAYLOAD_VIOLATED_FRAME_N492 ,18DAF1D2,199,199,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.BUSLOAD_STATUS_N492,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.BUSLOAD_VALUE_CAN1_N492 ,18DAF1D2,208,215,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.BUSLOAD_VALUE_CAN2_N492 ,18DAF1D2,216,223,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.BUSLOAD_VALUE_CAN3_N492 ,18DAF1D2,224,231,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.BUSLOAD_VALUE_CAN4_N492 ,18DAF1D2,232,239,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.BUSLOAD_VALUE_CAN5_N492 ,18DAF1D2,240,247,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.BUSLOAD_VALUE_CAN6_N492 ,18DAF1D2,248,255,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.BUSLOAD_VALUE_CAN7_N492 ,18DAF1D2,256,263,1,0,0,,2205EB,6205EB,ff,SECURITY_LOG_N492.BUSLOAD_VALUE_CAN8_N492 ,18DAF1D2,24,47,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.ABOLUTE_TIME_N493 ,18DAF1D2,48,71,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.MILEAGE_N493 ,18DAF1D2,76,78,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.VIOLATION_TYPE_N493,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.SIZE_IDENTIFIER_N493,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205EC,6205EC,4ff,SECURITY_LOG_N493.IDENTIFIER_VIOLATED_FRAME_N493 ,18DAF1D2,112,119,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.VIOLATED_BUS_N493,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.PAYLOAD_DLC_N493,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205EC,6205EC,4ff,SECURITY_LOG_N493.PAYLOAD_VIOLATED_FRAME_N493 ,18DAF1D2,199,199,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.BUSLOAD_STATUS_N493,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.BUSLOAD_VALUE_CAN1_N493 ,18DAF1D2,208,215,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.BUSLOAD_VALUE_CAN2_N493 ,18DAF1D2,216,223,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.BUSLOAD_VALUE_CAN3_N493 ,18DAF1D2,224,231,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.BUSLOAD_VALUE_CAN4_N493 ,18DAF1D2,232,239,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.BUSLOAD_VALUE_CAN5_N493 ,18DAF1D2,240,247,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.BUSLOAD_VALUE_CAN6_N493 ,18DAF1D2,248,255,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.BUSLOAD_VALUE_CAN7_N493 ,18DAF1D2,256,263,1,0,0,,2205EC,6205EC,ff,SECURITY_LOG_N493.BUSLOAD_VALUE_CAN8_N493 ,18DAF1D2,24,47,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.ABOLUTE_TIME_N494 ,18DAF1D2,48,71,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.MILEAGE_N494 ,18DAF1D2,76,78,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.VIOLATION_TYPE_N494,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.SIZE_IDENTIFIER_N494,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205ED,6205ED,4ff,SECURITY_LOG_N494.IDENTIFIER_VIOLATED_FRAME_N494 ,18DAF1D2,112,119,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.VIOLATED_BUS_N494,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.PAYLOAD_DLC_N494,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205ED,6205ED,4ff,SECURITY_LOG_N494.PAYLOAD_VIOLATED_FRAME_N494 ,18DAF1D2,199,199,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.BUSLOAD_STATUS_N494,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.BUSLOAD_VALUE_CAN1_N494 ,18DAF1D2,208,215,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.BUSLOAD_VALUE_CAN2_N494 ,18DAF1D2,216,223,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.BUSLOAD_VALUE_CAN3_N494 ,18DAF1D2,224,231,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.BUSLOAD_VALUE_CAN4_N494 ,18DAF1D2,232,239,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.BUSLOAD_VALUE_CAN5_N494 ,18DAF1D2,240,247,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.BUSLOAD_VALUE_CAN6_N494 ,18DAF1D2,248,255,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.BUSLOAD_VALUE_CAN7_N494 ,18DAF1D2,256,263,1,0,0,,2205ED,6205ED,ff,SECURITY_LOG_N494.BUSLOAD_VALUE_CAN8_N494 ,18DAF1D2,24,47,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.ABOLUTE_TIME_N495 ,18DAF1D2,48,71,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.MILEAGE_N495 ,18DAF1D2,76,78,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.VIOLATION_TYPE_N495,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.SIZE_IDENTIFIER_N495,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205EE,6205EE,4ff,SECURITY_LOG_N495.IDENTIFIER_VIOLATED_FRAME_N495 ,18DAF1D2,112,119,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.VIOLATED_BUS_N495,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.PAYLOAD_DLC_N495,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205EE,6205EE,4ff,SECURITY_LOG_N495.PAYLOAD_VIOLATED_FRAME_N495 ,18DAF1D2,199,199,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.BUSLOAD_STATUS_N495,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.BUSLOAD_VALUE_CAN1_N495 ,18DAF1D2,208,215,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.BUSLOAD_VALUE_CAN2_N495 ,18DAF1D2,216,223,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.BUSLOAD_VALUE_CAN3_N495 ,18DAF1D2,224,231,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.BUSLOAD_VALUE_CAN4_N495 ,18DAF1D2,232,239,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.BUSLOAD_VALUE_CAN5_N495 ,18DAF1D2,240,247,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.BUSLOAD_VALUE_CAN6_N495 ,18DAF1D2,248,255,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.BUSLOAD_VALUE_CAN7_N495 ,18DAF1D2,256,263,1,0,0,,2205EE,6205EE,ff,SECURITY_LOG_N495.BUSLOAD_VALUE_CAN8_N495 ,18DAF1D2,24,47,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.ABOLUTE_TIME_N496 ,18DAF1D2,48,71,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.MILEAGE_N496 ,18DAF1D2,76,78,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.VIOLATION_TYPE_N496,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.SIZE_IDENTIFIER_N496,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205EF,6205EF,4ff,SECURITY_LOG_N496.IDENTIFIER_VIOLATED_FRAME_N496 ,18DAF1D2,112,119,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.VIOLATED_BUS_N496,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.PAYLOAD_DLC_N496,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205EF,6205EF,4ff,SECURITY_LOG_N496.PAYLOAD_VIOLATED_FRAME_N496 ,18DAF1D2,199,199,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.BUSLOAD_STATUS_N496,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.BUSLOAD_VALUE_CAN1_N496 ,18DAF1D2,208,215,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.BUSLOAD_VALUE_CAN2_N496 ,18DAF1D2,216,223,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.BUSLOAD_VALUE_CAN3_N496 ,18DAF1D2,224,231,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.BUSLOAD_VALUE_CAN4_N496 ,18DAF1D2,232,239,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.BUSLOAD_VALUE_CAN5_N496 ,18DAF1D2,240,247,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.BUSLOAD_VALUE_CAN6_N496 ,18DAF1D2,248,255,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.BUSLOAD_VALUE_CAN7_N496 ,18DAF1D2,256,263,1,0,0,,2205EF,6205EF,ff,SECURITY_LOG_N496.BUSLOAD_VALUE_CAN8_N496 ,18DAF1D2,24,47,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.ABOLUTE_TIME_N497 ,18DAF1D2,48,71,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.MILEAGE_N497 ,18DAF1D2,76,78,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.VIOLATION_TYPE_N497,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.SIZE_IDENTIFIER_N497,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205F0,6205F0,4ff,SECURITY_LOG_N497.IDENTIFIER_VIOLATED_FRAME_N497 ,18DAF1D2,112,119,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.VIOLATED_BUS_N497,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.PAYLOAD_DLC_N497,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205F0,6205F0,4ff,SECURITY_LOG_N497.PAYLOAD_VIOLATED_FRAME_N497 ,18DAF1D2,199,199,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.BUSLOAD_STATUS_N497,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.BUSLOAD_VALUE_CAN1_N497 ,18DAF1D2,208,215,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.BUSLOAD_VALUE_CAN2_N497 ,18DAF1D2,216,223,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.BUSLOAD_VALUE_CAN3_N497 ,18DAF1D2,224,231,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.BUSLOAD_VALUE_CAN4_N497 ,18DAF1D2,232,239,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.BUSLOAD_VALUE_CAN5_N497 ,18DAF1D2,240,247,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.BUSLOAD_VALUE_CAN6_N497 ,18DAF1D2,248,255,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.BUSLOAD_VALUE_CAN7_N497 ,18DAF1D2,256,263,1,0,0,,2205F0,6205F0,ff,SECURITY_LOG_N497.BUSLOAD_VALUE_CAN8_N497 ,18DAF1D2,24,47,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.ABOLUTE_TIME_N498 ,18DAF1D2,48,71,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.MILEAGE_N498 ,18DAF1D2,76,78,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.VIOLATION_TYPE_N498,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.SIZE_IDENTIFIER_N498,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205F1,6205F1,4ff,SECURITY_LOG_N498.IDENTIFIER_VIOLATED_FRAME_N498 ,18DAF1D2,112,119,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.VIOLATED_BUS_N498,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.PAYLOAD_DLC_N498,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205F1,6205F1,4ff,SECURITY_LOG_N498.PAYLOAD_VIOLATED_FRAME_N498 ,18DAF1D2,199,199,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.BUSLOAD_STATUS_N498,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.BUSLOAD_VALUE_CAN1_N498 ,18DAF1D2,208,215,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.BUSLOAD_VALUE_CAN2_N498 ,18DAF1D2,216,223,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.BUSLOAD_VALUE_CAN3_N498 ,18DAF1D2,224,231,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.BUSLOAD_VALUE_CAN4_N498 ,18DAF1D2,232,239,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.BUSLOAD_VALUE_CAN5_N498 ,18DAF1D2,240,247,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.BUSLOAD_VALUE_CAN6_N498 ,18DAF1D2,248,255,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.BUSLOAD_VALUE_CAN7_N498 ,18DAF1D2,256,263,1,0,0,,2205F1,6205F1,ff,SECURITY_LOG_N498.BUSLOAD_VALUE_CAN8_N498 ,18DAF1D2,24,47,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.ABOLUTE_TIME_N499 ,18DAF1D2,48,71,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.MILEAGE_N499 ,18DAF1D2,76,78,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.VIOLATION_TYPE_N499,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.SIZE_IDENTIFIER_N499,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205F2,6205F2,4ff,SECURITY_LOG_N499.IDENTIFIER_VIOLATED_FRAME_N499 ,18DAF1D2,112,119,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.VIOLATED_BUS_N499,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.PAYLOAD_DLC_N499,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205F2,6205F2,4ff,SECURITY_LOG_N499.PAYLOAD_VIOLATED_FRAME_N499 ,18DAF1D2,199,199,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.BUSLOAD_STATUS_N499,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.BUSLOAD_VALUE_CAN1_N499 ,18DAF1D2,208,215,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.BUSLOAD_VALUE_CAN2_N499 ,18DAF1D2,216,223,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.BUSLOAD_VALUE_CAN3_N499 ,18DAF1D2,224,231,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.BUSLOAD_VALUE_CAN4_N499 ,18DAF1D2,232,239,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.BUSLOAD_VALUE_CAN5_N499 ,18DAF1D2,240,247,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.BUSLOAD_VALUE_CAN6_N499 ,18DAF1D2,248,255,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.BUSLOAD_VALUE_CAN7_N499 ,18DAF1D2,256,263,1,0,0,,2205F2,6205F2,ff,SECURITY_LOG_N499.BUSLOAD_VALUE_CAN8_N499 ,18DAF1D2,24,47,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.ABOLUTE_TIME_N500 ,18DAF1D2,48,71,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.MILEAGE_N500 ,18DAF1D2,76,78,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.VIOLATION_TYPE_N500,0:ID_VIOLATION;1:PAYLOAD_VIOLATION;2:BUSLOAD_VIOLATION;3:AUTHENTICATION_FAILURE;4:CHANGED_FROM_SECURE_TO_DIAG_MODE;5:CHANGED_FROM_DIAG_TO_SECURE_MODE;6:CHANGED_TO_INTERMEDIATE_MODE ,18DAF1D2,79,79,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.SIZE_IDENTIFIER_N500,0:STANDARD;1:EXTENDED ,18DAF1D2,80,111,1,0,0,,2205F3,6205F3,4ff,SECURITY_LOG_N500.IDENTIFIER_VIOLATED_FRAME_N500 ,18DAF1D2,112,119,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.VIOLATED_BUS_N500,1:CAN1(DLC);2:CAN2(EXT);4:CAN3;8:CAN4;10:CAN5;20:CAN6;40:CAN7;80:CAN8 ,18DAF1D2,124,127,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.PAYLOAD_DLC_N500,0:DLC0;1:DLC1;2:DLC2;3:DLC3;4:DLC4;5:DLC5;6:DLC6;7:DLC7;8:DLC8 ,18DAF1D2,128,191,1,0,0,,2205F3,6205F3,4ff,SECURITY_LOG_N500.PAYLOAD_VIOLATED_FRAME_N500 ,18DAF1D2,199,199,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_STATUS_N500,0:STOPPED;1:STARTED ,18DAF1D2,200,207,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN1_N500 ,18DAF1D2,208,215,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN2_N500 ,18DAF1D2,216,223,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN3_N500 ,18DAF1D2,224,231,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN4_N500 ,18DAF1D2,232,239,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN5_N500 ,18DAF1D2,240,247,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN6_N500 ,18DAF1D2,248,255,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN7_N500 ,18DAF1D2,256,263,1,0,0,,2205F3,6205F3,ff,SECURITY_LOG_N500.BUSLOAD_VALUE_CAN8_N500 ,18DAF1D2,24,55,1,-1,0,,2206FF,6206FF,1ff,LAST_VIOL_LOG_POSITION ,18DAF1D2,24,24,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Activation_Request_Response,0:Not Sent;1:Sent ,18DAF1D2,25,25,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Activation_Request,0:Not Accepted;1:Accepted ,18DAF1D2,26,26,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Activation_Result_Request,0:Not Received;1:Received ,18DAF1D2,27,27,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Activation_Result_Response,0:Not Sent;1:Sent ,18DAF1D2,28,28,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Back_to_Idle_Complete,0:Not Received;1:Received ,18DAF1D2,29,29,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Back_to_Idle_Request,0:Not Sent;1:Sent ,18DAF1D2,30,30,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Cancel_request,0:Not Received;1:Received ,18DAF1D2,31,31,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Cancel_request_to_Target_ECU,0:Not Sent;1:Sent ,18DAF1D2,32,32,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Cancel_request_to_Target_ECU_Reply,0:Not Received;1:Received ,18DAF1D2,33,33,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Change_to_Ready_to_config,0:Not Sent;1:Sent ,18DAF1D2,34,34,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Change_to_Ready_to_config_reply,0:Not Received;1:Received ,18DAF1D2,35,35,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Configuration_complete,0:Not Received;1:Received ,18DAF1D2,36,36,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_configuration_data,0:Not Exist;1:Exist ,18DAF1D2,37,37,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Current_Bank_request,0:Not Sent;1:Sent ,18DAF1D2,38,38,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_default_session_request,0:Not Sent;1:Sent ,18DAF1D2,39,39,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_default_session_request_reply,0:Not Received;1:Received ,18DAF1D2,40,47,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_current_bank ,18DAF1D2,48,48,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Download_start_request,0:Not Received;1:Received ,18DAF1D2,49,49,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Download_start_request_Response,0:Not Sent;1:Sent ,18DAF1D2,50,50,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_DTC_request,0:Not Sent;1:Sent ,18DAF1D2,51,51,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_energy_state_condition,0:Not Met;1:Met ,18DAF1D2,52,52,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Error_report_request,0:Not Sent;1:Sent ,18DAF1D2,53,53,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Error_report_request_response,0:Not Received;1:Received ,18DAF1D2,54,54,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_mode_notification_cancel_request,0:Not Sent;1:Sent ,18DAF1D2,55,55,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_mode_notification,0:Not Sent;1:Sent ,18DAF1D2,56,87,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_ECU_ID ,18DAF1D2,88,95,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_current_Bank ,18DAF1D2,96,175,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_current_component_reference_F012 ,18DAF1D2,176,255,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_current_component_reference_F188 ,18DAF1D2,256,263,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Expected_current_ECU_reference_Bank ,18DAF1D2,264,343,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Expected_current_ECU_reference _HW ,18DAF1D2,344,503,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Expected_current_ECU_reference_Serial_Number ,18DAF1D2,504,511,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_updated_bank ,18DAF1D2,512,591,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_updated_component_reference_F012 ,18DAF1D2,592,727,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_expected_VIN ,18DAF1D2,728,729,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_buffer_diagnostic_error,0:No error detected;1:Error detected;2:Invalid;3:Not Used ,18DAF1D2,730,732,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_session,0:Gateway - Default;1:Gateway - Extended;2:Gateway - Reprogramming;3:FOTA-A Default;4:FOTA-A FOTA;5:FOTA-B Default;6:Not Used ,18DAF1D2,733,733,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_violation_SOC,0:NORMAL (FOTA violation is not detected);1:VIOLATED (FOTA violation is detected) ,18DAF1D2,734,734,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Gateway package remained size request,0:Not Received;1:Received ,18DAF1D2,735,735,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_IGN,0:OFF;1:ON ,18DAF1D2,736,736,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Gateway FOTA Busy Status,0:Ready;1:Busy ,18DAF1D2,737,741,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Gateway_FOTA_status,0:Idle;1:Inventory read in progress;2:Inventory read complete;3:Transmission from SWMC in progress;4:Integrity check in progress;5:Integrity check complete;6:Parameters check in progress;7:Transmission to target ECU in progress;8:writing complete;9:Ready to activate;10:vehicle state check in progress;11:Switch in progress;12:Reboot in progress;13:Configuration install in progress;14:Configuration complete;15:Activation complete;16:Cancel in progress;17:Cancel complete;18:RollBack in progress;19:Rollback complete;20:Cancel failed;21:SWMC related cancel complete;22:invalid;23:No used ,18DAF1D2,744,775,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Gateway_package_remained_size ,18DAF1D2,776,807,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Gateway package size ,18DAF1D2,808,808,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Install result request,0:Not Received;1:Received ,18DAF1D2,809,809,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Install result request response,0:Not Received;1:Received ,18DAF1D2,810,810,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Installation complete reply from Target ECU,0:Not Received;1:Received ,18DAF1D2,811,811,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Installation complete to Target ECU,0:Not Sent;1:Sent ,18DAF1D2,812,812,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Installation Request,0:Not Sent;1:Sent ,18DAF1D2,813,813,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Installation Request Response,0:Not Sent;1:Sent ,18DAF1D2,814,814,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_integrity check NOK result,0:Not Sent;1:Sent ,18DAF1D2,815,815,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_integrity check OK result,0:Not Sent;1:Sent ,18DAF1D2,816,816,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_integrity check result request,0:Not Received;1:Received ,18DAF1D2,817,817,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Inventory Elementary Request Response,0:Not Received;1:Received ,18DAF1D2,818,818,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Reboot request reply from Target ECU,0:Not Received;1:Received ,18DAF1D2,819,819,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Reboot request to Target ECU,0:Not Sent;1:Sent ,18DAF1D2,820,820,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_RequestTransferExit,0:Not Received;1:Received ,18DAF1D2,821,821,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_RequestTransferExit Reply,0:Not Sent;1:Sent ,18DAF1D2,822,822,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Rollback complete,0:Not Received;1:Received ,18DAF1D2,823,823,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Rollback request,0:Not Sent;1:Sent ,18DAF1D2,824,871,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Inventory_Elementary_Request ,18DAF1D2,872,879,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Number of target ECU package blocks ,18DAF1D2,880,887,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Retry counter ,18DAF1D2,888,888,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Session change request,0:Not Received;1:Received ,18DAF1D2,889,889,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Switching_Complete,0:Not Received;1:Received ,18DAF1D2,890,890,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Switching_Request,0:Not Sent;1:Sent ,18DAF1D2,891,891,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F1A2,0:Not Sent;1:Sent ,18DAF1D2,892,892,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F188,0:Not Sent;1:Sent ,18DAF1D2,893,893,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F18C,0:Not Sent;1:Sent ,18DAF1D2,894,894,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F012,0:Not Sent;1:Sent ,18DAF1D2,895,895,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F191,0:Not Sent;1:Sent ,18DAF1D2,896,896,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F1A1,0:Not Sent;1:Sent ,18DAF1D2,897,897,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Request_F187,0:Not Sent;1:Sent ,18DAF1D2,898,898,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target ECU FOTA inconsistence error,0:Not Detected;1:Detected ,18DAF1D2,899,903,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_FOTA_status,0:Idle;1:Transmission in progress;2:Ready to switch;3:Switch in progress;4:Switch done;5:Reboot in progress;6:FW version check in progress;7:Configuration install in progress;8:Installation complete;9:Error detected;10:Rollback in progress;11:Rollback complete;12:Cancel in progress;13:Update Error detected;14:Reserved ,18DAF1D2,904,1063,1,0,0,,221111,621111,4ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F18C ,18DAF1D2,1064,1143,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F012 ,18DAF1D2,1144,1223,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F1A1 ,18DAF1D2,1224,1303,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F187 ,18DAF1D2,1304,1383,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F1A2 ,18DAF1D2,1384,1463,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F188 ,18DAF1D2,1464,1543,1,0,0,,221111,621111,2ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Attribute_Response_F191 ,18DAF1D2,1544,1544,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_FOTA_Status_Request,0:Not Sent;1:Sent ,18DAF1D2,1545,1545,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Integrity_Check_NOK_Result,0:Not Received;1:Received ,18DAF1D2,1546,1546,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Integrity_Check_OK_Result,0:Not Received;1:Received ,18DAF1D2,1547,1547,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Integrity_Check_Request,0:Not Received;1:Received ,18DAF1D2,1548,1548,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Package_Transmission_Complete,0:Not Received;1:Received ,18DAF1D2,1549,1549,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_Target_ECU_Package_Transmission_Complete_Reply,0:Not Received;1:Received ,18DAF1D2,1550,1551,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_VehicleStateCondition,0:Not Met;1:Met;2:Invalid;3:Not Used ,18DAF1D2,1552,1567,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_VehicleSpeed ,18DAF1D2,1568,1571,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_VehicleState,0:Sleeping;1:Not used;2:CutoffPending;3:AutoACC - BatTempoLevel;4:Not used2;5:IgnitionLevel;6:StartingInProgress;7:PowertrainRunning;8:AutoStart;9:EngineSystemStop;15:Unavailable ,18DAF1D2,1572,1573,1,0,0,,221111,621111,ff,FOTA_Data_monitor.Data_monitor_FOTA.FOTA_PWTStartForbiddenFeedback,0:unavailable value;1:No received request;2:Not Set - powertrain start allowed;3:Set - powertrain start forbidden ,18DAF1D2,24,663,1,0,0,,221200,621200,4ff,FOTA_Pass DTC ,18DAF1D2,24,503,1,0,0,,221210,621210,4ff,FOTA_DTC from Target ECU ,18DAF1D2,24,2071,1,0,0,,221220,621220,4ff,FOTA_Digital signature ,18DAF1D2,24,2071,1,0,0,,221230,621230,4ff,FOTA_Target ECU digital signature ,18DAF1D2,24,2071,1,0,0,,221240,621240,4ff,FOTA_Hash of content ,18DAF1D2,24,39,1,0,0,,2212FF,6212FF,ff,FOTA_Violation counter ,18DAF1D2,24,151,1,0,0,,22F010,62F010,2ff,Fingerprint ,18DAF1D2,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,18DAF1D2,24,103,1,0,0,,22F012,62F012,2ff,OperationnalReference ,18DAF1D2,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationnalReference ,18DAF1D2,24,135,1,0,0,,22F0A1,62F0A1,4ff,FOTA_Resume flag and Address ,18DAF1D2,24,95,1,0,0,,22F0A3,62F0A3,4ff,FOTA_Send request as SMC command ,18DAF1D2,24,255,1,0,0,,22F0A4,62F0A4,4ff,FOTA_Read the result of SMC command ,18DAF1D2,24,47,1,0,0,km,22F0D0,62F0D0,ff,MileageIdent ,18DAF1D2,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC_OccurrenceCounter ,18DAF1D2,24,103,1,0,0,,22F111,62F111,2ff,vehicleManufacturerECUHardwareNumberDAI ,18DAF1D2,24,183,1,0,0,,22F121,62F121,2ff,vehicleManufacturerECUSoftwareNumberDAI ,18DAF1D2,24,63,1,0,0,,22F180,62F180,4ff,bootSoftwareIdentification ,18DAF1D2,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,18DAF1D2,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,18DAF1D2,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,18DAF1D2,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,18DAF1D2,24,31,1,0,0,,22F18E,62F18E,ff,VehicleManufacturerKitAssemblyPartNumber ,18DAF1D2,24,159,1,0,0,,22F190,62F190,2ff,VIN ,18DAF1D2,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,18DAF1D2,24,103,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,18DAF1D2,24,151,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,18DAF1D2,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,18DAF1D2,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumberN ,18DAF1D2,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/S-GW3_Tests.csv ================================================ 44,data memory failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 61,signal calculation failure 67,signal incorrect after event 51,not programmed 71,actuator stuck 72,actuator stuck open 45,program memory failure 55,not configured 54,missing calibration 52,not activated 4B,over temperature 4A,incorrect component installed 49,internal electronic failure 48,supervision software failure 47,watchdog / safety µC failure 46,calibration / parameter memory failure 73,actuator stuck closed 87,missing message 53,deactivated 43,special memory failure 98,component or system over temperature 97,Component or system operation obstructed or blocked 96,component internal failure 95,incorrect assembly 94,unexpected operation 93,no operation 92,performance or incorrect operation 91,parametric 8F,erratic 88,bus off 85,signal above allowable range 86,signal invalid 74,actuator slipping 84,signal below allowable range 83,value of signal protection calculation incorrect 82,alive / sequence counter incorrect / not updated 81,invalid serial data received 7B,low fluid level 7A,fluid leak or seal failure 79,mechanical linkage failure 78,alignment or adjustment incorrect 77,commanded position not reachable 76,wrong mounting position 75,emergency position not reachable 66,signal has too many transitions / events 0F,Vehicle manufacturer / System supplier specific 1B,circuit resistance above threshold 1A,circuit resistance below threshold 19,circuit current above threshold 18,circuit current below threshold 17,circuit voltage above threshold 16,circuit voltage below threshold 15,circuit short to battery or open 14,circuit short to ground or open 13,circuit open 1C,circuit voltage out of range 11,circuit short to ground 09,Component Failures 08,Bus Signal / Message Failures 06,Algorithm Based Failures 05,System Programming Failures 04,System Internal Failures 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 02,General signal failure 01,General Electrical Failure 00,Device and failure type ODB codding/ General Failure Information 42,general memory failure 68,event information 12,circuit short to battery 35,signal high time > maximum 41,general checksum failure 3A,incorrect has too many pulses 07,Mechanical Failures 1D,circuit current out of range 39,incorrect has too few pulses 38,signal frequency incorrect 36,signal frequency too low 34,signal high time < minimum 33,signal low time > maximum 32,signal low time < minimum 31,no signal 25,signal shape / waveform failure 21,signal amplitude < minimum 37,signal frequency too high 2F,signal erratic 1F,circuit intermittent 23,signal stuck low 24,signal stuck high 22,signal amplitude > maximum 1E,circuit resistance out of range 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid ================================================ FILE: app/src/main/assets/ZOE_Ph2/TDB_Dtcs.csv ================================================ 9401,Oil level sensor monitoring 9402,Fuel gauge monitoring 9403,Brake fluid level 9404,Warning Airbag telltale monitoring F003,Power supply monitoring 9414,Backlight Dimming level inputs monitoring 9415,High Side PWM outputs for backlight monitoring 9413,Error Configuration 9410,Trip computer input(s) monitoring C028,BUS OFF CAN V C037,BUS OFF CAN M 9423,FWS Frame Safety mechanisms 9424,SafetyBag triggering 9425,STOP Telltale diagnosis (SS1) 9426,SERVICE Telltale diagnosis (SS2) 940C,NVM monitoring 9412,ExternalTemperature Inputs monitoring 9422,EPS Frame Safety mechanisms C103,Perte trame VNodeSBW C118,Perte trame VNodeSCR C122,Perte trame VNodeESC C127,Perte trame VNodeTPMS E254,Perte trame NodeMULTIMEDIA_CANM C198,Perte trame VNodeEcall C19F,Perte trame VNodeMULTIDRIVE C235,Perte trame VNodeAEBS C244,Perte trame VNodeHFP_FAST E104,Perte trame NodeFWS C243,Perte trame VNodeHFP E10B,Perte trame NodeVADA E113,Perte trame NodeVSP E118,Perte trame NodeHFM C129,Perte trame VNodeTPW E13D,Perte trame NodeADB E140,Perte trame NodeECM E141,Perte trame NodeAT E143,Perte trame NodeHEVC E148,Perte trame NodeBrake_ABS_VDC Control Module E14A,Perte trame NodeETC_4GRIP E14F,Perte trame NodeBCM E150,Perte trame NodeACU E152,Perte trame NodeADAS E154,Perte trame NodeMULTIMEDIA_CANV E155,Perte trame NodeEPKB E159,Perte trame NodeEPS E15B,Perte trame NodeUSM E15F,Perte trame NodeRADAR E164,Perte trame NodeDSMU E165,Perte trame NodeUPA_SONAR E166,Perte trame NodeMBL E16B,Perte trame NodeFront_Camera E16D,Perte trame NodeTCU E173,Perte trame NodeHUD E176,Perte trame NodeIDM module E178,Perte trame NodeMAGIC_FOLDING 9406,Safety Monitoring Reset (Historical DTC only) 9416,+ Batt PWM monitoring 9405,HANDS OFF Telltale diagnosis E167,Perte trame NodeEBA 9428,EBA Frame Safety mechanism 9429,VDC EV/PHEV Frame Safety mechanism 940E,Loss of Ethernet connection 940F,Lost communication with Multimedia E174,Perte trame VNodeBSWSonar 9430,LCTakeOverFrame Safety mechanisms 9408,SBR telltale command monitoring (ext telltale) ================================================ FILE: app/src/main/assets/ZOE_Ph2/TDB_Fields.csv ================================================ ,763,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,763,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Reprog ,763,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,763,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,763,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,763,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTC;1:ISO_14229-1_DTC;2:SAE_J1939-73_DTC;3:ISO_11992-4_DTC;4:SAE_J2012-DA_WWHOBD_DTC ,763,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,763,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,763,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD,37889:Oil level sensor monitoring;37890:Fuel gauge monitoring;37891:Brake fluid level;37892:Warning Airbag telltale monitoring;37896:SBR telltale command monitoring;37898:Parking Brake input;37899:Windscreen level input;37900:EEPROM monitoring;37904:Trip computer input(s);37905:Oil pressure input;37906:External temperature inputs;37907:Error Configuration;37908:Backlight Dimming level inputs monitoring;37909:High Side PWM outputs for backlight monitoring;37910:+ Batt PWM monitoring;37920:Alternator excitation input;37921:DynamicTacho Frame Loss;49153:BUS OFF CAN V;49192:BUS OFF CAN M;49408:Perte trame ECM;49409:Perte trame AT;49425:Perte trame USM;49426:Perte trame EMM;49441:Perte trame ABS;49447:Perte trame TPMS;49448:Perte trame APB;49449:Perte trame ESC;49457:Perte trame EPS;49458:Perte trame VADA;49460:Perte trame 4RD;49464:Perte trame 4x4 module;49472:Perte trame BCM;49489:Perte trame AIRBAG;49497:Perte trame UPA;49507:Perte trame BIC;49512:Perte trame HFM;49537:Perte trame LBCS;49538:Perte trame Camera;49559:Perte trame TCUEcall;49560:Perte trame TCU;49672:Perte trame RearSeat;49714:Perte trame BSW;49717:Perte trame ACC;49731:Perte trame HFP;49812:Perte trame EVC;61443:Power supply monitoring ,763,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjt failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component/system operation obstructed or blocked;152:component or system over temperature ,763,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier,0:N/A ,763,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,763,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,763,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,763,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,763,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,763,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,763,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,763,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,763,16,39,1,0,0,,1903000000FF,5903000000FF,4ff,DTCRecord ,763,40,47,1,0,0,,1903000000FF,5903000000FF,ff,DTCSnapshotRecordNumber ,763,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,763,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,763,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,763,40,47,1,0,0,,190600000080,590600000080,ff,DTCSnapshotRecordNumber ,763,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,763,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,763,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,763,40,47,1,0,0,,190600000081,590600000081,ff,DTCSnapshotRecordNumber ,763,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,763,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,763,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,763,40,47,1,0,0,,190600000082,590600000082,ff,DTCSnapshotRecordNumber ,763,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,763,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,763,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,763,40,47,1,0,0,,1906000000FF,5906000000FF,ff,DTCSnapshotRecordNumber ,763,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,763,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,763,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,763,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,37889:Oil level sensor monitoring;37890:Fuel gauge monitoring;37891:Brake fluid level;37892:Warning Airbag telltale monitoring;37893:HANDS OFF Telltale diagnosis;37894:Safety Monitoring Reset (Historical DTC only);37896:SBR telltale command monitoring (ext telltale);37900:NVM monitoring;37902:Loss of Ethernet connection;37903:Lost communication with Multimedia;37904:Trip computer input(s) monitoring;37906:ExternalTemperature Inputs monitoring;37907:Error Configuration;37908:Backlight Dimming level inputs monitoring;37909:High Side PWM outputs for backlight monitoring;37910:+ Batt PWM monitoring;37922:EPS Frame Safety mechanisms;37923:FWS Frame Safety mechanisms;37924:SafetyBag triggering;37925:STOP Telltale diagnosis (SS1);37926:SERVICE Telltale diagnosis (SS2);37928:EBA Frame Safety mechanism;37929:VDC EV/PHEV Frame Safety mechanism;37936:LCTakeOverFrame Safety mechanisms;49192:BUS OFF CAN V;49207:BUS OFF CAN M;49411:Perte trame VNodeSBW;49432:Perte trame VNodeSCR;49442:Perte trame VNodeESC;49447:Perte trame VNodeTPMS;49449:Perte trame VNodeTPW;49560:Perte trame VNodeEcall;49567:Perte trame VNodeMULTIDRIVE;49717:Perte trame VNodeAEBS;49731:Perte trame VNodeHFP;49732:Perte trame VNodeHFP_FAST;57604:Perte trame NodeFWS;57611:Perte trame NodeVADA;57619:Perte trame NodeVSP;57624:Perte trame NodeHFM;57661:Perte trame NodeADB;57664:Perte trame NodeECM;57665:Perte trame NodeAT;57667:Perte trame NodeHEVC;57672:Perte trame NodeBrake_ABS_VDC Control Module;57674:Perte trame NodeETC_4GRIP;57679:Perte trame NodeBCM;57680:Perte trame NodeACU;57682:Perte trame NodeADAS;57684:Perte trame NodeMULTIMEDIA_CANV;57685:Perte trame NodeEPKB;57689:Perte trame NodeEPS;57691:Perte trame NodeUSM;57695:Perte trame NodeRADAR;57700:Perte trame NodeDSMU;57701:Perte trame NodeUPA_SONAR;57702:Perte trame NodeMBL;57703:Perte trame NodeEBA;57707:Perte trame NodeFront_Camera;57709:Perte trame NodeTCU;57715:Perte trame NodeHUD;57716:Perte trame VNodeBSWSonar;57718:Perte trame NodeIDM module;57720:Perte trame NodeMAGIC_FOLDING;57940:Perte trame NodeMULTIMEDIA_CANM;61443:Power supply monitoring ,763,40,47,1,0,0,,190A,590A,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjt failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component/system operation obstructed or blocked;152:component or system over temperature ,763,48,55,1,0,0,,190A,590A,ff,DTCSnapshotRecordNumber ,763,24,31,1,0,0,,220101,620101,ff,Language_CF,0:Albanese;1:Arabic;2:Bulgarian;3:Chinese Mandarin(Simplified Chinese character);4:Croatian;5:Czech;6:Danish;7:Dutch;8:English (UK);9:Estonian;10:Finnish;11:French;12:German;13:Greek;14:Hebrew;15:Hindi;16:Hungarian;17:Indonesian (Bahasa);18:Italian;19:Japanese;20:Korean;21:Latvian;22:Lithuanian;23:Norwegian;24:Persian (Farsi / Iranian);25:Polish;26:Portuguese (Portugal);27:Portuguese Brazilian;28:Romanian;29:Russian;30:Serbian;31:Slovakian;32:Slovenian;33:Spanish (Castillan);34:Spanish Latin American (also Mexican);35:Swedish;36:Turkish;37:Ukrainian;38:Vietnamese;255:Not used ,763,24,31,1,0,0,,220102,620102,ff,GearBoxType_CF,0:Manual gearbox;1:Automatic gearbox (Pluristable PRND);2:Automatic gearbox (ShiftByWire H-grid);3:Automatic gearbox (I-Shifter ICE PRND);4:Automatic gearbox (I-Shifter EV/PHEV PRNDB);5:Automatic gearbox (Pluristable PRNDL --> CVT);6:Automatic gearbox (Pluristable PRNDB --> EV/PHEV) ,763,24,31,1,0,0,,220103,620103,ff,CarburationType_CF,0:Petrol;1:Diesel;2:GNC;3:GPL;4:Petrol/GNC;5:Petrol/GPL;6:PHEV;7:EV;8:HEV ,763,24,31,1,0,0,,220104,620104,ff,DistanceUnit_CF,0:km;1:miles ,763,24,31,1,0,0,,220105,620105,ff,VolumeUnit_CF,0:litre;1:gallon UK;2:gallon US ,763,24,31,1,0,0,,220106,620106,ff,TripComputerType_CF,0:without Trip Computer;1:volume/mileage (par défaut);2:mileage/volume ,763,24,31,1,0,0,,220107,620107,ff,TyrePressureUnit_CF,0:bar;1:psi ,763,24,31,1,0,0,,220108,620108,ff,VehicleGUIStyle_CF,0:Hatchback;1:Sedan;2:SUV;3:LCV/CDV;4:VU ,763,24,31,1,0,0,,220109,620109,ff,FrontSBRInhibition_CF,0:Front SBR not inhibited;1:Front SBR inhibited ,763,24,31,1,0,0,,22010A,62010A,ff,ParkingBrakeType_CF,0:Manual Parking Brake;1:Assisted Parking Brake ,763,24,24,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_ABS,0:Not autotested;1:Autotested ,763,25,25,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_ESC,0:Not autotested;1:Autotested ,763,26,26,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_ESC OFF,0:Not autotested;1:Autotested ,763,27,27,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_TPMS,0:Not autotested;1:Autotested ,763,28,28,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_StopStart Unavailable,0:Not autotested;1:Autotested ,763,29,29,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_EPS,0:Not autotested;1:Autotested ,763,30,30,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_Airbag,0:Not autotested;1:Autotested ,763,31,31,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_HFP,0:Not autotested;1:Autotested ,763,32,32,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_GAS_LPG,0:Not autotested;1:Autotested ,763,33,33,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_FCW,0:Not autotested;1:Autotested ,763,34,34,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_UREA,0:Not autotested;1:Autotested ,763,35,35,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_Electrical Failure_SED,0:not autotested;1:Autotested ,763,36,36,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_HV Battery too hot,0:Not autotested;1:Autotested ,763,38,38,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_AEBS failure_OFF,0:Not autotested;1:Autotested ,763,39,39,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_MiniFlex,0:Not autotested;1:Autotested ,763,40,40,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_MinorBrakingFailure_AMBER,0:Not autotested;1:Autotested ,763,41,41,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_DPF,0:Not autotested;1:Autotested ,763,42,42,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_FuelCapOpen,0:Not autotested;1:Autotested ,763,43,43,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_LightingFailure,0:Not autotested;1:Autotested ,763,44,44,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_LDW,0:Not autotested;1:Autotested ,763,45,45,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_AFSfailure,0:Not autotested;1:Autotested ,763,46,46,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.ADAS_HandsOFFdetection,0:Not autotested;1:Autotested ,763,47,47,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_Electrical Failure Major,0:Not autotested;1:Autotested ,763,48,48,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_Charge failure,0:Not autotested;1:Autotested ,763,49,49,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_xEV System Failure,0:Not autotested;1:Autotested ,763,50,50,1,0,0,,22010B,62010B,ff,TelltaleAutotestP1_CF.Autotest_SBS failure_OFF,0:Not autotested;1:Autotested ,763,24,31,1,0,0,,22010C,62010C,ff,TACStrategy_CF,0:No Filter;1:Fast Filter only (Korean market);2:Full filter ,763,24,31,1,0,0,,22010D,62010D,ff,UPAMMI_CF,0:Without UPA MMI;1:With UPA MMI ,763,24,31,1,0,0,,22010E,62010E,ff,TPMSMMI_CF,0:Without TPMS;1:With TPMS;2:With TPW ,763,24,31,1,0,0,,22010F,62010F,ff,OverspeedWarningPresent_CF,0:Without overspeed warning;1:With overspeed warning (GCC countries);2:With overspeed warning (India) ,763,24,24,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Hindi,0:Hindi NO;1:Hindi Yes ,763,25,25,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Hebrew,0:Hebrew NO;1:Hebrew Yes ,763,26,26,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Greek,0:Greek NO;1:Greek Yes ,763,27,27,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.German,0:German NO;1:German Yes ,763,28,28,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.French,0:French NO;1:French Yes ,763,29,29,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Finnish,0:Finnish NO;1:Finnish Yes ,763,30,30,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Estonian,0:Estonian NO;1:Estonian Yes ,763,31,31,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.English.UK,0:English (UK) NO;1:English (UK) Yes ,763,32,32,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Dutch,0:Dutch NO;1:Dutch Yes ,763,33,33,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Danish,0:Danish NO;1:Danish Yes ,763,34,34,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Czech,0:Czech NO;1:Czech Yes ,763,35,35,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Croatian,0:Croatian NO;1:Croatian Yes ,763,36,36,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.ChineseMandarin,0:ChineseMandarin (Simplified Chinese)/Mainland NO;1:ChineseMandarin (Simplified Chinese)/Mainland Yes ,763,37,37,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Bulgarian,0:Bulgarian NO;1:Bulgarian Yes ,763,38,38,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Arabic,0:Arabic NO;1:Arabic Yes ,763,39,39,1,0,0,,220110,620110,ff,DisplayableLanguage_P1_CF.Albanese,0:Albanese NO;1:Albanese Yes ,763,24,24,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Slovakian,0:Slovakian NO;1:Slovakian Yes ,763,25,25,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Serbian,0:Serbian NO;1:Serbian Yes ,763,26,26,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Russian,0:Russian NO;1:Russian Yes ,763,27,27,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Romanian,0:Romanian NO;1:Romanian Yes ,763,28,28,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Portuguese.Brazilian,0:Portuguese Brazilian NO;1:Portuguese Brazilian Yes ,763,29,29,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Portuguese,0:Portuguese NO;1:Portuguese Yes ,763,30,30,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Polish,0:Polish NO;1:Polish Yes ,763,31,31,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Persian.Farsi.Iranian,0:Persian (Farsi/Iranian) NO;1:Persian (Farsi/Iranian) Yes ,763,32,32,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Norwegian,0:Norwegian NO;1:Norwegian Yes ,763,33,33,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Lithuanian,0:Lithuanian NO;1:Lithuanian Yes ,763,34,34,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Latvian,0:Latvian NO;1:Latvian Yes ,763,35,35,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Korean,0:Korean NO;1:Korean Yes ,763,36,36,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Japanese,0:Japanese NO;1:Japanese Yes ,763,37,37,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Italian,0:Italian NO;1:Italian Yes ,763,38,38,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Indonesian.Bahasa,0:Indonesian (Bahasa) NO;1:Indonesian (Bahasa) Yes ,763,39,39,1,0,0,,220111,620111,ff,DisplayableLanguage_P2_CF.Hungarian,0:Hungarian NO;1:Hungarian Yes ,763,33,33,1,0,0,,220112,620112,ff,DisplayableLanguage_P3_CF.Vietnamese,0:Vietnamese NO;1:Vietnamese Yes ,763,34,34,1,0,0,,220112,620112,ff,DisplayableLanguage_P3_CF.Ukrainian,0:Ukrainian NO;1:Ukrainian Yes ,763,35,35,1,0,0,,220112,620112,ff,DisplayableLanguage_P3_CF.Turkish,0:Turkish NO;1:Turkish Yes ,763,36,36,1,0,0,,220112,620112,ff,DisplayableLanguage_P3_CF.Swedish,0:Swedish NO;1:Swedish Yes ,763,37,37,1,0,0,,220112,620112,ff,DisplayableLanguage_P3_CF.Spanish.LatinAmerican,0:Spanish Latin American (also Mexican) NO;1:Spanish Latin American (also Mexican) Yes ,763,38,38,1,0,0,,220112,620112,ff,DisplayableLanguage_P3_CF.Spanish.Castillan,0:Spanish (Castillan) NO;1:Spanish (Castillan) Yes ,763,39,39,1,0,0,,220112,620112,ff,DisplayableLanguage_P3_CF.Slovenian,0:Slovenian NO;1:Slovenian Yes ,763,25,25,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeSRVM,0:Without SRVM;1:With SRVM ,763,26,26,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeBSWRadar,0:Without BSW radar;1:With BSW radar ,763,27,27,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeEBA,0:Without NodeEBA;1:With NodeEBA ,763,28,28,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeMBL,0:Without NodeMBL;1:With NodeMBL ,763,29,29,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeDSMU,0:Without NodeDSMU;1:With NodeDSMU ,763,30,30,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeADB,0:Without NodeADB;1:With NodeADB ,763,31,31,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeVSP,0:Without NodeVSP;1:With NodeVSP ,763,32,32,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeHUD,0:Without NodeHUD;1:With NodeHUD ,763,33,33,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeMULTIMEDIA_CANM,0:Without NodeMULTIMEDIA_CANM;1:With NodeMULTIMEDIA_CANM ,763,34,34,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeMULTIMEDIA_CANV,0:Without NodeMULTIMEDIA_CANV;1:With NodeMULTIMEDIA_CANV ,763,35,35,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeTCU,0:Without NodeTCU;1:With NodeTCU ,763,36,36,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeMAGIC_FOLDING,0:Without NodeMAGIC_FOLDING;1:With NodeMAGIC_FOLDING ,763,37,37,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeFRONT_CAMERA,0:Without NodeFRONT_CAMERA;1:With NodeFRONT_CAMERA ,763,38,38,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeRADAR,0:Without NodeRADAR;1:With NodeRADAR ,763,39,39,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeADAS,0:Without NodeADAS;1:With NodeADAS ,763,40,40,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeVADA,0:Without NodeVADA;1:With NodeVADA ,763,41,41,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeIDM,0:Without NodeIDM;1:With NodeIDM ,763,42,42,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeFWS,0:Without NodeFWS;1:With NodeFWS ,763,43,43,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeETC_4GRIP,0:Without NodeETC_4GRIP;1:With NodeETC_4GRIP ,763,44,44,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeUPA_SONAR,0:Without NodeUPA_SONAR;1:With NodeUPA_SONAR ,763,45,45,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeHFM,0:Without NodeHFM;1:With NodeHFM ,763,46,46,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeHEPS,0:Without NodeHEPS;1:With NodeHEPS ,763,47,47,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeEPS,0:Without NodeEPS;1:With NodeEPS ,763,48,48,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeHEVC,0:Without NodeHEVC;1:With NodeHEVC ,763,49,49,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeECM,0:Without NodeECM;1:With NodeECM ,763,50,50,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeAT,0:Without NodeAT;1:With NodeAT ,763,51,51,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeEPKB,0:Without NodeEPKB;1:With NodeEPKB ,763,52,52,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeBRAKE_ABS_VDC,0:Without NodeBRAKE_ABS_VDC;1:With NodeBRAKE_ABS_VDC ,763,53,53,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeACU,0:Without NodeACU;1:With NodeACU ,763,54,54,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeEMM,0:Without NodeEMM;1:With NodeEMM ,763,55,55,1,0,0,,220113,620113,ff,ECUPresent_Part1_CF.NodeUSM,0:Without NodeUSM;1:With NodeUSM ,763,41,41,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeMM_SETTING,0:Without VNodeMM_SETTING;1:With VNodeMM_SETTING ,763,42,42,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeAT_RPM,0:Without VNodeAT_RPM;1:With VNodeAT_RPM ,763,43,43,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeLC,0:Without VNodeLC;1:With VNodeLC ,763,44,44,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeAEBS,0:Without VNodeAEBS;1:With VNodeAEBS ,763,45,45,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeSCR,0:Without VNodeSCR;1:With VNodeSCR ,763,46,46,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeECALL,0:Without VNodeECALL;1:With VNodeECALL ,763,47,47,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeBSWSonar,0:Without VNodeBSWSonar;1:With VNodeBSWSonar ,763,48,48,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeSBW,0:Without VNodeSBW;1:With VNodeSBW ,763,49,49,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeHFP_FAST,0:Without VNodeHFP_FAST;1:With VNodeHFP_FAST ,763,50,50,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeHFP,0:Without VNodeHFP;1:With VNodeHFP ,763,51,51,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeMULTIDRIVE,0:Without VNodeMULTIDRIVE;1:With VNodeMULTIDRIVE ,763,52,52,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeBSW,0:Without VNodeBSW;1:With VNodeBSW ,763,53,53,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeTPMS,0:Without VNodeTPMS;1:With VNodeTPMS ,763,54,54,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeTPW,0:Without VNodeTPW;1:With VNodeTPW ,763,55,55,1,0,0,,220114,620114,ff,ECUPresent_Part2_CF.VNodeESC,0:Without VNodeESC;1:With VNodeESC ,763,24,31,1,0,0,,220117,620117,ff,WaterTempPageMMI_CF,0:Without;1:With ,763,24,24,1,0,0,,220118,620118,ff,DayBacklightsPresent_CF.Zone1,0:no backlit;1:backlit ,763,25,25,1,0,0,,220118,620118,ff,DayBacklightsPresent_CF.Zone2,0:no backlit;1:backlit ,763,26,26,1,0,0,,220118,620118,ff,DayBacklightsPresent_CF.Zone3,0:no backlit;1:backlit ,763,27,27,1,0,0,,220118,620118,ff,DayBacklightsPresent_CF.Zone4,0:no backlit;1:backlit ,763,28,28,1,0,0,,220118,620118,ff,DayBacklightsPresent_CF.Zone5,0:no backlit;1:backlit ,763,29,29,1,0,0,,220118,620118,ff,DayBacklightsPresent_CF.Zone6,0:no backlit;1:backlit ,763,30,30,1,0,0,,220118,620118,ff,DayBacklightsPresent_CF.Zone7,0:no backlit;1:backlit ,763,31,31,1,0,0,,220118,620118,ff,DayBacklightsPresent_CF.Zone8,0:no backlit;1:backlit ,763,24,24,1,0,0,,220119,620119,ff,ClusterUserSetMenu_P2_CF.ResetToDefaultValue,0:absent;1:present ,763,46,46,1,0,0,,220119,620119,ff,ClusterUserSetMenu_P2_CF.BSWSonar Activation,0:absent;1:present ,763,47,47,1,0,0,,220119,620119,ff,ClusterUserSetMenu_P2_CF.BSWRadar Activation,0:absent;1:present ,763,48,48,1,0,0,,220119,620119,ff,ClusterUserSetMenu_P2_CF.FKPActivation,0:absent;1:present ,763,52,52,1,0,0,,220119,620119,ff,ClusterUserSetMenu_P2_CF.MirorFoldingAtDoorLockActivation,0:absent;1:present ,763,53,53,1,0,0,,220119,620119,ff,ClusterUserSetMenu_P2_CF.WAC_APRUNactivation,0:absent;1:present ,763,54,54,1,0,0,,220119,620119,ff,ClusterUserSetMenu_P2_CF.SilentModeActivation,0:absent;1:present ,763,55,55,1,0,0,,220119,620119,ff,ClusterUserSetMenu_P2_CF.Auto_RelockActivation,0:absent;1:present ,763,24,31,1,0,0,,22011A,62011A,ff,ChronoTachographPresence_CF,0:Without tachograph;1:With tachograph ,763,24,31,1,0,0,,22011C,62011C,ff,BatteryWarnWireInhibition_CF,0:Not inhibited ( vehicle without EMM);1:inhibited (vehicle with EMM) ,763,24,31,1,0,0,,22011D,62011D,ff,WelcomeSequenceType_CF,0:Phantom sequence LHD;1:WS Variant1 LHD;2:WS Variant 2 LHD;3:WS Variant 3 LHD;128:Phantom sequence RHD;129:WS Variant1 RHD;130:WS Variant 2 RHD;131:WS Variant 3 RHD ,763,24,31,1,0,0,,22011E,62011E,ff,ClusterUserSetPresent_CF,0:Without Cluster MPU;1:With Cluster MPU ,763,24,31,1,0,0,,22011F,62011F,ff,ClockDisplayMode_CF,0:24h;1:12h international;2:12h JPN ,763,24,31,1,0,0,,220120,620120,ff,ESCMMI_CF,0:Without ESC;1:With ESC ,763,24,31,1,0,0,,220121,620121,ff,Clock_CF,0:Clock not displayed / RTC OFF;1:Clock Displayed from CAN / RTC OFF;2:Clock displayed / Not set / RTC ON;3:Clock displayed and set / RTC ON ,763,24,31,1,0,0,,220122,620122,ff,ExternalTemperature_CF,0:No external Temp. management;1:External Temp. displayed (see note 1);2:External Temp. measurement / No display;3:External Temp. Measurement and Display ,763,24,31,1,0,0,%,220124,620124,ff,DIM_OutputWhenDayNightOnly_CF ,763,24,31,1,0,0,,220125,620125,ff,ChargingPlugTelltaleVariant_CF,0:Green telltale (Raw);1:Red telltale (China) ,763,24,31,1,0,0,,220126,620126,ff,MexType_CF,0:Without MEX (T4);1:Without MEX (C1A);2:With MEX;3:With MEX (Renault sport);4:Without MEX (C1A VU);5:With MEX C1A VAZ ,763,24,31,1,0,0,,220127,620127,ff,DPFManualRegenMMI_CF,0:Without DPF manual regeneration page;1:With DPF manual regeneration page ,763,24,31,1,0,0,,220128,620128,ff,AWDMMI_CF,0:Without AWD MMI;1:With AWD MMI ,763,31,31,1,0,0,,220129,620129,ff,ATBeepInR_CF,0:Without sound;1:With sound ,763,24,31,1,0,0,,22012A,62012A,ff,I_BoosterSafetybag_CF,0:Deactivated;1:Activated ,763,24,31,1,0,0,,22012B,62012B,ff,OilLevelPresent_CF,0:Without;1:With ,763,24,31,100,0,0,km,22012C,62012C,ff,MSCOilChgWarningThresholdKM_CF ,763,24,31,1,0,0,,22012E,62012E,ff,LDWMMI_CF,0:Without LDW;1:With LDW- without sound;2:With LDW- with sound ,763,24,31,1,0,0,,22012F,62012F,ff,DIM_DayNightPositionLights_CF,0:Without;1:With ,763,24,31,1,0,0,,220130,620130,ff,TemperatureUnit_CF,0:degree Celsius;1:degree Fahrenheit ,763,24,24,1,0,0,,220131,620131,ff,ADACWorldPresence_CF.Icon,0:With MEX icon;1:With MEX data icon ,763,28,28,1,0,0,,220131,620131,ff,ADACWorldPresence_CF.Nav,0:Absent;1:Present ,763,29,29,1,0,0,,220131,620131,ff,ADACWorldPresence_CF.Audio,0:Absent;1:Present ,763,30,30,1,0,0,,220131,620131,ff,ADACWorldPresence_CF.MEX,0:Absent;1:Present ,763,31,31,1,0,0,,220131,620131,ff,ADACWorldPresence_CF.ADAS,0:Absent;1:Present ,763,24,31,1,0,0,,220132,620132,ff,Chassis1MMI_CF,0:Without;1:With ,763,24,31,1,0,0,,220133,620133,ff,SCRMMI_CF,0:Without SCR MMI;1:With SCR MMI ( Lightweight);2:With SCR MMI ( Heavyweight);3:Light weight ( Euro6DFull) ,763,24,31,1,0,0,,220134,620134,ff,EgocarType_CF,0:Phantom egocar;1:Egocar 1;2:Egocar 2;3:Egocar 3;4:Egocar 4;5:Egocar 5;6:Egocar 6;7:Egocar 7;8:Egocar 8;9:Egocar 9;10:Egocar 10;11:Egocar 11;12:Egocar 12;13:Egocar 13;14:Egocar 14 ,763,24,31,1,0,0,,220136,620136,ff,DimmingStrategy_CF,0:Day/night only;1:Mechanical Rheostat (wire input);2:Virtual rheostat (CAN);3:+ and - switches ,763,26,26,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.FrontWiperDrop,0:absent;1:present ,763,27,27,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.AutomaticFrontWiper,0:absent;1:present ,763,28,28,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.DWactivation,0:absent;1:present ,763,30,30,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.AutoFMHduration,0:absent;1:present ,763,31,31,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.AutoFMHactivation,0:absent;1:present ,763,32,32,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.SailingIdleActivation,0:absent;1:present ,763,33,33,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.LDWvibrationLevel,0:absent;1:present ,763,34,34,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.LKAsensibility,0:absent;1:present ,763,35,35,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.ClusterColorChoice,0:absent;1:present ,763,36,36,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.ClusterSkinChoice,0:absent;1:present ,763,37,37,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.MeterSoundLevel,0:absent;1:present ,763,38,38,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.UTAactivation,0:absent;1:present ,763,39,39,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.FCWactivation,0:absent;1:present ,763,40,40,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.TSR_OSPactivation,0:absent;1:present ,763,41,41,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.LDWvolumeByCluster,0:absent;1:present ,763,42,42,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.LDWvolumeByECU,0:absent;1:present ,763,43,43,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.LDWsensLevel,0:absent;1:present ,763,44,44,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.SingleDoorOpening,0:absent;1:present ,763,45,45,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.AutomaticIntLighting,0:absent;1:present ,763,46,46,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.WGSactivation,0:absent;1:present ,763,47,47,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.RearWiper,0:absent;1:present ,763,48,48,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.ADBactivation,0:absent;1:present ,763,49,49,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.UPAsoundVolume,0:absent;1:present ,763,50,50,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.RearUPA,0:absent;1:present ,763,51,51,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.FrontUPA,0:absent;1:present ,763,52,52,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.HandfreeUnlocking,0:absent;1:present ,763,53,53,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.AutomaticDoorLock,0:absent;1:present ,763,54,54,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.DistanceUnitChoice,0:absent;1:present ,763,55,55,1,0,0,,220137,620137,ff,ClusterUserSetMenu_P1_CF.LanguageChoice,0:absent;1:present ,763,24,31,1,0,0,,220138,620138,ff,MSCOilDistanceCounterPresent_CF,0:absent;1:with cluster internal counter;2:Present with OCS;3:Present with OCS AND internal counter ,763,24,31,1,0,0,,220139,620139,ff,MSCOilTimeCounterPresent_CF,0:Absent;1:Present ,763,24,31,1,0,0,,22013A,62013A,ff,MSCServDistanceCounterPresent_CF,0:Absent;1:Present ,763,24,31,1,0,0,,22013B,62013B,ff,MSCServTimeCounterPresent_CF,0:Absent;1:Present ,763,24,31,100,0,0,km,22013C,62013C,ff,MSCServiceWarningThresholdKM_CF ,763,24,31,1,0,0,,22013D,62013D,ff,DIM_DayNightModifiedByPCFN_CF,0:Without;1:With ,763,24,31,1,0,0,,22013F,62013F,ff,NivocodSensorType_CF,0:Without R//;1:With R// ,763,24,31,1,0,0,,220140,620140,ff,EthernetPresent_CF,0:Without ethernet;1:With ethernet ,763,24,31,1,0,0,°C,220142,620142,ff,EVDeratingPointOffset_CF ,763,24,31,1,0,0,,220145,620145,ff,EnergyFlowMMI_CF,0:Without;1:Simplified (without HVAC);2:Full (with HVAC) ,763,24,31,1,0,0,,220147,620147,ff,WelcomeSequenceInhibition_CF,0:not inhibited;1:inhibited ,763,24,31,1,0,0,,22014B,62014B,ff,SpeedScaleType_CF,0:280km/h or 180 mph;1:240km/h or 160mph;2:220km/h or 140mph;3:280km/h (Peer);4:240km/h (Peer);5:220km/h (Peer) ,763,24,39,1,0,0,km,220201,620201,ff,MSCOilChgInitialDistanceInKM_CF ,763,24,39,1,0,0,d,220202,620202,ff,MSCOilChgInitialPeriodInDay_CF ,763,24,39,1,0,0,km,220203,620203,ff,MSCOilChgUsualDistanceInKM ,763,24,39,1,0,0,d,220204,620204,ff,MSCOilChgUsualPeriodInDay ,763,24,55,1,0,0,km,220207,620207,1ff,ClusterCurrentDistanceByDIAG ,763,24,39,.1,0,1,V,22020B,62020B,ff,Supply voltage ,763,24,39,1,0,0,km,22020C,62020C,ff,MSCServiceInitialDistanceInKM_CF ,763,24,39,1,0,0,d,22020D,62020D,ff,MSCServiceInitialPeriodInDay_CF ,763,24,39,1,0,0,km,22020E,62020E,ff,MSCServiceUsualDistanceInKM ,763,24,39,1,0,0,d,22020F,62020F,ff,MSCServiceUsualPeriodInDay ,763,24,31,1,0,0,L,220301,620301,ff,GaugingThreshold.High_CF ,763,32,39,1,0,0,L,220301,620301,ff,GaugingThreshold.Low_CF ,763,24,31,.01,0,2,,220302,620302,ff,S1.Kmin_CF ,763,32,39,.01,0,2,,220302,620302,ff,S1.Kmaj_CF ,763,24,31,.01,0,2,,220303,620303,ff,S2.Kmin_CF ,763,32,39,.01,0,2,,220303,620303,ff,S2.Kmaj_CF ,763,24,31,.01,0,2,,220304,620304,ff,S3.Kmin_CF ,763,32,39,.01,0,2,,220304,620304,ff,S3.Kmaj_CF ,763,24,31,1,0,0,L,220306,620306,ff,FuelReadjust.L2offL0_CF ,763,32,39,1,0,0,L,220306,620306,ff,FuelReadjust.L0L3_CF ,763,40,47,1,0,0,L,220306,620306,ff,FuelReadjust.L2ZeroSpeed_CF ,763,24,31,1,0,0,L,220307,620307,ff,FuelReadjustNearFull.L0_CF ,763,32,39,1,0,0,L,220307,620307,ff,FuelReadjustNearFull.L2_CF ,763,40,47,1,0,0,L,220307,620307,ff,FuelReadjustNearFull.L0L3_CF ,763,24,31,1,0,0,L,220308,620308,ff,V0FuncR0.V0_CF ,763,32,47,1,0,0,Ohm,220308,620308,ff,V0FuncR0.R0_CF ,763,24,31,1,0,0,L,220309,620309,ff,V1FuncR1.V1_CF ,763,32,47,1,0,0,Ohm,220309,620309,ff,V1FuncR1.R1_CF ,763,24,31,1,0,0,L,22030A,62030A,ff,V2FuncR2.V2_CF ,763,32,47,1,0,0,Ohm,22030A,62030A,ff,V2FuncR2.R2_CF ,763,24,31,1,0,0,L,22030B,62030B,ff,V3FuncR3.V3_CF ,763,32,47,1,0,0,Ohm,22030B,62030B,ff,V3FuncR3.R3_CF ,763,24,31,1,0,0,L,22030C,62030C,ff,V4FuncR4.V4_CF ,763,32,47,1,0,0,Ohm,22030C,62030C,ff,V4FuncR4.R4_CF ,763,24,31,1,0,0,L,22030D,62030D,ff,V5FuncR5.V5_CF ,763,32,47,1,0,0,Ohm,22030D,62030D,ff,V5FuncR5.R5_CF ,763,24,31,1,0,0,L,22030E,62030E,ff,V6FuncR6.V6_CF ,763,32,47,1,0,0,Ohm,22030E,62030E,ff,V6FuncR6.R6_CF ,763,24,31,1,0,0,L,22030F,62030F,ff,V7FuncR7.V7_CF ,763,32,47,1,0,0,Ohm,22030F,62030F,ff,V7FuncR7.R7_CF ,763,24,31,1,0,0,L,220310,620310,ff,V8FuncR8.V8_CF ,763,32,47,1,0,0,Ohm,220310,620310,ff,V8FuncR8.R8_CF ,763,24,31,1,0,0,L,220311,620311,ff,V9FuncR9.V9_CF ,763,32,47,1,0,0,Ohm,220311,620311,ff,V9FuncR9.R9_CF ,763,24,31,1,0,0,L,220312,620312,ff,V10FuncR10.V10_CF ,763,32,47,1,0,0,Ohm,220312,620312,ff,V10FuncR10.R10_CF ,763,24,39,.1,0,1,L,220314,620314,ff,L2displayed1_CF ,763,24,39,.1,0,1,L,220315,620315,ff,L2displayed2_CF ,763,24,39,.1,0,1,L,220316,620316,ff,L2displayed3_CF ,763,24,39,.1,0,1,L,220317,620317,ff,L2displayed4_CF ,763,24,39,.1,0,1,L,220318,620318,ff,L2displayed5_CF ,763,24,39,.1,0,1,L,220319,620319,ff,L2displayed6_CF ,763,24,39,.1,0,1,L,22031A,62031A,ff,L2displayed7_CF ,763,24,39,.1,0,1,L,22031B,62031B,ff,L2displayed8_CF ,763,24,39,.1,0,1,L,22031C,62031C,ff,L2displayed9_CF ,763,24,31,1,0,0,km,22031D,62031D,ff,FuelRangeCorrectKmAutonom_CF ,763,24,31,.1,0,1,L,22031E,62031E,ff,VolumeFuelWarning_CF ,763,24,31,.1,0,1,L,22031F,62031F,ff,Backup.VolumeFuelWarning_CF ,763,32,39,10,0,0,s,22031F,62031F,ff,Backup.Tau_CF ,763,24,39,.1,0,1,L,220326,620326,ff,L2displayed10_CF ,763,24,39,.1,0,1,L,220327,620327,ff,L2displayed11_CF ,763,24,39,.1,0,1,L,220328,620328,ff,L2displayed12_CF ,763,24,31,1,0,0,km,220329,620329,ff,TCI_RemainingDistanceIncreaseInhibitionThreshold_CF ,763,24,31,.1,0,1,L,22032A,62032A,ff,TCI_RemainingDistanceDisapearanceThreshold_CF ,763,24,31,1,0,0,km,22032B,62032B,ff,TCI_RemainingDistanceWarningThreshold_CF ,763,24,31,.5,0,1,L,22032C,62032C,ff,GAU_BigGapForInitReadjustment_CF ,763,24,39,.01,0,2,,22032D,62032D,ff,GAU_KConso_CF ,763,24,31,1,0,0,,22032E,62032E,ff,GAU_LimitAngleReajustmentInhibition_CF ,763,31,31,1,0,0,,22032F,62032F,ff,GAU_SlopeDetectionStrategy_CF,0:Without SlopeDetectionStrategy;1:With SlopeDetectionStrategy ,763,24,31,.5,0,1,L,220330,620330,ff,GAU_GapForInitReadjstmentSlopeStrategy_CF ,763,24,31,.5,0,1,L,220331,620331,ff,GAU_MinimumRefuelDetectionThreshold_CF ,763,31,31,1,0,0,,220332,620332,ff,GAU_TempoForVU_CF,0:Fuel stabilization standard tempo;1:CDV/LCV fuel stabilization extended tempo ,763,24,31,1,0,0,,220335,620335,ff,EthernetFunctionMMI_CF,0:Without;1:Navigation only;2:Navigation and picture ,763,24,31,1,0,0,,220336,620336,ff,EgocarColor_CF ,763,24,31,1,0,0,,220337,620337,ff,GGDiagramMMI_CF,0:Without GGDiagram;1:With GGDiagram ,763,24,31,1,0,0,,220338,620338,ff,SCRPageMMI_CF,0:Without SCR Page;1:With SCR Dist Page only;2:With SCR Dist and Volume Page ,763,24,31,1,0,0,,220356,620356,ff,PCFNEVChargingModeIHMStrategy_CF,0:Without HVChargeDisplay parameter use;1:With HVChargeDisplay parameter use ,763,24,31,1,0,0,,220357,620357,ff,VacuumPumpSafety_CF,0:Deactivated;1:Activated ,763,24,31,1,0,0,,220359,620359,ff,GaugingDevFrameAvailable_CF,0:GaugingDevFrames not available;1:GaugingDevFrames available ,763,24,31,1,0,0,,220363,620363,ff,RegulEVInfosMMI_CF,0:Without EV MMI;1:With EV MMI ,763,24,31,1,0,0,,222001,622001,ff,HandBrakeState,0:Parking brake released;1:Parking brake tightened;2:Unavailable ,763,24,31,1,0,0,,222002,622002,ff,BrakeFluidLevelState,0:No default;1:Mini level is reached;2:Circuit short to battery or open circuit ,763,24,31,1,0,0,,222003,622003,ff,WindscreenFluidLevel,0:No default;1:Mini level is reached;2:Circuit short to battery;3:Unavailable ,763,24,39,1,0,0,,222004,622004,1ff,DeltaOilMeasures.Status,0:Not present;1:Pending;2:Valid;3:Invalid;4:Invalid power supply;5:Invalid open circuit;6:Invalid short circuit;7:Invalid out of range ,763,40,55,1,0,0,mV,222004,622004,1ff,DeltaOilMeasures.Measurement ,763,24,39,1,0,0,Ohm,222005,622005,ff,FuelGaugeValue ,763,24,39,.1,0,1,V,222006,622006,ff,BatteryVoltage ,763,24,39,1,0,0,Ohm,222007,622007,ff,DimmerResistance ,763,24,31,1,0,0,,222009,622009,ff,TripComputerScrollState,0:No driver request;1:Upward scrolling;2:Downward scrolling;3:Page;4:OK;5:Out of range (measured resistance doesn't comply);6:Open Circuit;7:Push to talk;8:Phone;9:Short Circuit;10:Home button;11:Back button ,763,24,31,1,0,0,,22200A,62200A,ff,IGNWire,0:IGN wire OFF;1:IGN wire ON ,763,25,55,1,0,0,Ohm,22200C,62200C,ff,ExternalTemperature.R ,763,24,31,1,0,0,,22200E,62200E,ff,DimmingSwitch,0:No driver request;1:Upward scrolling;2:Downward scrolling;5:Out of range (measured resistance doesn't comply);6:Open circuit;9:Short circuit ,763,30,31,1,0,0,,2220C0,6220C0,ff,PWMDimmingOutputState,0:PWM output OFF;1:PWM output ON;2:PWM output in protection (over current);3:Unavailable ,763,24,31,1,0,0,%,2220C1,6220C1,ff,PWMDimmingOutputDutyCycle ,763,30,31,1,0,0,,2220C2,6220C2,ff,DayNightOutputState,0:Output OFF;1:Output ON;2:Output in SC;3:Unavailable ,763,24,31,1,0,0,,2220F0,6220F0,ff,AirbagTLTDiagResult,0:TLT probably OFF;1:TLT probably ON ,763,24,31,1,0,0,,2220F1,6220F1,ff,StopTLTFailure,0:TLT not in failure;1:TLT in failure ,763,24,31,1,0,0,,2220F2,6220F2,ff,ServiceTLTFailure,0:TLT not in failure;1:TLT in failure ,763,24,31,1,0,0,,2220F5,6220F5,ff,MCANActivationState,0:MCAN in Rx mode deactivated;1:MCAN in Rx mode activated;2:MCAN in Tx mode deactivated;3:MCAN in Tx mode activated;4:MCAN in Rx/Tx mode deactivated;5:MCAN in Rx/Tx mode activated ,763,24,55,.01,0,2,km,222101,622101,1ff,TripDistanceKm ,763,24,39,.05,0,2,L,222102,622102,ff,TripFuelUsed ,763,24,55,1,0,0,s,222104,622104,1ff,TripTimer ,763,24,31,1,0,0,,222105,622105,ff,CauseOfLastTripComputerReset,0:never resetted;1:ADAC button customer reset;2:Multimedia Customer reset;3:Dist/time/carb overflow;4:odometer update;5:CAN frame loss;6:diag routine;7:Overflow of Electrical consumption (EV);8:SW reset (TCI _I loss) ,763,24,39,.05,0,2,L,222106,622106,ff,TripFuelLPG ,763,24,39,.05,0,2,kg,222107,622107,ff,TripFuelCNG ,763,24,55,.1,0,1,km,222108,622108,1ff,TripDistLPGCNG ,763,24,31,1,0,0,,222109,622109,ff,CauseOfLastTripComputerGasReset,0:Never resetted;1:ADAC buttons customer reset;2:Multimedia customer reset;3:Dist/time/carb overflow;4:Odometer update;5:CAN frame loss;6:Diag routine;7:Overflow of electrical consumption (EV);8:SW reset (TCI_I loss) ,763,24,31,1,0,0,,22210A,62210A,ff,CauseOfLastTripComputerGlobalReset,0:Never resetted;1:ADAC buttons customer reset;2:Multimedia customer reset;3:Dist/time/carb overflow;4:Odometer update;5:CAN frame loss;6:Diag routine;7:Overflow of electrical consumption (EV);8:SW reset (TCI_I loss) ,763,24,39,1,0,0,mV,22210B,62210B,ff,MemorizedOilMeasures ,763,24,31,1,0,0,,22210C,62210C,ff,MemorizedOilMeasuresOrigin,0:Oil never measured;1:Last measure;2:Previous measure ,763,29,29,1,0,0,,22210D,62210D,ff,OilFlags.B2,0:No flag lowered oil;1:Flag lowered oil ,763,30,30,1,0,0,,22210D,62210D,ff,OilFlags.B1,0:No flag engine hot;1:Flag engine hot ,763,31,31,1,0,0,,22210D,62210D,ff,OilFlags.B0,0:No flag sensor cold;1:Flag sensor cold ,763,24,55,1,0,0,,22210E,62210E,1ff,LastKilometersFuel ,763,24,39,.01,0,2,L,222201,622201,ff,L0Value ,763,24,39,.01,0,2,L,222202,622202,ff,L1Value ,763,24,39,.01,0,2,L,222203,622203,ff,L2Value ,763,24,55,1,0,0,km,222204,622204,1ff,DistanceWhenFuelLowBackupUpdateOccurs ,763,24,39,.01,0,2,L,222205,622205,ff,LbackupValue ,763,24,39,.01,0,2,L,222206,622206,ff,GAU_L1Value ,763,24,39,.1,32767,1,L,222207,622207,ff,GAU_StaticAngleLong ,763,24,39,.1,32767,1,L,222208,622208,ff,GAU_StaticAngleTrans ,763,24,39,.1,32767,1,L,222209,622209,ff,GAU_DynamicSlopeAngle ,763,24,31,1,0,0,,222401,622401,ff,FuelReadjustmentCause,0:No fuel update;2:With L2 at 0 speed;3:With L2OFF_L0;4:With L0_L3 nominal;5:With diag service;8:L2 is initialized with Diag request;10:With fuel flow failure;11:With L0_L3 near full;12:With backup alert ,763,24,31,1,0,0,L,222402,622402,ff,L0onDuringFuelReadjust ,763,24,31,1,0,0,L,222403,622403,ff,L3DuringFuelReadjust ,763,24,31,1,0,0,L,222404,622404,ff,L2offDuringFuelReadjust ,763,30,30,1,0,0,,222406,622406,ff,NVMStatus.B1,0:NVM backup solution by default ,763,31,31,1,0,0,,222406,622406,ff,NVMStatus.B0,0:Status NVM OK;1:Status NVM unavailable ,763,28,28,1,0,0,,222407,622407,ff,FuelLevelStatus.GasGauge,0:OK;1:Gas gauge in default ,763,29,29,1,0,0,,222407,622407,ff,FuelLevelStatus.GasFlow,0:OK;1:Gas flow in default ,763,30,30,1,0,0,,222407,622407,ff,FuelLevelStatus.FuelGauge,0:OK;1:Fuel gauge in default ,763,31,31,1,0,0,,222407,622407,ff,FuelLevelStatus.FuelFlow,0:OK;1:Fuel flow in default ,763,24,31,1,0,0,,222408,622408,ff,NumberResetsCausedByFailures ,763,24,31,1,0,0,,222409,622409,ff,NumberIntendedResets ,763,25,25,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.SRVM,0:OK;1:SRVM configuration error detection ,763,26,26,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.BSWRadar,0:OK;1:BSWRadar configuration error detection ,763,27,27,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.EBA,0:OK;1:EBA configuration error detection ,763,28,28,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.MBL,0:OK;1:MBL configuration error detection ,763,29,29,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.DSMU,0:OK;1:DSMU configuration error detection ,763,30,30,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.ADB,0:OK;1:ADB configuration error detection ,763,31,31,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.VSP,0:OK;1:VSP configuration error detection ,763,32,32,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.HUD,0:OK;1:HUD configuration error detection ,763,33,33,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.MULTIMEDIA_CANM,0:OK;1:MULTIMEDIA_CANM configuration error detection ,763,34,34,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.MULTIMEDIA_CANV,0:OK;1:MULTIMEDIA_CANV configuration error detection ,763,35,35,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.TCU,0:OK;1:TCU configuration error detection ,763,36,36,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.Magic Folding_Rear Seat,0:OK;1:RearSeat configuration error detection ,763,37,37,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.Front Camera,0:OK;1:FrontCamera configuration error detection ,763,38,38,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.RADAR,0:OK;1:RADAR configuration error detection ,763,39,39,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.ADAS,0:OK;1:ADAS configuration error detection ,763,40,40,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.VADA,0:OK;1:VADA configuration error detection ,763,41,41,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.IDM,0:OK;1:IDM configuration error detection ,763,42,42,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.FWS,0:OK;1:FWS configuration error detection ,763,43,43,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.ETC,0:OK;1:ETC configuration error detection ,763,44,44,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.UPA_SONAR,0:OK;1:UPA_SONAR configuration error detection ,763,45,45,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.HFM,0:OK;1:HFM configuration error detection ,763,46,46,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.HEPS,0:OK;1:HEPS configuration error detection ,763,47,47,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.EPS,0:OK;1:EPS configuration error detection ,763,48,48,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.HEVC,0:OK;1:HEVC configuration error detection ,763,49,49,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.ECM,0:OK;1:ECM configuration error detection ,763,50,50,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.AT,0:OK;1:AT configuration error detection ,763,51,51,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.EPKB,0:OK;1:EPKB configuration error detection ,763,52,52,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.Brake_ABS_VDC,0:OK;1:Brake_ABS_VDC configuration error detection ,763,53,53,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.ACU,0:OK;1:ACU configuration error detection ,763,54,54,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.EMM,0:OK;1:EMM configuration error detection ,763,55,55,1,0,0,,22240A,62240A,ff,ConfigurationErrorPart1_CF.USM,0:OK;1:USM configuration error detection ,763,24,39,.01,0,2,L,22240C,62240C,ff,OldGauOutput_LbackupOff ,763,24,39,.01,0,2,L,22240D,62240D,ff,OldGauOutput_L3 ,763,24,24,1,0,0,,22240E,62240E,ff,ClusterConfigurationError.Petrol gauging,0:OK;1:Petrol gauging calibration error detection ,763,25,25,1,0,0,,22240E,62240E,ff,ClusterConfigurationError.Cluster,0:Cluster has been configured;1:Cluster has never been configured ,763,26,26,1,0,0,,22240E,62240E,ff,ClusterConfigurationError.TripUnitConsumption,0:Trip Unit has been correctly configured;1:Trip Unit has not been correctly configured ,763,30,30,1,0,0,,22240E,62240E,ff,ClusterConfigurationError.Configured language unknown,0:configured language is known;1:configured language is unknown ,763,24,39,1,0,0,,22240F,62240F,ff,CauseOfLastStopService.BUIC line number related to last service alert ,763,40,55,1,0,0,,22240F,62240F,ff,CauseOfLastStopService.BUIC line number related to last stop alert ,763,24,55,.000001,0,3,L,222410,622410,1ff,OldGAUOutput_L2Off ,763,24,39,1,0,0,Ohm,222411,622411,ff,GAU_RjaugeValue ,763,24,39,.01,0,2,L,222412,622412,ff,GAU_GaugedLevel ,763,24,39,.01,0,2,L,222413,622413,ff,GAU_FilteredGaugedLevel ,763,24,39,.01,0,2,L,222414,622414,ff,GAU_Lbackup ,763,24,31,1,0,0,,222415,622415,ff,GAU_IsFillingConfirmed,0:Not Confirmed;1:Confirmed ,763,24,39,.01,0,2,L,222416,622416,ff,GAU_LevelDisplayedRefLastFilling ,763,24,39,.01,0,2,L,222417,622417,ff,GAU_LevelGaugedRefLastFilling ,763,24,39,.01,0,2,L,222418,622418,ff,GAU_LevelDisplayed ,763,24,39,.01,0,2,L,222419,622419,ff,GAU_FilteredGaugedLevelBeforeSleep ,763,24,31,1,0,0,,22241A,62241A,ff,GAU_IsFillingConfirmedBeforeSleep,0:Not confirmed;1:Confirmed ,763,24,39,.01,0,2,L,22241B,62241B,ff,GAU_LBackUpBeforeSleep ,763,24,39,.01,0,2,L,22241C,62241C,ff,GAU_LevelDisplayedRefBeforeSleep ,763,24,39,.01,0,2,L,22241D,62241D,ff,GAU_LevelGaugedRefBeforeSleep ,763,24,39,.01,0,2,L,22241E,62241E,ff,GAU_DisplayedLevelBeforeSleep ,763,24,31,1,0,0,,22241F,62241F,ff,GAU_FuelReadjustmentCause,1:Small gap;2:Big gap;3:Refueling detected;4:W/ diag service;5:W/ fuel flow failure;6:Lbackup readjustment ,763,24,55,.01,0,2,km,222604,622604,1ff,ExtECUDistBeforeReadjust ,763,24,55,.01,0,2,km,222605,622605,1ff,ClusterDistBeforeReadjust ,763,24,31,1,0,0,,222606,622606,ff,DistanceUpdateByDiagCounter ,763,24,31,1,0,0,,222607,622607,ff,DistanceUpdateByExternalECUCounter ,763,24,39,1,0,0,,222701,622701,4ff,ClusterSWInformation.ClusterBasicSWNumber ,763,40,55,1,0,0,,222701,622701,4ff,ClusterSWInformation.ClusterApplicativeSWNumber ,763,56,71,1,0,0,,222701,622701,4ff,ClusterSWInformation.ClusterGraphicalRessourceNumber ,763,72,87,1,0,0,,222701,622701,4ff,ClusterSWInformation.ClusterNavGraphicsRessourceNumber ,763,88,103,1,0,0,,222701,622701,4ff,ClusterSWInformation.ClusterSoundRessourceNumber ,763,24,55,1,0,0,,222703,622703,4ff,CANMessageSetsExtended.CANVMessageSetNumberExtended ,763,56,87,1,0,0,,222703,622703,4ff,CANMessageSetsExtended.CANMMessageSetNumberExtended ,763,24,39,.1,0,1,,222803,622803,ff,ExternalTempWire ,763,24,31,1,0,0,,222804,622804,ff,InternalTempMaxRecorded ,763,24,39,1,0,0,,222805,622805,ff,FANActivationCounter ,763,24,55,1,0,0,,222806,622806,1ff,FANActivationTotalTime ,763,24,31,1,0,0,,222807,622807,ff,NumberResetsCausedByFailuresGIP ,763,24,31,1,0,0,,222808,622808,ff,NumberIntentedResetsGIP ,763,0,0,1,0,0,,227001,627001,ff,DataRead.Telltale_IO_read ,763,0,0,1,0,0,,227002,627002,ff,DataRead.Sound_IO_read ,763,0,0,1,0,0,,227003,627003,ff,DataRead.Display_IO_read ,763,0,0,1,0,0,,227004,627004,ff,DataRead.Pointer_IO_read ,763,0,0,1,0,0,,227005,627005,ff,DataRead.Backlight_IO_read ,763,0,0,1,0,0,,227006,627006,ff,DataRead.Buttons_IO_read ,763,0,0,1,0,0,,227007,627007,ff,DataRead.SoundTunning_IO_read ,763,0,0,1,0,0,,227008,627008,ff,DataRead.FanControl_IO_read ,763,24,151,1,0,0,,22F010,62F010,4ff,ProgrammingOperationFingerprint ,763,24,103,1,0,0,,22F012,62F012,2ff,OperationalReference ,763,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationalReference ,763,24,47,1,0,0,km,22F0D0,62F0D0,1ff,Odometer of the last occurence ,763,24,31,1,0,0,,22F0D1,62F0D1,ff,Occurence fault counter ,763,24,103,1,0,0,,22F100,62F100,2ff,TypeApprovalNumber2 ,763,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,763,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,763,24,63,1,0,0,,22F180,62F180,2ff,BootVersion ,763,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,763,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,763,24,183,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,763,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,763,24,159,1,0,0,,22F190,62F190,2ff,VIN ,763,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,763,24,95,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,763,24,55,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,763,24,103,1,0,0,,22F196,62F196,2ff,TypeApprovalNumber ,763,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,763,24,663,1,0,0,,22FD1B,62FD1B,4ff,Record_reset ,763,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/TDB_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjt failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component/system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/UCH_Dtcs.csv ================================================ AF08,ALARM_VOLUMETRIC AC55,ASSIST_DEFROSTER AFAC,AUTO_ACC_RL AC3B,AUTO_MIRROR_RL AF04,BCM_APV_CODE E150,CAN_ACU E152,CAN_ADAS E13D,CAN_ADB E114,CAN_ANC E141,CAN_ATCU E025,CAN_AUDIO_AMP C073,CAN_BCM E18B,CAN_BMS_12V E18C,CAN_CGW E181,CAN_CPLC E17C,CAN_DSMU E18F,CAN_DSU E112,CAN_EBA E140,CAN_ECM E155,CAN_EPKB E188,CAN_EVAP E16B,CAN_FR_CAMERA E143,CAN_HEVC E118,CAN_HFM E153,CAN_HVAC E154,CAN_IVI E14E,CAN_METER E169,CAN_PBD E16D,CAN_TCU E15B,CAN_USM E148,CAN_VDC AF03,CHILDLOCK AC39,CHILDLOCK_WL_RL AF74,CLUTCH_END_SW AF73,CLUTCH_START_SW AC95,COMBI_SWITCH AC91,DI_FR_SR_LEFT AC90,DI_FR_SR_RIGHT AC93,DI_RR_LEFT AC92,DI_RR_RIGHT AF00,DONGLE AC40,DPC AC54,DRIVER_DEFROSTER AF09,DRIVER_DOOR AC21,DRIVER_SEAT_BELT AF60,DRIVER_SEAT_BELT_CONF AFAA,EEPROM AF02,ETA AC99,FOG_LAMP AC41,IFLW AC42,IFRW AFAE,IGN_CAB_RL AFAF,IGN_OFFLOAD1_RL AFB0,IGN_OFFLOAD2_RL AC43,IRLW AC44,IRRW AC76,LCM01 AC77,LCM02 AC78,LCM03 AC79,LCM04 AC7A,LCM05 AC7B,LCM06 AC7C,LCM07 AC7D,LCM08 AC7E,LCM09 AC7F,LCM10 AC80,LCM11 AC81,LCM12 AC96,LIGHT_SENSOR DC01,LIN_ACCESS DC03,LIN_AMBIANT DC02,LIN_DOOR DC00,LIN_RLS ACB0,MASTER_MOTOR ACB3,MOTOR_COMM ACCF,PMU AC50,PTC1_RL AC51,PTC2_RL AC52,PTC3_RL AC70,PWM_ROOMLAMP_1 AC71,PWM_ROOMLAMP_2 AC72,PWM_ROOMLAMP_3 AC73,PWM_ROOMLAMP_4 AC74,PWM_ROOMLAMP_5 AC75,PWM_ROOMLAMP_6 AFA9,PWR_AT_LOCKED AFA8,PWR_AUTO_LIGHT AFA6,PWR_DOORLOCK1 AFA7,PWR_DOORLOCK2 AFAB,PWR_ECU AFA4,PWR_FLASHERS AFA5,PWR_STOP_LAMP AFA3,PWR_WIPER ACB4,RAIN_SENSOR AFA2,RAM AC53,REAR_DEFROSTER ACB5,REAR_WIPER AFA0,REGISTERS AFA1,ROM AFAD,ROOMLAMP_BATSAVER_RL AF07,SAFETY_LINE_ESCL AC22,SHIFTLOCK_RL ACB1,SLAVE_MOTOR AF99,SRU AFB1,SSM AF98,SSU AC20,ST_CUT_RELAY AC9A,STOP_LAMP_1_OR_2 AC9B,STOP_LAMP_3 AF70,STOP_PEDAL AF71,STOP_PEDAL_SW1 AF72,STOP_PEDAL_SW2 AF06,TAILGATE_OPENER 5741,TPMS_COMM_SENSOR_1 5742,TPMS_COMM_SENSOR_2 5743,TPMS_COMM_SENSOR_3 5744,TPMS_COMM_SENSOR_4 5700,TPMS_FUNCTION 5731,TPMS_SENSOR_1 5732,TPMS_SENSOR_2 5733,TPMS_SENSOR_3 5734,TPMS_SENSOR_4 5711,TPMS_WHEEL_1 5712,TPMS_WHEEL_2 5713,TPMS_WHEEL_3 5714,TPMS_WHEEL_4 AC98,TRAILER_DI_LEFT AC97,TRAILER_DI_RIGHT AF05,TRANSPONDER ACB2,WIPER_TEACHIN AC38,WL_AUTHORIZATION_RL AC45,WL_CENTRAL_CLOSE_RL ================================================ FILE: app/src/main/assets/ZOE_Ph2/UCH_Fields.csv ================================================ ,765,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.DefaultSession ,765,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.ProgrammingSession ,765,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.ExtendedDiagnosticSession ,765,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,765,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,765,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier ,765,32,47,1,0,0,,1901FF,5901FF,ff,DTCCount ,765,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,765,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceIdentifier,44808:ALARM_VOLUMETRIC;44117:ASSIST_DEFROSTER;44972:AUTO_ACC_RL;44091:AUTO_MIRROR_RL;44804:BCM_APV_CODE;57680:CAN_ACU;57682:CAN_ADAS;57661:CAN_ADB;57620:CAN_ANC;57665:CAN_ATCU;57381:CAN_AUDIO_AMP;49267:CAN_BCM;57739:CAN_BMS_12V;57740:CAN_CGW;57729:CAN_CPLC;57724:CAN_DSMU;57743:CAN_DSU;57618:CAN_EBA;57664:CAN_ECM;57685:CAN_EPKB;57736:CAN_EVAP;57707:CAN_FR_CAMERA;57667:CAN_HEVC;57624:CAN_HFM;57683:CAN_HVAC;57684:CAN_IVI;57678:CAN_METER;57705:CAN_PBD;57709:CAN_TCU;57691:CAN_USM;57672:CAN_VDC;44803:CHILDLOCK;44089:CHILDLOCK_WL_RL;44916:CLUTCH_END_SW;44915:CLUTCH_START_SW;44181:COMBI_SWITCH;44177:DI_FR_SR_LEFT;44176:DI_FR_SR_RIGHT;44179:DI_RR_LEFT;44178:DI_RR_RIGHT;44800:DONGLE;44096:DPC;44116:DRIVER_DEFROSTER;44809:DRIVER_DOOR;44065:DRIVER_SEAT_BELT;44896:DRIVER_SEAT_BELT_CONF;44970:EEPROM;44802:ETA;44185:FOG_LAMP;44097:IFLW;44098:IFRW;44974:IGN_CAB_RL;44975:IGN_OFFLOAD1_RL;44976:IGN_OFFLOAD2_RL;44099:IRLW;44100:IRRW;44150:LCM01;44151:LCM02;44152:LCM03;44153:LCM04;44154:LCM05;44155:LCM06;44156:LCM07;44157:LCM08;44158:LCM09;44159:LCM10;44160:LCM11;44161:LCM12;44182:LIGHT_SENSOR;56321:LIN_ACCESS;56323:LIN_AMBIANT;56322:LIN_DOOR;56320:LIN_RLS;44208:MASTER_MOTOR;44211:MOTOR_COMM;44239:PMU;44112:PTC1_RL;44113:PTC2_RL;44114:PTC3_RL;44144:PWM_ROOMLAMP_1;44145:PWM_ROOMLAMP_2;44146:PWM_ROOMLAMP_3;44147:PWM_ROOMLAMP_4;44148:PWM_ROOMLAMP_5;44149:PWM_ROOMLAMP_6;44969:PWR_AT_LOCKED;44968:PWR_AUTO_LIGHT;44966:PWR_DOORLOCK1;44967:PWR_DOORLOCK2;44971:PWR_ECU;44964:PWR_FLASHERS;44965:PWR_STOP_LAMP;44963:PWR_WIPER;44212:RAIN_SENSOR;44962:RAM;44115:REAR_DEFROSTER;44213:REAR_WIPER;44960:REGISTERS;44961:ROM;44973:ROOMLAMP_BATSAVER_RL;44807:SAFETY_LINE_ESCL;44066:SHIFTLOCK_RL;44209:SLAVE_MOTOR;44953:SRU;44977:SSM;44952:SSU;44064:ST_CUT_RELAY;44186:STOP_LAMP_1_OR_2;44187:STOP_LAMP_3;44912:STOP_PEDAL;44913:STOP_PEDAL_SW1;44914:STOP_PEDAL_SW2;44806:TAILGATE_OPENER;22337:TPMS_COMM_SENSOR_1;22338:TPMS_COMM_SENSOR_2;22339:TPMS_COMM_SENSOR_3;22340:TPMS_COMM_SENSOR_4;22272:TPMS_FUNCTION;22321:TPMS_SENSOR_1;22322:TPMS_SENSOR_2;22323:TPMS_SENSOR_3;22324:TPMS_SENSOR_4;22289:TPMS_WHEEL_1;22290:TPMS_WHEEL_2;22291:TPMS_WHEEL_3;22292:TPMS_WHEEL_4;44184:TRAILER_DI_LEFT;44183:TRAILER_DI_RIGHT;44805:TRANSPONDER;44210:WIPER_TEACHIN;44088:WL_AUTHORIZATION_RL;44101:WL_CENTRAL_CLOSE_RL ,765,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog / safety µC failure;70:calibration / parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive / sequence counter incorrect / not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions / events;15:Vehicle manufacturer / System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal / Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding/ General Failure Information;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time > maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time < minimum;51:signal low time > maximum;50:signal low time < minimum;49:no signal;37:signal shape / waveform failure;33:signal amplitude < minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude > maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid ,765,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,765,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,765,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,765,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,765,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,765,40,40,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,765,41,41,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,42,42,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,43,43,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,44,44,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,45,45,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,46,46,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,47,47,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailed,0:No;1:Yes ,765,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,765,24,39,1,0,0,,190A,590A,ff,DTCDeviceIdentifier,44808:ALARM_VOLUMETRIC;44117:ASSIST_DEFROSTER;44972:AUTO_ACC_RL;44091:AUTO_MIRROR_RL;44804:BCM_APV_CODE;57680:CAN_ACU;57682:CAN_ADAS;57661:CAN_ADB;57620:CAN_ANC;57665:CAN_ATCU;57381:CAN_AUDIO_AMP;49267:CAN_BCM;57739:CAN_BMS_12V;57740:CAN_CGW;57729:CAN_CPLC;57724:CAN_DSMU;57743:CAN_DSU;57618:CAN_EBA;57664:CAN_ECM;57685:CAN_EPKB;57736:CAN_EVAP;57707:CAN_FR_CAMERA;57667:CAN_HEVC;57624:CAN_HFM;57683:CAN_HVAC;57684:CAN_IVI;57678:CAN_METER;57705:CAN_PBD;57709:CAN_TCU;57691:CAN_USM;57672:CAN_VDC;44803:CHILDLOCK;44089:CHILDLOCK_WL_RL;44916:CLUTCH_END_SW;44915:CLUTCH_START_SW;44181:COMBI_SWITCH;44177:DI_FR_SR_LEFT;44176:DI_FR_SR_RIGHT;44179:DI_RR_LEFT;44178:DI_RR_RIGHT;44800:DONGLE;44096:DPC;44116:DRIVER_DEFROSTER;44809:DRIVER_DOOR;44065:DRIVER_SEAT_BELT;44896:DRIVER_SEAT_BELT_CONF;44970:EEPROM;44802:ETA;44185:FOG_LAMP;44097:IFLW;44098:IFRW;44974:IGN_CAB_RL;44975:IGN_OFFLOAD1_RL;44976:IGN_OFFLOAD2_RL;44099:IRLW;44100:IRRW;44150:LCM01;44151:LCM02;44152:LCM03;44153:LCM04;44154:LCM05;44155:LCM06;44156:LCM07;44157:LCM08;44158:LCM09;44159:LCM10;44160:LCM11;44161:LCM12;44182:LIGHT_SENSOR;56321:LIN_ACCESS;56323:LIN_AMBIANT;56322:LIN_DOOR;56320:LIN_RLS;44208:MASTER_MOTOR;44211:MOTOR_COMM;44239:PMU;44112:PTC1_RL;44113:PTC2_RL;44114:PTC3_RL;44144:PWM_ROOMLAMP_1;44145:PWM_ROOMLAMP_2;44146:PWM_ROOMLAMP_3;44147:PWM_ROOMLAMP_4;44148:PWM_ROOMLAMP_5;44149:PWM_ROOMLAMP_6;44969:PWR_AT_LOCKED;44968:PWR_AUTO_LIGHT;44966:PWR_DOORLOCK1;44967:PWR_DOORLOCK2;44971:PWR_ECU;44964:PWR_FLASHERS;44965:PWR_STOP_LAMP;44963:PWR_WIPER;44212:RAIN_SENSOR;44962:RAM;44115:REAR_DEFROSTER;44213:REAR_WIPER;44960:REGISTERS;44961:ROM;44973:ROOMLAMP_BATSAVER_RL;44807:SAFETY_LINE_ESCL;44066:SHIFTLOCK_RL;44209:SLAVE_MOTOR;44953:SRU;44977:SSM;44952:SSU;44064:ST_CUT_RELAY;44186:STOP_LAMP_1_OR_2;44187:STOP_LAMP_3;44912:STOP_PEDAL;44913:STOP_PEDAL_SW1;44914:STOP_PEDAL_SW2;44806:TAILGATE_OPENER;22337:TPMS_COMM_SENSOR_1;22338:TPMS_COMM_SENSOR_2;22339:TPMS_COMM_SENSOR_3;22340:TPMS_COMM_SENSOR_4;22272:TPMS_FUNCTION;22321:TPMS_SENSOR_1;22322:TPMS_SENSOR_2;22323:TPMS_SENSOR_3;22324:TPMS_SENSOR_4;22289:TPMS_WHEEL_1;22290:TPMS_WHEEL_2;22291:TPMS_WHEEL_3;22292:TPMS_WHEEL_4;44184:TRAILER_DI_LEFT;44183:TRAILER_DI_RIGHT;44805:TRANSPONDER;44210:WIPER_TEACHIN;44088:WL_AUTHORIZATION_RL;44101:WL_CENTRAL_CLOSE_RL ,765,40,47,1,0,0,,190A,590A,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog / safety µC failure;70:calibration / parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive / sequence counter incorrect / not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions / events;15:Vehicle manufacturer / System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal / Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding/ General Failure Information;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time > maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time < minimum;51:signal low time > maximum;50:signal low time < minimum;49:no signal;37:signal shape / waveform failure;33:signal amplitude < minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude > maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level out of range / zero adjustment failure;41:signal signal invalid ,765,48,55,1,0,0,,190A,590A,ff,StatusOfDTC ,765,49,49,1,0,0,,190A,590A,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,765,50,50,1,0,0,,190A,590A,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,765,51,51,1,0,0,,190A,590A,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,765,52,52,1,0,0,,190A,590A,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,765,53,53,1,0,0,,190A,590A,ff,DTCStatus.pendingDTC,0:No;1:Yes ,765,54,54,1,0,0,,190A,590A,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,765,55,55,1,0,0,,190A,590A,ff,DTCStatus.testFailed,0:No;1:Yes ,765,24,31,1,0,0,,220300,620300,ff,DONGLE_CF,0:DONGLE_SLAVE_1;1:DONGLE_SLAVE_2;2:DONGLE_SLAVE_3;3:SERIAL_DONGLE ,765,24,31,1,0,0,,220301,620301,ff,LIGHTING_CSW_CONFIGURATION_CF,0:LIGHTING_CSW_FOR_EUROPE;1:LIGHTING_CSW_WORLD_WITHOUT_ALS;2:LIGHTING_CSW_WORLD_WITH_ALS ,765,24,31,1,0,0,,220302,620302,ff,RES_FEEDBACK_CF,0:WITHOUT_FLASHERS_WITHOUT_TAIL;1:WITH_FLASHERS_WITHOUT_TAIL;2:WITH_FLASHERS_WITH_TAIL;3:WITHOUT_FLASHERS_WITH_TAIL ,765,24,39,10,0,0,ms,220303,620303,ff,OVERRIDE_BREAK_TIME_TM_CF ,765,24,24,1,0,0,,220304,620304,ff,HAZARD_WITH_CRASH_CF,1:true;0:false ,765,24,31,1,0,0,,220305,620305,ff,AUTOLOCK_OFF_PATTERN_CF ,765,24,31,1,0,0,,220306,620306,ff,AUTOLOCK_ON_PATTERN_CF ,765,24,31,1,0,0,,220307,620307,ff,LOCK_PATTERN_CF ,765,24,31,1,0,0,,220308,620308,ff,UNLOCK_PATTERN_CF ,765,24,31,1,0,0,,220309,620309,ff,SUPERLOCK_PATTERN_CF ,765,24,31,1,0,0,,22030A,62030A,ff,LOCK_BY_WAC_PATTERN_CF ,765,24,31,1,0,0,,22030B,62030B,ff,SILENT_MODE_ON_PATTERN_CF ,765,24,31,1,0,0,,22030C,62030C,ff,SILENT_MODE_OFF_PATTERN_CF ,765,24,24,1,0,0,,22030D,62030D,ff,T_PULSE_CF,1:true;0:false ,765,24,31,1,0,0,,22030E,62030E,ff,MOTORWAY_FLASH_NB_CF,0:ONE_FLASH_PER_CSW_MODE;1:THREE_FLASH_PER_CSW_MODE;3:MOTORWAY_FLASHER_STATUS_NOT_USED;2:FIVE_FLASH_PER_CSW_MODE ,765,24,24,1,0,0,,22030F,62030F,ff,ESCL_SAFETY_LINE_PRESENT_CF,1:true;0:false ,765,24,31,1,0,0,,220310,620310,ff,AREA_CF,0:AREA_EUROPE;2:AREA_JAPAN;1:AREA_US_CANADA ,765,24,31,1,0,0,,220311,620311,ff,AUTO_LIGHT_CF,0:ALS_DEACTIVATED;1:ALS_WITH_RLS;2:ALS_WITH_ANALOG_SENSOR ,765,24,24,1,0,0,,220312,620312,ff,SCANDINAVIAN_RUNNING_LIGHT_CF,1:true;0:false ,765,24,24,1,0,0,,220313,620313,ff,FOLLOW_ME_HOME_CF,1:true;0:false ,765,24,24,1,0,0,,220314,620314,ff,REMOTE_LIGHTING_CF,1:true;0:false ,765,24,24,1,0,0,,220315,620315,ff,DRL_ACTIVE_CF,1:true;0:false ,765,24,24,1,0,0,,220316,620316,ff,AHL_CONFIG_BY_USER_CF,1:true;0:false ,765,24,31,1,0,0,,220317,620317,ff,AUTOFMH_DURATION_USER_TM_CF,0:AUTOFMH_D1;1:AUTOFMH_D2;2:AUTOFMH_D3;3:AUTOFMH_D4;4:AUTOFMH_D5;5:AUTOFMH_D6;6:AUTOFMH_D7;7:AUTOFMH_STATE_NOT_USED_1 ,765,24,24,1,0,0,,220318,620318,ff,FR_FOG_SW_TYPE_CF,1:true;0:false ,765,24,24,1,0,0,,220319,620319,ff,RR_FOG_LAMP_CF,1:true;0:false ,765,24,24,1,0,0,,22031A,62031A,ff,WIPER_LINKED_AUTO_LIGHT_CF,1:true;0:false ,765,24,55,1,0,0,,22031B,62031B,4ff,LIGHT_COEFFICIENT_CF ,765,24,31,1,0,0,lux,22031C,62031C,ff,FILTER_STEP_CF ,765,24,39,10,0,0,ms,22031D,62031D,ff,T_UP_CF ,765,24,39,10,0,0,ms,22031E,62031E,ff,T_DOWN_CF ,765,24,31,1,0,0,,22031F,62031F,ff,AUTO_LIGHT_TYPE_CF,0:ALT_WITHOUT_AUTO_LIGHT;1:ALT_WITH_AUTO_LIGHT_WO_ENHANCED;2:ALT_WITH_AUTO_LIGHT_WITH_ENHANCED;3:ALT_RESERVED ,765,24,39,.01,0,2,sec,220320,620320,ff,QUICK_PL_ON_DELAY_TIME_CF.0 ,765,40,55,.01,0,2,sec,220320,620320,ff,QUICK_PL_ON_DELAY_TIME_CF.1 ,765,56,71,.01,0,2,sec,220320,620320,ff,QUICK_PL_ON_DELAY_TIME_CF.2 ,765,72,87,.01,0,2,sec,220320,620320,ff,QUICK_PL_ON_DELAY_TIME_CF.3 ,765,24,39,.01,0,2,sec,220321,620321,ff,PL_OFF_DELAY_TIME_CF.0 ,765,40,55,.01,0,2,sec,220321,620321,ff,PL_OFF_DELAY_TIME_CF.1 ,765,56,71,.01,0,2,sec,220321,620321,ff,PL_OFF_DELAY_TIME_CF.2 ,765,72,87,.01,0,2,sec,220321,620321,ff,PL_OFF_DELAY_TIME_CF.3 ,765,24,39,.01,0,2,sec,220322,620322,ff,PL_ON_DELAY_TIME_CF.0 ,765,40,55,.01,0,2,sec,220322,620322,ff,PL_ON_DELAY_TIME_CF.1 ,765,56,71,.01,0,2,sec,220322,620322,ff,PL_ON_DELAY_TIME_CF.2 ,765,72,87,.01,0,2,sec,220322,620322,ff,PL_ON_DELAY_TIME_CF.3 ,765,24,39,.01,0,2,sec,220323,620323,ff,QUICK_LO_OFF_DELAY_TIME_CF.0 ,765,40,55,.01,0,2,sec,220323,620323,ff,QUICK_LO_OFF_DELAY_TIME_CF.1 ,765,56,71,.01,0,2,sec,220323,620323,ff,QUICK_LO_OFF_DELAY_TIME_CF.2 ,765,72,87,.01,0,2,sec,220323,620323,ff,QUICK_LO_OFF_DELAY_TIME_CF.3 ,765,24,39,.01,0,2,sec,220324,620324,ff,QUICK_LO_ON_DELAY_TIME_CF.0 ,765,40,55,.01,0,2,sec,220324,620324,ff,QUICK_LO_ON_DELAY_TIME_CF.1 ,765,56,71,.01,0,2,sec,220324,620324,ff,QUICK_LO_ON_DELAY_TIME_CF.2 ,765,72,87,.01,0,2,sec,220324,620324,ff,QUICK_LO_ON_DELAY_TIME_CF.3 ,765,24,31,10,0,0,ms,220325,620325,ff,DELAY_AUTOACC_TM_CF ,765,24,24,1,0,0,,220326,620326,ff,BRAKE_FAIL1_DETECTION_CF,1:true;0:false ,765,24,24,1,0,0,,220327,620327,ff,BRAKE_FAIL2_DETECTION_CF,1:true;0:false ,765,24,24,1,0,0,,220328,620328,ff,AT_CF,1:true;0:false ,765,24,31,1,0,0,,220329,620329,ff,EASY_TRUNK_ACCESS_ECU_CF,0:ETA_NOT_CONFIGURED;1:ETA_CONFIGURED_WITH_CAD;2:ETA_CONFIGURED_WITHOUT_CAD ,765,24,24,1,0,0,,22032A,62032A,ff,OVERLOAD_BY_SMART_CF,1:true;0:false ,765,24,24,1,0,0,,22032B,62032B,ff,RES_FLASHERS_FEEDBACK_CF,1:true;0:false ,765,24,24,1,0,0,,22032C,62032C,ff,WITH_RES_TIMER_2H_CF,1:true;0:false ,765,24,24,1,0,0,,22032D,62032D,ff,REAR_FLASHERS_WITH_BULB_CF,1:true;0:false ,765,24,24,1,0,0,,22032E,62032E,ff,FRONT_FLASHERS_WITH_BULB_CF,1:true;0:false ,765,24,24,1,0,0,,22032F,62032F,ff,INFOCLUTCH_DIAG_START_DYN_CF,1:true;0:false ,765,24,24,1,0,0,,220330,620330,ff,INFOCLUTCH_DIAG_END_DYN_CF,1:true;0:false ,765,24,24,1,0,0,,220331,620331,ff,INFOCLUTCH_DIAG_END_STATIC_CF,1:true;0:false ,765,24,24,1,0,0,,220332,620332,ff,INFOCLUTCH_DIAG_START_STATIC_CF,1:true;0:false ,765,24,24,1,0,0,,220333,620333,ff,KEY_PRESENT_CF,1:true;0:false ,765,24,31,1,0,0,time,220334,620334,ff,HEAD_LAMP_CLEAN_CYCLE_N_CF ,765,24,39,10,0,0,ms,220335,620335,ff,HEAD_LAMP_WASHER_TIMER_T1_TM_CF ,765,24,39,10,0,0,ms,220336,620336,ff,HEAD_LAMP_WASHER_TIMER_T2_TM_CF ,765,24,24,1,0,0,,220337,620337,ff,FR_RR_DROP_WIPE_CF,1:true;0:false ,765,24,39,10,0,0,ms,220338,620338,ff,WASH_WIPE_DELAY_TM_CF ,765,24,39,10,0,0,ms,220339,620339,ff,GO_TO_SERVICE_POSITION_TM_CF ,765,24,24,1,0,0,,22033A,62033A,ff,SERVICE_POSITION_CF,1:true;0:false ,765,24,31,1,0,0,,22033B,62033B,ff,ELECTRONIC_WIPING_MOTORS_CF,0:NO_ELECTRONIC_WIPING_MOTORS;1:MONO_ELECTRONIC_WIPING_MOTORS;2:DUAL_ELECTRONIC_WIPING_MOTORS ,765,24,24,1,0,0,,22033C,62033C,ff,AUTO_WIPE_CF,1:true;0:false ,765,24,31,1,0,0,,22033D,62033D,ff,VEHICLE_RECOGNITION_CF ,765,24,24,1,0,0,,22033E,62033E,ff,HIGH_TO_LOW_TO_INT_CF,1:true;0:false ,765,24,31,1,0,0,,22033F,62033F,ff,TEACHIN_CF,0:TEACHIN_MODE_OFF;1:TEACHIN_MODE_ON;2:TEACHIN_READING_MODE_ON ,765,24,31,1,0,0,km/h,220340,620340,ff,ENGINE_STOPPED_SPEED_THRESH_CF ,765,24,24,1,0,0,,220341,620341,ff,LONG_PUSH_IGN_SAVER_CF,1:true;0:false ,765,24,55,1,0,0,,220342,620342,4ff,IGN_SAVER_TIMER_TM_CF ,765,24,55,1,0,0,,220343,620343,4ff,IGN_SAVER_TIMER_DM1_TM_CF ,765,24,55,1,0,0,,220344,620344,4ff,IGN_SAVER_TIMER_DM2_TM_CF ,765,24,55,1,0,0,,220345,620345,4ff,IGN_SAVER_BEFORE_DISP_TM_CF ,765,24,39,.01,0,2,sec,220346,620346,ff,SWITCH_INPUT_PROT_TM_CF ,765,24,24,1,0,0,,220347,620347,ff,TAILLAMP_FOR_AUTOACC_CF,1:true;0:false ,765,24,39,.01,0,2,sec,220348,620348,ff,T1_TM_CF ,765,24,55,1,0,0,,220349,620349,4ff,T10_TM_CF ,765,24,55,1,0,0,,22034A,62034A,4ff,T30_TM_CF ,765,24,24,1,0,0,,22034B,62034B,ff,AUTO_ACC_DOOR_OPEN_CF,1:true;0:false ,765,24,31,1,0,0,,22034C,62034C,ff,SET_IGN_SAVER_TIMER_CF,0:IGN_SAVER_TIMER_DISABLE;1:IGN_SAVER_TIMER_ENABLE ,765,24,24,1,0,0,,22034D,62034D,ff,START_WITH_PEDAL_PRESS_CF,1:true;0:false ,765,24,24,1,0,0,,22034E,62034E,ff,NO_LIMITED_CF,1:true;0:false ,765,24,55,1,0,0,,22034F,62034F,4ff,BATTERY_SAVER_ROOMLAMP_TM_CF ,765,24,24,1,0,0,,220350,620350,ff,DRIVER_SEAT_BELT_CF,1:true;0:false ,765,24,24,1,0,0,,220351,620351,ff,MANUAL_SHIFT_LEVER_CF,1:true;0:false ,765,24,24,1,0,0,,220352,620352,ff,MANUAL_SHIFT_PADDLE_CF,1:true;0:false ,765,24,24,1,0,0,,220353,620353,ff,OVERDRIVE_MODE_CF,1:true;0:false ,765,24,31,1,0,0,,220354,620354,ff,ECO_SW_TYPE_CF,0:NO_BUTTON_SW1;1:ECO_BUTTON_SW1;2:SPORT_BUTTON_SW1;3:TRI_MODE_BUTTON_SW1;4:MEX_BUTTON_SW1;5:RENAULT_SPORT_BUTTON_SW1 ,765,24,31,1,0,0,,220355,620355,ff,SPORT_SW_TYPE_CF,0:NO_BUTTON_SW2;1:SPORT_BUTTON_SW2;2:DRIVE_MODE_UP_SWITCH_SW2 ,765,24,31,1,0,0,,220356,620356,ff,START_MODE_CF,0:PREVIOUS_START_MODE;1:NORMAL_START_MODE;2:ECO_START_MODE ,765,24,31,1,0,0,,220357,620357,ff,RKE_BTN_1_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF;3:RKE_BACKDOOR_OR_TRUNK ,765,24,31,1,0,0,,220358,620358,ff,RKE_BTN_2_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF;3:RKE_BACKDOOR_OR_TRUNK ,765,24,31,1,0,0,,220359,620359,ff,RKE_BTN_3_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF;3:RKE_BACKDOOR_OR_TRUNK ,765,24,31,1,0,0,,22035A,62035A,ff,RKE_BTN_4_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF;3:RKE_BACKDOOR_OR_TRUNK ,765,24,31,1,0,0,,22035B,62035B,ff,RKE_BTN_5_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF;3:RKE_BACKDOOR_OR_TRUNK ,765,24,24,1,0,0,,22035C,62035C,ff,RKE_ENABLE_IGN_ON_CF,1:true;0:false ,765,24,24,1,0,0,,22035D,62035D,ff,IGN_SAVER_DISP_AUTH_CF,1:true;0:false ,765,24,24,1,0,0,,22035E,62035E,ff,PLANT_START_SEQ_INHIBITION_CF,1:true;0:false ,765,24,39,.01,0,2,sec,22035F,62035F,ff,MAX_TURN_POWER_LEVEL_X_ON_TM_CF ,765,24,31,1,0,0,km/h,220360,620360,ff,SPEED_THRESHOLD_FOR_IGN_CF ,765,24,31,1,0,0,km/h,220361,620361,ff,ALWS_SPEED_THRESH_CF ,765,24,24,1,0,0,,220362,620362,ff,ALWS_CDL_ACTIV_FB_FLASHERS_CF,1:true;0:false ,765,24,31,1,0,0,,220363,620363,ff,AUTO_LOCK_ACTIVATION_INITIAL_CF ,765,24,39,.01,0,2,sec,220364,620364,ff,AUTO_LOCK_LONG_PRESS_CDL_TM_CF ,765,24,24,1,0,0,,220365,620365,ff,AUTO_LOCK_WITH_SPEED_OR_PRANGE_CF,1:true;0:false ,765,24,24,1,0,0,,220366,620366,ff,AUTO_RELOCK_BY_TIMEOUT_CF,1:true;0:false ,765,24,24,1,0,0,,220367,620367,ff,AUTO_RELOCK_ACTIVATION_INITIAL_CF,1:true;0:false ,765,24,31,10,0,0,ms,220368,620368,ff,BACKDOOR_OR_TRUNK_RELEASE_TM_CF ,765,24,24,1,0,0,,220369,620369,ff,BACKDOOR_OR_TRUNK_INSIDE_OPENER_SW_CF,1:true;0:false ,765,24,24,1,0,0,,22036A,62036A,ff,CDL_BACKUP_LOCK_CF,1:true;0:false ,765,24,39,.01,0,2,sec,22036B,62036B,ff,CDL_BACKUP_LOCK_TM_CF ,765,24,31,1,0,0,%,22036C,62036C,ff,CDL_DAYTIME_LED_DUTY_CYCLE_CF ,765,24,31,1,0,0,%,22036D,62036D,ff,CDL_NIGHTTIME_LED_DUTY_CYCLE_CF ,765,24,24,1,0,0,,22036E,62036E,ff,CHILD_LOCK_CF,1:true;0:false ,765,24,24,1,0,0,,22036F,62036F,ff,CHILD_LOCK_SWITCH_REVERSE_CF,1:true;0:false ,765,24,31,1,0,0,,220370,620370,ff,CRASH_DETECTION_CF ,765,24,39,.01,0,2,sec,220371,620371,ff,CRASH_UNLOCK_DELAY_AFTER_DETECTION_TM_CF ,765,24,24,1,0,0,,220373,620373,ff,DOUBLE_OVERRIDE_CF,1:true;0:false ,765,24,31,1,0,0,km/h,220374,620374,ff,DOOR_WARNING_SPEED_THRESH_CF ,765,24,24,1,0,0,,220375,620375,ff,DRIVER_ON_RIGHT_HAND_SIDE_CF,1:true;0:false ,765,24,24,1,0,0,,220376,620376,ff,HORN_BEEP_AT_LOCK_CF,1:true;0:false ,765,24,24,1,0,0,,220377,620377,ff,LOCK_KNOB_CF,1:true;0:false ,765,24,24,1,0,0,,220379,620379,ff,POWER_BACK_DOOR_CF,1:true;0:false ,765,24,24,1,0,0,,22037B,62037B,ff,RKE_BACKDOOR_OR_TRUNK_OPENING_CF,1:true;0:false ,765,24,24,1,0,0,,22037C,62037C,ff,RTL_DOOR_OPEN_CDL_LOCK_IGN_OFF_CF,1:true;0:false ,765,24,24,1,0,0,,22037D,62037D,ff,RTL_DOOR_OPEN_RKE_LOCK_CF,1:true;0:false ,765,24,24,1,0,0,,22037E,62037E,ff,RTL_PASS_DOOR_OPEN_HANDFREE_LOCK_CF,1:true;0:false ,765,24,24,1,0,0,,22037F,62037F,ff,RTL_WITH_CDL_FEEDBACK_TYPE_CF,1:true;0:false ,765,24,24,1,0,0,,220380,620380,ff,RTL_EXTERNAL_LOCK_FEEDBACK_TYPE_CF,1:true;0:false ,765,24,24,1,0,0,,220381,620381,ff,SELECTOR_CDL_CF,1:true;0:false ,765,24,24,1,0,0,,220382,620382,ff,SILENT_MODE_CF,1:true;0:false ,765,24,24,1,0,0,,220383,620383,ff,SILENT_MODE_ACTIVATION_INITIAL_CF,1:true;0:false ,765,24,24,1,0,0,,220384,620384,ff,SINGLE_DOOR_OPENING_CF,1:true;0:false ,765,24,39,.01,0,2,sec,220385,620385,ff,SDO_UNLOCK_ALL_TM_CF ,765,24,24,1,0,0,,220386,620386,ff,SUPERLOCK_RKE_CF,1:true;0:false ,765,24,24,1,0,0,,220387,620387,ff,SUPERLOCK_HANDSFREE_CF,1:true;0:false ,765,24,24,1,0,0,,220388,620388,ff,TRUNK_SEPARATED_MNGT_CF,1:true;0:false ,765,24,24,1,0,0,,220389,620389,ff,TRUNK_UNLOCK_LOGIC_CF,1:true;0:false ,765,24,24,1,0,0,,22038A,62038A,ff,TRUNK_CANCEL_SW_CF,1:true;0:false ,765,24,24,1,0,0,,22038B,62038B,ff,STOP_AND_START_CF,1:true;0:false ,765,24,31,10,0,0,ms,22038C,62038C,ff,CLUTCH_DELAY_TM_CF ,765,24,39,.01,0,2,sec,22038D,62038D,ff,FR_WASH_PROLONGATION_MAX_TM_CF ,765,24,39,.01,0,2,sec,22038E,62038E,ff,HEADLAMPWASHING_TM_CF ,765,24,31,.01,0,2,-,22038F,62038F,ff,CORRECTING_INT_TIME_CF.0 ,765,32,39,.01,0,2,-,22038F,62038F,ff,CORRECTING_INT_TIME_CF.1 ,765,40,47,.01,0,2,-,22038F,62038F,ff,CORRECTING_INT_TIME_CF.2 ,765,48,55,.01,0,2,-,22038F,62038F,ff,CORRECTING_INT_TIME_CF.3 ,765,24,31,1,0,0,km/h,220390,620390,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.0 ,765,32,39,1,0,0,km/h,220390,620390,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.1 ,765,40,47,1,0,0,km/h,220390,620390,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.2 ,765,48,55,1,0,0,km/h,220390,620390,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.3 ,765,56,63,1,0,0,km/h,220390,620390,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.4 ,765,64,71,1,0,0,km/h,220390,620390,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.5 ,765,24,39,.01,0,2,sec,220391,620391,ff,STANDARD_INT_TIME_TM_CF.0 ,765,40,55,.01,0,2,sec,220391,620391,ff,STANDARD_INT_TIME_TM_CF.1 ,765,56,71,.01,0,2,sec,220391,620391,ff,STANDARD_INT_TIME_TM_CF.2 ,765,72,87,.01,0,2,sec,220391,620391,ff,STANDARD_INT_TIME_TM_CF.3 ,765,88,103,.01,0,2,sec,220391,620391,ff,STANDARD_INT_TIME_TM_CF.4 ,765,104,119,.01,0,2,sec,220391,620391,ff,STANDARD_INT_TIME_TM_CF.5 ,765,120,135,.01,0,2,sec,220391,620391,ff,STANDARD_INT_TIME_TM_CF.6 ,765,24,24,1,0,0,,220392,620392,ff,WIPER_WITH_SPEED_CF,1:true;0:false ,765,24,31,1,0,0,,220393,620393,ff,SENSOR_RECOGNITION_CF ,765,24,39,1,0,0,,220394,620394,ff,AUTO_LIGHT_SENSITIVITY_CF ,765,24,39,10,0,0,ms,220395,620395,ff,RKE_PSD_L_LONG_TM_CF ,765,24,39,10,0,0,ms,220396,620396,ff,RKE_PSD_R_LONG_TM_CF ,765,24,39,10,0,0,ms,220397,620397,ff,RKE_REMOTE_LIGHT_LONG_TM_CF ,765,24,39,10,0,0,ms,220398,620398,ff,RKE_ROOF_LONG_TM_CF ,765,24,39,10,0,0,ms,220399,620399,ff,RKE_RES_LONG_TM_CF ,765,24,39,10,0,0,ms,22039A,62039A,ff,RKE_TRUNK_LONG_TM_CF ,765,24,39,10,0,0,ms,22039B,62039B,ff,RKE_LOCK_LONG_TM_CF ,765,24,39,10,0,0,ms,22039C,62039C,ff,RKE_UNLOCK_LONG_TM_CF ,765,24,39,10,0,0,ms,22039D,62039D,ff,RKE_LOCK_UNLOCK_VERYLG_TM_CF ,765,24,39,.01,0,2,sec,22039E,62039E,ff,AUTO_RELOCK_TIMEOUT_TM_CF ,765,24,31,1,0,0,,22039F,62039F,ff,AUTO_UNLOCK_ACTIVATION_INITIAL_CF ,765,24,24,1,0,0,,2203A0,6203A0,ff,AUTO_UNLOCK_CF,1:true;0:false ,765,24,31,10,0,0,ms,2203A1,6203A1,ff,DOORLOCK_ACTUATORS_TM_CF ,765,24,39,.01,0,2,sec,2203A2,6203A2,ff,IGN_ON_TIMEOUT_FOR_AUTO_LOCK_CHANGE_TM_CF ,765,24,31,1,0,0,,2203A3,6203A3,ff,IKEY_BUZZER_LOCK_CF ,765,24,31,1,0,0,,2203A4,6203A4,ff,IKEY_BUZZER_UNLOCK_CF ,765,24,31,1,0,0,,2203A5,6203A5,ff,RTL_DOOR_OPEN_CDL_LOCK_IGN_ON_CF ,765,24,24,1,0,0,,2203A6,6203A6,ff,SDO_ACTIVATION_INITIAL_CF,1:true;0:false ,765,24,31,1,0,0,,2203A7,6203A7,ff,ETA_BUMPER_CF,0:ETA_BUMPER_0;1:ETA_BUMPER_1;2:ETA_BUMPER_2;3:ETA_BUMPER_3;4:ETA_BUMPER_4;5:ETA_BUMPER_5;6:ETA_BUMPER_6;7:ETA_BUMPER_7;8:ETA_BUMPER_8;9:ETA_BUMPER_9;10:ETA_BUMPER_10;11:ETA_BUMPER_11;12:ETA_BUMPER_12;13:ETA_BUMPER_13;14:ETA_BUMPER_14;15:ETA_BUMPER_15 ,765,24,39,.01,0,2,sec,2203A8,6203A8,ff,PRM_IMMEDIATE_TIME_TM_CF ,765,24,39,1,0,0,min,2203A9,6203A9,ff,PRM_WAKE_UP_TIME_TM_CF ,765,24,55,1,0,0,,2203AA,6203AA,4ff,PRM_ADDITIONNAL_TIME_FOR_TM_CF ,765,24,55,1,0,0,,2203AB,6203AB,4ff,GLOBAL_TIME_S ,765,24,39,1,0,0,min,2203AC,6203AC,ff,TECHNICAL_WAKEUP_PERIOD_TM_CF ,765,24,24,1,0,0,,2203AD,6203AD,ff,ELECTRICAL_VEH_CF,1:true;0:false ,765,24,24,1,0,0,,2203AE,6203AE,ff,DTC_CHILDLOCK_02_CF,1:true;0:false ,765,24,24,1,0,0,,2203AF,6203AF,ff,DTC_CLUTCH_END_SW_23_CF,1:true;0:false ,765,24,24,1,0,0,,2203B0,6203B0,ff,DTC_CLUTCH_START_SW_23_CF,1:true;0:false ,765,24,24,1,0,0,,2203B1,6203B1,ff,DTC_CLUTCH_START_SW_24_CF,1:true;0:false ,765,24,24,1,0,0,,2203B2,6203B2,ff,DTC_COMBI_SWITCH_01_CF,1:true;0:false ,765,24,24,1,0,0,,2203B3,6203B3,ff,DTC_COMBI_SWITCH_64_CF,1:true;0:false ,765,24,24,1,0,0,,2203B4,6203B4,ff,DTC_DI_FR_SR_LEFT_18_CF,1:true;0:false ,765,24,24,1,0,0,,2203B5,6203B5,ff,DTC_DI_FR_SR_RIGHT_18_CF,1:true;0:false ,765,24,24,1,0,0,,2203B6,6203B6,ff,DTC_DI_RR_LEFT_18_CF,1:true;0:false ,765,24,24,1,0,0,,2203B7,6203B7,ff,DTC_DI_RR_RIGHT_18_CF,1:true;0:false ,765,24,24,1,0,0,,2203B8,6203B8,ff,DTC_DONGLE_4A_CF,1:true;0:false ,765,24,24,1,0,0,,2203B9,6203B9,ff,DTC_DRIVER_SEAT_BELT_23_CF,1:true;0:false ,765,24,24,1,0,0,,2203BA,6203BA,ff,DTC_DRIVER_SEAT_BELT_CONF_55_CF,1:true;0:false ,765,24,24,1,0,0,,2203BB,6203BB,ff,DTC_ETA_04_CF,1:true;0:false ,765,24,24,1,0,0,,2203BC,6203BC,ff,DTC_MASTER_MOTOR_96_CF,1:true;0:false ,765,24,24,1,0,0,,2203BD,6203BD,ff,DTC_MOTOR_COMM_08_CF,1:true;0:false ,765,24,24,1,0,0,,2203BE,6203BE,ff,DTC_RAIN_SENSOR_49_CF,1:true;0:false ,765,24,24,1,0,0,,2203BF,6203BF,ff,DTC_SLAVE_MOTOR_96_CF,1:true;0:false ,765,24,24,1,0,0,,2203C0,6203C0,ff,DTC_ST_CUT_RELAY_23_CF,1:true;0:false ,765,24,24,1,0,0,,2203C1,6203C1,ff,DTC_ST_CUT_RELAY_24_CF,1:true;0:false ,765,24,24,1,0,0,,2203C2,6203C2,ff,DTC_STOP_PEDAL_01_CF,1:true;0:false ,765,24,24,1,0,0,,2203C3,6203C3,ff,DTC_STOP_PEDAL_02_CF,1:true;0:false ,765,24,24,1,0,0,,2203C4,6203C4,ff,DTC_STOP_PEDAL_SW1_23_CF,1:true;0:false ,765,24,24,1,0,0,,2203C5,6203C5,ff,DTC_STOP_PEDAL_SW1_24_CF,1:true;0:false ,765,24,24,1,0,0,,2203C6,6203C6,ff,DTC_STOP_PEDAL_SW2_23_CF,1:true;0:false ,765,24,24,1,0,0,,2203C7,6203C7,ff,DTC_STOP_PEDAL_SW2_24_CF,1:true;0:false ,765,24,24,1,0,0,,2203C8,6203C8,ff,DTC_WIPER_TEACHIN_06_CF,1:true;0:false ,765,24,39,1,0,0,min,2203C9,6203C9,ff,PRM_MIN_TIME_TO_SLEEP_TM_CF ,765,24,24,1,0,0,,2203CA,6203CA,ff,TWILIGHT_ON_CUST_CF,1:true;0:false ,765,24,31,1,0,0,,2203CB,6203CB,ff,AUTO_LIGHT_TIMING_USER_CF,0:ALTU_VARIATION_1;1:ALTU_VARIATION_2;2:ALTU_VARIATION_3;3:ALTU_VARIATION_4 ,765,24,39,1,0,0,lux,2203CC,6203CC,ff,PL_ON_THRESH_CF.0 ,765,40,55,1,0,0,lux,2203CC,6203CC,ff,PL_ON_THRESH_CF.1 ,765,56,71,1,0,0,lux,2203CC,6203CC,ff,PL_ON_THRESH_CF.2 ,765,72,87,1,0,0,lux,2203CC,6203CC,ff,PL_ON_THRESH_CF.3 ,765,24,39,1,0,0,lux,2203CD,6203CD,ff,PL_OFF_THRESH_CF.0 ,765,40,55,1,0,0,lux,2203CD,6203CD,ff,PL_OFF_THRESH_CF.1 ,765,56,71,1,0,0,lux,2203CD,6203CD,ff,PL_OFF_THRESH_CF.2 ,765,72,87,1,0,0,lux,2203CD,6203CD,ff,PL_OFF_THRESH_CF.3 ,765,24,39,1,0,0,lux,2203CE,6203CE,ff,QUICK_PL_ON_THRESH_CF.0 ,765,40,55,1,0,0,lux,2203CE,6203CE,ff,QUICK_PL_ON_THRESH_CF.1 ,765,56,71,1,0,0,lux,2203CE,6203CE,ff,QUICK_PL_ON_THRESH_CF.2 ,765,72,87,1,0,0,lux,2203CE,6203CE,ff,QUICK_PL_ON_THRESH_CF.3 ,765,24,39,1,0,0,m,2203CF,6203CF,ff,PL_ON_DELAY_DISTANCE_CF.0 ,765,40,55,1,0,0,m,2203CF,6203CF,ff,PL_ON_DELAY_DISTANCE_CF.1 ,765,56,71,1,0,0,m,2203CF,6203CF,ff,PL_ON_DELAY_DISTANCE_CF.2 ,765,72,87,1,0,0,m,2203CF,6203CF,ff,PL_ON_DELAY_DISTANCE_CF.3 ,765,24,39,1,0,0,lux,2203D0,6203D0,ff,LO_ON_THRESH_CF.0 ,765,40,55,1,0,0,lux,2203D0,6203D0,ff,LO_ON_THRESH_CF.1 ,765,56,71,1,0,0,lux,2203D0,6203D0,ff,LO_ON_THRESH_CF.2 ,765,72,87,1,0,0,lux,2203D0,6203D0,ff,LO_ON_THRESH_CF.3 ,765,24,39,1,0,0,lux,2203D1,6203D1,ff,LO_OFF_THRESH_CF.0 ,765,40,55,1,0,0,lux,2203D1,6203D1,ff,LO_OFF_THRESH_CF.1 ,765,56,71,1,0,0,lux,2203D1,6203D1,ff,LO_OFF_THRESH_CF.2 ,765,72,87,1,0,0,lux,2203D1,6203D1,ff,LO_OFF_THRESH_CF.3 ,765,24,39,1,0,0,lux,2203D2,6203D2,ff,QUICK_LO_ON_THRESH_CF.0 ,765,40,55,1,0,0,lux,2203D2,6203D2,ff,QUICK_LO_ON_THRESH_CF.1 ,765,56,71,1,0,0,lux,2203D2,6203D2,ff,QUICK_LO_ON_THRESH_CF.2 ,765,72,87,1,0,0,lux,2203D2,6203D2,ff,QUICK_LO_ON_THRESH_CF.3 ,765,24,39,1,0,0,lux,2203D3,6203D3,ff,QUICK_LO_OFF_THRESH_CF.0 ,765,40,55,1,0,0,lux,2203D3,6203D3,ff,QUICK_LO_OFF_THRESH_CF.1 ,765,56,71,1,0,0,lux,2203D3,6203D3,ff,QUICK_LO_OFF_THRESH_CF.2 ,765,72,87,1,0,0,lux,2203D3,6203D3,ff,QUICK_LO_OFF_THRESH_CF.3 ,765,24,39,1,0,0,m,2203D4,6203D4,ff,LO_ON_DELAY_DISTANCE_CF.0 ,765,40,55,1,0,0,m,2203D4,6203D4,ff,LO_ON_DELAY_DISTANCE_CF.1 ,765,56,71,1,0,0,m,2203D4,6203D4,ff,LO_ON_DELAY_DISTANCE_CF.2 ,765,72,87,1,0,0,m,2203D4,6203D4,ff,LO_ON_DELAY_DISTANCE_CF.3 ,765,24,39,1,0,0,m,2203D5,6203D5,ff,LO_OFF_DELAY_DISTANCE_CF.0 ,765,40,55,1,0,0,m,2203D5,6203D5,ff,LO_OFF_DELAY_DISTANCE_CF.1 ,765,56,71,1,0,0,m,2203D5,6203D5,ff,LO_OFF_DELAY_DISTANCE_CF.2 ,765,72,87,1,0,0,m,2203D5,6203D5,ff,LO_OFF_DELAY_DISTANCE_CF.3 ,765,24,39,1,0,0,lux,2203D6,6203D6,ff,ENHANCE_LO_ON_THRESH_CF.0 ,765,40,55,1,0,0,lux,2203D6,6203D6,ff,ENHANCE_LO_ON_THRESH_CF.1 ,765,56,71,1,0,0,lux,2203D6,6203D6,ff,ENHANCE_LO_ON_THRESH_CF.2 ,765,72,87,1,0,0,lux,2203D6,6203D6,ff,ENHANCE_LO_ON_THRESH_CF.3 ,765,24,39,1,0,0,lux,2203D7,6203D7,ff,ENHANCE_LO_OFF_THRESH_CF.0 ,765,40,55,1,0,0,lux,2203D7,6203D7,ff,ENHANCE_LO_OFF_THRESH_CF.1 ,765,56,71,1,0,0,lux,2203D7,6203D7,ff,ENHANCE_LO_OFF_THRESH_CF.2 ,765,72,87,1,0,0,lux,2203D7,6203D7,ff,ENHANCE_LO_OFF_THRESH_CF.3 ,765,24,39,.01,0,2,sec,2203D8,6203D8,ff,ALS_REQUEST_OFF_FILTER_TM_CF ,765,24,55,1,0,0,,2203D9,6203D9,4ff,DELAY_AFTER_ENGINE_OFF_TM_CF ,765,24,31,1,0,0,,2203DA,6203DA,ff,LIGHT_SENSOR_CF,0:MPU_STATUS_LIGHT_CF_1;1:MPU_STATUS_LIGHT_CF_2;2:MPU_STATUS_LIGHT_CF_3;3:MPU_STATUS_LIGHT_CF_4;4:MPU_STATUS_LIGHT_CF_5;5:MPU_STATUS_LIGHT_CF_6;6:MPU_STATUS_LIGHT_CF_7;7:MPU_STATUS_LIGHT_CF_8;8:MPU_STATUS_LIGHT_CF_9;9:MPU_STATUS_LIGHT_CF_10;10:MPU_STATUS_LIGHT_CF_11;11:MPU_STATUS_LIGHT_CF_12;12:MPU_STATUS_LIGHT_CF_13;13:MPU_STATUS_LIGHT_CF_14;14:MPU_STATUS_LIGHT_CF_15;15:MPU_STATUS_LIGHT_CF_16 ,765,24,31,1,0,0,,2203DB,6203DB,ff,REAR_TAIL_W_DRL_CF,0:W_NO_REAR_TAIL_BY_DAY;1:W_REAR_TAIL_ON_BY_DAY;2:W_REAR_TAIL_AND_PLATE_ON_BY_DAY ,765,24,24,1,0,0,,2203DC,6203DC,ff,E_B_REAR_FOG_WITHOUT_PWM_1_CF,1:true;0:false ,765,24,24,1,0,0,,2203DD,6203DD,ff,E_B_STOP_WITHOUT_PWM_2_CF,1:true;0:false ,765,24,24,1,0,0,,2203DE,6203DE,ff,E_B_STOP_WITHOUT_PWM_1_CF,1:true;0:false ,765,24,39,.01,0,2,sec,2203DF,6203DF,ff,MAX_ENGINE_START_SEQ_TM_CF ,765,24,24,1,0,0,,2203E0,6203E0,ff,HF_START_CAR_SECURED_ACTIV_CF,1:true;0:false ,765,24,24,1,0,0,,2203E1,6203E1,ff,RKE_BACKDOOR_UNLOCK_CF,1:true;0:false ,765,24,31,1,0,0,km/h,2203E2,6203E2,ff,MASTER_DOOR_SPEED_THRESH_CF ,765,24,24,1,0,0,,2203E3,6203E3,ff,DTC_LIGHT_SENSOR_49_CF,1:true;0:false ,765,24,31,1,0,0,,2203E4,6203E4,ff,WIPER_LINK_USER_CF,0:WLU_WITHOUT;1:WLU_LINKED_LOW_HIGH;2:WLU_LINKED_INT_AUTO_LOW_HIGH ,765,24,39,10,0,0,ms,2203E5,6203E5,ff,RKE_PANIC_LONG_TM_CF ,765,24,31,1,0,0,,2203E6,6203E6,ff,VERLOG_CF,1:VERLOG_MG;0:VERLOG_ICE;2:VERLOG_SED;3:VERLOG_LCB ,765,24,24,1,0,0,,2203E7,6203E7,ff,BUZZER_AT_TRUNK_OPENING_CF,1:true;0:false ,765,24,31,1,0,0,,2203E8,6203E8,ff,LOCK_UNLOCK_VERYLG_PRESS_CF ,765,24,55,1,0,0,,2203E9,6203E9,4ff,IMMO_DURATION_SA_UNLOCKED_TIME_OUT_TM_CF ,765,24,24,1,0,0,,2203EA,6203EA,ff,IMMO_OFFBOARD_PAIRING_CF,1:true;0:false ,765,24,39,1.66666666666667E-04,0,3,min,2203EB,6203EB,ff,IMMO_TIMEOUT_AFTER_SALES_MODE_TM_CF ,765,24,39,1.66666666666667E-04,0,3,min,2203EC,6203EC,ff,IMMO_TIMEOUT_REWORK_MODE_TM_CF ,765,24,24,1,0,0,,2203ED,6203ED,ff,MODE_APP_CF,1:true;0:false ,765,24,24,1,0,0,,2203EE,6203EE,ff,DELIVERY_MODE_LEVEL1_DIAG_S,1:true;0:false ,765,24,24,1,0,0,,2203EF,6203EF,ff,WITH_SR_CF,1:true;0:false ,765,24,24,1,0,0,,2203F0,6203F0,ff,VERLOG_US_CF,1:true;0:false ,765,24,24,1,0,0,,2203F1,6203F1,ff,TRP_RESTRICTED_CF,1:true;0:false ,765,24,24,1,0,0,,2203F2,6203F2,ff,TPMS_DEBUG_CF,1:true;0:false ,765,24,24,1,0,0,,2203F3,6203F3,ff,WITH_CCP_CF,1:true;0:false ,765,24,24,1,0,0,,2203F4,6203F4,ff,WITH_SCP_CF,1:true;0:false ,765,24,24,1,0,0,,2203F5,6203F5,ff,DTC_EEPROM_46_CF,1:true;0:false ,765,24,24,1,0,0,,2203F6,6203F6,ff,DTC_RAM_44_CF,1:true;0:false ,765,24,24,1,0,0,,2203F7,6203F7,ff,DTC_REGISTERS_43_CF,1:true;0:false ,765,24,24,1,0,0,,2203F8,6203F8,ff,DTC_ROM_45_CF,1:true;0:false ,765,24,24,1,0,0,,2203F9,6203F9,ff,DTC_TRANSPONDER_31_CF,1:true;0:false ,765,24,24,1,0,0,,2203FA,6203FA,ff,DTC_BCM_APV_CODE_68_CF,1:true;0:false ,765,24,24,1,0,0,,2203FB,6203FB,ff,TRP_PAIRED_CID_CTRL_CF,1:true;0:false ,765,24,39,.01,0,2,sec,2203FC,6203FC,ff,IMMO_TIME_OUT_LEARNING_KEY_TM_CF ,765,24,24,1,0,0,,2203FD,6203FD,ff,LOCK_CRYPTO_PAGE_CF,1:true;0:false ,765,24,39,.01,0,2,Volt,2203FE,6203FE,ff,C3D_PWM_LIGHTING_SYSTEM_X_CF.0 ,765,40,55,.01,0,2,Volt,2203FE,6203FE,ff,C3D_PWM_LIGHTING_SYSTEM_X_CF.1 ,765,56,71,.01,0,2,Volt,2203FE,6203FE,ff,C3D_PWM_LIGHTING_SYSTEM_X_CF.2 ,765,72,87,.01,0,2,Volt,2203FE,6203FE,ff,C3D_PWM_LIGHTING_SYSTEM_X_CF.3 ,765,24,39,.01,0,2,Volt,2203FF,6203FF,ff,C1D_PWM_LIGHTING_SYSTEM_X_CF.0 ,765,40,55,.01,0,2,Volt,2203FF,6203FF,ff,C1D_PWM_LIGHTING_SYSTEM_X_CF.1 ,765,56,71,.01,0,2,Volt,2203FF,6203FF,ff,C1D_PWM_LIGHTING_SYSTEM_X_CF.2 ,765,72,87,.01,0,2,Volt,2203FF,6203FF,ff,C1D_PWM_LIGHTING_SYSTEM_X_CF.3 ,765,24,39,.01,0,2,Volt,220400,620400,ff,C2D_PWM_LIGHTING_SYSTEM_X_CF.0 ,765,40,55,.01,0,2,Volt,220400,620400,ff,C2D_PWM_LIGHTING_SYSTEM_X_CF.1 ,765,56,71,.01,0,2,Volt,220400,620400,ff,C2D_PWM_LIGHTING_SYSTEM_X_CF.2 ,765,72,87,.01,0,2,Volt,220400,620400,ff,C2D_PWM_LIGHTING_SYSTEM_X_CF.3 ,765,24,31,1,0,0,%,220401,620401,ff,C1D_PWM_LIGHTING_SYSTEM_Y_CF.0 ,765,32,39,1,0,0,%,220401,620401,ff,C1D_PWM_LIGHTING_SYSTEM_Y_CF.1 ,765,40,47,1,0,0,%,220401,620401,ff,C1D_PWM_LIGHTING_SYSTEM_Y_CF.2 ,765,48,55,1,0,0,%,220401,620401,ff,C1D_PWM_LIGHTING_SYSTEM_Y_CF.3 ,765,24,31,1,0,0,%,220402,620402,ff,C2D_PWM_LIGHTING_SYSTEM_Y_CF.0 ,765,32,39,1,0,0,%,220402,620402,ff,C2D_PWM_LIGHTING_SYSTEM_Y_CF.1 ,765,40,47,1,0,0,%,220402,620402,ff,C2D_PWM_LIGHTING_SYSTEM_Y_CF.2 ,765,48,55,1,0,0,%,220402,620402,ff,C2D_PWM_LIGHTING_SYSTEM_Y_CF.3 ,765,24,31,1,0,0,%,220403,620403,ff,C3D_PWM_LIGHTING_SYSTEM_Y_CF.0 ,765,32,39,1,0,0,%,220403,620403,ff,C3D_PWM_LIGHTING_SYSTEM_Y_CF.1 ,765,40,47,1,0,0,%,220403,620403,ff,C3D_PWM_LIGHTING_SYSTEM_Y_CF.2 ,765,48,55,1,0,0,%,220403,620403,ff,C3D_PWM_LIGHTING_SYSTEM_Y_CF.3 ,765,24,39,.01,0,2,Volt,220404,620404,ff,C_U_STOP_OFFSET_2_CF ,765,24,39,.01,0,2,Volt,220405,620405,ff,C_U_STOP_OFFSET_1_CF ,765,24,39,.01,0,2,Volt,220406,620406,ff,C_U_REAR_FOG_OFFSET_CF ,765,24,31,1,0,0,,220407,620407,ff,FREQUENCY_3_LIGHTING_SYSTEM_CF,0:FREQUENCY_LIGHTING_SYSTEM_100_HZ;1:FREQUENCY_LIGHTING_SYSTEM_200_HZ ,765,24,31,1,0,0,,220408,620408,ff,FREQUENCY_2_LIGHTING_SYSTEM_CF,0:FREQUENCY_LIGHTING_SYSTEM_100_HZ;1:FREQUENCY_LIGHTING_SYSTEM_200_HZ ,765,24,31,1,0,0,,220409,620409,ff,FREQUENCY_1_LIGHTING_SYSTEM_CF,0:FREQUENCY_LIGHTING_SYSTEM_100_HZ;1:FREQUENCY_LIGHTING_SYSTEM_200_HZ ,765,24,24,1,0,0,,22040A,62040A,ff,DTC_ASSIST_DEFROSTER_12_CF,1:true;0:false ,765,24,24,1,0,0,,22040B,62040B,ff,DTC_ASSIST_DEFROSTER_14_CF,1:true;0:false ,765,24,24,1,0,0,,22040C,62040C,ff,DTC_AUTO_ACC_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,22040D,62040D,ff,DTC_AUTO_ACC_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,22040E,62040E,ff,DTC_AUTO_MIRROR_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,22040F,62040F,ff,DTC_AUTO_MIRROR_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,220410,620410,ff,DTC_CHILDLOCK_WL_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,220411,620411,ff,DTC_CHILDLOCK_WL_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,220412,620412,ff,DTC_DI_FR_SR_LEFT_19_CF,1:true;0:false ,765,24,24,1,0,0,,220413,620413,ff,DTC_DI_FR_SR_RIGHT_19_CF,1:true;0:false ,765,24,24,1,0,0,,220414,620414,ff,DTC_DI_RR_LEFT_19_CF,1:true;0:false ,765,24,24,1,0,0,,220415,620415,ff,DTC_DI_RR_RIGHT_19_CF,1:true;0:false ,765,24,24,1,0,0,,220416,620416,ff,DTC_DRIVER_DEFROSTER_12_CF,1:true;0:false ,765,24,24,1,0,0,,220417,620417,ff,DTC_DRIVER_DEFROSTER_14_CF,1:true;0:false ,765,24,24,1,0,0,,220418,620418,ff,DTC_WL_AUTHORIZATION_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,220419,620419,ff,DTC_WL_AUTHORIZATION_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,22041A,62041A,ff,DTC_TRAILER_DI_RIGHT_14_CF,1:true;0:false ,765,24,24,1,0,0,,22041B,62041B,ff,DTC_TRAILER_DI_RIGHT_12_CF,1:true;0:false ,765,24,24,1,0,0,,22041C,62041C,ff,DTC_TRAILER_DI_LEFT_14_CF,1:true;0:false ,765,24,24,1,0,0,,22041D,62041D,ff,DTC_TRAILER_DI_LEFT_12_CF,1:true;0:false ,765,24,24,1,0,0,,22041E,62041E,ff,DTC_TAILGATE_OPENER_15_CF,1:true;0:false ,765,24,24,1,0,0,,22041F,62041F,ff,DTC_TAILGATE_OPENER_11_CF,1:true;0:false ,765,24,24,1,0,0,,220420,620420,ff,DTC_STOP_LAMP_3_15_CF,1:true;0:false ,765,24,24,1,0,0,,220421,620421,ff,DTC_STOP_LAMP_3_11_CF,1:true;0:false ,765,24,24,1,0,0,,220422,620422,ff,DTC_STOP_LAMP_1_OR_2_15_CF,1:true;0:false ,765,24,24,1,0,0,,220423,620423,ff,DTC_STOP_LAMP_1_OR_2_11_CF,1:true;0:false ,765,24,24,1,0,0,,220424,620424,ff,DTC_ST_CUT_RELAY_14_CF,1:true;0:false ,765,24,24,1,0,0,,220425,620425,ff,DTC_ST_CUT_RELAY_12_CF,1:true;0:false ,765,24,24,1,0,0,,220427,620427,ff,DTC_SAFETY_LINE_ESCL_12_CF,1:true;0:false ,765,24,24,1,0,0,,220428,620428,ff,DTC_SAFETY_LINE_ESCL_11_CF,1:true;0:false ,765,24,24,1,0,0,,220429,620429,ff,DTC_ROOMLAMP_BATSAVER_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,22042A,62042A,ff,DTC_ROOMLAMP_BATSAVER_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,22042B,62042B,ff,DTC_REAR_DEFROSTER_14_CF,1:true;0:false ,765,24,24,1,0,0,,22042C,62042C,ff,DTC_REAR_DEFROSTER_12_CF,1:true;0:false ,765,24,24,1,0,0,,22042D,62042D,ff,DTC_PWR_WIPER_14_CF,1:true;0:false ,765,24,24,1,0,0,,22042E,62042E,ff,DTC_PWR_STOP_LAMP_14_CF,1:true;0:false ,765,24,24,1,0,0,,22042F,62042F,ff,DTC_PWR_FLASHERS_14_CF,1:true;0:false ,765,24,24,1,0,0,,220430,620430,ff,DTC_PWR_ECU_14_CF,1:true;0:false ,765,24,24,1,0,0,,220431,620431,ff,DTC_PWR_DOORLOCK2_14_CF,1:true;0:false ,765,24,24,1,0,0,,220432,620432,ff,DTC_PWR_DOORLOCK1_14_CF,1:true;0:false ,765,24,24,1,0,0,,220433,620433,ff,DTC_PWR_AUTO_LIGHT_15_CF,1:true;0:false ,765,24,24,1,0,0,,220434,620434,ff,DTC_PWR_AT_LOCKED_11_CF,1:true;0:false ,765,24,24,1,0,0,,220435,620435,ff,DTC_FOG_LAMP_11_CF,1:true;0:false ,765,24,24,1,0,0,,220436,620436,ff,DTC_FOG_LAMP_15_CF,1:true;0:false ,765,24,24,1,0,0,,220437,620437,ff,DTC_IGN_CAB_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,220438,620438,ff,DTC_IGN_CAB_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,220439,620439,ff,DTC_LIN_ACCESS_08_CF,1:true;0:false ,765,24,24,1,0,0,,22043A,62043A,ff,DTC_LIN_RLS_08_CF,1:true;0:false ,765,24,24,1,0,0,,22043B,62043B,ff,DTC_PTC1_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,22043C,62043C,ff,DTC_PTC1_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,22043D,62043D,ff,DTC_PTC2_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,22043E,62043E,ff,DTC_PTC2_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,22043F,62043F,ff,DTC_PTC3_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,220440,620440,ff,DTC_PTC3_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,220441,620441,ff,DTC_PWM_ROOMLAMP_1_12_CF,1:true;0:false ,765,24,24,1,0,0,,220443,620443,ff,DTC_PWM_ROOMLAMP_2_12_CF,1:true;0:false ,765,24,24,1,0,0,,220445,620445,ff,DTC_PWM_ROOMLAMP_3_12_CF,1:true;0:false ,765,24,24,1,0,0,,220447,620447,ff,DTC_PWM_ROOMLAMP_4_12_CF,1:true;0:false ,765,24,24,1,0,0,,220449,620449,ff,DTC_PWM_ROOMLAMP_5_12_CF,1:true;0:false ,765,24,24,1,0,0,,22044B,62044B,ff,DTC_PWM_ROOMLAMP_6_12_CF,1:true;0:false ,765,24,24,1,0,0,,22044C,62044C,ff,DTC_PWM_ROOMLAMP_6_14_CF,1:true;0:false ,765,24,24,1,0,0,,22044D,62044D,ff,DTC_IGN_OFFLOAD1_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,22044E,62044E,ff,DTC_IGN_OFFLOAD1_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,22044F,62044F,ff,DTC_IGN_OFFLOAD2_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,220450,620450,ff,DTC_IGN_OFFLOAD2_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,220451,620451,ff,OPENABLE_ROOF_CF,1:true;0:false ,765,24,24,1,0,0,,220452,620452,ff,INTERIOR_LIGHTS_CF,1:true;0:false ,765,24,31,1,0,0,%,220453,620453,ff,AMBIENT_WELCOME_PWM_CF ,765,24,31,1,0,0,%,220454,620454,ff,AMBIENT_TMP_PWM_CF ,765,24,31,1,0,0,%,220455,620455,ff,AMBIENT_STOP_OPEN_PWM_CF ,765,24,31,1,0,0,%,220456,620456,ff,AMBIENT_RUN_CLOSE_PWM_CF ,765,24,31,1,0,0,%,220457,620457,ff,AMBIENT_RUN_OPEN_PWM_CF ,765,24,24,1,0,0,,220459,620459,ff,WITH_RES_RKE_CF,1:true;0:false ,765,24,31,1,40,0,°C,22045A,62045A,ff,MAX_TEMPERATURE_RES_TIMER_2H_CF ,765,24,55,1,0,0,,22045B,62045B,4ff,RES_MAX_TCU_DELAY_TM_CF ,765,24,39,1.66666666666667E-04,0,3,min,22045C,62045C,ff,RES_TIMER_IN_SECONDS_TM_CF ,765,24,24,1,0,0,,22045D,62045D,ff,WITH_REMOTE_START_CF,1:true;0:false ,765,24,24,1,0,0,,22045E,62045E,ff,WITH_RES_CONT_DRIVING_CF,1:true;0:false ,765,24,24,1,0,0,,22045F,62045F,ff,WITH_RES_SMPHONE_CF,1:true;0:false ,765,24,24,1,0,0,,220460,620460,ff,WITH_RES_SMPHONE_DOUBLE_CF,1:true;0:false ,765,24,24,1,0,0,,220461,620461,ff,TPMS_CF,1:true;0:false ,765,24,24,1,0,0,,220462,620462,ff,EASYFILL_CONFIG_CF,1:true;0:false ,765,24,39,.01,0,2,sec,220463,620463,ff,EASYFILL_HI_PRESS_HAZARD_TM_CF ,765,24,24,1,0,0,,220464,620464,ff,VOLUMETRIC_ALARM_CF,1:true;0:false ,765,24,24,1,0,0,,220465,620465,ff,VOL_LONG_LOCK_ENABLE_CF,1:true;0:false ,765,24,31,1,-1,0,,220466,620466,ff,VOLUMETRIC_SENSOR_TUNING_CF ,765,24,31,1,-1,0,,220467,620467,ff,ANTI_LIFT_SENSOR_TUNING_CF ,765,24,24,1,0,0,,220468,620468,ff,RES_VOLUMETRIC_CANCEL_CF,1:true;0:false ,765,24,24,1,0,0,,220469,620469,ff,KAZASHI_DEPORTED_CF,1:true;0:false ,765,24,24,1,0,0,,22046A,62046A,ff,ABSENT_CARD_WARNING_CF,1:true;0:false ,765,24,24,1,0,0,,22046B,62046B,ff,KEYLOCK_MMI_CF,1:true;0:false ,765,24,39,1.66666666666667E-04,0,3,min,22046C,62046C,ff,KEYLOCK_EXT_MAX_DURATION_TM_CF ,765,24,24,1,0,0,,22046D,62046D,ff,KEY_REMINDER_WARNING_CF,1:true;0:false ,765,24,31,1,0,0,-,22046E,62046E,ff,CUSTOMER_ACTION_MAX_CF ,765,24,24,1,0,0,,22046F,62046F,ff,LONG_TEMPO_DISPLAY_CF,1:true;0:false ,765,24,31,1,0,0,,220470,620470,ff,AUTO_FOLDING_ACTIVATION_CF,0:AUTO_FOLDING_ACTIVATION_NOT_USE;1:AUTO_FOLDING_ACTIVATION_DISABLE;2:AUTO_FOLDING_ACTIVATION_IGN;3:AUTO_FOLDING_ACTIVATION_UNLOCK ,765,24,39,.01,0,2,sec,220471,620471,ff,AUTOMATIC_FOLDING_DELAY_TM_CF ,765,24,39,.01,0,2,sec,220472,620472,ff,AUTOMATIC_UNFOLDING_DELAY_TM_CF ,765,24,39,.01,0,2,sec,220473,620473,ff,WAIT_MIRROR_OPENING_TM_CF ,765,24,39,.01,0,2,sec,220474,620474,ff,COURTESY_ON_DELAY_TM_CF ,765,24,31,1,0,0,,220475,620475,ff,WELCOME_GOODBYE_EXT_CF,0:WGS_EXT_BASIC;1:WGS_EXT_HIGH;2:WGS_EXT_FALSE ,765,24,39,.01,0,2,sec,220476,620476,ff,WGS_TM_CF ,765,24,39,.01,0,2,sec,220477,620477,ff,WAIT_GOODBYE_TM_CF ,765,24,39,.01,0,2,sec,220478,620478,ff,GOODBYE_RAMPDOWN_TM_CF ,765,24,24,1,0,0,,220479,620479,ff,WELCOME_WITH_COE_CF,1:true;0:false ,765,24,24,1,0,0,,22047A,62047A,ff,WELCOME_WITH_PUDDLE_CF_S,1:true;0:false ,765,24,55,1,0,0,,22047C,62047C,4ff,KEY_REMINDER_POLLING_TIMEOUT_TM_CF ,765,24,24,1,0,0,,22047D,62047D,ff,CENTRAL_CONTROL_BY_HANDFREE_CF,1:true;0:false ,765,24,31,1,0,0,,22047E,62047E,ff,CENTRAL_CONTROL_RKE_TRIGGER_CF,0:CENTRAL_CLOSE_RKE_TRIG_LONG_PUSH;1:CENTRAL_CLOSE_RKE_TRIG_DOUBLE_PUSH ,765,24,24,1,0,0,,22047F,62047F,ff,GAWL_PERMANENTLY_CONDITION_CF,1:true;0:false ,765,24,31,1,0,0,,220480,620480,ff,WL_ARCHITECTURE_CF,0:WL_WIRE;1:WL_LIN ,765,24,55,1,0,0,,220481,620481,4ff,WL_SUPPLY_TM_CF ,765,24,31,1,0,0,,220482,620482,ff,WINDOWS_CLOSING_CF,0:WL_CENTRAL_TYPE_WITHOUT;1:WL_CENTRAL_TYPE_MANUAL;2:WL_CENTRAL_TYPE_AUTO ,765,24,31,1,0,0,,220483,620483,ff,WINDOWS_OPENING_CF,0:WL_CENTRAL_TYPE_WITHOUT;1:WL_CENTRAL_TYPE_MANUAL;2:WL_CENTRAL_TYPE_AUTO ,765,24,39,.01,0,2,sec,220484,620484,ff,WL_DOUBLE_PUSH_TM_CF ,765,24,39,.01,0,2,sec,220485,620485,ff,WL_LONG_PUSH_TM_CF ,765,24,39,10,0,0,ms,220486,620486,ff,CENTRAL_CONTROL_TM_CF ,765,24,24,1,0,0,,220487,620487,ff,DRIVER_WL_SWITCH_ECU_LIN_CF,1:true;0:false ,765,24,24,1,0,0,,220488,620488,ff,PASSENGERS_WL_INHIB_BY_RELAY_CF,1:true;0:false ,765,24,24,1,0,0,,220489,620489,ff,REAR_PASSENGERS_WL_ECU_LIN_CF,1:true;0:false ,765,24,24,1,0,0,,22048A,62048A,ff,WL_AUTHORIZATION_BY_RELAY_CF,1:true;0:false ,765,24,24,1,0,0,,22048B,62048B,ff,SUNSHADE_ECU_LIN_CF,1:true;0:false ,765,24,24,1,0,0,,22048C,62048C,ff,FRONT_DRIVER_WL_ECU_LIN_CF,1:true;0:false ,765,24,24,1,0,0,,22048D,62048D,ff,FRONT_PASSENGER_WL_ECU_LIN_CF,1:true;0:false ,765,24,24,1,0,0,,22048E,62048E,ff,SUNROOF_ECU_LIN_CF,1:true;0:false ,765,24,31,1,0,0,time,22048F,62048F,ff,ABS_CARD_WARNING_POLLING_CF ,765,24,31,1,0,0,time,220490,620490,ff,RES_MAX_REQUEST_CF ,765,24,31,7.5,0,0,mBar,220491,620491,ff,EASYFILL_REF_PRESS_RANGE_CF ,765,24,31,7.5,0,0,mBar,220492,620492,ff,EASYFILL_HI_PRESS_THRLD_CF ,765,24,31,1,0,0,,220493,620493,ff,AUTOFMH_ACTIVATION_CF,0:AUTOFMH_ACTIVATED;1:AUTOFMH_DEACTIVATED ,765,24,24,1,0,0,,220494,620494,ff,PERIMETRIC_ALARM_CF,1:true;0:false ,765,24,24,1,0,0,,220495,620495,ff,HOOD_OPEN_DETECTION_CF,1:true;0:false ,765,24,24,1,0,0,,220496,620496,ff,BATTERY_TAMPER_DETECTION_CF,1:true;0:false ,765,24,31,1,0,0,time,220497,620497,ff,MAX_BREAKING_IN_NUMBER_CF ,765,24,24,1,0,0,,220498,620498,ff,ALARM_VISUAL_FEEDBACK_CF,1:true;0:false ,765,24,31,1,0,0,,220499,620499,ff,LCM01_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,22049A,62049A,ff,LCM02_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,22049B,62049B,ff,LCM03_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,22049C,62049C,ff,LCM04_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,22049D,62049D,ff,LCM05_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,22049E,62049E,ff,LCM06_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,22049F,62049F,ff,LCM07_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,2204A0,6204A0,ff,LCM08_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,2204A1,6204A1,ff,LCM09_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,2204A2,6204A2,ff,LCM10_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,2204A3,6204A3,ff,LCM11_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,31,1,0,0,,2204A4,6204A4,ff,LCM12_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,24,39,.01,0,2,sec,2204A5,6204A5,ff,BREAKING_IN_ALARM_TM_CF ,765,24,24,1,0,0,,2204A6,6204A6,ff,REAR_WIPER_GND_CF,1:true;0:false ,765,24,39,1,0,0,km/h,2204A7,6204A7,ff,REAR_WIPER_OVERSPEED_THRESH_CF ,765,24,39,.01,0,2,sec,2204A8,6204A8,ff,REAR_WIPER_INT_VALUES_TM_CF.0 ,765,40,55,.01,0,2,sec,2204A8,6204A8,ff,REAR_WIPER_INT_VALUES_TM_CF.1 ,765,56,71,.01,0,2,sec,2204A8,6204A8,ff,REAR_WIPER_INT_VALUES_TM_CF.2 ,765,24,39,1,0,0,km/h,2204A9,6204A9,ff,REAR_WIPER_INT_SPEED_THRESH_CF.0 ,765,40,55,1,0,0,km/h,2204A9,6204A9,ff,REAR_WIPER_INT_SPEED_THRESH_CF.1 ,765,24,24,1,0,0,,2204AA,6204AA,ff,REAR_WIPER_CF,1:true;0:false ,765,24,24,1,0,0,,2204AB,6204AB,ff,REAR_WIPER_WITH_REVERSE_CF,1:true;0:false ,765,24,39,.01,0,2,sec,2204AC,6204AC,ff,REAR_WIPER_CYCLE_TM_CF ,765,24,24,1,0,0,,2204AD,6204AD,ff,REAR_WIPING_WITH_AF_CF,1:true;0:false ,765,24,24,1,0,0,,2204AE,6204AE,ff,CID_EXT_MEM_CF,1:true;0:false ,765,24,31,1,0,0,,2204AF,6204AF,ff,DEFAULT_DAYINTENSITY_CF ,765,24,31,1,0,0,,2204B0,6204B0,ff,DEFAULT_NIGHTINTENSITY_CF ,765,24,31,1,0,0,,2204B1,6204B1,ff,DEFAULT_COLOR_CF,0:AMBI_LIGHT_COLOR_UNAVAILABLE;1:AMBI_LIGHT_STATUS_COLOR_1;2:AMBI_LIGHT_STATUS_COLOR_2;3:AMBI_LIGHT_STATUS_COLOR_3;4:AMBI_LIGHT_STATUS_COLOR_4;5:AMBI_LIGHT_STATUS_COLOR_5;6:AMBI_LIGHT_STATUS_COLOR_6;7:AMBI_LIGHT_STATUS_COLOR_7;8:AMBI_LIGHT_STATUS_COLOR_8;9:AMBI_LIGHT_STATUS_COLOR_9;10:AMBI_LIGHT_STATUS_COLOR_10;11:AMBI_LIGHT_STATUS_COLOR_11;12:AMBI_LIGHT_STATUS_COLOR_12;13:AMBI_LIGHT_STATUS_COLOR_13;14:AMBI_LIGHT_STATUS_COLOR_14;15:AMBI_LIGHT_STATUS_COLOR_15 ,765,24,24,1,0,0,,2204B2,6204B2,ff,LIGHT_PACKAGE_AMBIENCE_CF,1:true;0:false ,765,24,24,1,0,0,,2204B3,6204B3,ff,AMBIENT_LIGHT_FORCED_BY_DAY_CF,1:true;0:false ,765,24,24,1,0,0,,2204B4,6204B4,ff,DEFAULT_AREA1_CF,1:true;0:false ,765,24,24,1,0,0,,2204B5,6204B5,ff,DEFAULT_AREA2_CF,1:true;0:false ,765,24,24,1,0,0,,2204B6,6204B6,ff,DEFAULT_AREA3_CF,1:true;0:false ,765,24,31,1,0,0,,2204B7,6204B7,ff,DYNAMIC_PATTERN_CF,0:DYNAMIC_PATTERN_OFF;1:DYNAMIC_PATTERN_FIXED;2:DYNAMIC_PATTERN_1;3:DYNAMIC_PATTERN_2;4:DYNAMIC_PATTERN_3;5:DYNAMIC_PATTERN_UNUSED_5;6:DYNAMIC_PATTERN_UNUSED_6;7:DYNAMIC_PATTERN_UNUSED_7 ,765,24,24,1,0,0,,2204B8,6204B8,ff,MEX_LIGHT_CF,1:true;0:false ,765,24,24,1,0,0,,2204B9,6204B9,ff,DEFAULT_PATTERN_ACTIVATION_CF,1:true;0:false ,765,24,31,1,0,0,,2204BA,6204BA,ff,TPMS_DISPLAY_STYLE_CF,0:WARNING_LAMP_ONLY;1:PRESSURE_DISP_WITHOUT_POS;2:PRESSURE_DISP_WITH_POS;3:WARNING_WITH_POS_WITHOUT_DISP ,765,24,24,1,0,0,,2204BB,6204BB,ff,TPMS_CAN_ATMO_PRESS_SENSOR_CF,1:true;0:false ,765,24,31,1,0,0,,2204BC,6204BC,ff,REF_PRESS_SET_CF,0:REF_PRESSURE_NOT_SUPPORT;1:REF_PRESSURE_BY_SELECTION;2:REF_PRESSURE_BY_SET_LEARN ,765,24,39,1,0,0,km/h,2204BD,6204BD,ff,SET_ACCEPT_SPEED_THRLD_CF ,765,24,24,1,0,0,,2204BE,6204BE,ff,REF_TEMP_SET_CF,1:true;0:false ,765,24,31,1,0,0,,2204BF,6204BF,ff,TPMS_RFT_WARNING_FUNCTION_CF,0:RFT_WITHOUT;1:RFT_WITH_AND_NOT_RESETTABLE;2:RFT_WITH_AND_RESETTABLE;3:RFT_NOT_USED ,765,24,39,7.5,0,0,mBar,2204C0,6204C0,ff,TPMS_REC_PRESS_FRONT_CF ,765,24,39,7.5,0,0,mBar,2204C1,6204C1,ff,TPMS_REC_PRESS_REAR_CF ,765,24,24,1,0,0,,2204C2,6204C2,ff,FRONT_REAR_DIFFERENT_PRESS_CF,1:true;0:false ,765,24,31,1,0,0,min,2204C3,6204C3,ff,REF_TEMP_AUTOSWITCH_TM_CF ,765,24,31,1,30,0,°C,2204C4,6204C4,ff,TPMS_OEM_TREF_CF ,765,24,39,7.5,0,0,mBar,2204C5,6204C5,ff,TPMS_PUNCT_ALERT_FIX_ABS_ON_CF ,765,24,39,1,0,0,km/h,2204C6,6204C6,ff,TPMS_VEH_RUNNING_THRESHOLD_CF ,765,24,39,.01,0,2,sec,2204C7,6204C7,ff,TPMS_VEH_RUNNING_ON_DELAY_TM_CF ,765,24,31,1,30,0,°C,2204C8,6204C8,ff,MIN_TEMP_REF_CF ,765,24,31,1,30,0,°C,2204C9,6204C9,ff,MAX_TEMP_REF_CF ,765,24,39,7.5,0,0,mBar,2204CA,6204CA,ff,TPMS_SET_PRESS_TOL_CF ,765,24,31,1,0,0,-,2204CB,6204CB,ff,TPMS_THRD_UND_INF_WNG_ON_CF ,765,24,31,1,0,0,-,2204CC,6204CC,ff,TPMS_THRD_UND_INF_WNG_OFF_CF ,765,24,39,7.5,0,0,mBar,2204CD,6204CD,ff,TPMS_LOW_PRESS_TOL_CF ,765,24,39,7.5,0,0,mBar,2204CE,6204CE,ff,TPMS_SENSOR_PRESS_TOL_CF ,765,24,39,7.5,0,0,mBar,2204CF,6204CF,ff,TPMS_NORMAL_PRESS_THRLD_ABS_CF ,765,24,31,1,0,0,-,2204D0,6204D0,ff,TPMS_THRD_PUNCT_WNG_OFF_CF ,765,24,24,1,0,0,,2204D1,6204D1,ff,TPMS_NORMAL_PRESS_THRLD_TYPE_CF,1:true;0:false ,765,24,31,1,0,0,-,2204D2,6204D2,ff,TPMS_SENSOR_ERR_CNT_ON_CF ,765,24,39,7.5,0,0,mBar,2204D3,6204D3,ff,TPMS_INCOH_PRESS_THRESHOLD_CF ,765,24,39,.01,0,2,sec,2204D4,6204D4,ff,TPMS_VEH_STOPPED_ON_DELAY_TM_CF ,765,24,39,1,0,0,km/h,2204D5,6204D5,ff,TPMS_VEH_STOPPED_THRESHOLD_CF ,765,24,24,1,0,0,,2204D6,6204D6,ff,AUTOSET_SUPPORT_CF,1:true;0:false ,765,24,39,7.5,0,0,mBar,2204D7,6204D7,ff,TPMS_LOW_P_FIX_ABS_ON_FRONT_CF ,765,24,39,7.5,0,0,mBar,2204D8,6204D8,ff,TPMS_LOW_P_FIX_ABS_ON_REAR_CF ,765,24,24,1,0,0,,2204D9,6204D9,ff,TPMS_MISSING_SENSOR_ENABLE_CF,1:true;0:false ,765,24,31,1,0,0,-,2204DA,6204DA,ff,TPMS_MISSING_THRESHOLD_ALERT_CF ,765,24,24,1,0,0,,2204DB,6204DB,ff,TPMS_MMI_PRIO_SETTING_CF,1:true;0:false ,765,24,31,1,0,0,,2204DC,6204DC,ff,TPMS_ON_OFF_CF,0:TPMS_ON_OFF_NOT_ACTIVATED;1:TPMS_ON_OFF_NOT_USED_1;2:TPMS_ON_OFF_ACTIVATED;3:TPMS_ON_OFF_NOT_USED_3 ,765,24,24,1,0,0,,2204DD,6204DD,ff,TPMS_ON_OFF_CUSTOMIZE_CF,1:true;0:false ,765,24,31,1,0,0,%,2204DE,6204DE,ff,TPMS_PRESS_WNG_FIX_RATE_OFF_CF ,765,24,31,1,0,0,%,2204DF,6204DF,ff,TPMS_PRESS_WNG_VAR_RATE_OFF_CF ,765,24,31,1,0,0,-,2204E0,6204E0,ff,TPMS_SENSOR_ERR_CNT_OFF_CF ,765,24,31,1,0,0,-,2204E1,6204E1,ff,TPMS_THRD_PUNCT_WNG_ON_CF ,765,24,39,.01,0,2,sec,2204E2,6204E2,ff,TPMS_TIMEOUT_NO_DATA_TM_CF ,765,24,24,1,0,0,,2204E3,6204E3,ff,TPMS_TRANSFER_MODE_CF,1:true;0:false ,765,24,31,1,0,0,%,2204E4,6204E4,ff,TPMS_UND_INF_WNG_FIX_RATE_ON_CF ,765,24,31,1,0,0,%,2204E5,6204E5,ff,TPMS_UND_INF_WNG_VAR_RATE_ON_CF ,765,24,24,1,0,0,,2204E6,6204E6,ff,TPMS_WUIDREG_FLASHER_CF,1:true;0:false ,765,24,31,1,0,0,°C,2204E7,6204E7,ff,TREF_CANDI_JUDGE_CF ,765,24,31,1,0,0,°C,2204E8,6204E8,ff,TPMS_INCOH_TEMP_THRESHOLD_CF ,765,24,55,1,0,0,,2204E9,6204E9,4ff,TPMS_WUIDREG_TIMEOUT_TM_CF ,765,24,39,1,0,0,sec,2204EA,6204EA,ff,TPMS_LOW_PRESS_TM_CF ,765,24,31,1,0,0,-,2204EB,6204EB,ff,N_PULSES_JUDG_VEH_STOPPED_CF ,765,24,31,1,0,0,-,2204EC,6204EC,ff,N_PULSES_JUDG_VEH_DRIVE_CF ,765,24,31,1,0,0,-,2204ED,6204ED,ff,WSS_N_F_CF ,765,24,31,1,0,0,-,2204EE,6204EE,ff,WSS_N_R_CF ,765,24,39,16,0,0,us,2204EF,6204EF,ff,TPMS_RF_INTERVAL_FRAMES_TM_CF ,765,24,39,.01,0,2,sec,2204F0,6204F0,ff,TPMS_TIMEOUT_NODATA_TM_CF ,765,24,31,1,0,0,-,2204F1,6204F1,ff,TPMS_NB_MISSED_TX_CF ,765,24,31,1,0,0,,2204F2,6204F2,ff,TPMS_AUTOLOCATION_ACTIVATION_CF,0:WITHOUT_AUTOLOC;1:AUTOLEARNING_WITHOUT_AUTOLOC;2:AUTOLEARNING_WITH_AUTOLOC;3:AUTOLOCATION_NOT_USED ,765,24,31,1,0,0,-,2204F3,6204F3,ff,WHEEL_POS_JUDGMENT_B_BLOCK_N_CF ,765,24,31,1,0,0,,2204F4,6204F4,ff,WHEEL_POS_JUDGMENT_BLOCK_N_CF ,765,24,31,.005,0,3,-,2204F5,6204F5,ff,JUDGMENT_PRIO1_HIGH_CF ,765,24,31,.005,0,3,-,2204F6,6204F6,ff,JUDGMENT_PRIO1_LOW_CF ,765,24,31,.005,0,3,-,2204F7,6204F7,ff,JUDGMENT_PRIO2_HIGH_CF ,765,24,31,.005,0,3,-,2204F8,6204F8,ff,JUDGMENT_PRIO2_LOW_CF ,765,24,31,.005,0,3,-,2204F9,6204F9,ff,JUDGMENT_PRIO3_HIGH_CF ,765,24,31,.005,0,3,-,2204FA,6204FA,ff,JUDGMENT_PRIO3_LOW_CF ,765,24,39,1,0,0,sec,2204FB,6204FB,ff,TPMS_AUTOLOCATION_TIMEOUT_TM_CF ,765,24,24,1,0,0,,2204FC,6204FC,ff,FAT_LOGIC_FOR_4WD_CF,1:true;0:false ,765,24,31,1,0,0,-,2204FD,6204FD,ff,BLOCK_N_OF_IDREG_FOR_PRE_ID_CF ,765,24,31,1,0,0,-,2204FE,6204FE,ff,BLOCK_N_OF_IDREG_FOR_NEW_ID_CF ,765,24,39,1,0,0,km/h,2204FF,6204FF,ff,AUTOLOCATION_TIMER_START_SPD_CF ,765,24,39,7.5,0,0,mBar,220500,620500,ff,TPMS_ATMO_EXTERN_PRESS_CF ,765,24,31,1,50,0,°C,220501,620501,ff,TPMS_LOW_PRESS_TEMP_THRLD_CF ,765,24,31,1,30,0,°C,220502,620502,ff,TPMS_THRD_LOW_BATT_WNG_CF ,765,24,24,1,0,0,,220503,620503,ff,DTC_ALARM_VOLUMETRIC_04_CF,1:true;0:false ,765,24,24,1,0,0,,220504,620504,ff,DTC_DPC_04_CF,1:true;0:false ,765,24,24,1,0,0,,220505,620505,ff,DTC_EEPROM_42_CF,1:true;0:false ,765,24,24,1,0,0,,220506,620506,ff,DTC_IFLW_04_CF,1:true;0:false ,765,24,24,1,0,0,,220507,620507,ff,DTC_IFRW_04_CF,1:true;0:false ,765,24,24,1,0,0,,220508,620508,ff,DTC_IRLW_04_CF,1:true;0:false ,765,24,24,1,0,0,,220509,620509,ff,DTC_IRRW_04_CF,1:true;0:false ,765,24,24,1,0,0,,22050A,62050A,ff,DTC_LCM01_04_CF,1:true;0:false ,765,24,24,1,0,0,,22050B,62050B,ff,DTC_LCM02_04_CF,1:true;0:false ,765,24,24,1,0,0,,22050C,62050C,ff,DTC_LCM03_04_CF,1:true;0:false ,765,24,24,1,0,0,,22050D,62050D,ff,DTC_LCM04_04_CF,1:true;0:false ,765,24,24,1,0,0,,22050E,62050E,ff,DTC_LCM05_04_CF,1:true;0:false ,765,24,24,1,0,0,,22050F,62050F,ff,DTC_LCM06_04_CF,1:true;0:false ,765,24,24,1,0,0,,220510,620510,ff,DTC_LCM07_04_CF,1:true;0:false ,765,24,24,1,0,0,,220511,620511,ff,DTC_LCM08_04_CF,1:true;0:false ,765,24,24,1,0,0,,220512,620512,ff,DTC_LCM09_04_CF,1:true;0:false ,765,24,24,1,0,0,,220513,620513,ff,DTC_LCM10_04_CF,1:true;0:false ,765,24,24,1,0,0,,220514,620514,ff,DTC_LCM11_04_CF,1:true;0:false ,765,24,24,1,0,0,,220515,620515,ff,DTC_LCM12_04_CF,1:true;0:false ,765,24,24,1,0,0,,220516,620516,ff,DTC_LIN_AMBIANT_08_CF,1:true;0:false ,765,24,24,1,0,0,,220517,620517,ff,DTC_LIN_DOOR_08_CF,1:true;0:false ,765,24,24,1,0,0,,220518,620518,ff,DTC_PMU_04_CF,1:true;0:false ,765,24,24,1,0,0,,220519,620519,ff,DTC_REAR_WIPER_64_CF,1:true;0:false ,765,24,24,1,0,0,,22051A,62051A,ff,DTC_SRU_04_CF,1:true;0:false ,765,24,24,1,0,0,,22051B,62051B,ff,DTC_SSU_04_CF,1:true;0:false ,765,24,24,1,0,0,,22051C,62051C,ff,DTC_TPMS_COMM_SENSOR_1_21_CF,1:true;0:false ,765,24,24,1,0,0,,22051D,62051D,ff,DTC_TPMS_COMM_SENSOR_2_21_CF,1:true;0:false ,765,24,24,1,0,0,,22051E,62051E,ff,DTC_TPMS_COMM_SENSOR_3_21_CF,1:true;0:false ,765,24,24,1,0,0,,22051F,62051F,ff,DTC_TPMS_COMM_SENSOR_4_21_CF,1:true;0:false ,765,24,24,1,0,0,,220520,620520,ff,DTC_TPMS_FUNCTION_54_CF,1:true;0:false ,765,24,24,1,0,0,,220521,620521,ff,DTC_TPMS_FUNCTION_55_CF,1:true;0:false ,765,24,24,1,0,0,,220522,620522,ff,DTC_TPMS_FUNCTION_86_CF,1:true;0:false ,765,24,24,1,0,0,,220523,620523,ff,DTC_TPMS_SENSOR_1_16_CF,1:true;0:false ,765,24,24,1,0,0,,220524,620524,ff,DTC_TPMS_SENSOR_1_68_CF,1:true;0:false ,765,24,24,1,0,0,,220525,620525,ff,DTC_TPMS_SENSOR_2_16_CF,1:true;0:false ,765,24,24,1,0,0,,220526,620526,ff,DTC_TPMS_SENSOR_2_68_CF,1:true;0:false ,765,24,24,1,0,0,,220527,620527,ff,DTC_TPMS_SENSOR_3_16_CF,1:true;0:false ,765,24,24,1,0,0,,220528,620528,ff,DTC_TPMS_SENSOR_3_68_CF,1:true;0:false ,765,24,24,1,0,0,,220529,620529,ff,DTC_TPMS_SENSOR_4_16_CF,1:true;0:false ,765,24,24,1,0,0,,22052A,62052A,ff,DTC_TPMS_SENSOR_4_68_CF,1:true;0:false ,765,24,24,1,0,0,,22052B,62052B,ff,DTC_TPMS_WHEEL_1_7A_CF,1:true;0:false ,765,24,24,1,0,0,,22052C,62052C,ff,DTC_TPMS_WHEEL_1_7B_CF,1:true;0:false ,765,24,24,1,0,0,,22052D,62052D,ff,DTC_TPMS_WHEEL_2_7A_CF,1:true;0:false ,765,24,24,1,0,0,,22052E,62052E,ff,DTC_TPMS_WHEEL_2_7B_CF,1:true;0:false ,765,24,24,1,0,0,,22052F,62052F,ff,DTC_TPMS_WHEEL_3_7A_CF,1:true;0:false ,765,24,24,1,0,0,,220530,620530,ff,DTC_TPMS_WHEEL_3_7B_CF,1:true;0:false ,765,24,24,1,0,0,,220531,620531,ff,DTC_TPMS_WHEEL_4_7A_CF,1:true;0:false ,765,24,24,1,0,0,,220532,620532,ff,DTC_TPMS_WHEEL_4_7B_CF,1:true;0:false ,765,24,24,1,0,0,,220533,620533,ff,PTC_RELAY1_CF.0,1:true;0:false ,765,25,25,1,0,0,,220533,620533,ff,PTC_RELAY1_CF.1,1:true;0:false ,765,26,26,1,0,0,,220533,620533,ff,PTC_RELAY1_CF.2,1:true;0:false ,765,27,27,1,0,0,,220533,620533,ff,PTC_RELAY1_CF.3,1:true;0:false ,765,28,28,1,0,0,,220533,620533,ff,PTC_RELAY1_CF.4,1:true;0:false ,765,29,29,1,0,0,,220533,620533,ff,PTC_RELAY1_CF.5,1:true;0:false ,765,30,30,1,0,0,,220533,620533,ff,PTC_RELAY1_CF.6,1:true;0:false ,765,31,31,1,0,0,,220533,620533,ff,PTC_RELAY1_CF.7,1:true;0:false ,765,32,32,1,0,0,,220533,620533,ff,PTC_RELAY1_CF.8,1:true;0:false ,765,33,33,1,0,0,,220533,620533,ff,PTC_RELAY1_CF.9,1:true;0:false ,765,24,24,1,0,0,,220534,620534,ff,PTC_RELAY2_CF.0,1:true;0:false ,765,25,25,1,0,0,,220534,620534,ff,PTC_RELAY2_CF.1,1:true;0:false ,765,26,26,1,0,0,,220534,620534,ff,PTC_RELAY2_CF.2,1:true;0:false ,765,27,27,1,0,0,,220534,620534,ff,PTC_RELAY2_CF.3,1:true;0:false ,765,28,28,1,0,0,,220534,620534,ff,PTC_RELAY2_CF.4,1:true;0:false ,765,29,29,1,0,0,,220534,620534,ff,PTC_RELAY2_CF.5,1:true;0:false ,765,30,30,1,0,0,,220534,620534,ff,PTC_RELAY2_CF.6,1:true;0:false ,765,31,31,1,0,0,,220534,620534,ff,PTC_RELAY2_CF.7,1:true;0:false ,765,32,32,1,0,0,,220534,620534,ff,PTC_RELAY2_CF.8,1:true;0:false ,765,33,33,1,0,0,,220534,620534,ff,PTC_RELAY2_CF.9,1:true;0:false ,765,24,24,1,0,0,,220535,620535,ff,PTC_RELAY3_CF.0,1:true;0:false ,765,25,25,1,0,0,,220535,620535,ff,PTC_RELAY3_CF.1,1:true;0:false ,765,26,26,1,0,0,,220535,620535,ff,PTC_RELAY3_CF.2,1:true;0:false ,765,27,27,1,0,0,,220535,620535,ff,PTC_RELAY3_CF.3,1:true;0:false ,765,28,28,1,0,0,,220535,620535,ff,PTC_RELAY3_CF.4,1:true;0:false ,765,29,29,1,0,0,,220535,620535,ff,PTC_RELAY3_CF.5,1:true;0:false ,765,30,30,1,0,0,,220535,620535,ff,PTC_RELAY3_CF.6,1:true;0:false ,765,31,31,1,0,0,,220535,620535,ff,PTC_RELAY3_CF.7,1:true;0:false ,765,32,32,1,0,0,,220535,620535,ff,PTC_RELAY3_CF.8,1:true;0:false ,765,33,33,1,0,0,,220535,620535,ff,PTC_RELAY3_CF.9,1:true;0:false ,765,24,31,1,0,0,,220536,620536,ff,THPNBTHERMALREQUEST_CF.0 ,765,32,39,1,0,0,,220536,620536,ff,THPNBTHERMALREQUEST_CF.1 ,765,40,47,1,0,0,,220536,620536,ff,THPNBTHERMALREQUEST_CF.2 ,765,48,55,1,0,0,,220536,620536,ff,THPNBTHERMALREQUEST_CF.3 ,765,56,63,1,0,0,,220536,620536,ff,THPNBTHERMALREQUEST_CF.4 ,765,64,71,1,0,0,,220536,620536,ff,THPNBTHERMALREQUEST_CF.5 ,765,72,79,1,0,0,,220536,620536,ff,THPNBTHERMALREQUEST_CF.6 ,765,80,87,1,0,0,,220536,620536,ff,THPNBTHERMALREQUEST_CF.7 ,765,88,95,1,0,0,,220536,620536,ff,THPNBTHERMALREQUEST_CF.8 ,765,96,103,1,0,0,,220536,620536,ff,THPNBTHERMALREQUEST_CF.9 ,765,24,31,.05,0,2,-,220537,620537,ff,ALTERNATORLOAD_PULLEY_RATIO_CF ,765,24,31,.5,0,1,%,220538,620538,ff,ALTERNATORLOAD_SETTING_CF ,765,24,39,1,0,0,Rpm,220539,620539,ff,ALTLOADEND_IN_CF.0 ,765,40,55,1,0,0,Rpm,220539,620539,ff,ALTLOADEND_IN_CF.1 ,765,56,71,1,0,0,Rpm,220539,620539,ff,ALTLOADEND_IN_CF.2 ,765,72,87,1,0,0,Rpm,220539,620539,ff,ALTLOADEND_IN_CF.3 ,765,88,103,1,0,0,Rpm,220539,620539,ff,ALTLOADEND_IN_CF.4 ,765,104,119,1,0,0,Rpm,220539,620539,ff,ALTLOADEND_IN_CF.5 ,765,120,135,1,0,0,Rpm,220539,620539,ff,ALTLOADEND_IN_CF.6 ,765,136,151,1,0,0,Rpm,220539,620539,ff,ALTLOADEND_IN_CF.7 ,765,152,167,1,0,0,Rpm,220539,620539,ff,ALTLOADEND_IN_CF.8 ,765,168,183,1,0,0,Rpm,220539,620539,ff,ALTLOADEND_IN_CF.9 ,765,24,39,.5,200,1,%,22053A,62053A,ff,ALTLOADEND_OUT_CF.0 ,765,40,55,.5,200,1,%,22053A,62053A,ff,ALTLOADEND_OUT_CF.1 ,765,56,71,.5,200,1,%,22053A,62053A,ff,ALTLOADEND_OUT_CF.2 ,765,72,87,.5,200,1,%,22053A,62053A,ff,ALTLOADEND_OUT_CF.3 ,765,88,103,.5,200,1,%,22053A,62053A,ff,ALTLOADEND_OUT_CF.4 ,765,104,119,.5,200,1,%,22053A,62053A,ff,ALTLOADEND_OUT_CF.5 ,765,120,135,.5,200,1,%,22053A,62053A,ff,ALTLOADEND_OUT_CF.6 ,765,136,151,.5,200,1,%,22053A,62053A,ff,ALTLOADEND_OUT_CF.7 ,765,152,167,.5,200,1,%,22053A,62053A,ff,ALTLOADEND_OUT_CF.8 ,765,168,183,.5,200,1,%,22053A,62053A,ff,ALTLOADEND_OUT_CF.9 ,765,24,39,1,0,0,Rpm,22053B,62053B,ff,ALTLOADSTART_IN_CF.0 ,765,40,55,1,0,0,Rpm,22053B,62053B,ff,ALTLOADSTART_IN_CF.1 ,765,56,71,1,0,0,Rpm,22053B,62053B,ff,ALTLOADSTART_IN_CF.2 ,765,72,87,1,0,0,Rpm,22053B,62053B,ff,ALTLOADSTART_IN_CF.3 ,765,88,103,1,0,0,Rpm,22053B,62053B,ff,ALTLOADSTART_IN_CF.4 ,765,104,119,1,0,0,Rpm,22053B,62053B,ff,ALTLOADSTART_IN_CF.5 ,765,120,135,1,0,0,Rpm,22053B,62053B,ff,ALTLOADSTART_IN_CF.6 ,765,136,151,1,0,0,Rpm,22053B,62053B,ff,ALTLOADSTART_IN_CF.7 ,765,152,167,1,0,0,Rpm,22053B,62053B,ff,ALTLOADSTART_IN_CF.8 ,765,168,183,1,0,0,Rpm,22053B,62053B,ff,ALTLOADSTART_IN_CF.9 ,765,24,39,.5,200,1,%,22053C,62053C,ff,ALTLOADSTART_OUT_CF.0 ,765,40,55,.5,200,1,%,22053C,62053C,ff,ALTLOADSTART_OUT_CF.1 ,765,56,71,.5,200,1,%,22053C,62053C,ff,ALTLOADSTART_OUT_CF.2 ,765,72,87,.5,200,1,%,22053C,62053C,ff,ALTLOADSTART_OUT_CF.3 ,765,88,103,.5,200,1,%,22053C,62053C,ff,ALTLOADSTART_OUT_CF.4 ,765,104,119,.5,200,1,%,22053C,62053C,ff,ALTLOADSTART_OUT_CF.5 ,765,120,135,.5,200,1,%,22053C,62053C,ff,ALTLOADSTART_OUT_CF.6 ,765,136,151,.5,200,1,%,22053C,62053C,ff,ALTLOADSTART_OUT_CF.7 ,765,152,167,.5,200,1,%,22053C,62053C,ff,ALTLOADSTART_OUT_CF.8 ,765,168,183,.5,200,1,%,22053C,62053C,ff,ALTLOADSTART_OUT_CF.9 ,765,24,31,1,0,0,%,22053D,62053D,ff,HIGHALTLOAD_STEP1_CF ,765,24,31,1,0,0,%,22053E,62053E,ff,HIGHALTLOAD_STEP2_CF ,765,24,39,.001,0,3,1/%.s,22053F,62053F,ff,KIALTERNATORLOAD_ERROR_NEG_CF ,765,24,39,.001,0,3,1/%.s,220540,620540,ff,KIALTERNATORLOAD_ERROR_POS_CF ,765,24,39,.0001,0,3,1/%,220541,620541,ff,KPALTERNATORLOAD_ERROR_NEG_CF ,765,24,39,.0001,0,3,1/%,220542,620542,ff,KPALTERNATORLOAD_ERROR_POS_CF ,765,24,31,1,0,0,%,220543,620543,ff,LOWALTLOAD_CF ,765,24,39,1,0,0,km/h,220544,620544,ff,AL_VEH_RUNNING_THRESHOLD_CF ,765,24,55,1,0,0,,220545,620545,4ff,MIN_LONG_TIME_PARK_ON_TM_CF ,765,24,39,16,625,0,us,220546,620546,ff,TPMS_RF_DATA_LENGTH_TM_CF ,765,24,39,16,625,0,us,220547,620547,ff,WSSP_RX_DELAY_CF ,765,24,31,1,0,0,,220548,620548,ff,IMMO_IASS_INDEX_CF ,765,24,39,10,0,0,ms,220549,620549,ff,SHIFT_DRIVER_TO_ASSIST_TM_CF ,765,24,39,.01,0,2,sec,22054A,62054A,ff,FRONT_DEFROST_ENGAGEMENT_TM_CF ,765,24,31,100,0,0,W,22054B,62054B,ff,ELECTRICAL_POWER_DRIVER_CF ,765,24,31,100,0,0,W,22054C,62054C,ff,ELECTRICAL_POWER_ASSIST_CF ,765,24,31,100,0,0,W,22054D,62054D,ff,ELECTRICAL_POWER_REAR_CF ,765,24,31,.005,0,3,-,22054E,62054E,ff,JUDGMENT_4WD_CF ,765,24,31,.5,0,1,%,22054F,62054F,ff,DC_W_INITIAL_CF ,765,24,31,.5,0,1,%,220550,620550,ff,DC_G_INITIAL_CF ,765,24,31,.5,0,1,%,220551,620551,ff,DC_W_1_CF ,765,24,31,.5,0,1,%,220552,620552,ff,DC_W_2_CF ,765,24,31,.5,0,1,%,220553,620553,ff,DC_W_3_CF ,765,24,31,.5,0,1,%,220554,620554,ff,DC_W_4_CF ,765,24,31,.5,0,1,%,220555,620555,ff,DC_G_1_CF ,765,24,31,.5,0,1,%,220556,620556,ff,DC_G_2_CF ,765,24,31,.5,0,1,%,220557,620557,ff,DC_G_3_CF ,765,24,31,.5,0,1,%,220558,620558,ff,DC_G_4_CF ,765,24,39,.05,0,2,,220559,620559,ff,COEF_W_1_CF ,765,24,39,.05,0,2,,22055A,62055A,ff,COEF_W_2_CF ,765,24,39,.05,0,2,,22055B,62055B,ff,COEF_W_3_CF ,765,24,39,.05,0,2,,22055C,62055C,ff,COEF_W_4_CF ,765,24,39,.05,0,2,,22055D,62055D,ff,COEF_G_4_CF ,765,24,39,.05,0,2,,22055E,62055E,ff,COEF_G_3_CF ,765,24,39,.05,0,2,,22055F,62055F,ff,COEF_G_2_CF ,765,24,39,.05,0,2,,220560,620560,ff,COEF_G_1_CF ,765,24,31,10,0,0,ms,220561,620561,ff,T1_W_CF ,765,24,31,10,0,0,ms,220562,620562,ff,T2_W_CF ,765,24,31,10,0,0,ms,220563,620563,ff,T3_W_CF ,765,24,31,10,0,0,ms,220564,620564,ff,T4_W_CF ,765,24,31,10,0,0,ms,220565,620565,ff,T4_G_CF ,765,24,31,10,0,0,ms,220566,620566,ff,T3_G_CF ,765,24,31,10,0,0,ms,220567,620567,ff,T2_G_CF ,765,24,31,10,0,0,ms,220568,620568,ff,T1_G_CF ,765,24,31,1,0,0,,220569,620569,ff,POWERDRIVED_INDEX_CF.0 ,765,32,39,1,0,0,,220569,620569,ff,POWERDRIVED_INDEX_CF.1 ,765,40,47,1,0,0,,220569,620569,ff,POWERDRIVED_INDEX_CF.2 ,765,48,55,1,0,0,,220569,620569,ff,POWERDRIVED_INDEX_CF.3 ,765,56,63,1,0,0,,220569,620569,ff,POWERDRIVED_INDEX_CF.4 ,765,64,71,1,0,0,,220569,620569,ff,POWERDRIVED_INDEX_CF.5 ,765,72,79,1,0,0,,220569,620569,ff,POWERDRIVED_INDEX_CF.6 ,765,80,87,1,0,0,,220569,620569,ff,POWERDRIVED_INDEX_CF.7 ,765,88,95,1,0,0,,220569,620569,ff,POWERDRIVED_INDEX_CF.8 ,765,96,103,1,0,0,,220569,620569,ff,POWERDRIVED_INDEX_CF.9 ,765,24,31,100,0,0,W,22056A,62056A,ff,POWERDRIVED_OUT_CF.0 ,765,32,39,100,0,0,W,22056A,62056A,ff,POWERDRIVED_OUT_CF.1 ,765,40,47,100,0,0,W,22056A,62056A,ff,POWERDRIVED_OUT_CF.2 ,765,48,55,100,0,0,W,22056A,62056A,ff,POWERDRIVED_OUT_CF.3 ,765,56,63,100,0,0,W,22056A,62056A,ff,POWERDRIVED_OUT_CF.4 ,765,64,71,100,0,0,W,22056A,62056A,ff,POWERDRIVED_OUT_CF.5 ,765,72,79,100,0,0,W,22056A,62056A,ff,POWERDRIVED_OUT_CF.6 ,765,80,87,100,0,0,W,22056A,62056A,ff,POWERDRIVED_OUT_CF.7 ,765,88,95,100,0,0,W,22056A,62056A,ff,POWERDRIVED_OUT_CF.8 ,765,96,103,100,0,0,W,22056A,62056A,ff,POWERDRIVED_OUT_CF.9 ,765,25,25,1,0,0,,221001,621001,ff,ABSENT_CARD_WARNING_CF,1:true;0:false ,765,28,28,1,0,0,,221001,621001,ff,ALARM_VISUAL_FEEDBACK_CF,1:true;0:false ,765,29,29,1,0,0,,221001,621001,ff,ALWS_CDL_ACTIV_FB_FLASHERS_CF,1:true;0:false ,765,30,30,1,0,0,,221001,621001,ff,AMBIENT_LIGHT_FORCED_BY_DAY_CF,1:true;0:false ,765,31,31,1,0,0,,221001,621001,ff,AT_CF,1:true;0:false ,765,32,32,1,0,0,,221001,621001,ff,AUTO_ACC_DOOR_OPEN_CF,1:true;0:false ,765,33,33,1,0,0,,221001,621001,ff,AUTO_LOCK_WITH_SPEED_OR_PRANGE_CF,1:true;0:false ,765,34,34,1,0,0,,221001,621001,ff,AUTO_RELOCK_ACTIVATION_INITIAL_CF,1:true;0:false ,765,35,35,1,0,0,,221001,621001,ff,AUTO_RELOCK_BY_TIMEOUT_CF,1:true;0:false ,765,36,36,1,0,0,,221001,621001,ff,AUTO_UNLOCK_CF,1:true;0:false ,765,37,37,1,0,0,,221001,621001,ff,AUTO_WIPE_CF,1:true;0:false ,765,38,38,1,0,0,,221001,621001,ff,AUTOSET_SUPPORT_CF,1:true;0:false ,765,39,39,1,0,0,,221001,621001,ff,BACKDOOR_OR_TRUNK_INSIDE_OPENER_SW_CF,1:true;0:false ,765,40,40,1,0,0,,221001,621001,ff,TECHNICAL_WAKEUP_FULL_CF,1:true;0:false ,765,41,41,1,0,0,,221001,621001,ff,BATTERY_TAMPER_DETECTION_CF,1:true;0:false ,765,42,42,1,0,0,,221001,621001,ff,WITH_SHIFT_LOCK_RES_CF,1:true;0:false ,765,43,43,1,0,0,,221001,621001,ff,EPB_ECU_CF,1:true;0:false ,765,44,44,1,0,0,,221001,621001,ff,BRAKE_FAIL1_DETECTION_CF,1:true;0:false ,765,45,45,1,0,0,,221001,621001,ff,BRAKE_FAIL2_DETECTION_CF,1:true;0:false ,765,46,46,1,0,0,,221001,621001,ff,BUZZER_AT_TRUNK_OPENING_CF,1:true;0:false ,765,47,47,1,0,0,,221001,621001,ff,CDL_BACKUP_LOCK_CF,1:true;0:false ,765,48,48,1,0,0,,221001,621001,ff,CENTRAL_CONTROL_BY_HANDFREE_CF,1:true;0:false ,765,49,49,1,0,0,,221001,621001,ff,CHILD_LOCK_CF,1:true;0:false ,765,50,50,1,0,0,,221001,621001,ff,RES_US_CF,0:false;1:true ,765,51,51,1,0,0,,221001,621001,ff,CID_EXT_MEM_CF,1:true;0:false ,765,52,52,1,0,0,,221001,621001,ff,DEFAULT_AREA1_CF,1:true;0:false ,765,53,53,1,0,0,,221001,621001,ff,DEFAULT_AREA2_CF,1:true;0:false ,765,54,54,1,0,0,,221001,621001,ff,DEFAULT_AREA3_CF,1:true;0:false ,765,55,55,1,0,0,,221001,621001,ff,DEFAULT_PATTERN_ACTIVATION_CF,1:true;0:false ,765,56,56,1,0,0,,221001,621001,ff,DELIVERY_MODE_LEVEL1_DIAG_S,1:true;0:false ,765,57,57,1,0,0,,221001,621001,ff,DOUBLE_OVERRIDE_CF,1:true;0:false ,765,58,58,1,0,0,,221001,621001,ff,DRIVER_ON_RIGHT_HAND_SIDE_CF,1:true;0:false ,765,59,59,1,0,0,,221001,621001,ff,DRIVER_SEAT_BELT_CF,1:true;0:false ,765,60,60,1,0,0,,221001,621001,ff,DRIVER_WL_SWITCH_ECU_LIN_CF,1:true;0:false ,765,61,61,1,0,0,,221001,621001,ff,DRL_ACTIVE_CF,1:true;0:false ,765,62,62,1,0,0,,221001,621001,ff,E_B_REAR_FOG_WITHOUT_PWM_1_CF,1:true;0:false ,765,63,63,1,0,0,,221001,621001,ff,E_B_STOP_WITHOUT_PWM_1_CF,1:true;0:false ,765,64,64,1,0,0,,221001,621001,ff,E_B_STOP_WITHOUT_PWM_2_CF,1:true;0:false ,765,65,65,1,0,0,,221001,621001,ff,EASYFILL_CONFIG_CF,1:true;0:false ,765,66,66,1,0,0,,221001,621001,ff,ELECTRICAL_VEH_CF,1:true;0:false ,765,67,67,1,0,0,,221001,621001,ff,MONOSTABLE_SHIFTER_PARK_CF,1:true;0:false ,765,68,68,1,0,0,,221001,621001,ff,FAT_LOGIC_FOR_4WD_CF,1:true;0:false ,765,69,69,1,0,0,,221001,621001,ff,FOLLOW_ME_HOME_CF,1:true;0:false ,765,70,70,1,0,0,,221001,621001,ff,FR_FOG_SW_TYPE_CF,1:true;0:false ,765,71,71,1,0,0,,221001,621001,ff,FR_RR_DROP_WIPE_CF,1:true;0:false ,765,72,72,1,0,0,,221001,621001,ff,FRONT_DRIVER_WL_ECU_LIN_CF,1:true;0:false ,765,73,73,1,0,0,,221001,621001,ff,FRONT_FLASHERS_WITH_BULB_CF,1:true;0:false ,765,74,74,1,0,0,,221001,621001,ff,FRONT_PASSENGER_WL_ECU_LIN_CF,1:true;0:false ,765,75,75,1,0,0,,221001,621001,ff,FRONT_REAR_DIFFERENT_PRESS_CF,1:true;0:false ,765,76,76,1,0,0,,221001,621001,ff,GAWL_PERMANENTLY_CONDITION_CF,1:true;0:false ,765,77,77,1,0,0,,221001,621001,ff,HAZARD_WITH_CRASH_CF,1:true;0:false ,765,78,78,1,0,0,,221001,621001,ff,HF_START_CAR_SECURED_ACTIV_CF,1:true;0:false ,765,79,79,1,0,0,,221001,621001,ff,HIGH_TO_LOW_TO_INT_CF,1:true;0:false ,765,80,80,1,0,0,,221001,621001,ff,HOOD_OPEN_DETECTION_CF,1:true;0:false ,765,81,81,1,0,0,,221001,621001,ff,HORN_BEEP_AT_LOCK_CF,1:true;0:false ,765,82,82,1,0,0,,221001,621001,ff,IGN_SAVER_DISP_AUTH_CF,1:true;0:false ,765,83,83,1,0,0,,221001,621001,ff,IMMO_OFFBOARD_PAIRING_CF,1:true;0:false ,765,84,84,1,0,0,,221001,621001,ff,INFOCLUTCH_DIAG_END_DYN_CF,1:true;0:false ,765,85,85,1,0,0,,221001,621001,ff,INFOCLUTCH_DIAG_END_STATIC_CF,1:true;0:false ,765,86,86,1,0,0,,221001,621001,ff,INFOCLUTCH_DIAG_START_DYN_CF,1:true;0:false ,765,87,87,1,0,0,,221001,621001,ff,INFOCLUTCH_DIAG_START_STATIC_CF,1:true;0:false ,765,88,88,1,0,0,,221001,621001,ff,INTERIOR_LIGHTS_CF,1:true;0:false ,765,89,89,1,0,0,,221001,621001,ff,KAZASHI_DEPORTED_CF,1:true;0:false ,765,90,90,1,0,0,,221001,621001,ff,CHARGE_CALENDARS_CF,1:true;0:false ,765,91,91,1,0,0,,221001,621001,ff,KEY_REMINDER_WARNING_CF,1:true;0:false ,765,92,92,1,0,0,,221001,621001,ff,KEYLOCK_MMI_CF,1:true;0:false ,765,93,93,1,0,0,,221001,621001,ff,LIGHT_PACKAGE_AMBIENCE_CF,1:true;0:false ,765,94,94,1,0,0,,221001,621001,ff,LOCK_CRYPTO_PAGE_CF,1:true;0:false ,765,95,95,1,0,0,,221001,621001,ff,LOCK_KNOB_CF,1:true;0:false ,765,96,96,1,0,0,,221001,621001,ff,REAR_SEAT_ALERT_CF,1:true;0:false ,765,97,97,1,0,0,,221001,621001,ff,LONG_PUSH_IGN_SAVER_CF,1:true;0:false ,765,98,98,1,0,0,,221001,621001,ff,LONG_TEMPO_DISPLAY_CF,1:true;0:false ,765,99,99,1,0,0,,221001,621001,ff,MANUAL_SHIFT_LEVER_CF,1:true;0:false ,765,100,100,1,0,0,,221001,621001,ff,MANUAL_SHIFT_PADDLE_CF,1:true;0:false ,765,101,101,1,0,0,,221001,621001,ff,MEX_LIGHT_CF,1:true;0:false ,765,102,102,1,0,0,,221001,621001,ff,MODE_APP_CF,1:true;0:false ,765,103,103,1,0,0,,221001,621001,ff,NO_LIMITED_CF,1:true;0:false ,765,104,104,1,0,0,,221001,621001,ff,OPENABLE_ROOF_CF,1:true;0:false ,765,105,105,1,0,0,,221001,621001,ff,OVERDRIVE_MODE_CF,1:true;0:false ,765,106,106,1,0,0,,221001,621001,ff,OVERLOAD_BY_SMART_CF,1:true;0:false ,765,107,107,1,0,0,,221001,621001,ff,PASSENGERS_WL_INHIB_BY_RELAY_CF,1:true;0:false ,765,108,108,1,0,0,,221001,621001,ff,PERIMETRIC_ALARM_CF,1:true;0:false ,765,109,109,1,0,0,,221001,621001,ff,PLANT_START_SEQ_INHIBITION_CF,1:true;0:false ,765,110,110,1,0,0,,221001,621001,ff,POWER_BACK_DOOR_CF,1:true;0:false ,765,111,111,1,0,0,,221001,621001,ff,ALERT_PAUZE_ASSIST_DOOR_CF,1:true;0:false ,765,112,112,1,0,0,,221001,621001,ff,PTC_RELAY1_CF.0,1:true;0:false ,765,113,113,1,0,0,,221001,621001,ff,PTC_RELAY1_CF.1,1:true;0:false ,765,114,114,1,0,0,,221001,621001,ff,PTC_RELAY1_CF.2,1:true;0:false ,765,115,115,1,0,0,,221001,621001,ff,PTC_RELAY1_CF.3,1:true;0:false ,765,116,116,1,0,0,,221001,621001,ff,PTC_RELAY1_CF.4,1:true;0:false ,765,117,117,1,0,0,,221001,621001,ff,PTC_RELAY1_CF.5,1:true;0:false ,765,118,118,1,0,0,,221001,621001,ff,PTC_RELAY1_CF.6,1:true;0:false ,765,119,119,1,0,0,,221001,621001,ff,PTC_RELAY1_CF.7,1:true;0:false ,765,120,120,1,0,0,,221001,621001,ff,PTC_RELAY1_CF.8,1:true;0:false ,765,121,121,1,0,0,,221001,621001,ff,PTC_RELAY1_CF.9,1:true;0:false ,765,122,122,1,0,0,,221001,621001,ff,PTC_RELAY2_CF.0,1:true;0:false ,765,123,123,1,0,0,,221001,621001,ff,PTC_RELAY2_CF.1,1:true;0:false ,765,124,124,1,0,0,,221001,621001,ff,PTC_RELAY2_CF.2,1:true;0:false ,765,125,125,1,0,0,,221001,621001,ff,PTC_RELAY2_CF.3,1:true;0:false ,765,126,126,1,0,0,,221001,621001,ff,PTC_RELAY2_CF.4,1:true;0:false ,765,127,127,1,0,0,,221001,621001,ff,PTC_RELAY2_CF.5,1:true;0:false ,765,128,128,1,0,0,,221001,621001,ff,PTC_RELAY2_CF.6,1:true;0:false ,765,129,129,1,0,0,,221001,621001,ff,PTC_RELAY2_CF.7,1:true;0:false ,765,130,130,1,0,0,,221001,621001,ff,PTC_RELAY2_CF.8,1:true;0:false ,765,131,131,1,0,0,,221001,621001,ff,PTC_RELAY2_CF.9,1:true;0:false ,765,132,132,1,0,0,,221001,621001,ff,PTC_RELAY3_CF.0,1:true;0:false ,765,133,133,1,0,0,,221001,621001,ff,PTC_RELAY3_CF.1,1:true;0:false ,765,134,134,1,0,0,,221001,621001,ff,PTC_RELAY3_CF.2,1:true;0:false ,765,135,135,1,0,0,,221001,621001,ff,PTC_RELAY3_CF.3,1:true;0:false ,765,136,136,1,0,0,,221001,621001,ff,PTC_RELAY3_CF.4,1:true;0:false ,765,137,137,1,0,0,,221001,621001,ff,PTC_RELAY3_CF.5,1:true;0:false ,765,138,138,1,0,0,,221001,621001,ff,PTC_RELAY3_CF.6,1:true;0:false ,765,139,139,1,0,0,,221001,621001,ff,PTC_RELAY3_CF.7,1:true;0:false ,765,140,140,1,0,0,,221001,621001,ff,PTC_RELAY3_CF.8,1:true;0:false ,765,141,141,1,0,0,,221001,621001,ff,PTC_RELAY3_CF.9,1:true;0:false ,765,142,142,1,0,0,,221001,621001,ff,REAR_FLASHERS_WITH_BULB_CF,1:true;0:false ,765,143,143,1,0,0,,221001,621001,ff,REAR_PASSENGERS_WL_ECU_LIN_CF,1:true;0:false ,765,144,144,1,0,0,,221001,621001,ff,REAR_WIPER_CF,1:true;0:false ,765,145,145,1,0,0,,221001,621001,ff,REAR_WIPER_GND_CF,1:true;0:false ,765,147,147,1,0,0,,221001,621001,ff,REAR_WIPING_WITH_AF_CF,1:true;0:false ,765,148,148,1,0,0,,221001,621001,ff,REF_TEMP_SET_CF,1:true;0:false ,765,149,149,1,0,0,,221001,621001,ff,REMOTE_LIGHTING_CF,1:true;0:false ,765,150,150,1,0,0,,221001,621001,ff,RES_FLASHERS_FEEDBACK_CF,1:true;0:false ,765,151,151,1,0,0,,221001,621001,ff,RES_VOLUMETRIC_CANCEL_CF,1:true;0:false ,765,152,152,1,0,0,,221001,621001,ff,RKE_BACKDOOR_OR_TRUNK_OPENING_CF,1:true;0:false ,765,153,153,1,0,0,,221001,621001,ff,RKE_BACKDOOR_UNLOCK_CF,1:true;0:false ,765,154,154,1,0,0,,221001,621001,ff,RKE_ENABLE_IGN_ON_CF,1:true;0:false ,765,155,155,1,0,0,,221001,621001,ff,RR_FOG_LAMP_CF,1:true;0:false ,765,156,156,1,0,0,,221001,621001,ff,RTL_DOOR_OPEN_CDL_LOCK_IGN_OFF_CF,1:true;0:false ,765,157,157,1,0,0,,221001,621001,ff,RTL_DOOR_OPEN_RKE_LOCK_CF,1:true;0:false ,765,158,158,1,0,0,,221001,621001,ff,RTL_EXTERNAL_LOCK_FEEDBACK_TYPE_CF,1:true;0:false ,765,159,159,1,0,0,,221001,621001,ff,RTL_PASS_DOOR_OPEN_HANDFREE_LOCK_CF,1:true;0:false ,765,160,160,1,0,0,,221001,621001,ff,RTL_WITH_CDL_FEEDBACK_TYPE_CF,1:true;0:false ,765,161,161,1,0,0,,221001,621001,ff,SCANDINAVIAN_RUNNING_LIGHT_CF,1:true;0:false ,765,162,162,1,0,0,,221001,621001,ff,SDO_ACTIVATION_INITIAL_CF,1:true;0:false ,765,163,163,1,0,0,,221001,621001,ff,SELECTOR_CDL_CF,1:true;0:false ,765,164,164,1,0,0,,221001,621001,ff,SERVICE_POSITION_CF,1:true;0:false ,765,165,165,1,0,0,,221001,621001,ff,SILENT_MODE_ACTIVATION_INITIAL_CF,1:true;0:false ,765,166,166,1,0,0,,221001,621001,ff,SILENT_MODE_CF,1:true;0:false ,765,167,167,1,0,0,,221001,621001,ff,SINGLE_DOOR_OPENING_CF,1:true;0:false ,765,169,169,1,0,0,,221001,621001,ff,STOP_AND_START_CF,1:true;0:false ,765,170,170,1,0,0,,221001,621001,ff,SUNROOF_ECU_LIN_CF,1:true;0:false ,765,171,171,1,0,0,,221001,621001,ff,SUNSHADE_ECU_LIN_CF,1:true;0:false ,765,172,172,1,0,0,,221001,621001,ff,SUPERLOCK_HANDSFREE_CF,1:true;0:false ,765,173,173,1,0,0,,221001,621001,ff,SUPERLOCK_RKE_CF,1:true;0:false ,765,174,174,1,0,0,,221001,621001,ff,T_PULSE_CF,1:true;0:false ,765,175,175,1,0,0,,221001,621001,ff,TAILLAMP_FOR_AUTOACC_CF,1:true;0:false ,765,176,176,1,0,0,,221001,621001,ff,TPMS_CAN_ATMO_PRESS_SENSOR_CF,1:true;0:false ,765,177,177,1,0,0,,221001,621001,ff,TPMS_CF,1:true;0:false ,765,178,178,1,0,0,,221001,621001,ff,TPMS_DEBUG_CF,1:true;0:false ,765,179,179,1,0,0,,221001,621001,ff,TPMS_MISSING_SENSOR_ENABLE_CF,1:true;0:false ,765,180,180,1,0,0,,221001,621001,ff,TPMS_MMI_PRIO_SETTING_CF,1:true;0:false ,765,181,181,1,0,0,,221001,621001,ff,TPMS_NORMAL_PRESS_THRLD_TYPE_CF,1:true;0:false ,765,182,182,1,0,0,,221001,621001,ff,TPMS_ON_OFF_CUSTOMIZE_CF,1:true;0:false ,765,183,183,1,0,0,,221001,621001,ff,TPMS_TRANSFER_MODE_CF,1:true;0:false ,765,184,184,1,0,0,,221001,621001,ff,TPMS_WUIDREG_FLASHER_CF,1:true;0:false ,765,185,185,1,0,0,,221001,621001,ff,RES_PRESOAK_CALENDARS_CF,1:true;0:false ,765,186,186,1,0,0,,221001,621001,ff,ALERT_PAUZE_BACK_DOOR_CF,1:true;0:false ,765,187,187,1,0,0,,221001,621001,ff,TRUNK_CANCEL_SW_CF,1:true;0:false ,765,188,188,1,0,0,,221001,621001,ff,TRUNK_SEPARATED_MNGT_CF,1:true;0:false ,765,189,189,1,0,0,,221001,621001,ff,TRUNK_UNLOCK_LOGIC_CF,1:true;0:false ,765,190,190,1,0,0,,221001,621001,ff,TWILIGHT_ON_CUST_CF,1:true;0:false ,765,192,192,1,0,0,,221001,621001,ff,VOL_LONG_LOCK_ENABLE_CF,1:true;0:false ,765,193,193,1,0,0,,221001,621001,ff,VOLUMETRIC_ALARM_CF,1:true;0:false ,765,194,194,1,0,0,,221001,621001,ff,WELCOME_WITH_COE_CF,1:true;0:false ,765,195,195,1,0,0,,221001,621001,ff,WELCOME_WITH_PUDDLE_CF_S,1:true;0:false ,765,196,196,1,0,0,,221001,621001,ff,WIPER_LINKED_AUTO_LIGHT_CF,1:true;0:false ,765,197,197,1,0,0,,221001,621001,ff,WIPER_WITH_SPEED_CF,1:true;0:false ,765,198,198,1,0,0,,221001,621001,ff,ALERT_PAUZE_DRIVER_DOOR_CF,1:true;0:false ,765,199,199,1,0,0,,221001,621001,ff,REMOTELIGHT_PHONE_DISPLAY_CF,1:true;0:false ,765,200,200,1,0,0,,221001,621001,ff,SET_OFF_IGN_BY_CHANGE_DOORS_CF,1:true;0:false ,765,201,201,1,0,0,,221001,621001,ff,WITH_RES_RKE_CF,1:true;0:false ,765,202,202,1,0,0,,221001,621001,ff,ABSENT_CARD_EXTERNAL_JINGLE_CF,1:true;0:false ,765,203,203,1,0,0,,221001,621001,ff,IGN_PERMANENT_MMI_CF,1:true;0:false ,765,204,204,1,0,0,,221001,621001,ff,WITH_RES_TIMER_2H_CF,1:true;0:false ,765,207,207,1,0,0,,221001,621001,ff,WL_AUTHORIZATION_BY_RELAY_CF,1:true;0:false ,765,208,215,1,0,0,,221001,621001,ff,AMBIENT_BRIGHT_CF,0:AMBIENT_BRIGHT_OFF;1:AMBIENT_BRIGHT_STEP_1;2:AMBIENT_BRIGHT_STEP_2;3:AMBIENT_BRIGHT_STEP_3;4:AMBIENT_BRIGHT_STEP_4;5:AMBIENT_BRIGHT_STEP_5 ,765,216,223,1,0,0,time,221001,621001,ff,ABS_CARD_WARNING_POLLING_CF ,765,224,231,.05,0,2,-,221001,621001,ff,ALTERNATORLOAD_PULLEY_RATIO_CF ,765,232,239,.5,0,1,%,221001,621001,ff,ALTERNATORLOAD_SETTING_CF ,765,240,247,1,0,0,km/h,221001,621001,ff,ALWS_SPEED_THRESH_CF ,765,256,263,1,0,0,%,221001,621001,ff,AMBIENT_RUN_CLOSE_PWM_CF ,765,264,271,1,0,0,%,221001,621001,ff,AMBIENT_RUN_OPEN_PWM_CF ,765,272,279,1,0,0,%,221001,621001,ff,AMBIENT_STOP_OPEN_PWM_CF ,765,280,287,1,0,0,%,221001,621001,ff,AMBIENT_TMP_PWM_CF ,765,288,295,1,0,0,%,221001,621001,ff,AMBIENT_WELCOME_PWM_CF ,765,296,303,1,-1,0,,221001,621001,ff,ANTI_LIFT_SENSOR_TUNING_CF ,765,304,311,1,0,0,,221001,621001,ff,AREA_CF,0:AREA_EUROPE;2:AREA_JAPAN;1:AREA_US_CANADA ,765,312,319,1,0,0,,221001,621001,ff,AUTO_FOLDING_ACTIVATION_CF,0:AUTO_FOLDING_ACTIVATION_NOT_USE;1:AUTO_FOLDING_ACTIVATION_DISABLE;2:AUTO_FOLDING_ACTIVATION_IGN;3:AUTO_FOLDING_ACTIVATION_UNLOCK ,765,320,327,1,0,0,,221001,621001,ff,AUTO_LIGHT_CF,0:ALS_DEACTIVATED;1:ALS_WITH_RLS;2:ALS_WITH_ANALOG_SENSOR ,765,328,335,1,0,0,,221001,621001,ff,AUTO_LIGHT_TIMING_USER_CF,0:ALTU_VARIATION_1;1:ALTU_VARIATION_2;2:ALTU_VARIATION_3;3:ALTU_VARIATION_4 ,765,336,343,1,0,0,,221001,621001,ff,AUTO_LIGHT_TYPE_CF,0:ALT_WITHOUT_AUTO_LIGHT;1:ALT_WITH_AUTO_LIGHT_WO_ENHANCED;2:ALT_WITH_AUTO_LIGHT_WITH_ENHANCED;3:ALT_RESERVED ,765,344,351,1,0,0,,221001,621001,ff,AUTO_LOCK_ACTIVATION_INITIAL_CF ,765,352,359,1,0,0,,221001,621001,ff,AUTO_UNLOCK_ACTIVATION_INITIAL_CF ,765,360,367,1,0,0,,221001,621001,ff,AUTOFMH_ACTIVATION_CF,0:AUTOFMH_ACTIVATED;1:AUTOFMH_DEACTIVATED ,765,368,375,1,0,0,,221001,621001,ff,AUTOFMH_DURATION_USER_TM_CF,0:AUTOFMH_D1;1:AUTOFMH_D2;2:AUTOFMH_D3;3:AUTOFMH_D4;4:AUTOFMH_D5;5:AUTOFMH_D6;6:AUTOFMH_D7;7:AUTOFMH_STATE_NOT_USED_1 ,765,376,383,1,0,0,,221001,621001,ff,AUTOLOCK_OFF_PATTERN_CF ,765,384,391,1,0,0,,221001,621001,ff,AUTOLOCK_ON_PATTERN_CF ,765,392,399,10,0,0,ms,221001,621001,ff,BACKDOOR_OR_TRUNK_RELEASE_TM_CF ,765,400,407,1,0,0,-,221001,621001,ff,BLOCK_N_OF_IDREG_FOR_NEW_ID_CF ,765,408,415,1,0,0,-,221001,621001,ff,BLOCK_N_OF_IDREG_FOR_PRE_ID_CF ,765,416,431,10,0,0,ms,221001,621001,ff,AUTO_PARK_DELAY_TM_CF ,765,432,432,1,0,0,,221001,621001,ff,RISED_UP_CF,1:true;0:false ,765,440,447,1,0,0,,221001,621001,ff,RKE_BUZZER_LOCK_CF ,765,448,455,1,0,0,,221001,621001,ff,RKE_BUZZER_UNLOCK_CF ,765,456,471,10,0,0,ms,221001,621001,ff,DELAYED_L3_OFF_TM_CF ,765,480,487,1,0,0,%,221001,621001,ff,C3D_PWM_LIGHTING_SYSTEM_Y_CF.0 ,765,488,495,1,0,0,%,221001,621001,ff,C3D_PWM_LIGHTING_SYSTEM_Y_CF.1 ,765,496,503,1,0,0,%,221001,621001,ff,C3D_PWM_LIGHTING_SYSTEM_Y_CF.2 ,765,504,511,1,0,0,%,221001,621001,ff,C3D_PWM_LIGHTING_SYSTEM_Y_CF.3 ,765,512,519,1,0,0,%,221001,621001,ff,CDL_DAYTIME_LED_DUTY_CYCLE_CF ,765,520,527,1,0,0,%,221001,621001,ff,CDL_NIGHTTIME_LED_DUTY_CYCLE_CF ,765,528,535,1,0,0,,221001,621001,ff,CENTRAL_CONTROL_RKE_TRIGGER_CF,0:CENTRAL_CLOSE_RKE_TRIG_LONG_PUSH;1:CENTRAL_CLOSE_RKE_TRIG_DOUBLE_PUSH ,765,536,543,10,0,0,ms,221001,621001,ff,CLUTCH_DELAY_TM_CF ,765,544,551,.01,0,2,-,221001,621001,ff,CORRECTING_INT_TIME_CF.0 ,765,552,559,.01,0,2,-,221001,621001,ff,CORRECTING_INT_TIME_CF.1 ,765,560,567,.01,0,2,-,221001,621001,ff,CORRECTING_INT_TIME_CF.2 ,765,568,575,.01,0,2,-,221001,621001,ff,CORRECTING_INT_TIME_CF.3 ,765,576,583,1,0,0,,221001,621001,ff,CRASH_DETECTION_CF ,765,584,591,1,0,0,-,221001,621001,ff,CUSTOMER_ACTION_MAX_CF ,765,592,599,.5,0,1,%,221001,621001,ff,DC_G_1_CF ,765,600,607,.5,0,1,%,221001,621001,ff,DC_G_2_CF ,765,608,615,.5,0,1,%,221001,621001,ff,DC_G_3_CF ,765,616,623,.5,0,1,%,221001,621001,ff,DC_G_4_CF ,765,624,631,.5,0,1,%,221001,621001,ff,DC_G_INITIAL_CF ,765,632,639,.5,0,1,%,221001,621001,ff,DC_W_1_CF ,765,640,647,.5,0,1,%,221001,621001,ff,DC_W_2_CF ,765,648,655,.5,0,1,%,221001,621001,ff,DC_W_3_CF ,765,656,663,.5,0,1,%,221001,621001,ff,DC_W_4_CF ,765,664,671,.5,0,1,%,221001,621001,ff,DC_W_INITIAL_CF ,765,672,679,1,0,0,,221001,621001,ff,DEFAULT_COLOR_CF,0:AMBI_LIGHT_COLOR_UNAVAILABLE;1:AMBI_LIGHT_STATUS_COLOR_1;2:AMBI_LIGHT_STATUS_COLOR_2;3:AMBI_LIGHT_STATUS_COLOR_3;4:AMBI_LIGHT_STATUS_COLOR_4;5:AMBI_LIGHT_STATUS_COLOR_5;6:AMBI_LIGHT_STATUS_COLOR_6;7:AMBI_LIGHT_STATUS_COLOR_7;8:AMBI_LIGHT_STATUS_COLOR_8;9:AMBI_LIGHT_STATUS_COLOR_9;10:AMBI_LIGHT_STATUS_COLOR_10;11:AMBI_LIGHT_STATUS_COLOR_11;12:AMBI_LIGHT_STATUS_COLOR_12;13:AMBI_LIGHT_STATUS_COLOR_13;14:AMBI_LIGHT_STATUS_COLOR_14;15:AMBI_LIGHT_STATUS_COLOR_15 ,765,680,687,1,0,0,,221001,621001,ff,DEFAULT_DAYINTENSITY_CF ,765,688,695,1,0,0,,221001,621001,ff,DEFAULT_NIGHTINTENSITY_CF ,765,696,703,10,0,0,ms,221001,621001,ff,DELAY_AUTOACC_TM_CF ,765,712,719,1,0,0,km/h,221001,621001,ff,DOOR_WARNING_SPEED_THRESH_CF ,765,720,727,10,0,0,ms,221001,621001,ff,DOORLOCK_ACTUATORS_TM_CF ,765,736,743,1,0,0,,221001,621001,ff,DYNAMIC_PATTERN_CF,0:DYNAMIC_PATTERN_OFF;1:DYNAMIC_PATTERN_FIXED;2:DYNAMIC_PATTERN_1;3:DYNAMIC_PATTERN_2;4:DYNAMIC_PATTERN_3;5:DYNAMIC_PATTERN_UNUSED_5;6:DYNAMIC_PATTERN_UNUSED_6;7:DYNAMIC_PATTERN_UNUSED_7 ,765,744,751,1,0,0,,221001,621001,ff,EASY_TRUNK_ACCESS_ECU_CF,0:ETA_NOT_CONFIGURED;1:ETA_CONFIGURED_WITH_CAD;2:ETA_CONFIGURED_WITHOUT_CAD ,765,752,759,7.5,0,0,mBar,221001,621001,ff,EASYFILL_HI_PRESS_THRLD_CF ,765,760,767,7.5,0,0,mBar,221001,621001,ff,EASYFILL_REF_PRESS_RANGE_CF ,765,768,775,1,0,0,,221001,621001,ff,ECO_SW_TYPE_CF,0:NO_BUTTON_SW1;1:ECO_BUTTON_SW1;2:SPORT_BUTTON_SW1;3:TRI_MODE_BUTTON_SW1;4:MEX_BUTTON_SW1;5:RENAULT_SPORT_BUTTON_SW1 ,765,776,783,100,0,0,W,221001,621001,ff,ELECTRICAL_POWER_ASSIST_CF ,765,784,791,100,0,0,W,221001,621001,ff,ELECTRICAL_POWER_DRIVER_CF ,765,792,799,100,0,0,W,221001,621001,ff,ELECTRICAL_POWER_REAR_CF ,765,800,807,1,0,0,,221001,621001,ff,ELECTRONIC_WIPING_MOTORS_CF,0:NO_ELECTRONIC_WIPING_MOTORS;1:MONO_ELECTRONIC_WIPING_MOTORS;2:DUAL_ELECTRONIC_WIPING_MOTORS ,765,808,815,1,0,0,km/h,221001,621001,ff,ENGINE_STOPPED_SPEED_THRESH_CF ,765,816,823,1,0,0,,221001,621001,ff,ETA_BUMPER_CF,0:ETA_BUMPER_0;1:ETA_BUMPER_1;2:ETA_BUMPER_2;3:ETA_BUMPER_3;4:ETA_BUMPER_4;5:ETA_BUMPER_5;6:ETA_BUMPER_6;7:ETA_BUMPER_7;8:ETA_BUMPER_8;9:ETA_BUMPER_9;10:ETA_BUMPER_10;11:ETA_BUMPER_11;12:ETA_BUMPER_12;13:ETA_BUMPER_13;14:ETA_BUMPER_14;15:ETA_BUMPER_15 ,765,824,831,1,0,0,lux,221001,621001,ff,FILTER_STEP_CF ,765,832,839,1,0,0,,221001,621001,ff,FREQUENCY_1_LIGHTING_SYSTEM_CF,0:FREQUENCY_LIGHTING_SYSTEM_100_HZ;1:FREQUENCY_LIGHTING_SYSTEM_200_HZ ,765,840,847,1,0,0,,221001,621001,ff,FREQUENCY_2_LIGHTING_SYSTEM_CF,0:FREQUENCY_LIGHTING_SYSTEM_100_HZ;1:FREQUENCY_LIGHTING_SYSTEM_200_HZ ,765,848,855,1,0,0,,221001,621001,ff,FREQUENCY_3_LIGHTING_SYSTEM_CF,0:FREQUENCY_LIGHTING_SYSTEM_100_HZ;1:FREQUENCY_LIGHTING_SYSTEM_200_HZ ,765,856,863,1,0,0,km/h,221001,621001,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.0 ,765,864,871,1,0,0,km/h,221001,621001,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.1 ,765,872,879,1,0,0,km/h,221001,621001,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.2 ,765,880,887,1,0,0,km/h,221001,621001,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.3 ,765,888,895,1,0,0,km/h,221001,621001,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.4 ,765,896,903,1,0,0,km/h,221001,621001,ff,FRONT_WIPER_INT_SPEED_THRESH_CF.5 ,765,904,911,1,0,0,time,221001,621001,ff,HEAD_LAMP_CLEAN_CYCLE_N_CF ,765,912,919,1,0,0,%,221001,621001,ff,HIGHALTLOAD_STEP1_CF ,765,920,927,1,0,0,%,221001,621001,ff,HIGHALTLOAD_STEP2_CF ,765,928,935,1,0,0,,221001,621001,ff,IKEY_BUZZER_LOCK_CF ,765,936,943,1,0,0,,221001,621001,ff,IKEY_BUZZER_UNLOCK_CF ,765,944,951,1,0,0,,221001,621001,ff,IMMO_IASS_INDEX_CF ,765,952,959,.005,0,3,-,221001,621001,ff,JUDGMENT_4WD_CF ,765,960,967,.005,0,3,-,221001,621001,ff,JUDGMENT_PRIO1_HIGH_CF ,765,968,975,.005,0,3,-,221001,621001,ff,JUDGMENT_PRIO1_LOW_CF ,765,976,983,.005,0,3,-,221001,621001,ff,JUDGMENT_PRIO2_HIGH_CF ,765,984,991,.005,0,3,-,221001,621001,ff,JUDGMENT_PRIO2_LOW_CF ,765,992,999,.005,0,3,-,221001,621001,ff,JUDGMENT_PRIO3_HIGH_CF ,765,1000,1007,.005,0,3,-,221001,621001,ff,JUDGMENT_PRIO3_LOW_CF ,765,1008,1015,1,0,0,,221001,621001,ff,LCM01_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1016,1023,1,0,0,,221001,621001,ff,LCM02_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1024,1031,1,0,0,,221001,621001,ff,LCM03_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1032,1039,1,0,0,,221001,621001,ff,LCM04_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1040,1047,1,0,0,,221001,621001,ff,LCM05_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1048,1055,1,0,0,,221001,621001,ff,LCM06_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1056,1063,1,0,0,,221001,621001,ff,LCM07_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1064,1071,1,0,0,,221001,621001,ff,LCM08_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1072,1079,1,0,0,,221001,621001,ff,LCM09_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1080,1087,1,0,0,,221001,621001,ff,LCM10_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1088,1095,1,0,0,,221001,621001,ff,LCM11_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1096,1103,1,0,0,,221001,621001,ff,LCM12_CF,0:LCM_DEACTIVATED;1:LCM_IN_AREA_1;2:LCM_IN_AREA_2;3:LCM_IN_AREA_3 ,765,1104,1111,1,0,0,,221001,621001,ff,LIGHT_SENSOR_CF,0:MPU_STATUS_LIGHT_CF_1;1:MPU_STATUS_LIGHT_CF_2;2:MPU_STATUS_LIGHT_CF_3;3:MPU_STATUS_LIGHT_CF_4;4:MPU_STATUS_LIGHT_CF_5;5:MPU_STATUS_LIGHT_CF_6;6:MPU_STATUS_LIGHT_CF_7;7:MPU_STATUS_LIGHT_CF_8;8:MPU_STATUS_LIGHT_CF_9;9:MPU_STATUS_LIGHT_CF_10;10:MPU_STATUS_LIGHT_CF_11;11:MPU_STATUS_LIGHT_CF_12;12:MPU_STATUS_LIGHT_CF_13;13:MPU_STATUS_LIGHT_CF_14;14:MPU_STATUS_LIGHT_CF_15;15:MPU_STATUS_LIGHT_CF_16 ,765,1112,1119,1,0,0,,221001,621001,ff,LIGHTING_CSW_CONFIGURATION_CF,0:LIGHTING_CSW_FOR_EUROPE;1:LIGHTING_CSW_WORLD_WITHOUT_ALS;2:LIGHTING_CSW_WORLD_WITH_ALS ,765,1120,1127,1,0,0,,221001,621001,ff,LOCK_BY_WAC_PATTERN_CF ,765,1128,1135,1,0,0,,221001,621001,ff,LOCK_PATTERN_CF ,765,1136,1143,1,0,0,,221001,621001,ff,LOCK_UNLOCK_VERYLG_PRESS_CF ,765,1144,1151,1,0,0,%,221001,621001,ff,LOWALTLOAD_CF ,765,1152,1159,1,0,0,km/h,221001,621001,ff,MASTER_DOOR_SPEED_THRESH_CF ,765,1160,1167,1,0,0,time,221001,621001,ff,MAX_BREAKING_IN_NUMBER_CF ,765,1168,1175,1,30,0,°C,221001,621001,ff,MAX_TEMP_REF_CF ,765,1176,1183,1,40,0,°C,221001,621001,ff,MAX_TEMPERATURE_RES_TIMER_2H_CF ,765,1184,1191,1,30,0,°C,221001,621001,ff,MIN_TEMP_REF_CF ,765,1192,1199,1,0,0,,221001,621001,ff,MOTORWAY_FLASH_NB_CF,0:ONE_FLASH_PER_CSW_MODE;1:THREE_FLASH_PER_CSW_MODE;3:MOTORWAY_FLASHER_STATUS_NOT_USED;2:FIVE_FLASH_PER_CSW_MODE ,765,1200,1207,1,0,0,-,221001,621001,ff,N_PULSES_JUDG_VEH_DRIVE_CF ,765,1208,1215,1,0,0,-,221001,621001,ff,N_PULSES_JUDG_VEH_STOPPED_CF ,765,1216,1231,10,0,0,ms,221001,621001,ff,RES_START_DELAY_TM_CF ,765,1232,1239,4,0,0,cm,221001,621001,ff,RES_STOP_BY_ODO_THRESH_AT_CF ,765,1552,1583,1,0,0,,221001,621001,4ff,IL_MAINTIENT_LONG_TM_CF ,765,1648,1655,1,0,0,,221001,621001,ff,REAR_TAIL_W_DRL_CF,0:W_NO_REAR_TAIL_BY_DAY;1:W_REAR_TAIL_ON_BY_DAY;2:W_REAR_TAIL_AND_PLATE_ON_BY_DAY ,765,1656,1663,1,0,0,,221001,621001,ff,REF_PRESS_SET_CF,0:REF_PRESSURE_NOT_SUPPORT;1:REF_PRESSURE_BY_SELECTION;2:REF_PRESSURE_BY_SET_LEARN ,765,1664,1671,1,0,0,min,221001,621001,ff,REF_TEMP_AUTOSWITCH_TM_CF ,765,1672,1679,1,0,0,,221001,621001,ff,RES_FEEDBACK_CF,0:WITHOUT_FLASHERS_WITHOUT_TAIL;1:WITH_FLASHERS_WITHOUT_TAIL;2:WITH_FLASHERS_WITH_TAIL;3:WITHOUT_FLASHERS_WITH_TAIL ,765,1680,1687,1,0,0,,221001,621001,ff,AUTO_HEADLAMP_HMI_CF,0:HMI_NISSAN;1:HMI_RENAULT ,765,1688,1695,1,0,0,,221001,621001,ff,RKE_BTN_1_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF;3:RKE_BACKDOOR_OR_TRUNK ,765,1696,1703,1,0,0,,221001,621001,ff,RKE_BTN_2_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF;3:RKE_BACKDOOR_OR_TRUNK ,765,1704,1711,1,0,0,,221001,621001,ff,RKE_BTN_3_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF;3:RKE_BACKDOOR_OR_TRUNK ,765,1712,1719,1,0,0,,221001,621001,ff,RKE_BTN_4_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF;3:RKE_BACKDOOR_OR_TRUNK ,765,1720,1727,1,0,0,,221001,621001,ff,RKE_BTN_5_PRESS_CF,0:RKE_NO_FEATURE;1:RKE_UNLOCK;2:RKE_LOCK;4:RKE_PANIC;5:RKE_PSD_RH;6:RKE_PSD_LH;7:RKE_REMOTE_LIGHTING;8:RKE_RES;9:RKE_ROOF;3:RKE_BACKDOOR_OR_TRUNK ,765,1728,1743,10,0,0,ms,221001,621001,ff,RKE_LOCK_LONG_TM_CF ,765,1744,1759,10,0,0,ms,221001,621001,ff,RKE_PSD_L_LONG_TM_CF ,765,1760,1775,10,0,0,ms,221001,621001,ff,RKE_REMOTE_LIGHT_LONG_TM_CF ,765,1776,1791,10,0,0,ms,221001,621001,ff,RKE_ROOF_LONG_TM_CF ,765,1800,1807,1,0,0,,221001,621001,ff,RTL_DOOR_OPEN_CDL_LOCK_IGN_ON_CF ,765,1808,1815,1,0,0,,221001,621001,ff,SENSOR_RECOGNITION_CF ,765,1816,1823,1,0,0,,221001,621001,ff,SET_IGN_SAVER_TIMER_CF,0:IGN_SAVER_TIMER_DISABLE;1:IGN_SAVER_TIMER_ENABLE ,765,1824,1831,1,0,0,,221001,621001,ff,SILENT_MODE_OFF_PATTERN_CF ,765,1832,1839,1,0,0,,221001,621001,ff,SILENT_MODE_ON_PATTERN_CF ,765,1840,1847,1,0,0,km/h,221001,621001,ff,SPEED_THRESHOLD_FOR_IGN_CF ,765,1848,1855,1,0,0,,221001,621001,ff,SPORT_SW_TYPE_CF,0:NO_BUTTON_SW2;1:SPORT_BUTTON_SW2;2:DRIVE_MODE_UP_SWITCH_SW2 ,765,1856,1863,1,0,0,,221001,621001,ff,START_MODE_CF,0:PREVIOUS_START_MODE;1:NORMAL_START_MODE;2:ECO_START_MODE ,765,1864,1871,1,0,0,,221001,621001,ff,SUPERLOCK_PATTERN_CF ,765,1872,1879,10,0,0,ms,221001,621001,ff,T1_G_CF ,765,1880,1887,10,0,0,ms,221001,621001,ff,T1_W_CF ,765,1888,1895,10,0,0,ms,221001,621001,ff,T2_G_CF ,765,1896,1903,10,0,0,ms,221001,621001,ff,T2_W_CF ,765,1904,1911,10,0,0,ms,221001,621001,ff,T3_G_CF ,765,1912,1919,10,0,0,ms,221001,621001,ff,T3_W_CF ,765,1920,1927,10,0,0,ms,221001,621001,ff,T4_G_CF ,765,1928,1935,10,0,0,ms,221001,621001,ff,T4_W_CF ,765,1936,1943,1,0,0,,221001,621001,ff,TEACHIN_CF,0:TEACHIN_MODE_OFF;1:TEACHIN_MODE_ON;2:TEACHIN_READING_MODE_ON ,765,1944,1951,1,0,0,,221001,621001,ff,THPNBTHERMALREQUEST_CF.0 ,765,1952,1959,1,0,0,,221001,621001,ff,THPNBTHERMALREQUEST_CF.1 ,765,1960,1967,1,0,0,,221001,621001,ff,THPNBTHERMALREQUEST_CF.2 ,765,1968,1975,1,0,0,,221001,621001,ff,THPNBTHERMALREQUEST_CF.3 ,765,1976,1983,1,0,0,,221001,621001,ff,THPNBTHERMALREQUEST_CF.4 ,765,1984,1991,1,0,0,,221001,621001,ff,THPNBTHERMALREQUEST_CF.5 ,765,1992,1999,1,0,0,,221001,621001,ff,THPNBTHERMALREQUEST_CF.6 ,765,2000,2007,1,0,0,,221001,621001,ff,THPNBTHERMALREQUEST_CF.7 ,765,2008,2015,1,0,0,,221001,621001,ff,THPNBTHERMALREQUEST_CF.8 ,765,2016,2023,1,0,0,,221001,621001,ff,THPNBTHERMALREQUEST_CF.9 ,765,2024,2031,1,0,0,,221001,621001,ff,TPMS_AUTOLOCATION_ACTIVATION_CF,0:WITHOUT_AUTOLOC;1:AUTOLEARNING_WITHOUT_AUTOLOC;2:AUTOLEARNING_WITH_AUTOLOC;3:AUTOLOCATION_NOT_USED ,765,2032,2039,1,0,0,,221001,621001,ff,TPMS_DISPLAY_STYLE_CF,0:WARNING_LAMP_ONLY;1:PRESSURE_DISP_WITHOUT_POS;2:PRESSURE_DISP_WITH_POS;3:WARNING_WITH_POS_WITHOUT_DISP ,765,2040,2047,1,0,0,°C,221001,621001,ff,TPMS_INCOH_TEMP_THRESHOLD_CF ,765,2048,2055,1,50,0,°C,221001,621001,ff,TPMS_LOW_PRESS_TEMP_THRLD_CF ,765,2056,2063,1,0,0,-,221001,621001,ff,TPMS_MISSING_THRESHOLD_ALERT_CF ,765,2064,2071,1,0,0,-,221001,621001,ff,TPMS_NB_MISSED_TX_CF ,765,2072,2079,1,30,0,°C,221001,621001,ff,TPMS_OEM_TREF_CF ,765,2080,2087,1,0,0,,221001,621001,ff,TPMS_ON_OFF_CF,0:TPMS_ON_OFF_NOT_ACTIVATED;1:TPMS_ON_OFF_NOT_USED_1;2:TPMS_ON_OFF_ACTIVATED;3:TPMS_ON_OFF_NOT_USED_3 ,765,2088,2095,1,0,0,%,221001,621001,ff,TPMS_PRESS_WNG_FIX_RATE_OFF_CF ,765,2096,2103,1,0,0,%,221001,621001,ff,TPMS_PRESS_WNG_VAR_RATE_OFF_CF ,765,2104,2111,1,0,0,,221001,621001,ff,TPMS_RFT_WARNING_FUNCTION_CF,0:RFT_WITHOUT;1:RFT_WITH_AND_NOT_RESETTABLE;2:RFT_WITH_AND_RESETTABLE;3:RFT_NOT_USED ,765,2112,2119,1,0,0,-,221001,621001,ff,TPMS_SENSOR_ERR_CNT_OFF_CF ,765,2120,2127,1,0,0,-,221001,621001,ff,TPMS_SENSOR_ERR_CNT_ON_CF ,765,2128,2135,1,30,0,°C,221001,621001,ff,TPMS_THRD_LOW_BATT_WNG_CF ,765,2136,2143,1,0,0,-,221001,621001,ff,TPMS_THRD_PUNCT_WNG_OFF_CF ,765,2144,2151,1,0,0,-,221001,621001,ff,TPMS_THRD_PUNCT_WNG_ON_CF ,765,2152,2159,1,0,0,-,221001,621001,ff,TPMS_THRD_UND_INF_WNG_OFF_CF ,765,2160,2167,1,0,0,-,221001,621001,ff,TPMS_THRD_UND_INF_WNG_ON_CF ,765,2168,2175,1,0,0,%,221001,621001,ff,TPMS_UND_INF_WNG_FIX_RATE_ON_CF ,765,2176,2183,1,0,0,%,221001,621001,ff,TPMS_UND_INF_WNG_VAR_RATE_ON_CF ,765,2184,2191,1,0,0,°C,221001,621001,ff,TREF_CANDI_JUDGE_CF ,765,2192,2199,1,0,0,,221001,621001,ff,UNLOCK_PATTERN_CF ,765,2200,2207,1,0,0,,221001,621001,ff,VEHICLE_RECOGNITION_CF ,765,2208,2215,1,0,0,,221001,621001,ff,AHL_ADB_MARKET_CF,0:NO_AHL_NO_ADB;1:AHL_ON;2:ADB_ON;3:AHL_ADB_RESERVED ,765,2216,2223,1,-1,0,,221001,621001,ff,VOLUMETRIC_SENSOR_TUNING_CF ,765,2224,2231,1,0,0,,221001,621001,ff,WELCOME_GOODBYE_EXT_CF,0:WGS_EXT_BASIC;1:WGS_EXT_HIGH;2:WGS_EXT_FALSE ,765,2232,2239,1,0,0,-,221001,621001,ff,WHEEL_POS_JUDGMENT_B_BLOCK_N_CF ,765,2240,2247,1,0,0,,221001,621001,ff,WHEEL_POS_JUDGMENT_BLOCK_N_CF ,765,2248,2255,1,0,0,,221001,621001,ff,WINDOWS_CLOSING_CF,0:WL_CENTRAL_TYPE_WITHOUT;1:WL_CENTRAL_TYPE_MANUAL;2:WL_CENTRAL_TYPE_AUTO ,765,2256,2263,1,0,0,,221001,621001,ff,WINDOWS_OPENING_CF,0:WL_CENTRAL_TYPE_WITHOUT;1:WL_CENTRAL_TYPE_MANUAL;2:WL_CENTRAL_TYPE_AUTO ,765,2264,2271,1,0,0,,221001,621001,ff,WIPER_LINK_USER_CF,0:WLU_WITHOUT;1:WLU_LINKED_LOW_HIGH;2:WLU_LINKED_INT_AUTO_LOW_HIGH ,765,2272,2279,1,0,0,,221001,621001,ff,WL_ARCHITECTURE_CF,0:WL_WIRE;1:WL_LIN ,765,2280,2287,1,0,0,-,221001,621001,ff,WSS_N_F_CF ,765,2288,2295,1,0,0,-,221001,621001,ff,WSS_N_R_CF ,765,2296,2311,1,0,0,km/h,221001,621001,ff,AL_VEH_RUNNING_THRESHOLD_CF ,765,2312,2327,.01,0,2,sec,221001,621001,ff,ALS_REQUEST_OFF_FILTER_TM_CF ,765,2328,2343,1,0,0,Rpm,221001,621001,ff,ALTLOADEND_IN_CF.0 ,765,2344,2359,1,0,0,Rpm,221001,621001,ff,ALTLOADEND_IN_CF.1 ,765,2360,2375,1,0,0,Rpm,221001,621001,ff,ALTLOADEND_IN_CF.2 ,765,2376,2391,1,0,0,Rpm,221001,621001,ff,ALTLOADEND_IN_CF.3 ,765,2392,2407,1,0,0,Rpm,221001,621001,ff,ALTLOADEND_IN_CF.4 ,765,2408,2423,1,0,0,Rpm,221001,621001,ff,ALTLOADEND_IN_CF.5 ,765,2424,2439,1,0,0,Rpm,221001,621001,ff,ALTLOADEND_IN_CF.6 ,765,2440,2455,1,0,0,Rpm,221001,621001,ff,ALTLOADEND_IN_CF.7 ,765,2456,2471,1,0,0,Rpm,221001,621001,ff,ALTLOADEND_IN_CF.8 ,765,2472,2487,1,0,0,Rpm,221001,621001,ff,ALTLOADEND_IN_CF.9 ,765,2488,2503,.5,200,1,%,221001,621001,ff,ALTLOADEND_OUT_CF.0 ,765,2504,2519,.5,200,1,%,221001,621001,ff,ALTLOADEND_OUT_CF.1 ,765,2520,2535,.5,200,1,%,221001,621001,ff,ALTLOADEND_OUT_CF.2 ,765,2536,2551,.5,200,1,%,221001,621001,ff,ALTLOADEND_OUT_CF.3 ,765,2552,2567,.5,200,1,%,221001,621001,ff,ALTLOADEND_OUT_CF.4 ,765,2568,2583,.5,200,1,%,221001,621001,ff,ALTLOADEND_OUT_CF.5 ,765,2584,2599,.5,200,1,%,221001,621001,ff,ALTLOADEND_OUT_CF.6 ,765,2600,2615,.5,200,1,%,221001,621001,ff,ALTLOADEND_OUT_CF.7 ,765,2616,2631,.5,200,1,%,221001,621001,ff,ALTLOADEND_OUT_CF.8 ,765,2632,2647,.5,200,1,%,221001,621001,ff,ALTLOADEND_OUT_CF.9 ,765,2648,2663,1,0,0,Rpm,221001,621001,ff,ALTLOADSTART_IN_CF.0 ,765,2664,2679,1,0,0,Rpm,221001,621001,ff,ALTLOADSTART_IN_CF.1 ,765,2680,2695,1,0,0,Rpm,221001,621001,ff,ALTLOADSTART_IN_CF.2 ,765,2696,2711,1,0,0,Rpm,221001,621001,ff,ALTLOADSTART_IN_CF.3 ,765,2712,2727,1,0,0,Rpm,221001,621001,ff,ALTLOADSTART_IN_CF.4 ,765,2728,2743,1,0,0,Rpm,221001,621001,ff,ALTLOADSTART_IN_CF.5 ,765,2744,2759,1,0,0,Rpm,221001,621001,ff,ALTLOADSTART_IN_CF.6 ,765,2760,2775,1,0,0,Rpm,221001,621001,ff,ALTLOADSTART_IN_CF.7 ,765,2776,2791,1,0,0,Rpm,221001,621001,ff,ALTLOADSTART_IN_CF.8 ,765,2792,2807,1,0,0,Rpm,221001,621001,ff,ALTLOADSTART_IN_CF.9 ,765,2808,2823,.5,200,1,%,221001,621001,ff,ALTLOADSTART_OUT_CF.0 ,765,2824,2839,.5,200,1,%,221001,621001,ff,ALTLOADSTART_OUT_CF.1 ,765,2840,2855,.5,200,1,%,221001,621001,ff,ALTLOADSTART_OUT_CF.2 ,765,2856,2871,.5,200,1,%,221001,621001,ff,ALTLOADSTART_OUT_CF.3 ,765,2872,2887,.5,200,1,%,221001,621001,ff,ALTLOADSTART_OUT_CF.4 ,765,2888,2903,.5,200,1,%,221001,621001,ff,ALTLOADSTART_OUT_CF.5 ,765,2904,2919,.5,200,1,%,221001,621001,ff,ALTLOADSTART_OUT_CF.6 ,765,2920,2935,.5,200,1,%,221001,621001,ff,ALTLOADSTART_OUT_CF.7 ,765,2936,2951,.5,200,1,%,221001,621001,ff,ALTLOADSTART_OUT_CF.8 ,765,2952,2967,.5,200,1,%,221001,621001,ff,ALTLOADSTART_OUT_CF.9 ,765,2968,2983,1,0,0,,221001,621001,ff,AUTO_LIGHT_SENSITIVITY_CF ,765,2984,2999,.01,0,2,sec,221001,621001,ff,AUTO_LOCK_LONG_PRESS_CDL_TM_CF ,765,3000,3015,.01,0,2,sec,221001,621001,ff,AUTO_RELOCK_TIMEOUT_TM_CF ,765,24,39,1,0,0,km/h,221002,621002,ff,AUTOLOCATION_TIMER_START_SPD_CF ,765,40,55,.01,0,2,sec,221002,621002,ff,AUTOMATIC_FOLDING_DELAY_TM_CF ,765,56,71,.01,0,2,sec,221002,621002,ff,AUTOMATIC_UNFOLDING_DELAY_TM_CF ,765,72,87,.01,0,2,sec,221002,621002,ff,BREAKING_IN_ALARM_TM_CF ,765,88,103,.01,0,2,Volt,221002,621002,ff,C_U_REAR_FOG_OFFSET_CF ,765,104,119,.01,0,2,Volt,221002,621002,ff,C_U_STOP_OFFSET_1_CF ,765,120,135,.01,0,2,Volt,221002,621002,ff,C_U_STOP_OFFSET_2_CF ,765,136,151,.01,0,2,Volt,221002,621002,ff,C1D_PWM_LIGHTING_SYSTEM_X_CF.0 ,765,152,167,.01,0,2,Volt,221002,621002,ff,C1D_PWM_LIGHTING_SYSTEM_X_CF.1 ,765,168,183,.01,0,2,Volt,221002,621002,ff,C1D_PWM_LIGHTING_SYSTEM_X_CF.2 ,765,184,199,.01,0,2,Volt,221002,621002,ff,C1D_PWM_LIGHTING_SYSTEM_X_CF.3 ,765,200,215,.01,0,2,Volt,221002,621002,ff,C2D_PWM_LIGHTING_SYSTEM_X_CF.0 ,765,216,231,.01,0,2,Volt,221002,621002,ff,C2D_PWM_LIGHTING_SYSTEM_X_CF.1 ,765,232,247,.01,0,2,Volt,221002,621002,ff,C2D_PWM_LIGHTING_SYSTEM_X_CF.2 ,765,248,263,.01,0,2,Volt,221002,621002,ff,C2D_PWM_LIGHTING_SYSTEM_X_CF.3 ,765,264,279,.01,0,2,Volt,221002,621002,ff,C3D_PWM_LIGHTING_SYSTEM_X_CF.0 ,765,280,295,.01,0,2,Volt,221002,621002,ff,C3D_PWM_LIGHTING_SYSTEM_X_CF.1 ,765,296,311,.01,0,2,Volt,221002,621002,ff,C3D_PWM_LIGHTING_SYSTEM_X_CF.2 ,765,312,327,.01,0,2,Volt,221002,621002,ff,C3D_PWM_LIGHTING_SYSTEM_X_CF.3 ,765,328,343,.01,0,2,sec,221002,621002,ff,CDL_BACKUP_LOCK_TM_CF ,765,344,359,10,0,0,ms,221002,621002,ff,CENTRAL_CONTROL_TM_CF ,765,360,375,.05,0,2,,221002,621002,ff,COEF_G_1_CF ,765,376,391,.05,0,2,,221002,621002,ff,COEF_G_2_CF ,765,392,407,.05,0,2,,221002,621002,ff,COEF_G_3_CF ,765,408,423,.05,0,2,,221002,621002,ff,COEF_G_4_CF ,765,424,439,.05,0,2,,221002,621002,ff,COEF_W_1_CF ,765,440,455,.05,0,2,,221002,621002,ff,COEF_W_2_CF ,765,456,471,.05,0,2,,221002,621002,ff,COEF_W_3_CF ,765,472,487,.05,0,2,,221002,621002,ff,COEF_W_4_CF ,765,488,503,.01,0,2,sec,221002,621002,ff,COURTESY_ON_DELAY_TM_CF ,765,504,519,.01,0,2,sec,221002,621002,ff,CRASH_UNLOCK_DELAY_AFTER_DETECTION_TM_CF ,765,520,535,.01,0,2,sec,221002,621002,ff,EASYFILL_HI_PRESS_HAZARD_TM_CF ,765,536,551,1,0,0,lux,221002,621002,ff,ENHANCE_LO_OFF_THRESH_CF.0 ,765,552,567,1,0,0,lux,221002,621002,ff,ENHANCE_LO_OFF_THRESH_CF.1 ,765,568,583,1,0,0,lux,221002,621002,ff,ENHANCE_LO_OFF_THRESH_CF.2 ,765,584,599,1,0,0,lux,221002,621002,ff,ENHANCE_LO_OFF_THRESH_CF.3 ,765,600,615,1,0,0,lux,221002,621002,ff,ENHANCE_LO_ON_THRESH_CF.0 ,765,616,631,1,0,0,lux,221002,621002,ff,ENHANCE_LO_ON_THRESH_CF.1 ,765,632,647,1,0,0,lux,221002,621002,ff,ENHANCE_LO_ON_THRESH_CF.2 ,765,648,663,1,0,0,lux,221002,621002,ff,ENHANCE_LO_ON_THRESH_CF.3 ,765,664,679,.01,0,2,sec,221002,621002,ff,FR_WASH_PROLONGATION_MAX_TM_CF ,765,680,695,.01,0,2,sec,221002,621002,ff,FRONT_DEFROST_ENGAGEMENT_TM_CF ,765,696,711,10,0,0,ms,221002,621002,ff,GO_TO_SERVICE_POSITION_TM_CF ,765,712,727,.01,0,2,sec,221002,621002,ff,GOODBYE_RAMPDOWN_TM_CF ,765,728,743,10,0,0,ms,221002,621002,ff,HEAD_LAMP_WASHER_TIMER_T1_TM_CF ,765,744,759,10,0,0,ms,221002,621002,ff,HEAD_LAMP_WASHER_TIMER_T2_TM_CF ,765,760,775,.01,0,2,sec,221002,621002,ff,HEADLAMPWASHING_TM_CF ,765,776,791,.01,0,2,sec,221002,621002,ff,IGN_ON_TIMEOUT_FOR_AUTO_LOCK_CHANGE_TM_CF ,765,792,807,.01,0,2,sec,221002,621002,ff,IMMO_TIME_OUT_LEARNING_KEY_TM_CF ,765,808,823,1.66666666666667E-04,0,3,min,221002,621002,ff,IMMO_TIMEOUT_AFTER_SALES_MODE_TM_CF ,765,824,839,1.66666666666667E-04,0,3,min,221002,621002,ff,IMMO_TIMEOUT_REWORK_MODE_TM_CF ,765,840,855,.01,0,2,sec,221002,621002,ff,FLASHERS_ACTIVATION_DELAY_TM_CF ,765,856,871,.001,0,3,1/%.s,221002,621002,ff,KIALTERNATORLOAD_ERROR_NEG_CF ,765,872,887,.001,0,3,1/%.s,221002,621002,ff,KIALTERNATORLOAD_ERROR_POS_CF ,765,888,903,.0001,0,3,1/%,221002,621002,ff,KPALTERNATORLOAD_ERROR_NEG_CF ,765,904,919,.0001,0,3,1/%,221002,621002,ff,KPALTERNATORLOAD_ERROR_POS_CF ,765,920,935,1,0,0,m,221002,621002,ff,LO_OFF_DELAY_DISTANCE_CF.0 ,765,936,951,1,0,0,m,221002,621002,ff,LO_OFF_DELAY_DISTANCE_CF.1 ,765,952,967,1,0,0,m,221002,621002,ff,LO_OFF_DELAY_DISTANCE_CF.2 ,765,968,983,1,0,0,m,221002,621002,ff,LO_OFF_DELAY_DISTANCE_CF.3 ,765,984,999,1,0,0,lux,221002,621002,ff,LO_OFF_THRESH_CF.0 ,765,1000,1015,1,0,0,lux,221002,621002,ff,LO_OFF_THRESH_CF.1 ,765,1016,1031,1,0,0,lux,221002,621002,ff,LO_OFF_THRESH_CF.2 ,765,1032,1047,1,0,0,lux,221002,621002,ff,LO_OFF_THRESH_CF.3 ,765,1048,1063,1,0,0,m,221002,621002,ff,LO_ON_DELAY_DISTANCE_CF.0 ,765,1064,1079,1,0,0,m,221002,621002,ff,LO_ON_DELAY_DISTANCE_CF.1 ,765,1080,1095,1,0,0,m,221002,621002,ff,LO_ON_DELAY_DISTANCE_CF.2 ,765,1096,1111,1,0,0,m,221002,621002,ff,LO_ON_DELAY_DISTANCE_CF.3 ,765,1112,1127,1,0,0,lux,221002,621002,ff,LO_ON_THRESH_CF.0 ,765,1128,1143,1,0,0,lux,221002,621002,ff,LO_ON_THRESH_CF.1 ,765,1144,1159,1,0,0,lux,221002,621002,ff,LO_ON_THRESH_CF.2 ,765,1160,1175,1,0,0,lux,221002,621002,ff,LO_ON_THRESH_CF.3 ,765,1192,1207,.01,0,2,sec,221002,621002,ff,MAX_TURN_POWER_LEVEL_X_ON_TM_CF ,765,1208,1223,10,0,0,ms,221002,621002,ff,OVERRIDE_BREAK_TIME_TM_CF ,765,1224,1239,.01,0,2,sec,221002,621002,ff,PL_OFF_DELAY_TIME_CF.0 ,765,1240,1255,.01,0,2,sec,221002,621002,ff,PL_OFF_DELAY_TIME_CF.1 ,765,1256,1271,.01,0,2,sec,221002,621002,ff,PL_OFF_DELAY_TIME_CF.2 ,765,1272,1287,.01,0,2,sec,221002,621002,ff,PL_OFF_DELAY_TIME_CF.3 ,765,1288,1303,1,0,0,lux,221002,621002,ff,PL_OFF_THRESH_CF.0 ,765,1304,1319,1,0,0,lux,221002,621002,ff,PL_OFF_THRESH_CF.1 ,765,1320,1335,1,0,0,lux,221002,621002,ff,PL_OFF_THRESH_CF.2 ,765,1336,1351,1,0,0,lux,221002,621002,ff,PL_OFF_THRESH_CF.3 ,765,1352,1367,1,0,0,m,221002,621002,ff,PL_ON_DELAY_DISTANCE_CF.0 ,765,1368,1383,1,0,0,m,221002,621002,ff,PL_ON_DELAY_DISTANCE_CF.1 ,765,1384,1399,1,0,0,m,221002,621002,ff,PL_ON_DELAY_DISTANCE_CF.2 ,765,1400,1415,1,0,0,m,221002,621002,ff,PL_ON_DELAY_DISTANCE_CF.3 ,765,1416,1431,.01,0,2,sec,221002,621002,ff,PL_ON_DELAY_TIME_CF.0 ,765,1432,1447,.01,0,2,sec,221002,621002,ff,PL_ON_DELAY_TIME_CF.1 ,765,1448,1463,.01,0,2,sec,221002,621002,ff,PL_ON_DELAY_TIME_CF.2 ,765,1464,1479,.01,0,2,sec,221002,621002,ff,PL_ON_DELAY_TIME_CF.3 ,765,1480,1495,1,0,0,lux,221002,621002,ff,PL_ON_THRESH_CF.0 ,765,1496,1511,1,0,0,lux,221002,621002,ff,PL_ON_THRESH_CF.1 ,765,1512,1527,1,0,0,lux,221002,621002,ff,PL_ON_THRESH_CF.2 ,765,1528,1543,1,0,0,lux,221002,621002,ff,PL_ON_THRESH_CF.3 ,765,1544,1575,1,0,0,,221002,621002,4ff,PRM_ADDITIONNAL_TIME_FOR_TM_CF ,765,1576,1591,1,0,0,min,221002,621002,ff,PRM_MIN_TIME_TO_SLEEP_TM_CF ,765,1592,1607,1,0,0,min,221002,621002,ff,PRM_WAKE_UP_TIME_TM_CF ,765,1608,1623,.01,0,2,sec,221002,621002,ff,QUICK_LO_OFF_DELAY_TIME_CF.0 ,765,1624,1639,.01,0,2,sec,221002,621002,ff,QUICK_LO_OFF_DELAY_TIME_CF.1 ,765,1640,1655,.01,0,2,sec,221002,621002,ff,QUICK_LO_OFF_DELAY_TIME_CF.2 ,765,1656,1671,.01,0,2,sec,221002,621002,ff,QUICK_LO_OFF_DELAY_TIME_CF.3 ,765,1672,1687,1,0,0,lux,221002,621002,ff,QUICK_LO_OFF_THRESH_CF.0 ,765,1688,1703,1,0,0,lux,221002,621002,ff,QUICK_LO_OFF_THRESH_CF.1 ,765,1704,1719,1,0,0,lux,221002,621002,ff,QUICK_LO_OFF_THRESH_CF.2 ,765,1720,1735,1,0,0,lux,221002,621002,ff,QUICK_LO_OFF_THRESH_CF.3 ,765,1736,1751,.01,0,2,sec,221002,621002,ff,QUICK_LO_ON_DELAY_TIME_CF.0 ,765,1752,1767,.01,0,2,sec,221002,621002,ff,QUICK_LO_ON_DELAY_TIME_CF.1 ,765,1768,1783,.01,0,2,sec,221002,621002,ff,QUICK_LO_ON_DELAY_TIME_CF.2 ,765,1784,1799,.01,0,2,sec,221002,621002,ff,QUICK_LO_ON_DELAY_TIME_CF.3 ,765,1800,1815,1,0,0,lux,221002,621002,ff,QUICK_LO_ON_THRESH_CF.0 ,765,1816,1831,1,0,0,lux,221002,621002,ff,QUICK_LO_ON_THRESH_CF.1 ,765,1832,1847,1,0,0,lux,221002,621002,ff,QUICK_LO_ON_THRESH_CF.2 ,765,1848,1863,1,0,0,lux,221002,621002,ff,QUICK_LO_ON_THRESH_CF.3 ,765,1864,1879,.01,0,2,sec,221002,621002,ff,QUICK_PL_ON_DELAY_TIME_CF.0 ,765,1880,1895,.01,0,2,sec,221002,621002,ff,QUICK_PL_ON_DELAY_TIME_CF.1 ,765,1896,1911,.01,0,2,sec,221002,621002,ff,QUICK_PL_ON_DELAY_TIME_CF.2 ,765,1912,1927,.01,0,2,sec,221002,621002,ff,QUICK_PL_ON_DELAY_TIME_CF.3 ,765,1928,1943,1,0,0,lux,221002,621002,ff,QUICK_PL_ON_THRESH_CF.0 ,765,1944,1959,1,0,0,lux,221002,621002,ff,QUICK_PL_ON_THRESH_CF.1 ,765,1960,1975,1,0,0,lux,221002,621002,ff,QUICK_PL_ON_THRESH_CF.2 ,765,1976,1991,1,0,0,lux,221002,621002,ff,QUICK_PL_ON_THRESH_CF.3 ,765,1992,2007,.01,0,2,sec,221002,621002,ff,REAR_WIPER_CYCLE_TM_CF ,765,2008,2023,1,0,0,km/h,221002,621002,ff,REAR_WIPER_INT_SPEED_THRESH_CF.0 ,765,2024,2039,1,0,0,km/h,221002,621002,ff,REAR_WIPER_INT_SPEED_THRESH_CF.1 ,765,2040,2055,.01,0,2,sec,221002,621002,ff,REAR_WIPER_INT_VALUES_TM_CF.0 ,765,2056,2071,.01,0,2,sec,221002,621002,ff,REAR_WIPER_INT_VALUES_TM_CF.1 ,765,2072,2087,.01,0,2,sec,221002,621002,ff,REAR_WIPER_INT_VALUES_TM_CF.2 ,765,2088,2103,1,0,0,km/h,221002,621002,ff,REAR_WIPER_OVERSPEED_THRESH_CF ,765,2104,2119,1.66666666666667E-04,0,3,min,221002,621002,ff,RES_TIMER_IN_SECONDS_TM_CF ,765,2120,2135,10,0,0,ms,221002,621002,ff,RKE_LOCK_UNLOCK_VERYLG_TM_CF ,765,2136,2151,.01,0,2,sec,221002,621002,ff,SDO_UNLOCK_ALL_TM_CF ,765,2152,2167,1,0,0,km/h,221002,621002,ff,SET_ACCEPT_SPEED_THRLD_CF ,765,2168,2183,10,0,0,ms,221002,621002,ff,SHIFT_DRIVER_TO_ASSIST_TM_CF ,765,2184,2199,1,0,0,min,221002,621002,ff,TECHNICAL_WAKEUP_PERIOD_TM_CF ,765,2200,2215,.01,0,2,sec,221002,621002,ff,STANDARD_INT_TIME_TM_CF.0 ,765,2216,2231,.01,0,2,sec,221002,621002,ff,STANDARD_INT_TIME_TM_CF.1 ,765,2232,2247,.01,0,2,sec,221002,621002,ff,STANDARD_INT_TIME_TM_CF.2 ,765,2248,2263,.01,0,2,sec,221002,621002,ff,STANDARD_INT_TIME_TM_CF.3 ,765,2264,2279,.01,0,2,sec,221002,621002,ff,STANDARD_INT_TIME_TM_CF.4 ,765,2280,2295,.01,0,2,sec,221002,621002,ff,STANDARD_INT_TIME_TM_CF.5 ,765,2296,2311,.01,0,2,sec,221002,621002,ff,STANDARD_INT_TIME_TM_CF.6 ,765,2312,2327,.01,0,2,sec,221002,621002,ff,SWITCH_INPUT_PROT_TM_CF ,765,2328,2343,10,0,0,ms,221002,621002,ff,T_DOWN_CF ,765,2344,2359,10,0,0,ms,221002,621002,ff,T_UP_CF ,765,2360,2375,.01,0,2,sec,221002,621002,ff,T1_TM_CF ,765,2376,2391,7.5,0,0,mBar,221002,621002,ff,TPMS_ATMO_EXTERN_PRESS_CF ,765,2392,2407,1,0,0,sec,221002,621002,ff,TPMS_AUTOLOCATION_TIMEOUT_TM_CF ,765,2408,2423,7.5,0,0,mBar,221002,621002,ff,TPMS_INCOH_PRESS_THRESHOLD_CF ,765,2424,2439,7.5,0,0,mBar,221002,621002,ff,TPMS_LOW_P_FIX_ABS_ON_FRONT_CF ,765,2440,2455,7.5,0,0,mBar,221002,621002,ff,TPMS_LOW_P_FIX_ABS_ON_REAR_CF ,765,2456,2471,1,0,0,sec,221002,621002,ff,TPMS_LOW_PRESS_TM_CF ,765,2472,2487,7.5,0,0,mBar,221002,621002,ff,TPMS_LOW_PRESS_TOL_CF ,765,2488,2503,7.5,0,0,mBar,221002,621002,ff,TPMS_NORMAL_PRESS_THRLD_ABS_CF ,765,2504,2519,7.5,0,0,mBar,221002,621002,ff,TPMS_PUNCT_ALERT_FIX_ABS_ON_CF ,765,2520,2535,7.5,0,0,mBar,221002,621002,ff,TPMS_REC_PRESS_FRONT_CF ,765,2536,2551,7.5,0,0,mBar,221002,621002,ff,TPMS_REC_PRESS_REAR_CF ,765,2552,2567,16,625,0,us,221002,621002,ff,TPMS_RF_DATA_LENGTH_TM_CF ,765,2568,2583,16,0,0,us,221002,621002,ff,TPMS_RF_INTERVAL_FRAMES_TM_CF ,765,2584,2599,7.5,0,0,mBar,221002,621002,ff,TPMS_SENSOR_PRESS_TOL_CF ,765,2600,2615,7.5,0,0,mBar,221002,621002,ff,TPMS_SET_PRESS_TOL_CF ,765,2616,2631,.01,0,2,sec,221002,621002,ff,TPMS_TIMEOUT_NO_DATA_TM_CF ,765,2632,2647,.01,0,2,sec,221002,621002,ff,TPMS_TIMEOUT_NODATA_TM_CF ,765,2648,2663,.01,0,2,sec,221002,621002,ff,TPMS_VEH_RUNNING_ON_DELAY_TM_CF ,765,2664,2679,1,0,0,km/h,221002,621002,ff,TPMS_VEH_RUNNING_THRESHOLD_CF ,765,2680,2695,.01,0,2,sec,221002,621002,ff,TPMS_VEH_STOPPED_ON_DELAY_TM_CF ,765,2696,2711,1,0,0,km/h,221002,621002,ff,TPMS_VEH_STOPPED_THRESHOLD_CF ,765,2712,2727,.01,0,2,sec,221002,621002,ff,WAIT_GOODBYE_TM_CF ,765,2728,2743,.01,0,2,sec,221002,621002,ff,WAIT_MIRROR_OPENING_TM_CF ,765,2744,2759,10,0,0,ms,221002,621002,ff,WASH_WIPE_DELAY_TM_CF ,765,2760,2775,.01,0,2,sec,221002,621002,ff,WGS_TM_CF ,765,2776,2791,.01,0,2,sec,221002,621002,ff,WL_DOUBLE_PUSH_TM_CF ,765,2792,2807,.01,0,2,sec,221002,621002,ff,WL_LONG_PUSH_TM_CF ,765,2808,2823,16,625,0,us,221002,621002,ff,WSSP_RX_DELAY_CF ,765,2824,2855,1,0,0,,221002,621002,4ff,BATTERY_SAVER_ROOMLAMP_TM_CF ,765,2856,2887,1,0,0,,221002,621002,4ff,DELAY_AFTER_ENGINE_OFF_TM_CF ,765,2920,2951,1,0,0,,221002,621002,4ff,IGN_SAVER_BEFORE_DISP_TM_CF ,765,2952,2983,1,0,0,,221002,621002,4ff,IGN_SAVER_TIMER_DM1_TM_CF ,765,2984,3015,1,0,0,,221002,621002,4ff,IGN_SAVER_TIMER_DM2_TM_CF ,765,24,55,1,0,0,,221003,621003,4ff,IGN_SAVER_TIMER_TM_CF ,765,56,87,1,0,0,,221003,621003,4ff,IMMO_DURATION_SA_UNLOCKED_TIME_OUT_TM_CF ,765,88,119,1,0,0,,221003,621003,4ff,KEY_REMINDER_POLLING_TIMEOUT_TM_CF ,765,120,151,1,0,0,,221003,621003,4ff,LIGHT_COEFFICIENT_CF ,765,152,183,1,0,0,,221003,621003,4ff,MIN_LONG_TIME_PARK_ON_TM_CF ,765,184,191,1,0,0,,221003,621003,ff,AL_N_RF_FAT_ERROR_CF ,765,192,207,10,0,0,ms,221003,621003,ff,RESTART_AFTER_STALL_TM_CF ,765,208,215,1,0,0,time,221003,621003,ff,PHONE_REMOTE_FLASH_NB_CF ,765,216,247,1,0,0,,221003,621003,4ff,T10_TM_CF ,765,248,279,1,0,0,,221003,621003,4ff,T30_TM_CF ,765,280,311,1,0,0,,221003,621003,4ff,TPMS_WUIDREG_TIMEOUT_TM_CF ,765,312,343,1,0,0,,221003,621003,4ff,WL_SUPPLY_TM_CF ,765,344,351,1,0,0,%,221003,621003,ff,AMBIENT_BRIGHT_STEP1_CF ,765,352,359,1,0,0,%,221003,621003,ff,AMBIENT_BRIGHT_STEP2_CF ,765,360,367,1,0,0,%,221003,621003,ff,AMBIENT_BRIGHT_STEP3_CF ,765,368,375,1,0,0,%,221003,621003,ff,AMBIENT_BRIGHT_STEP4_CF ,765,376,383,1,0,0,%,221003,621003,ff,AMBIENT_BRIGHT_STEP5_CF ,765,504,504,1,0,0,,221003,621003,ff,PASSENGER_MIRROR_ECU_CF,1:true;0:false ,765,505,505,1,0,0,,221003,621003,ff,BATTERY_CONNECTION_STRAT_CF,1:true;0:false ,765,506,506,1,0,0,,221003,621003,ff,WITH_RESTART_AFTER_STALL_CF,1:true;0:false ,765,507,507,1,0,0,,221003,621003,ff,ENGINE_STOP_REQUEST_CF,1:true;0:false ,765,508,508,1,0,0,,221003,621003,ff,IGN_TIMER_CANCEL_DTOOL_CF,1:true;0:false ,765,509,509,1,0,0,,221003,621003,ff,IGN_TIMER_CANCEL_HZ_LAMP_CF,1:true;0:false ,765,510,510,1,0,0,,221003,621003,ff,WITH_HV_MOTOR_START_CF,1:true;0:false ,765,848,863,10,0,0,ms,221003,621003,ff,POLLING_A_IVC_PRESENCE_TM_CF ,765,864,871,1,0,0,,221003,621003,ff,STOP_AND_START_SW_TYPE_CF,0:NO_BUTTON_SW3;1:ZEN_BUTTON_SW3;2:STOP_AND_START_BUTTON_SW3 ,765,872,887,10,0,0,ms,221003,621003,ff,HORN_DURATION_TM_CF ,765,888,903,10,0,0,ms,221003,621003,ff,AHL_FAILURE_WAIT_TM_CF ,765,904,919,10,0,0,ms,221003,621003,ff,AHL_FAILURE_CONF_TM_CF ,765,920,935,10,0,0,ms,221003,621003,ff,LCU_LOSS_TM_CF ,765,936,951,.25,20000,1,°C,221003,621003,ff,TEMP_MAX_CF ,765,952,983,1,0,0,,221003,621003,4ff,MAX_TIME_TM_CF ,765,984,999,10,0,0,ms,221003,621003,ff,DTOOL_ABSENT_TM_CF ,765,1000,1031,1,0,0,,221003,621003,4ff,PRM_MAINTAIN_FOR_PROG_TM_CF ,765,1032,1047,.01,0,2,sec,221003,621003,ff,PRM_IMMEDIATE_TIME_TM_CF ,765,1048,1055,10,0,0,ms,221003,621003,ff,CONF_VS_CUT_OFF_PEND_TM_CF ,765,1056,1071,10,0,0,ms,221003,621003,ff,CONF_VS_UNAVAILABLE_TM_CF ,765,1072,1087,10,0,0,ms,221003,621003,ff,RKE_PANIC_LONG_TM_CF ,765,1088,1103,10,0,0,ms,221003,621003,ff,RKE_PSD_R_LONG_TM_CF ,765,1104,1119,10,0,0,ms,221003,621003,ff,RKE_RES_LONG_TM_CF ,765,1120,1135,10,0,0,ms,221003,621003,ff,RKE_TRUNK_LONG_TM_CF ,765,1136,1151,10,0,0,ms,221003,621003,ff,RKE_UNLOCK_LONG_TM_CF ,765,1152,1159,1,0,0,%,221003,621003,ff,COEF_INTENSITY_AREA1_CF ,765,1160,1167,1,0,0,%,221003,621003,ff,COEF_INTENSITY_AREA2_CF ,765,1168,1175,1,0,0,%,221003,621003,ff,COEF_INTENSITY_AREA3_CF ,765,1176,1191,1,0,0,min,221003,621003,ff,RES_PROG_LAST_CYCLE_TM_CF ,765,1192,1199,1,0,0,,221003,621003,ff,POWERDRIVED_INDEX_CF.0 ,765,1200,1207,1,0,0,,221003,621003,ff,POWERDRIVED_INDEX_CF.1 ,765,1208,1215,1,0,0,,221003,621003,ff,POWERDRIVED_INDEX_CF.2 ,765,1216,1223,1,0,0,,221003,621003,ff,POWERDRIVED_INDEX_CF.3 ,765,1224,1231,1,0,0,,221003,621003,ff,POWERDRIVED_INDEX_CF.4 ,765,1232,1239,1,0,0,,221003,621003,ff,POWERDRIVED_INDEX_CF.5 ,765,1240,1247,1,0,0,,221003,621003,ff,POWERDRIVED_INDEX_CF.6 ,765,1248,1255,1,0,0,,221003,621003,ff,POWERDRIVED_INDEX_CF.7 ,765,1256,1263,1,0,0,,221003,621003,ff,POWERDRIVED_INDEX_CF.8 ,765,1264,1271,1,0,0,,221003,621003,ff,POWERDRIVED_INDEX_CF.9 ,765,1272,1279,100,0,0,W,221003,621003,ff,POWERDRIVED_OUT_CF.0 ,765,1280,1287,100,0,0,W,221003,621003,ff,POWERDRIVED_OUT_CF.1 ,765,1288,1295,100,0,0,W,221003,621003,ff,POWERDRIVED_OUT_CF.2 ,765,1296,1303,100,0,0,W,221003,621003,ff,POWERDRIVED_OUT_CF.3 ,765,1304,1311,100,0,0,W,221003,621003,ff,POWERDRIVED_OUT_CF.4 ,765,1312,1319,100,0,0,W,221003,621003,ff,POWERDRIVED_OUT_CF.5 ,765,1320,1327,100,0,0,W,221003,621003,ff,POWERDRIVED_OUT_CF.6 ,765,1328,1335,100,0,0,W,221003,621003,ff,POWERDRIVED_OUT_CF.7 ,765,1336,1343,100,0,0,W,221003,621003,ff,POWERDRIVED_OUT_CF.8 ,765,1344,1351,100,0,0,W,221003,621003,ff,POWERDRIVED_OUT_CF.9 ,765,1352,1367,1.66666666666667E-04,0,3,min,221003,621003,ff,KEYLOCK_EXT_MAX_DURATION_TM_CF ,765,24,24,1,0,0,,221004,621004,ff,DTC_ALARM_VOLUMETRIC_04_CF,1:true;0:false ,765,25,25,1,0,0,,221004,621004,ff,DTC_ASSIST_DEFROSTER_12_CF,1:true;0:false ,765,26,26,1,0,0,,221004,621004,ff,DTC_ASSIST_DEFROSTER_14_CF,1:true;0:false ,765,27,27,1,0,0,,221004,621004,ff,DTC_AUTO_ACC_RL_12_CF,1:true;0:false ,765,28,28,1,0,0,,221004,621004,ff,DTC_AUTO_ACC_RL_14_CF,1:true;0:false ,765,29,29,1,0,0,,221004,621004,ff,DTC_AUTO_MIRROR_RL_12_CF,1:true;0:false ,765,30,30,1,0,0,,221004,621004,ff,DTC_AUTO_MIRROR_RL_14_CF,1:true;0:false ,765,31,31,1,0,0,,221004,621004,ff,DTC_BCM_APV_CODE_68_CF,1:true;0:false ,765,32,32,1,0,0,,221004,621004,ff,DTC_CHILDLOCK_02_CF,1:true;0:false ,765,33,33,1,0,0,,221004,621004,ff,DTC_CHILDLOCK_WL_RL_12_CF,1:true;0:false ,765,34,34,1,0,0,,221004,621004,ff,DTC_CHILDLOCK_WL_RL_14_CF,1:true;0:false ,765,35,35,1,0,0,,221004,621004,ff,DTC_CLUTCH_END_SW_23_CF,1:true;0:false ,765,36,36,1,0,0,,221004,621004,ff,DTC_CLUTCH_START_SW_23_CF,1:true;0:false ,765,37,37,1,0,0,,221004,621004,ff,DTC_CLUTCH_START_SW_24_CF,1:true;0:false ,765,38,38,1,0,0,,221004,621004,ff,DTC_COMBI_SWITCH_01_CF,1:true;0:false ,765,39,39,1,0,0,,221004,621004,ff,DTC_COMBI_SWITCH_64_CF,1:true;0:false ,765,40,40,1,0,0,,221004,621004,ff,DTC_DI_FR_SR_LEFT_18_CF,1:true;0:false ,765,41,41,1,0,0,,221004,621004,ff,DTC_DI_FR_SR_LEFT_19_CF,1:true;0:false ,765,42,42,1,0,0,,221004,621004,ff,DTC_DI_FR_SR_RIGHT_18_CF,1:true;0:false ,765,43,43,1,0,0,,221004,621004,ff,DTC_DI_FR_SR_RIGHT_19_CF,1:true;0:false ,765,44,44,1,0,0,,221004,621004,ff,DTC_DI_RR_LEFT_18_CF,1:true;0:false ,765,45,45,1,0,0,,221004,621004,ff,DTC_DI_RR_LEFT_19_CF,1:true;0:false ,765,46,46,1,0,0,,221004,621004,ff,DTC_DI_RR_RIGHT_18_CF,1:true;0:false ,765,47,47,1,0,0,,221004,621004,ff,DTC_DI_RR_RIGHT_19_CF,1:true;0:false ,765,48,48,1,0,0,,221004,621004,ff,DTC_DONGLE_4A_CF,1:true;0:false ,765,49,49,1,0,0,,221004,621004,ff,DTC_DPC_04_CF,1:true;0:false ,765,50,50,1,0,0,,221004,621004,ff,DTC_DRIVER_DEFROSTER_12_CF,1:true;0:false ,765,51,51,1,0,0,,221004,621004,ff,DTC_DRIVER_DEFROSTER_14_CF,1:true;0:false ,765,52,52,1,0,0,,221004,621004,ff,DTC_DRIVER_SEAT_BELT_23_CF,1:true;0:false ,765,53,53,1,0,0,,221004,621004,ff,DTC_DRIVER_SEAT_BELT_CONF_55_CF,1:true;0:false ,765,54,54,1,0,0,,221004,621004,ff,DTC_EEPROM_42_CF,1:true;0:false ,765,55,55,1,0,0,,221004,621004,ff,DTC_EEPROM_46_CF,1:true;0:false ,765,56,56,1,0,0,,221004,621004,ff,DTC_ETA_04_CF,1:true;0:false ,765,57,57,1,0,0,,221004,621004,ff,DTC_FOG_LAMP_11_CF,1:true;0:false ,765,58,58,1,0,0,,221004,621004,ff,DTC_FOG_LAMP_15_CF,1:true;0:false ,765,59,59,1,0,0,,221004,621004,ff,DTC_IFLW_04_CF,1:true;0:false ,765,60,60,1,0,0,,221004,621004,ff,DTC_IFRW_04_CF,1:true;0:false ,765,61,61,1,0,0,,221004,621004,ff,DTC_IGN_CAB_RL_12_CF,1:true;0:false ,765,62,62,1,0,0,,221004,621004,ff,DTC_IGN_CAB_RL_14_CF,1:true;0:false ,765,63,63,1,0,0,,221004,621004,ff,DTC_IGN_OFFLOAD1_RL_12_CF,1:true;0:false ,765,64,64,1,0,0,,221004,621004,ff,DTC_IGN_OFFLOAD1_RL_14_CF,1:true;0:false ,765,65,65,1,0,0,,221004,621004,ff,DTC_IGN_OFFLOAD2_RL_12_CF,1:true;0:false ,765,66,66,1,0,0,,221004,621004,ff,DTC_IGN_OFFLOAD2_RL_14_CF,1:true;0:false ,765,67,67,1,0,0,,221004,621004,ff,DTC_IRLW_04_CF,1:true;0:false ,765,68,68,1,0,0,,221004,621004,ff,DTC_IRRW_04_CF,1:true;0:false ,765,69,69,1,0,0,,221004,621004,ff,DTC_LCM01_04_CF,1:true;0:false ,765,70,70,1,0,0,,221004,621004,ff,DTC_LCM02_04_CF,1:true;0:false ,765,71,71,1,0,0,,221004,621004,ff,DTC_LCM03_04_CF,1:true;0:false ,765,72,72,1,0,0,,221004,621004,ff,DTC_LCM04_04_CF,1:true;0:false ,765,73,73,1,0,0,,221004,621004,ff,DTC_LCM05_04_CF,1:true;0:false ,765,74,74,1,0,0,,221004,621004,ff,DTC_LCM06_04_CF,1:true;0:false ,765,75,75,1,0,0,,221004,621004,ff,DTC_LCM07_04_CF,1:true;0:false ,765,76,76,1,0,0,,221004,621004,ff,DTC_LCM08_04_CF,1:true;0:false ,765,77,77,1,0,0,,221004,621004,ff,DTC_LCM09_04_CF,1:true;0:false ,765,78,78,1,0,0,,221004,621004,ff,DTC_LCM10_04_CF,1:true;0:false ,765,79,79,1,0,0,,221004,621004,ff,DTC_LCM11_04_CF,1:true;0:false ,765,80,80,1,0,0,,221004,621004,ff,DTC_LCM12_04_CF,1:true;0:false ,765,81,81,1,0,0,,221004,621004,ff,DTC_LIGHT_SENSOR_49_CF,1:true;0:false ,765,82,82,1,0,0,,221004,621004,ff,DTC_LIN_ACCESS_08_CF,1:true;0:false ,765,83,83,1,0,0,,221004,621004,ff,DTC_LIN_AMBIANT_08_CF,1:true;0:false ,765,84,84,1,0,0,,221004,621004,ff,DTC_LIN_DOOR_08_CF,1:true;0:false ,765,85,85,1,0,0,,221004,621004,ff,DTC_LIN_RLS_08_CF,1:true;0:false ,765,86,86,1,0,0,,221004,621004,ff,DTC_MASTER_MOTOR_96_CF,1:true;0:false ,765,87,87,1,0,0,,221004,621004,ff,DTC_MOTOR_COMM_08_CF,1:true;0:false ,765,88,88,1,0,0,,221004,621004,ff,DTC_PMU_04_CF,1:true;0:false ,765,89,89,1,0,0,,221004,621004,ff,DTC_PTC1_RL_12_CF,1:true;0:false ,765,90,90,1,0,0,,221004,621004,ff,DTC_PTC1_RL_14_CF,1:true;0:false ,765,91,91,1,0,0,,221004,621004,ff,DTC_PTC2_RL_12_CF,1:true;0:false ,765,92,92,1,0,0,,221004,621004,ff,DTC_PTC2_RL_14_CF,1:true;0:false ,765,93,93,1,0,0,,221004,621004,ff,DTC_PTC3_RL_12_CF,1:true;0:false ,765,94,94,1,0,0,,221004,621004,ff,DTC_PTC3_RL_14_CF,1:true;0:false ,765,95,95,1,0,0,,221004,621004,ff,DTC_PWM_ROOMLAMP_1_12_CF,1:true;0:false ,765,96,96,1,0,0,,221004,621004,ff,DTC_SSM_44_CF,1:true;0:false ,765,97,97,1,0,0,,221004,621004,ff,DTC_PWM_ROOMLAMP_2_12_CF,1:true;0:false ,765,98,98,1,0,0,,221004,621004,ff,DTC_CAN_CGW_87_CF,1:true;0:false ,765,99,99,1,0,0,,221004,621004,ff,DTC_PWM_ROOMLAMP_3_12_CF,1:true;0:false ,765,100,100,1,0,0,,221004,621004,ff,DTC_CAN_BMS_12V_87_CF,1:true;0:false ,765,101,101,1,0,0,,221004,621004,ff,DTC_PWM_ROOMLAMP_4_12_CF,1:true;0:false ,765,103,103,1,0,0,,221004,621004,ff,DTC_PWM_ROOMLAMP_5_12_CF,1:true;0:false ,765,105,105,1,0,0,,221004,621004,ff,DTC_PWM_ROOMLAMP_6_12_CF,1:true;0:false ,765,106,106,1,0,0,,221004,621004,ff,DTC_PWM_ROOMLAMP_6_14_CF,1:true;0:false ,765,107,107,1,0,0,,221004,621004,ff,DTC_PWR_AT_LOCKED_11_CF,1:true;0:false ,765,108,108,1,0,0,,221004,621004,ff,DTC_PWR_AUTO_LIGHT_15_CF,1:true;0:false ,765,109,109,1,0,0,,221004,621004,ff,DTC_PWR_DOORLOCK1_14_CF,1:true;0:false ,765,110,110,1,0,0,,221004,621004,ff,DTC_PWR_DOORLOCK2_14_CF,1:true;0:false ,765,111,111,1,0,0,,221004,621004,ff,DTC_PWR_ECU_14_CF,1:true;0:false ,765,112,112,1,0,0,,221004,621004,ff,DTC_PWR_FLASHERS_14_CF,1:true;0:false ,765,113,113,1,0,0,,221004,621004,ff,DTC_PWR_STOP_LAMP_14_CF,1:true;0:false ,765,114,114,1,0,0,,221004,621004,ff,DTC_PWR_WIPER_14_CF,1:true;0:false ,765,115,115,1,0,0,,221004,621004,ff,DTC_RAIN_SENSOR_49_CF,1:true;0:false ,765,116,116,1,0,0,,221004,621004,ff,DTC_RAM_44_CF,1:true;0:false ,765,117,117,1,0,0,,221004,621004,ff,DTC_REAR_DEFROSTER_12_CF,1:true;0:false ,765,118,118,1,0,0,,221004,621004,ff,DTC_REAR_DEFROSTER_14_CF,1:true;0:false ,765,119,119,1,0,0,,221004,621004,ff,DTC_REAR_WIPER_64_CF,1:true;0:false ,765,120,120,1,0,0,,221004,621004,ff,DTC_REGISTERS_43_CF,1:true;0:false ,765,121,121,1,0,0,,221004,621004,ff,DTC_ROM_45_CF,1:true;0:false ,765,122,122,1,0,0,,221004,621004,ff,DTC_ROOMLAMP_BATSAVER_RL_12_CF,1:true;0:false ,765,123,123,1,0,0,,221004,621004,ff,DTC_ROOMLAMP_BATSAVER_RL_14_CF,1:true;0:false ,765,124,124,1,0,0,,221004,621004,ff,DTC_SAFETY_LINE_ESCL_11_CF,1:true;0:false ,765,125,125,1,0,0,,221004,621004,ff,DTC_SAFETY_LINE_ESCL_12_CF,1:true;0:false ,765,127,127,1,0,0,,221004,621004,ff,DTC_SLAVE_MOTOR_96_CF,1:true;0:false ,765,128,128,1,0,0,,221004,621004,ff,DTC_SRU_04_CF,1:true;0:false ,765,129,129,1,0,0,,221004,621004,ff,DTC_SSU_04_CF,1:true;0:false ,765,130,130,1,0,0,,221004,621004,ff,DTC_ST_CUT_RELAY_12_CF,1:true;0:false ,765,131,131,1,0,0,,221004,621004,ff,DTC_ST_CUT_RELAY_14_CF,1:true;0:false ,765,132,132,1,0,0,,221004,621004,ff,DTC_ST_CUT_RELAY_23_CF,1:true;0:false ,765,133,133,1,0,0,,221004,621004,ff,DTC_ST_CUT_RELAY_24_CF,1:true;0:false ,765,134,134,1,0,0,,221004,621004,ff,DTC_STOP_LAMP_1_OR_2_11_CF,1:true;0:false ,765,135,135,1,0,0,,221004,621004,ff,DTC_STOP_LAMP_1_OR_2_15_CF,1:true;0:false ,765,136,136,1,0,0,,221004,621004,ff,DTC_STOP_LAMP_3_11_CF,1:true;0:false ,765,137,137,1,0,0,,221004,621004,ff,DTC_STOP_LAMP_3_15_CF,1:true;0:false ,765,138,138,1,0,0,,221004,621004,ff,DTC_STOP_PEDAL_01_CF,1:true;0:false ,765,139,139,1,0,0,,221004,621004,ff,DTC_STOP_PEDAL_02_CF,1:true;0:false ,765,140,140,1,0,0,,221004,621004,ff,DTC_STOP_PEDAL_SW1_23_CF,1:true;0:false ,765,141,141,1,0,0,,221004,621004,ff,DTC_STOP_PEDAL_SW1_24_CF,1:true;0:false ,765,142,142,1,0,0,,221004,621004,ff,DTC_STOP_PEDAL_SW2_23_CF,1:true;0:false ,765,143,143,1,0,0,,221004,621004,ff,DTC_STOP_PEDAL_SW2_24_CF,1:true;0:false ,765,144,144,1,0,0,,221004,621004,ff,DTC_TAILGATE_OPENER_11_CF,1:true;0:false ,765,145,145,1,0,0,,221004,621004,ff,DTC_TAILGATE_OPENER_15_CF,1:true;0:false ,765,146,146,1,0,0,,221004,621004,ff,DTC_TPMS_COMM_SENSOR_1_21_CF,1:true;0:false ,765,147,147,1,0,0,,221004,621004,ff,DTC_TPMS_COMM_SENSOR_2_21_CF,1:true;0:false ,765,148,148,1,0,0,,221004,621004,ff,DTC_TPMS_COMM_SENSOR_3_21_CF,1:true;0:false ,765,149,149,1,0,0,,221004,621004,ff,DTC_TPMS_COMM_SENSOR_4_21_CF,1:true;0:false ,765,150,150,1,0,0,,221004,621004,ff,DTC_TPMS_FUNCTION_54_CF,1:true;0:false ,765,151,151,1,0,0,,221004,621004,ff,DTC_TPMS_FUNCTION_55_CF,1:true;0:false ,765,152,152,1,0,0,,221004,621004,ff,DTC_TPMS_FUNCTION_86_CF,1:true;0:false ,765,153,153,1,0,0,,221004,621004,ff,DTC_TPMS_SENSOR_1_16_CF,1:true;0:false ,765,154,154,1,0,0,,221004,621004,ff,DTC_TPMS_SENSOR_1_68_CF,1:true;0:false ,765,155,155,1,0,0,,221004,621004,ff,DTC_TPMS_SENSOR_2_16_CF,1:true;0:false ,765,156,156,1,0,0,,221004,621004,ff,DTC_TPMS_SENSOR_2_68_CF,1:true;0:false ,765,157,157,1,0,0,,221004,621004,ff,DTC_TPMS_SENSOR_3_16_CF,1:true;0:false ,765,158,158,1,0,0,,221004,621004,ff,DTC_TPMS_SENSOR_3_68_CF,1:true;0:false ,765,159,159,1,0,0,,221004,621004,ff,DTC_TPMS_SENSOR_4_16_CF,1:true;0:false ,765,160,160,1,0,0,,221004,621004,ff,DTC_TPMS_SENSOR_4_68_CF,1:true;0:false ,765,161,161,1,0,0,,221004,621004,ff,DTC_TPMS_WHEEL_1_7A_CF,1:true;0:false ,765,162,162,1,0,0,,221004,621004,ff,DTC_TPMS_WHEEL_1_7B_CF,1:true;0:false ,765,163,163,1,0,0,,221004,621004,ff,DTC_TPMS_WHEEL_2_7A_CF,1:true;0:false ,765,164,164,1,0,0,,221004,621004,ff,DTC_TPMS_WHEEL_2_7B_CF,1:true;0:false ,765,165,165,1,0,0,,221004,621004,ff,DTC_TPMS_WHEEL_3_7A_CF,1:true;0:false ,765,166,166,1,0,0,,221004,621004,ff,DTC_TPMS_WHEEL_3_7B_CF,1:true;0:false ,765,167,167,1,0,0,,221004,621004,ff,DTC_TPMS_WHEEL_4_7A_CF,1:true;0:false ,765,168,168,1,0,0,,221004,621004,ff,DTC_TPMS_WHEEL_4_7B_CF,1:true;0:false ,765,169,169,1,0,0,,221004,621004,ff,DTC_DRIVER_DOOR_01_CF,1:true;0:false ,765,170,170,1,0,0,,221004,621004,ff,DTC_TRAILER_DI_LEFT_12_CF,1:true;0:false ,765,171,171,1,0,0,,221004,621004,ff,DTC_TRAILER_DI_LEFT_14_CF,1:true;0:false ,765,172,172,1,0,0,,221004,621004,ff,DTC_TRAILER_DI_RIGHT_12_CF,1:true;0:false ,765,173,173,1,0,0,,221004,621004,ff,DTC_TRAILER_DI_RIGHT_14_CF,1:true;0:false ,765,174,174,1,0,0,,221004,621004,ff,DTC_TRANSPONDER_31_CF,1:true;0:false ,765,175,175,1,0,0,,221004,621004,ff,DTC_WIPER_TEACHIN_06_CF,1:true;0:false ,765,176,176,1,0,0,,221004,621004,ff,DTC_WL_AUTHORIZATION_RL_12_CF,1:true;0:false ,765,177,177,1,0,0,,221004,621004,ff,DTC_WL_AUTHORIZATION_RL_14_CF,1:true;0:false ,765,178,178,1,0,0,,221004,621004,ff,DTC_CAN_ACU_87_CF,1:true;0:false ,765,179,179,1,0,0,,221004,621004,ff,DTC_CAN_ADB_87_CF,1:true;0:false ,765,180,180,1,0,0,,221004,621004,ff,DTC_CAN_ANC_87_CF,1:true;0:false ,765,181,181,1,0,0,,221004,621004,ff,DTC_CAN_ATCU_87_CF,1:true;0:false ,765,182,182,1,0,0,,221004,621004,ff,DTC_CAN_AUDIO_AMP_87_CF,1:true;0:false ,765,183,183,1,0,0,,221004,621004,ff,DTC_CAN_BCM_00_CF,1:true;0:false ,765,184,184,1,0,0,,221004,621004,ff,DTC_CAN_CPLC_87_CF,1:true;0:false ,765,185,185,1,0,0,,221004,621004,ff,DTC_CAN_EBA_87_CF,1:true;0:false ,765,186,186,1,0,0,,221004,621004,ff,DTC_CAN_ECM_87_CF,1:true;0:false ,765,187,187,1,0,0,,221004,621004,ff,DTC_CAN_EPKB_87_CF,1:true;0:false ,765,188,188,1,0,0,,221004,621004,ff,DTC_CAN_FR_CAMERA_87_CF,1:true;0:false ,765,189,189,1,0,0,,221004,621004,ff,DTC_CAN_HEVC_87_CF,1:true;0:false ,765,190,190,1,0,0,,221004,621004,ff,DTC_CAN_HFM_87_CF,1:true;0:false ,765,191,191,1,0,0,,221004,621004,ff,DTC_CAN_HVAC_87_CF,1:true;0:false ,765,192,192,1,0,0,,221004,621004,ff,DTC_CAN_IVI_87_CF,1:true;0:false ,765,193,193,1,0,0,,221004,621004,ff,DTC_CAN_METER_87_CF,1:true;0:false ,765,194,194,1,0,0,,221004,621004,ff,DTC_CAN_PBD_87_CF,1:true;0:false ,765,195,195,1,0,0,,221004,621004,ff,DTC_CAN_TCU_87_CF,1:true;0:false ,765,196,196,1,0,0,,221004,621004,ff,DTC_CAN_USM_87_CF,1:true;0:false ,765,197,197,1,0,0,,221004,621004,ff,DTC_CAN_VDC_87_CF,1:true;0:false ,765,198,198,1,0,0,,221004,621004,ff,DTC_CAN_DSMU_87_CF,1:true;0:false ,765,199,199,1,0,0,,221004,621004,ff,DTC_CAN_DSU_87_CF,1:true;0:false ,765,200,200,1,0,0,,221004,621004,ff,DTC_CAN_EVAP_87_CF,1:true;0:false ,765,201,201,1,0,0,,221004,621004,ff,DTC_SHIFTLOCK_RL_12_CF,1:true;0:false ,765,202,202,1,0,0,,221004,621004,ff,DTC_SHIFTLOCK_RL_14_CF,1:true;0:false ,765,203,203,1,0,0,,221004,621004,ff,DTC_WL_CENTRAL_CLOSE_RL_12_CF,1:true;0:false ,765,204,204,1,0,0,,221004,621004,ff,DTC_WL_CENTRAL_CLOSE_RL_14_CF,1:true;0:false ,765,205,205,1,0,0,,221004,621004,ff,DTC_CAN_ADAS_87_CF,1:true;0:false ,765,24,24,1,0,0,,221005,621005,ff,PASSENGER_MIRROR_ECU_CF,1:true;0:false ,765,24,24,1,0,0,,221006,621006,ff,DTC_CAN_ADB_87_CF,1:true;0:false ,765,24,24,1,0,0,,22100B,62100B,ff,DTC_CAN_ANC_87_CF,1:true;0:false ,765,24,24,1,0,0,,22100C,62100C,ff,DTC_CAN_ATCU_87_CF,1:true;0:false ,765,24,24,1,0,0,,22100D,62100D,ff,DTC_CAN_AUDIO_AMP_87_CF,1:true;0:false ,765,24,24,1,0,0,,22100E,62100E,ff,DTC_CAN_BCM_00_CF,1:true;0:false ,765,24,24,1,0,0,,22100F,62100F,ff,DTC_CAN_CPLC_87_CF,1:true;0:false ,765,24,24,1,0,0,,221010,621010,ff,DTC_CAN_EBA_87_CF,1:true;0:false ,765,24,24,1,0,0,,221011,621011,ff,DTC_CAN_ECM_87_CF,1:true;0:false ,765,24,24,1,0,0,,221012,621012,ff,DTC_CAN_EPKB_87_CF,1:true;0:false ,765,24,24,1,0,0,,221013,621013,ff,DTC_CAN_FR_CAMERA_87_CF,1:true;0:false ,765,24,24,1,0,0,,221014,621014,ff,DTC_CAN_HEVC_87_CF,1:true;0:false ,765,24,24,1,0,0,,221015,621015,ff,DTC_CAN_HFM_87_CF,1:true;0:false ,765,24,24,1,0,0,,221016,621016,ff,DTC_CAN_HVAC_87_CF,1:true;0:false ,765,24,24,1,0,0,,221017,621017,ff,DTC_CAN_IVI_87_CF,1:true;0:false ,765,24,24,1,0,0,,221018,621018,ff,DTC_CAN_METER_87_CF,1:true;0:false ,765,24,24,1,0,0,,221019,621019,ff,DTC_CAN_PBD_87_CF,1:true;0:false ,765,24,24,1,0,0,,22101A,62101A,ff,DTC_CAN_TCU_87_CF,1:true;0:false ,765,24,24,1,0,0,,22101B,62101B,ff,DTC_CAN_USM_87_CF,1:true;0:false ,765,24,24,1,0,0,,22101C,62101C,ff,DTC_CAN_VDC_87_CF,1:true;0:false ,765,24,24,1,0,0,,22101D,62101D,ff,DTC_CAN_ACU_87_CF,1:true;0:false ,765,24,31,1,0,0,,22101E,62101E,ff,ECHO_RF_RKE_CF,0:RF_RKE_DEBUG_NONE;1:ECHO_RF_RKE_NOT_USED_1;2:DEBUG_ECHO_RF_DATA;4:ECHO_RF_RKE_NOT_USED_4;3:DEBUG_ECHO_RF_CW;5:DEBUG_CLIENT_ECHO_RF_DATA_FOR_ALL_FCT ,765,24,39,10,0,0,ms,22101F,62101F,ff,POLLING_A_IVC_PRESENCE_TM_CF ,765,24,31,1,0,0,,221020,621020,ff,STOP_AND_START_SW_TYPE_CF,0:NO_BUTTON_SW3;1:ZEN_BUTTON_SW3;2:STOP_AND_START_BUTTON_SW3 ,765,24,39,10,0,0,ms,221021,621021,ff,HORN_DURATION_TM_CF ,765,24,24,1,0,0,,221022,621022,ff,MONOSTABLE_SHIFTER_PARK_CF,1:true;0:false ,765,24,31,1,0,0,,221023,621023,ff,AL_N_RF_FAT_ERROR_CF ,765,24,24,1,0,0,,221024,621024,ff,BATTERY_CONNECTION_STRAT_CF,1:true;0:false ,765,24,39,10,0,0,ms,221025,621025,ff,RESTART_AFTER_STALL_TM_CF ,765,24,24,1,0,0,,221026,621026,ff,WITH_RESTART_AFTER_STALL_CF,1:true;0:false ,765,24,24,1,0,0,,221027,621027,ff,ENGINE_STOP_REQUEST_CF,1:true;0:false ,765,24,24,1,0,0,,221028,621028,ff,IGN_TIMER_CANCEL_DTOOL_CF,1:true;0:false ,765,24,24,1,0,0,,221029,621029,ff,IGN_TIMER_CANCEL_HZ_LAMP_CF,1:true;0:false ,765,24,31,1,0,0,,22102A,62102A,ff,AHL_ADB_MARKET_CF,0:NO_AHL_NO_ADB;1:AHL_ON;2:ADB_ON;3:AHL_ADB_RESERVED ,765,24,31,1,0,0,,22102B,62102B,ff,AUTO_HEADLAMP_HMI_CF,0:HMI_NISSAN;1:HMI_RENAULT ,765,24,39,10,0,0,ms,22102C,62102C,ff,AHL_FAILURE_WAIT_TM_CF ,765,24,39,10,0,0,ms,22102D,62102D,ff,AHL_FAILURE_CONF_TM_CF ,765,24,24,1,0,0,,22102E,62102E,ff,ADB_CONFIG_BY_USER_CF,1:true;0:false ,765,24,39,10,0,0,ms,22102F,62102F,ff,LCU_LOSS_TM_CF ,765,24,31,1,0,0,time,221030,621030,ff,PHONE_REMOTE_FLASH_NB_CF ,765,24,39,.25,20000,1,°C,221031,621031,ff,TEMP_MAX_CF ,765,24,55,1,0,0,,221032,621032,4ff,MAX_TIME_TM_CF ,765,24,55,1,0,0,,221033,621033,4ff,PRM_MAINTAIN_FOR_PROG_TM_CF ,765,24,39,10,0,0,ms,221034,621034,ff,DTOOL_ABSENT_TM_CF ,765,24,24,1,0,0,,221035,621035,ff,WITH_HV_MOTOR_START_CF,1:true;0:false ,765,24,24,1,0,0,,221036,621036,ff,WITH_SHIFT_LOCK_RES_CF,1:true;0:false ,765,24,24,1,0,0,,221037,621037,ff,CHARGE_CALENDARS_CF,1:true;0:false ,765,24,24,1,0,0,,221038,621038,ff,RES_PRESOAK_CALENDARS_CF,1:true;0:false ,765,24,31,10,0,0,ms,221039,621039,ff,CONF_VS_CUT_OFF_PEND_TM_CF ,765,24,39,10,0,0,ms,22103A,62103A,ff,CONF_VS_UNAVAILABLE_TM_CF ,765,24,24,1,0,0,,22103B,62103B,ff,DTC_CAN_DSMU_87_CF,1:true;0:false ,765,24,24,1,0,0,,22103C,62103C,ff,DTC_CAN_DSU_87_CF,1:true;0:false ,765,24,24,1,0,0,,22103D,62103D,ff,DTC_CAN_EVAP_87_CF,1:true;0:false ,765,24,24,1,0,0,,22103E,62103E,ff,DTC_DRIVER_DOOR_01_CF,1:true;0:false ,765,24,24,1,0,0,,22103F,62103F,ff,DTC_SHIFTLOCK_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,221040,621040,ff,DTC_SHIFTLOCK_RL_14_CF,1:true;0:false ,765,24,55,1,0,0,,221041,621041,4ff,TPMS_WHEEL_ID1_CF_S ,765,24,55,1,0,0,,221042,621042,4ff,TPMS_WHEEL_ID2_CF_S ,765,24,55,1,0,0,,221043,621043,4ff,TPMS_WHEEL_ID3_CF_S ,765,24,55,1,0,0,,221044,621044,4ff,TPMS_WHEEL_ID4_CF_S ,765,24,24,1,0,0,,221045,621045,ff,DTC_WL_CENTRAL_CLOSE_RL_14_CF,1:true;0:false ,765,24,24,1,0,0,,221046,621046,ff,DTC_WL_CENTRAL_CLOSE_RL_12_CF,1:true;0:false ,765,24,24,1,0,0,,221047,621047,ff,WITH_SW_DEBUG_CF,1:true;0:false ,765,24,31,1,0,0,%,221048,621048,ff,COEF_INTENSITY_AREA1_CF ,765,24,31,1,0,0,%,221049,621049,ff,COEF_INTENSITY_AREA2_CF ,765,24,31,1,0,0,%,22104A,62104A,ff,COEF_INTENSITY_AREA3_CF ,765,24,24,1,0,0,,22104B,62104B,ff,TECHNICAL_WAKEUP_FULL_CF,1:true;0:false ,765,24,39,1,0,0,min,22104C,62104C,ff,RES_PROG_LAST_CYCLE_TM_CF ,765,24,24,1,0,0,,22104E,62104E,ff,DTC_SSM_44_CF,1:true;0:false ,765,24,24,1,0,0,,22104F,62104F,ff,DTC_CAN_CGW_87_CF,1:true;0:false ,765,24,24,1,0,0,,221050,621050,ff,DTC_CAN_BMS_12V_87_CF,1:true;0:false ,765,24,55,1,0,0,,221051,621051,4ff,IL_MAINTIENT_LONG_TM_CF ,765,24,24,1,0,0,,221052,621052,ff,EPB_ECU_CF,1:true;0:false ,765,24,24,1,0,0,,221053,621053,ff,REAR_SEAT_ALERT_CF,1:true;0:false ,765,24,24,1,0,0,,221054,621054,ff,ALERT_PAUZE_DRIVER_DOOR_CF,1:true;0:false ,765,24,24,1,0,0,,221055,621055,ff,ALERT_PAUZE_BACK_DOOR_CF,1:true;0:false ,765,24,24,1,0,0,,221056,621056,ff,ALERT_PAUZE_ASSIST_DOOR_CF,1:true;0:false ,765,24,24,1,0,0,,221057,621057,ff,REMOTELIGHT_PHONE_DISPLAY_CF,1:true;0:false ,765,24,24,1,0,0,,221058,621058,ff,SET_OFF_IGN_BY_CHANGE_DOORS_CF,1:true;0:false ,765,24,24,1,0,0,,221059,621059,ff,ABSENT_CARD_EXTERNAL_JINGLE_CF,1:true;0:false ,765,24,24,1,0,0,,22105A,62105A,ff,IGN_PERMANENT_MMI_CF,1:true;0:false ,765,24,24,1,0,0,,22105B,62105B,ff,WITH_VR_CF,1:true;0:false ,765,24,24,1,0,0,,22105C,62105C,ff,DTC_CAN_ADAS_87_CF,1:true;0:false ,765,24,39,.01,0,2,sec,22105D,62105D,ff,FLASHERS_ACTIVATION_DELAY_TM_CF ,765,24,39,10,0,0,ms,22105E,62105E,ff,AUTO_PARK_DELAY_TM_CF ,765,24,24,1,0,0,,22105F,62105F,ff,RISED_UP_CF,1:true;0:false ,765,24,31,1,0,0,,221060,621060,ff,RKE_BUZZER_LOCK_CF ,765,24,31,1,0,0,,221061,621061,ff,RKE_BUZZER_UNLOCK_CF ,765,24,31,1,0,0,%,221062,621062,ff,AMBIENT_BRIGHT_STEP1_CF ,765,24,31,1,0,0,%,221063,621063,ff,AMBIENT_BRIGHT_STEP2_CF ,765,24,31,1,0,0,%,221064,621064,ff,AMBIENT_BRIGHT_STEP3_CF ,765,24,31,1,0,0,%,221065,621065,ff,AMBIENT_BRIGHT_STEP4_CF ,765,24,31,1,0,0,%,221066,621066,ff,AMBIENT_BRIGHT_STEP5_CF ,765,24,31,1,0,0,,221067,621067,ff,AMBIENT_BRIGHT_CF,0:AMBIENT_BRIGHT_OFF;1:AMBIENT_BRIGHT_STEP_1;2:AMBIENT_BRIGHT_STEP_2;3:AMBIENT_BRIGHT_STEP_3;4:AMBIENT_BRIGHT_STEP_4;5:AMBIENT_BRIGHT_STEP_5 ,765,24,39,10,0,0,ms,221068,621068,ff,DELAYED_L3_OFF_TM_CF ,765,24,24,1,0,0,,221069,621069,ff,RES_US_CF,0:false;1:true ,765,24,39,10,0,0,ms,22106A,62106A,ff,RES_START_DELAY_TM_CF ,765,24,31,4,0,0,cm,22106B,62106B,ff,RES_STOP_BY_ODO_THRESH_AT_CF ,765,24,31,10,0,0,ms,222001,622001,ff,INTER_FRAMES_TM_TP ,765,24,31,10,0,0,ms,222003,622003,ff,RECEIVE_DONGLE_CODE_TM_TP ,765,24,31,1,0,0,,222007,622007,ff,ARCHI_EE_TP,0:ARCHI_EE_G3;1:ARCHI_EE_T4;2:ARCHI_EE_T4_VS;3:ARCHI_EE_C1R;4:ARCHI_EE_C1A ,765,24,39,.01,0,2,sec,222008,622008,ff,COMBI_SW_FAILURE_DETECTED_TM_TP ,765,24,39,10,0,0,ms,22200B,62200B,ff,PULSE_TURN_SW_TM_TP ,765,24,39,10,0,0,ms,22200C,62200C,ff,LOCK_PATTERN_1_TM_TP.0 ,765,40,55,10,0,0,ms,22200C,62200C,ff,LOCK_PATTERN_1_TM_TP.1 ,765,56,71,10,0,0,ms,22200C,62200C,ff,LOCK_PATTERN_1_TM_TP.2 ,765,72,87,10,0,0,ms,22200C,62200C,ff,LOCK_PATTERN_1_TM_TP.3 ,765,88,103,10,0,0,ms,22200C,62200C,ff,LOCK_PATTERN_1_TM_TP.4 ,765,104,119,10,0,0,ms,22200C,62200C,ff,LOCK_PATTERN_1_TM_TP.5 ,765,120,135,10,0,0,ms,22200C,62200C,ff,LOCK_PATTERN_1_TM_TP.6 ,765,24,39,10,0,0,ms,22200D,62200D,ff,LOCK_PATTERN_2_TM_TP.0 ,765,40,55,10,0,0,ms,22200D,62200D,ff,LOCK_PATTERN_2_TM_TP.1 ,765,56,71,10,0,0,ms,22200D,62200D,ff,LOCK_PATTERN_2_TM_TP.2 ,765,72,87,10,0,0,ms,22200D,62200D,ff,LOCK_PATTERN_2_TM_TP.3 ,765,88,103,10,0,0,ms,22200D,62200D,ff,LOCK_PATTERN_2_TM_TP.4 ,765,104,119,10,0,0,ms,22200D,62200D,ff,LOCK_PATTERN_2_TM_TP.5 ,765,120,135,10,0,0,ms,22200D,62200D,ff,LOCK_PATTERN_2_TM_TP.6 ,765,24,39,10,0,0,ms,22200E,62200E,ff,LOCK_PATTERN_3_TM_TP.0 ,765,40,55,10,0,0,ms,22200E,62200E,ff,LOCK_PATTERN_3_TM_TP.1 ,765,56,71,10,0,0,ms,22200E,62200E,ff,LOCK_PATTERN_3_TM_TP.2 ,765,72,87,10,0,0,ms,22200E,62200E,ff,LOCK_PATTERN_3_TM_TP.3 ,765,88,103,10,0,0,ms,22200E,62200E,ff,LOCK_PATTERN_3_TM_TP.4 ,765,104,119,10,0,0,ms,22200E,62200E,ff,LOCK_PATTERN_3_TM_TP.5 ,765,120,135,10,0,0,ms,22200E,62200E,ff,LOCK_PATTERN_3_TM_TP.6 ,765,24,39,10,0,0,ms,22200F,62200F,ff,LOCK_PATTERN_4_TM_TP.0 ,765,40,55,10,0,0,ms,22200F,62200F,ff,LOCK_PATTERN_4_TM_TP.1 ,765,56,71,10,0,0,ms,22200F,62200F,ff,LOCK_PATTERN_4_TM_TP.2 ,765,72,87,10,0,0,ms,22200F,62200F,ff,LOCK_PATTERN_4_TM_TP.3 ,765,88,103,10,0,0,ms,22200F,62200F,ff,LOCK_PATTERN_4_TM_TP.4 ,765,104,119,10,0,0,ms,22200F,62200F,ff,LOCK_PATTERN_4_TM_TP.5 ,765,120,135,10,0,0,ms,22200F,62200F,ff,LOCK_PATTERN_4_TM_TP.6 ,765,24,39,10,0,0,ms,222010,622010,ff,SILENT_MODE_ON_PATTERN_1_TM_TP.0 ,765,40,55,10,0,0,ms,222010,622010,ff,SILENT_MODE_ON_PATTERN_1_TM_TP.1 ,765,56,71,10,0,0,ms,222010,622010,ff,SILENT_MODE_ON_PATTERN_1_TM_TP.2 ,765,72,87,10,0,0,ms,222010,622010,ff,SILENT_MODE_ON_PATTERN_1_TM_TP.3 ,765,88,103,10,0,0,ms,222010,622010,ff,SILENT_MODE_ON_PATTERN_1_TM_TP.4 ,765,104,119,10,0,0,ms,222010,622010,ff,SILENT_MODE_ON_PATTERN_1_TM_TP.5 ,765,120,135,10,0,0,ms,222010,622010,ff,SILENT_MODE_ON_PATTERN_1_TM_TP.6 ,765,24,39,10,0,0,ms,222011,622011,ff,SILENT_MODE_ON_PATTERN_2_TM_TP.0 ,765,40,55,10,0,0,ms,222011,622011,ff,SILENT_MODE_ON_PATTERN_2_TM_TP.1 ,765,56,71,10,0,0,ms,222011,622011,ff,SILENT_MODE_ON_PATTERN_2_TM_TP.2 ,765,72,87,10,0,0,ms,222011,622011,ff,SILENT_MODE_ON_PATTERN_2_TM_TP.3 ,765,88,103,10,0,0,ms,222011,622011,ff,SILENT_MODE_ON_PATTERN_2_TM_TP.4 ,765,104,119,10,0,0,ms,222011,622011,ff,SILENT_MODE_ON_PATTERN_2_TM_TP.5 ,765,120,135,10,0,0,ms,222011,622011,ff,SILENT_MODE_ON_PATTERN_2_TM_TP.6 ,765,24,39,10,0,0,ms,222012,622012,ff,SILENT_MODE_OFF_PATTERN_2_TM_TP.0 ,765,40,55,10,0,0,ms,222012,622012,ff,SILENT_MODE_OFF_PATTERN_2_TM_TP.1 ,765,56,71,10,0,0,ms,222012,622012,ff,SILENT_MODE_OFF_PATTERN_2_TM_TP.2 ,765,72,87,10,0,0,ms,222012,622012,ff,SILENT_MODE_OFF_PATTERN_2_TM_TP.3 ,765,88,103,10,0,0,ms,222012,622012,ff,SILENT_MODE_OFF_PATTERN_2_TM_TP.4 ,765,104,119,10,0,0,ms,222012,622012,ff,SILENT_MODE_OFF_PATTERN_2_TM_TP.5 ,765,120,135,10,0,0,ms,222012,622012,ff,SILENT_MODE_OFF_PATTERN_2_TM_TP.6 ,765,24,39,10,0,0,ms,222013,622013,ff,SUPERLOCK_PATTERN_1_TM_TP.0 ,765,40,55,10,0,0,ms,222013,622013,ff,SUPERLOCK_PATTERN_1_TM_TP.1 ,765,56,71,10,0,0,ms,222013,622013,ff,SUPERLOCK_PATTERN_1_TM_TP.2 ,765,72,87,10,0,0,ms,222013,622013,ff,SUPERLOCK_PATTERN_1_TM_TP.3 ,765,88,103,10,0,0,ms,222013,622013,ff,SUPERLOCK_PATTERN_1_TM_TP.4 ,765,104,119,10,0,0,ms,222013,622013,ff,SUPERLOCK_PATTERN_1_TM_TP.5 ,765,120,135,10,0,0,ms,222013,622013,ff,SUPERLOCK_PATTERN_1_TM_TP.6 ,765,24,39,10,0,0,ms,222014,622014,ff,SUPERLOCK_PATTERN_2_TM_TP.0 ,765,40,55,10,0,0,ms,222014,622014,ff,SUPERLOCK_PATTERN_2_TM_TP.1 ,765,56,71,10,0,0,ms,222014,622014,ff,SUPERLOCK_PATTERN_2_TM_TP.2 ,765,72,87,10,0,0,ms,222014,622014,ff,SUPERLOCK_PATTERN_2_TM_TP.3 ,765,88,103,10,0,0,ms,222014,622014,ff,SUPERLOCK_PATTERN_2_TM_TP.4 ,765,104,119,10,0,0,ms,222014,622014,ff,SUPERLOCK_PATTERN_2_TM_TP.5 ,765,120,135,10,0,0,ms,222014,622014,ff,SUPERLOCK_PATTERN_2_TM_TP.6 ,765,24,39,10,0,0,ms,222015,622015,ff,UNLOCK_PATTERN_1_TM_TP.0 ,765,40,55,10,0,0,ms,222015,622015,ff,UNLOCK_PATTERN_1_TM_TP.1 ,765,56,71,10,0,0,ms,222015,622015,ff,UNLOCK_PATTERN_1_TM_TP.2 ,765,72,87,10,0,0,ms,222015,622015,ff,UNLOCK_PATTERN_1_TM_TP.3 ,765,88,103,10,0,0,ms,222015,622015,ff,UNLOCK_PATTERN_1_TM_TP.4 ,765,104,119,10,0,0,ms,222015,622015,ff,UNLOCK_PATTERN_1_TM_TP.5 ,765,120,135,10,0,0,ms,222015,622015,ff,UNLOCK_PATTERN_1_TM_TP.6 ,765,24,39,10,0,0,ms,222016,622016,ff,UNLOCK_PATTERN_2_TM_TP.0 ,765,40,55,10,0,0,ms,222016,622016,ff,UNLOCK_PATTERN_2_TM_TP.1 ,765,56,71,10,0,0,ms,222016,622016,ff,UNLOCK_PATTERN_2_TM_TP.2 ,765,72,87,10,0,0,ms,222016,622016,ff,UNLOCK_PATTERN_2_TM_TP.3 ,765,88,103,10,0,0,ms,222016,622016,ff,UNLOCK_PATTERN_2_TM_TP.4 ,765,104,119,10,0,0,ms,222016,622016,ff,UNLOCK_PATTERN_2_TM_TP.5 ,765,120,135,10,0,0,ms,222016,622016,ff,UNLOCK_PATTERN_2_TM_TP.6 ,765,24,39,10,0,0,ms,222017,622017,ff,UNLOCK_PATTERN_3_TM_TP.0 ,765,40,55,10,0,0,ms,222017,622017,ff,UNLOCK_PATTERN_3_TM_TP.1 ,765,56,71,10,0,0,ms,222017,622017,ff,UNLOCK_PATTERN_3_TM_TP.2 ,765,72,87,10,0,0,ms,222017,622017,ff,UNLOCK_PATTERN_3_TM_TP.3 ,765,88,103,10,0,0,ms,222017,622017,ff,UNLOCK_PATTERN_3_TM_TP.4 ,765,104,119,10,0,0,ms,222017,622017,ff,UNLOCK_PATTERN_3_TM_TP.5 ,765,120,135,10,0,0,ms,222017,622017,ff,UNLOCK_PATTERN_3_TM_TP.6 ,765,24,39,10,0,0,ms,222018,622018,ff,UNLOCK_PATTERN_4_TM_TP.0 ,765,40,55,10,0,0,ms,222018,622018,ff,UNLOCK_PATTERN_4_TM_TP.1 ,765,56,71,10,0,0,ms,222018,622018,ff,UNLOCK_PATTERN_4_TM_TP.2 ,765,72,87,10,0,0,ms,222018,622018,ff,UNLOCK_PATTERN_4_TM_TP.3 ,765,88,103,10,0,0,ms,222018,622018,ff,UNLOCK_PATTERN_4_TM_TP.4 ,765,104,119,10,0,0,ms,222018,622018,ff,UNLOCK_PATTERN_4_TM_TP.5 ,765,120,135,10,0,0,ms,222018,622018,ff,UNLOCK_PATTERN_4_TM_TP.6 ,765,24,39,10,0,0,ms,222019,622019,ff,LOCK_BY_WAC_PATTERN_1_TM_TP.0 ,765,40,55,10,0,0,ms,222019,622019,ff,LOCK_BY_WAC_PATTERN_1_TM_TP.1 ,765,56,71,10,0,0,ms,222019,622019,ff,LOCK_BY_WAC_PATTERN_1_TM_TP.2 ,765,72,87,10,0,0,ms,222019,622019,ff,LOCK_BY_WAC_PATTERN_1_TM_TP.3 ,765,88,103,10,0,0,ms,222019,622019,ff,LOCK_BY_WAC_PATTERN_1_TM_TP.4 ,765,104,119,10,0,0,ms,222019,622019,ff,LOCK_BY_WAC_PATTERN_1_TM_TP.5 ,765,120,135,10,0,0,ms,222019,622019,ff,LOCK_BY_WAC_PATTERN_1_TM_TP.6 ,765,24,39,10,0,0,ms,22201A,62201A,ff,LOCK_BY_WAC_PATTERN_2_TM_TP.0 ,765,40,55,10,0,0,ms,22201A,62201A,ff,LOCK_BY_WAC_PATTERN_2_TM_TP.1 ,765,56,71,10,0,0,ms,22201A,62201A,ff,LOCK_BY_WAC_PATTERN_2_TM_TP.2 ,765,72,87,10,0,0,ms,22201A,62201A,ff,LOCK_BY_WAC_PATTERN_2_TM_TP.3 ,765,88,103,10,0,0,ms,22201A,62201A,ff,LOCK_BY_WAC_PATTERN_2_TM_TP.4 ,765,104,119,10,0,0,ms,22201A,62201A,ff,LOCK_BY_WAC_PATTERN_2_TM_TP.5 ,765,120,135,10,0,0,ms,22201A,62201A,ff,LOCK_BY_WAC_PATTERN_2_TM_TP.6 ,765,24,39,10,0,0,ms,22201B,62201B,ff,LOCK_BY_WAC_PATTERN_3_TM_TP.0 ,765,40,55,10,0,0,ms,22201B,62201B,ff,LOCK_BY_WAC_PATTERN_3_TM_TP.1 ,765,56,71,10,0,0,ms,22201B,62201B,ff,LOCK_BY_WAC_PATTERN_3_TM_TP.2 ,765,72,87,10,0,0,ms,22201B,62201B,ff,LOCK_BY_WAC_PATTERN_3_TM_TP.3 ,765,88,103,10,0,0,ms,22201B,62201B,ff,LOCK_BY_WAC_PATTERN_3_TM_TP.4 ,765,104,119,10,0,0,ms,22201B,62201B,ff,LOCK_BY_WAC_PATTERN_3_TM_TP.5 ,765,120,135,10,0,0,ms,22201B,62201B,ff,LOCK_BY_WAC_PATTERN_3_TM_TP.6 ,765,24,39,10,0,0,ms,22201C,62201C,ff,LOCK_BY_WAC_PATTERN_4_TM_TP.0 ,765,40,55,10,0,0,ms,22201C,62201C,ff,LOCK_BY_WAC_PATTERN_4_TM_TP.1 ,765,56,71,10,0,0,ms,22201C,62201C,ff,LOCK_BY_WAC_PATTERN_4_TM_TP.2 ,765,72,87,10,0,0,ms,22201C,62201C,ff,LOCK_BY_WAC_PATTERN_4_TM_TP.3 ,765,88,103,10,0,0,ms,22201C,62201C,ff,LOCK_BY_WAC_PATTERN_4_TM_TP.4 ,765,104,119,10,0,0,ms,22201C,62201C,ff,LOCK_BY_WAC_PATTERN_4_TM_TP.5 ,765,120,135,10,0,0,ms,22201C,62201C,ff,LOCK_BY_WAC_PATTERN_4_TM_TP.6 ,765,24,39,10,0,0,ms,22201D,62201D,ff,AUTOLOCK_ON_PATTERN_1_TM_TP.0 ,765,40,55,10,0,0,ms,22201D,62201D,ff,AUTOLOCK_ON_PATTERN_1_TM_TP.1 ,765,56,71,10,0,0,ms,22201D,62201D,ff,AUTOLOCK_ON_PATTERN_1_TM_TP.2 ,765,72,87,10,0,0,ms,22201D,62201D,ff,AUTOLOCK_ON_PATTERN_1_TM_TP.3 ,765,88,103,10,0,0,ms,22201D,62201D,ff,AUTOLOCK_ON_PATTERN_1_TM_TP.4 ,765,104,119,10,0,0,ms,22201D,62201D,ff,AUTOLOCK_ON_PATTERN_1_TM_TP.5 ,765,120,135,10,0,0,ms,22201D,62201D,ff,AUTOLOCK_ON_PATTERN_1_TM_TP.6 ,765,24,39,10,0,0,ms,22201E,62201E,ff,AUTOLOCK_ON_PATTERN_2_TM_TP.0 ,765,40,55,10,0,0,ms,22201E,62201E,ff,AUTOLOCK_ON_PATTERN_2_TM_TP.1 ,765,56,71,10,0,0,ms,22201E,62201E,ff,AUTOLOCK_ON_PATTERN_2_TM_TP.2 ,765,72,87,10,0,0,ms,22201E,62201E,ff,AUTOLOCK_ON_PATTERN_2_TM_TP.3 ,765,88,103,10,0,0,ms,22201E,62201E,ff,AUTOLOCK_ON_PATTERN_2_TM_TP.4 ,765,104,119,10,0,0,ms,22201E,62201E,ff,AUTOLOCK_ON_PATTERN_2_TM_TP.5 ,765,120,135,10,0,0,ms,22201E,62201E,ff,AUTOLOCK_ON_PATTERN_2_TM_TP.6 ,765,24,39,10,0,0,ms,22201F,62201F,ff,AUTOLOCK_OFF_PATTERN_1_TM_TP.0 ,765,40,55,10,0,0,ms,22201F,62201F,ff,AUTOLOCK_OFF_PATTERN_1_TM_TP.1 ,765,56,71,10,0,0,ms,22201F,62201F,ff,AUTOLOCK_OFF_PATTERN_1_TM_TP.2 ,765,72,87,10,0,0,ms,22201F,62201F,ff,AUTOLOCK_OFF_PATTERN_1_TM_TP.3 ,765,88,103,10,0,0,ms,22201F,62201F,ff,AUTOLOCK_OFF_PATTERN_1_TM_TP.4 ,765,104,119,10,0,0,ms,22201F,62201F,ff,AUTOLOCK_OFF_PATTERN_1_TM_TP.5 ,765,120,135,10,0,0,ms,22201F,62201F,ff,AUTOLOCK_OFF_PATTERN_1_TM_TP.6 ,765,24,39,10,0,0,ms,222020,622020,ff,AUTOLOCK_OFF_PATTERN_2_TM_TP.0 ,765,40,55,10,0,0,ms,222020,622020,ff,AUTOLOCK_OFF_PATTERN_2_TM_TP.1 ,765,56,71,10,0,0,ms,222020,622020,ff,AUTOLOCK_OFF_PATTERN_2_TM_TP.2 ,765,72,87,10,0,0,ms,222020,622020,ff,AUTOLOCK_OFF_PATTERN_2_TM_TP.3 ,765,88,103,10,0,0,ms,222020,622020,ff,AUTOLOCK_OFF_PATTERN_2_TM_TP.4 ,765,104,119,10,0,0,ms,222020,622020,ff,AUTOLOCK_OFF_PATTERN_2_TM_TP.5 ,765,120,135,10,0,0,ms,222020,622020,ff,AUTOLOCK_OFF_PATTERN_2_TM_TP.6 ,765,24,39,.01,0,2,sec,222021,622021,ff,FRAME_ABSENT_CONFIRMATION_TM_TP ,765,24,39,1,0,0,km/h,222022,622022,ff,VEHICLE_MOVING_THRESHOLD_TP ,765,24,39,1,0,0,km/h,222023,622023,ff,VEHICLE_STOPPED_THRESHOLD_TP ,765,24,31,.01,0,2,km/h,222024,622024,ff,SAFETY_LINE_SPEED_THRESHOLD_TP ,765,24,39,.01,0,2,sec,222025,622025,ff,GADE_INIT_DELAY_TM_TP ,765,24,39,10,0,0,ms,222027,622027,ff,SILENT_MODE_OFF_PATTERN_1_TM_TP.0 ,765,40,55,10,0,0,ms,222027,622027,ff,SILENT_MODE_OFF_PATTERN_1_TM_TP.1 ,765,56,71,10,0,0,ms,222027,622027,ff,SILENT_MODE_OFF_PATTERN_1_TM_TP.2 ,765,72,87,10,0,0,ms,222027,622027,ff,SILENT_MODE_OFF_PATTERN_1_TM_TP.3 ,765,88,103,10,0,0,ms,222027,622027,ff,SILENT_MODE_OFF_PATTERN_1_TM_TP.4 ,765,104,119,10,0,0,ms,222027,622027,ff,SILENT_MODE_OFF_PATTERN_1_TM_TP.5 ,765,120,135,10,0,0,ms,222027,622027,ff,SILENT_MODE_OFF_PATTERN_1_TM_TP.6 ,765,24,31,.01,0,2,sec,222028,622028,ff,DURATION_BRAKE_PRESS_TM_TP ,765,24,31,1,0,0,time,222029,622029,ff,NB_TRANS_BRAKE_FAIL1_TP ,765,24,31,1,0,0,time,22202A,62202A,ff,NB_TRANS_BRAKE_FAIL2_TP ,765,24,55,1,0,0,,22202B,62202B,4ff,DURATION_FROZEN_BRAKE_SW_TM_TP ,765,24,55,1,0,0,,22202C,62202C,4ff,ETA_PWR_AFTER_DETECT_TM_TP ,765,24,55,1,0,0,,22202D,62202D,4ff,ETA_PWR_WITHOUT_DETECT_TM_TP ,765,24,39,.01,0,2,sec,22202E,62202E,ff,DELAYED_LIN_AC_ON_TM_TP ,765,24,55,1,0,0,,22202F,62202F,4ff,DISTANCE_DELIVERY_MODE_THRES_TP ,765,24,39,10,0,0,ms,222030,622030,ff,NOMINAL_FLASHING_TIME_TM_TP ,765,24,39,10,0,0,ms,222031,622031,ff,FAILURE_FLASHING_TIME_TM_TP ,765,24,39,.01,0,2,sec,222032,622032,ff,WAIT_TO_SLEEP_TM_TP ,765,24,31,1,0,0,time,222033,622033,ff,RES_PROG_NB_CYCLES_TP ,765,24,39,.01,0,2,km,222034,622034,ff,START_NEVER_PRESENT_DISTANCE_TP ,765,24,31,10,0,0,ms,222035,622035,ff,CLUTCH_NO_FAIL_CONFIRM_TM_TP ,765,24,39,.01,0,2,km,222036,622036,ff,END_ALWAYS_PRESENT_DISTANCE_TP ,765,24,31,10,0,0,ms,222037,622037,ff,START_CLUTCH_FILTER_TM_TP ,765,24,31,10,0,0,ms,222038,622038,ff,STATIC_FAILURE_DET_FILTER_TM_TP ,765,24,55,1,0,0,,222039,622039,4ff,START_ALWAYS_PRESENT_TM_TP ,765,24,55,1,0,0,,22203A,62203A,4ff,END_ALWAYS_PRESENT_TM_TP ,765,24,39,.01,0,2,sec,22203B,62203B,ff,BCM_ANTISCANNING_TIMER_TM_TP ,765,24,31,10,0,0,ms,22203C,62203C,ff,MAX_TIME_AUTH_TM_TP ,765,24,31,10,0,0,ms,22203D,62203D,ff,ESCL_IKEY_AUTH_REQUEST_TM_TP ,765,24,39,10,0,0,ms,22203E,62203E,ff,IKEY_AUTHENT_TIMEOUT_TM_TP ,765,24,39,.01,0,2,sec,22203F,62203F,ff,AUTHENT_BYPAS_AFTER_STALL_TM_TP ,765,24,31,10,0,0,ms,222042,622042,ff,WASHER_CONFIRMATION_TM_TP ,765,24,31,1,0,0,wipes,222043,622043,ff,FR_WIPER_PROLONGATION_WIPES_TP ,765,24,39,.01,0,2,sec,222044,622044,ff,DROP_WIPE_TM_TP ,765,24,31,10,0,0,ms,222046,622046,ff,RISED_UP_TM_TP ,765,24,39,.01,0,2,sec,222047,622047,ff,SENSOR_FAILURE_FILTER_TM_TP ,765,24,39,10,0,0,ms,22204A,62204A,ff,TEACHIN_FAILURE_TM_TP ,765,24,39,.01,0,2,sec,22204C,62204C,ff,LONG_PRESS_DURATION_TM_TP ,765,24,31,10,0,0,ms,22204D,62204D,ff,NOMINAL_STCUT_OFF_DELAY_TM_TP ,765,24,31,10,0,0,ms,22204E,62204E,ff,NOMINAL_STCUT_ON_DELAY_TM_TP ,765,24,31,10,0,0,ms,22204F,62204F,ff,ENGINE_STOP_DRV_REQUEST_TM_TP ,765,24,31,.01,0,2,sec,222050,622050,ff,ENG_RAC_INCREMENT_TM_TP ,765,24,39,.01,0,2,sec,222051,622051,ff,MAX_AUTHENTICATION_TM_TP ,765,24,39,.01,0,2,sec,222052,622052,ff,MAX_CUST_CONFIRM_ENG_STOP_TM_TP ,765,24,39,.01,0,2,sec,222053,622053,ff,MAX_ENGINE_STOP_TM_TP ,765,24,39,.01,0,2,sec,222054,622054,ff,AFTER_EMERGENCY_ENG_STOP_TM_TP ,765,24,39,1,0,0,,222055,622055,ff,SEAT_BELT_FAILURE_MAX_COUNT_TP ,765,24,39,1,0,0,km/h,222056,622056,ff,MIN_SPEED_VEHICLE_MOVE_TP ,765,24,39,.01,0,2,sec,222058,622058,ff,LONG_PUSH_DELAY_TM_TP ,765,24,31,10,0,0,ms,222059,622059,ff,RKE_BUTTON_PRESSED_TM_TP ,765,24,55,1,0,0,,22205C,62205C,4ff,MAX_L3_ON_BY_DIAG_TM_TP ,765,24,31,1,0,0,km/h,22205D,62205D,ff,R_L3_SPEED_HYSTERESIS_TP ,765,24,31,10,0,0,ms,22205F,62205F,ff,MAX_CRANK_ON_VERLOG_NOK_TM_TP ,765,24,39,.01,0,2,sec,222061,622061,ff,CRANKING_VERLOG_INHIB_TM_TP ,765,24,31,1,0,0,,222062,622062,ff,ENG_RAC_START_COUNT_THRESH_TP ,765,24,39,.01,0,2,sec,222064,622064,ff,MAX_STEERING_LOCK_ANSWER_TM_TP ,765,24,39,.01,0,2,sec,222065,622065,ff,MAX_STEER_UNLOCK_ANSWER_TM_TP ,765,24,39,.01,0,2,Volt,222066,622066,ff,THRESHOLD_SUPPLYVOLTAGE_TP ,765,24,39,.01,0,2,sec,222067,622067,ff,KAZASHI_POLLING_TIMEOUT_TM_TP ,765,24,39,.01,0,2,sec,222068,622068,ff,KAZASHI_DETECTION_DELAY_TM_TP ,765,24,39,.01,0,2,sec,222069,622069,ff,DELAY_SWITCH_TM_TP ,765,24,31,10,0,0,ms,22206A,62206A,ff,CHILDLOCK_REQ_RELEASE_TIME_TP ,765,24,39,.01,0,2,sec,22206B,62206B,ff,DL_DISABLED_AFTER_CRASH_TM_TP ,765,24,39,.01,0,2,sec,22206C,62206C,ff,DL_MAX_AIRBAG_WAKE_UP_TM_TP ,765,24,31,1,0,0,,22206D,62206D,ff,DOORLOCK_CHILDLOCK_NLIM_TP ,765,24,31,10,0,0,ms,22206E,62206E,ff,FLASHERS_REQUEST_TIMEOUT_TM_TP ,765,24,55,1,0,0,,222070,622070,4ff,LONG_CDL_INDICATOR_TM_TP ,765,24,39,.01,0,2,sec,222071,622071,ff,LWS_SPEED_ABOVE_THRESH_TM_TP ,765,24,31,1,0,0,,222073,622073,ff,MAX_NB_LOCK_REQUESTS_BY_LWS_TP ,765,24,31,1,0,0,,222075,622075,ff,NUMBER_DISABLE_TP ,765,24,31,1,0,0,,222076,622076,ff,NUMBER_ENABLE_TP ,765,24,31,10,0,0,ms,222077,622077,ff,PAUSE_TIME_TP ,765,24,39,.01,0,2,sec,222078,622078,ff,RETRY_CHILDLOCK_TM_TP ,765,24,39,.01,0,2,sec,222079,622079,ff,SHORT_CDL_INDICATOR_TM_TP ,765,24,39,.01,0,2,sec,22207A,62207A,ff,SUPERLOCK_TM_TP ,765,24,39,1,0,0,min,22207C,62207C,ff,RES_PROG_INTERVALDURATION_TM_TP ,765,24,31,10,0,0,ms,22207E,62207E,ff,IKEY_BUZZER_FOR_DOORLOCK_TM_TP ,765,24,31,10,0,0,ms,22207F,62207F,ff,CLUSTER_WRONG_BEEP_REQ_TM_TP ,765,24,39,.01,0,2,sec,222080,622080,ff,OFF_DELAY_TM_TP ,765,24,39,.01,0,2,sec,222081,622081,ff,FMH_INCREMENT_ENABLED_TM_TP ,765,24,39,1.66666666666667E-04,0,3,min,222082,622082,ff,FMH_MAX_TM_TP ,765,24,39,.01,0,2,sec,222083,622083,ff,FMH_TM_TP ,765,24,39,.01,0,2,sec,222085,622085,ff,REMOTE_LIGHTING_TM_TP ,765,24,39,10,0,0,ms,222086,622086,ff,SW_AUTO_TO_MANUAL_TM_TP ,765,24,31,10,0,0,ms,22208A,62208A,ff,NEUTRAL_CONTACT_CONFIRM_TM_TP ,765,24,39,.01,0,2,sec,22208B,62208B,ff,TIME_DECREMENT_TM_TP ,765,24,39,10,0,0,ms,222090,622090,ff,ESCL_MONITORING_DELAY_TM_TP ,765,24,31,10,0,0,ms,222091,622091,ff,ESCL_MONITORING_PERIOD_TM_TP ,765,24,31,10,0,0,ms,222092,622092,ff,SAFETY_LINE_MONITORING_FILTERING_TM_TP ,765,24,39,1,0,0,mVolt,222093,622093,ff,SAFETY_LINE_MONITORING_THRESHOLD_TP ,765,24,39,.01,0,2,sec,222094,622094,ff,IMMO_DURATION_ANTI_SCANNING_TIMER_TM_TP ,765,24,55,1,0,0,,222095,622095,4ff,IMMO_DURATION_AUTHORIZATION_ECM_PAIRING_TM_TP ,765,24,55,1,0,0,,222097,622097,4ff,IMMO_DURATION_AUTHORIZATION_TCU_PAIRING_TM_TP ,765,24,31,1,0,0,time,222098,622098,ff,IMMO_NB_IGNITION_AUTO_ERASE_APV_CODE_TP ,765,24,39,.01,0,2,sec,222099,622099,ff,VERLOG_FRAME_ABSENT_TM_TP ,765,24,39,1,0,0,mVolt,22209A,62209A,ff,MAX_ANALOG_SENSOR_VALUE_TP ,765,24,39,.01,0,2,sec,22209B,62209B,ff,TRANSP_TIMEOUT_AUTH_TM_TP ,765,24,31,1,0,0,-,22209C,62209C,ff,CKC_PHIOC_TP ,765,24,31,1,0,0,hour,22209D,62209D,ff,EEPROM_CYCLE_DURATION_TM_TP ,765,24,39,.01,0,2,sec,22209E,62209E,ff,DEFROST_RELAY_PROTECT_TM_TP ,765,24,39,.01,0,2,sec,2220A0,6220A0,ff,FRONT_DEFROST_RELEASE_TM_TP ,765,24,39,.01,0,2,sec,2220A1,6220A1,ff,REAR_DEFROST_ENGAGEMENT_TM_TP ,765,24,39,.01,0,2,sec,2220A2,6220A2,ff,REAR_DEFROST_RELEASE_TM_TP ,765,24,39,.01,0,2,sec,2220A3,6220A3,ff,WAIT_FOR_ENGINE_READY_TM_TP ,765,24,39,.01,0,2,sec,2220A4,6220A4,ff,INTERIOR_LIGHTS_TM_TP ,765,24,39,1,0,0,Hz,2220A5,6220A5,ff,INTL_PWM_FREQ_TP ,765,24,31,1,0,0,%,2220A6,6220A6,ff,INTL_PWM_MIN_TP ,765,24,31,1,0,0,%,2220A7,6220A7,ff,INTL_PWM_MAX_TP ,765,24,39,.01,0,2,sec,2220A8,6220A8,ff,INTL_PWM_ON_TM_TP ,765,24,39,.01,0,2,sec,2220A9,6220A9,ff,INTL_PWM_OFF_TM_TP ,765,24,39,10,0,0,ms,2220AA,6220AA,ff,RES_ACTIVATION_FAILURE_TM_TP ,765,24,39,10,0,0,ms,2220AB,6220AB,ff,RES_BY_KEY_TM_TP ,765,24,39,10,0,0,ms,2220AC,6220AC,ff,CHECK_TEMP_TM_TP ,765,24,39,10,0,0,ms,2220AE,6220AE,ff,CHECK_VERLOG_TM_TP ,765,24,39,.01,0,2,sec,2220AF,6220AF,ff,CHECK_DURATION_START_TM_TP ,765,24,39,10,0,0,ms,2220B0,6220B0,ff,LOST_FRAME_ECM_TM_TP ,765,24,39,10,0,0,ms,2220B1,6220B1,ff,CHECK_TRANS_TM_TP ,765,24,39,10,0,0,ms,2220B2,6220B2,ff,CHECK_ODO_TM_TP ,765,24,39,10,0,0,ms,2220B3,6220B3,ff,FOUR_SECONDS_TM_TP ,765,24,31,10,0,0,ms,2220B4,6220B4,ff,ONE_SECOND_TM_TP ,765,24,31,1,0,0,,2220B5,6220B5,ff,RES_TIMER_RELOAD_TIME_TP ,765,24,31,10,0,0,ms,2220B6,6220B6,ff,TWO_SECONDS_TM_TP ,765,24,39,.01,0,2,sec,2220B7,6220B7,ff,EASYFILL_HORN_ON_TM_TP ,765,24,39,.01,0,2,sec,2220B8,6220B8,ff,EASYFILL_HORN_OFF_TM_TP ,765,24,31,10,0,0,ms,2220B9,6220B9,ff,ALARM_LIN_TM_TP ,765,24,31,10,0,0,ms,2220BA,6220BA,ff,ALARM_DOOR_DELAYED_TM_TP ,765,24,39,.01,0,2,sec,2220BB,6220BB,ff,ALARM_DELAYED_TM_TP ,765,24,39,.01,0,2,sec,2220BC,6220BC,ff,FMH_D1_TM_TP ,765,24,39,.01,0,2,sec,2220BD,6220BD,ff,FMH_D2_TM_TP ,765,24,39,.01,0,2,sec,2220BE,6220BE,ff,FMH_D3_TM_TP ,765,24,39,.01,0,2,sec,2220BF,6220BF,ff,FMH_D4_TM_TP ,765,24,39,.01,0,2,sec,2220C0,6220C0,ff,FMH_D5_TM_TP ,765,24,39,.01,0,2,sec,2220C1,6220C1,ff,FMH_D6_TM_TP ,765,24,39,.01,0,2,sec,2220C2,6220C2,ff,FMH_D7_TM_TP ,765,24,39,.01,0,2,sec,2220C3,6220C3,ff,CHECK_ALERT_TM_TP ,765,24,39,.01,0,2,sec,2220C4,6220C4,ff,EXTRA_TM_REQ_TM_TP ,765,24,31,10,0,0,ms,2220C5,6220C5,ff,FAILURE_ALERT_TM_TP ,765,24,31,10,0,0,ms,2220C6,6220C6,ff,LOST_FRAME_AT_TM_TP ,765,24,31,1,0,0,km/h,2220C7,6220C7,ff,RES_SPEED_MAX_CYCLES_TP ,765,24,39,10,0,0,ms,2220C8,6220C8,ff,SKID_REEMISSION_REQUEST_TM_TP ,765,24,39,.01,0,2,sec,2220C9,6220C9,ff,DISPLAY_MESSAGE_TM_TP ,765,24,39,.01,0,2,sec,2220CA,6220CA,ff,MAX_ABSENT_CARD_ARMED_TM_TP ,765,24,39,.01,0,2,sec,2220CB,6220CB,ff,ABS_CARD_MAJOR_W_POLLING_TM_TP ,765,24,31,1,0,0,km/h,2220CC,6220CC,ff,VHL_SPEED_THRESH_ABSENT_CARD_TP ,765,24,31,1,0,0,km/h,2220CD,6220CD,ff,KEYLOCK_MMI_SPEED_LIMIT_TP ,765,24,39,.01,0,2,sec,2220CE,6220CE,ff,KEY_POLLING_PERIOD_TM_TP ,765,24,39,10,0,0,ms,2220CF,6220CF,ff,ESCL_STATUS_TIMEOUT_TM_TP ,765,24,39,.01,0,2,sec,2220D0,6220D0,ff,ANTIGLITCH_DISP_TM_TP ,765,24,55,1,0,0,,2220D1,6220D1,4ff,LONG_DISPLAY_REQ_TM_TP ,765,24,55,1,0,0,,2220D2,6220D2,4ff,SHORT_DISPLAY_REQ_TM_TP ,765,24,39,10,0,0,ms,2220D3,6220D3,ff,FOLDING_AUTO_ACC_REQUEST_TM_TP ,765,24,39,.01,0,2,sec,2220D4,6220D4,ff,IO_FOLDING_TM_TP ,765,24,39,1.66666666666667E-04,0,3,min,2220D5,6220D5,ff,POSITION_AFTER_STOP_TM_TP ,765,24,31,1,0,0,km/h,2220D6,6220D6,ff,VHL_SPEED_THRESH_PARK_POS_TP ,765,24,31,10,0,0,ms,2220D7,6220D7,ff,AUTH_CONT_CKC_TM_TP ,765,24,31,10,0,0,ms,2220D8,6220D8,ff,AUTH_CONT_KEYLESS_TM_TP ,765,24,39,10,0,0,sec,2220D9,6220D9,ff,LOST_FRAME_USM_TM_TP ,765,24,31,10,0,0,ms,2220DA,6220DA,ff,NEUTRAL_NOK_TM_TP ,765,24,31,10,0,0,ms,2220E1,6220E1,ff,PENDING_AVAILABILITY_DATA_TM_TP ,765,24,39,.01,0,2,sec,2220E2,6220E2,ff,EXIT_DELAY_TM_TP ,765,24,39,.01,0,2,sec,2220E3,6220E3,ff,HORN_ACTIVATION_TM_TP ,765,24,31,10,0,0,ms,2220E4,6220E4,ff,HORN_REQUEST_TM_TP ,765,24,31,10,0,0,ms,2220E5,6220E5,ff,FLAHSER_ACTIVATION_DELAY_TM_TP ,765,24,31,10,0,0,ms,2220E6,6220E6,ff,HI_BEAM_ACTIVATION_DELAY_TM_TP ,765,24,31,10,0,0,ms,2220E7,6220E7,ff,HORN_ACTIVATION_SEQUENCE_TM_TP ,765,24,31,10,0,0,ms,2220E8,6220E8,ff,HORN_DEACTIVATION_SEQ_TM_TP ,765,24,39,.01,0,2,sec,2220E9,6220E9,ff,REAR_WIPER_PROTECTION_TM_TP ,765,24,39,.01,0,2,sec,2220EA,6220EA,ff,REAR_DROP_WIPE_TM_TP ,765,24,39,.01,0,2,sec,2220EB,6220EB,ff,REAR_WIPER_COOL_OFF_TM_TP ,765,24,31,1,0,0,time,2220EC,6220EC,ff,RR_WIPER_PROLONGATION_WIPES_TP ,765,24,39,10,0,0,ms,2220ED,6220ED,ff,REAR_WIPING_SUPPLY_TM_TP ,765,24,31,10,0,0,ms,2220EE,6220EE,ff,RR_AUTO_STOP_DISREGARD_TM_TP ,765,24,31,10,0,0,ms,2220EF,6220EF,ff,REVERSE_DELAY_TM_TP ,765,24,31,10,0,0,ms,2220F0,6220F0,ff,WAIT_IL_STATUS_TM_TP ,765,24,31,10,0,0,ms,2220F1,6220F1,ff,TPMS_BURST_TM_TP ,765,24,55,1,0,0,,2220F2,6220F2,4ff,TPMS_INVALID_VEH_SPEED_TM_TP ,765,24,31,1,0,0,-,2220F3,6220F3,ff,WSS_N_INVALID_TP ,765,24,39,16,0,0,us,2220F4,6220F4,ff,TPMS_FRAME_DELAY_DEFAULT_TM_TP ,765,24,39,1,0,0,Rpm,2220F8,6220F8,ff,ALTERNATORSPEED_DV_TP ,765,24,39,.01,0,2,sec,2220FF,6220FF,ff,TMAXPTC_CUTOFF_TM_TP ,765,24,39,.01,0,2,sec,222100,622100,ff,TMAXPTC_FREEZE_TM_TP ,765,24,31,1,0,0,-,222101,622101,ff,THPNBTHERMALREQUEST_ECM_DV_TP ,765,24,39,.01,0,2,sec,222102,622102,ff,PTCSWITCHING_TM_TP ,765,24,31,1,0,0,-,222103,622103,ff,PTCNUMBERTHERMALREQUEST_DV_TP ,765,24,39,.01,0,2,sec,222104,622104,ff,PTCDECREASE_TM_TP ,765,24,39,.01,0,2,sec,222105,622105,ff,PTCINCREASE_TM_TP ,765,24,31,.001,0,3,sec,222106,622106,ff,PRODUCERLOAD_FILTER_TP ,765,24,39,.01,0,2,sec,22210D,62210D,ff,PTCRELAYACTIVEMINTIME_TM_TP ,765,24,31,100,0,0,W,222110,622110,ff,MAXELECTRICAL_POWER_DV_TP ,765,24,39,.001,0,3,sec,222113,622113,ff,BATTERYVOLTAGE_FILTER_TP ,765,24,39,.01,0,2,Volt,222114,622114,ff,HIGHBATTERYVOLTAGE_TP ,765,24,39,.01,0,2,Volt,222115,622115,ff,LOWBATTERYVOLTAGE_TP ,765,24,39,10,0,0,ms,222116,622116,ff,MODULE_LIN_FAILURE_FILTER_TM_TP ,765,24,39,.01,0,2,sec,222117,622117,ff,BYPASS_RPU_TM_TP ,765,24,39,10,0,0,ms,222118,622118,ff,TIMEOUT_A_IVC_PRESENCE_TM_TP ,765,24,31,1,0,0,-,222119,622119,ff,DRIVER_DOOR_SW_FAIL_MAX_TP ,765,24,39,16,0,0,us,22211A,62211A,ff,WSS_INTERVAL_TOL_TP ,765,24,39,10,0,0,ms,22211B,62211B,ff,MEMORIZING_ENGINE_STOP_TM_TP ,765,24,31,10,0,0,ms,22211D,62211D,ff,SMARTPHONE_DURATION_TM_TP ,765,24,31,10,0,0,ms,22211E,62211E,ff,MIN_TIME_CLUTCH_RELEASE_TM_TP ,765,24,31,1,0,0,km/h,22211F,62211F,ff,SPEED_THRESH_AFTER_STALL_TP ,765,24,31,10,0,0,ms,222120,622120,ff,ET_KICK_DET_AFT_IKEY_CHECK_TM_TP ,765,24,31,10,0,0,ms,222121,622121,ff,IKEY_SEARCH_TIMEOUT_TM_TP ,765,24,31,10,0,0,ms,222122,622122,ff,LOCKOUT_KNOB_FILTER_TM_TP ,765,24,31,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.0 ,765,32,39,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.1 ,765,40,47,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.2 ,765,48,55,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.3 ,765,56,63,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.4 ,765,64,71,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.5 ,765,72,79,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.6 ,765,80,87,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.7 ,765,88,95,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.8 ,765,96,103,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.9 ,765,104,111,1,0,0,,222123,622123,ff,DAYINTENSITY_COLOR_1_TP.10 ,765,24,31,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.0 ,765,32,39,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.1 ,765,40,47,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.2 ,765,48,55,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.3 ,765,56,63,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.4 ,765,64,71,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.5 ,765,72,79,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.6 ,765,80,87,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.7 ,765,88,95,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.8 ,765,96,103,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.9 ,765,104,111,1,0,0,,222124,622124,ff,DAYINTENSITY_COLOR_2_TP.10 ,765,24,31,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.0 ,765,32,39,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.1 ,765,40,47,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.2 ,765,48,55,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.3 ,765,56,63,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.4 ,765,64,71,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.5 ,765,72,79,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.6 ,765,80,87,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.7 ,765,88,95,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.8 ,765,96,103,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.9 ,765,104,111,1,0,0,,222125,622125,ff,DAYINTENSITY_COLOR_3_TP.10 ,765,24,31,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.0 ,765,32,39,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.1 ,765,40,47,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.2 ,765,48,55,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.3 ,765,56,63,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.4 ,765,64,71,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.5 ,765,72,79,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.6 ,765,80,87,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.7 ,765,88,95,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.8 ,765,96,103,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.9 ,765,104,111,1,0,0,,222126,622126,ff,DAYINTENSITY_COLOR_4_TP.10 ,765,24,31,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.0 ,765,32,39,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.1 ,765,40,47,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.2 ,765,48,55,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.3 ,765,56,63,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.4 ,765,64,71,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.5 ,765,72,79,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.6 ,765,80,87,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.7 ,765,88,95,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.8 ,765,96,103,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.9 ,765,104,111,1,0,0,,222127,622127,ff,DAYINTENSITY_COLOR_5_TP.10 ,765,24,31,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.0 ,765,32,39,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.1 ,765,40,47,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.2 ,765,48,55,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.3 ,765,56,63,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.4 ,765,64,71,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.5 ,765,72,79,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.6 ,765,80,87,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.7 ,765,88,95,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.8 ,765,96,103,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.9 ,765,104,111,1,0,0,,222128,622128,ff,DAYINTENSITY_COLOR_6_TP.10 ,765,24,31,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.0 ,765,32,39,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.1 ,765,40,47,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.2 ,765,48,55,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.3 ,765,56,63,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.4 ,765,64,71,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.5 ,765,72,79,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.6 ,765,80,87,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.7 ,765,88,95,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.8 ,765,96,103,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.9 ,765,104,111,1,0,0,,222129,622129,ff,DAYINTENSITY_COLOR_7_TP.10 ,765,24,31,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.0 ,765,32,39,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.1 ,765,40,47,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.2 ,765,48,55,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.3 ,765,56,63,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.4 ,765,64,71,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.5 ,765,72,79,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.6 ,765,80,87,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.7 ,765,88,95,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.8 ,765,96,103,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.9 ,765,104,111,1,0,0,,22212A,62212A,ff,DAYINTENSITY_COLOR_8_TP.10 ,765,24,31,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.0 ,765,32,39,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.1 ,765,40,47,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.2 ,765,48,55,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.3 ,765,56,63,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.4 ,765,64,71,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.5 ,765,72,79,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.6 ,765,80,87,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.7 ,765,88,95,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.8 ,765,96,103,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.9 ,765,104,111,1,0,0,,22212B,62212B,ff,DAYINTENSITY_COLOR_9_TP.10 ,765,24,31,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.0 ,765,32,39,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.1 ,765,40,47,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.2 ,765,48,55,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.3 ,765,56,63,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.4 ,765,64,71,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.5 ,765,72,79,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.6 ,765,80,87,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.7 ,765,88,95,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.8 ,765,96,103,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.9 ,765,104,111,1,0,0,,22212C,62212C,ff,DAYINTENSITY_COLOR_10_TP.10 ,765,24,31,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.0 ,765,32,39,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.1 ,765,40,47,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.2 ,765,48,55,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.3 ,765,56,63,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.4 ,765,64,71,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.5 ,765,72,79,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.6 ,765,80,87,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.7 ,765,88,95,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.8 ,765,96,103,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.9 ,765,104,111,1,0,0,,22212D,62212D,ff,DAYINTENSITY_COLOR_11_TP.10 ,765,24,31,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.0 ,765,32,39,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.1 ,765,40,47,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.2 ,765,48,55,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.3 ,765,56,63,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.4 ,765,64,71,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.5 ,765,72,79,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.6 ,765,80,87,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.7 ,765,88,95,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.8 ,765,96,103,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.9 ,765,104,111,1,0,0,,22212E,62212E,ff,DAYINTENSITY_COLOR_12_TP.10 ,765,24,31,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.0 ,765,32,39,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.1 ,765,40,47,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.2 ,765,48,55,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.3 ,765,56,63,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.4 ,765,64,71,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.5 ,765,72,79,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.6 ,765,80,87,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.7 ,765,88,95,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.8 ,765,96,103,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.9 ,765,104,111,1,0,0,,22212F,62212F,ff,DAYINTENSITY_COLOR_13_TP.10 ,765,24,31,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.0 ,765,32,39,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.1 ,765,40,47,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.2 ,765,48,55,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.3 ,765,56,63,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.4 ,765,64,71,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.5 ,765,72,79,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.6 ,765,80,87,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.7 ,765,88,95,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.8 ,765,96,103,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.9 ,765,104,111,1,0,0,,222130,622130,ff,DAYINTENSITY_COLOR_14_TP.10 ,765,24,31,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.0 ,765,32,39,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.1 ,765,40,47,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.2 ,765,48,55,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.3 ,765,56,63,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.4 ,765,64,71,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.5 ,765,72,79,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.6 ,765,80,87,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.7 ,765,88,95,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.8 ,765,96,103,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.9 ,765,104,111,1,0,0,,222131,622131,ff,DAYINTENSITY_COLOR_15_TP.10 ,765,24,31,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.0 ,765,32,39,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.1 ,765,40,47,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.2 ,765,48,55,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.3 ,765,56,63,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.4 ,765,64,71,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.5 ,765,72,79,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.6 ,765,80,87,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.7 ,765,88,95,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.8 ,765,96,103,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.9 ,765,104,111,1,0,0,,222132,622132,ff,NIGHTINTENSITY_COLOR_1_TP.10 ,765,24,31,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.0 ,765,32,39,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.1 ,765,40,47,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.2 ,765,48,55,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.3 ,765,56,63,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.4 ,765,64,71,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.5 ,765,72,79,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.6 ,765,80,87,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.7 ,765,88,95,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.8 ,765,96,103,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.9 ,765,104,111,1,0,0,,222133,622133,ff,NIGHTINTENSITY_COLOR_2_TP.10 ,765,24,31,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.0 ,765,32,39,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.1 ,765,40,47,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.2 ,765,48,55,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.3 ,765,56,63,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.4 ,765,64,71,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.5 ,765,72,79,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.6 ,765,80,87,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.7 ,765,88,95,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.8 ,765,96,103,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.9 ,765,104,111,1,0,0,,222134,622134,ff,NIGHTINTENSITY_COLOR_3_TP.10 ,765,24,31,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.0 ,765,32,39,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.1 ,765,40,47,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.2 ,765,48,55,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.3 ,765,56,63,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.4 ,765,64,71,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.5 ,765,72,79,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.6 ,765,80,87,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.7 ,765,88,95,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.8 ,765,96,103,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.9 ,765,104,111,1,0,0,,222135,622135,ff,NIGHTINTENSITY_COLOR_4_TP.10 ,765,24,31,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.0 ,765,32,39,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.1 ,765,40,47,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.2 ,765,48,55,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.3 ,765,56,63,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.4 ,765,64,71,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.5 ,765,72,79,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.6 ,765,80,87,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.7 ,765,88,95,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.8 ,765,96,103,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.9 ,765,104,111,1,0,0,,222136,622136,ff,NIGHTINTENSITY_COLOR_5_TP.10 ,765,24,31,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.0 ,765,32,39,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.1 ,765,40,47,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.2 ,765,48,55,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.3 ,765,56,63,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.4 ,765,64,71,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.5 ,765,72,79,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.6 ,765,80,87,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.7 ,765,88,95,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.8 ,765,96,103,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.9 ,765,104,111,1,0,0,,222137,622137,ff,NIGHTINTENSITY_COLOR_6_TP.10 ,765,24,31,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.0 ,765,32,39,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.1 ,765,40,47,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.2 ,765,48,55,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.3 ,765,56,63,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.4 ,765,64,71,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.5 ,765,72,79,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.6 ,765,80,87,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.7 ,765,88,95,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.8 ,765,96,103,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.9 ,765,104,111,1,0,0,,222138,622138,ff,NIGHTINTENSITY_COLOR_7_TP.10 ,765,24,31,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.0 ,765,32,39,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.1 ,765,40,47,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.2 ,765,48,55,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.3 ,765,56,63,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.4 ,765,64,71,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.5 ,765,72,79,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.6 ,765,80,87,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.7 ,765,88,95,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.8 ,765,96,103,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.9 ,765,104,111,1,0,0,,222139,622139,ff,NIGHTINTENSITY_COLOR_8_TP.10 ,765,24,31,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.0 ,765,32,39,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.1 ,765,40,47,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.2 ,765,48,55,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.3 ,765,56,63,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.4 ,765,64,71,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.5 ,765,72,79,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.6 ,765,80,87,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.7 ,765,88,95,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.8 ,765,96,103,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.9 ,765,104,111,1,0,0,,22213A,62213A,ff,NIGHTINTENSITY_COLOR_9_TP.10 ,765,24,31,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.0 ,765,32,39,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.1 ,765,40,47,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.2 ,765,48,55,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.3 ,765,56,63,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.4 ,765,64,71,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.5 ,765,72,79,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.6 ,765,80,87,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.7 ,765,88,95,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.8 ,765,96,103,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.9 ,765,104,111,1,0,0,,22213B,62213B,ff,NIGHTINTENSITY_COLOR_10_TP.10 ,765,24,31,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.0 ,765,32,39,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.1 ,765,40,47,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.2 ,765,48,55,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.3 ,765,56,63,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.4 ,765,64,71,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.5 ,765,72,79,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.6 ,765,80,87,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.7 ,765,88,95,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.8 ,765,96,103,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.9 ,765,104,111,1,0,0,,22213C,62213C,ff,NIGHTINTENSITY_COLOR_11_TP.10 ,765,24,31,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.0 ,765,32,39,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.1 ,765,40,47,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.2 ,765,48,55,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.3 ,765,56,63,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.4 ,765,64,71,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.5 ,765,72,79,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.6 ,765,80,87,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.7 ,765,88,95,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.8 ,765,96,103,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.9 ,765,104,111,1,0,0,,22213D,62213D,ff,NIGHTINTENSITY_COLOR_12_TP.10 ,765,24,31,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.0 ,765,32,39,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.1 ,765,40,47,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.2 ,765,48,55,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.3 ,765,56,63,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.4 ,765,64,71,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.5 ,765,72,79,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.6 ,765,80,87,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.7 ,765,88,95,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.8 ,765,96,103,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.9 ,765,104,111,1,0,0,,22213E,62213E,ff,NIGHTINTENSITY_COLOR_13_TP.10 ,765,24,31,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.0 ,765,32,39,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.1 ,765,40,47,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.2 ,765,48,55,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.3 ,765,56,63,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.4 ,765,64,71,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.5 ,765,72,79,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.6 ,765,80,87,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.7 ,765,88,95,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.8 ,765,96,103,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.9 ,765,104,111,1,0,0,,22213F,62213F,ff,NIGHTINTENSITY_COLOR_14_TP.10 ,765,24,31,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.0 ,765,32,39,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.1 ,765,40,47,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.2 ,765,48,55,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.3 ,765,56,63,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.4 ,765,64,71,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.5 ,765,72,79,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.6 ,765,80,87,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.7 ,765,88,95,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.8 ,765,96,103,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.9 ,765,104,111,1,0,0,,222140,622140,ff,NIGHTINTENSITY_COLOR_15_TP.10 ,765,24,31,10,0,0,ms,222141,622141,ff,HORN_REQUEST_TIMEOUT_TM_TP ,765,24,31,10,0,0,ms,222142,622142,ff,CSW_INHIBIT_AFTER_RESET_TM_TP ,765,24,39,10,0,0,ms,222143,622143,ff,TECHNICAL_TO_SLEEP_TM_TP ,765,24,31,10,0,0,ms,222144,622144,ff,WASHER_HOLD_TIME_TM_TP ,765,24,31,1,0,0,-,222145,622145,ff,REAR_SEAT_ALERT_CYCLE_TP ,765,24,39,.01,0,2,sec,222146,622146,ff,ALERT_STAND_TM_TP ,765,24,55,1,0,0,,222147,622147,4ff,ALERT_WARNING_TM_TP ,765,24,31,10,0,0,ms,222148,622148,ff,ALERT_HORN_ACTIVATION_DLY_TM_TP ,765,24,31,10,0,0,ms,222149,622149,ff,ALERT_HORN_ACTIVATION_TM_TP ,765,24,31,10,0,0,ms,22214A,62214A,ff,ALERT_HORN_DEACTIVATION_TM_TP ,765,24,31,1,0,0,km,22214B,62214B,ff,DISTANCE_KEYLOCK_ACTIVATION_TP ,765,24,31,1000,0,0,W,22214C,62214C,ff,PW_INPUTRANGE_TP ,765,24,39,10,0,0,ms,22214D,62214D,ff,GADE_AFTER_IGN_ON_DELAY_TM_TP ,765,24,39,.01,0,2,sec,22214E,62214E,ff,WAIT_END_RES_TM_TP ,765,24,31,1,0,0,,224001,624001,ff,INTERNAL_DONGLE_CONFIG_S,0:DONGLE_SLAVE_1;1:DONGLE_SLAVE_2;2:DONGLE_SLAVE_3;3:SERIAL_DONGLE ,765,24,24,1,0,0,,224002,624002,ff,DONGLE_PAIRING_DONE_S,1:true;0:false ,765,24,24,1,0,0,,224005,624005,ff,R_HAZARD_SIGNAL_CRASH_S,1:true;0:false ,765,24,31,1,0,0,,224006,624006,ff,AUTOFMH_DURATION_USER_TM_S,0:AUTOFMH_D1;1:AUTOFMH_D2;2:AUTOFMH_D3;3:AUTOFMH_D4;4:AUTOFMH_D5;5:AUTOFMH_D6;6:AUTOFMH_D7;7:AUTOFMH_STATE_NOT_USED_1 ,765,24,24,1,0,0,,224007,624007,ff,DELIVERY_MODE_AUTHORIZED_S,1:true;0:false ,765,24,24,1,0,0,,224008,624008,ff,PLUG_STATE_S,1:true;0:false ,765,24,39,1,0,0,,224009,624009,ff,TOTAL_ETA_KICK_DETECTED_S ,765,24,31,1,0,0,,22400B,62400B,ff,MOTORWAY_FLASHERS_NUMBER_S,0:ONE_FLASH_PER_CSW_MODE;1:THREE_FLASH_PER_CSW_MODE;3:MOTORWAY_FLASHER_STATUS_NOT_USED;2:FIVE_FLASH_PER_CSW_MODE ,765,24,31,1,0,0,,22400C,62400C,ff,WAKE_UP_INDEX_S ,765,24,31,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.0,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,32,39,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.1,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,40,47,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.2,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,48,55,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.3,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,56,63,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.4,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,64,71,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.5,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,72,79,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.6,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,80,87,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.7,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,88,95,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.8,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,96,103,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.9,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,104,111,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.10,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,112,119,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.11,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,120,127,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.12,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,128,135,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.13,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,136,143,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.14,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,144,151,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.15,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,152,159,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.16,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,160,167,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.17,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,168,175,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.18,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,176,183,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.19,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,184,191,1,0,0,,22400D,62400D,ff,WAKE_UP_SOURCE_S.20,0:WKS_NO_WAKEUP_SOURCE;1:WKS_DOORLOCK_SW;2:WKS_DOORUNLOCK_SW;3:WKS_DR_KNOB_SW;4:WKS_HAZARD_SW;5:WKS_BRAKE_SW2;7:WKS_IGN_SW;8:WKS_STARTER_SW;9:WKS_DR_DOOR1_SW;10:WKS_AS_DOOR1_SW;11:WKS_RL_DOOR_SW;12:WKS_RR_DOOR_SW;13:WKS_TGATE_SW;14:WKS_TGATE_OPENER_SW;15:WKS_TGATE_INSIDE_OPENER_SW;16:WKS_CHILDLOCK_SW;17:WKS_PASSING_SW;18:WKS_LIGHT_TAIL_SW;19:WKS_LIGHT_HEAD_SW;20:WKS_RKE_REQUEST;21:WKS_PERIOD_WAKE_UP_CAN;23:WKS_WAKEUP_BY_CAN;24:WKS_WAKEUP_BY_LIN;25:WKS_WAKEUP_BY_RES;6:WKS_GLOBALTIMER_WRITING;22:WKS_WAKEUP_BY_PRESOAK;26:WKS_WAKEUP_BY_CHARGE_CAL ,765,24,55,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.0 ,765,56,87,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.1 ,765,88,119,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.2 ,765,120,151,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.3 ,765,152,183,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.4 ,765,184,215,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.5 ,765,216,247,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.6 ,765,248,279,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.7 ,765,280,311,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.8 ,765,312,343,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.9 ,765,344,375,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.10 ,765,376,407,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.11 ,765,408,439,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.12 ,765,440,471,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.13 ,765,472,503,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.14 ,765,504,535,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.15 ,765,536,567,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.16 ,765,568,599,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.17 ,765,600,631,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.18 ,765,632,663,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.19 ,765,664,695,1,0,0,,22400E,62400E,4ff,WAKE_UP_TIME_S.20 ,765,24,24,1,0,0,,22400F,62400F,ff,END_ALWAYS_PRESSED_DYN_S,1:true;0:false ,765,24,24,1,0,0,,224010,624010,ff,END_ALWAYS_PRESSED_STAT_S,1:true;0:false ,765,24,24,1,0,0,,224011,624011,ff,START_ALWAYS_PRESSED_STAT_S,1:true;0:false ,765,24,24,1,0,0,,224012,624012,ff,START_NEVER_PRESSED_DYN_S,1:true;0:false ,765,24,24,1,0,0,,224013,624013,ff,CRASH_DOORLOCK_OPERATED_S,1:true;0:false ,765,24,31,1,0,0,,224014,624014,ff,SEALT_BELT_COUNTER_S ,765,24,24,1,0,0,,224015,624015,ff,KEY_ID_AUTH_STARTING_SEQUENCE_S,1:true;0:false ,765,24,31,1,0,0,,224016,624016,ff,STARTER_STATUS_S,0:CRANKING_RELAY_SWITCHED_OFF;1:SHORT_RELAXATION_ACTIVE;2:LONG_RELAXATION_ACTIVE;3:CRANKING_RELAY_SWITCHED_ON ,765,24,24,1,0,0,,224017,624017,ff,STEER_STARTING_SEQUENCE_S,1:true;0:false ,765,24,39,1,0,0,,224018,624018,ff,RKE_CID1_COUNTER_S ,765,24,39,1,0,0,,224019,624019,ff,RKE_CID2_COUNTER_S ,765,24,39,1,0,0,,22401A,62401A,ff,RKE_CID3_COUNTER_S ,765,24,39,1,0,0,,22401B,62401B,ff,RKE_CID4_COUNTER_S ,765,24,24,1,0,0,,22401D,62401D,ff,NOT_CAR_SECURE_S,1:true;0:false ,765,24,24,1,0,0,,22401E,62401E,ff,BCM_HFM_CODE_ANTISCANNING_S,1:true;0:false ,765,24,24,1,0,0,,22401F,62401F,ff,BCM_HFM_CODE_PAIRING_S,1:true;0:false ,765,24,31,1,0,0,,224021,624021,ff,AUTO_FR_WIPING_MPU_STATUS_S,0:AUTO_FW_DEACTIVATED;1:AUTO_FW_ACTIVATED ,765,24,31,1,0,0,,224022,624022,ff,FR_RR_DROP_MPU_STATUS_S,0:FR_RR_DROP_DEACTIVATED;1:FR_RR_DROP_ACTIVATED ,765,24,24,1,0,0,,224023,624023,ff,SUPER_SLEEP_STATUS_S,1:true;0:false ,765,24,24,1,0,0,,224027,624027,ff,ASSIST_DOOR_LOCKED_S,1:true;0:false ,765,24,24,1,0,0,,224028,624028,ff,ASSIST_DOOR_SUPERLOCKED_S,1:true;0:false ,765,24,24,1,0,0,,224029,624029,ff,BACK_DOOR_SUPERLOCKED_S,1:true;0:false ,765,24,24,1,0,0,,22402A,62402A,ff,DRIVER_DOOR_LOCKED_S,1:true;0:false ,765,24,24,1,0,0,,22402B,62402B,ff,DRIVER_DOOR_SUPERLOCKED_S,1:true;0:false ,765,24,24,1,0,0,,22402C,62402C,ff,FUEL_LOCKED_S,1:true;0:false ,765,24,24,1,0,0,,22402E,62402E,ff,REAR_LEFT_DOOR_CHILDLOCKED_S,1:true;0:false ,765,24,24,1,0,0,,22402F,62402F,ff,REAR_LEFT_DOOR_LOCKED_S,1:true;0:false ,765,24,24,1,0,0,,224030,624030,ff,REAR_LEFT_DOOR_SUPERLOCKED_S,1:true;0:false ,765,24,24,1,0,0,,224031,624031,ff,REAR_RIGHT_DOOR_CHILDLOCKED_S,1:true;0:false ,765,24,24,1,0,0,,224032,624032,ff,REAR_RIGHT_DOOR_LOCKED_S,1:true;0:false ,765,24,24,1,0,0,,224033,624033,ff,REAR_RIGHT_DOOR_SUPERLOCKED_S,1:true;0:false ,765,24,24,1,0,0,,224034,624034,ff,TAILGATE_LOCKED_S,1:true;0:false ,765,24,24,1,0,0,,224035,624035,ff,UNLOCK_REQUEST_FLAG_UP_S,1:true;0:false ,765,24,31,1,0,0,,224036,624036,ff,LAST_DL_MA_MEDIUM_S.0,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,32,39,1,0,0,,224036,624036,ff,LAST_DL_MA_MEDIUM_S.1,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,40,47,1,0,0,,224036,624036,ff,LAST_DL_MA_MEDIUM_S.2,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,48,55,1,0,0,,224036,624036,ff,LAST_DL_MA_MEDIUM_S.3,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,56,63,1,0,0,,224036,624036,ff,LAST_DL_MA_MEDIUM_S.4,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,64,71,1,0,0,,224036,624036,ff,LAST_DL_MA_MEDIUM_S.5,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,72,79,1,0,0,,224036,624036,ff,LAST_DL_MA_MEDIUM_S.6,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,80,87,1,0,0,,224036,624036,ff,LAST_DL_MA_MEDIUM_S.7,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,88,95,1,0,0,,224036,624036,ff,LAST_DL_MA_MEDIUM_S.8,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,96,103,1,0,0,,224036,624036,ff,LAST_DL_MA_MEDIUM_S.9,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,24,31,1,0,0,,224037,624037,ff,LAST_DL_MA_S.0,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,32,39,1,0,0,,224037,624037,ff,LAST_DL_MA_S.1,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,40,47,1,0,0,,224037,624037,ff,LAST_DL_MA_S.2,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,48,55,1,0,0,,224037,624037,ff,LAST_DL_MA_S.3,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,56,63,1,0,0,,224037,624037,ff,LAST_DL_MA_S.4,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,64,71,1,0,0,,224037,624037,ff,LAST_DL_MA_S.5,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,72,79,1,0,0,,224037,624037,ff,LAST_DL_MA_S.6,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,80,87,1,0,0,,224037,624037,ff,LAST_DL_MA_S.7,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,88,95,1,0,0,,224037,624037,ff,LAST_DL_MA_S.8,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,96,103,1,0,0,,224037,624037,ff,LAST_DL_MA_S.9,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,24,55,1,0,0,,224038,624038,4ff,DTC_LIST_OUT_EXT_DATA_S.0 ,765,56,87,1,0,0,,224038,624038,4ff,DTC_LIST_OUT_EXT_DATA_S.1 ,765,88,119,1,0,0,,224038,624038,4ff,DTC_LIST_OUT_EXT_DATA_S.2 ,765,120,151,1,0,0,,224038,624038,4ff,DTC_LIST_OUT_EXT_DATA_S.3 ,765,152,183,1,0,0,,224038,624038,4ff,DTC_LIST_OUT_EXT_DATA_S.4 ,765,184,215,1,0,0,,224038,624038,4ff,DTC_LIST_OUT_EXT_DATA_S.5 ,765,216,247,1,0,0,,224038,624038,4ff,DTC_LIST_OUT_EXT_DATA_S.6 ,765,248,279,1,0,0,,224038,624038,4ff,DTC_LIST_OUT_EXT_DATA_S.7 ,765,280,311,1,0,0,,224038,624038,4ff,DTC_LIST_OUT_EXT_DATA_S.8 ,765,312,343,1,0,0,,224038,624038,4ff,DTC_LIST_OUT_EXT_DATA_S.9 ,765,24,55,1,0,0,,224039,624039,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.0 ,765,56,87,1,0,0,,224039,624039,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.1 ,765,88,119,1,0,0,,224039,624039,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.2 ,765,120,151,1,0,0,,224039,624039,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.3 ,765,152,183,1,0,0,,224039,624039,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.4 ,765,184,215,1,0,0,,224039,624039,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.5 ,765,216,247,1,0,0,,224039,624039,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.6 ,765,248,279,1,0,0,,224039,624039,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.7 ,765,280,311,1,0,0,,224039,624039,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.8 ,765,312,343,1,0,0,,224039,624039,4ff,DTC_LIST_OUT_IDENTITY_DTC_S.9 ,765,24,31,1,0,0,,22403A,62403A,ff,DTC_LIST_OUT_OCCUR_CNT_S.0 ,765,32,39,1,0,0,,22403A,62403A,ff,DTC_LIST_OUT_OCCUR_CNT_S.1 ,765,40,47,1,0,0,,22403A,62403A,ff,DTC_LIST_OUT_OCCUR_CNT_S.2 ,765,48,55,1,0,0,,22403A,62403A,ff,DTC_LIST_OUT_OCCUR_CNT_S.3 ,765,56,63,1,0,0,,22403A,62403A,ff,DTC_LIST_OUT_OCCUR_CNT_S.4 ,765,64,71,1,0,0,,22403A,62403A,ff,DTC_LIST_OUT_OCCUR_CNT_S.5 ,765,72,79,1,0,0,,22403A,62403A,ff,DTC_LIST_OUT_OCCUR_CNT_S.6 ,765,80,87,1,0,0,,22403A,62403A,ff,DTC_LIST_OUT_OCCUR_CNT_S.7 ,765,88,95,1,0,0,,22403A,62403A,ff,DTC_LIST_OUT_OCCUR_CNT_S.8 ,765,96,103,1,0,0,,22403A,62403A,ff,DTC_LIST_OUT_OCCUR_CNT_S.9 ,765,24,31,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.0 ,765,32,39,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.1 ,765,40,47,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.2 ,765,48,55,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.3 ,765,56,63,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.4 ,765,64,71,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.5 ,765,72,79,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.6 ,765,80,87,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.7 ,765,88,95,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.8 ,765,96,103,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.9 ,765,104,111,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.10 ,765,112,119,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.11 ,765,120,127,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.12 ,765,128,135,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.13 ,765,136,143,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.14 ,765,144,151,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.15 ,765,152,159,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.16 ,765,160,167,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.17 ,765,168,175,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.18 ,765,176,183,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.19 ,765,184,191,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.20 ,765,192,199,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.21 ,765,200,207,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.22 ,765,208,215,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.23 ,765,216,223,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.24 ,765,224,231,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.25 ,765,232,239,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.26 ,765,240,247,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.27 ,765,248,255,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.28 ,765,256,263,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.29 ,765,264,271,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.30 ,765,272,279,1,0,0,,22403B,62403B,ff,DTC_LIST_OUT_SNAPSHOT_0_S.31 ,765,24,31,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.0 ,765,32,39,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.1 ,765,40,47,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.2 ,765,48,55,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.3 ,765,56,63,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.4 ,765,64,71,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.5 ,765,72,79,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.6 ,765,80,87,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.7 ,765,88,95,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.8 ,765,96,103,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.9 ,765,104,111,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.10 ,765,112,119,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.11 ,765,120,127,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.12 ,765,128,135,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.13 ,765,136,143,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.14 ,765,144,151,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.15 ,765,152,159,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.16 ,765,160,167,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.17 ,765,168,175,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.18 ,765,176,183,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.19 ,765,184,191,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.20 ,765,192,199,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.21 ,765,200,207,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.22 ,765,208,215,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.23 ,765,216,223,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.24 ,765,224,231,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.25 ,765,232,239,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.26 ,765,240,247,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.27 ,765,248,255,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.28 ,765,256,263,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.29 ,765,264,271,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.30 ,765,272,279,1,0,0,,22403C,62403C,ff,DTC_LIST_OUT_SNAPSHOT_1_S.31 ,765,24,31,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.0 ,765,32,39,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.1 ,765,40,47,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.2 ,765,48,55,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.3 ,765,56,63,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.4 ,765,64,71,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.5 ,765,72,79,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.6 ,765,80,87,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.7 ,765,88,95,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.8 ,765,96,103,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.9 ,765,104,111,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.10 ,765,112,119,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.11 ,765,120,127,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.12 ,765,128,135,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.13 ,765,136,143,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.14 ,765,144,151,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.15 ,765,152,159,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.16 ,765,160,167,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.17 ,765,168,175,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.18 ,765,176,183,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.19 ,765,184,191,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.20 ,765,192,199,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.21 ,765,200,207,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.22 ,765,208,215,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.23 ,765,216,223,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.24 ,765,224,231,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.25 ,765,232,239,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.26 ,765,240,247,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.27 ,765,248,255,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.28 ,765,256,263,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.29 ,765,264,271,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.30 ,765,272,279,1,0,0,,22403D,62403D,ff,DTC_LIST_OUT_SNAPSHOT_2_S.31 ,765,24,31,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.0 ,765,32,39,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.1 ,765,40,47,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.2 ,765,48,55,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.3 ,765,56,63,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.4 ,765,64,71,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.5 ,765,72,79,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.6 ,765,80,87,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.7 ,765,88,95,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.8 ,765,96,103,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.9 ,765,104,111,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.10 ,765,112,119,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.11 ,765,120,127,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.12 ,765,128,135,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.13 ,765,136,143,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.14 ,765,144,151,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.15 ,765,152,159,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.16 ,765,160,167,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.17 ,765,168,175,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.18 ,765,176,183,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.19 ,765,184,191,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.20 ,765,192,199,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.21 ,765,200,207,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.22 ,765,208,215,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.23 ,765,216,223,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.24 ,765,224,231,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.25 ,765,232,239,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.26 ,765,240,247,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.27 ,765,248,255,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.28 ,765,256,263,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.29 ,765,264,271,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.30 ,765,272,279,1,0,0,,22403E,62403E,ff,DTC_LIST_OUT_SNAPSHOT_3_S.31 ,765,24,31,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.0 ,765,32,39,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.1 ,765,40,47,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.2 ,765,48,55,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.3 ,765,56,63,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.4 ,765,64,71,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.5 ,765,72,79,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.6 ,765,80,87,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.7 ,765,88,95,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.8 ,765,96,103,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.9 ,765,104,111,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.10 ,765,112,119,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.11 ,765,120,127,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.12 ,765,128,135,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.13 ,765,136,143,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.14 ,765,144,151,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.15 ,765,152,159,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.16 ,765,160,167,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.17 ,765,168,175,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.18 ,765,176,183,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.19 ,765,184,191,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.20 ,765,192,199,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.21 ,765,200,207,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.22 ,765,208,215,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.23 ,765,216,223,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.24 ,765,224,231,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.25 ,765,232,239,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.26 ,765,240,247,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.27 ,765,248,255,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.28 ,765,256,263,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.29 ,765,264,271,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.30 ,765,272,279,1,0,0,,22403F,62403F,ff,DTC_LIST_OUT_SNAPSHOT_4_S.31 ,765,24,31,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.0 ,765,32,39,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.1 ,765,40,47,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.2 ,765,48,55,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.3 ,765,56,63,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.4 ,765,64,71,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.5 ,765,72,79,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.6 ,765,80,87,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.7 ,765,88,95,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.8 ,765,96,103,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.9 ,765,104,111,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.10 ,765,112,119,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.11 ,765,120,127,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.12 ,765,128,135,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.13 ,765,136,143,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.14 ,765,144,151,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.15 ,765,152,159,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.16 ,765,160,167,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.17 ,765,168,175,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.18 ,765,176,183,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.19 ,765,184,191,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.20 ,765,192,199,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.21 ,765,200,207,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.22 ,765,208,215,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.23 ,765,216,223,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.24 ,765,224,231,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.25 ,765,232,239,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.26 ,765,240,247,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.27 ,765,248,255,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.28 ,765,256,263,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.29 ,765,264,271,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.30 ,765,272,279,1,0,0,,224040,624040,ff,DTC_LIST_OUT_SNAPSHOT_5_S.31 ,765,24,31,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.0 ,765,32,39,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.1 ,765,40,47,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.2 ,765,48,55,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.3 ,765,56,63,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.4 ,765,64,71,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.5 ,765,72,79,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.6 ,765,80,87,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.7 ,765,88,95,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.8 ,765,96,103,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.9 ,765,104,111,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.10 ,765,112,119,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.11 ,765,120,127,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.12 ,765,128,135,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.13 ,765,136,143,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.14 ,765,144,151,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.15 ,765,152,159,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.16 ,765,160,167,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.17 ,765,168,175,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.18 ,765,176,183,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.19 ,765,184,191,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.20 ,765,192,199,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.21 ,765,200,207,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.22 ,765,208,215,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.23 ,765,216,223,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.24 ,765,224,231,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.25 ,765,232,239,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.26 ,765,240,247,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.27 ,765,248,255,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.28 ,765,256,263,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.29 ,765,264,271,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.30 ,765,272,279,1,0,0,,224041,624041,ff,DTC_LIST_OUT_SNAPSHOT_6_S.31 ,765,24,31,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.0 ,765,32,39,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.1 ,765,40,47,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.2 ,765,48,55,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.3 ,765,56,63,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.4 ,765,64,71,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.5 ,765,72,79,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.6 ,765,80,87,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.7 ,765,88,95,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.8 ,765,96,103,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.9 ,765,104,111,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.10 ,765,112,119,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.11 ,765,120,127,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.12 ,765,128,135,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.13 ,765,136,143,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.14 ,765,144,151,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.15 ,765,152,159,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.16 ,765,160,167,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.17 ,765,168,175,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.18 ,765,176,183,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.19 ,765,184,191,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.20 ,765,192,199,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.21 ,765,200,207,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.22 ,765,208,215,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.23 ,765,216,223,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.24 ,765,224,231,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.25 ,765,232,239,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.26 ,765,240,247,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.27 ,765,248,255,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.28 ,765,256,263,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.29 ,765,264,271,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.30 ,765,272,279,1,0,0,,224042,624042,ff,DTC_LIST_OUT_SNAPSHOT_7_S.31 ,765,24,31,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.0 ,765,32,39,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.1 ,765,40,47,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.2 ,765,48,55,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.3 ,765,56,63,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.4 ,765,64,71,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.5 ,765,72,79,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.6 ,765,80,87,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.7 ,765,88,95,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.8 ,765,96,103,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.9 ,765,104,111,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.10 ,765,112,119,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.11 ,765,120,127,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.12 ,765,128,135,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.13 ,765,136,143,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.14 ,765,144,151,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.15 ,765,152,159,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.16 ,765,160,167,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.17 ,765,168,175,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.18 ,765,176,183,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.19 ,765,184,191,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.20 ,765,192,199,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.21 ,765,200,207,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.22 ,765,208,215,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.23 ,765,216,223,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.24 ,765,224,231,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.25 ,765,232,239,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.26 ,765,240,247,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.27 ,765,248,255,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.28 ,765,256,263,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.29 ,765,264,271,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.30 ,765,272,279,1,0,0,,224043,624043,ff,DTC_LIST_OUT_SNAPSHOT_8_S.31 ,765,24,31,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.0 ,765,32,39,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.1 ,765,40,47,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.2 ,765,48,55,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.3 ,765,56,63,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.4 ,765,64,71,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.5 ,765,72,79,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.6 ,765,80,87,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.7 ,765,88,95,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.8 ,765,96,103,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.9 ,765,104,111,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.10 ,765,112,119,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.11 ,765,120,127,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.12 ,765,128,135,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.13 ,765,136,143,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.14 ,765,144,151,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.15 ,765,152,159,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.16 ,765,160,167,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.17 ,765,168,175,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.18 ,765,176,183,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.19 ,765,184,191,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.20 ,765,192,199,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.21 ,765,200,207,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.22 ,765,208,215,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.23 ,765,216,223,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.24 ,765,224,231,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.25 ,765,232,239,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.26 ,765,240,247,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.27 ,765,248,255,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.28 ,765,256,263,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.29 ,765,264,271,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.30 ,765,272,279,1,0,0,,224044,624044,ff,DTC_LIST_OUT_SNAPSHOT_9_S.31 ,765,24,39,1,0,0,lux,224045,624045,ff,ENHANCE_LO_OFF_THRESH ,765,24,39,1,0,0,lux,224046,624046,ff,ENHANCE_LO_ON_THRESH ,765,24,39,.01,0,2,sec,224047,624047,ff,PL_ON_DELAY_TIME ,765,24,39,1,0,0,m,224048,624048,ff,PL_ON_DELAY_DISTANCE ,765,24,39,.01,0,2,sec,224049,624049,ff,QUICK_PL_ON_DELAY_TIME ,765,24,39,.01,0,2,sec,22404A,62404A,ff,PL_OFF_DELAY_TIME ,765,24,39,1,0,0,lux,22404B,62404B,ff,PL_OFF_THRESH ,765,24,39,1,0,0,lux,22404C,62404C,ff,QUICK_PL_ON_THRESH ,765,24,39,1,0,0,lux,22404D,62404D,ff,LO_ON_THRESH ,765,24,39,1,0,0,lux,22404E,62404E,ff,LO_OFF_THRESH ,765,24,39,1,0,0,lux,22404F,62404F,ff,QUICK_LO_ON_THRESH ,765,24,39,1,0,0,lux,224050,624050,ff,QUICK_LO_OFF_THRESH ,765,24,39,1,0,0,m,224051,624051,ff,LO_ON_DELAY_DISTANCE ,765,24,39,1,0,0,m,224052,624052,ff,LO_OFF_DELAY_DISTANCE ,765,24,39,.01,0,2,sec,224053,624053,ff,QUICK_LO_ON_DELAY_TIME ,765,24,39,.01,0,2,sec,224054,624054,ff,QUICK_LO_OFF_DELAY_TIME ,765,24,39,1,0,0,lux,224055,624055,ff,PL_ON_THRESH ,765,24,24,1,0,0,,224059,624059,ff,IGN_CAB_RL_CMD_S,1:true;0:false ,765,24,55,1,0,0,,22405A,62405A,4ff,IGN_SAVER_TIMER_S ,765,24,31,1,0,0,,22405B,62405B,ff,SDO_ACTIVATION_STATE_S,0:SDO_ACTIVATED;1:SDO_DEACTIVATED ,765,24,31,1,0,0,,22405C,62405C,ff,AUTOLOCK_ACTIVATION_STATE_S,0:AUTO_LWS_DEACTIVATED;1:AUTO_LWS_ACTIVATED;2:AUTO_LOCKUP_BY_P_RANGE_OUT;3:AUTO_LWS_NOT_USED ,765,24,24,1,0,0,,22405D,62405D,ff,AHL_CONFIG_BY_USER_TEMP_S,1:true;0:false ,765,24,31,1,0,0,,224060,624060,ff,VIN_S.0 ,765,32,39,1,0,0,,224060,624060,ff,VIN_S.1 ,765,40,47,1,0,0,,224060,624060,ff,VIN_S.2 ,765,48,55,1,0,0,,224060,624060,ff,VIN_S.3 ,765,56,63,1,0,0,,224060,624060,ff,VIN_S.4 ,765,64,71,1,0,0,,224060,624060,ff,VIN_S.5 ,765,72,79,1,0,0,,224060,624060,ff,VIN_S.6 ,765,80,87,1,0,0,,224060,624060,ff,VIN_S.7 ,765,88,95,1,0,0,,224060,624060,ff,VIN_S.8 ,765,96,103,1,0,0,,224060,624060,ff,VIN_S.9 ,765,104,111,1,0,0,,224060,624060,ff,VIN_S.10 ,765,112,119,1,0,0,,224060,624060,ff,VIN_S.11 ,765,120,127,1,0,0,,224060,624060,ff,VIN_S.12 ,765,128,135,1,0,0,,224060,624060,ff,VIN_S.13 ,765,136,143,1,0,0,,224060,624060,ff,VIN_S.14 ,765,144,151,1,0,0,,224060,624060,ff,VIN_S.15 ,765,152,159,1,0,0,,224060,624060,ff,VIN_S.16 ,765,24,24,1,0,0,,224061,624061,ff,VIN_SETTED_S,1:true;0:false ,765,24,24,1,0,0,,224062,624062,ff,KEY_1_SYNC_S,1:true;0:false ,765,24,24,1,0,0,,224063,624063,ff,KEY_2_SYNC_S,1:true;0:false ,765,24,24,1,0,0,,224064,624064,ff,RKE_CID_NEED_RESYNC_ID_1_S,1:true;0:false ,765,24,24,1,0,0,,224065,624065,ff,KEY_3_SYNC_S,1:true;0:false ,765,24,24,1,0,0,,224066,624066,ff,KEY_4_SYNC_S,1:true;0:false ,765,24,24,1,0,0,,224067,624067,ff,RKE_CID_NEED_RESYNC_ID_2_S,1:true;0:false ,765,24,24,1,0,0,,224068,624068,ff,RKE_CID_NEED_RESYNC_ID_3_S,1:true;0:false ,765,24,24,1,0,0,,224069,624069,ff,RKE_CID_NEED_RESYNC_ID_4_S,1:true;0:false ,765,24,24,1,0,0,,22406A,62406A,ff,ECU_PAIRING_IS_BLANK_S,1:true;0:false ,765,24,31,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.0 ,765,32,39,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.1 ,765,40,47,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.2 ,765,48,55,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.3 ,765,56,63,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.4 ,765,64,71,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.5 ,765,72,79,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.6 ,765,80,87,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.7 ,765,88,95,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.8 ,765,96,103,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.9 ,765,104,111,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.10 ,765,112,119,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.11 ,765,120,127,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.12 ,765,128,135,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.13 ,765,136,143,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.14 ,765,144,151,1,0,0,,22406B,62406B,ff,IMMO_APV_CODE_S.15 ,765,24,31,1,0,0,,22406C,62406C,ff,IMMO_COUNTER_AFTER_SALES_PAIRING_S ,765,24,31,1,0,0,,22406D,62406D,ff,IMMO_COUNTER_FACTORY_AND_AFTER_SALES_PAIRING_S ,765,24,31,1,0,0,,22406E,62406E,ff,IMMO_COUNTER_FACTORY_PAIRING_S ,765,24,31,1,0,0,,22406F,62406F,ff,IMMO_COUNTER_IGNITION_S ,765,24,24,1,0,0,,224070,624070,ff,IMMO_FLAG_ANTI_SCANNING_LAUNCHED_S,1:true;0:false ,765,24,24,1,0,0,,224071,624071,ff,IMMO_FLAG_CODE_APV_AVAILABLE_S,1:true;0:false ,765,24,24,1,0,0,,224072,624072,ff,IMMO_FLAG_CODE_ECM_AVAILABLE_S,1:true;0:false ,765,24,24,1,0,0,,224073,624073,ff,IMMO_FLAG_CODE_EM_AVAILABLE_S,1:true;0:false ,765,24,24,1,0,0,,224075,624075,ff,IMMO_FLAG_CODE_HSG_AVAILABLE_S,1:true;0:false ,765,24,31,1,0,0,,224076,624076,ff,IMMO_NB_CID_PAIRED_S ,765,24,24,1,0,0,,224077,624077,ff,MODE_APP_ACTIVATED_S,1:true;0:false ,765,24,24,1,0,0,,224078,624078,ff,IMMO_FLAG_CODE_TCU_AVAILABLE_S,1:true;0:false ,765,24,24,1,0,0,,224079,624079,ff,ECM_RES_VERLOG_PROTECTION_S,1:true;0:false ,765,24,24,1,0,0,,22407A,62407A,ff,ECM_VERLOG_PROTECTION_S,1:true;0:false ,765,24,24,1,0,0,,22407B,62407B,ff,EM_VERLOG_PROTECTION_S,1:true;0:false ,765,24,24,1,0,0,,22407C,62407C,ff,HSG_VERLOG_PROTECTION_S,1:true;0:false ,765,24,24,1,0,0,,22407D,62407D,ff,EM_LEARNING_CARIMMO_NOT_FINISHED_S,1:true;0:false ,765,24,24,1,0,0,,22407E,62407E,ff,HSG_LEARNING_CARIMMO_NOT_FINISHED_S,1:true;0:false ,765,24,24,1,0,0,,22407F,62407F,ff,LEARNING_CARIMMO_NOT_FINISHED_S,1:true;0:false ,765,24,24,1,0,0,,224080,624080,ff,ECU_IS_BLANK_S,1:true;0:false ,765,24,24,1,0,0,,224081,624081,ff,IGNITION_ON_FLAG_UP_S,1:true;0:false ,765,24,24,1,0,0,,224082,624082,ff,SILENT_MODE_ACTIVATION_STATE_S,1:true;0:false ,765,24,31,1,0,0,,224083,624083,ff,GET_LAST_CONFIGURATION_ERROR_S,0:ATCIDCNF_OPERATION_SUCCESSFUL;1:ATCIDCNF_ERROR_TRANSPORT_AUTH;2:ATCIDCNF_ERROR_ALREADY_KEY_LEARNING;3:ATCIDCNF_ERROR_LOCKED_KEY;4:ATCIDCNF_ERROR_SET_BANK;5:ATCIDCNF_ERROR_WRITE_RSK;6:ATCIDCNF_ERROR_WRITE_CML;7:ATCIDCNF_ERROR_READ_KIN;8:ATCIDCNF_ERROR_WRITE_KIN;9:ATCIDCNF_ERROR_WRITE_ISK;10:ATCIDCNF_ERROR_LOCK_KEY;11:ATCIDCNF_ERROR_AUTH_NEW_ISK;12:ATCIDCNF_ERROR_BADISKAPV;13:ATCIDCNF_ERROR_EEPROM_FAILURE;14:ATCIDCNF_ERROR_UNKNOWN_BLANK_CID;15:ATCIDCNF_ERROR_TIMEOUT_CID_CONF;16:ATCIDCNF_TRP_DRIVER_NOT_AVAILABLE;17:ATCIDCNF_ERROR_INVALID_CID_NUMBER;18:ATCIDCNF_ERROR_INVALID_OPERATION;19:ATCIDCNF_ERROR_RESYNCH ,765,24,31,1,0,0,,224084,624084,ff,GET_LAST_CONFIGURATION_ERROR_SP_S,0:SP_ATCIDCNF_OPERATION_SUCCESSFUL;1:SP_ATCIDCNF_ERROR_TRANSPORT_AUTH;2:SP_ATCIDCNF_ERROR_ALREADY_KEY_LEARNING;3:SP_ATCIDCNF_ERROR_LOCKED_KEY;4:SP_ATCIDCNF_ERROR_SET_BANK;5:SP_ATCIDCNF_ERROR_WRITE_RSK;6:SP_ATCIDCNF_ERROR_WRITE_ISK;7:SP_ATCIDCNF_ERROR_AUTH_NEW_ISK;8:SP_ATCIDCNF_ERROR_EEPROM_FAILURE;9:SP_ATCIDCNF_ERROR_UNKNOWN_BLANK_CID;10:SP_ATCIDCNF_ERROR_TIMEOUT_CID_CONF;11:SP_ATCIDCNF_TRP_DRIVER_NOT_AVAILABLE;12:SP_ATCIDCNF_ERROR_INVALID_CID_NUMBER;13:SP_ATCIDCNF_ERROR_INVALID_OPERATION;14:SP_ATCIDCNF_ERROR_RESYNCH ,765,24,31,1,0,0,,224085,624085,ff,AUTO_UNLOCK_ACTIVATION_STATE_S,0:AUTOUNLOCK_DEACTIVATED;1:AUTOUNLOCK_IGN_OFF;2:AUTOUNLOCK_P_RANGE_IN;3:AUTO_UNLOCK_NOT_USED ,765,24,31,1,0,0,,224086,624086,ff,AUTORELOCK_ACTIVATION_STATE_S,0:AUTORELOCK_BY_TIMEOUT_DEACTIVATED;1:AUTORELOCK_BY_TIMEOUT_ACTIVATED ,765,24,24,1,0,0,,224087,624087,ff,MASTER_KNOB_UNLOCK_ACTIVATION_STATE_S,1:true;0:false ,765,24,24,1,0,0,,224088,624088,ff,EM_RES_VERLOG_PROTECTION_S,1:true;0:false ,765,24,24,1,0,0,,224089,624089,ff,HSG_RES_VERLOG_PROTECTION_S,1:true;0:false ,765,24,24,1,0,0,,22408A,62408A,ff,RES_VERLOG_PROTECTION_S,1:true;0:false ,765,24,24,1,0,0,,22408B,62408B,ff,VERLOG_PROTECTION_S,1:true;0:false ,765,24,31,1,0,0,,22408C,62408C,ff,KEY_DESYNC_COUNTER_1_S ,765,24,31,1,0,0,,22408D,62408D,ff,KEY_DESYNC_COUNTER_2_S ,765,24,31,1,0,0,,22408E,62408E,ff,KEY_DESYNC_COUNTER_3_S ,765,24,31,1,0,0,,22408F,62408F,ff,KEY_DESYNC_COUNTER_4_S ,765,24,55,1,0,0,,224090,624090,4ff,LAST_SYNC_VALUE_4 ,765,24,55,1,0,0,,224091,624091,4ff,LAST_SYNC_VALUE_3 ,765,24,55,1,0,0,,224092,624092,4ff,LAST_SYNC_VALUE_2 ,765,24,55,1,0,0,,224093,624093,4ff,LAST_SYNC_VALUE_1 ,765,24,55,1,0,0,,224094,624094,4ff,LAST_RESYNC_4 ,765,24,55,1,0,0,,224095,624095,4ff,LAST_RESYNC_3 ,765,24,55,1,0,0,,224096,624096,4ff,LAST_RESYNC_1 ,765,24,55,1,0,0,,224097,624097,4ff,LAST_RESYNC_2 ,765,24,39,1,0,0,,224098,624098,ff,AUTHENT_COUNTER_S ,765,24,39,1,0,0,,224099,624099,ff,AUTHENT_COUNTER_FAILED_S ,765,24,39,1,0,0,,22409A,62409A,ff,AUTHENT_COUNTER_DELAY_S ,765,24,24,1,0,0,,22409B,62409B,ff,INT_VERLOG_US_CF_S,1:true;0:false ,765,24,55,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.0 ,765,56,87,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.1 ,765,88,119,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.2 ,765,120,151,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.3 ,765,152,183,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.4 ,765,184,215,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.5 ,765,216,247,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.6 ,765,248,279,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.7 ,765,280,311,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.8 ,765,312,343,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.9 ,765,344,375,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.10 ,765,376,407,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.11 ,765,408,439,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.12 ,765,440,471,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.13 ,765,472,503,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.14 ,765,504,535,1,0,0,,22409C,62409C,4ff,MILEAGE_OF_ECU_RESET_S.15 ,765,24,55,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.0 ,765,56,87,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.1 ,765,88,119,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.2 ,765,120,151,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.3 ,765,152,183,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.4 ,765,184,215,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.5 ,765,216,247,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.6 ,765,248,279,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.7 ,765,280,311,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.8 ,765,312,343,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.9 ,765,344,375,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.10 ,765,376,407,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.11 ,765,408,439,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.12 ,765,440,471,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.13 ,765,472,503,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.14 ,765,504,535,1,0,0,,22409D,62409D,4ff,TIME_OF_ECU_RESET_S.15 ,765,24,31,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.0 ,765,32,39,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.1 ,765,40,47,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.2 ,765,48,55,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.3 ,765,56,63,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.4 ,765,64,71,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.5 ,765,72,79,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.6 ,765,80,87,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.7 ,765,88,95,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.8 ,765,96,103,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.9 ,765,104,111,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.10 ,765,112,119,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.11 ,765,120,127,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.12 ,765,128,135,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.13 ,765,136,143,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.14 ,765,144,151,1,0,0,,22409E,62409E,ff,TYPE_OF_ECU_RESET_S.15 ,765,24,31,1,0,0,,22409F,62409F,ff,ECU_GLOBAL_RESET_COUNTER_S ,765,24,31,1,0,0,,2240A0,6240A0,ff,ECU_HW_RESET_COUNTER_S ,765,24,31,1,0,0,,2240A1,6240A1,ff,AUTO_IL_STATUS_S,1:IL_MPU_ACTIVATED;0:IL_MPU_DEACTIVATED ,765,24,55,1,0,0,,2240A2,6240A2,4ff,COUNT_RES_PROG_FAIL_BY_TEMP_S ,765,24,55,1,0,0,,2240A3,6240A3,4ff,COUNT_RES_STOP_BY_ACCESS_S ,765,24,55,1,0,0,,2240A4,6240A4,4ff,COUNT_RES_STOP_BY_ECM_S ,765,24,55,1,0,0,,2240A5,6240A5,4ff,COUNT_RES_STOP_BY_NORMAL_S ,765,24,55,1,0,0,,2240A6,6240A6,4ff,COUNT_RES_STOP_BY_ODO_S ,765,24,55,1,0,0,,2240A7,6240A7,4ff,COUNT_RES_STOP_BY_RESET_S ,765,24,55,1,0,0,,2240A8,6240A8,4ff,COUNT_RES_STOP_BY_TCU_S ,765,24,55,1,0,0,,2240A9,6240A9,4ff,COUNT_RES_STOP_BY_TRANS_S ,765,24,55,1,0,0,,2240AA,6240AA,4ff,COUNT_RES_STOP_BY_USM_S ,765,24,55,1,0,0,,2240AB,6240AB,4ff,COUNT_RES_SUCCESS_BY_KEY_S ,765,24,55,1,0,0,,2240AC,6240AC,4ff,COUNT_RES_SUCCESS_BY_PROG_S ,765,24,55,1,0,0,,2240AD,6240AD,4ff,COUNT_RES_SUCCESS_BY_TCU_S ,765,24,31,1,0,0,,2240AE,6240AE,ff,RES_ACTIVATION_S,0:RES_UNACTIVATED;1:RES_UNDER_ACTIVATION;2:RES_ACTIVATED ,765,24,31,1,0,0,,2240AF,6240AF,ff,RES_CRANKING_FAILURE_CS_S ,765,24,24,1,0,0,,2240B0,6240B0,ff,RES_ID_AUTH_STARTING_SEQUENCE_S,1:true;0:false ,765,24,31,1,0,0,,2240B1,6240B1,ff,RES_STATUS_S,0:RES_UNAVAILABLE;3:RES_NORMAL_ENGINE_START;1:RES_RESERVED_1;2:RES_RESERVED_2;4:RES_RESERVED_4;5:RES_RESERVED_5;6:RES_WAIT_FOR_A_REQUEST_PRESOAK;7:RES_RESERVED_7;8:RES_RESERVED_8;9:RES_CUSTOMER_STARTING;10:RES_RESERVED_10;11:RES_RESERVED_11;12:RES_REMOTE_ENGINE_START;13:RES_RESERVED_13;14:RES_RESERVED_14;15:RES_VEHICLE_WITHOUT_RES ,765,24,39,1,0,0,,2240B2,6240B2,ff,ALARM_SECURITY_CODE_S ,765,24,24,1,0,0,,2240B3,6240B3,ff,VOL_SECURITY_CODE_SETTED_S,1:true;0:false ,765,24,24,1,0,0,,2240B4,6240B4,ff,BATTERY_SAVE_STATE_S,1:true;0:false ,765,24,24,1,0,0,,2240B5,6240B5,ff,MODIF_CONF_ENABLE_S,1:true;0:false ,765,24,31,1,0,0,,2240B6,6240B6,ff,AUTO_FOLDING_ACTIVATION_STATE_S,0:AUTO_FOLDING_STATE_UNAVAILABLE;1:AUTO_FOLDING_STATE_DISABLE;2:AUTO_FOLDING_STATE_IGN;3:AUTO_FOLDING_STATE_UNLOCK ,765,24,31,1,0,0,,2240B7,6240B7,ff,WELCOME_ACTIVATION_STATE_S,0:WGS_STATE_ACTIVATED;1:WGS_STATE_DEACTIVATED ,765,24,31,1,0,0,,2240B8,6240B8,ff,ON_OFF_LIGHT_THRESH_USER_S,0:LIGHT_THRESH_CONFIGURATION_1;1:LIGHT_THRESH_CONFIGURATION_2;2:LIGHT_THRESH_CONFIGURATION_3;3:LIGHT_THRESH_CONFIGURATION_4 ,765,24,31,1,0,0,time,2240B9,6240B9,ff,RES_MAX_REQUEST_CF_S ,765,24,55,1,0,0,,2240BA,6240BA,4ff,RES_MAX_TCU_DELAY_TM_CF_S ,765,24,24,1,0,0,,2240BB,6240BB,ff,WITH_REMOTE_START_CF_S,1:true;0:false ,765,24,24,1,0,0,,2240BC,6240BC,ff,WITH_RES_CONT_DRIVING_CF_S,1:true;0:false ,765,24,24,1,0,0,,2240BD,6240BD,ff,WITH_RES_SMPHONE_CF_S,1:true;0:false ,765,24,24,1,0,0,,2240BE,6240BE,ff,WITH_RES_SMPHONE_DOUBLE_CF_S,1:true;0:false ,765,24,31,1,0,0,,2240BF,6240BF,ff,AUTOFMH_ACT_CHOICE_DEFAUT_S,0:AUTOFMH_ACTIVATED;1:AUTOFMH_DEACTIVATED ,765,24,55,1,0,0,,2240C0,6240C0,4ff,RES_STOP_BY_ACCESS_MILAGE_S ,765,24,55,1,0,0,,2240C1,6240C1,4ff,RES_STOP_BY_ACCESS_TIME_S ,765,24,55,1,0,0,,2240C2,6240C2,4ff,RES_STOP_BY_ECM_MILAGE_S ,765,24,55,1,0,0,,2240C3,6240C3,4ff,RES_STOP_BY_ECM_TIME_S ,765,24,55,1,0,0,,2240C4,6240C4,4ff,RES_STOP_BY_NORMAL_MILAGE_S ,765,24,55,1,0,0,,2240C5,6240C5,4ff,RES_STOP_BY_NORMAL_TIME_S ,765,24,55,1,0,0,,2240C6,6240C6,4ff,RES_STOP_BY_ODO_MILAGE_S ,765,24,55,1,0,0,,2240C7,6240C7,4ff,RES_STOP_BY_ODO_TIME_S ,765,24,55,1,0,0,,2240C8,6240C8,4ff,RES_STOP_BY_RESET_MILAGE_S ,765,24,55,1,0,0,,2240C9,6240C9,4ff,RES_STOP_BY_RESET_TIME_S ,765,24,55,1,0,0,,2240CA,6240CA,4ff,RES_STOP_BY_TCU_MILAGE_S ,765,24,55,1,0,0,,2240CB,6240CB,4ff,RES_STOP_BY_TCU_TIME_S ,765,24,55,1,0,0,,2240CC,6240CC,4ff,RES_STOP_BY_TRANS_MILAGE_S ,765,24,55,1,0,0,,2240CD,6240CD,4ff,RES_STOP_BY_TRANS_TIME_S ,765,24,55,1,0,0,,2240CE,6240CE,4ff,RES_STOP_BY_USM_TIME_S ,765,24,55,1,0,0,,2240CF,6240CF,4ff,RES_STOP_BY_USM_MILAGE_S ,765,24,55,1,0,0,,2240D0,6240D0,4ff,RES_SUCCESS_BY_KEY_MILAGE_S ,765,24,55,1,0,0,,2240D1,6240D1,4ff,RES_SUCCESS_BY_KEY_TIME_S ,765,24,55,1,0,0,,2240D2,6240D2,4ff,RES_SUCCESS_BY_TCU_MILAGE_S ,765,24,55,1,0,0,,2240D3,6240D3,4ff,RES_SUCCESS_BY_TCU_TIME_S ,765,24,55,1,0,0,,2240D4,6240D4,4ff,RES_SUCCESS_BY_TIMER_MILAGE_S ,765,24,55,1,0,0,,2240D5,6240D5,4ff,RES_SUCCESS_BY_TIMER_TIME_S ,765,24,24,1,0,0,,2240D6,6240D6,ff,PM_ACTIVATION_STATE_S,1:true;0:false ,765,24,31,1,0,0,,2240D7,6240D7,ff,INTERN_FAILURE_ETA_STATUS_S ,765,24,31,1,0,0,,2240D8,6240D8,ff,AUTO_REAR_WIPER_STATUS_S,0:AUTO_REAR_WIPER_UNAVAILABLE;1:AUTO_REAR_WIPER_ACTIVATED;2:AUTO_REAR_WIPER_DEACTIVATED;3:AUTO_REAR_WIPER_NOT_USED ,765,24,24,1,0,0,,2240D9,6240D9,ff,ACTIVATION_RECORDED_S,1:true;0:false ,765,24,24,1,0,0,,2240DA,6240DA,ff,AREA1_RECORDED_S,1:true;0:false ,765,24,24,1,0,0,,2240DB,6240DB,ff,AREA2_RECORDED_S,1:true;0:false ,765,24,24,1,0,0,,2240DC,6240DC,ff,AREA3_RECORDED_S,1:true;0:false ,765,24,31,1,0,0,,2240DD,6240DD,ff,DAY_INTENSITY_RECORDED_S ,765,24,31,1,0,0,,2240DE,6240DE,ff,NIGHT_INTENSITY_RECORDED_S ,765,24,31,1,0,0,,2240DF,6240DF,ff,COLOR_RECORDED_S,0:AMBI_LIGHT_COLOR_NO_REQUEST;1:AMBI_LIGHT_REQ_COLOR_1;2:AMBI_LIGHT_REQ_COLOR_2;3:AMBI_LIGHT_REQ_COLOR_3;4:AMBI_LIGHT_REQ_COLOR_4;5:AMBI_LIGHT_REQ_COLOR_5;6:AMBI_LIGHT_REQ_COLOR_6;7:AMBI_LIGHT_REQ_COLOR_7;8:AMBI_LIGHT_REQ_COLOR_8;9:AMBI_LIGHT_REQ_COLOR_9;10:AMBI_LIGHT_REQ_COLOR_10;11:AMBI_LIGHT_REQ_COLOR_11;12:AMBI_LIGHT_REQ_COLOR_12;13:AMBI_LIGHT_REQ_COLOR_13;14:AMBI_LIGHT_REQ_COLOR_14;15:AMBI_LIGHT_REQ_COLOR_15;16:AMBI_LIGHT_REQ_COLOR_UNUSED_16;17:AMBI_LIGHT_REQ_COLOR_UNUSED_17;18:AMBI_LIGHT_REQ_COLOR_UNUSED_18;19:AMBI_LIGHT_REQ_COLOR_UNUSED_19;20:AMBI_LIGHT_REQ_COLOR_UNUSED_20;21:AMBI_LIGHT_REQ_COLOR_UNUSED_21;22:AMBI_LIGHT_REQ_COLOR_UNUSED_22;23:AMBI_LIGHT_REQ_COLOR_UNUSED_23;24:AMBI_LIGHT_REQ_COLOR_UNUSED_24;25:AMBI_LIGHT_REQ_COLOR_UNUSED_25;26:AMBI_LIGHT_REQ_COLOR_UNUSED_26;27:AMBI_LIGHT_REQ_COLOR_UNUSED_27;28:AMBI_LIGHT_REQ_COLOR_UNUSED_28;29:AMBI_LIGHT_REQ_COLOR_UNUSED_29;30:AMBI_LIGHT_REQ_COLOR_UNUSED_30;31:AMBI_LIGHT_REQ_COLOR_RESET ,765,24,24,1,0,0,,2240E0,6240E0,ff,PATTERN_RECORDED_S,1:true;0:false ,765,24,24,1,0,0,,2240E5,6240E5,ff,TPMS_SET_STATUS_S,1:true;0:false ,765,24,31,1,0,0,,2240E6,6240E6,ff,TPMS_AUTOLOC_VEH_STATUS_S,0:AUTOLOC_JUDGE_TIME_OUT;1:AUTOLOC_JUDGE_ON_GOING;2:AUTOLOC_IDS_OR_POS_CHG;3:AUTOLOC_SAME_IDS ,765,24,31,1,0,0,,2240E7,6240E7,ff,TPMS_LEARN_RESET_TIMER_S ,765,24,31,1,0,0,,2240E8,6240E8,ff,TPMS_WHEEL_STATE_S.0,0:WHEEL_STATE_PRESSURE_OK;1:WHEEL_STATE_NO_PRESS_INFO;2:WHEEL_STATE_TRANSMISSION_NOK;3:WHEEL_STATE_UNDERINFLATED;4:WHEEL_STATE_PUNCTURED ,765,32,39,1,0,0,,2240E8,6240E8,ff,TPMS_WHEEL_STATE_S.1,0:WHEEL_STATE_PRESSURE_OK;1:WHEEL_STATE_NO_PRESS_INFO;2:WHEEL_STATE_TRANSMISSION_NOK;3:WHEEL_STATE_UNDERINFLATED;4:WHEEL_STATE_PUNCTURED ,765,40,47,1,0,0,,2240E8,6240E8,ff,TPMS_WHEEL_STATE_S.2,0:WHEEL_STATE_PRESSURE_OK;1:WHEEL_STATE_NO_PRESS_INFO;2:WHEEL_STATE_TRANSMISSION_NOK;3:WHEEL_STATE_UNDERINFLATED;4:WHEEL_STATE_PUNCTURED ,765,48,55,1,0,0,,2240E8,6240E8,ff,TPMS_WHEEL_STATE_S.3,0:WHEEL_STATE_PRESSURE_OK;1:WHEEL_STATE_NO_PRESS_INFO;2:WHEEL_STATE_TRANSMISSION_NOK;3:WHEEL_STATE_UNDERINFLATED;4:WHEEL_STATE_PUNCTURED ,765,24,31,1,0,0,,2240E9,6240E9,ff,TPMS_UND_INF_WNG_ON_CNT_S.0 ,765,32,39,1,0,0,,2240E9,6240E9,ff,TPMS_UND_INF_WNG_ON_CNT_S.1 ,765,40,47,1,0,0,,2240E9,6240E9,ff,TPMS_UND_INF_WNG_ON_CNT_S.2 ,765,48,55,1,0,0,,2240E9,6240E9,ff,TPMS_UND_INF_WNG_ON_CNT_S.3 ,765,24,31,1,0,0,,2240EA,6240EA,ff,TPMS_UND_INF_WNG_OFF_CNT_S.0 ,765,32,39,1,0,0,,2240EA,6240EA,ff,TPMS_UND_INF_WNG_OFF_CNT_S.1 ,765,40,47,1,0,0,,2240EA,6240EA,ff,TPMS_UND_INF_WNG_OFF_CNT_S.2 ,765,48,55,1,0,0,,2240EA,6240EA,ff,TPMS_UND_INF_WNG_OFF_CNT_S.3 ,765,24,31,1,0,0,,2240EB,6240EB,ff,TPMS_PUNCT_ALERT_OFF_CNT_S.0 ,765,32,39,1,0,0,,2240EB,6240EB,ff,TPMS_PUNCT_ALERT_OFF_CNT_S.1 ,765,40,47,1,0,0,,2240EB,6240EB,ff,TPMS_PUNCT_ALERT_OFF_CNT_S.2 ,765,48,55,1,0,0,,2240EB,6240EB,ff,TPMS_PUNCT_ALERT_OFF_CNT_S.3 ,765,24,31,1,0,0,,2240EC,6240EC,ff,TPMS_PUNCT_ALERT_ON_CNT_S.0 ,765,32,39,1,0,0,,2240EC,6240EC,ff,TPMS_PUNCT_ALERT_ON_CNT_S.1 ,765,40,47,1,0,0,,2240EC,6240EC,ff,TPMS_PUNCT_ALERT_ON_CNT_S.2 ,765,48,55,1,0,0,,2240EC,6240EC,ff,TPMS_PUNCT_ALERT_ON_CNT_S.3 ,765,24,31,1,0,0,,2240ED,6240ED,ff,TPMS_ACCEL_INCOH_COUNT_S.0 ,765,32,39,1,0,0,,2240ED,6240ED,ff,TPMS_ACCEL_INCOH_COUNT_S.1 ,765,40,47,1,0,0,,2240ED,6240ED,ff,TPMS_ACCEL_INCOH_COUNT_S.2 ,765,48,55,1,0,0,,2240ED,6240ED,ff,TPMS_ACCEL_INCOH_COUNT_S.3 ,765,24,31,1,0,0,,2240EE,6240EE,ff,TPMS_AUTOSET_STATUS_S,0:AUTOSET_DONE;1:AUTOSET_BY_AUTOLOC;2:AUTOSET_BY_NEW_ID_OR_PRESS_ADJ ,765,24,55,1,0,0,,2240F0,6240F0,4ff,TPMS_KM_FROM_LAST_SET_REQ_S ,765,24,31,1,0,0,,2240F1,6240F1,ff,TPMS_LOW_BAT_COUNT_S.0 ,765,32,39,1,0,0,,2240F1,6240F1,ff,TPMS_LOW_BAT_COUNT_S.1 ,765,40,47,1,0,0,,2240F1,6240F1,ff,TPMS_LOW_BAT_COUNT_S.2 ,765,48,55,1,0,0,,2240F1,6240F1,ff,TPMS_LOW_BAT_COUNT_S.3 ,765,24,31,1,0,0,,2240F2,6240F2,ff,TPMS_MAX_RESET_TIMING_S ,765,24,31,1,0,0,,2240F3,6240F3,ff,TPMS_MSSNG_SEN_WNG_STATE_S.0,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,32,39,1,0,0,,2240F3,6240F3,ff,TPMS_MSSNG_SEN_WNG_STATE_S.1,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,40,47,1,0,0,,2240F3,6240F3,ff,TPMS_MSSNG_SEN_WNG_STATE_S.2,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,48,55,1,0,0,,2240F3,6240F3,ff,TPMS_MSSNG_SEN_WNG_STATE_S.3,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,24,31,1,0,0,,2240F4,6240F4,ff,TPMS_NB_LEARN_SEQUENCES_S ,765,24,39,1,0,0,,2240F5,6240F5,ff,TPMS_PERMANENT_MSSNG_CNT_S.0 ,765,40,55,1,0,0,,2240F5,6240F5,ff,TPMS_PERMANENT_MSSNG_CNT_S.1 ,765,56,71,1,0,0,,2240F5,6240F5,ff,TPMS_PERMANENT_MSSNG_CNT_S.2 ,765,72,87,1,0,0,,2240F5,6240F5,ff,TPMS_PERMANENT_MSSNG_CNT_S.3 ,765,24,31,1,0,0,,2240F6,6240F6,ff,TPMS_PRESS_INCOH_COUNT_S.0 ,765,32,39,1,0,0,,2240F6,6240F6,ff,TPMS_PRESS_INCOH_COUNT_S.1 ,765,40,47,1,0,0,,2240F6,6240F6,ff,TPMS_PRESS_INCOH_COUNT_S.2 ,765,48,55,1,0,0,,2240F6,6240F6,ff,TPMS_PRESS_INCOH_COUNT_S.3 ,765,24,24,1,0,0,,2240F7,6240F7,ff,TPMS_PRESS_PLACARD_ACTIVE_S,1:true;0:false ,765,24,31,1,0,0,,2240F8,6240F8,ff,TPMS_PUNCTURE_WNG_STATE_S.0,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,32,39,1,0,0,,2240F8,6240F8,ff,TPMS_PUNCTURE_WNG_STATE_S.1,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,40,47,1,0,0,,2240F8,6240F8,ff,TPMS_PUNCTURE_WNG_STATE_S.2,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,48,55,1,0,0,,2240F8,6240F8,ff,TPMS_PUNCTURE_WNG_STATE_S.3,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,24,31,1,0,0,,2240F9,6240F9,ff,TPMS_RESET_TIMING_S ,765,24,31,1,0,0,,2240FA,6240FA,ff,TPMS_SENSOR_ERR_WNG_STATE_S.0,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,32,39,1,0,0,,2240FA,6240FA,ff,TPMS_SENSOR_ERR_WNG_STATE_S.1,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,40,47,1,0,0,,2240FA,6240FA,ff,TPMS_SENSOR_ERR_WNG_STATE_S.2,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,48,55,1,0,0,,2240FA,6240FA,ff,TPMS_SENSOR_ERR_WNG_STATE_S.3,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,24,31,1,0,0,,2240FB,6240FB,ff,TPMS_TEMP_INCOH_COUNT_S.0 ,765,32,39,1,0,0,,2240FB,6240FB,ff,TPMS_TEMP_INCOH_COUNT_S.1 ,765,40,47,1,0,0,,2240FB,6240FB,ff,TPMS_TEMP_INCOH_COUNT_S.2 ,765,48,55,1,0,0,,2240FB,6240FB,ff,TPMS_TEMP_INCOH_COUNT_S.3 ,765,24,31,1,0,0,,2240FC,6240FC,ff,TPMS_TEMPORARY_MSSNG_CNT_S.0 ,765,32,39,1,0,0,,2240FC,6240FC,ff,TPMS_TEMPORARY_MSSNG_CNT_S.1 ,765,40,47,1,0,0,,2240FC,6240FC,ff,TPMS_TEMPORARY_MSSNG_CNT_S.2 ,765,48,55,1,0,0,,2240FC,6240FC,ff,TPMS_TEMPORARY_MSSNG_CNT_S.3 ,765,24,24,1,0,0,,2240FD,6240FD,ff,TPMS_TRANSFER_MODE_S.0,1:true;0:false ,765,25,25,1,0,0,,2240FD,6240FD,ff,TPMS_TRANSFER_MODE_S.1,1:true;0:false ,765,26,26,1,0,0,,2240FD,6240FD,ff,TPMS_TRANSFER_MODE_S.2,1:true;0:false ,765,27,27,1,0,0,,2240FD,6240FD,ff,TPMS_TRANSFER_MODE_S.3,1:true;0:false ,765,24,31,1,0,0,,2240FE,6240FE,ff,TPMS_UNDER_INF_WNG_STATE_S.0,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,32,39,1,0,0,,2240FE,6240FE,ff,TPMS_UNDER_INF_WNG_STATE_S.1,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,40,47,1,0,0,,2240FE,6240FE,ff,TPMS_UNDER_INF_WNG_STATE_S.2,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,48,55,1,0,0,,2240FE,6240FE,ff,TPMS_UNDER_INF_WNG_STATE_S.3,0:WARNING_NOT_DEFINED;1:WARNING_ON;2:WARNING_OFF;3:WARNING_ON_DISABLED ,765,24,31,1,0,0,,2240FF,6240FF,ff,TPMS_CAN_AUTOLOC_STATUS_S,0:AUTOLOC_NOT_DONE;1:AUTOLOC_RUNNING;2:AUTOLOC_SUCCEED;3:AUTOLOC_FAILED ,765,24,55,1,0,0,,224100,624100,4ff,TPMS_WHEEL_ID5_S ,765,24,55,1,0,0,,224101,624101,4ff,TPMS_WHEEL_ID6_S ,765,24,55,1,0,0,,224102,624102,4ff,TPMS_WHEEL_ID7_S ,765,24,55,1,0,0,,224103,624103,4ff,TPMS_WHEEL_ID8_S ,765,24,55,1,0,0,,224104,624104,4ff,TPMS_WHEEL_ID9_S ,765,24,55,1,0,0,,224105,624105,4ff,TPMS_WHEEL_ID10_S ,765,24,55,1,0,0,,224106,624106,4ff,TPMS_WHEEL_ID11_S ,765,24,55,1,0,0,,224107,624107,4ff,TPMS_WHEEL_ID12_S ,765,24,39,1,0,0,,224108,624108,ff,AUTOLOCATION_TIMEOUT_CNT_S ,765,24,31,1,0,0,,224109,624109,ff,TPMS_CAN_WHEEL_STATE_FL,0:WS_PRESSURE_OK;1:WS_FAILURE;2:WS_UNDER_INFLATED;3:WS_UNDER_INF_AND_FAILURE;4:WS_PUNCTURED;5:WS_PUNCTURED_AND_FAILURE;6:WS_PUNCTURED_AND_UNDER_INF;7:WS_PUNCT_AND_UNDER_INF_AND_FAIL ,765,24,31,1,0,0,,22410A,62410A,ff,TPMS_CAN_WHEEL_STATE_FR,0:WS_PRESSURE_OK;1:WS_FAILURE;2:WS_UNDER_INFLATED;3:WS_UNDER_INF_AND_FAILURE;4:WS_PUNCTURED;5:WS_PUNCTURED_AND_FAILURE;6:WS_PUNCTURED_AND_UNDER_INF;7:WS_PUNCT_AND_UNDER_INF_AND_FAIL ,765,24,31,1,0,0,,22410B,62410B,ff,TPMS_CAN_WHEEL_STATE_RL,0:WS_PRESSURE_OK;1:WS_FAILURE;2:WS_UNDER_INFLATED;3:WS_UNDER_INF_AND_FAILURE;4:WS_PUNCTURED;5:WS_PUNCTURED_AND_FAILURE;6:WS_PUNCTURED_AND_UNDER_INF;7:WS_PUNCT_AND_UNDER_INF_AND_FAIL ,765,24,31,1,0,0,,22410C,62410C,ff,TPMS_CAN_WHEEL_STATE_RR,0:WS_PRESSURE_OK;1:WS_FAILURE;2:WS_UNDER_INFLATED;3:WS_UNDER_INF_AND_FAILURE;4:WS_PUNCTURED;5:WS_PUNCTURED_AND_FAILURE;6:WS_PUNCTURED_AND_UNDER_INF;7:WS_PUNCT_AND_UNDER_INF_AND_FAIL ,765,24,24,1,0,0,,224111,624111,ff,TPMS_SPEED_ERROR_S,1:true;0:false ,765,24,24,1,0,0,,224112,624112,ff,RPU_PROVISIONING_S,1:true;0:false ,765,24,24,1,0,0,,224113,624113,ff,RPU_UNPROTECT_S,1:true;0:false ,765,24,24,1,0,0,,224114,624114,ff,RPU_STALLING_STATE_S,1:true;0:false ,765,24,24,1,0,0,,224115,624115,ff,REMOTE_PROT_REQUEST_S,1:true;0:false ,765,24,39,1,0,0,sec,224116,624116,ff,BYPASS_RPU_TIMER_S ,765,24,31,1,0,0,,224117,624117,ff,CHARGEPROHIBBYRENTAL_HFM_S,0:CHARGE_PROHIB_UNAVAILABLE;1:CHARGE_PROHIB_AUTHORIZED;2:CHARGE_PROHIB_NOT_AUTHORIZED ,765,24,31,1,0,0,,224118,624118,ff,CHARGEPROHIBBYRENTAL_BCM_S,0:CHARGE_PROHIB_UNAVAILABLE;1:CHARGE_PROHIB_AUTHORIZED;2:CHARGE_PROHIB_NOT_AUTHORIZED ,765,24,31,1,0,0,,224119,624119,ff,DRIVER_DOOR_FAIL_COUNTER_S ,765,24,55,1,0,0,,22411A,62411A,4ff,ABSOLUTETIME_MEMORIZED_S ,765,24,24,1,0,0,,22411B,62411B,ff,ADB_CONFIG_BY_USER_TEMP_S,1:true;0:false ,765,24,55,1,0,0,,22411C,62411C,4ff,CHARGE_CAL_MILAGE_S ,765,24,55,1,0,0,,22411D,62411D,4ff,CHARGE_DELAYED_MILAGE_S ,765,24,55,1,0,0,,22411E,62411E,4ff,PRESOAK_CAL_MILAGE_S ,765,24,55,1,0,0,,22411F,62411F,4ff,CHARGE_CAL_TIME_S ,765,24,39,1,0,0,min,224120,624120,ff,CHARGE_CAL_VALUE_S ,765,24,55,1,0,0,,224121,624121,4ff,CHARGE_DELAYED_TIME_S ,765,24,39,1,0,0,min,224122,624122,ff,CHARGE_DELAYED_VALUE_S ,765,24,55,1,0,0,,224123,624123,4ff,PRESOAK_CAL_TIME_S ,765,24,39,1,0,0,min,224124,624124,ff,PRESOAK_CAL_VALUE_S ,765,24,55,1,0,0,,224125,624125,4ff,CHARGE_CAL_S ,765,24,55,1,0,0,,224126,624126,4ff,CHARGE_DELAYED_S ,765,24,55,1,0,0,,224127,624127,4ff,PRESOAK_CAL_S ,765,24,24,1,0,0,,224128,624128,ff,CHARGECAL1FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,224129,624129,ff,CHARGECAL1MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,22412A,62412A,ff,CHARGECAL1SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,22412B,62412B,ff,CHARGECAL1SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,22412C,62412C,ff,CHARGECAL1THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,22412D,62412D,ff,CHARGECAL1TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,22412E,62412E,ff,CHARGECAL1WEDNESDAY_S,1:true;0:false ,765,24,24,1,0,0,,22412F,62412F,ff,CHARGECAL2FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,224130,624130,ff,CHARGECAL2MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,224131,624131,ff,CHARGECAL2SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,224132,624132,ff,CHARGECAL2SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224133,624133,ff,CHARGECAL2THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,224134,624134,ff,CHARGECAL2TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,224135,624135,ff,CHARGECAL2WEDNESDAY_S,1:true;0:false ,765,24,24,1,0,0,,224136,624136,ff,CHARGECAL3FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,224137,624137,ff,CHARGECAL3MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,224138,624138,ff,CHARGECAL3SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,224139,624139,ff,CHARGECAL3SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,22413A,62413A,ff,CHARGECAL3THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,22413B,62413B,ff,CHARGECAL3TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,22413C,62413C,ff,CHARGECAL3WEDNESDAY_S,1:true;0:false ,765,24,24,1,0,0,,22413D,62413D,ff,CHARGECAL4FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,22413E,62413E,ff,CHARGECAL4MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,22413F,62413F,ff,CHARGECAL4SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,224140,624140,ff,CHARGECAL4SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224141,624141,ff,CHARGECAL4THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,224142,624142,ff,CHARGECAL4TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,224143,624143,ff,CHARGECAL4WEDNESDAY_S,1:true;0:false ,765,24,24,1,0,0,,224144,624144,ff,CHARGECAL5FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,224145,624145,ff,CHARGECAL5MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,224146,624146,ff,CHARGECAL5SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,224147,624147,ff,CHARGECAL5SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224148,624148,ff,CHARGECAL5THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,224149,624149,ff,CHARGECAL5TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,22414A,62414A,ff,CHARGECAL5WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,min,22414B,62414B,ff,CHARGECAL1BEGINMIN_S ,765,24,31,1,0,0,hour,22414C,62414C,ff,CHARGECAL1BEGINHOUR_S ,765,24,39,1,0,0,min,22414D,62414D,ff,CHARGECAL1DURATION_S ,765,24,31,1,0,0,hour,22414E,62414E,ff,CHARGECAL2BEGINHOUR_S ,765,24,31,1,0,0,min,22414F,62414F,ff,CHARGECAL2BEGINMIN_S ,765,24,39,1,0,0,min,224150,624150,ff,CHARGECAL2DURATION_S ,765,24,31,1,0,0,hour,224151,624151,ff,CHARGECAL3BEGINHOUR_S ,765,24,31,1,0,0,min,224152,624152,ff,CHARGECAL3BEGINMIN_S ,765,24,39,1,0,0,min,224153,624153,ff,CHARGECAL3DURATION_S ,765,24,31,1,0,0,hour,224154,624154,ff,CHARGECAL4BEGINHOUR_S ,765,24,31,1,0,0,min,224155,624155,ff,CHARGECAL4BEGINMIN_S ,765,24,39,1,0,0,min,224156,624156,ff,CHARGECAL4DURATION_S ,765,24,31,1,0,0,hour,224157,624157,ff,CHARGECAL5BEGINHOUR_S ,765,24,31,1,0,0,min,224158,624158,ff,CHARGECAL5BEGINMIN_S ,765,24,39,1,0,0,min,224159,624159,ff,CHARGECAL5DURATION_S ,765,24,31,1,0,0,hour,22415A,62415A,ff,PRESOAKCAL1ARRIVALHOUR_S ,765,24,31,1,0,0,min,22415B,62415B,ff,PRESOAKCAL1ARRIVALMIN_S ,765,24,24,1,0,0,,22415C,62415C,ff,PRESOAKCAL1FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,22415D,62415D,ff,PRESOAKCAL1MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,22415E,62415E,ff,PRESOAKCAL1SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,22415F,62415F,ff,PRESOAKCAL1SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224160,624160,ff,PRESOAKCAL1THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,224161,624161,ff,PRESOAKCAL1TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,224162,624162,ff,PRESOAKCAL1WEDNESDAY_S,1:true;0:false ,765,24,24,1,0,0,,224163,624163,ff,PRESOAKCAL2FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,224164,624164,ff,PRESOAKCAL2MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,224165,624165,ff,PRESOAKCAL2SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,224166,624166,ff,PRESOAKCAL2SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224167,624167,ff,PRESOAKCAL2THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,224168,624168,ff,PRESOAKCAL2TUESDAY_S,1:true;0:false ,765,24,31,1,0,0,hour,224169,624169,ff,PRESOAKCAL2ARRIVALHOUR_S ,765,24,31,1,0,0,min,22416A,62416A,ff,PRESOAKCAL2ARRIVALMIN_S ,765,24,31,1,0,0,hour,22416B,62416B,ff,PRESOAKCAL3ARRIVALHOUR_S ,765,24,31,1,0,0,min,22416C,62416C,ff,PRESOAKCAL3ARRIVALMIN_S ,765,24,24,1,0,0,,22416D,62416D,ff,PRESOAKCAL3FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,22416E,62416E,ff,PRESOAKCAL3MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,22416F,62416F,ff,PRESOAKCAL3SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,224170,624170,ff,PRESOAKCAL3SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224171,624171,ff,PRESOAKCAL3THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,224172,624172,ff,PRESOAKCAL3TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,224173,624173,ff,PRESOAKCAL3WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,hour,224174,624174,ff,PRESOAKCAL4ARRIVALHOUR_S ,765,24,31,1,0,0,min,224175,624175,ff,PRESOAKCAL4ARRIVALMIN_S ,765,24,24,1,0,0,,224176,624176,ff,PRESOAKCAL4FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,224177,624177,ff,PRESOAKCAL4MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,224178,624178,ff,PRESOAKCAL4SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224179,624179,ff,PRESOAKCAL4THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,22417A,62417A,ff,PRESOAKCAL4TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,22417B,62417B,ff,PRESOAKCAL4WEDNESDAY_S,1:true;0:false ,765,24,24,1,0,0,,22417C,62417C,ff,PRESOAKCAL5WEDNESDAY_S,1:true;0:false ,765,24,24,1,0,0,,22417D,62417D,ff,PRESOAKCAL5TUESDAY_S,1:true;0:false ,765,24,24,1,0,0,,22417E,62417E,ff,PRESOAKCAL5THURSDAY_S,1:true;0:false ,765,24,24,1,0,0,,22417F,62417F,ff,PRESOAKCAL5SUNDAY_S,1:true;0:false ,765,24,24,1,0,0,,224180,624180,ff,PRESOAKCAL5SATURDAY_S,1:true;0:false ,765,24,31,1,0,0,hour,224181,624181,ff,PRESOAKCAL5ARRIVALHOUR_S ,765,24,31,1,0,0,min,224182,624182,ff,PRESOAKCAL5ARRIVALMIN_S ,765,24,24,1,0,0,,224183,624183,ff,PRESOAKCAL5FRIDAY_S,1:true;0:false ,765,24,24,1,0,0,,224184,624184,ff,PRESOAKCAL5MONDAY_S,1:true;0:false ,765,24,24,1,0,0,,224185,624185,ff,CAR_SECURE_TEMP_S,1:true;0:false ,765,24,24,1,0,0,,224186,624186,ff,LOW_BEAM_REQUEST_S,1:true;0:false ,765,24,24,1,0,0,,224187,624187,ff,POSITION_LIGHTS_REQUEST_S,1:true;0:false ,765,24,31,1,0,0,,224188,624188,ff,IKEY_DETECT_AT_DOOR_CLOSING_S ,765,24,31,1,0,0,,224189,624189,ff,IKEY_DETECT_AT_DOOR_LOCKING_S ,765,24,31,1,0,0,,22418A,62418A,ff,IKEY_DETECT_AT_TRUNK_CLOSING_S ,765,24,31,1,0,0,,22418B,62418B,ff,WIPER_W_SPEED_MPU_STATUS_S,0:WIPE_WITH_SPEED_ACTIVATED;1:WIPE_WITH_SPEED_DEACTIVATED ,765,24,24,1,0,0,,22418C,62418C,ff,PRESOAKCAL4SATURDAY_S,1:true;0:false ,765,24,24,1,0,0,,22418D,62418D,ff,PRESOAKCAL2WEDNESDAY_S,1:true;0:false ,765,24,31,1,0,0,,22418E,62418E,ff,NB_PRESENT_DTC_S ,765,24,31,1,0,0,,22418F,62418F,ff,REAR_SEAT_ALERT_ACT_STATE_S,0:REAR_SEAT_ALERT_STATE_UNAVAILABLE;1:REAR_SEAT_ALERT_MESSAGE_STATE_ACTIVATED;2:REAR_SEAT_ALERT_MESSAGE_HORN_STATE_ACTIVATED;3:REAR_SEAT_ALERT_STATE_DEACTIVATED ,765,24,24,1,0,0,,224190,624190,ff,RES_ELEC_NO_CUSTOMER_MODE_S,1:true;0:false ,765,24,39,7.5,0,0,mBar,224200,624200,ff,TPMS_PREF_S.0 ,765,24,39,7.5,0,0,mBar,224201,624201,ff,TPMS_PREF_S.1 ,765,24,39,7.5,0,0,mBar,224202,624202,ff,TPMS_PREF_S.2 ,765,24,39,7.5,0,0,mBar,224203,624203,ff,TPMS_PREF_S.3 ,765,24,39,7.5,0,0,mBar,224204,624204,ff,TPMS_CUSTOMER_PRES_REF_S.0 ,765,24,39,7.5,0,0,mBar,224205,624205,ff,TPMS_CUSTOMER_PRES_REF_S.1 ,765,24,39,7.5,0,0,mBar,224206,624206,ff,TPMS_CUSTOMER_PRES_REF_S.2 ,765,24,39,7.5,0,0,mBar,224207,624207,ff,TPMS_CUSTOMER_PRES_REF_S.3 ,765,24,31,1,30,0,°C,224208,624208,ff,TPMS_TREF_S.0 ,765,24,31,1,30,0,°C,224209,624209,ff,TPMS_TREF_S.1 ,765,24,31,1,30,0,°C,22420A,62420A,ff,TPMS_TREF_S.2 ,765,24,31,1,30,0,°C,22420B,62420B,ff,TPMS_TREF_S.3 ,765,24,31,1,30,0,°C,22420C,62420C,ff,TPMS_CUSTOMER_TEMP_REF_S.0 ,765,24,31,1,30,0,°C,22420D,62420D,ff,TPMS_CUSTOMER_TEMP_REF_S.1 ,765,24,31,1,30,0,°C,22420E,62420E,ff,TPMS_CUSTOMER_TEMP_REF_S.2 ,765,24,31,1,30,0,°C,22420F,62420F,ff,TPMS_CUSTOMER_TEMP_REF_S.3 ,765,24,31,1,0,0,%,224210,624210,ff,AMBIENT_BRIGHTNESS_S ,765,24,31,1,0,0,,224211,624211,ff,IL_INTENSITY_STATE_S,0:IL_INTENSITY_STATE_OFF;1:IL_INTENSITY_STATE_LEVEL1;2:IL_INTENSITY_STATE_LEVEL2;3:IL_INTENSITY_STATE_LEVEL3;4:IL_INTENSITY_STATE_LEVEL4;5:IL_INTENSITY_STATE_LEVEL5;6:IL_INTENSITY_STATE_NOT_USED1;7:IL_INTENSITY_STATE_NOT_USED2 ,765,24,31,.1,-1500,1,Bar,224212,624212,ff,TPMS_PRESS_FR_AXLE_STATE_S ,765,24,31,.1,-1500,1,Bar,224213,624213,ff,TPMS_PRESS_RR_AXLE_STATE_S ,765,24,24,1,0,0,,226001,626001,ff,DONGLE_AUTHORIZED,1:true;0:false ,765,24,31,1,0,0,,226002,626002,ff,DONGLE_RETRY_HISTORY_COUNTER ,765,24,31,1,0,0,,226003,626003,ff,DONGLE_SLAVE_STATE,0:SLAVE_IS_BLANK;1:SLAVE_PAIRED;2:SLAVE_ERROR;3:SLAVE_NOT_OPERATIONAL ,765,24,24,1,0,0,,226009,626009,ff,DONGLE_CONFIG_SLAVE,1:true;0:false ,765,24,24,1,0,0,,22600B,62600B,ff,CSW_IN_FAILURE_MODE,1:true;0:false ,765,24,24,1,0,0,,22600C,62600C,ff,IN_DRIVING_CYCLE,1:true;0:false ,765,24,24,1,0,0,,22600D,62600D,ff,LIGHTING_CSW_FAILURE_MODE,1:true;0:false ,765,24,24,1,0,0,,22600E,62600E,ff,R_FLASH_LEFT_SW,1:true;0:false ,765,24,24,1,0,0,,22600F,62600F,ff,R_FLASH_RIGHT_SW,1:true;0:false ,765,24,24,1,0,0,,226010,626010,ff,R_FR_FOG_SW,1:true;0:false ,765,24,24,1,0,0,,226011,626011,ff,R_FR_WASHER_SW,1:true;0:false ,765,24,31,1,0,0,,226012,626012,ff,R_FR_WIPER_SW,0:CSW_OFF_FW;1:CSW_INT;2:CSW_LOW;3:CSW_HIGH;4:CSW_MIST ,765,24,24,1,0,0,,226013,626013,ff,R_HI_BEAM_SW,1:true;0:false ,765,24,31,1,0,0,,226014,626014,ff,R_INT_SW,0:CSW_INTERMITTENT_POSITION_1;1:CSW_INTERMITTENT_POSITION_2;2:CSW_INTERMITTENT_POSITION_3;3:CSW_INTERMITTENT_POSITION_4;4:CSW_INTERMITTENT_POSITION_5;5:CSW_INTERMITTENT_POSITION_6;6:CSW_INTERMITTENT_POSITION_7 ,765,24,31,1,0,0,,226015,626015,ff,R_LIGHTS_SW,0:CSW_OFF_EL;1:CSW_TAIL;2:CSW_HEAD;3:CSW_AUTO ,765,24,24,1,0,0,,226016,626016,ff,R_PASSING_SW,1:true;0:false ,765,24,24,1,0,0,,226017,626017,ff,R_RR_FOG_SW,1:true;0:false ,765,24,24,1,0,0,,226018,626018,ff,R_RR_WASHER_SW,1:true;0:false ,765,24,31,1,0,0,,226019,626019,ff,R_RR_WIPER_SW,0:CSW_NO_RR_WIPE;1:CSW_RR_WIPE_INT;2:CSW_RR_WIPE_CONT ,765,24,24,1,0,0,,22601A,62601A,ff,R_CAN_V1_ON_BY_MASTER,1:true;0:false ,765,24,24,1,0,0,,22601C,62601C,ff,R_LIN_AC_ON_BY_MASTER,1:true;0:false ,765,24,24,1,0,0,,22601D,62601D,ff,SUPER_SLEEP_ALLOWED,1:true;0:false ,765,24,24,1,0,0,,22601E,62601E,ff,BCM_MONITOR_REFUSE_TO_SLEEP,1:true;0:false ,765,24,31,1,0,0,,22601F,62601F,ff,DELIVERY_MODE_INFORMATION,0:CUSTOMER_MODE;1:DELIVERY_MODE_LEVEL_1;2:DELIVERY_MODE_LEVEL_2 ,765,24,31,1,0,0,,226021,626021,ff,WAKE_UP_TYPE,0:FULL_WAKE_UP;1:SELECTIVE_WAKE_UP_MODE_1;2:SELECTIVE_WAKE_UP_MODE_2;3:SELECTIVE_WAKE_UP_MODE_3;4:SELECTIVE_WAKE_UP_MODE_4;5:SELECTIVE_WAKE_UP_MODE_5;6:SELECTIVE_WAKE_UP_MODE_6;7:WAKE_UP_TYPE_UNAVAILABLE ,765,24,31,1,0,0,,226022,626022,ff,CLUTCH_SW_MAX_TRAVEL,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,24,31,1,0,0,,226023,626023,ff,CLUTCH_SW_MIN_TRAVEL,0:CLUTCHTRAVEL_NOT_USED;1:CLUTCHTRAVEL_SW_NOT_ACTIVE;2:CLUTCHTRAVEL_SW_ACTIVE;3:CLUTCHTRAVEL_SW_UNAVAILABLE ,765,24,31,1,0,0,,226024,626024,ff,CHILDLOCK_INDICATOR_ON,0:CHILDLOCK_INDICATOR_NO_ORDER;1:CHILDLOCK_INDICATOR_SWITCH_OFF;2:CHILDLOCK_INDICATOR_SWITCH_ON;3:CHILDLOCK_INDICATOR_UNAVAILABLE ,765,24,31,1,0,0,,226025,626025,ff,DRIVER_SIDE,0:DRIVER_LEFT_SIDE;1:DRIVER_RIGHT_SIDE ,765,24,24,1,0,0,,226026,626026,ff,FRONT_LEFT_DOOR_OPENED,1:true;0:false ,765,24,24,1,0,0,,226027,626027,ff,FRONT_RIGHT_DOOR_OPENED,1:true;0:false ,765,24,31,1,0,0,,22602A,62602A,ff,ALIM_NIVEAU_3_CS ,765,24,31,1,0,0,,22602B,62602B,ff,CRANKING_FAILURE_CS ,765,24,31,1,0,0,,22602C,62602C,ff,CRANKING_FAILURE_HISTORY_1_CS ,765,24,31,1,0,0,,22602D,62602D,ff,CRANKING_FAILURE_HISTORY_2_CS ,765,24,31,1,0,0,,22602E,62602E,ff,CRANKING_FAILURE_HISTORY_3_CS ,765,24,31,1,0,0,,22602F,62602F,ff,CRANKING_FAILURE_HISTORY_4_CS ,765,24,31,1,0,0,,226030,626030,ff,CRANKING_FAILURE_HISTORY_5_CS ,765,24,24,1,0,0,,226031,626031,ff,IN_DRIVING_CYCLE_PWL1,1:true;0:false ,765,24,31,1,0,0,,226032,626032,ff,INHIBITION_DEMARREUR_CS ,765,24,31,1,0,0,,226033,626033,ff,KEY_STATUS,0:KEY_STOP;1:KEY_IGN;2:KEY_STARTER_REQUEST ,765,24,31,1,0,0,,226034,626034,ff,MOTEUR_CS ,765,24,31,1,0,0,,226035,626035,ff,N3_FAILED_CS ,765,24,24,1,0,0,,226036,626036,ff,R_L3_BY_CUSTOMER,1:true;0:false ,765,24,24,1,0,0,,226037,626037,ff,R_L3_BY_DIAG,1:true;0:false ,765,24,24,1,0,0,,226038,626038,ff,R_L3_BY_ENGINE,1:true;0:false ,765,24,24,1,0,0,,226039,626039,ff,R_L3_BY_RES,1:true;0:false ,765,24,24,1,0,0,,22603A,62603A,ff,R_L3_BY_VEHICLE_SPEED,1:true;0:false ,765,24,24,1,0,0,,22603B,62603B,ff,R_L3_OFF_BY_ENGINE,1:true;0:false ,765,24,24,1,0,0,,22603D,62603D,ff,R_POWER_LEVEL_3_ON,1:true;0:false ,765,24,24,1,0,0,,22603E,62603E,ff,R_START_ENGINE,1:true;0:false ,765,24,31,1,0,0,,22603F,62603F,ff,STCUT_RL_CS ,765,24,31,1,0,0,,226040,626040,ff,LAST_BCM_HFM_HANDFREE_REQUEST,1:HANDFREE_UNLOCK;3:HANDFREE_LOCK;0:HANDFREE_NO_REQUEST;2:HANDFREE_UNLOCK_BY_APRUN;4:HANDFREE_LOCK_BY_WAC;7:HANDFREE_UNAVAILABLE;5:HANDFREE_BACK_DOOR_OPEN_REQUEST;6:HANDFREE_ETA_HANDFREE_REQUEST ,765,24,31,1,0,0,,226041,626041,ff,LAST_BCM_HFM_RKE_REQUEST,1:HFM_RKE_NOT_USED_1;2:SHORT_PRESS_LOCK;3:SHORT_PRESS_UNLOCK;5:SHORT_PRESS_PANIC;8:SHORT_PRESS_REMOTE_LIGHTING;9:SHORT_PRESS_RES;10:SHORT_PRESS_ROOF;13:HFM_RKE_NOT_USED_13;14:HFM_RKE_NOT_USED_14;15:HFM_RKE_NOT_USED_15;16:HFM_RKE_NOT_USED_16;17:HFM_RKE_NOT_USED_17;18:LONG_PRESS_LOCK;19:LONG_PRESS_UNLOCK;21:LONG_PRESS_PANIC;24:LONG_PRESS_REMOTE_LIGHTING;25:LONG_PRESS_RES;26:LONG_PRESS_ROOF;28:HFM_RKE_NOT_USED_28;29:HFM_RKE_NOT_USED_29;30:HFM_RKE_NOT_USED_30;0:RKE_NO_REQUEST;4:SHORT_PRESS_BACKDOOR_TRUNK;6:SHORT_PRESS_PWR_SLIDING_DOOR_RH;7:SHORT_PRESS_PWR_SLIDING_DOOR_LH;20:LONG_PRESS_BACKDOOR_TRUNK;22:LONG_PRESS_PWR_SLIDING_DOOR_RH;23:LONG_PRESS_PWR_SLIDING_DOOR_LH;27:VERY_LONG_PRESS_LOCK_UNLOCK;31:RKE_UNAVAILABLE;11:REMOTE_SERVICE_LOCK;12:REMOTE_SERVICE_UNLOCK ,765,24,24,1,0,0,,226043,626043,ff,BCM_HFM_CODE_AUTHENTICATION,1:true;0:false ,765,24,31,1,0,0,,226044,626044,ff,BCM_USER_IDENT_HANDFREE,1:UI_FRONT_LEFT;2:UI_FRONT_RIGHT;3:UI_REAR_LEFT;4:UI_REAR_RIGHT;5:UI_BACKDOOR;0:UI_HANDFREE_NONE ,765,24,31,1,0,0,,226045,626045,ff,BCM_USER_IDENT_RKE,1:UI_CID_1;2:UI_CID_2;3:UI_CID_3;4:UI_CID_4;0:UI_RKE_NONE ,765,24,55,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.0 ,765,56,87,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.1 ,765,88,119,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.2 ,765,120,151,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.3 ,765,152,183,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.4 ,765,184,215,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.5 ,765,216,247,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.6 ,765,248,279,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.7 ,765,280,311,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.8 ,765,312,343,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.9 ,765,344,375,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.10 ,765,376,407,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.11 ,765,408,439,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.12 ,765,440,471,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.13 ,765,472,503,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.14 ,765,504,535,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.15 ,765,536,567,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.16 ,765,568,599,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.17 ,765,600,631,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.18 ,765,632,663,1,0,0,,22604A,62604A,4ff,LAST_RKE_HISTO_ABSOLUTETIME.19 ,765,24,24,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.0,1:true;0:false ,765,25,25,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.1,1:true;0:false ,765,26,26,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.2,1:true;0:false ,765,27,27,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.3,1:true;0:false ,765,28,28,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.4,1:true;0:false ,765,29,29,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.5,1:true;0:false ,765,30,30,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.6,1:true;0:false ,765,31,31,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.7,1:true;0:false ,765,32,32,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.8,1:true;0:false ,765,33,33,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.9,1:true;0:false ,765,34,34,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.10,1:true;0:false ,765,35,35,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.11,1:true;0:false ,765,36,36,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.12,1:true;0:false ,765,37,37,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.13,1:true;0:false ,765,38,38,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.14,1:true;0:false ,765,39,39,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.15,1:true;0:false ,765,40,40,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.16,1:true;0:false ,765,41,41,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.17,1:true;0:false ,765,42,42,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.18,1:true;0:false ,765,43,43,1,0,0,,22604B,62604B,ff,LAST_RKE_HISTO_BTN1_LNG_PRESS.19,1:true;0:false ,765,24,24,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.0,1:true;0:false ,765,25,25,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.1,1:true;0:false ,765,26,26,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.2,1:true;0:false ,765,27,27,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.3,1:true;0:false ,765,28,28,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.4,1:true;0:false ,765,29,29,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.5,1:true;0:false ,765,30,30,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.6,1:true;0:false ,765,31,31,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.7,1:true;0:false ,765,32,32,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.8,1:true;0:false ,765,33,33,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.9,1:true;0:false ,765,34,34,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.10,1:true;0:false ,765,35,35,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.11,1:true;0:false ,765,36,36,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.12,1:true;0:false ,765,37,37,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.13,1:true;0:false ,765,38,38,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.14,1:true;0:false ,765,39,39,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.15,1:true;0:false ,765,40,40,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.16,1:true;0:false ,765,41,41,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.17,1:true;0:false ,765,42,42,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.18,1:true;0:false ,765,43,43,1,0,0,,22604C,62604C,ff,LAST_RKE_HISTO_BTN1_SHRT_PRESS.19,1:true;0:false ,765,24,24,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.0,1:true;0:false ,765,25,25,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.1,1:true;0:false ,765,26,26,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.2,1:true;0:false ,765,27,27,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.3,1:true;0:false ,765,28,28,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.4,1:true;0:false ,765,29,29,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.5,1:true;0:false ,765,30,30,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.6,1:true;0:false ,765,31,31,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.7,1:true;0:false ,765,32,32,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.8,1:true;0:false ,765,33,33,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.9,1:true;0:false ,765,34,34,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.10,1:true;0:false ,765,35,35,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.11,1:true;0:false ,765,36,36,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.12,1:true;0:false ,765,37,37,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.13,1:true;0:false ,765,38,38,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.14,1:true;0:false ,765,39,39,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.15,1:true;0:false ,765,40,40,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.16,1:true;0:false ,765,41,41,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.17,1:true;0:false ,765,42,42,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.18,1:true;0:false ,765,43,43,1,0,0,,22604D,62604D,ff,LAST_RKE_HISTO_BTN2_LNG_PRESS.19,1:true;0:false ,765,24,24,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.0,1:true;0:false ,765,25,25,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.1,1:true;0:false ,765,26,26,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.2,1:true;0:false ,765,27,27,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.3,1:true;0:false ,765,28,28,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.4,1:true;0:false ,765,29,29,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.5,1:true;0:false ,765,30,30,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.6,1:true;0:false ,765,31,31,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.7,1:true;0:false ,765,32,32,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.8,1:true;0:false ,765,33,33,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.9,1:true;0:false ,765,34,34,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.10,1:true;0:false ,765,35,35,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.11,1:true;0:false ,765,36,36,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.12,1:true;0:false ,765,37,37,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.13,1:true;0:false ,765,38,38,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.14,1:true;0:false ,765,39,39,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.15,1:true;0:false ,765,40,40,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.16,1:true;0:false ,765,41,41,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.17,1:true;0:false ,765,42,42,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.18,1:true;0:false ,765,43,43,1,0,0,,22604E,62604E,ff,LAST_RKE_HISTO_BTN2_SHRT_PRESS.19,1:true;0:false ,765,24,24,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.0,1:true;0:false ,765,25,25,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.1,1:true;0:false ,765,26,26,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.2,1:true;0:false ,765,27,27,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.3,1:true;0:false ,765,28,28,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.4,1:true;0:false ,765,29,29,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.5,1:true;0:false ,765,30,30,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.6,1:true;0:false ,765,31,31,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.7,1:true;0:false ,765,32,32,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.8,1:true;0:false ,765,33,33,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.9,1:true;0:false ,765,34,34,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.10,1:true;0:false ,765,35,35,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.11,1:true;0:false ,765,36,36,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.12,1:true;0:false ,765,37,37,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.13,1:true;0:false ,765,38,38,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.14,1:true;0:false ,765,39,39,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.15,1:true;0:false ,765,40,40,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.16,1:true;0:false ,765,41,41,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.17,1:true;0:false ,765,42,42,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.18,1:true;0:false ,765,43,43,1,0,0,,22604F,62604F,ff,LAST_RKE_HISTO_BTN3_LNG_PRESS.19,1:true;0:false ,765,24,24,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.0,1:true;0:false ,765,25,25,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.1,1:true;0:false ,765,26,26,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.2,1:true;0:false ,765,27,27,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.3,1:true;0:false ,765,28,28,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.4,1:true;0:false ,765,29,29,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.5,1:true;0:false ,765,30,30,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.6,1:true;0:false ,765,31,31,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.7,1:true;0:false ,765,32,32,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.8,1:true;0:false ,765,33,33,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.9,1:true;0:false ,765,34,34,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.10,1:true;0:false ,765,35,35,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.11,1:true;0:false ,765,36,36,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.12,1:true;0:false ,765,37,37,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.13,1:true;0:false ,765,38,38,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.14,1:true;0:false ,765,39,39,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.15,1:true;0:false ,765,40,40,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.16,1:true;0:false ,765,41,41,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.17,1:true;0:false ,765,42,42,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.18,1:true;0:false ,765,43,43,1,0,0,,226050,626050,ff,LAST_RKE_HISTO_BTN3_SHRT_PRESS.19,1:true;0:false ,765,24,24,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.0,1:true;0:false ,765,25,25,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.1,1:true;0:false ,765,26,26,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.2,1:true;0:false ,765,27,27,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.3,1:true;0:false ,765,28,28,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.4,1:true;0:false ,765,29,29,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.5,1:true;0:false ,765,30,30,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.6,1:true;0:false ,765,31,31,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.7,1:true;0:false ,765,32,32,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.8,1:true;0:false ,765,33,33,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.9,1:true;0:false ,765,34,34,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.10,1:true;0:false ,765,35,35,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.11,1:true;0:false ,765,36,36,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.12,1:true;0:false ,765,37,37,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.13,1:true;0:false ,765,38,38,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.14,1:true;0:false ,765,39,39,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.15,1:true;0:false ,765,40,40,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.16,1:true;0:false ,765,41,41,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.17,1:true;0:false ,765,42,42,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.18,1:true;0:false ,765,43,43,1,0,0,,226051,626051,ff,LAST_RKE_HISTO_BTN4_LNG_PRESS.19,1:true;0:false ,765,24,24,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.0,1:true;0:false ,765,25,25,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.1,1:true;0:false ,765,26,26,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.2,1:true;0:false ,765,27,27,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.3,1:true;0:false ,765,28,28,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.4,1:true;0:false ,765,29,29,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.5,1:true;0:false ,765,30,30,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.6,1:true;0:false ,765,31,31,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.7,1:true;0:false ,765,32,32,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.8,1:true;0:false ,765,33,33,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.9,1:true;0:false ,765,34,34,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.10,1:true;0:false ,765,35,35,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.11,1:true;0:false ,765,36,36,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.12,1:true;0:false ,765,37,37,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.13,1:true;0:false ,765,38,38,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.14,1:true;0:false ,765,39,39,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.15,1:true;0:false ,765,40,40,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.16,1:true;0:false ,765,41,41,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.17,1:true;0:false ,765,42,42,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.18,1:true;0:false ,765,43,43,1,0,0,,226052,626052,ff,LAST_RKE_HISTO_BTN4_SHRT_PRESS.19,1:true;0:false ,765,24,31,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.0 ,765,32,39,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.1 ,765,40,47,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.2 ,765,48,55,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.3 ,765,56,63,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.4 ,765,64,71,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.5 ,765,72,79,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.6 ,765,80,87,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.7 ,765,88,95,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.8 ,765,96,103,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.9 ,765,104,111,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.10 ,765,112,119,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.11 ,765,120,127,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.12 ,765,128,135,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.13 ,765,136,143,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.14 ,765,144,151,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.15 ,765,152,159,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.16 ,765,160,167,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.17 ,765,168,175,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.18 ,765,176,183,1,0,0,,226053,626053,ff,LAST_RKE_HISTO_ID.19 ,765,24,31,1,0,0,,226054,626054,ff,LAST_RKE_HISTO_INDEX ,765,24,55,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.0 ,765,56,87,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.1 ,765,88,119,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.2 ,765,120,151,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.3 ,765,152,183,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.4 ,765,184,215,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.5 ,765,216,247,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.6 ,765,248,279,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.7 ,765,280,311,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.8 ,765,312,343,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.9 ,765,344,375,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.10 ,765,376,407,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.11 ,765,408,439,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.12 ,765,440,471,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.13 ,765,472,503,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.14 ,765,504,535,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.15 ,765,536,567,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.16 ,765,568,599,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.17 ,765,600,631,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.18 ,765,632,663,1,0,0,,226055,626055,4ff,LAST_RKE_HISTO_SI_NUMBER.19 ,765,24,24,1,0,0,,226056,626056,ff,CID_IDENTIFIED,1:true;0:false ,765,24,31,1,0,0,,226057,626057,ff,LAST_CID_USED ,765,24,24,1,0,0,,226058,626058,ff,CID_AUTHENTICATED,1:true;0:false ,765,24,31,1,0,0,,226059,626059,ff,NB_AUTHENT_REQ_IN_TRP ,765,24,31,1,0,0,,22605A,62605A,ff,NB_AUTHENT_SUCCESS_IN_TRP ,765,24,31,1,0,0,,22605B,62605B,ff,FRONT_WIPING_MODE,0:NO_WIPE_MODE;1:MANUAL_INT_MODE;2:AUTO_MODE;3:LOW_SPEED_MODE;4:HIGH_SPEED_MODE;5:SERVICE_POSITION ,765,24,24,1,0,0,,22605C,62605C,ff,I_HEADLAMP_WASHER_SW,1:true;0:false ,765,24,31,1,0,0,,22605D,62605D,ff,FRONTWIPERSTATUS_LIN,0:FRONT_WIPER_STOPPED;1:LOW_SPEED_ACTIVE;2:HIGH_SPEED_ACTIVE;3:FW_NOT_USED ,765,24,31,1,0,0,,22605E,62605E,ff,FRONTWIPERSTATUS_CAN,0:FRONT_WIPER_STOPPED;1:LOW_SPEED_ACTIVE;2:HIGH_SPEED_ACTIVE;3:FW_NOT_USED ,765,24,24,1,0,0,,22605F,62605F,ff,FRONT_WIPER_AF,1:true;0:false ,765,24,31,1,0,0,,226061,626061,ff,WIPING_SPEED_REQUEST_BY_SENSOR ,765,24,39,1,0,0,,226062,626062,ff,WINDSCREENTYPE ,765,24,24,1,0,0,,226063,626063,ff,WASHING_COMMAND,1:true;0:false ,765,24,31,1,0,0,,226064,626064,ff,RAINSENSITIVITY ,765,24,31,1,0,0,,226065,626065,ff,PARAMETERSETTYPE ,765,24,31,1,0,0,,226066,626066,ff,TEACHIN_STATUS,0:TEACHIN_NOT_DONE;1:TEACHIN_IN_PROGRESS;2:TEACHIN_DONE_AND_SUCCESS;3:TEACHIN_ABORDED_OR_FAILURE ,765,24,24,1,0,0,,226067,626067,ff,TEACHIN_MODE_ACTIVATION_STATE,1:true;0:false ,765,24,31,1,0,0,,226068,626068,ff,SLAVE_ANGLE ,765,24,31,1,0,0,,226069,626069,ff,MASTER_ANGLE ,765,24,24,1,0,0,,22606A,62606A,ff,RAIN_SENSOR_FAILURE,1:true;0:false ,765,24,31,1,0,0,,22606B,62606B,ff,AUTO_ACC_STATE ,765,24,31,1,0,0,,22606C,62606C,ff,VEHICLE_STATE_CS ,765,24,24,1,0,0,,22606E,62606E,ff,O_IGN_CAB_RL_CMD,1:true;0:false ,765,24,24,1,0,0,,22606F,62606F,ff,O_AUTO_ACC_1_RL_CMD,1:true;0:false ,765,24,24,1,0,0,,226070,626070,ff,O_AUTO_ACC_2_RL_CMD,1:true;0:false ,765,24,24,1,0,0,,226071,626071,ff,LEVER_SHIFT_M_SW,1:true;0:false ,765,24,24,1,0,0,,226072,626072,ff,LEVER_SHIFT_P_SW,1:true;0:false ,765,24,24,1,0,0,,226073,626073,ff,OVERDRIVE_SW,1:true;0:false ,765,24,24,1,0,0,,226074,626074,ff,PADDLE_SHIFT_M_SW,1:true;0:false ,765,24,24,1,0,0,,226075,626075,ff,PADDLE_SHIFT_P_SW,1:true;0:false ,765,24,31,1,0,0,,226076,626076,ff,RF_ORIGIN,0:NO_SIGNIFICATION;1:NO_SIGNIFICATION_1;2:TMPS_CHECKSUM_OK;3:TMPS_CHECKSUM_NOK;4:RF_ORIGIN_NOT_USED;5:RF_ORIGIN_NOT_USED_1;6:CID_RKE_CHECKSUM_OK;7:CID_RKE_CHECKSUM_NOK ,765,24,24,1,0,0,,226077,626077,ff,RKE_IDENTIFICATION_STATUS,1:true;0:false ,765,24,55,1,0,0,,226078,626078,4ff,RKE_IDE_RECEIVED_FRAME ,765,24,31,1,0,0,,226079,626079,ff,RKE_ID ,765,24,31,1,0,0,,22607A,62607A,ff,R_EMERGENCY_ENGINE_STOP,0:NO_ORDER_EMERGENCY_STOP;1:EMERGENCY_STOP_ORDER_NOT_USED_1;2:EMERGENCY_STOP_ORDER_NOT_USED_2;3:EMERGENCY_STOP_ORDER_NOT_USED_3;4:EMERGENCY_STOP_ORDER_NOT_USED_4;5:EMERGENCY_STOP_ORDER_NOT_USED_5;6:NO_EMERGENCY_STOP_ORDER;7:EMERGENCY_STOP_ORDER_NOT_USED_7;8:EMERGENCY_STOP_ORDER_NOT_USED_8;9:EMERGENCY_ENGINE_STOP_ORDER;10:EMERGENCY_STOP_ORDER_NOT_USED_10;11:EMERGENCY_STOP_ORDER_NOT_USED_11;12:EMERGENCY_STOP_ORDER_NOT_USED_12;13:EMERGENCY_STOP_ORDER_NOT_USED_13;14:EMERGENCY_STOP_ORDER_NOT_USED_14;15:EMERGENCY_STOP_ORDER_NOT_USED_15 ,765,24,31,1,0,0,,22607C,62607C,ff,NB_IDENT_REQ_IN_TRP ,765,24,31,1,0,0,,22607D,62607D,ff,NB_IDENT_SUCCESS_IN_TRP ,765,24,31,1,0,0,,22607E,62607E,ff,BCM_HFM_HANDFREE_REQUEST,1:HANDFREE_UNLOCK;3:HANDFREE_LOCK;0:HANDFREE_NO_REQUEST;2:HANDFREE_UNLOCK_BY_APRUN;4:HANDFREE_LOCK_BY_WAC;7:HANDFREE_UNAVAILABLE;5:HANDFREE_BACK_DOOR_OPEN_REQUEST;6:HANDFREE_ETA_HANDFREE_REQUEST ,765,24,31,1,0,0,,22607F,62607F,ff,BCM_HFM_RKE_REQUEST,1:HFM_RKE_NOT_USED_1;2:SHORT_PRESS_LOCK;3:SHORT_PRESS_UNLOCK;5:SHORT_PRESS_PANIC;8:SHORT_PRESS_REMOTE_LIGHTING;9:SHORT_PRESS_RES;10:SHORT_PRESS_ROOF;13:HFM_RKE_NOT_USED_13;14:HFM_RKE_NOT_USED_14;15:HFM_RKE_NOT_USED_15;16:HFM_RKE_NOT_USED_16;17:HFM_RKE_NOT_USED_17;18:LONG_PRESS_LOCK;19:LONG_PRESS_UNLOCK;21:LONG_PRESS_PANIC;24:LONG_PRESS_REMOTE_LIGHTING;25:LONG_PRESS_RES;26:LONG_PRESS_ROOF;28:HFM_RKE_NOT_USED_28;29:HFM_RKE_NOT_USED_29;30:HFM_RKE_NOT_USED_30;0:RKE_NO_REQUEST;4:SHORT_PRESS_BACKDOOR_TRUNK;6:SHORT_PRESS_PWR_SLIDING_DOOR_RH;7:SHORT_PRESS_PWR_SLIDING_DOOR_LH;20:LONG_PRESS_BACKDOOR_TRUNK;22:LONG_PRESS_PWR_SLIDING_DOOR_RH;23:LONG_PRESS_PWR_SLIDING_DOOR_LH;27:VERY_LONG_PRESS_LOCK_UNLOCK;31:RKE_UNAVAILABLE;11:REMOTE_SERVICE_LOCK;12:REMOTE_SERVICE_UNLOCK ,765,24,24,1,0,0,,226081,626081,ff,SENSOR_COMM_FAILURE,1:true;0:false ,765,24,31,1,0,0,,226082,626082,ff,TEACHIN_MASTER_ANGLE ,765,24,31,1,0,0,,226083,626083,ff,TEACHIN_SLAVE_ANGLE ,765,24,31,1,0,0,,226084,626084,ff,TEACHIN_STARTING_STATUS,0:TEACHIN_NOT_DONE;1:TEACHIN_IN_PROGRESS;2:TEACHIN_DONE_AND_SUCCESS;3:TEACHIN_ABORDED_OR_FAILURE ,765,24,24,1,0,0,,226085,626085,ff,TEACHIN_MODE_ACTIVATION_STATUS,1:true;0:false ,765,24,24,1,0,0,,226086,626086,ff,I_HAZARD_SW,1:true;0:false ,765,24,24,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.0,1:true;0:false ,765,25,25,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.1,1:true;0:false ,765,26,26,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.2,1:true;0:false ,765,27,27,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.3,1:true;0:false ,765,28,28,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.4,1:true;0:false ,765,29,29,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.5,1:true;0:false ,765,30,30,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.6,1:true;0:false ,765,31,31,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.7,1:true;0:false ,765,32,32,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.8,1:true;0:false ,765,33,33,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.9,1:true;0:false ,765,34,34,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.10,1:true;0:false ,765,35,35,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.11,1:true;0:false ,765,36,36,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.12,1:true;0:false ,765,37,37,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.13,1:true;0:false ,765,38,38,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.14,1:true;0:false ,765,39,39,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.15,1:true;0:false ,765,40,40,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.16,1:true;0:false ,765,41,41,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.17,1:true;0:false ,765,42,42,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.18,1:true;0:false ,765,43,43,1,0,0,,226088,626088,ff,LAST_RKE_HISTO_BTN5_LNG_PRESS.19,1:true;0:false ,765,24,24,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.0,1:true;0:false ,765,25,25,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.1,1:true;0:false ,765,26,26,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.2,1:true;0:false ,765,27,27,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.3,1:true;0:false ,765,28,28,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.4,1:true;0:false ,765,29,29,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.5,1:true;0:false ,765,30,30,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.6,1:true;0:false ,765,31,31,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.7,1:true;0:false ,765,32,32,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.8,1:true;0:false ,765,33,33,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.9,1:true;0:false ,765,34,34,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.10,1:true;0:false ,765,35,35,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.11,1:true;0:false ,765,36,36,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.12,1:true;0:false ,765,37,37,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.13,1:true;0:false ,765,38,38,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.14,1:true;0:false ,765,39,39,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.15,1:true;0:false ,765,40,40,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.16,1:true;0:false ,765,41,41,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.17,1:true;0:false ,765,42,42,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.18,1:true;0:false ,765,43,43,1,0,0,,226089,626089,ff,LAST_RKE_HISTO_BTN5_SHRT_PRESS.19,1:true;0:false ,765,24,31,1,0,0,,22608A,62608A,ff,RKE_STATUS,0:RS_NOT_AVAILABLE;1:RS_ENABLED;2:RS_INHIBITED ,765,24,31,1,0,0,,22608B,62608B,ff,RKE_BUTTON_PRESSED,1:HFM_RKE_NOT_USED_1;2:SHORT_PRESS_LOCK;3:SHORT_PRESS_UNLOCK;5:SHORT_PRESS_PANIC;8:SHORT_PRESS_REMOTE_LIGHTING;9:SHORT_PRESS_RES;10:SHORT_PRESS_ROOF;13:HFM_RKE_NOT_USED_13;14:HFM_RKE_NOT_USED_14;15:HFM_RKE_NOT_USED_15;16:HFM_RKE_NOT_USED_16;17:HFM_RKE_NOT_USED_17;18:LONG_PRESS_LOCK;19:LONG_PRESS_UNLOCK;21:LONG_PRESS_PANIC;24:LONG_PRESS_REMOTE_LIGHTING;25:LONG_PRESS_RES;26:LONG_PRESS_ROOF;28:HFM_RKE_NOT_USED_28;29:HFM_RKE_NOT_USED_29;30:HFM_RKE_NOT_USED_30;0:RKE_NO_REQUEST;4:SHORT_PRESS_BACKDOOR_TRUNK;6:SHORT_PRESS_PWR_SLIDING_DOOR_RH;7:SHORT_PRESS_PWR_SLIDING_DOOR_LH;20:LONG_PRESS_BACKDOOR_TRUNK;22:LONG_PRESS_PWR_SLIDING_DOOR_RH;23:LONG_PRESS_PWR_SLIDING_DOOR_LH;27:VERY_LONG_PRESS_LOCK_UNLOCK;31:RKE_UNAVAILABLE;11:REMOTE_SERVICE_LOCK;12:REMOTE_SERVICE_UNLOCK ,765,24,31,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.0,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,32,39,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.1,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,40,47,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.2,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,48,55,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.3,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,56,63,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.4,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,64,71,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.5,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,72,79,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.6,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,80,87,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.7,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,88,95,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.8,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,96,103,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.9,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,104,111,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.10,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,112,119,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.11,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,120,127,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.12,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,128,135,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.13,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,136,143,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.14,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,144,151,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.15,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,152,159,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.16,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,160,167,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.17,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,168,175,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.18,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,176,183,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.19,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,184,191,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.20,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,192,199,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.21,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,200,207,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.22,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,208,215,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.23,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,216,223,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.24,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,224,231,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.25,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,232,239,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.26,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,240,247,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.27,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,248,255,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.28,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,256,263,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.29,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,264,271,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.30,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,272,279,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.31,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,280,287,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.32,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,288,295,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.33,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,296,303,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.34,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,304,311,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.35,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,312,319,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.36,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,320,327,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.37,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,328,335,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.38,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,336,343,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.39,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,344,351,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.40,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,352,359,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.41,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,360,367,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.42,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,368,375,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.43,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,376,383,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.44,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,384,391,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.45,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,392,399,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.46,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,400,407,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.47,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,408,415,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.48,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,416,423,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.49,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,424,431,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.50,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,432,439,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.51,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,440,447,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.52,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,448,455,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.53,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,456,463,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.54,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,464,471,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.55,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,472,479,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.56,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,480,487,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.57,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,488,495,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.58,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,496,503,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.59,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,504,511,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.60,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,512,519,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.61,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,520,527,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.62,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,528,535,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.63,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,536,543,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.64,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,544,551,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.65,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,552,559,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.66,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,560,567,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.67,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,568,575,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.68,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,576,583,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.69,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,584,591,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.70,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,592,599,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.71,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,600,607,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.72,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,608,615,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.73,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,616,623,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.74,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,624,631,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.75,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,632,639,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.76,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,640,647,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.77,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,648,655,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.78,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,656,663,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.79,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,664,671,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.80,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,672,679,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.81,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,680,687,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.82,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,688,695,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.83,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,696,703,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.84,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,704,711,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.85,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,712,719,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.86,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,720,727,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.87,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,728,735,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.88,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,736,743,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.89,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,744,751,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.90,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,752,759,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.91,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,760,767,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.92,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,768,775,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.93,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,776,783,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.94,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,784,791,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.95,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,792,799,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.96,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,800,807,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.97,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,808,815,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.98,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,816,823,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.99,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,824,831,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.100,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,832,839,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.101,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,840,847,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.102,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,848,855,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.103,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,856,863,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.104,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,864,871,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.105,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,872,879,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.106,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,880,887,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.107,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,888,895,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.108,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,896,903,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.109,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,904,911,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.110,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,912,919,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.111,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,920,927,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.112,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,928,935,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.113,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,936,943,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.114,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,944,951,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.115,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,952,959,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.116,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,960,967,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.117,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,968,975,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.118,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,976,983,1,0,0,,22608C,62608C,ff,LAST_DOOR_LOCK_OPEN_ACTION.119,0:NO_DOOR_ACTION_LOCK_OR_OPEN;1:LOCK_ALL;2:LOCK_BACKDOOR;3:SUPERLOCK_ALL_OR_CHILDLOCK_REAR;4:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_4;5:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_5;6:UNLOCK_ALL;7:UNLOCK_DRIVER_DOOR;8:UNLOCK_ASSISTANT_DOOR;9:UNLOCK_UNSUPERLOCK_ALL;10:UNCHILDLOCK_REAR_DOORS;11:UNSUPERLOCK_ALL_DOORS;12:UNLOCK_BACKDOOR;13:OPENING_BACKDOOR_OR_TRUNK;14:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_14;15:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_15;16:DRIVER_DOOR_OPEN;17:ASSIST_DOOR_OPEN;18:REAR_RIGHT_DOOR_OPEN;19:REAR_LEFT_DOOR_OPEN;20:BACKDOOR_OR_TRUNK_OPEN;21:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_21;22:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_22;23:DRIVER_DOOR_CLOSE;24:ASSIST_DOOR_CLOSE;25:REAR_RIGHT_DOOR_CLOSE;26:REAR_LEFT_DOOR_CLOSE;27:BACKDOOR_OR_TRUNK_CLOSE;28:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_28;29:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_29;30:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_30;31:LAST_DOOR_LOCK_OPEN_ACTION_RESERVED_31 ,765,24,55,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.0 ,765,56,87,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.1 ,765,88,119,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.2 ,765,120,151,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.3 ,765,152,183,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.4 ,765,184,215,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.5 ,765,216,247,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.6 ,765,248,279,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.7 ,765,280,311,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.8 ,765,312,343,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.9 ,765,344,375,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.10 ,765,376,407,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.11 ,765,408,439,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.12 ,765,440,471,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.13 ,765,472,503,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.14 ,765,504,535,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.15 ,765,536,567,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.16 ,765,568,599,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.17 ,765,600,631,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.18 ,765,632,663,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.19 ,765,664,695,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.20 ,765,696,727,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.21 ,765,728,759,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.22 ,765,760,791,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.23 ,765,792,823,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.24 ,765,824,855,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.25 ,765,856,887,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.26 ,765,888,919,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.27 ,765,920,951,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.28 ,765,952,983,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.29 ,765,984,1015,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.30 ,765,1016,1047,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.31 ,765,1048,1079,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.32 ,765,1080,1111,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.33 ,765,1112,1143,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.34 ,765,1144,1175,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.35 ,765,1176,1207,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.36 ,765,1208,1239,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.37 ,765,1240,1271,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.38 ,765,1272,1303,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.39 ,765,1304,1335,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.40 ,765,1336,1367,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.41 ,765,1368,1399,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.42 ,765,1400,1431,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.43 ,765,1432,1463,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.44 ,765,1464,1495,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.45 ,765,1496,1527,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.46 ,765,1528,1559,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.47 ,765,1560,1591,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.48 ,765,1592,1623,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.49 ,765,1624,1655,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.50 ,765,1656,1687,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.51 ,765,1688,1719,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.52 ,765,1720,1751,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.53 ,765,1752,1783,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.54 ,765,1784,1815,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.55 ,765,1816,1847,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.56 ,765,1848,1879,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.57 ,765,1880,1911,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.58 ,765,1912,1943,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.59 ,765,1944,1975,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.60 ,765,1976,2007,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.61 ,765,2008,2039,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.62 ,765,2040,2071,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.63 ,765,2072,2103,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.64 ,765,2104,2135,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.65 ,765,2136,2167,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.66 ,765,2168,2199,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.67 ,765,2200,2231,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.68 ,765,2232,2263,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.69 ,765,2264,2295,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.70 ,765,2296,2327,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.71 ,765,2328,2359,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.72 ,765,2360,2391,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.73 ,765,2392,2423,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.74 ,765,2424,2455,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.75 ,765,2456,2487,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.76 ,765,2488,2519,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.77 ,765,2520,2551,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.78 ,765,2552,2583,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.79 ,765,2584,2615,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.80 ,765,2616,2647,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.81 ,765,2648,2679,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.82 ,765,2680,2711,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.83 ,765,2712,2743,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.84 ,765,2744,2775,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.85 ,765,2776,2807,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.86 ,765,2808,2839,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.87 ,765,2840,2871,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.88 ,765,2872,2903,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.89 ,765,2904,2935,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.90 ,765,2936,2967,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.91 ,765,2968,2999,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.92 ,765,3000,3031,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.93 ,765,3032,3063,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.94 ,765,3064,3095,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.95 ,765,3096,3127,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.96 ,765,3128,3159,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.97 ,765,3160,3191,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.98 ,765,3192,3223,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.99 ,765,3224,3255,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.100 ,765,3256,3287,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.101 ,765,3288,3319,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.102 ,765,3320,3351,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.103 ,765,3352,3383,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.104 ,765,3384,3415,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.105 ,765,3416,3447,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.106 ,765,3448,3479,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.107 ,765,3480,3511,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.108 ,765,3512,3543,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.109 ,765,3544,3575,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.110 ,765,3576,3607,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.111 ,765,3608,3639,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.112 ,765,3640,3671,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.113 ,765,3672,3703,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.114 ,765,3704,3735,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.115 ,765,3736,3767,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.116 ,765,3768,3799,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.117 ,765,3800,3831,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.118 ,765,3832,3863,1,0,0,,22608D,62608D,4ff,LAST_DOOR_LOCK_OPEN_ACTION_TIME.119 ,765,24,24,1,0,0,,22608E,62608E,ff,VEHICLE_RUNNING,1:true;0:false ,765,24,24,1,0,0,,22608F,62608F,ff,SPEED_UNAVAILABLE_OR_INVALID,1:true;0:false ,765,24,24,1,0,0,,226090,626090,ff,DISTANCE_TOTALIZER_INVALID,1:true;0:false ,765,24,24,1,0,0,,226091,626091,ff,DISTANCE_UNAVAILABLE_OR_INVALID,1:true;0:false ,765,24,24,1,0,0,,226092,626092,ff,R_L3_BY_PERMANENT,1:true;0:false ,765,24,31,1,0,0,,226093,626093,ff,CUSTOMER_CS ,765,24,24,1,0,0,,226094,626094,ff,ANALOG_LIGHT_SENSOR_FAILURE,1:true;0:false ,765,24,24,1,0,0,,226095,626095,ff,ETA_POLLING_IN_PROGRESS,1:true;0:false ,765,24,24,1,0,0,,226096,626096,ff,ETA_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226097,626097,ff,ASSIST_DOOR_SW,1:true;0:false ,765,24,39,1,0,0,,226098,626098,ff,ANALOG_LIGHT_SENSOR_VALUE ,765,24,24,1,0,0,,226099,626099,ff,R_TAILGATE_INSIDE_OPENER,1:true;0:false ,765,24,24,1,0,0,,22609A,62609A,ff,R_TAILGATE_OUTSIDE_OPENER,1:true;0:false ,765,24,24,1,0,0,,22609B,62609B,ff,TAILGATE_SW,1:true;0:false ,765,24,24,1,0,0,,22609C,62609C,ff,B_PEDAL_SW1,1:true;0:false ,765,24,24,1,0,0,,22609D,62609D,ff,B_PEDAL_SW2,1:true;0:false ,765,24,24,1,0,0,,22609E,62609E,ff,I_CHILDLOCK_SW,1:true;0:false ,765,24,24,1,0,0,,22609F,62609F,ff,CSW_LINE_1.0,1:true;0:false ,765,25,25,1,0,0,,22609F,62609F,ff,CSW_LINE_1.1,1:true;0:false ,765,26,26,1,0,0,,22609F,62609F,ff,CSW_LINE_1.2,1:true;0:false ,765,27,27,1,0,0,,22609F,62609F,ff,CSW_LINE_1.3,1:true;0:false ,765,28,28,1,0,0,,22609F,62609F,ff,CSW_LINE_1.4,1:true;0:false ,765,29,29,1,0,0,,22609F,62609F,ff,CSW_LINE_1.5,1:true;0:false ,765,24,24,1,0,0,,2260A0,6260A0,ff,CSW_LINE_2.0,1:true;0:false ,765,25,25,1,0,0,,2260A0,6260A0,ff,CSW_LINE_2.1,1:true;0:false ,765,26,26,1,0,0,,2260A0,6260A0,ff,CSW_LINE_2.2,1:true;0:false ,765,27,27,1,0,0,,2260A0,6260A0,ff,CSW_LINE_2.3,1:true;0:false ,765,28,28,1,0,0,,2260A0,6260A0,ff,CSW_LINE_2.4,1:true;0:false ,765,29,29,1,0,0,,2260A0,6260A0,ff,CSW_LINE_2.5,1:true;0:false ,765,24,24,1,0,0,,2260A1,6260A1,ff,CSW_LINE_3.0,1:true;0:false ,765,25,25,1,0,0,,2260A1,6260A1,ff,CSW_LINE_3.1,1:true;0:false ,765,26,26,1,0,0,,2260A1,6260A1,ff,CSW_LINE_3.2,1:true;0:false ,765,27,27,1,0,0,,2260A1,6260A1,ff,CSW_LINE_3.3,1:true;0:false ,765,28,28,1,0,0,,2260A1,6260A1,ff,CSW_LINE_3.4,1:true;0:false ,765,29,29,1,0,0,,2260A1,6260A1,ff,CSW_LINE_3.5,1:true;0:false ,765,24,24,1,0,0,,2260A2,6260A2,ff,CSW_LINE_4.0,1:true;0:false ,765,25,25,1,0,0,,2260A2,6260A2,ff,CSW_LINE_4.1,1:true;0:false ,765,26,26,1,0,0,,2260A2,6260A2,ff,CSW_LINE_4.2,1:true;0:false ,765,27,27,1,0,0,,2260A2,6260A2,ff,CSW_LINE_4.3,1:true;0:false ,765,28,28,1,0,0,,2260A2,6260A2,ff,CSW_LINE_4.4,1:true;0:false ,765,29,29,1,0,0,,2260A2,6260A2,ff,CSW_LINE_4.5,1:true;0:false ,765,24,24,1,0,0,,2260A3,6260A3,ff,CSW_LINE_5.0,1:true;0:false ,765,25,25,1,0,0,,2260A3,6260A3,ff,CSW_LINE_5.1,1:true;0:false ,765,26,26,1,0,0,,2260A3,6260A3,ff,CSW_LINE_5.2,1:true;0:false ,765,27,27,1,0,0,,2260A3,6260A3,ff,CSW_LINE_5.3,1:true;0:false ,765,28,28,1,0,0,,2260A3,6260A3,ff,CSW_LINE_5.4,1:true;0:false ,765,29,29,1,0,0,,2260A3,6260A3,ff,CSW_LINE_5.5,1:true;0:false ,765,24,24,1,0,0,,2260A4,6260A4,ff,CSW_LINE_6.0,1:true;0:false ,765,25,25,1,0,0,,2260A4,6260A4,ff,CSW_LINE_6.1,1:true;0:false ,765,26,26,1,0,0,,2260A4,6260A4,ff,CSW_LINE_6.2,1:true;0:false ,765,27,27,1,0,0,,2260A4,6260A4,ff,CSW_LINE_6.3,1:true;0:false ,765,28,28,1,0,0,,2260A4,6260A4,ff,CSW_LINE_6.4,1:true;0:false ,765,29,29,1,0,0,,2260A4,6260A4,ff,CSW_LINE_6.5,1:true;0:false ,765,24,24,1,0,0,,2260A5,6260A5,ff,R_CDL_SW_BY_DRIVER,1:true;0:false ,765,24,24,1,0,0,,2260A6,6260A6,ff,OTHERS_KNOB_LOCKED,1:true;0:false ,765,24,24,1,0,0,,2260A7,6260A7,ff,R_CDL_SW_UNLOCK_BY_DRIVER,1:true;0:false ,765,24,24,1,0,0,,2260A8,6260A8,ff,DRIVER_DOOR_SW,1:true;0:false ,765,24,24,1,0,0,,2260A9,6260A9,ff,DRIVER_KNOB_LOCKED,1:true;0:false ,765,24,24,1,0,0,,2260AA,6260AA,ff,ECO_MODE_SW,1:true;0:false ,765,24,24,1,0,0,,2260AB,6260AB,ff,I_END_CLUTCH_SW,1:true;0:false ,765,24,24,1,0,0,,2260AC,6260AC,ff,I_IGN_SW,1:true;0:false ,765,24,24,1,0,0,,2260AD,6260AD,ff,I_KEY_SW,1:true;0:false ,765,24,24,1,0,0,,2260AE,6260AE,ff,POWER_DOORLOCK1,1:true;0:false ,765,24,24,1,0,0,,2260AF,6260AF,ff,POWER_DOORLOCK2,1:true;0:false ,765,24,39,1,0,0,,2260B0,6260B0,ff,POWER_ECU ,765,24,24,1,0,0,,2260B1,6260B1,ff,POWER_FLASHERS,1:true;0:false ,765,24,24,1,0,0,,2260B2,6260B2,ff,POWER_STOP_LAMP,1:true;0:false ,765,24,24,1,0,0,,2260B3,6260B3,ff,POWER_WIPER,1:true;0:false ,765,24,24,1,0,0,,2260B4,6260B4,ff,LEFT_CHILD_LOCK_ENGAGED_SW,1:true;0:false ,765,24,24,1,0,0,,2260B5,6260B5,ff,REAR_LEFT_DOOR_SW,1:true;0:false ,765,24,24,1,0,0,,2260B6,6260B6,ff,RIGHT_CHILD_LOCK_ENGAGED_SW,1:true;0:false ,765,24,24,1,0,0,,2260B7,6260B7,ff,REAR_RIGHT_DOOR_SW,1:true;0:false ,765,24,24,1,0,0,,2260B8,6260B8,ff,DRIVER_SEAT_BELT_SW,1:true;0:false ,765,24,24,1,0,0,,2260B9,6260B9,ff,PLUG,1:true;0:false ,765,24,24,1,0,0,,2260BA,6260BA,ff,SPORT_MODE_SW,1:true;0:false ,765,24,24,1,0,0,,2260BB,6260BB,ff,I_START_CLUTCH_SW,1:true;0:false ,765,24,24,1,0,0,,2260BC,6260BC,ff,I_STARTER_SW,1:true;0:false ,765,24,24,1,0,0,,2260BD,6260BD,ff,STOP_START_SW,1:true;0:false ,765,24,24,1,0,0,,2260BE,6260BE,ff,O_TAILGATE_OPENER,1:true;0:false ,765,24,24,1,0,0,,2260BF,6260BF,ff,PWM_DI_FR_LEFT_D,1:true;0:false ,765,24,24,1,0,0,,2260C0,6260C0,ff,PWM_DI_FR_LEFT_E,1:true;0:false ,765,24,24,1,0,0,,2260C1,6260C1,ff,PWM_DI_FR_RIGHT_D,1:true;0:false ,765,24,24,1,0,0,,2260C2,6260C2,ff,PWM_DI_FR_RIGHT_E,1:true;0:false ,765,24,24,1,0,0,,2260C3,6260C3,ff,PWM_DI_RR_LEFT_B,1:true;0:false ,765,24,24,1,0,0,,2260C4,6260C4,ff,PWM_DI_RR_RIGHT_B,1:true;0:false ,765,24,31,1,0,0,,2260C5,6260C5,ff,PWM_DOORLOCK_LED ,765,24,24,1,0,0,,2260C6,6260C6,ff,O_OFFLOAD_IGN_1_RL_CMD,1:true;0:false ,765,24,24,1,0,0,,2260C7,6260C7,ff,O_OFFLOAD_IGN_2_RL_CMD,1:true;0:false ,765,24,24,1,0,0,,2260C8,6260C8,ff,O_LOCK_FRONT_CMD,1:true;0:false ,765,24,24,1,0,0,,2260C9,6260C9,ff,O_LOCK_REAR_CMD,1:true;0:false ,765,24,24,1,0,0,,2260CA,6260CA,ff,PWR_ETA_LEVEL,1:true;0:false ,765,24,24,1,0,0,,2260CB,6260CB,ff,O_ROOM_LAMP_RL_CMD,1:true;0:false ,765,24,31,1,0,0,,2260CC,6260CC,ff,PWM_REAR_FOG ,765,24,24,1,0,0,,2260CD,6260CD,ff,O_SAFETY_LINE,1:true;0:false ,765,24,24,1,0,0,,2260CE,6260CE,ff,O_STCUT_RL,1:true;0:false ,765,24,24,1,0,0,,2260CF,6260CF,ff,PWM_STOP_LAMP_1,1:true;0:false ,765,24,24,1,0,0,,2260D0,6260D0,ff,PWM_STOP_LAMP_2,1:true;0:false ,765,24,24,1,0,0,,2260D1,6260D1,ff,STOP_START_LED,1:true;0:false ,765,24,24,1,0,0,,2260D2,6260D2,ff,O_SUPERLOCK_REAR_CMD,1:true;0:false ,765,24,24,1,0,0,,2260D5,6260D5,ff,O_UNLOCK_ASSISTANT_CMD,1:true;0:false ,765,24,24,1,0,0,,2260D6,6260D6,ff,O_UNLOCK_DRIVER_CMD,1:true;0:false ,765,24,24,1,0,0,,2260D7,6260D7,ff,O_UNLOCK_REAR_CMD,1:true;0:false ,765,24,24,1,0,0,,2260DA,6260DA,ff,RKE_BUTTON_1_PRESSED,1:true;0:false ,765,24,24,1,0,0,,2260DB,6260DB,ff,RKE_BUTTON_2_PRESSED,1:true;0:false ,765,24,24,1,0,0,,2260DC,6260DC,ff,RKE_BUTTON_3_PRESSED,1:true;0:false ,765,24,24,1,0,0,,2260DD,6260DD,ff,RKE_BUTTON_4_PRESSED,1:true;0:false ,765,24,24,1,0,0,,2260DE,6260DE,ff,RKE_BUTTON_5_PRESSED,1:true;0:false ,765,24,31,1,0,0,,2260E0,6260E0,ff,FAILED_RESYNC_COUNTER_1 ,765,24,31,1,0,0,,2260E1,6260E1,ff,FAILED_RESYNC_COUNTER_2 ,765,24,31,1,0,0,,2260E2,6260E2,ff,FAILED_RESYNC_COUNTER_3 ,765,24,31,1,0,0,,2260E3,6260E3,ff,FAILED_RESYNC_COUNTER_4 ,765,24,31,1,0,0,,2260E4,6260E4,ff,RESYNC_COUNTER_1 ,765,24,31,1,0,0,,2260E5,6260E5,ff,RESYNC_COUNTER_2 ,765,24,31,1,0,0,,2260E6,6260E6,ff,RESYNC_COUNTER_3 ,765,24,31,1,0,0,,2260E7,6260E7,ff,RESYNC_COUNTER_4 ,765,24,31,1,0,0,,2260E8,6260E8,ff,EM_LAST_VERLOG_STATUS,0:VERLOG_OFF;1:BAD_CHALLENGE;2:CHALLENGE_ANSWERED_BY_ECU ,765,24,31,1,0,0,,2260E9,6260E9,ff,HSG_LAST_VERLOG_STATUS,0:VERLOG_OFF;1:BAD_CHALLENGE;2:CHALLENGE_ANSWERED_BY_ECU ,765,24,31,1,0,0,,2260EA,6260EA,ff,LAST_RES_VERLOG_STATUS,0:RES_VERLOG_OFF;1:RES_BAD_ECM_CHALLENGE;2:RES_CHALLENGE_ANSWERED_BY_ECU ,765,24,31,1,0,0,,2260EB,6260EB,ff,LAST_VERLOG_STATUS,0:VERLOG_OFF;1:BAD_CHALLENGE;2:CHALLENGE_ANSWERED_BY_ECU ,765,24,31,1,0,0,,2260EC,6260EC,ff,IMMO_STATUS_SA_PAIRING_TYPE,0:NO_PAIRING_SA;1:CID_PAIRING_SA;2:ECU_PAIRING_SA;3:TCU_PAIRING_SA;4:ECM_PAIRING_SA ,765,24,31,1,0,0,,2260ED,6260ED,ff,IMMO_STATUS_TCU_SA_EXIT ,765,24,31,1,0,0,,2260EF,6260EF,ff,IMMO_STATUS_ECU_SA_EXIT ,765,24,31,1,0,0,,2260F0,6260F0,ff,IMMO_STATUS_CID_SA_EXIT ,765,24,31,1,0,0,,2260F1,6260F1,ff,IMMO_STATUS_ECM_SA_EXIT ,765,24,31,1,0,0,,2260F3,6260F3,ff,IMMO_STATE_SA ,765,24,31,1,0,0,,2260F4,6260F4,ff,IMMO_STATE_GENESIS_MODE_ROOT_ERROR ,765,24,31,1,0,0,,2260F5,6260F5,ff,IMMO_STATE_REWORK_MODE_ROOT_ERROR ,765,24,24,1,0,0,,2260F6,6260F6,ff,IMMO_FLAG_TIME_OUT_REWORK_REACHED,1:true;0:false ,765,24,24,1,0,0,,2260F7,6260F7,ff,IMMO_FLAG_SENDKEY_CONTENT_CONTROL_NOK,1:true;0:false ,765,24,31,1,0,0,,2260F8,6260F8,ff,IMMO_COUNTER_FACTORY_AND_AFTER_SALES_PAIRING ,765,24,31,1,0,0,,2260F9,6260F9,ff,IMMO_COUNTER_REMAINING_IGNITION_BEFORE_APV_CODE_ERASING ,765,24,31,1,0,0,,2260FA,6260FA,ff,ASSIST_DOOR_STATE,0:DL_DR_STT_UNAVAILABLE_VALUE;1:DL_DR_STT_DOOR_CLOSED;2:DL_DR_STT_DOOR_OPEN;3:DL_DR_STT_NOT_USED ,765,24,31,1,0,0,,2260FB,6260FB,ff,DRIVER_DOOR_STATE,0:DL_DR_STT_UNAVAILABLE_VALUE;1:DL_DR_STT_DOOR_CLOSED;2:DL_DR_STT_DOOR_OPEN;3:DL_DR_STT_NOT_USED ,765,24,31,1,0,0,,2260FC,6260FC,ff,REAR_LEFT_DOOR_STATE,0:DL_DR_STT_UNAVAILABLE_VALUE;1:DL_DR_STT_DOOR_CLOSED;2:DL_DR_STT_DOOR_OPEN;3:DL_DR_STT_NOT_USED ,765,24,31,1,0,0,,2260FD,6260FD,ff,REAR_RIGHT_DOOR_STATE,0:DL_DR_STT_UNAVAILABLE_VALUE;1:DL_DR_STT_DOOR_CLOSED;2:DL_DR_STT_DOOR_OPEN;3:DL_DR_STT_NOT_USED ,765,24,31,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.0,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,32,39,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.1,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,40,47,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.2,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,48,55,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.3,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,56,63,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.4,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,64,71,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.5,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,72,79,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.6,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,80,87,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.7,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,88,95,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.8,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,96,103,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.9,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,104,111,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.10,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,112,119,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.11,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,120,127,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.12,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,128,135,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.13,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,136,143,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.14,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,144,151,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.15,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,152,159,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.16,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,160,167,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.17,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,168,175,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.18,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,176,183,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.19,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,184,191,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.20,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,192,199,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.21,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,200,207,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.22,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,208,215,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.23,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,216,223,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.24,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,224,231,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.25,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,232,239,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.26,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,240,247,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.27,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,248,255,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.28,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,256,263,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.29,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,264,271,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.30,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,272,279,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.31,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,280,287,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.32,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,288,295,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.33,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,296,303,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.34,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,304,311,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.35,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,312,319,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.36,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,320,327,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.37,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,328,335,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.38,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,336,343,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.39,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,344,351,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.40,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,352,359,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.41,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,360,367,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.42,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,368,375,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.43,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,376,383,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.44,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,384,391,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.45,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,392,399,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.46,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,400,407,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.47,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,408,415,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.48,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,416,423,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.49,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,424,431,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.50,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,432,439,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.51,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,440,447,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.52,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,448,455,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.53,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,456,463,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.54,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,464,471,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.55,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,472,479,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.56,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,480,487,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.57,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,488,495,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.58,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,496,503,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.59,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,504,511,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.60,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,512,519,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.61,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,520,527,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.62,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,528,535,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.63,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,536,543,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.64,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,544,551,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.65,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,552,559,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.66,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,560,567,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.67,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,568,575,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.68,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,576,583,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.69,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,584,591,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.70,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,592,599,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.71,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,600,607,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.72,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,608,615,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.73,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,616,623,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.74,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,624,631,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.75,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,632,639,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.76,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,640,647,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.77,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,648,655,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.78,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,656,663,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.79,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,664,671,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.80,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,672,679,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.81,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,680,687,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.82,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,688,695,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.83,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,696,703,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.84,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,704,711,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.85,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,712,719,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.86,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,720,727,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.87,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,728,735,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.88,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,736,743,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.89,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,744,751,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.90,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,752,759,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.91,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,760,767,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.92,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,768,775,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.93,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,776,783,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.94,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,784,791,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.95,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,792,799,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.96,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,800,807,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.97,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,808,815,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.98,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,816,823,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.99,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,824,831,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.100,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,832,839,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.101,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,840,847,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.102,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,848,855,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.103,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,856,863,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.104,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,864,871,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.105,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,872,879,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.106,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,880,887,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.107,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,888,895,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.108,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,896,903,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.109,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,904,911,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.110,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,912,919,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.111,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,920,927,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.112,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,928,935,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.113,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,936,943,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.114,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,944,951,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.115,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,952,959,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.116,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,960,967,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.117,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,968,975,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.118,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,976,983,1,0,0,,2260FE,6260FE,ff,LAST_DOOR_LOCK_OPEN_ACTION_MEDIUM.119,0:BY_NONE;1:BY_CDL;2:BY_CDL_BACK_UP;3:BY_MASTER_DOOR;4:BY_MASTER_KNOB_OR_YALE_LOCK;5:BY_YALE_LOCK_ONLY;6:BY_RKE;7:BY_BACKDOOR_RKE;8:BY_HANDFREE;9:BY_BACKDOOR_HANDFREE;10:BY_ETA_HANDFREE;11:BY_BACKDOOR_TRUNK_OUTSIDE_SW;12:BY_TRUNK_INSIDE_SW;13:BY_TRUNK_CLOSING;14:BY_WAC;15:BY_APRUN;16:BY_AUTO_RELOCK_TIMEOUT;17:BY_LOCKOUT_PREVENTION;18:BY_AUTO_LOCK_WITH_SPEED;19:BY_AUTO_LOCK_P_RANGE_OUT;20:BY_AUTO_UNLOCK_P_RANGE_IN;21:BY_AUTO_UNLOCK_IGN_OFF;22:BY_RTL_DOOR_OPEN;23:BY_RTL_LEVER_NOT_IN_P;24:BY_AUTHENT;25:BY_IGN_ON;26:BY_CHILDLOCK_BUTTON;27:BY_EMERGENCY_CRASH;28:BY_SECURITY_CRASH;30:BY_DIAG_TOOL;29:BY_RLU ,765,24,24,1,0,0,,2260FF,6260FF,ff,IMMO_FLAG_CUSTOMER_LAUNCHED,1:true;0:false ,765,24,24,1,0,0,,226100,626100,ff,IMMO_FLAG_GENESIS_LAUNCHED,1:true;0:false ,765,24,24,1,0,0,,226101,626101,ff,IMMO_FLAG_BCM_AFTER_SALES_LAUNCHED,1:true;0:false ,765,24,24,1,0,0,,226102,626102,ff,IMMO_FLAG_CID_AFTER_SALES_LAUNCHED,1:true;0:false ,765,24,24,1,0,0,,226103,626103,ff,IMMO_FLAG_AFTER_SALES_LAUNCHED,1:true;0:false ,765,24,24,1,0,0,,226104,626104,ff,IMMO_FLAG_ECM_AFTER_SALES_LAUNCHED,1:true;0:false ,765,24,24,1,0,0,,226106,626106,ff,IMMO_FLAG_ECU_REWORK_LAUNCHED,1:true;0:false ,765,24,24,1,0,0,,226107,626107,ff,IMMO_FLAG_CID_REWORK_LAUNCHED,1:true;0:false ,765,24,24,1,0,0,,226108,626108,ff,IMMO_FLAG_USER_AUTHENT_ALLOWED,1:true;0:false ,765,24,24,1,0,0,,226109,626109,ff,IMMO_FLAG_AUTHORIZATION_TO_PAIR_ECM,1:true;0:false ,765,24,24,1,0,0,,22610B,62610B,ff,IMMO_FLAG_AUTHORIZATION_TO_PAIR_TCU,1:true;0:false ,765,24,24,1,0,0,,22610C,62610C,ff,IMMO_FLAG_TIME_OUT_AFTER_SALES_REACHED,1:true;0:false ,765,24,31,1,0,0,,22610D,62610D,ff,IMMO_STATE_ECM_AFTER_SALES_MODE_ENTER_FAILED ,765,24,31,1,0,0,,22610E,62610E,ff,IMMO_STATE_ECM_AFTER_SALES_MODE_EXIT ,765,24,24,1,0,0,,226111,626111,ff,IN_AFTERSALES_STATE,1:true;0:false ,765,24,24,1,0,0,,226112,626112,ff,IMMO_FLAG_APV_CODE_RECOGNIZED,1:true;0:false ,765,24,31,1,0,0,,226113,626113,ff,IMMO_STATE_GENESIS_MODE_ROOT_ERROR_SP ,765,24,31,1,0,0,,226114,626114,ff,IMMO_STATE_AFTER_SALES_MODE_ROOT_ERROR ,765,24,31,1,0,0,,226115,626115,ff,LEARNING_STEP,0:CID_MNGR_OPEN_BLANK_CID_SESSION;1:CID_MNGR_OPEN_STD_SESSION;2:CID_MNGR_OPEN_CID_SESSION;3:CID_MNGR_SELECT_REMOTE_PAGE;4:CID_MNGR_VALID_REMOTE_PAGE;5:CID_MNGR_WRITE_RSK;6:CID_MNGR_SELECT_USER_PAGE;7:CID_MNGR_VALID_USER_PAGE;8:CID_MNGR_WRITE_HFC;9:CID_MNGR_WRITE_KIN;10:CID_MNGR_WRITE_ISK;11:CID_MNGR_LOCK_CID;12:CID_MNGR_RF_SYNCHRO;13:CID_MNGR_REGISTRATION;14:CID_MNGR_IDLE ,765,24,24,1,0,0,,226116,626116,ff,IMMO_STATUS_ECM_PAIR_SA_UNLCKED,1:true;0:false ,765,24,24,1,0,0,,226117,626117,ff,IMMO_STATUS_TCU_PAIR_SA_UNLCKED,1:true;0:false ,765,24,55,1,0,0,,226128,626128,4ff,BRIGHTNESS ,765,24,24,1,0,0,,22612A,62612A,ff,IMMO_STATUS_CID_PAIR_SA_UNLCKED,1:true;0:false ,765,24,24,1,0,0,,22612B,62612B,ff,IMMO_STATUS_ECU_PAIR_SA_UNLCKED,1:true;0:false ,765,24,31,1,0,0,,22612C,62612C,ff,EM_LAST_RES_VERLOG_STATUS,0:RES_VERLOG_OFF;1:RES_BAD_ECM_CHALLENGE;2:RES_CHALLENGE_ANSWERED_BY_ECU ,765,24,31,1,0,0,,22612D,62612D,ff,HSG_LAST_RES_VERLOG_STATUS,0:RES_VERLOG_OFF;1:RES_BAD_ECM_CHALLENGE;2:RES_CHALLENGE_ANSWERED_BY_ECU ,765,24,24,1,0,0,,22612E,62612E,ff,CAN_USM_PRESENT,1:true;0:false ,765,24,24,1,0,0,,22612F,62612F,ff,CAN_HFM_PRESENT,1:true;0:false ,765,24,24,1,0,0,,226130,626130,ff,CAN_HEVC_PRESENT,1:true;0:false ,765,24,24,1,0,0,,226131,626131,ff,CAN_ECM_PRESENT,1:true;0:false ,765,24,24,1,0,0,,226132,626132,ff,CAN_DSU_PRESENT,1:true;0:false ,765,24,24,1,0,0,,226133,626133,ff,CAN_CAMERA_PRESENT,1:true;0:false ,765,24,24,1,0,0,,226134,626134,ff,CAN_AT_PRESENT,1:true;0:false ,765,24,24,1,0,0,,226135,626135,ff,CAN_AIRBAG_PRESENT,1:true;0:false ,765,24,24,1,0,0,,226136,626136,ff,CAN_ABS_PRESENT,1:true;0:false ,765,24,31,1,0,0,,226137,626137,ff,IMMO_STATE_TCU_AFTER_SALES_MODE_ENTER_FAILED ,765,24,31,1,0,0,,226138,626138,ff,IMMO_STATE_TCU_AFTER_SALES_MODE_EXIT ,765,24,24,1,0,0,,226139,626139,ff,IMMO_FLAG_TCU_AFTER_SALES_SP_LAUNCHED,1:true;0:false ,765,24,31,1,0,0,,22613A,62613A,ff,ECM_VL_VERSION ,765,24,31,1,0,0,,22613B,62613B,ff,EM_VL_VERSION ,765,24,31,1,0,0,,22613C,62613C,ff,HSG_VL_VERSION ,765,24,24,1,0,0,,22613E,62613E,ff,DIAG_TRANSP_RESPONSE_OK,1:true;0:false ,765,24,39,1,0,0,,226140,626140,ff,PERM_AUTHENT_FAILED_COUNTER ,765,24,39,1,0,0,,226141,626141,ff,PERM_AUTHENT_DELAY_COUNTER ,765,24,39,1,0,0,,226142,626142,ff,PERM_AUTHENT_COUNTER ,765,24,31,1,0,0,,226143,626143,ff,RF_FRAME_RECEIVED_COUNTER ,765,24,24,1,0,0,,226144,626144,ff,CUSTOMER_AUTHENT_SESSION_IN_PROGRESS,1:true;0:false ,765,24,24,1,0,0,,226156,626156,ff,IMMO_FLAG_TCU_PAIRED,1:true;0:false ,765,24,31,1,0,0,,226157,626157,ff,HSG_IS_BLANK,0:UNKNOWN;1:IS_BLANK;2:NOT_BLANK ,765,24,31,1,0,0,,226158,626158,ff,EM_IS_BLANK,0:UNKNOWN;1:IS_BLANK;2:NOT_BLANK ,765,24,31,1,0,0,,226159,626159,ff,ECM_IS_BLANK,0:UNKNOWN;1:IS_BLANK;2:NOT_BLANK ,765,24,24,1,0,0,,22615B,62615B,ff,IMMO_FLAG_ANALYZ_CID_PAIR_TO_VH,1:true;0:false ,765,24,24,1,0,0,,22615C,62615C,ff,IMMO_FLAG_ANALYZE_CID_BY_TRP,1:true;0:false ,765,24,24,1,0,0,,22615D,62615D,ff,IMMO_FLAG_ANALYZE_CID_BLANK,1:true;0:false ,765,24,55,1,0,0,,22615E,62615E,4ff,TRANSP_IDE_RECEIVED ,765,24,24,1,0,0,,22615F,62615F,ff,O_ASSIST_DEFROST_COMMAND,1:true;0:false ,765,24,24,1,0,0,,226160,626160,ff,O_DRIVER_DEFROST_COMMAND,1:true;0:false ,765,24,24,1,0,0,,226161,626161,ff,O_REAR_DEFROST_COMMAND,1:true;0:false ,765,24,31,1,0,0,,226162,626162,ff,AMBIENT_LIGHTS_ON,0:AMBIENT_LIGHTS_OFF;1:AMBIENT_LIGHTS_ON_BY_WELCOME;2:AMBIENT_LIGHTS_ON_BY_TMP;3:AMBIENT_LIGHTS_ON_BY_STOP_OPEN;4:AMBIENT_LIGHTS_ON_BY_RUN_CLOSE;5:AMBIENT_LIGHTS_ON_BY_RUN_OPEN;6:AMBIENT_LIGHTS_ON_BY_DIAG ,765,24,24,1,0,0,,226163,626163,ff,ROOF_LIGHTS_REAR_ON,1:true;0:false ,765,24,24,1,0,0,,226164,626164,ff,ROOM_LIGHTS_FRONT_ON,1:true;0:false ,765,24,24,1,0,0,,226165,626165,ff,ROOM_LIGHTS_REAR_ON,1:true;0:false ,765,24,24,1,0,0,,226166,626166,ff,TAILGATE_LIGHTS_ON,1:true;0:false ,765,24,31,1,0,0,,226167,626167,ff,DIAG_VOL_ALARM,0:NO_VOL_ALARM_DEFAULT;1:VOL_SENSOR_DEFAULT;2:ANTI_LIFTING_SENSOR_DEFAULT;3:ALARM_ACU_INTERNAL_DEFAULT;4:ALARM_POWER_SUPPLY_DEFAULT;5:SIREN_LINK_DEFAULT;6:LINK_BCM_ACU_DEFAULT;7:VOL_ALARM_FAULT_RESERVED_7 ,765,24,24,1,0,0,,226168,626168,ff,AT_LOCKED_IN_PARK,1:true;0:false ,765,24,24,1,0,0,,226169,626169,ff,FOLDING_COMMAND,1:true;0:false ,765,24,24,1,0,0,,22616A,62616A,ff,FOLDING_AUTO_ACC_REQUEST,1:true;0:false ,765,24,31,1,0,0,,22616C,62616C,ff,VOLUMETRIC_ALARM_COMMAND,0:ALARM_NO_REQUEST;1:ALARM_DISARMED;2:ALARM_ARMED;3:ALARM_ARMED_NO_VOL;4:ALARM_ARMED_NO_ANTILIFT;5:ALARM_ARMED_NO_VOL_NO_ANTILIFT ,765,24,31,1,0,0,,22616D,62616D,ff,O_EXT_COURTESY_LIGHT,1:COE_OFF_LAW;0:COURTERSY_LIGHT_OFF;2:PUDDLE_ON;3:COE_ON_LAW;4:COE_ON_BY_DOOR_OPENING ,765,24,39,1,0,0,,22616E,62616E,ff,SIREG_RECEIVED ,765,24,24,1,0,0,,22616F,62616F,ff,O_CHILDLOCK_WL_RL,1:true;0:false ,765,24,24,1,0,0,,226170,626170,ff,O_WL_CENTRAL_CLOSE_RL,1:true;0:false ,765,24,24,1,0,0,,226171,626171,ff,O_WL_AUTHORIZATION_RL,1:true;0:false ,765,24,24,1,0,0,,226172,626172,ff,R_ELEC_CHILD_LOCK_SW_BY_DRIVER,1:true;0:false ,765,24,24,1,0,0,,226173,626173,ff,LIN_PCFN,1:true;0:false ,765,24,31,1,0,0,,226174,626174,ff,LIN_DAY_NIGHT_FOR_BACKLIGHT,0:DNFB_DAY;1:DNFB_TWILIGHT;2:DNFB_NIGHT;3:DNFB_UNAVAILABLE ,765,24,31,1,0,0,,226175,626175,ff,CENTRALIZED_ALL_WINDOW_ACTION,0:NO_CENTRALIZED_ACTION_REQ;1:EXPRESS_CLOSE_ACTION_REQ;2:EXPRESS_OPEN_ACTION_REQ;3:STOP_ACTION_REQ ,765,24,24,1,0,0,,226176,626176,ff,ALL_WINDOW_LIFT_FUNCTION_ENABLE,1:true;0:false ,765,24,24,1,0,0,,226177,626177,ff,OUTPUT_STOP_LIGHT_1,1:true;0:false ,765,24,24,1,0,0,,226178,626178,ff,OUTPUT_STOP_LIGHT_2,1:true;0:false ,765,24,24,1,0,0,,226179,626179,ff,REAR_FOG_LIGHTS_REQUEST,1:true;0:false ,765,24,24,1,0,0,,22617A,62617A,ff,PWM_EXT_COURTESY_LIGHT,1:true;0:false ,765,24,24,1,0,0,,22617B,62617B,ff,CAN_HVAC_PRESENT,1:true;0:false ,765,24,24,1,0,0,,22617C,62617C,ff,CAN_METER_PRESENT,1:true;0:false ,765,24,24,1,0,0,,22617D,62617D,ff,MIRROR_DOWN_MOVEMENT_REQUEST,1:true;0:false ,765,24,24,1,0,0,,22617E,62617E,ff,MIRROR_UP_MOVEMENT_REQUEST,1:true;0:false ,765,24,24,1,0,0,,22617F,62617F,ff,MIRROR_LEFT_MOVEMENT_REQUEST,1:true;0:false ,765,24,24,1,0,0,,226180,626180,ff,MIRROR_RIGHT_MOVEMENT_REQUEST,1:true;0:false ,765,24,31,1,0,0,,226181,626181,ff,MIRROR_SIDE_SELECTION_REQUEST,0:MIRROR_SIDE_UNAVAILABLE;1:MIRROR_SIDE_LEFT_SELECTION;2:MIRROR_SIDE_NO_SELECTION;3:MIRROR_SIDE_RIGHT_SELECTION ,765,24,31,1,0,0,,226182,626182,ff,FOLDING_POSITION_REQUEST,0:FOLDING_POS_UNAVAILABLE;1:FOLDING_POS_AUTOMATIC;2:FOLDING_POS_FOLDING;3:FOLDING_POS_UNFOLDING ,765,24,24,1,0,0,,226183,626183,ff,DPC_ECU_DEFECT,1:true;0:false ,765,24,24,1,0,0,,226184,626184,ff,PMU_ECU_DEFECT,1:true;0:false ,765,24,31,1,0,0,,226185,626185,ff,LIN_MIRROR_POS_MEMO_RECALL ,765,24,31,1,0,0,,226186,626186,ff,LIN_MIRROR_POS_MEMO_REQUEST ,765,24,31,1,0,0,,226187,626187,ff,VEHICLE_SPEED_TO_RAIN_SENSOR ,765,24,31,1,0,0,,226188,626188,ff,OLD_VEHICLE_STATE_LIN,0:OLD_VS_LIN_SLEEP;1:OLD_VS_LIN_BAT_TEMPO;2:OLD_VS_LIN_IGN;3:OLD_VS_LIN_STARTING;4:OLD_VS_LIN_DRIVING;5:OLD_VS_LIN_NOT_USED_5;6:OLD_VS_LIN_NOT_USED_6;7:OLD_VS_LIN_UNAVAILABLE ,765,24,31,1,0,0,,226189,626189,ff,REAR_GEAR_STATUS_LIN,0:REAR_GEAR_NOT_USED;1:REAR_GEAR_NOT_ENGAGED;2:REAR_GEAR_ENGAGED;3:REAR_GEAR_UNAVAILABLE ,765,24,31,1,0,0,,22618A,62618A,ff,WELCOME_GOODBYE,0:WG_NO_REQUEST;3:WG_FUNCTION_DEACTIVATED;1:WG_WELCOME_REQUEST;2:WG_GOODBYE_REQUEST ,765,24,24,1,0,0,,22618B,62618B,ff,IFLW_NORMALISED,1:true;0:false ,765,24,24,1,0,0,,22618C,62618C,ff,IFLW_THERMOPROTECTION,1:true;0:false ,765,24,31,1,0,0,,22618D,62618D,ff,IFLW_WINDOW_POSITION,0:WL_POS_INVALID;1:WL_POS_FULLY_CLOSED;2:WL_POS_SHORT_DROP;3:FOLDING_POS_UPPER_INTERMEDIATE;4:WL_POS_RCU_DROP;5:WL_POS_LOWER_INTERMEDIATE;6:WL_POS_FULLY_OPEN_SW;7:WL_POS_FULLY_OPEN_HW ,765,24,31,1,0,0,,22618E,62618E,ff,IFLW_SWITCH_STATE,0:WL_LOCAL_SW_NOT_ACTIVE;1:WL_LOCAL_SW_MANUAL_UP_ACTIVE;2:WL_LOCAL_SW_MANUAL_DOWN_ACTIVE;3:WL_LOCAL_SW_NOT_USED_1;4:WL_LOCAL_SW_NOT_USED_2;5:WL_LOCAL_SW_AUTO_UP_ACTIVE;6:WL_LOCAL_SW_AUTO_DOWN_ACTIVE;7:WL_LOCAL_SW_UNAVAILABLE ,765,24,24,1,0,0,,22618F,62618F,ff,IFLW_ECU_DEFECT,1:true;0:false ,765,24,24,1,0,0,,226190,626190,ff,IFRW_ECU_DEFECT,1:true;0:false ,765,24,24,1,0,0,,226191,626191,ff,IFRW_NORMALISED,1:true;0:false ,765,24,31,1,0,0,,226192,626192,ff,IFRW_SWITCH_STATE,0:WL_LOCAL_SW_NOT_ACTIVE;1:WL_LOCAL_SW_MANUAL_UP_ACTIVE;2:WL_LOCAL_SW_MANUAL_DOWN_ACTIVE;3:WL_LOCAL_SW_NOT_USED_1;4:WL_LOCAL_SW_NOT_USED_2;5:WL_LOCAL_SW_AUTO_UP_ACTIVE;6:WL_LOCAL_SW_AUTO_DOWN_ACTIVE;7:WL_LOCAL_SW_UNAVAILABLE ,765,24,24,1,0,0,,226193,626193,ff,IFRW_THERMOPROTECTION,1:true;0:false ,765,24,31,1,0,0,,226194,626194,ff,IFRW_WINDOW_POSITION,0:WL_POS_INVALID;1:WL_POS_FULLY_CLOSED;2:WL_POS_SHORT_DROP;3:FOLDING_POS_UPPER_INTERMEDIATE;4:WL_POS_RCU_DROP;5:WL_POS_LOWER_INTERMEDIATE;6:WL_POS_FULLY_OPEN_SW;7:WL_POS_FULLY_OPEN_HW ,765,24,24,1,0,0,,226195,626195,ff,IRLW_ECU_DEFECT,1:true;0:false ,765,24,24,1,0,0,,226196,626196,ff,IRRW_ECU_DEFECT,1:true;0:false ,765,24,24,1,0,0,,226197,626197,ff,IRLW_NORMALISED,1:true;0:false ,765,24,24,1,0,0,,226198,626198,ff,IRRW_NORMALISED,1:true;0:false ,765,24,31,1,0,0,,226199,626199,ff,IRRW_SWITCH_STATE,0:WL_LOCAL_SW_NOT_ACTIVE;1:WL_LOCAL_SW_MANUAL_UP_ACTIVE;2:WL_LOCAL_SW_MANUAL_DOWN_ACTIVE;3:WL_LOCAL_SW_NOT_USED_1;4:WL_LOCAL_SW_NOT_USED_2;5:WL_LOCAL_SW_AUTO_UP_ACTIVE;6:WL_LOCAL_SW_AUTO_DOWN_ACTIVE;7:WL_LOCAL_SW_UNAVAILABLE ,765,24,31,1,0,0,,22619A,62619A,ff,IRLW_SWITCH_STATE,0:WL_LOCAL_SW_NOT_ACTIVE;1:WL_LOCAL_SW_MANUAL_UP_ACTIVE;2:WL_LOCAL_SW_MANUAL_DOWN_ACTIVE;3:WL_LOCAL_SW_NOT_USED_1;4:WL_LOCAL_SW_NOT_USED_2;5:WL_LOCAL_SW_AUTO_UP_ACTIVE;6:WL_LOCAL_SW_AUTO_DOWN_ACTIVE;7:WL_LOCAL_SW_UNAVAILABLE ,765,24,24,1,0,0,,22619B,62619B,ff,IRRW_THERMOPROTECTION,1:true;0:false ,765,24,24,1,0,0,,22619C,62619C,ff,IRLW_THERMOPROTECTION,1:true;0:false ,765,24,31,1,0,0,,22619D,62619D,ff,IRRW_WINDOW_POSITION,0:WL_POS_INVALID;1:WL_POS_FULLY_CLOSED;2:WL_POS_SHORT_DROP;3:FOLDING_POS_UPPER_INTERMEDIATE;4:WL_POS_RCU_DROP;5:WL_POS_LOWER_INTERMEDIATE;6:WL_POS_FULLY_OPEN_SW;7:WL_POS_FULLY_OPEN_HW ,765,24,31,1,0,0,,22619E,62619E,ff,IRLW_WINDOW_POSITION,0:WL_POS_INVALID;1:WL_POS_FULLY_CLOSED;2:WL_POS_SHORT_DROP;3:FOLDING_POS_UPPER_INTERMEDIATE;4:WL_POS_RCU_DROP;5:WL_POS_LOWER_INTERMEDIATE;6:WL_POS_FULLY_OPEN_SW;7:WL_POS_FULLY_OPEN_HW ,765,24,31,1,0,0,,22619F,62619F,ff,FL_WINDOW_LIFT_ACTION_REQ,1:WL_MANUAL_UP_ACTION_REQUEST;2:WL_MANUAL_DOWN_ACTION_REQUEST;3:WL_ACTION_NOT_USED_1;4:WL_ACTION_NOT_USED_2;5:WL_EXPRESS_UP_ACTION_REQUEST;6:WL_EXPRESS_DOWN_ACTION_REQUEST;7:WL_ACTION_UNAVAILABLE;0:WL_NO_ACTION_REQUEST ,765,24,31,1,0,0,,2261A0,6261A0,ff,FR_WINDOW_LIFT_ACTION_REQ,1:WL_MANUAL_UP_ACTION_REQUEST;2:WL_MANUAL_DOWN_ACTION_REQUEST;3:WL_ACTION_NOT_USED_1;4:WL_ACTION_NOT_USED_2;5:WL_EXPRESS_UP_ACTION_REQUEST;6:WL_EXPRESS_DOWN_ACTION_REQUEST;7:WL_ACTION_UNAVAILABLE;0:WL_NO_ACTION_REQUEST ,765,24,31,1,0,0,,2261A1,6261A1,ff,RL_WINDOW_LIFT_ACTION_REQ,1:WL_MANUAL_UP_ACTION_REQUEST;2:WL_MANUAL_DOWN_ACTION_REQUEST;3:WL_ACTION_NOT_USED_1;4:WL_ACTION_NOT_USED_2;5:WL_EXPRESS_UP_ACTION_REQUEST;6:WL_EXPRESS_DOWN_ACTION_REQUEST;7:WL_ACTION_UNAVAILABLE;0:WL_NO_ACTION_REQUEST ,765,24,31,1,0,0,,2261A2,6261A2,ff,RR_WINDOW_LIFT_ACTION_REQ,1:WL_MANUAL_UP_ACTION_REQUEST;2:WL_MANUAL_DOWN_ACTION_REQUEST;3:WL_ACTION_NOT_USED_1;4:WL_ACTION_NOT_USED_2;5:WL_EXPRESS_UP_ACTION_REQUEST;6:WL_EXPRESS_DOWN_ACTION_REQUEST;7:WL_ACTION_UNAVAILABLE;0:WL_NO_ACTION_REQUEST ,765,24,31,1,0,0,,2261A3,6261A3,ff,ALL_WINDOW_LIFT_ACTION_REQ,1:WL_MANUAL_UP_ACTION_REQUEST;2:WL_MANUAL_DOWN_ACTION_REQUEST;3:WL_ACTION_NOT_USED_1;4:WL_ACTION_NOT_USED_2;5:WL_EXPRESS_UP_ACTION_REQUEST;6:WL_EXPRESS_DOWN_ACTION_REQUEST;7:WL_ACTION_UNAVAILABLE;0:WL_NO_ACTION_REQUEST ,765,24,24,1,0,0,,2261A4,6261A4,ff,SSU_ECU_DEFECT,1:true;0:false ,765,24,24,1,0,0,,2261A5,6261A5,ff,SRU_ECU_DEFECT,1:true;0:false ,765,24,24,1,0,0,,2261A6,6261A6,ff,SSU_NORMALISED,1:true;0:false ,765,24,24,1,0,0,,2261A7,6261A7,ff,SRU_NORMALISED,1:true;0:false ,765,24,24,1,0,0,,2261A8,6261A8,ff,SSU_THERMOPROTECTION,1:true;0:false ,765,24,24,1,0,0,,2261A9,6261A9,ff,SRU_THERMOPROTECTION,1:true;0:false ,765,24,24,1,0,0,,2261AA,6261AA,ff,SRU_SSU_INITIALIZATION,1:true;0:false ,765,24,31,1,0,0,,2261AB,6261AB,ff,SRU_MOVEMENT,0:WL_MOV_STOPPED;1:WL_MOV_OPENING;2:WL_MOV_CLOSING;3:WL_MOV_REVERSING ,765,24,31,1,0,0,,2261AC,6261AC,ff,SSU_MOVEMENT,0:WL_MOV_STOPPED;1:WL_MOV_OPENING;2:WL_MOV_CLOSING;3:WL_MOV_REVERSING ,765,24,31,1,0,0,,2261AD,6261AD,ff,SRU_POSITION,0:POS_SUNROOF_POS_INVALID;1:POS_SUNROOF_POS_0;2:POS_SUNROOF_SEC_01;3:POS_SUNROOF_POS_1;5:POS_SUNROOF_POS_2;7:POS_SUNROOF_POS_3;9:POS_SUNROOF_POS_4;11:POS_SUNROOF_POS_5;13:POS_SUNROOF_POS_6;4:POS_SUNROOF_SEC_12;6:POS_SUNROOF_SEC_23;8:POS_SUNROOF_SEC_34;10:POS_SUNROOF_SEC_45;12:POS_SUNROOF_SEC_56;14:POS_SUNROOF_SEC_67;15:POS_SUNROOF_POS_7 ,765,24,31,1,0,0,,2261AE,6261AE,ff,SSU_POSITION,0:POS_SUNSHADE_POS_INVALID;1:POS_SUNSHADE_POS_0;2:POS_SUNSHADE_SEC_01;3:POS_SUNSHADE_POS_1;5:POS_SUNSHADE_POS_2;7:POS_SUNSHADE_POS_3;9:POS_SUNSHADE_POS_4;11:POS_SUNSHADE_SYNC_2;13:POS_SUNSHADE_SYNC_4;4:POS_SUNSHADE_SEC_12;6:POS_SUNSHADE_SEC_23;8:POS_SUNSHADE_SEC_34;10:POS_SUNSHADE_SYNC_1;12:POS_SUNSHADE_SYNC_3;14:POS_SUNSHADE_SYNC_5;15:POS_SUNSHADE_SYNC_6 ,765,24,31,1,0,0,,2261AF,6261AF,ff,SSU_SWITCH_STATE,0:SW_SUNSHADE_POS_INVALID;1:SW_SUNSHADE_POS_0;2:SW_SUNSHADE_POS_1;3:SW_SUNSHADE_POS_2;5:SW_SUNSHADE_POS_4;7:SW_SUNSHADE_POS_6;9:SW_SUNSHADE_POS_8;12:SW_SUNSHADE_POS_11;14:SW_SUNSHADE_POS_13;4:SW_SUNSHADE_POS_3;6:SW_SUNSHADE_POS_5;8:SW_SUNSHADE_POS_7;10:SW_SUNSHADE_POS_9;13:SW_SUNSHADE_POS_12;15:SW_SUNSHADE_POS_RECALL;11:SW_SUNSHADE_POS_10 ,765,24,31,1,0,0,,2261B0,6261B0,ff,SRU_SWITCH_STATE,0:SW_SUNROOF_POS_INVALID;1:SW_SUNROOF_POS_0;2:SW_SUNROOF_POS_1;3:SW_SUNROOF_POS_2;5:SW_SUNROOF_POS_4;7:SW_SUNROOF_POS_6;9:SW_SUNROOF_POS_8;11:SW_SUNROOF_POS_10;13:SW_SUNROOF_POS_12;4:SW_SUNROOF_POS_3;6:SW_SUNROOF_POS_5;8:SW_SUNROOF_POS_7;10:SW_SUNROOF_POS_9;12:SW_SUNROOF_POS_11;15:SW_SUNROOF_POS_RECALL;14:SW_SUNROOF_POS_13 ,765,24,31,1,40,0,°C,2261B1,6261B1,ff,LIN_EXTERNAL_TEMP ,765,24,24,1,0,0,,2261B2,6261B2,ff,REAR_LEFT_DOOR_OPENED,1:true;0:false ,765,24,24,1,0,0,,2261B3,6261B3,ff,REAR_RIGHT_DOOR_OPENED,1:true;0:false ,765,24,31,1,0,0,,2261B4,6261B4,ff,LIN_STOP_AUTO_PHASE,0:NOT_IN_AUTO_PHASE;1:AUTO_PHASE_RESTART;2:AUTO_PHASE_STOPPED;3:AUTO_PHASE_ABORTED;7:AUTO_PHASE_UNAVAILABLE;4:INJECTION_STOPPED;5:START_BY_INJECTION_ONLY;6:REFLEX_START ,765,24,24,1,0,0,,2261B5,6261B5,ff,OLD_DAY_NIGHT_STATUS_LIN,1:true;0:false ,765,24,31,.4,0,1,%,2261B6,6261B6,ff,LIN_LIGHT_RHEOSTAT ,765,24,24,1,0,0,,2261B7,6261B7,ff,LAST_MIN_L1_IN_PROGRESS,1:true;0:false ,765,24,31,1,0,0,,2261B8,6261B8,ff,HANDSFREE_SIDE,1:UI_FRONT_LEFT;2:UI_FRONT_RIGHT;3:UI_REAR_LEFT;4:UI_REAR_RIGHT;5:UI_BACKDOOR;0:UI_HANDFREE_NONE ,765,24,31,1,0,0,,2261B9,6261B9,ff,REQ_ID ,765,24,31,1,0,0,,2261BA,6261BA,ff,REQ_MED,0:RKE;1:KEYLESS ,765,24,31,1,0,0,,2261BB,6261BB,ff,DRIVER_SIDE_LIN,0:DRIVER_SIDE_LIN_NOT_USED;1:DRIVER_SIDE_LIN_LEFT;2:DRIVER_SIDE_LIN_RIGHT;3:DRIVER_SIDE_LIN_UNAVAILABLE ,765,24,55,1,0,0,,2261BC,6261BC,4ff,FILTERED_BRIGHTNESS ,765,24,24,1,0,0,,2261BD,6261BD,ff,ALARM_COMM_FAILURE,1:true;0:false ,765,24,31,1,0,0,,2261BE,6261BE,ff,ETA_SELF_DIAGNOSIS ,765,24,31,1,0,0,,2261BF,6261BF,ff,VOL_ALARM_FAULT_TYPE,0:NO_VOL_ALARM_DEFAULT;1:VOL_SENSOR_DEFAULT;2:ANTI_LIFTING_SENSOR_DEFAULT;3:ALARM_ACU_INTERNAL_DEFAULT;4:ALARM_POWER_SUPPLY_DEFAULT;5:SIREN_LINK_DEFAULT;6:LINK_BCM_ACU_DEFAULT;7:VOL_ALARM_FAULT_RESERVED_7 ,765,24,24,1,0,0,,2261C0,6261C0,ff,I_RR_AUTOSTOP_SW,1:true;0:false ,765,24,24,1,0,0,,2261C1,6261C1,ff,R_REAR_WIPER_MOTOR,1:true;0:false ,765,24,31,1,0,0,,2261C3,6261C3,ff,REAR_GEAR_STATUS,0:REAR_GEAR_NOT_USED;1:REAR_GEAR_NOT_ENGAGED;2:REAR_GEAR_ENGAGED;3:REAR_GEAR_UNAVAILABLE ,765,24,55,1,0,0,,2261C4,6261C4,4ff,CID_EM_PAGE_0_RD ,765,24,55,1,0,0,,2261C5,6261C5,4ff,CID_EM_PAGE_1_RD ,765,24,55,1,0,0,,2261C6,6261C6,4ff,CID_EM_PAGE_2_RD ,765,24,55,1,0,0,,2261C7,6261C7,4ff,CID_EM_PAGE_3_RD ,765,24,55,1,0,0,,2261C8,6261C8,4ff,CID_EM_PAGE_4_RD ,765,24,55,1,0,0,,2261C9,6261C9,4ff,CID_EM_PAGE_5_RD ,765,24,55,1,0,0,,2261CA,6261CA,4ff,CID_EM_PAGE_6_RD ,765,24,55,1,0,0,,2261CB,6261CB,4ff,CID_EM_PAGE_7_RD ,765,24,31,1,0,0,,2261CC,6261CC,ff,CENTRAL_SWITCH_INTENSITY_STATUS ,765,24,31,1,0,0,,2261CD,6261CD,ff,PATTERN_LIGHTING_STATUS,0:AMBI_LIGHT_PATTERN_OFF;1:AMBI_LIGHT_PATTERN_SWITCH_FIXED;2:AMBI_LIGHT_PATTERN_1;3:AMBI_LIGHT_PATTERN_2;4:AMBI_LIGHT_PATTERN_3;5:AMBI_LIGHT_PATTERN_4;6:AMBI_LIGHT_PATTERN_5;7:AMBI_LIGHT_PATTERN_UNUSED_7 ,765,24,24,1,0,0,,2261CE,6261CE,ff,LCM01_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261CF,6261CF,ff,LCM01_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261D0,6261D0,ff,LCM01_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261D1,6261D1,ff,LCM01_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261D2,6261D2,ff,LCM02_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261D3,6261D3,ff,LCM02_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261D4,6261D4,ff,LCM02_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261D5,6261D5,ff,LCM02_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261D6,6261D6,ff,LCM03_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261D7,6261D7,ff,LCM03_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261D8,6261D8,ff,LCM03_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261D9,6261D9,ff,LCM03_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261DA,6261DA,ff,LCM04_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261DB,6261DB,ff,LCM04_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261DC,6261DC,ff,LCM04_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261DD,6261DD,ff,LCM04_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261DE,6261DE,ff,LCM05_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261DF,6261DF,ff,LCM05_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261E0,6261E0,ff,LCM05_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261E1,6261E1,ff,LCM05_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261E2,6261E2,ff,LCM06_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261E3,6261E3,ff,LCM06_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261E4,6261E4,ff,LCM06_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261E5,6261E5,ff,LCM06_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261E6,6261E6,ff,LCM07_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261E7,6261E7,ff,LCM07_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261E8,6261E8,ff,LCM07_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261E9,6261E9,ff,LCM07_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261EA,6261EA,ff,LCM08_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261EB,6261EB,ff,LCM08_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261EC,6261EC,ff,LCM08_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261ED,6261ED,ff,LCM08_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261EE,6261EE,ff,LCM09_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261EF,6261EF,ff,LCM09_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261F0,6261F0,ff,LCM09_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261F1,6261F1,ff,LCM09_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261F2,6261F2,ff,LCM10_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261F3,6261F3,ff,LCM10_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261F4,6261F4,ff,LCM10_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261F5,6261F5,ff,LCM10_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261F6,6261F6,ff,LCM11_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261F7,6261F7,ff,LCM11_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261F8,6261F8,ff,LCM11_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261F9,6261F9,ff,LCM11_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261FA,6261FA,ff,LCM12_CRITICAL_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261FB,6261FB,ff,LCM12_OPEN_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261FC,6261FC,ff,LCM12_OVERSTRESS_TEMPERATURE,1:true;0:false ,765,24,24,1,0,0,,2261FD,6261FD,ff,LCM12_SHORT_CIRCUIT,1:true;0:false ,765,24,24,1,0,0,,2261FE,6261FE,ff,PTC_RELAY1_COMMAND,1:true;0:false ,765,24,24,1,0,0,,2261FF,6261FF,ff,PTC_RELAY2_COMMAND,1:true;0:false ,765,24,24,1,0,0,,226200,626200,ff,PTC_RELAY3_COMMAND,1:true;0:false ,765,24,31,1,0,0,,226205,626205,ff,TPMS_VEHICLE_SPEED ,765,24,31,1,0,0,,22620F,62620F,ff,TPMS_AUTOLOC_WHEEL_STATUS_FL,0:AUTOLOC_DEF_VALUE;1:AUTOLOC_JUDGE_1ST_LOGIC;2:AUTOLOC_JUDGE_2ND_LOGIC;3:AUTOLOC_JUDGE_BEFORE_TIMEOUT;4:AUTOLOC_JUDGE_AFTER_TIMEOUT;5:AUTOLOC_JUDGE_4WD_LOGIC;6:AUTOLOC_JUDGE_4TH_LOGIC_PRE_IDS;7:AUTOLOC_JUDGE_4TH_LOGIC_NEW_IDS;8:AUTOLOC_JUDGE_FAILED;9:AUTOLOC_WHEEL_JUDGE_ON_GOING;10:AUTOLOC_WHEEL_JUDGE_UNUSED_10 ,765,24,31,1,0,0,,226210,626210,ff,TPMS_AUTOLOC_WHEEL_STATUS_FR,0:AUTOLOC_DEF_VALUE;1:AUTOLOC_JUDGE_1ST_LOGIC;2:AUTOLOC_JUDGE_2ND_LOGIC;3:AUTOLOC_JUDGE_BEFORE_TIMEOUT;4:AUTOLOC_JUDGE_AFTER_TIMEOUT;5:AUTOLOC_JUDGE_4WD_LOGIC;6:AUTOLOC_JUDGE_4TH_LOGIC_PRE_IDS;7:AUTOLOC_JUDGE_4TH_LOGIC_NEW_IDS;8:AUTOLOC_JUDGE_FAILED;9:AUTOLOC_WHEEL_JUDGE_ON_GOING;10:AUTOLOC_WHEEL_JUDGE_UNUSED_10 ,765,24,31,1,0,0,,226211,626211,ff,TPMS_AUTOLOC_WHEEL_STATUS_RL,0:AUTOLOC_DEF_VALUE;1:AUTOLOC_JUDGE_1ST_LOGIC;2:AUTOLOC_JUDGE_2ND_LOGIC;3:AUTOLOC_JUDGE_BEFORE_TIMEOUT;4:AUTOLOC_JUDGE_AFTER_TIMEOUT;5:AUTOLOC_JUDGE_4WD_LOGIC;6:AUTOLOC_JUDGE_4TH_LOGIC_PRE_IDS;7:AUTOLOC_JUDGE_4TH_LOGIC_NEW_IDS;8:AUTOLOC_JUDGE_FAILED;9:AUTOLOC_WHEEL_JUDGE_ON_GOING;10:AUTOLOC_WHEEL_JUDGE_UNUSED_10 ,765,24,31,1,0,0,,226212,626212,ff,TPMS_AUTOLOC_WHEEL_STATUS_RR,0:AUTOLOC_DEF_VALUE;1:AUTOLOC_JUDGE_1ST_LOGIC;2:AUTOLOC_JUDGE_2ND_LOGIC;3:AUTOLOC_JUDGE_BEFORE_TIMEOUT;4:AUTOLOC_JUDGE_AFTER_TIMEOUT;5:AUTOLOC_JUDGE_4WD_LOGIC;6:AUTOLOC_JUDGE_4TH_LOGIC_PRE_IDS;7:AUTOLOC_JUDGE_4TH_LOGIC_NEW_IDS;8:AUTOLOC_JUDGE_FAILED;9:AUTOLOC_WHEEL_JUDGE_ON_GOING;10:AUTOLOC_WHEEL_JUDGE_UNUSED_10 ,765,24,24,1,0,0,,226214,626214,ff,RAIN_DETECTED,1:true;0:false ,765,24,31,1,30,0,°C,226215,626215,ff,TPMS_INTERNAL_TEMP_OLD.0 ,765,32,39,1,30,0,°C,226215,626215,ff,TPMS_INTERNAL_TEMP_OLD.1 ,765,40,47,1,30,0,°C,226215,626215,ff,TPMS_INTERNAL_TEMP_OLD.2 ,765,48,55,1,30,0,°C,226215,626215,ff,TPMS_INTERNAL_TEMP_OLD.3 ,765,24,31,1,0,0,,226216,626216,ff,TPMS_FUNCTION_CODE_OLD.0,0:LF_REQ_FORCE_MODE_PRES_STABLE;1:FUNCTION_CODE_NOT_USED_1;2:LF_REQ_FORCE_MODE_SHIPPING;3:DELTA_PRES;4:FUNCTION_CODE_RESERVED_4;5:PRES_ALERT;6:FUNCTION_CODE_NOT_USED_6;7:DRIVING_MODE;8:FUNCTION_CODE_NOT_USED_8;9:FUNCTION_CODE_NOT_USED_9;10:FUNCTION_CODE_NOT_USED_10;11:FUNCTION_CODE_NOT_USED_11;12:LF_REQ_MI;13:LF_REQ_MP;14:FUNCTION_CODE_NOT_USED_14;15:FIRST_BLOCK_MODE ,765,32,39,1,0,0,,226216,626216,ff,TPMS_FUNCTION_CODE_OLD.1,0:LF_REQ_FORCE_MODE_PRES_STABLE;1:FUNCTION_CODE_NOT_USED_1;2:LF_REQ_FORCE_MODE_SHIPPING;3:DELTA_PRES;4:FUNCTION_CODE_RESERVED_4;5:PRES_ALERT;6:FUNCTION_CODE_NOT_USED_6;7:DRIVING_MODE;8:FUNCTION_CODE_NOT_USED_8;9:FUNCTION_CODE_NOT_USED_9;10:FUNCTION_CODE_NOT_USED_10;11:FUNCTION_CODE_NOT_USED_11;12:LF_REQ_MI;13:LF_REQ_MP;14:FUNCTION_CODE_NOT_USED_14;15:FIRST_BLOCK_MODE ,765,40,47,1,0,0,,226216,626216,ff,TPMS_FUNCTION_CODE_OLD.2,0:LF_REQ_FORCE_MODE_PRES_STABLE;1:FUNCTION_CODE_NOT_USED_1;2:LF_REQ_FORCE_MODE_SHIPPING;3:DELTA_PRES;4:FUNCTION_CODE_RESERVED_4;5:PRES_ALERT;6:FUNCTION_CODE_NOT_USED_6;7:DRIVING_MODE;8:FUNCTION_CODE_NOT_USED_8;9:FUNCTION_CODE_NOT_USED_9;10:FUNCTION_CODE_NOT_USED_10;11:FUNCTION_CODE_NOT_USED_11;12:LF_REQ_MI;13:LF_REQ_MP;14:FUNCTION_CODE_NOT_USED_14;15:FIRST_BLOCK_MODE ,765,48,55,1,0,0,,226216,626216,ff,TPMS_FUNCTION_CODE_OLD.3,0:LF_REQ_FORCE_MODE_PRES_STABLE;1:FUNCTION_CODE_NOT_USED_1;2:LF_REQ_FORCE_MODE_SHIPPING;3:DELTA_PRES;4:FUNCTION_CODE_RESERVED_4;5:PRES_ALERT;6:FUNCTION_CODE_NOT_USED_6;7:DRIVING_MODE;8:FUNCTION_CODE_NOT_USED_8;9:FUNCTION_CODE_NOT_USED_9;10:FUNCTION_CODE_NOT_USED_10;11:FUNCTION_CODE_NOT_USED_11;12:LF_REQ_MI;13:LF_REQ_MP;14:FUNCTION_CODE_NOT_USED_14;15:FIRST_BLOCK_MODE ,765,24,24,1,0,0,,226217,626217,ff,TPMS_LOW_BATT_ON_OLD.0,1:true;0:false ,765,25,25,1,0,0,,226217,626217,ff,TPMS_LOW_BATT_ON_OLD.1,1:true;0:false ,765,26,26,1,0,0,,226217,626217,ff,TPMS_LOW_BATT_ON_OLD.2,1:true;0:false ,765,27,27,1,0,0,,226217,626217,ff,TPMS_LOW_BATT_ON_OLD.3,1:true;0:false ,765,24,31,1,0,0,,226218,626218,ff,TPMS_MOTION_STATUS_OLD.0,0:MOTION_STATUS_NO_MOTION;1:MOTION_STATUS_MOTION_LEFT;2:MOTION_STATUS_MOTION_RIGHT;3:MOTION_STATUS_UNAVAILABLE ,765,32,39,1,0,0,,226218,626218,ff,TPMS_MOTION_STATUS_OLD.1,0:MOTION_STATUS_NO_MOTION;1:MOTION_STATUS_MOTION_LEFT;2:MOTION_STATUS_MOTION_RIGHT;3:MOTION_STATUS_UNAVAILABLE ,765,40,47,1,0,0,,226218,626218,ff,TPMS_MOTION_STATUS_OLD.2,0:MOTION_STATUS_NO_MOTION;1:MOTION_STATUS_MOTION_LEFT;2:MOTION_STATUS_MOTION_RIGHT;3:MOTION_STATUS_UNAVAILABLE ,765,48,55,1,0,0,,226218,626218,ff,TPMS_MOTION_STATUS_OLD.3,0:MOTION_STATUS_NO_MOTION;1:MOTION_STATUS_MOTION_LEFT;2:MOTION_STATUS_MOTION_RIGHT;3:MOTION_STATUS_UNAVAILABLE ,765,24,31,1,0,0,,226219,626219,ff,TPMS_RF_EVENT_TYPE_OLD.0,0:RF_EVENT_TYPE_PERIOD;1:RF_EVENT_TYPE_RF_DELTA_PRESSURE;2:RF_EVENT_TYPE_FAST_PERIOD;3:RF_EVENT_TYPE_LF_EVENT ,765,32,39,1,0,0,,226219,626219,ff,TPMS_RF_EVENT_TYPE_OLD.1,0:RF_EVENT_TYPE_PERIOD;1:RF_EVENT_TYPE_RF_DELTA_PRESSURE;2:RF_EVENT_TYPE_FAST_PERIOD;3:RF_EVENT_TYPE_LF_EVENT ,765,40,47,1,0,0,,226219,626219,ff,TPMS_RF_EVENT_TYPE_OLD.2,0:RF_EVENT_TYPE_PERIOD;1:RF_EVENT_TYPE_RF_DELTA_PRESSURE;2:RF_EVENT_TYPE_FAST_PERIOD;3:RF_EVENT_TYPE_LF_EVENT ,765,48,55,1,0,0,,226219,626219,ff,TPMS_RF_EVENT_TYPE_OLD.3,0:RF_EVENT_TYPE_PERIOD;1:RF_EVENT_TYPE_RF_DELTA_PRESSURE;2:RF_EVENT_TYPE_FAST_PERIOD;3:RF_EVENT_TYPE_LF_EVENT ,765,24,39,1,0,0,,22621A,62621A,ff,TPMS_LOW_PRESS_TIMER.0 ,765,40,55,1,0,0,,22621A,62621A,ff,TPMS_LOW_PRESS_TIMER.1 ,765,56,71,1,0,0,,22621A,62621A,ff,TPMS_LOW_PRESS_TIMER.2 ,765,72,87,1,0,0,,22621A,62621A,ff,TPMS_LOW_PRESS_TIMER.3 ,765,24,39,7.5,0,0,mBar,22621B,62621B,ff,TPMS_LOW_PRESS_THRLD.0 ,765,40,55,7.5,0,0,mBar,22621B,62621B,ff,TPMS_LOW_PRESS_THRLD.1 ,765,56,71,7.5,0,0,mBar,22621B,62621B,ff,TPMS_LOW_PRESS_THRLD.2 ,765,72,87,7.5,0,0,mBar,22621B,62621B,ff,TPMS_LOW_PRESS_THRLD.3 ,765,24,39,7.5,0,0,mBar,22621C,62621C,ff,TPMS_UNDINF_PRES_THRD_MED.0 ,765,40,55,7.5,0,0,mBar,22621C,62621C,ff,TPMS_UNDINF_PRES_THRD_MED.1 ,765,56,71,7.5,0,0,mBar,22621C,62621C,ff,TPMS_UNDINF_PRES_THRD_MED.2 ,765,72,87,7.5,0,0,mBar,22621C,62621C,ff,TPMS_UNDINF_PRES_THRD_MED.3 ,765,24,24,1,0,0,,22621D,62621D,ff,TPMS_LOW_PRESS_TIMER_ACTIVE.0,1:true;0:false ,765,25,25,1,0,0,,22621D,62621D,ff,TPMS_LOW_PRESS_TIMER_ACTIVE.1,1:true;0:false ,765,26,26,1,0,0,,22621D,62621D,ff,TPMS_LOW_PRESS_TIMER_ACTIVE.2,1:true;0:false ,765,27,27,1,0,0,,22621D,62621D,ff,TPMS_LOW_PRESS_TIMER_ACTIVE.3,1:true;0:false ,765,24,31,1,0,0,,22621E,62621E,ff,TPMS_WUIDREG_PROCESS_STATUS,0:WUID_ROUTINE_COMPLETED;1:WUID_ROUTINE_ABORTED;2:WUID_ROUTINE_ACTIVE;3:WUID_ROUTINE_NOT_USED ,765,24,55,1,0,0,,22621F,62621F,4ff,TPMS_WUIDREG_PROCESS_ID_FOUND ,765,24,24,1,0,0,,226220,626220,ff,TPMS_WUIDREG_RF_PASSTHROUGH_REQ,1:true;0:false ,765,24,24,1,0,0,,226221,626221,ff,TPMS_MISSING_CONF_WARN_STATE,1:true;0:false ,765,24,24,1,0,0,,226222,626222,ff,TPMS_LOW_BATT_DETECTED.0,1:true;0:false ,765,25,25,1,0,0,,226222,626222,ff,TPMS_LOW_BATT_DETECTED.1,1:true;0:false ,765,26,26,1,0,0,,226222,626222,ff,TPMS_LOW_BATT_DETECTED.2,1:true;0:false ,765,27,27,1,0,0,,226222,626222,ff,TPMS_LOW_BATT_DETECTED.3,1:true;0:false ,765,24,39,1,0,0,,226223,626223,ff,AUTO_LOCATION_RUNNING_TIMER ,765,24,31,1,0,0,,226224,626224,ff,AUTO_LOCATION_PARKING_TIMER ,765,24,24,1,0,0,,226225,626225,ff,TPMS_AL_RF_PASSTHROUGH_REQUEST,1:true;0:false ,765,24,31,1,0,0,,226226,626226,ff,SEN_FL_DISPERSION_A_CUR ,765,24,31,1,0,0,,226227,626227,ff,SEN_FL_DISPERSION_B_CUR ,765,24,31,1,0,0,,226228,626228,ff,SEN_FR_DISPERSION_A_CUR ,765,24,31,1,0,0,,226229,626229,ff,SEN_FR_DISPERSION_B_CUR ,765,24,31,1,0,0,,22622A,62622A,ff,SEN_RL_DISPERSION_A_CUR ,765,24,31,1,0,0,,22622B,62622B,ff,SEN_RL_DISPERSION_B_CUR ,765,24,31,1,0,0,,22622C,62622C,ff,SEN_RR_DISPERSION_A_CUR ,765,24,31,1,0,0,,22622D,62622D,ff,SEN_RR_DISPERSION_B_CUR ,765,24,31,1,0,0,,22622E,62622E,ff,WSSP_FL_TPMS ,765,24,31,1,0,0,,22622F,62622F,ff,WSSP_FR_TPMS ,765,24,31,1,0,0,,226230,626230,ff,WSSP_RL_TPMS ,765,24,31,1,0,0,,226231,626231,ff,WSSP_RR_TPMS ,765,24,31,1,0,0,,226232,626232,ff,TPMS_X_RX_NUMBER_FAT_CUR ,765,24,31,1,0,0,,226233,626233,ff,TPMS_X_RX_NUMBER_NON_FAT_CUR ,765,24,31,1,0,0,,226234,626234,ff,TPMS_AL_N_CANDIDATE_IDS ,765,24,24,1,0,0,,226235,626235,ff,FAT_INCORRECT_FLAG,1:true;0:false ,765,24,24,1,0,0,,226236,626236,ff,NON_FAT_INCORRECT_FLAG,1:true;0:false ,765,24,31,1,0,0,,226237,626237,ff,ID_BY_POS_WEIGHT_FL ,765,24,31,1,0,0,,226238,626238,ff,ID_BY_POS_WEIGHT_FR ,765,24,31,1,0,0,,226239,626239,ff,ID_BY_POS_WEIGHT_RL ,765,24,31,1,0,0,,22623A,62623A,ff,ID_BY_POS_WEIGHT_RR ,765,24,24,1,0,0,,22623B,62623B,ff,TPMS_INVALID_IDS,1:true;0:false ,765,24,39,7.5,0,0,mBar,22623C,62623C,ff,TPMS_PUNCT_PRES_THRD_HIGH.0 ,765,40,55,7.5,0,0,mBar,22623C,62623C,ff,TPMS_PUNCT_PRES_THRD_HIGH.1 ,765,56,71,7.5,0,0,mBar,22623C,62623C,ff,TPMS_PUNCT_PRES_THRD_HIGH.2 ,765,72,87,7.5,0,0,mBar,22623C,62623C,ff,TPMS_PUNCT_PRES_THRD_HIGH.3 ,765,24,39,7.5,0,0,mBar,22623D,62623D,ff,TPMS_PUNCT_PRES_THRD_LOW.0 ,765,40,55,7.5,0,0,mBar,22623D,62623D,ff,TPMS_PUNCT_PRES_THRD_LOW.1 ,765,56,71,7.5,0,0,mBar,22623D,62623D,ff,TPMS_PUNCT_PRES_THRD_LOW.2 ,765,72,87,7.5,0,0,mBar,22623D,62623D,ff,TPMS_PUNCT_PRES_THRD_LOW.3 ,765,24,39,7.5,0,0,mBar,22623E,62623E,ff,TPMS_PUNCT_PRES_THRD_MED.0 ,765,40,55,7.5,0,0,mBar,22623E,62623E,ff,TPMS_PUNCT_PRES_THRD_MED.1 ,765,56,71,7.5,0,0,mBar,22623E,62623E,ff,TPMS_PUNCT_PRES_THRD_MED.2 ,765,72,87,7.5,0,0,mBar,22623E,62623E,ff,TPMS_PUNCT_PRES_THRD_MED.3 ,765,24,39,7.5,0,0,mBar,22623F,62623F,ff,TPMS_UNDINF_PRES_THRD_HIGH.0 ,765,40,55,7.5,0,0,mBar,22623F,62623F,ff,TPMS_UNDINF_PRES_THRD_HIGH.1 ,765,56,71,7.5,0,0,mBar,22623F,62623F,ff,TPMS_UNDINF_PRES_THRD_HIGH.2 ,765,72,87,7.5,0,0,mBar,22623F,62623F,ff,TPMS_UNDINF_PRES_THRD_HIGH.3 ,765,24,39,7.5,0,0,mBar,226240,626240,ff,TPMS_PREF_MIN ,765,24,24,1,0,0,,226241,626241,ff,TPMS_SET_PRESS_STATUS_FL,1:true;0:false ,765,24,24,1,0,0,,226242,626242,ff,TPMS_SET_PRESS_STATUS_FR,1:true;0:false ,765,24,24,1,0,0,,226243,626243,ff,TPMS_SET_PRESS_STATUS_RL,1:true;0:false ,765,24,24,1,0,0,,226244,626244,ff,TPMS_SET_PRESS_STATUS_RR,1:true;0:false ,765,24,24,1,0,0,,226245,626245,ff,TPMS_SET_TEMP_STATUS_FL,1:true;0:false ,765,24,24,1,0,0,,226246,626246,ff,TPMS_SET_TEMP_STATUS_FR,1:true;0:false ,765,24,24,1,0,0,,226247,626247,ff,TPMS_SET_TEMP_STATUS_RL,1:true;0:false ,765,24,24,1,0,0,,226248,626248,ff,TPMS_SET_TEMP_STATUS_RR,1:true;0:false ,765,24,31,1,0,0,,226249,626249,ff,TPMS_WUID_RESET_STATUS,0:WUID_ROUTINE_COMPLETED;1:WUID_ROUTINE_ABORTED;2:WUID_ROUTINE_ACTIVE;3:WUID_ROUTINE_NOT_USED ,765,24,55,1,0,0,,22624A,62624A,4ff,IDE.0 ,765,56,87,1,0,0,,22624A,62624A,4ff,IDE.1 ,765,88,119,1,0,0,,22624A,62624A,4ff,IDE.2 ,765,120,151,1,0,0,,22624A,62624A,4ff,IDE.3 ,765,24,24,1,0,0,,22624B,62624B,ff,TPMS_LEARN_RESET_DELAY_REACHED,1:true;0:false ,765,24,24,1,0,0,,22624C,62624C,ff,LCM01_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,22624D,62624D,ff,LCM02_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,22624E,62624E,ff,LCM03_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,22624F,62624F,ff,LCM04_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226250,626250,ff,LCM05_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226251,626251,ff,LCM06_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226252,626252,ff,LCM07_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226253,626253,ff,LCM08_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226254,626254,ff,LCM09_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226255,626255,ff,LCM10_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226256,626256,ff,LCM11_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226257,626257,ff,LCM12_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226258,626258,ff,TRAILER_PLUGGED,1:true;0:false ,765,24,31,1,0,0,,226259,626259,ff,DOORLOCK_LED,0:NO_INTENSITY;1:MID_INTENSITY;2:FULL_INTENSITY ,765,24,31,1,0,0,,22625A,62625A,ff,R_FRONT_WIPING_REQUEST,0:FRONT_WIPER_IN_STOP_POSITION;1:FORCED_STOP_POSITION;2:ONE_LOW_SPEED_WIPING_REQUESTED;3:ONE_HIGH_SPEED_WIPING_REQUESTED;4:INVALID_FW;5:RESERVED;6:LOW_SPEED_WIPING_REQUESTED;7:HIGH_SPEED_WIPING_REQUESTED ,765,24,24,1,0,0,,22625C,62625C,ff,TRAILER_DI_LEFT,1:true;0:false ,765,24,24,1,0,0,,22625D,62625D,ff,TRAILER_DI_RIGHT,1:true;0:false ,765,24,31,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.0 ,765,32,39,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.1 ,765,40,47,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.2 ,765,48,55,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.3 ,765,56,63,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.4 ,765,64,71,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.5 ,765,72,79,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.6 ,765,80,87,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.7 ,765,88,95,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.8 ,765,96,103,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.9 ,765,104,111,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.10 ,765,112,119,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.11 ,765,120,127,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.12 ,765,128,135,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.13 ,765,136,143,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.14 ,765,144,151,1,0,0,,22625E,62625E,ff,RFS_DATA_LAST_MSG_RECEIVED.15 ,765,24,31,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.0 ,765,32,39,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.1 ,765,40,47,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.2 ,765,48,55,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.3 ,765,56,63,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.4 ,765,64,71,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.5 ,765,72,79,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.6 ,765,80,87,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.7 ,765,88,95,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.8 ,765,96,103,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.9 ,765,104,111,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.10 ,765,112,119,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED1.11 ,765,120,127,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.12 ,765,128,135,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.13 ,765,136,143,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.14 ,765,144,151,1,0,0,,226261,626261,ff,RFS_DATA_LAST_MSG_TRANSMITTED.15 ,765,24,24,1,0,0,,226262,626262,ff,DRIVER_DOOR_SW_MONITORED,1:true;0:false ,765,24,24,1,0,0,,226263,626263,ff,DRIVER_DOOR_SW_FAILURE_STATE,1:true;0:false ,765,24,39,1,0,0,,226264,626264,ff,WSS_INTERVAL ,765,24,31,1,0,0,,226265,626265,ff,WSS_OFFSET_FL ,765,24,31,1,0,0,,226266,626266,ff,WSS_OFFSET_FR ,765,24,31,1,0,0,,226267,626267,ff,WSS_OFFSET_RL ,765,24,31,1,0,0,,226268,626268,ff,WSS_OFFSET_RR ,765,24,31,1,0,0,,226269,626269,ff,WSS_OFFSET_VEH_STATE_FL,0:VEH_STATE_PARKED;1:VEH_STATE_DRIVING ,765,24,31,1,0,0,,22626A,62626A,ff,WSS_OFFSET_VEH_STATE_FR,0:VEH_STATE_PARKED;1:VEH_STATE_DRIVING ,765,24,31,1,0,0,,22626B,62626B,ff,WSS_OFFSET_VEH_STATE_RL,0:VEH_STATE_PARKED;1:VEH_STATE_DRIVING ,765,24,31,1,0,0,,22626C,62626C,ff,WSS_OFFSET_VEH_STATE_RR,0:VEH_STATE_PARKED;1:VEH_STATE_DRIVING ,765,24,39,1,0,0,,22626D,62626D,ff,WSS_TPMS_INTERVAL ,765,24,31,1,0,0,,22626E,62626E,ff,LIGHT_REQUEST_BY_ALS,0:ALS_DAY;1:ALS_TWILIGHT;2:ALS_NIGHT ,765,24,24,1,0,0,,22626F,62626F,ff,CAN_IVI_PRESENT,1:true;0:false ,765,24,39,1,0,0,,226270,626270,ff,NEXT_RES ,765,24,31,1,0,0,,226271,626271,ff,ROOMLAMP_CS ,765,24,24,1,0,0,,226272,626272,ff,O_SHIFT_LOCK_RL,1:true;0:false ,765,24,39,1,0,0,,226273,626273,ff,WUP_CHARGE_TM ,765,24,39,1,0,0,,226274,626274,ff,WUP_RES_PRESOAK_TM ,765,24,39,1,0,0,,226275,626275,ff,CURRENT_TIME_TM ,765,24,31,1,0,0,,226278,626278,ff,BRAKE_INFO_STOP_FUNCTION,0:BRAKE_FUNCTION_NOT_PRESSED;1:BRAKE_FUNCTION_PRESSED;2:BRAKE_FUNCTION_CONFIRMED_PRESS;3:BRAKE_FUNCTION_UNAVAILABLE ,765,24,24,1,0,0,,226279,626279,ff,DAY_NIGHT_FOR_B_SWITCHES_LIN,1:true;0:false ,765,24,24,1,0,0,,22627A,62627A,ff,RLS_LIGHTING_COMMAND_BY_RAIN,1:true;0:false ,765,24,24,1,0,0,,22627B,62627B,ff,AUTO_LIGHT_CSW,1:true;0:false ,765,24,24,1,0,0,,22627C,62627C,ff,FRONT_FOG_CSW,1:true;0:false ,765,24,24,1,0,0,,22627D,62627D,ff,FRONT_WASHER_CSW,1:true;0:false ,765,24,24,1,0,0,,22627E,62627E,ff,FRONT_WIPER_HIGH_CSW,1:true;0:false ,765,24,24,1,0,0,,22627F,62627F,ff,FRONT_WIPER_INT_CSW,1:true;0:false ,765,24,24,1,0,0,,226280,626280,ff,FRONT_WIPER_INT1_CSW,1:true;0:false ,765,24,24,1,0,0,,226281,626281,ff,FRONT_WIPER_INT2_CSW,1:true;0:false ,765,24,24,1,0,0,,226282,626282,ff,FRONT_WIPER_INT3_CSW,1:true;0:false ,765,24,24,1,0,0,,226283,626283,ff,FRONT_WIPER_LOW_CSW,1:true;0:false ,765,24,24,1,0,0,,226284,626284,ff,FRONT_WIPER_OFF_CSW,1:true;0:false ,765,24,24,1,0,0,,226285,626285,ff,HIGH_BEAM_CSW,1:true;0:false ,765,24,24,1,0,0,,226286,626286,ff,LEFT_FLASHER_CSW,1:true;0:false ,765,24,24,1,0,0,,226287,626287,ff,LOW_BEAM_CSW,1:true;0:false ,765,24,24,1,0,0,,226288,626288,ff,NO_LIGHT_CSW,1:true;0:false ,765,24,24,1,0,0,,226289,626289,ff,PASSING_CSW,1:true;0:false ,765,24,24,1,0,0,,22628A,62628A,ff,REAR_FOG_CSW,1:true;0:false ,765,24,24,1,0,0,,22628B,62628B,ff,REAR_WASHER_CSW,1:true;0:false ,765,24,24,1,0,0,,22628C,62628C,ff,REAR_WIPER_CONT_CSW,1:true;0:false ,765,24,24,1,0,0,,22628D,62628D,ff,REAR_WIPER_INT_CSW,1:true;0:false ,765,24,24,1,0,0,,22628E,62628E,ff,RIGHT_FLASHER_CSW,1:true;0:false ,765,24,24,1,0,0,,22628F,62628F,ff,TAIL_CSW,1:true;0:false ,765,24,31,1,0,0,,226290,626290,ff,FLASHING_INDICATOR_STATUS,0:FLASHER_LEFT_AND_RIGHT_OFF;1:FLASHER_LEFT_ON_AND_RIGHT_OFF;2:FLASHER_LEFT_OFF_AND_RIGHT_ON;3:FLASHER_LEFT_AND_RIGHT_ON;4:FLASHER_NOT_USED_1;5:FLASHER_NOT_USED_2;6:FLASHER_NOT_USED_3;7:FLASHER_UNAVAILABLE ,765,24,24,1,0,0,,226291,626291,ff,TAILGATE_OPERATING,1:true;0:false ,765,24,31,1,0,0,,226292,626292,ff,HEADLAMP_WASHER_COUNTER ,765,24,31,1,0,0,,226293,626293,ff,CUSTOMER_LEAVING_STATUS ,765,24,31,1,0,0,,226294,626294,ff,RAIN_SENSOR_FAILURE_LIN,0:RS_NO_FAILURE;1:RS_RAIN_SENSOR_FAILURE;2:RS_RESERVED;3:RS_UNAVAILABLE ,765,24,24,1,0,0,,226295,626295,ff,RLSS_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226296,626296,ff,WM_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226297,626297,ff,ALARM_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226298,626298,ff,DPC_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,226299,626299,ff,IFLW_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,22629A,62629A,ff,IFRW_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,22629B,62629B,ff,IRLW_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,22629C,62629C,ff,IRRW_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,22629D,62629D,ff,PMU_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,22629E,62629E,ff,SRU_RESPONSE_ERROR,1:true;0:false ,765,24,24,1,0,0,,22629F,62629F,ff,SSU_RESPONSE_ERROR,1:true;0:false ,765,24,31,1,0,0,,2262A0,6262A0,ff,NBR_IKEYFOB_ARBT_TIMER_START ,765,24,31,1,0,0,,2262A1,6262A1,ff,NBR_IKEYFOB_ARBT_TIMER_EXPIRE ,765,24,24,1,0,0,,2262A2,6262A2,ff,TAILGATE_OPENING_INHIBITED,1:true;0:false ,765,24,24,1,0,0,,2262A3,6262A3,ff,R_L1_BY_EXT_LIGHTS,1:true;0:false ,765,24,24,1,0,0,,2262A4,6262A4,ff,VEHICLE_SPEED_CRC_OR_CLK_NOK,1:true;0:false ,765,24,39,1,0,0,,2262A5,6262A5,ff,VEHICLE_SPEED_FROM_ABS ,765,24,31,1,0,0,,2262A6,6262A6,ff,PWM_STOP_START_LED ,765,24,24,1,0,0,,2262A7,6262A7,ff,FRONT_WIPER_MIST_CSW,1:true;0:false ,765,24,31,1,0,0,,2262A8,6262A8,ff,TPMS_AL_TEMP_FL ,765,24,31,1,0,0,,2262A9,6262A9,ff,TPMS_AL_TEMP_FR ,765,24,31,1,0,0,,2262AA,6262AA,ff,TPMS_AL_TEMP_RL ,765,24,31,1,0,0,,2262AB,6262AB,ff,TPMS_AL_TEMP_RR ,765,24,24,1,0,0,,2262AC,6262AC,ff,CAN_ADB_PRESENT,1:true;0:false ,765,24,24,1,0,0,,2262AD,6262AD,ff,CAN_CGW_PRESENT,1:true;0:false ,765,24,24,1,0,0,,2262AE,6262AE,ff,REAR_SEAT_ALERT_TEMPORY,1:true;0:false ,765,24,31,1,0,0,,2262AF,6262AF,ff,REAR_SEAT_DRIVING_STATE,0:REAR_SEAT_BEFORE_DRIVING;1:REAR_SEAT_DURING_DRIVING;2:REAR_SEAT_AFTER_DRIVING ,765,24,24,1,0,0,,2262B0,6262B0,ff,DRIVER_PRESENCE_STATE,1:true;0:false ,765,24,24,1,0,0,,2262B1,6262B1,ff,REAR_PRESENCE_STATE,1:true;0:false ,765,24,31,1,0,0,,2262B2,6262B2,ff,CAN_C1A_TYPE,0:TYPE_C1A;1:TYPE_C1A_HS ,765,24,24,1,0,0,,2262B3,6262B3,ff,INCREASE_DONE.0,1:true;0:false ,765,25,25,1,0,0,,2262B3,6262B3,ff,INCREASE_DONE.1,1:true;0:false ,765,26,26,1,0,0,,2262B3,6262B3,ff,INCREASE_DONE.2,1:true;0:false ,765,27,27,1,0,0,,2262B3,6262B3,ff,INCREASE_DONE.3,1:true;0:false ,765,24,24,1,0,0,,2262B4,6262B4,ff,INPUT_STATUS_ERROR,1:true;0:false ,765,24,24,1,0,0,,2262B5,6262B5,ff,OUTPUT_DONE.0,1:true;0:false ,765,25,25,1,0,0,,2262B5,6262B5,ff,OUTPUT_DONE.1,1:true;0:false ,765,26,26,1,0,0,,2262B5,6262B5,ff,OUTPUT_DONE.2,1:true;0:false ,765,27,27,1,0,0,,2262B5,6262B5,ff,OUTPUT_DONE.3,1:true;0:false ,765,24,31,1,0,0,,2262B6,6262B6,ff,PRESSURE_ADJUST.0 ,765,32,39,1,0,0,,2262B6,6262B6,ff,PRESSURE_ADJUST.1 ,765,40,47,1,0,0,,2262B6,6262B6,ff,PRESSURE_ADJUST.2 ,765,48,55,1,0,0,,2262B6,6262B6,ff,PRESSURE_ADJUST.3 ,765,24,31,1,0,0,,2262B7,6262B7,ff,PRESSURE_DEC.0 ,765,32,39,1,0,0,,2262B7,6262B7,ff,PRESSURE_DEC.1 ,765,40,47,1,0,0,,2262B7,6262B7,ff,PRESSURE_DEC.2 ,765,48,55,1,0,0,,2262B7,6262B7,ff,PRESSURE_DEC.3 ,765,24,31,1,0,0,,2262B8,6262B8,ff,PRESSURE_INC.0 ,765,32,39,1,0,0,,2262B8,6262B8,ff,PRESSURE_INC.1 ,765,40,47,1,0,0,,2262B8,6262B8,ff,PRESSURE_INC.2 ,765,48,55,1,0,0,,2262B8,6262B8,ff,PRESSURE_INC.3 ,765,24,31,.1,0,1,sec,2262B9,6262B9,ff,RF_DATA_STOP_HAZARD_TM.0 ,765,32,39,.1,0,1,sec,2262B9,6262B9,ff,RF_DATA_STOP_HAZARD_TM.1 ,765,40,47,.1,0,1,sec,2262B9,6262B9,ff,RF_DATA_STOP_HAZARD_TM.2 ,765,48,55,.1,0,1,sec,2262B9,6262B9,ff,RF_DATA_STOP_HAZARD_TM.3 ,765,24,31,.1,0,1,sec,2262BA,6262BA,ff,RF_DATA_TM.0 ,765,32,39,.1,0,1,sec,2262BA,6262BA,ff,RF_DATA_TM.1 ,765,40,47,.1,0,1,sec,2262BA,6262BA,ff,RF_DATA_TM.2 ,765,48,55,.1,0,1,sec,2262BA,6262BA,ff,RF_DATA_TM.3 ,765,24,24,1,0,0,,2262BB,6262BB,ff,VEHICLE_PARKED,1:true;0:false ,765,24,31,1,0,0,,2262BC,6262BC,ff,WHEEL_PRESS_RANGE.0 ,765,32,39,1,0,0,,2262BC,6262BC,ff,WHEEL_PRESS_RANGE.1 ,765,40,47,1,0,0,,2262BC,6262BC,ff,WHEEL_PRESS_RANGE.2 ,765,48,55,1,0,0,,2262BC,6262BC,ff,WHEEL_PRESS_RANGE.3 ,765,24,31,1,0,0,,2262BD,6262BD,ff,WHEEL_PRESS_RANGE_OLD.0 ,765,32,39,1,0,0,,2262BD,6262BD,ff,WHEEL_PRESS_RANGE_OLD.1 ,765,40,47,1,0,0,,2262BD,6262BD,ff,WHEEL_PRESS_RANGE_OLD.2 ,765,48,55,1,0,0,,2262BD,6262BD,ff,WHEEL_PRESS_RANGE_OLD.3 ,765,24,24,1,0,0,,2262BE,6262BE,ff,CAN_ADAS_PRESENT,1:true;0:false ,765,24,39,7.5,0,0,mBar,226300,626300,ff,TPMS_INTERNAL_PRES.0 ,765,24,39,7.5,0,0,mBar,226301,626301,ff,TPMS_INTERNAL_PRES.1 ,765,24,39,7.5,0,0,mBar,226302,626302,ff,TPMS_INTERNAL_PRES.2 ,765,24,39,7.5,0,0,mBar,226303,626303,ff,TPMS_INTERNAL_PRES.3 ,765,24,39,7.5,0,0,mBar,226304,626304,ff,TPMS_INTERNAL_PRES_OLD.0 ,765,24,39,7.5,0,0,mBar,226305,626305,ff,TPMS_INTERNAL_PRES_OLD.1 ,765,24,39,7.5,0,0,mBar,226306,626306,ff,TPMS_INTERNAL_PRES_OLD.2 ,765,24,39,7.5,0,0,mBar,226307,626307,ff,TPMS_INTERNAL_PRES_OLD.3 ,765,24,39,7.5,0,0,,226308,626308,ff,TPMS_WARM_PRESS.0 ,765,24,39,7.5,0,0,,226309,626309,ff,TPMS_WARM_PRESS.1 ,765,24,39,7.5,0,0,,22630A,62630A,ff,TPMS_WARM_PRESS.2 ,765,24,39,7.5,0,0,,22630B,62630B,ff,TPMS_WARM_PRESS.3 ,765,24,39,7.5,0,0,mBar,22630C,62630C,ff,TPMS_UNDINF_PRES_THRD_LOW.0 ,765,24,39,7.5,0,0,mBar,22630D,62630D,ff,TPMS_UNDINF_PRES_THRD_LOW.1 ,765,24,39,7.5,0,0,mBar,22630E,62630E,ff,TPMS_UNDINF_PRES_THRD_LOW.2 ,765,24,39,7.5,0,0,mBar,22630F,62630F,ff,TPMS_UNDINF_PRES_THRD_LOW.3 ,765,24,31,1,30,0,°C,226310,626310,ff,TPMS_INTERNAL_TEMP.0 ,765,24,31,1,30,0,°C,226311,626311,ff,TPMS_INTERNAL_TEMP.1 ,765,24,31,1,30,0,°C,226312,626312,ff,TPMS_INTERNAL_TEMP.2 ,765,24,31,1,30,0,°C,226313,626313,ff,TPMS_INTERNAL_TEMP.3 ,765,24,24,1,0,0,,226314,626314,ff,TPMS_PRESS_INCOH.0,1:true;0:false ,765,24,24,1,0,0,,226315,626315,ff,TPMS_PRESS_INCOH.1,1:true;0:false ,765,24,24,1,0,0,,226316,626316,ff,TPMS_PRESS_INCOH.2,1:true;0:false ,765,24,24,1,0,0,,226317,626317,ff,TPMS_PRESS_INCOH.3,1:true;0:false ,765,24,24,1,0,0,,226318,626318,ff,TPMS_TEMP_INCOH.0,1:true;0:false ,765,24,24,1,0,0,,226319,626319,ff,TPMS_TEMP_INCOH.1,1:true;0:false ,765,24,24,1,0,0,,22631A,62631A,ff,TPMS_TEMP_INCOH.2,1:true;0:false ,765,24,24,1,0,0,,22631B,62631B,ff,TPMS_TEMP_INCOH.3,1:true;0:false ,765,24,24,1,0,0,,22631C,62631C,ff,TPMS_ACCEL_INCOH.0,1:true;0:false ,765,24,24,1,0,0,,22631D,62631D,ff,TPMS_ACCEL_INCOH.1,1:true;0:false ,765,24,24,1,0,0,,22631E,62631E,ff,TPMS_ACCEL_INCOH.2,1:true;0:false ,765,24,24,1,0,0,,22631F,62631F,ff,TPMS_ACCEL_INCOH.3,1:true;0:false ,765,24,24,1,0,0,,226320,626320,ff,TPMS_SENSOR_FAT_ERROR.0,1:true;0:false ,765,24,24,1,0,0,,226321,626321,ff,TPMS_SENSOR_FAT_ERROR.1,1:true;0:false ,765,24,24,1,0,0,,226322,626322,ff,TPMS_SENSOR_FAT_ERROR.2,1:true;0:false ,765,24,24,1,0,0,,226323,626323,ff,TPMS_SENSOR_FAT_ERROR.3,1:true;0:false ,765,24,24,1,0,0,,226324,626324,ff,TPMS_MISSING_TRANSMITTER.0,1:true;0:false ,765,24,24,1,0,0,,226325,626325,ff,TPMS_MISSING_TRANSMITTER.1,1:true;0:false ,765,24,24,1,0,0,,226326,626326,ff,TPMS_MISSING_TRANSMITTER.2,1:true;0:false ,765,24,24,1,0,0,,226327,626327,ff,TPMS_MISSING_TRANSMITTER.3,1:true;0:false ,765,24,31,1,0,0,,226328,626328,ff,TPMS_MOTION_STATUS.0,0:MOTION_STATUS_NO_MOTION;1:MOTION_STATUS_MOTION_LEFT;2:MOTION_STATUS_MOTION_RIGHT;3:MOTION_STATUS_UNAVAILABLE ,765,24,31,1,0,0,,226329,626329,ff,TPMS_MOTION_STATUS.1,0:MOTION_STATUS_NO_MOTION;1:MOTION_STATUS_MOTION_LEFT;2:MOTION_STATUS_MOTION_RIGHT;3:MOTION_STATUS_UNAVAILABLE ,765,24,31,1,0,0,,22632A,62632A,ff,TPMS_MOTION_STATUS.2,0:MOTION_STATUS_NO_MOTION;1:MOTION_STATUS_MOTION_LEFT;2:MOTION_STATUS_MOTION_RIGHT;3:MOTION_STATUS_UNAVAILABLE ,765,24,31,1,0,0,,22632B,62632B,ff,TPMS_MOTION_STATUS.3,0:MOTION_STATUS_NO_MOTION;1:MOTION_STATUS_MOTION_LEFT;2:MOTION_STATUS_MOTION_RIGHT;3:MOTION_STATUS_UNAVAILABLE ,765,24,31,1,0,0,,22632C,62632C,ff,TPMS_RF_EVENT_TYPE.0,0:RF_EVENT_TYPE_PERIOD;1:RF_EVENT_TYPE_RF_DELTA_PRESSURE;2:RF_EVENT_TYPE_FAST_PERIOD;3:RF_EVENT_TYPE_LF_EVENT ,765,24,31,1,0,0,,22632D,62632D,ff,TPMS_RF_EVENT_TYPE.1,0:RF_EVENT_TYPE_PERIOD;1:RF_EVENT_TYPE_RF_DELTA_PRESSURE;2:RF_EVENT_TYPE_FAST_PERIOD;3:RF_EVENT_TYPE_LF_EVENT ,765,24,31,1,0,0,,22632E,62632E,ff,TPMS_RF_EVENT_TYPE.2,0:RF_EVENT_TYPE_PERIOD;1:RF_EVENT_TYPE_RF_DELTA_PRESSURE;2:RF_EVENT_TYPE_FAST_PERIOD;3:RF_EVENT_TYPE_LF_EVENT ,765,24,31,1,0,0,,22632F,62632F,ff,TPMS_RF_EVENT_TYPE.3,0:RF_EVENT_TYPE_PERIOD;1:RF_EVENT_TYPE_RF_DELTA_PRESSURE;2:RF_EVENT_TYPE_FAST_PERIOD;3:RF_EVENT_TYPE_LF_EVENT ,765,24,31,1,0,0,,226330,626330,ff,TPMS_FUNCTION_CODE.0,0:LF_REQ_FORCE_MODE_PRES_STABLE;1:FUNCTION_CODE_NOT_USED_1;2:LF_REQ_FORCE_MODE_SHIPPING;3:DELTA_PRES;4:FUNCTION_CODE_RESERVED_4;5:PRES_ALERT;6:FUNCTION_CODE_NOT_USED_6;7:DRIVING_MODE;8:FUNCTION_CODE_NOT_USED_8;9:FUNCTION_CODE_NOT_USED_9;10:FUNCTION_CODE_NOT_USED_10;11:FUNCTION_CODE_NOT_USED_11;12:LF_REQ_MI;13:LF_REQ_MP;14:FUNCTION_CODE_NOT_USED_14;15:FIRST_BLOCK_MODE ,765,24,31,1,0,0,,226331,626331,ff,TPMS_FUNCTION_CODE.1,0:LF_REQ_FORCE_MODE_PRES_STABLE;1:FUNCTION_CODE_NOT_USED_1;2:LF_REQ_FORCE_MODE_SHIPPING;3:DELTA_PRES;4:FUNCTION_CODE_RESERVED_4;5:PRES_ALERT;6:FUNCTION_CODE_NOT_USED_6;7:DRIVING_MODE;8:FUNCTION_CODE_NOT_USED_8;9:FUNCTION_CODE_NOT_USED_9;10:FUNCTION_CODE_NOT_USED_10;11:FUNCTION_CODE_NOT_USED_11;12:LF_REQ_MI;13:LF_REQ_MP;14:FUNCTION_CODE_NOT_USED_14;15:FIRST_BLOCK_MODE ,765,24,31,1,0,0,,226332,626332,ff,TPMS_FUNCTION_CODE.2,0:LF_REQ_FORCE_MODE_PRES_STABLE;1:FUNCTION_CODE_NOT_USED_1;2:LF_REQ_FORCE_MODE_SHIPPING;3:DELTA_PRES;4:FUNCTION_CODE_RESERVED_4;5:PRES_ALERT;6:FUNCTION_CODE_NOT_USED_6;7:DRIVING_MODE;8:FUNCTION_CODE_NOT_USED_8;9:FUNCTION_CODE_NOT_USED_9;10:FUNCTION_CODE_NOT_USED_10;11:FUNCTION_CODE_NOT_USED_11;12:LF_REQ_MI;13:LF_REQ_MP;14:FUNCTION_CODE_NOT_USED_14;15:FIRST_BLOCK_MODE ,765,24,31,1,0,0,,226333,626333,ff,TPMS_FUNCTION_CODE.3,0:LF_REQ_FORCE_MODE_PRES_STABLE;1:FUNCTION_CODE_NOT_USED_1;2:LF_REQ_FORCE_MODE_SHIPPING;3:DELTA_PRES;4:FUNCTION_CODE_RESERVED_4;5:PRES_ALERT;6:FUNCTION_CODE_NOT_USED_6;7:DRIVING_MODE;8:FUNCTION_CODE_NOT_USED_8;9:FUNCTION_CODE_NOT_USED_9;10:FUNCTION_CODE_NOT_USED_10;11:FUNCTION_CODE_NOT_USED_11;12:LF_REQ_MI;13:LF_REQ_MP;14:FUNCTION_CODE_NOT_USED_14;15:FIRST_BLOCK_MODE ,765,24,24,1,0,0,,226334,626334,ff,TPMS_LOW_BATT_ON.0,1:true;0:false ,765,24,24,1,0,0,,226335,626335,ff,TPMS_LOW_BATT_ON.1,1:true;0:false ,765,24,24,1,0,0,,226336,626336,ff,TPMS_LOW_BATT_ON.2,1:true;0:false ,765,24,24,1,0,0,,226337,626337,ff,TPMS_LOW_BATT_ON.3,1:true;0:false ,765,24,39,1,0,0,,226338,626338,ff,VEHICLE_SPEED_SAFETY_LINE ,765,24,31,1,0,0,,226339,626339,ff,GEAR_LEVER_POSITION_FLT,0:GLP_PARKING;1:GLP_REVERSE;2:GLP_NEUTRAL;3:GLP_DRIVE;15:GLP_NOT_AVAILABLE;4:GLP_MANUAL_MODE;5:GLP_L;6:GLP_DS;7:GLP_CONFIRMED_LEVER_POSITION;8:GLP_BRAKE;9:GLP_NOT_USED_9;10:GLP_NOT_USED_10;11:GLP_NOT_USED_11;12:GLP_NOT_USED_12;13:GLP_NOT_USED_13;14:GLP_NOT_USED_14 ,765,24,24,1,0,0,,22633A,62633A,ff,WIPING_SERVICE_AUTOACC_REQUEST,1:true;0:false ,765,24,39,.01,0,2,Volt,228000,628000,ff,BATT_VOLTAGE ,765,24,39,1,0,0,km/h,228001,628001,ff,VEHICLE_SPEED ,765,24,39,.25,20000,1,°C,228002,628002,ff,EXTERNAL_TEMP ,765,24,31,1,0,0,,228003,628003,ff,VEHICLE_STATE,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;4:VS_NOT_USED_4;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE;9:VS_ENGINE_SYSTEM_STOP;3:VS_AUTOACC_LEVEL ,765,24,24,1,0,0,,228004,628004,ff,CAR_SECURE_S,1:true;0:false ,765,24,55,1,0,0,,228005,628005,4ff,ABSOLUTETIME ,765,24,31,.06,-10000,2,Volt,228006,628006,ff,BATTERY_VOLTAGE_FROM_CAN ,765,24,55,1,0,0,,228100,628100,4ff,DISTANCE_TOTALIZER ,765,24,2543,1,0,0,,22DA00,62DA00,4ff,SigmaVSSD0 ,765,24,2543,1,0,0,,22DA01,62DA01,4ff,SigmaVSSD1 ,765,24,3047,1,0,0,,22DA02,62DA02,4ff,SigmaVSSD2 ,765,24,1343,1,0,0,,22DA10,62DA10,4ff,SigmaVTDD0 ,765,24,1343,1,0,0,,22DA11,62DA11,4ff,SigmaVTDD1 ,765,24,1343,1,0,0,,22DA12,62DA12,4ff,SigmaVTDD2 ,765,24,1343,1,0,0,,22DA13,62DA13,4ff,SigmaVTDD3 ,765,24,1343,1,0,0,,22DA14,62DA14,4ff,SigmaVTDD4 ,765,24,1343,1,0,0,,22DA15,62DA15,4ff,SigmaVTDD5 ,765,24,1343,1,0,0,,22DA16,62DA16,4ff,SigmaVTDD6 ,765,24,1343,1,0,0,,22DA17,62DA17,4ff,SigmaVTDD7 ,765,24,1343,1,0,0,,22DA18,62DA18,4ff,SigmaVTDD8 ,765,24,1343,1,0,0,,22DA19,62DA19,4ff,SigmaVTDD9 ,765,24,1343,1,0,0,,22DA1A,62DA1A,4ff,SigmaVTDD10 ,765,24,1343,1,0,0,,22DA1B,62DA1B,4ff,SigmaVTDD11 ,765,24,1343,1,0,0,,22DA1C,62DA1C,4ff,SigmaVTDD12 ,765,24,1343,1,0,0,,22DA1D,62DA1D,4ff,SigmaVTDD13 ,765,24,1343,1,0,0,,22DA1E,62DA1E,4ff,SigmaVTDD14 ,765,24,1343,1,0,0,,22DA1F,62DA1F,4ff,SigmaVTDD15 ,765,24,2943,1,0,0,,22DA20,62DA20,4ff,IASS_PART1 ,765,24,2943,1,0,0,,22DA21,62DA21,4ff,IASS_PART2 ,765,24,1103,1,0,0,,22DA40,62DA40,4ff,TPMS_Sigma_Missing_Sensor ,765,24,1071,1,0,0,,22DA70,62DA70,4ff,OperationHistory ,765,24,1855,1,0,0,,22DA80,62DA80,4ff,TPMS_Sigma_Long_Term_Pressure_Variation ,765,24,407,1,0,0,,22DA81,62DA81,4ff,TPMS_Sigma_ID_Registration_History ,765,24,31,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.0 ,765,32,39,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.1 ,765,40,47,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.2 ,765,48,55,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.3 ,765,56,63,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.4 ,765,64,71,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.5 ,765,72,79,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.6 ,765,80,87,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.7 ,765,88,95,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.8 ,765,96,103,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.9 ,765,104,111,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.10 ,765,112,119,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.11 ,765,120,127,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.12 ,765,128,135,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.13 ,765,136,143,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.14 ,765,144,151,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.15 ,765,152,159,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.16 ,765,160,167,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.17 ,765,168,175,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.18 ,765,176,183,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.19 ,765,184,191,1,0,0,,22EFB1,62EFB1,ff,NETWORK_CONFIGURATION_1_CF.20 ,765,24,31,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.0 ,765,32,39,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.1 ,765,40,47,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.2 ,765,48,55,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.3 ,765,56,63,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.4 ,765,64,71,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.5 ,765,72,79,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.6 ,765,80,87,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.7 ,765,88,95,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.8 ,765,96,103,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.9 ,765,104,111,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.10 ,765,112,119,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.11 ,765,120,127,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.12 ,765,128,135,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.13 ,765,136,143,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.14 ,765,144,151,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.15 ,765,152,159,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.16 ,765,160,167,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.17 ,765,168,175,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.18 ,765,176,183,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.19 ,765,184,191,1,0,0,,22EFB2,62EFB2,ff,NETWORK_CONFIGURATION_2_CF.20 ,765,24,31,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.0 ,765,32,39,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.1 ,765,40,47,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.2 ,765,48,55,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.3 ,765,56,63,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.4 ,765,64,71,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.5 ,765,72,79,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.6 ,765,80,87,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.7 ,765,88,95,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.8 ,765,96,103,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.9 ,765,104,111,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.10 ,765,112,119,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.11 ,765,120,127,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.12 ,765,128,135,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.13 ,765,136,143,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.14 ,765,144,151,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.15 ,765,152,159,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.16 ,765,160,167,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.17 ,765,168,175,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.18 ,765,176,183,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.19 ,765,184,191,1,0,0,,22EFB3,62EFB3,ff,NETWORK_CONFIGURATION_3_CF.20 ,765,24,31,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.0 ,765,32,39,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.1 ,765,40,47,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.2 ,765,48,55,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.3 ,765,56,63,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.4 ,765,64,71,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.5 ,765,72,79,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.6 ,765,80,87,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.7 ,765,88,95,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.8 ,765,96,103,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.9 ,765,104,111,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.10 ,765,112,119,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.11 ,765,120,127,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.12 ,765,128,135,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.13 ,765,136,143,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.14 ,765,144,151,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.15 ,765,152,159,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.16 ,765,160,167,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.17 ,765,168,175,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.18 ,765,176,183,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.19 ,765,184,191,1,0,0,,22EFB4,62EFB4,ff,NETWORK_CONFIGURATION_4_CF.20 ,765,24,151,1,0,0,,22F010,62F010,2ff,Fingerprint ,765,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,765,24,103,1,0,0,,22F012,62F012,2ff,OperationnalReference ,765,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationnalReference ,765,24,51,1,0,0,km,22F0D0,62F0D0,ff,DTCMileage ,765,24,31,1,0,0,-,22F0D1,62F0D1,ff,DTCOccurrenceCounter ,765,24,103,1,0,0,,22F111,62F111,2ff,vehicleManufacturerECUHardwareNumberDAI ,765,24,183,1,0,0,,22F121,62F121,2ff,vehicleManufacturerECUSoftwareNumberDAI ,765,24,63,1,0,0,,22F180,62F180,4ff,bootSoftwareIdentification ,765,24,103,1,0,0,,22F182,62F182,2ff,CalibrationNumber ,765,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,765,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,765,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,765,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,765,24,159,1,0,0,,22F190,62F190,2ff,VIN ,765,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,765,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,765,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,765,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,765,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumberN ,765,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigDataReferenceAfterConfigProcess ,765,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/UCH_Tests.csv ================================================ 44,data memory failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 61,signal calculation failure 67,signal incorrect after event 51,not programmed 71,actuator stuck 72,actuator stuck open 45,program memory failure 55,not configured 54,missing calibration 52,not activated 4B,over temperature 4A,incorrect component installed 49,internal electronic failure 48,supervision software failure 47,watchdog / safety µC failure 46,calibration / parameter memory failure 73,actuator stuck closed 87,missing message 53,deactivated 43,special memory failure 98,component or system over temperature 97,Component or system operation obstructed or blocked 96,component internal failure 95,incorrect assembly 94,unexpected operation 93,no operation 92,performance or incorrect operation 91,parametric 8F,erratic 88,bus off 85,signal above allowable range 86,signal invalid 74,actuator slipping 84,signal below allowable range 83,value of signal protection calculation incorrect 82,alive / sequence counter incorrect / not updated 81,invalid serial data received 7B,low fluid level 7A,fluid leak or seal failure 79,mechanical linkage failure 78,alignment or adjustment incorrect 77,commanded position not reachable 76,wrong mounting position 75,emergency position not reachable 66,signal has too many transitions / events 0F,Vehicle manufacturer / System supplier specific 1B,circuit resistance above threshold 1A,circuit resistance below threshold 19,circuit current above threshold 18,circuit current below threshold 17,circuit voltage above threshold 16,circuit voltage below threshold 15,circuit short to battery or open 14,circuit short to ground or open 13,circuit open 1C,circuit voltage out of range 11,circuit short to ground 09,Component Failures 08,Bus Signal / Message Failures 06,Algorithm Based Failures 05,System Programming Failures 04,System Internal Failures 03,FM (Frequency Modulated) / PWM (Pulse Width Modulated) Failures 02,General signal failure 01,General Electrical Failure 00,Device and failure type ODB codding/ General Failure Information 42,general memory failure 68,event information 12,circuit short to battery 35,signal high time > maximum 41,general checksum failure 3A,incorrect has too many pulses 07,Mechanical Failures 1D,circuit current out of range 39,incorrect has too few pulses 38,signal frequency incorrect 36,signal frequency too low 34,signal high time < minimum 33,signal low time > maximum 32,signal low time < minimum 31,no signal 25,signal shape / waveform failure 21,signal amplitude < minimum 37,signal frequency too high 2F,signal erratic 1F,circuit intermittent 23,signal stuck low 24,signal stuck high 22,signal amplitude > maximum 1E,circuit resistance out of range 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level out of range / zero adjustment failure 29,signal signal invalid ================================================ FILE: app/src/main/assets/ZOE_Ph2/USM_Dtcs.csv ================================================ A0B5,2ND_SIGNAL_GROUND A0C7,AC_Clutch A0C8,AC_valve E141,AT_Communication Failure 922D,Auto_Stop_Wiper 923A,BATTERY E14F,BCM_Communication Failure D000,CAN_failure C073,CAN_failure_BUS_OFF E112,EBA_Communication Failure E140,ECM_Communication Failure E159,EPS_Communication Failure A0B4,FL_BAT_1 A0B6,FL_BAT_2 E143,HEVC_Communication_Failure E153,HVAC_Communication Failure A0BD,I_CURRENT_SENSOR 9C01,I_HEIGHT_FRONT 9C02,I_HEIGHT_REAR 922F,I_LIGHT_REVERSE_SW A0BE,I_TEMP_SENSOR 92A4,IBS E004,IDM_Communication Failure A0DE,IGN_RLY_ON_OFF_STUCK A0DD,IGN_RLY_ON_STUCK 921F,IGNITION E154,IVI_Communication Failure A0DB,Levellizer_app_conf 9C11,Levellizer_front_sensor 9C10,Levellizer_MANUAL_SW 9C12,Levellizer_rear_sensor 92A0,LI_HOOD_SW A0E2,LI_LED_Detection_1 A0E3,LI_LED_Detection_2 922E,LI_NEUTRAL_SW 922C,LI_OIL_PRESSURE_SW A0BF,LI_STARTER_SWITCH1 A0C0,LI_STARTER_SWITCH2 9272,LIGHTS 92A2,LO_FAN_RELAY1 9240,LO_FAN_RELAY2_PWM 921C,LO_WASHER E166,MBL_Communication Failure E14E,METER_ Communication Failure 920F,NETWORK_14V A0A3,O_ACTUATOR_5 A0A1,O_ACTUATOR_ON A0D8,O_FBL_LH A0D9,O_FBL_RH A0B2,O_FR_WIPER 92A3,O_FUEL_PUMP 9C00,O_HEIGHT_SENSOR_SUPPLY 921D,O_IGN_NOT_COLUMN_LOCK 9C07,O_LEVELIZER_DC_MOTOR A0D2,O_LIGHT_CLEARANCE_FR_RH_LH A0CB,O_LIGHT_DTRL_LH 9231,O_LIGHT_DTRL_RH 921A,O_LIGHT_FR_FOG_LAMPS_LH 9256,O_LIGHT_FR_FOG_LAMPS_RH A0CE,O_LIGHT_HBEAM_LH A0CF,O_LIGHT_HBEAM_RH A0D0,O_LIGHT_LBEAM_LH A0D1,O_LIGHT_LBEAM_RH A0D5,O_LIGHT_LICENCE_PLATE A0D4,O_LIGHT_POSITION_REAR_LH_RH 9230,O_STARTER A0D7,SIGNAL GND 9299,SS_STARTER_RELAY A0A9,Starter_RLY_External Failure_OC A0A8,Starter_RLY_External Failure_undervoltage A0DF,Starter_RLY_OFF A10D,Starter_RLY_ON 929A,TRAILER_RELAY 920E,USM_ECU failure E10B,VADA_Communication Failure E148,VDC_Communication Failure ================================================ FILE: app/src/main/assets/ZOE_Ph2/USM_Fields.csv ================================================ ,76D,0,0,1,0,0,,1081,5081,ff,Default Session ,76D,0,0,1,0,0,,1085,5085,ff,Programming Session for reprogrammable ECU ,76D,0,0,1,0,0,,1086,5086,ff,Engineering Session ,76D,0,0,1,0,0,,10C0,50C0,ff,After Sales Manufacture Session ,76D,0,0,1,0,0,,10FA,50FA,ff,Supplier Session ,76D,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,76D,16,23,1,0,0,,1902AF,5902AF,ff,DTCStatusAvailabilityMask ,76D,24,39,1,0,0,,1902AF,5902AF,ff,DTCDeviceIdentifier,41141:2ND_SIGNAL_GROUND;41159:AC_Clutch;41160:AC_valve;57665:AT_Communication Failure;37421:Auto_Stop_Wiper;37434:BATTERY;57679:BCM_Communication Failure;53248:CAN_failure;49267:CAN_failure_BUS_OFF;57618:EBA_Communication Failure;57664:ECM_Communication Failure;57689:EPS_Communication Failure;41140:FL_BAT_1;41142:FL_BAT_2;57667:HEVC_Communication_Failure;57683:HVAC_Communication Failure;41149:I_CURRENT_SENSOR;39937:I_HEIGHT_FRONT;39938:I_HEIGHT_REAR;37423:I_LIGHT_REVERSE_SW;41150:I_TEMP_SENSOR;37540:IBS;57348:IDM_Communication Failure;41182:IGN_RLY_ON_OFF_STUCK;41181:IGN_RLY_ON_STUCK;37407:IGNITION;57684:IVI_Communication Failure;41179:Levellizer_app_conf;39953:Levellizer_front_sensor;39952:Levellizer_MANUAL_SW;39954:Levellizer_rear_sensor;37536:LI_HOOD_SW;41186:LI_LED_Detection_1;41187:LI_LED_Detection_2;37422:LI_NEUTRAL_SW;37420:LI_OIL_PRESSURE_SW;41151:LI_STARTER_SWITCH1;41152:LI_STARTER_SWITCH2;37490:LIGHTS;37538:LO_FAN_RELAY1;37440:LO_FAN_RELAY2_PWM;37404:LO_WASHER;57702:MBL_Communication Failure;57678:METER_ Communication Failure;37391:NETWORK_14V;41123:O_ACTUATOR_5;41121:O_ACTUATOR_ON;41176:O_FBL_LH;41177:O_FBL_RH;41138:O_FR_WIPER;37539:O_FUEL_PUMP;39936:O_HEIGHT_SENSOR_SUPPLY;37405:O_IGN_NOT_COLUMN_LOCK;39943:O_LEVELIZER_DC_MOTOR;41170:O_LIGHT_CLEARANCE_FR_RH_LH;41163:O_LIGHT_DTRL_LH;37425:O_LIGHT_DTRL_RH;37402:O_LIGHT_FR_FOG_LAMPS_LH;37462:O_LIGHT_FR_FOG_LAMPS_RH;41166:O_LIGHT_HBEAM_LH;41167:O_LIGHT_HBEAM_RH;41168:O_LIGHT_LBEAM_LH;41169:O_LIGHT_LBEAM_RH;41173:O_LIGHT_LICENCE_PLATE;41172:O_LIGHT_POSITION_REAR_LH_RH;37424:O_STARTER;41175:SIGNAL GND;37529:SS_STARTER_RELAY;41129:Starter_RLY_External Failure_OC;41128:Starter_RLY_External Failure_undervoltage;41183:Starter_RLY_OFF;41229:Starter_RLY_ON;37530:TRAILER_RELAY;37390:USM_ECU failure;57611:VADA_Communication Failure;57672:VDC_Communication Failure ,76D,40,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType,68:data memory failure;98:signal compare failure;99:circuit component protection time-out;100:signal plausibility failure;101:signal has too few transitions events;97:signal calculation failure;103:signal incorrect after event;81:not programmed;113:actuator stuck;114:actuator stuck open;69:program memory failure;85:not configured;84:missing calibration;82:not activated;75:over temperature;74:incorrect component installed;73:internal electronic failure;72:supervision software failure;71:watchdog safety uC failure;70:calibration parameter memory failure;115:actuator stuck closed;135:missing message;83:deactivated;67:special memory failure;152:component or system over temperature;151:Component or system operation obstructed or blocked;150:component internal failure;149:incorrect assembly;148:unexpected operation;147:no operation;146:performance or incorrect operation;145:parametric;143:erratic;136:bus off;133:signal above allowable range;134:signal invalid;116:actuator slipping;132:signal below allowable range;131:value of signal protection calculation incorrect;130:alive sequence counter incorrect not updated;129:invalid serial data received;123:low fluid level;122:fluid leak or seal failure;121:mechanical linkage failure;120:alignment or adjustment incorrect;119:commanded position not reachable;118:wrong mounting position;117:emergency position not reachable;102:signal has too many transitions events;15:Vehicle manufacturer System supplier specific;27:circuit resistance above threshold;26:circuit resistance below threshold;25:circuit current above threshold;24:circuit current below threshold;23:circuit voltage above threshold;22:circuit voltage below threshold;21:circuit short to battery or open;20:circuit short to ground or open;19:circuit open;28:circuit voltage out of range;17:circuit short to ground;9:Component Failures;8:Bus Signal Message Failures;6:Algorithm Based Failures;5:System Programming Failures;4:System Internal Failures;3:FM_PWM Failures;2:General signal failure;1:General Electrical Failure;0:Device and failure type ODB codding Gen Failure Info;66:general memory failure;104:event information;18:circuit short to battery;53:signal high time high maximum;65:general checksum failure;58:incorrect has too many pulses;7:Mechanical Failures;29:circuit current out of range;57:incorrect has too few pulses;56:signal frequency incorrect;54:signal frequency too low;52:signal high time low minimum;51:signal low time high maximum;50:signal low time low minimum;49:no signal;37:signal shape waveform failure;33:signal amplitude low minimum;55:signal frequency too high;47:signal erratic;31:circuit intermittent;35:signal stuck low;36:signal stuck high;34:signal amplitude high maximum;30:circuit resistance out of range;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal bias level outofrange 0 adjust failure;41:signal signal invalid ,76D,44,47,1,0,0,,1902AF,5902AF,ff,DTCFailureType.ManufacturerOrSupplier ,76D,48,48,1,0,0,,1902AF,5902AF,ff,DTCStatus.warningIndicatorRequested,0:No;1:Yes ,76D,49,49,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,76D,50,50,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,76D,51,51,1,0,0,,1902AF,5902AF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,76D,52,52,1,0,0,,1902AF,5902AF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,76D,53,53,1,0,0,,1902AF,5902AF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,76D,54,54,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,76D,55,55,1,0,0,,1902AF,5902AF,ff,DTCStatus.testFailed,0:No;1:Yes ,76D,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,76D,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,76D,41,41,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,76D,42,42,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,76D,43,43,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,76D,44,44,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,76D,45,45,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,76D,46,46,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,76D,47,47,1,0,0,,1904000000FF,5904000000FF,ff,DTCStatus.testFailed,0:No;1:Yes ,76D,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,76D,40,47,1,0,0,,190600000080,590600000080,ff,StatusOfDTC ,76D,41,41,1,0,0,,190600000080,590600000080,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,76D,42,42,1,0,0,,190600000080,590600000080,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,76D,43,43,1,0,0,,190600000080,590600000080,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,76D,44,44,1,0,0,,190600000080,590600000080,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,76D,45,45,1,0,0,,190600000080,590600000080,ff,DTCStatus.pendingDTC,0:No;1:Yes ,76D,46,46,1,0,0,,190600000080,590600000080,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,76D,47,47,1,0,0,,190600000080,590600000080,ff,DTCStatus.testFailed,0:No;1:Yes ,76D,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76D,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,76D,16,39,1,0,0,,190600000081,590600000081,4ff,DTCRecord ,76D,40,47,1,0,0,,190600000081,590600000081,ff,StatusOfDTC ,76D,41,41,1,0,0,,190600000081,590600000081,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,76D,42,42,1,0,0,,190600000081,590600000081,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,76D,43,43,1,0,0,,190600000081,590600000081,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,76D,44,44,1,0,0,,190600000081,590600000081,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,76D,45,45,1,0,0,,190600000081,590600000081,ff,DTCStatus.pendingDTC,0:No;1:Yes ,76D,46,46,1,0,0,,190600000081,590600000081,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,76D,47,47,1,0,0,,190600000081,590600000081,ff,DTCStatus.testFailed,0:No;1:Yes ,76D,48,55,1,0,0,,190600000081,590600000081,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76D,56,63,1,0,0,,190600000081,590600000081,ff,DTCExtendedData.AgingCounter ,76D,16,39,1,0,0,,190600000082,590600000082,4ff,DTCRecord ,76D,40,47,1,0,0,,190600000082,590600000082,ff,StatusOfDTC ,76D,41,41,1,0,0,,190600000082,590600000082,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,76D,42,42,1,0,0,,190600000082,590600000082,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,76D,43,43,1,0,0,,190600000082,590600000082,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,76D,44,44,1,0,0,,190600000082,590600000082,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,76D,45,45,1,0,0,,190600000082,590600000082,ff,DTCStatus.pendingDTC,0:No;1:Yes ,76D,46,46,1,0,0,,190600000082,590600000082,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,76D,47,47,1,0,0,,190600000082,590600000082,ff,DTCStatus.testFailed,0:No;1:Yes ,76D,48,55,1,0,0,,190600000082,590600000082,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76D,56,63,1,0,0,,190600000082,590600000082,ff,DTCExtendedData.DTCOccurrenceCounter ,76D,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,76D,40,47,1,0,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,76D,41,41,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle,0:No;1:Yes ,76D,42,42,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,76D,43,43,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,76D,44,44,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,76D,45,45,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.pendingDTC,0:No;1:Yes ,76D,46,46,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testFailedThisMonitoringCycle,0:No;1:Yes ,76D,47,47,1,0,0,,1906000000FF,5906000000FF,ff,DTCStatus.testFailed,0:No;1:Yes ,76D,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,76D,56,79,1,0,0,km,1906000000FF,5906000000FF,ff,DTCExtendedData.Mileage ,76D,16,47,1,0,0,,2100,6100,2ff,Support_LID_data ,76D,16,16,1,0,0,,2101,6101,ff,LI_HOOD_SW ,76D,17,17,1,0,0,,2101,6101,ff,IGNITION_DIAG ,76D,18,18,1,0,0,,2101,6101,ff,LI_LIGHT_REVERSE_SW ,76D,19,19,1,0,0,,2101,6101,ff,LI_NEUTRAL_SW ,76D,20,20,1,0,0,,2101,6101,ff,LI_NP_SW ,76D,21,21,1,0,0,,2101,6101,ff,LI_OIL_PRESSURE_SW ,76D,22,22,1,0,0,,2101,6101,ff,LI_PUSH_SW ,76D,23,23,1,0,0,,2101,6101,ff,LI_STARTER_SWITCH1 ,76D,24,24,1,0,0,,2101,6101,ff,LI_STARTER_SWITCH2 ,76D,25,25,1,0,0,,2101,6101,ff,LI_DETECTION_1 ,76D,26,26,1,0,0,,2101,6101,ff,LI_DETECTION_2 ,76D,64,79,.001,0,3,,2102,6102,ff,FL_BAT1 ,76D,80,95,.001,0,3,,2102,6102,ff,FL_BAT2 ,76D,96,111,.001,0,3,,2102,6102,ff,I_AUTO_STOP_WIPER ,76D,112,127,.001,0,3,,2102,6102,ff,I_CURRENT_SENSOR ,76D,128,143,.001,0,3,,2102,6102,ff,I_HEIGHT_FRONT ,76D,144,159,.001,0,3,,2102,6102,ff,I_HEIGHT_REAR ,76D,160,175,.001,0,3,,2102,6102,ff,I_TEMP_SENSOR ,76D,176,191,.001,0,3,,2102,6102,ff,AI_5V_SUPPLY_ADIAG ,76D,192,207,.001,0,3,,2102,6102,ff,AI_FL_STARTER_ADIAG ,76D,208,215,1,0,0,,2102,6102,ff,AI_O_STARTER_ADIAG ,76D,216,223,1,0,0,,2102,6102,ff,AC_CLUTCH_ADIAG ,76D,224,239,.001,0,3,,2102,6102,ff,AC_VALVE_ADIAG ,76D,16,16,1,0,0,,2104,6104,ff,LEVELIZE_BRAKE_ENABLE ,76D,17,17,1,0,0,,2104,6104,ff,LO_FAN_RELAY1 ,76D,19,19,1,0,0,,2104,6104,ff,LO_HORN_RLY ,76D,22,22,1,0,0,,2104,6104,ff,LO_STARTER_RLY ,76D,23,23,1,0,0,,2104,6104,ff,LO_TRAILER_RLY ,76D,24,24,1,0,0,,2104,6104,ff,LO_WASHER ,76D,25,25,1,0,0,,2104,6104,ff,O_AC_CLUTCH ,76D,26,26,1,0,0,,2104,6104,ff,O_FR_WIPER_HI ,76D,27,27,1,0,0,,2104,6104,ff,O_FR_WIPER_LO ,76D,28,28,1,0,0,,2104,6104,ff,O_IGN_NOT_COLUMN_LOCK ,76D,29,29,1,0,0,,2104,6104,ff,O_IGNITION_OFF ,76D,30,30,1,0,0,,2104,6104,ff,O_IGNITION_ON ,76D,31,31,1,0,0,,2104,6104,ff,O_MOTOR_FAN_LO ,76D,32,32,1,0,0,,2104,6104,ff,O_STARTER ,76D,33,33,1,0,0,,2104,6104,ff,O_WATER_PUMP ,76D,16,23,1,0,0,%,2105,6105,ff,O_AC_VALVE ,76D,24,31,1,0,0,%,2105,6105,ff,LO_FAN_RELAY2_PWM ,76D,32,39,.4,0,1,%,2105,6105,ff,O_LIGHT_FR_FOG_LAMPS_LH ,76D,40,47,.4,0,1,%,2105,6105,ff,O_LIGHT_FR_FOG_LAMPS_RH ,76D,48,63,.002,0,3,%,2105,6105,ff,O_LEVELIZER_DC_MOTOR ,76D,64,71,.4,0,1,%,2105,6105,ff,O_FBL_LH ,76D,72,79,.4,0,1,%,2105,6105,ff,O_FBL_RH ,76D,80,87,.4,0,1,%,2105,6105,ff,O_LIGHT_POSITION_REAR_LH ,76D,88,95,.4,0,1,%,2105,6105,ff,O_LIGHT_POSITION_REAR_RH ,76D,96,103,.4,0,1,%,2105,6105,ff,O_LIGHT_DTRL_LH ,76D,104,111,.4,0,1,%,2105,6105,ff,O_LIGHT_DTRL_RH ,76D,112,119,.4,0,1,%,2105,6105,ff,O_LIGHT_HBEAM_LH ,76D,120,127,.4,0,1,%,2105,6105,ff,O_LIGHT_HBEAM_RH ,76D,128,135,.4,0,1,%,2105,6105,ff,O_LIGHT_LBEAM_RH ,76D,136,143,.4,0,1,%,2105,6105,ff,O_LIGHT_LBEAM_LH ,76D,144,151,.4,0,1,%,2105,6105,ff,O_LIGHT_CLEARANCE_FR_RH ,76D,152,159,.4,0,1,%,2105,6105,ff,O_LIGHT_CLEARANCE_FR_LH ,76D,16,16,1,0,0,,2106,6106,ff,ACCompValveDefault ,76D,17,18,1,0,0,,2106,6106,ff,BatterySOFS_Alert ,76D,19,20,1,0,0,,2106,6106,ff,EEM_RegulationLoopActivationReq ,76D,21,23,1,0,0,,2106,6106,ff,BattSetPointGeneratorStatus_V2 ,76D,24,33,1,320,0,,2106,6106,ff,BatteryCurrentSensorValue ,76D,34,39,80,0,0,,2106,6106,ff,ElecPowerConsumedByAux_v2 ,76D,40,47,.06,-100,2,,2106,6106,ff,BatteryVoltage ,76D,48,49,1,0,0,,2106,6106,ff,BattWarnReq_Level_Hi_USM_v2 ,76D,50,50,1,0,0,,2106,6106,ff,BattWarnReq_Level_Lo_USM ,76D,51,53,1,0,0,,2106,6106,ff,EEM_StaticPowerLimitationRequest ,76D,54,55,1,0,0,,2106,6106,ff,EEM_StopAutoForbidden ,76D,56,57,1,0,0,,2106,6106,ff,EEM_SailingIdleForbidden ,76D,58,63,.5,-138,1,,2106,6106,ff,SOCBattery14V ,76D,64,67,1,0,0,,2106,6106,ff,Clock_USM_A1 ,76D,68,68,1,0,0,,2106,6106,ff,FrontWiperStopPosition ,76D,69,69,1,0,0,,2106,6106,ff,AFS_FailureDisplay ,76D,70,70,1,0,0,,2106,6106,ff,IgnitionSupplyConfirmation ,76D,71,71,1,0,0,,2106,6106,ff,LevellingLimitAlert ,76D,72,73,1,0,0,,2106,6106,ff,UnderStarterRelayCondition ,76D,74,75,1,0,0,,2106,6106,ff,EngineHoodState ,76D,76,77,1,0,0,,2106,6106,ff,FrontWiperStatus ,76D,78,79,1,0,0,,2106,6106,ff,IdleSpeedInhibitionRequest ,76D,80,86,1,0,0,,2106,6106,ff,EngineFanSpeedStatus_PWM ,76D,87,87,1,0,0,,2106,6106,ff,HandDrivingActivationState ,76D,88,95,1.5,127,0,,2106,6106,ff,FrontHeightBody ,76D,96,97,1,0,0,,2106,6106,ff,LowBatteryVoltageDisplay ,76D,98,100,1,0,0,,2106,6106,ff,ManualLevellingPosition ,76D,101,101,1,0,0,,2106,6106,ff,ACCompClutchDefault ,76D,102,102,1,0,0,,2106,6106,ff,MotorFanFailureStatus ,76D,103,103,1,0,0,,2106,6106,ff,STRLY_FailureAlert ,76D,104,105,1,0,0,,2106,6106,ff,LowBeamFailureDisplay_v3 ,76D,106,107,1,0,0,,2106,6106,ff,NeutralContact ,76D,108,109,1,0,0,,2106,6106,ff,EEM_HighSpeedStopForbidden ,76D,111,111,1,0,0,,2106,6106,ff,ACCompClutchStatus ,76D,112,119,.025,-468,2,,2106,6106,ff,ProducerVoltageRequest ,76D,120,121,1,0,0,,2106,6106,ff,RearGearEngaged ,76D,128,135,1.5,127,0,,2106,6106,ff,RearHeightBody ,76D,136,142,.01,0,2,,2106,6106,ff,ACCompValveCurrent ,76D,143,143,1,0,0,,2106,6106,ff,Powernet_MinimumVoltageReq ,76D,144,159,1,0,0,,2106,6106,ff,USM_WakeUp_Signal ,76D,160,161,1,0,0,,2106,6106,ff,StarterStatus ,76D,162,163,1,0,0,,2106,6106,ff,USM_RefuseToSleep ,76D,164,165,1,0,0,,2106,6106,ff,STCUT_STRLY_Condition ,76D,166,167,1,0,0,,2106,6106,ff,STCUT_RLY_Status ,76D,168,174,1,40,0,,2106,6106,ff,BatteryTemperature ,76D,176,178,1,0,0,,2106,6106,ff,GenMode_v2 ,76D,184,212,1,0,0,,2106,6106,ff,SIGMA_USM ,76D,216,239,1,0,0,,2106,6106,ff,SIGMA_DTCUSM ,76D,16,16,1,0,0,,2107,6107,ff,ACCompAuthorized ,76D,17,17,1,0,0,,2107,6107,ff,TPMS_HornRequest ,76D,21,23,1,0,0,,2107,6107,ff,AT_StartingAuthorization ,76D,24,30,.01,0,2,,2107,6107,ff,ACCompValveRequest ,76D,31,31,1,0,0,,2107,6107,ff,AutoLightingFunctionStatus ,76D,32,35,1,0,0,,2107,6107,ff,Clock_BCM_A4 ,76D,36,37,1,0,0,,2107,6107,ff,CrankingAuthorization_PWT ,76D,38,38,1,0,0,,2107,6107,ff,DayTimeRunningLightRequest ,76D,39,39,1,0,0,,2107,6107,ff,DBC_FailureStatus ,76D,40,41,1,0,0,,2107,6107,ff,BCM_WakeUpSleepCommand ,76D,42,43,1,0,0,,2107,6107,ff,ClutchSwitchMaximumTravel ,76D,44,45,1,0,0,,2107,6107,ff,DeliveryModeInformation_v2 ,76D,46,47,1,0,0,,2107,6107,ff,HVchargerStatus ,76D,48,55,1,0,0,,2107,6107,ff,CRC_BCM_A4 ,76D,56,83,.01,0,2,,2107,6107,ff,DistanceTotalizer ,76D,84,87,1,0,0,,2107,6107,ff,EmergencyEngineStop ,76D,88,89,1,0,0,,2107,6107,ff,ExternalWGS_Request ,76D,90,91,1,0,0,,2107,6107,ff,FlashingIndicatorCommandPosition ,76D,92,93,1,0,0,,2107,6107,ff,eDCT_StartingAuthorization ,76D,94,95,1,0,0,,2107,6107,ff,Maintenance_Mode_Status ,76D,96,103,1,40,0,,2107,6107,ff,EngineCoolantTemp ,76D,104,110,1,0,0,,2107,6107,ff,EngineFanSpeedRequestPWM_ECM ,76D,111,111,1,0,0,,2107,6107,ff,HeadLampsWasherRequest ,76D,112,114,1,0,0,,2107,6107,ff,FrontWipingRequest ,76D,115,117,1,0,0,,2107,6107,ff,GADE ,76D,118,118,1,0,0,,2107,6107,ff,HighBeamPassingRequest ,76D,120,134,.1,10800,1,,2107,6107,ff,SteeringWheelAngleCorrected ,76D,135,135,1,0,0,,2107,6107,ff,HighBeamRequest ,76D,136,151,10,0,0,,2107,6107,ff,HPPumpActivationCounter ,76D,152,167,.01,0,2,,2107,6107,ff,VehicleSpeed ,76D,168,170,1,0,0,,2107,6107,ff,HornRequest ,76D,171,171,1,0,0,,2107,6107,ff,IG_OFF_DELAY_REQUEST ,76D,172,172,1,0,0,,2107,6107,ff,IGN_SaverWarningAfterIGNOFF ,76D,173,173,1,0,0,,2107,6107,ff,LowBeamRequest_USM ,76D,174,175,1,0,0,,2107,6107,ff,PowerTrainStatus ,76D,176,180,.1,-130,1,,2107,6107,ff,MaximumVoltagebyECM_v2 ,76D,181,183,.5,-24,1,,2107,6107,ff,MinimumVoltagebyAC ,76D,184,184,1,0,0,,2107,6107,ff,MBL_FailureDetection ,76D,185,185,1,0,0,,2107,6107,ff,PositionLightsRequest ,76D,186,188,.5,-24,1,,2107,6107,ff,MinimumVoltageByCRBS ,76D,189,191,.5,-24,1,,2107,6107,ff,MinimumVoltagebyECM_v2 ,76D,192,199,1,0,0,,2107,6107,ff,ProducerCurrent ,76D,200,206,1,0,0,,2107,6107,ff,ProducerLoad ,76D,207,207,1,0,0,,2107,6107,ff,ESS_AutoStartImpossible ,76D,208,210,.5,-24,1,,2107,6107,ff,MinimumVoltagebySteer ,76D,211,214,.5,-24,1,,2107,6107,ff,ProducerOptimumVoltage ,76D,215,215,1,0,0,,2107,6107,ff,ProducerLossDetectionStatus ,76D,216,217,1,0,0,,2107,6107,ff,PumpActivationRequest ,76D,218,219,1,0,0,,2107,6107,ff,RearLightSignatureRequest ,76D,220,223,1,0,0,,2107,6107,ff,RESstatus ,76D,224,239,10,0,0,,2107,6107,ff,StarterActivationCounter ,76D,240,241,1,0,0,,2107,6107,ff,StartingMode_BCM ,76D,242,243,1,0,0,,2107,6107,ff,HandDrivingActivationRequest ,76D,244,245,1,0,0,,2107,6107,ff,HandDrivingActivationRequest2 ,76D,247,247,1,0,0,,2107,6107,ff,WarningLightsStatus ,76D,248,262,.1,10800,1,,2107,6107,ff,SteeringWheelAngleRaw ,76D,263,263,1,0,0,,2107,6107,ff,FrontFogLightsRequest ,76D,264,284,1,0,0,,2107,6107,ff,BSGActivationCounter ,76D,285,287,1,0,0,,2107,6107,ff,WakeUpType ,76D,288,290,1,0,0,,2107,6107,ff,SwaSensorInternalStatus ,76D,291,292,1,0,0,,2107,6107,ff,VADA_SystemMode ,76D,293,295,1,0,0,,2107,6107,ff,VoltageRateByECM_V2 ,76D,296,319,1,0,0,min,2107,6107,ff,AbsoluteTimeSince1rstIgnition ,76D,320,323,1,0,0,,2107,6107,ff,VehicleSpeedClock ,76D,324,327,1,0,0,,2107,6107,ff,VehicleStates ,76D,328,335,1,0,0,,2107,6107,ff,VehicleSpeedCRC ,76D,336,344,.25,200,1,,2107,6107,ff,ExternalTemperature ,76D,345,346,1,0,0,,2107,6107,ff,VoltageRatebyAC ,76D,347,350,1,0,0,,2107,6107,ff,VoltageRegulationStatus_V2 ,76D,352,380,1,0,0,,2107,6107,ff,SIGMA_ACU ,76D,384,407,1,0,0,,2107,6107,ff,SIGMA_DTCACU ,76D,408,436,1,0,0,,2107,6107,ff,SIGMA_ADAS ,76D,440,463,1,0,0,,2107,6107,ff,SIGMA_DTCADAS ,76D,464,492,1,0,0,,2107,6107,ff,SIGMA_ATCU ,76D,496,519,1,0,0,,2107,6107,ff,SIGMA_DTCATCU ,76D,520,548,1,0,0,,2107,6107,ff,SIGMA_AVM ,76D,552,575,1,0,0,,2107,6107,ff,SIGMA_DTCAVM ,76D,576,604,1,0,0,,2107,6107,ff,SIGMA_Amplifier ,76D,608,631,1,0,0,,2107,6107,ff,SIGMA_DTCAmplifier ,76D,632,660,1,0,0,,2107,6107,ff,SIGMA_BCM ,76D,664,687,1,0,0,,2107,6107,ff,SIGMA_DTCBCM ,76D,688,716,1,0,0,,2107,6107,ff,SIGMA_BSWL ,76D,720,743,1,0,0,,2107,6107,ff,SIGMA_DTCBSWL ,76D,744,772,1,0,0,,2107,6107,ff,SIGMA_ECM ,76D,776,799,1,0,0,,2107,6107,ff,SIGMA_DTCECM ,76D,800,828,1,0,0,,2107,6107,ff,SIGMA_EPS ,76D,832,855,1,0,0,,2107,6107,ff,SIGMA_DTCEPS ,76D,856,884,1,0,0,,2107,6107,ff,SIGMA_FrCamera ,76D,888,911,1,0,0,,2107,6107,ff,SIGMA_DTCFrCamera ,76D,912,940,1,0,0,,2107,6107,ff,SIGMA_HFM ,76D,944,967,1,0,0,,2107,6107,ff,SIGMA_DTCHFM ,76D,968,996,1,0,0,,2107,6107,ff,SIGMA_IDM ,76D,1000,1023,1,0,0,,2107,6107,ff,SIGMA_DTCIDM ,76D,1024,1052,1,0,0,,2107,6107,ff,SIGMA_IVI ,76D,1056,1079,1,0,0,,2107,6107,ff,SIGMA_DTCIVI ,76D,1080,1108,1,0,0,,2107,6107,ff,SIGMA_METER ,76D,1112,1135,1,0,0,,2107,6107,ff,SIGMA_DTCMETER ,76D,1136,1164,1,0,0,,2107,6107,ff,SIGMA_Radar ,76D,1168,1191,1,0,0,,2107,6107,ff,SIGMA_DTCRadar ,76D,1192,1220,1,0,0,,2107,6107,ff,SIGMA_Sonar ,76D,1224,1247,1,0,0,,2107,6107,ff,SIGMA_DTCSonar ,76D,1248,1276,1,0,0,,2107,6107,ff,SIGMA_TCU ,76D,1280,1303,1,0,0,,2107,6107,ff,SIGMA_DTCTCU ,76D,1304,1332,1,0,0,,2107,6107,ff,SIGMA_VDC ,76D,1336,1359,1,0,0,,2107,6107,ff,SIGMA_DTCVDC ,76D,16,23,1,0,0,,2108,6108,ff,BATTERY_ID ,76D,24,39,1,0,0,,2108,6108,ff,Current ,76D,40,49,1,0,0,,2108,6108,ff,Ri_LIN ,76D,56,63,1,0,0,,2108,6108,ff,T_BATT ,76D,64,64,1,0,0,,2108,6108,ff,IBS_ERROR ,76D,16,55,1,0,0,,211E,611E,2ff,Levelizer ,76D,16,55,1,0,0,,211F,611F,2ff,USM ,76D,16,47,1,0,0,,2120,6120,2ff,Support_LID_data2 ,76D,16,16,1,0,0,,2121,6121,ff,E_B_FullWiperProtectionInhib ,76D,17,17,1,0,0,,2121,6121,ff,E_B_NeutralAlwaysPres_Inhibit ,76D,18,18,1,0,0,,2121,6121,ff,E_B_NeutralContact_Inhibition ,76D,19,19,1,0,0,,2121,6121,ff,E_B_NeutralNeverPresent_Inhibit ,76D,20,20,1,0,0,,2121,6121,ff,E_B_Nissan_AT_CVT_cf ,76D,21,21,1,0,0,,2121,6121,ff,E_B_OilPressureFailureInhibition ,76D,22,22,1,0,0,,2121,6121,ff,E_B_RearGearFailure_Inhibition ,76D,23,23,1,0,0,,2121,6121,ff,E_B_SafetyLineInhibition ,76D,24,24,1,0,0,,2121,6121,ff,E_B_ACClutchDirectActivation ,76D,25,25,1,0,0,,2121,6121,ff,E_B_WiperAutoStopProtection ,76D,26,26,1,0,0,,2121,6121,ff,E_B_WiperProtectionInhibition ,76D,27,27,1,0,0,,2121,6121,ff,E_B_EnableGatewayMode ,76D,28,28,1,0,0,,2121,6121,ff,E_B_ExternalRelay_Present ,76D,29,29,1,0,0,,2121,6121,ff,E_B_StarterProtectionInhibit ,76D,30,30,1,0,0,,2121,6121,ff,E_B_USM_ST_CUT_ON ,76D,31,31,1,0,0,,2121,6121,ff,E_B_CRBS_present ,76D,32,39,1,0,0,,2121,6121,ff,E_E_FanType,5:dt_ENUMFanType_RELAY_MODE_VLS;0:dt_ENUMFanType_PWM_MODE;1:dt_ENUMFanType_MONO_RELAY_MODE;2:dt_ENUMFanType_DUAL_RELAY_MODE;4:dt_ENUMFanType_TRI_RELAY_MODE;3:dt_ENUMFanType_RELAY_MODE ,76D,40,47,1,0,0,,2121,6121,ff,E_E_GearBoxType,0:dt_ENUMGearBoxType_MANUAL;1:dt_ENUMGearBoxType_AUTOMATIC ,76D,48,55,1,0,0,,2121,6121,ff,E_K_CompType ,76D,56,63,.0001,0,3,,2121,6121,ff,E_R_Harness_1 ,76D,64,71,.0001,0,3,,2121,6121,ff,E_R_Harness_2 ,76D,72,87,1,0,0,ms,2121,6121,ff,E_TM_HighSpeedPeriod_limit_max ,76D,88,95,.1,0,1,,2121,6121,ff,E_TM_IgnDelayTimeOut ,76D,96,111,1,0,0,ms,2121,6121,ff,E_TM_LowSpeedPeriod_limit_max ,76D,112,119,1,0,0,,2121,6121,ff,E_TM_CrankingAntiJumpUSM ,76D,120,127,.01,0,2,sec,2121,6121,ff,E_TM_HornSilentModeDeactivation ,76D,128,135,1,0,0,,2121,6121,ff,E_TM_MaxCrankingECM ,76D,136,143,.005,0,3,,2121,6121,ff,E_TM_TPMS_HornDuration ,76D,144,151,.1,0,1,,2121,6121,ff,E_U_Min_Voltage_HighSpeedWiping ,76D,152,159,.1,0,1,,2121,6121,ff,E_U_Min_Voltage_LowSpeedWiping ,76D,160,167,1,0,0,,2121,6121,ff,E_E_GearBoxType_sty,0:dt_ENUMGearBoxType_MANUAL;1:dt_ENUMGearBoxType_AUTOMATIC ,76D,168,183,1,0,0,,2121,6121,ff,E_Ki_CurrentLowS ,76D,184,199,1,0,0,,2121,6121,ff,E_Ki_CurrentNorm ,76D,200,207,1,0,0,,2121,6121,ff,E_Kp_CurrentLowS ,76D,208,223,1,0,0,,2121,6121,ff,E_Kp_CurrentNorm ,76D,224,239,.1,0,1,,2121,6121,ff,E_Td_CurrentLowS ,76D,240,255,.1,0,1,,2121,6121,ff,E_Td_CurrentNorm ,76D,256,263,.1,0,1,,2121,6121,ff,E_Tau_CurrentConsumedByAux ,76D,264,271,.1,0,1,,2121,6121,ff,E_Tau_PowerConsumedByAux ,76D,272,279,1,0,0,sec,2121,6121,ff,E_TM_HighSpeedWipingProtection ,76D,280,287,1,0,0,sec,2121,6121,ff,E_TM_LowSpeedWipingProtection ,76D,288,295,1,0,0,,2121,6121,ff,E_E_ECUSupplyChoiceforSOF,0:dt_ENUMSupply_ECUSupply1;1:dt_ENUMSupply_ECUSupply2 ,76D,296,303,.1,0,1,sec,2121,6121,ff,E_TM_Cranking_OK ,76D,304,311,1,0,0,,2121,6121,ff,E_E_StarterConfig,3:dt_ENUMStarterConfig_SS_CMD_BY_TWO_WIRES;0:dt_ENUMStarterConfig_NO_SS_CMD;1:dt_ENUMStarterConfig_SS_CMD_BY_SINGLE_WIRE;2:dt_ENUMStarterConfig_SS_CMD_BY_SINGLE_WIRE_AND_CAN ,76D,312,319,1,0,0,,2121,6121,ff,E_TM_MaxCranking ,76D,320,335,.125,0,1,,2121,6121,ff,E_RPM_OilWarningThreshold ,76D,336,336,1,0,0,,2121,6121,ff,E_B_IgnitionHeldWithSpeed ,76D,337,337,1,0,0,,2121,6121,ff,E_B_IgnSecurityByPassEnable ,76D,338,338,1,0,0,,2121,6121,ff,E_B_ESMInhibitionByLights ,76D,339,339,1,0,0,,2121,6121,ff,E_B_HVCharger_present ,76D,340,340,1,0,0,,2121,6121,ff,E_B_MaxVoltageForBoost ,76D,341,341,1,0,0,,2121,6121,ff,E_B_ICE_vehicle ,76D,342,342,1,0,0,,2121,6121,ff,E_B_IVI_Present ,76D,343,343,1,0,0,,2121,6121,ff,E_B_WEPPresence ,76D,344,351,.01,0,2,,2121,6121,ff,E_TM_HornDurationLock ,76D,352,367,.001,0,3,,2121,6121,ff,E_U_MinimumVoltageByLight ,76D,368,375,1,0,0,,2121,6121,ff,E_Pct_UnderVoltage_DF ,76D,376,383,1,0,0,,2121,6121,ff,E_TM_AbsUndervolt ,76D,384,391,1,0,0,,2121,6121,ff,E_TM_Overvolt ,76D,392,399,1,0,0,,2121,6121,ff,E_TM_PWN_Diag_Activation_delay ,76D,400,407,1,0,0,,2121,6121,ff,E_TM_RelUndervolt ,76D,408,415,1,0,0,,2121,6121,ff,E_TM_Syst_Com_Fault_Conf ,76D,416,423,1,0,0,,2121,6121,ff,E_TM_UnderVFaultDetInhibition ,76D,424,431,.1,0,1,,2121,6121,ff,E_U_AbsUnderVoltage_Threshold ,76D,432,439,.1,0,1,,2121,6121,ff,E_U_OverVoltage ,76D,440,447,.1,0,1,,2121,6121,ff,E_U_RelUnderVoltage_offset ,76D,448,455,.1,0,1,,2121,6121,ff,E_U_RelUnderVoltage_Threshold ,76D,456,463,.1,0,1,,2121,6121,ff,E_K_CoefSupplyUocv ,76D,464,471,.1,0,1,,2121,6121,ff,E_K_CoefSupplyVoltage ,76D,472,479,1,0,0,,2121,6121,1ff,E_K_SignConv_1 ,76D,480,487,1,0,0,,2121,6121,1ff,E_K_SignConv_2 ,76D,488,495,1,0,0,,2121,6121,1ff,E_K_SignConv_Gnd ,76D,496,503,.00005,0,3,,2121,6121,ff,E_R_Prim_Storage_Ground ,76D,504,519,.001,0,3,,2121,6121,ff,E_Tau_Prim_Storage_volt_1 ,76D,520,527,.01,0,2,,2121,6121,ff,E_U_ECUSupply1_Offset ,76D,528,535,.01,0,2,,2121,6121,ff,E_U_ECUSupply2_Offset ,76D,536,543,.1,0,1,,2121,6121,ff,E_U_ECUSupplyUocv_Offset ,76D,544,551,.01,0,2,,2121,6121,ff,E_U_OCSignG_Offset ,76D,552,559,.01,0,2,sec,2121,6121,ff,E_TM_FaultVoltMeas_Conf ,76D,560,567,.01,0,2,sec,2121,6121,ff,E_TM_FaultVoltMeas_Det ,76D,568,575,.1,0,1,sec,2121,6121,ff,E_TM_SIGNAL_GND_Conf ,76D,576,583,.1,0,1,sec,2121,6121,ff,E_TM_SIGNAL_GND_Det ,76D,584,591,.1,0,1,,2121,6121,ff,E_U_ECM_min ,76D,592,599,.1,0,1,,2121,6121,ff,E_U_Steer_min ,76D,600,607,1,40,0,,2121,6121,ff,E_Temp_EngineCoolantTemp_init ,76D,608,615,1,40,0,,2121,6121,ff,E_Temp_eq_cond_mem_init ,76D,616,623,1,40,0,,2121,6121,ff,E_Temp_LastEstimationDone_init ,76D,624,631,1,40,0,,2121,6121,ff,E_Temp_Prim_Storage_init ,76D,632,639,.1,0,1,,2121,6121,ff,E_U_AC_min ,76D,640,647,.1,0,1,,2121,6121,ff,E_U_Braking_LHM ,76D,648,655,.1,0,1,,2121,6121,ff,E_U_ECM_maxLHM ,76D,656,663,1,0,0,,2121,6121,ff,E_E_Voltage_Rate_ECM_LHM,0:dt_ENUMVoltageRate_NO_REQUEST;1:dt_ENUMVoltageRate_RATE_1;2:dt_ENUMVoltageRate_RATE_2;3:dt_ENUMVoltageRate_RATE_3;4:dt_ENUMVoltageRate_RATE_4 ,76D,664,671,1,0,0,,2121,6121,ff,E_E_Voltage_Rate_AC_LHM,0:dt_ENUMVoltageRate_NO_REQUEST;1:dt_ENUMVoltageRate_RATE_1;2:dt_ENUMVoltageRate_RATE_2;3:dt_ENUMVoltageRate_RATE_3;4:dt_ENUMVoltageRate_RATE_4 ,76D,672,679,.001,0,3,,2121,6121,ff,E_Kaw_neg ,76D,680,687,.001,0,3,,2121,6121,ff,E_Kaw_pos ,76D,688,695,.02,0,2,,2121,6121,ff,E_Ki_Uprod ,76D,696,703,.02,0,2,,2121,6121,ff,E_Kp_Uprod ,76D,704,711,1,0,0,,2121,6121,ff,E_Pct_Prod_Load_acceptable ,76D,712,719,1,0,0,,2121,6121,ff,E_Pct_Prod_Load_I_hold ,76D,720,727,1,0,0,,2121,6121,ff,E_Pct_Prod_Load_max ,76D,728,735,.1,0,1,,2121,6121,ff,E_Tau_Producer_Load ,76D,736,743,.01,0,2,,2121,6121,ff,E_Tau_Uprod ,76D,744,751,1,0,0,,2121,6121,ff,E_TM_PI_Activation_delay ,76D,752,759,.005,0,3,,2121,6121,ff,E_U_Prod_errorNOK ,76D,760,767,.005,0,3,,2121,6121,ff,E_U_Prod_errorOK ,76D,768,775,.1,0,1,,2121,6121,ff,E_U_Prod_Start ,76D,776,783,.1,0,1,,2121,6121,ff,E_U_Prod_Voltage_min ,76D,784,791,.1,0,1,,2121,6121,ff,E_U_Prod_Voltage_offset ,76D,792,799,.1,0,1,,2121,6121,ff,E_U_Ref_Voltage_desat_min ,76D,800,807,.1,0,1,,2121,6121,ff,E_U_Braking_min ,76D,808,815,.1,0,1,,2121,6121,ff,E_U_BCM_min ,76D,816,823,1,0,0,,2121,6121,ff,E_E_StarterConfig_sty,3:dt_ENUMStarterConfig_SS_CMD_BY_TWO_WIRES;0:dt_ENUMStarterConfig_NO_SS_CMD;1:dt_ENUMStarterConfig_SS_CMD_BY_SINGLE_WIRE;2:dt_ENUMStarterConfig_SS_CMD_BY_SINGLE_WIRE_AND_CAN ,76D,824,831,1,0,0,,2121,6121,ff,E_TM_KeepWipingVoltageTime ,76D,832,863,1,0,0,,2121,6121,1ff,E_K_Coef_G_retro_init ,76D,880,911,.000000001,0,3,,2121,6121,1ff,E_K_AC_Valve_ParamA ,76D,912,943,.000000001,0,3,,2121,6121,1ff,E_K_AC_Valve_ParamB ,76D,944,975,.000000001,0,3,,2121,6121,1ff,E_K_AC_Valve_ParamC ,76D,976,976,1,0,0,,2121,6121,ff,E_B_ClutchPresence ,76D,977,977,1,0,0,,2121,6121,ff,E_B_VADA_Present ,76D,978,978,1,0,0,,2121,6121,ff,E_B_InhibDecoBatt_sty ,76D,979,979,1,0,0,,2121,6121,ff,E_B_InhibDecoBatt_sty_inv ,76D,980,980,1,0,0,,2121,6121,ff,dtc_INH_AC_Valve_OC_SCG ,76D,981,981,1,0,0,,2121,6121,ff,dtc_INH_AC_Valve_SCS ,76D,982,982,1,0,0,,2121,6121,ff,dtc_INH_Auto_Stop_Wiper_Algo ,76D,983,983,1,0,0,,2121,6121,ff,dtc_INH_Auto_Stop_Wiper_SCS_OC ,76D,984,984,1,0,0,,2121,6121,ff,dtc_INH_O_STARTER_OC ,76D,985,985,1,0,0,,2121,6121,ff,dtc_INH_LI_HOOD_SW_OC ,76D,986,986,1,0,0,,2121,6121,ff,dtc_INH_BUS_OFF ,76D,987,987,1,0,0,,2121,6121,ff,dtc_INH_IBS_SOFS ,76D,988,988,1,0,0,,2121,6121,ff,dtc_INH_AC_Clutch_SCG ,76D,989,989,1,0,0,,2121,6121,ff,dtc_INH_AC_Clutch_SCS_OC ,76D,990,990,1,0,0,,2121,6121,ff,dtc_INH_2ND_SIGNAL_GND_OC ,76D,991,991,1,0,0,,2121,6121,ff,dtc_INH_FL_BAT_1_OC_SCG ,76D,992,992,1,0,0,,2121,6121,ff,dtc_INH_CAN_failure_OC ,76D,993,993,1,0,0,,2121,6121,ff,dtc_INH_BATTERY_SD_misconfigured ,76D,994,994,1,0,0,,2121,6121,ff,dtc_INH_BATTERY_SOF ,76D,995,995,1,0,0,,2121,6121,ff,dtc_INH_BATTERY_SD ,76D,996,996,1,0,0,,2121,6121,ff,dtc_INH_BATTERY_BatteryDisconnected ,76D,997,997,1,0,0,,2121,6121,ff,dtc_INH_BATTERY_Battery_Used ,76D,998,998,1,0,0,,2121,6121,ff,dtc_INH_I_HEIGHT_REAR_OC_SCG ,76D,999,999,1,0,0,,2121,6121,ff,dtc_INH_I_HEIGHT_FRONT_SCS ,76D,1000,1000,1,0,0,,2121,6121,ff,dtc_INH_I_HEIGHT_FRONT_Out_Of_Range ,76D,1001,1001,1,0,0,,2121,6121,ff,dtc_INH_I_HEIGHT_FRONT_OC_SCG ,76D,1002,1002,1,0,0,,2121,6121,ff,dtc_INH_I_CURRENT_SENSOR_SCS ,76D,1003,1003,1,0,0,,2121,6121,ff,dtc_INH_I_CURRENT_SENSOR_OC_SCG ,76D,1004,1004,1,0,0,,2121,6121,ff,dtc_INH_I_CURRENT_SENSOR_failure_Internal ,76D,1005,1005,1,0,0,,2121,6121,ff,dtc_INH_IGNITION_misconfigured ,76D,1006,1006,1,0,0,,2121,6121,ff,dtc_INH_Starter_RLY_External_Failure_undervoltage ,76D,1007,1007,1,0,0,,2121,6121,ff,dtc_INH_Starter_RLY_ON_stuck_SignalStuckHigh ,76D,1008,1008,1,0,0,,2121,6121,ff,dtc_INH_FL_BAT_2_OC_SCG ,76D,1009,1009,1,0,0,,2121,6121,ff,dtc_INH_IGN_RLY_ON_STUCK_SCS ,76D,1010,1010,1,0,0,,2121,6121,ff,dtc_INH_IGN_RLY_ON_OFF_STUCK_OC_SCG ,76D,1011,1011,1,0,0,,2121,6121,ff,dtc_INH_I_TEMP_SENSOR_SCS_OC ,76D,1012,1012,1,0,0,,2121,6121,ff,dtc_INH_I_TEMP_SENSOR_SCG ,76D,1013,1013,1,0,0,,2121,6121,ff,dtc_INH_Starter_RLY_External_Failure_OC ,76D,1014,1014,1,0,0,,2121,6121,ff,dtc_INH_I_LIGHT_REVERSE_SW_AlwaysPres ,76D,1015,1015,1,0,0,,2121,6121,ff,dtc_INH_I_HEIGHT_REAR_SCS ,76D,1016,1016,1,0,0,,2121,6121,ff,dtc_INH_I_HEIGHT_REAR_Out_Of_Range ,76D,1017,1017,1,0,0,,2121,6121,ff,dtc_INH_Levellizer_front_sensor_Coherence ,76D,1018,1018,1,0,0,,2121,6121,ff,dtc_INH_Levellizer_Sensor_Initialisation ,76D,1019,1019,1,0,0,,2121,6121,ff,dtc_INH_Levellizer_Bad_Config_Or_not_done ,76D,1020,1020,1,0,0,,2121,6121,ff,dtc_INH_IGNITION_SD ,76D,1021,1021,1,0,0,,2121,6121,ff,dtc_INH_LI_NEUTRAL_SW_AlwysSeen ,76D,1022,1022,1,0,0,,2121,6121,ff,dtc_INH_LI_LED_2_Failure ,76D,1023,1023,1,0,0,,2121,6121,ff,dtc_INH_LI_LED_1_Failure ,76D,1024,1024,1,0,0,,2121,6121,ff,dtc_INH_LI_HOOD_SW_SCS ,76D,1025,1025,1,0,0,,2121,6121,ff,dtc_INH_Levellizer_rear_sensor_Coherence ,76D,1026,1026,1,0,0,,2121,6121,ff,dtc_INH_I_HEIGHT_MANUAL_SCS ,76D,1027,1027,1,0,0,,2121,6121,ff,dtc_INH_I_HEIGHT_MANUAL_OutOfRange ,76D,1028,1028,1,0,0,,2121,6121,ff,dtc_INH_I_HEIGHT_MANUAL_OC_SCG ,76D,1029,1029,1,0,0,,2121,6121,ff,dtc_INH_LIGHTS_misconfigured ,76D,1030,1030,1,0,0,,2121,6121,ff,dtc_INH_LIGHTS_SD ,76D,1031,1031,1,0,0,,2121,6121,ff,dtc_INH_LI_STARTER_SWITCH2_SCS ,76D,1032,1032,1,0,0,,2121,6121,ff,dtc_INH_LI_STARTER_SWITCH1_SCS ,76D,1033,1033,1,0,0,,2121,6121,ff,dtc_INH_O_FUEL_PUMP_SignalStuckLow ,76D,1034,1034,1,0,0,,2121,6121,ff,dtc_INH_LI_OIL_PRESSURE_SW_Algo ,76D,1035,1035,1,0,0,,2121,6121,ff,dtc_INH_O_FUEL_PUMP_SignalStuckHigh ,76D,1036,1036,1,0,0,,2121,6121,ff,dtc_INH_LI_NEUTRAL_SW_NeverSeen ,76D,1037,1037,1,0,0,,2121,6121,ff,dtc_INH_UNDER_VOLTAGE_DTC ,76D,1038,1038,1,0,0,,2121,6121,ff,dtc_INH_OVER_VOLTAGE_DTC ,76D,1039,1039,1,0,0,,2121,6121,ff,dtc_INH_LO_WASHER_SCS ,76D,1040,1040,1,0,0,,2121,6121,ff,dtc_INH_LO_WASHER_SCG_OC ,76D,1041,1041,1,0,0,,2121,6121,ff,dtc_INH_LO_FAN_RELAY2_PWM_SCS ,76D,1042,1042,1,0,0,,2121,6121,ff,dtc_INH_LO_FAN_RELAY2_PWM_SCG_OC ,76D,1043,1043,1,0,0,,2121,6121,ff,dtc_INH_LO_FAN_RELAY1_SCS ,76D,1044,1044,1,0,0,,2121,6121,ff,dtc_INH_LO_FAN_RELAY1_SCG_OC ,76D,1045,1045,1,0,0,,2121,6121,ff,dtc_INH_O_IGN_NOT_COLUMN_LOCK_SCS ,76D,1046,1046,1,0,0,,2121,6121,ff,dtc_INH_O_IGN_NOT_COLUMN_LOCK_SCG ,76D,1047,1047,1,0,0,,2121,6121,ff,dtc_INH_O_HEIGHT_SENSOR_SUPPLY_SCS ,76D,1048,1048,1,0,0,,2121,6121,ff,dtc_INH_O_HEIGHT_SENSOR_SUPPLY_SCG ,76D,1049,1049,1,0,0,,2121,6121,ff,dtc_INH_O_FBL_RH_SCS_OC ,76D,1050,1050,1,0,0,,2121,6121,ff,dtc_INH_O_FBL_RH_SCG ,76D,1051,1051,1,0,0,,2121,6121,ff,dtc_INH_O_FBL_LH_SCS_OC ,76D,1052,1052,1,0,0,,2121,6121,ff,dtc_INH_O_FBL_LH_SCG ,76D,1053,1053,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_DTRL_RH_SCS_OC ,76D,1054,1054,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_DTRL_RH_SCG ,76D,1055,1055,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_CLEARANCE_LH_RH_SCS_OC ,76D,1056,1056,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_CLEARANCE_LH_RH_SCG ,76D,1057,1057,1,0,0,,2121,6121,ff,dtc_INH_O_LEVELIZER_DC_MOTOR_SignalCompare ,76D,1058,1058,1,0,0,,2121,6121,ff,dtc_INH_O_LEVELIZER_DC_MOTOR_SCS ,76D,1059,1059,1,0,0,,2121,6121,ff,dtc_INH_O_LEVELIZER_DC_MOTOR_SCG ,76D,1060,1060,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_HBEAM_LH_SCG ,76D,1061,1061,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_FR_FOG_LAMPS_RH_SCS_OC ,76D,1062,1062,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_FR_FOG_LAMPS_RH_SCG ,76D,1063,1063,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_FR_FOG_LAMPS_LH_SCS_OC ,76D,1064,1064,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_FR_FOG_LAMPS_LH_SCG ,76D,1065,1065,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_DTRL_LH_SCS_OC ,76D,1066,1066,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_DTRL_LH_SCG ,76D,1067,1067,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_HBEAM_LH_SCS_OC ,76D,1068,1068,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_LBEAM_LH_SCG ,76D,1069,1069,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_HBEAM_RH_SCS_OC ,76D,1070,1070,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_HBEAM_RH_SCG ,76D,1071,1071,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_LBEAM_LH_SCS_OC ,76D,1072,1072,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_POSITION_REAR_SCG ,76D,1073,1073,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_LICENCE_PLATE_SCS_OC ,76D,1074,1074,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_LICENCE_PLATE_SCG ,76D,1075,1075,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_LBEAM_RH_SCS_OC ,76D,1076,1076,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_LBEAM_RH_SCG ,76D,1077,1077,1,0,0,,2121,6121,ff,dtc_INH_SS_STARTER_RELAY_OC_SCG ,76D,1078,1078,1,0,0,,2121,6121,ff,dtc_INH_SIGNAL_GND_OC ,76D,1079,1079,1,0,0,,2121,6121,ff,dtc_INH_O_STARTER_misconfigured ,76D,1080,1080,1,0,0,,2121,6121,ff,dtc_INH_O_STARTER_SignalCompare ,76D,1081,1081,1,0,0,,2121,6121,ff,dtc_INH_O_STARTER_SD ,76D,1082,1082,1,0,0,,2121,6121,ff,dtc_INH_O_STARTER_SCS ,76D,1083,1083,1,0,0,,2121,6121,ff,dtc_INH_O_STARTER_SCG ,76D,1084,1084,1,0,0,,2121,6121,ff,dtc_INH_O_LIGHT_POSITION_REAR_SCS_OC ,76D,1085,1085,1,0,0,,2121,6121,ff,dtc_INH_USM_ECU_Not configured ,76D,1086,1086,1,0,0,,2121,6121,ff,dtc_INH_ECU_System_Internal_Failure ,76D,1087,1087,1,0,0,,2121,6121,ff,dtc_INH_TRAILER_RELAY_SCS ,76D,1088,1088,1,0,0,,2121,6121,ff,dtc_INH_TRAILER_RELAY_OC_SCG ,76D,1089,1089,1,0,0,,2121,6121,ff,dtc_INH_Starter_RLY_OFF_stuck_SCG_OC ,76D,1090,1090,1,0,0,,2121,6121,ff,dtc_INH_SS_STARTER_RELAY_SCS ,76D,1091,1091,1,0,0,,2121,6121,ff,dtc_INH_O_ACTUATOR_5_SignalStuckHigh ,76D,1092,1092,1,0,0,,2121,6121,ff,dtc_INH_O_ACTUATOR_5_SignalStuckLow ,76D,1093,1093,1,0,0,,2121,6121,ff,dtc_INH_O_ACTUATOR_ON_SignalStuckHigh ,76D,1094,1094,1,0,0,,2121,6121,ff,dtc_INH_O_ACTUATOR_ON_SignalStuckLow ,76D,1095,1095,1,0,0,,2121,6121,ff,dtc_INH_O_ACTUATOR_ON_UnderVoltage ,76D,1096,1096,1,0,0,,2121,6121,ff,dtc_INH_O_FR_WIPER_SignalStuckHigh ,76D,1097,1097,1,0,0,,2121,6121,ff,dtc_INH_O_FR_WIPER_SignalStuckLow ,76D,1098,1098,1,0,0,,2121,6121,ff,dtc_INH_IBS_Internal_Failure ,76D,1099,1099,1,0,0,,2121,6121,ff,dtc_INH_IBS_LIN_Communiction_fault ,76D,1100,1100,1,0,0,,2121,6121,ff,dtc_INH_IDM_Missing_Frame ,76D,1101,1101,1,0,0,,2121,6121,ff,dtc_INH_VADA_Missing_Frame ,76D,1102,1102,1,0,0,,2121,6121,ff,dtc_INH_MBL_Missing_Frame ,76D,1103,1103,1,0,0,,2121,6121,ff,dtc_INH_METER_Missing_Frame ,76D,1104,1104,1,0,0,,2121,6121,ff,dtc_INH_IVI_Missing_Frame ,76D,1105,1105,1,0,0,,2121,6121,ff,dtc_INH_VDC_Missing_Frame ,76D,1106,1106,1,0,0,,2121,6121,ff,dtc_INH_EPS_Missing_Frame ,76D,1107,1107,1,0,0,,2121,6121,ff,dtc_INH_ECM_Missing_Frame ,76D,1108,1108,1,0,0,,2121,6121,ff,dtc_INH_HEVC_Missing_Frame ,76D,1109,1109,1,0,0,,2121,6121,ff,dtc_INH_AT_Missing_Frame ,76D,1110,1110,1,0,0,,2121,6121,ff,dtc_INH_BCM_Missing_Frame ,76D,1111,1111,1,0,0,,2121,6121,ff,dtc_INH_EBA_Missing_Frame ,76D,1112,1112,1,0,0,,2121,6121,ff,dtc_INH_HVAC_Missing_Frame ,76D,1113,1113,1,0,0,,2121,6121,ff,E_B_IgnitionHeldWithSpeed_sty_inv ,76D,1120,1127,1,0,0,,2121,6121,ff,E_PWM_OFF_value ,76D,1128,1143,.001,0,3,Volt,2121,6121,ff,E_U_FL_STARTER_HIGH_min_thr ,76D,1144,1159,.001,0,3,Volt,2121,6121,ff,E_U_FL_STARTER_LOW_max_thr ,76D,1160,1175,.001,0,3,Volt,2121,6121,ff,E_U_FL_STARTER_MED_max_thr ,76D,1176,1191,.001,0,3,Volt,2121,6121,ff,E_U_FL_STARTER_MED_min_thr ,76D,1192,1199,10,-1,0,ms,2121,6121,ff,E_TM_Nominal_StCut_ON_Delay ,76D,1200,1215,.001,0,3,Volt,2121,6121,ff,E_U_Threshold_A ,76D,1216,1231,.001,0,3,Volt,2121,6121,ff,E_U_Threshold_B ,76D,1232,1247,.001,0,3,Volt,2121,6121,ff,E_U_Threshold_C ,76D,1248,1255,1,0,0,,2121,6121,ff,E_PWM_Default_Max_value ,76D,16,16,1,0,0,,2122,6122,ff,E_B_BattCurrentSensor_present ,76D,17,17,1,0,0,,2122,6122,ff,E_B_BattSens_HighOutDiag ,76D,18,18,1,0,0,,2122,6122,ff,E_B_BattSens_LowOutDiag ,76D,19,19,1,0,0,,2122,6122,ff,E_B_BattSens_MedStickDiag ,76D,20,20,1,0,0,,2122,6122,ff,E_B_BattSens_ProdCurrDiag ,76D,21,21,1,0,0,,2122,6122,ff,E_B_BattSens_VoltCurrDiag ,76D,22,22,1,0,0,,2122,6122,ff,E_B_BattTempSensor_present ,76D,23,23,1,0,0,,2122,6122,ff,E_B_Deliv_Inhibit ,76D,24,24,1,0,0,,2122,6122,ff,E_B_SOCAuthorizedESM_init ,76D,25,25,1,0,0,,2122,6122,ff,E_B_Prim_Stor_CurrSens_presnt ,76D,26,26,1,0,0,,2122,6122,ff,E_B_SOCforDOD_ESM_init ,76D,27,27,1,0,0,,2122,6122,ff,E_B_InhibitEEMinDelivery ,76D,28,28,1,0,0,,2122,6122,ff,E_B_InhibitSailinginDelivery ,76D,29,29,1,0,0,,2122,6122,ff,E_B_InhibitSSinDelivery ,76D,30,30,1,0,0,,2122,6122,ff,E_B_LOB_Lim_Inhibit ,76D,31,31,1,0,0,,2122,6122,ff,E_B_MMI_LOB_Inhibit ,76D,32,32,1,0,0,,2122,6122,ff,E_B_MMILowBattCustom_Activ ,76D,33,33,1,0,0,,2122,6122,ff,E_B_MMILowBattDeliv_Activ ,76D,34,34,1,0,0,,2122,6122,ff,E_B_PrimStorDisconnect_inhibit ,76D,35,35,1,0,0,,2122,6122,ff,E_B_Prod_Fail_Inhibit ,76D,36,36,1,0,0,,2122,6122,ff,E_B_RebalCurrentCond_Inhibit ,76D,37,37,1,0,0,,2122,6122,ff,E_B_SailingIdle_Inhibit ,76D,38,38,1,0,0,,2122,6122,ff,E_B_SOFS_Inhibition ,76D,39,39,1,0,0,,2122,6122,ff,E_B_STOPSTARTInhibit ,76D,40,40,1,0,0,,2122,6122,ff,E_B_Storages_Fail_Inhibit ,76D,41,41,1,0,0,,2122,6122,ff,E_B_TempSens_HighOutDiag ,76D,42,42,1,0,0,,2122,6122,ff,E_B_TempSens_LowOutDiag ,76D,43,43,1,0,0,,2122,6122,ff,E_B_Vehicle_with_IBS ,76D,44,44,1,0,0,,2122,6122,ff,E_B_SOCforDOD_SS_init ,76D,45,45,1,0,0,,2122,6122,ff,E_B_FloatingSOC_from_Current ,76D,46,46,1,0,0,,2122,6122,ff,E_B_SensSupplyCor_Inhibit ,76D,47,47,1,0,0,,2122,6122,ff,E_B_FloatingInhibit ,76D,48,55,1,0,0,,2122,6122,ff,E_E_Overvoltage_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,56,63,1,0,0,,2122,6122,ff,E_E_Prim_current_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,64,71,1,0,0,,2122,6122,ff,E_E_PrimStorDisco_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,72,79,1,0,0,,2122,6122,ff,E_E_Ref_VoltageMes_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,80,87,1,0,0,,2122,6122,ff,E_E_Sys_Com_Fault_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,88,95,1,0,0,,2122,6122,ff,E_E_Undervoltage_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,96,103,1,0,0,,2122,6122,ff,E_Pct_MaxProdLoad_SailingIdle ,76D,104,111,.1,0,1,,2122,6122,ff,E_Pct_SOCAuthorizedESM_hyst ,76D,112,119,1,0,0,,2122,6122,ff,E_I_CurrentStop_max ,76D,120,127,1,0,0,,2122,6122,ff,E_Pct_DOD_ESM_inhibit ,76D,128,135,1,0,0,,2122,6122,ff,E_Pct_DOD_SS_inhibit ,76D,136,143,1,0,0,,2122,6122,ff,E_Pct_ChargeAcceptSOC ,76D,144,151,1,0,0,,2122,6122,ff,E_Pct_VT_Gauge_LOB ,76D,152,159,1,0,0,,2122,6122,ff,E_Pct_FloatingSOCHigh ,76D,160,167,.1,0,1,Volt,2122,6122,ff,E_U_ChargeAcceptVolt ,76D,168,175,1,0,0,,2122,6122,ff,E_Pct_SOCAuthorizedESM_min ,76D,176,183,.1,0,1,,2122,6122,ff,E_Pct_SOCforDOD_ESM_hyst ,76D,184,191,.5,0,1,,2122,6122,ff,E_Pct_SOCforDOD_ESM_min ,76D,192,199,.1,0,1,,2122,6122,ff,E_Pct_SOCforDOD_SS_hyst ,76D,200,215,.1,0,1,,2122,6122,ff,E_I_BCS_current_offset ,76D,216,231,.1,0,1,,2122,6122,1ff,E_I_Prim_VoltCurrDiag_thd ,76D,232,239,1,0,0,,2122,6122,ff,E_I_ProdCurr_offset ,76D,240,255,.00025,0,3,,2122,6122,ff,E_K_BCS_current_slope_coef ,76D,256,263,.01,0,2,sec,2122,6122,ff,E_Tau_BCS_current_filter ,76D,264,279,1,0,0,sec,2122,6122,ff,E_TM_HighOutputDiag_conf ,76D,280,295,1,0,0,sec,2122,6122,ff,E_TM_InconsistentDiag_conf ,76D,296,311,1,0,0,sec,2122,6122,ff,E_TM_LowOutputDiag_conf ,76D,312,327,1,0,0,sec,2122,6122,ff,E_TM_MedStickDiag_conf_long ,76D,328,343,1,0,0,sec,2122,6122,ff,E_TM_MedStickDiag_conf_short ,76D,344,359,10,0,0,,2122,6122,ff,E_U_BattSens_high_func_limit ,76D,360,375,10,0,0,,2122,6122,ff,E_U_BattSens_high_limit ,76D,376,391,10,0,0,,2122,6122,ff,E_U_BattSens_low_func_limit ,76D,392,407,10,0,0,,2122,6122,ff,E_U_BattSens_low_limit ,76D,408,415,.1,0,1,,2122,6122,ff,E_U_BattThresCurrSensDgn ,76D,416,431,1,0,0,mVolt,2122,6122,ff,E_U_MedStickDiag_threshold ,76D,432,439,.025,-468,2,,2122,6122,ff,E_U_Prod_VoltCurrDiag_thd ,76D,440,447,.1,0,1,,2122,6122,ff,E_U_Stor_VoltCurrDiag_thd ,76D,448,455,.01,0,2,,2122,6122,ff,E_TM_SOFS_init ,76D,456,471,.04,0,2,,2122,6122,ff,E1d_R_SOFS_level1_thd 0 ,76D,472,487,.04,0,2,,2122,6122,ff,E1d_R_SOFS_level1_thd 1 ,76D,488,503,.04,0,2,,2122,6122,ff,E1d_R_SOFS_level1_thd 2 ,76D,504,519,.04,0,2,,2122,6122,ff,E1d_R_SOFS_level1_thd 3 ,76D,520,535,.04,0,2,,2122,6122,ff,E1d_R_SOFS_level1_thd 4 ,76D,536,551,.04,0,2,,2122,6122,ff,E1d_R_SOFS_level2_thd 0 ,76D,552,567,.04,0,2,,2122,6122,ff,E1d_R_SOFS_level2_thd 1 ,76D,568,583,.04,0,2,,2122,6122,ff,E1d_R_SOFS_level2_thd 2 ,76D,584,599,.04,0,2,,2122,6122,ff,E1d_R_SOFS_level2_thd 3 ,76D,600,615,.04,0,2,,2122,6122,ff,E1d_R_SOFS_level2_thd 4 ,76D,616,623,1,40,0,,2122,6122,ff,E1d_Temp_SOFS_level1_thd 0 ,76D,624,631,1,40,0,,2122,6122,ff,E1d_Temp_SOFS_level1_thd 1 ,76D,632,639,1,40,0,,2122,6122,ff,E1d_Temp_SOFS_level1_thd 2 ,76D,640,647,1,40,0,,2122,6122,ff,E1d_Temp_SOFS_level1_thd 3 ,76D,648,655,1,40,0,,2122,6122,ff,E1d_Temp_SOFS_level1_thd 4 ,76D,656,663,1,40,0,,2122,6122,ff,E1d_Temp_SOFS_level2_thd 0 ,76D,664,671,1,40,0,,2122,6122,ff,E1d_Temp_SOFS_level2_thd 1 ,76D,672,679,1,40,0,,2122,6122,ff,E1d_Temp_SOFS_level2_thd 2 ,76D,680,687,1,40,0,,2122,6122,ff,E1d_Temp_SOFS_level2_thd 3 ,76D,688,695,1,40,0,,2122,6122,ff,E1d_Temp_SOFS_level2_thd 4 ,76D,696,703,.5,0,1,,2122,6122,ff,E_Pct_SOCforDOD_SS_min ,76D,704,711,.5,0,1,%,2122,6122,ff,E_Pct_SOCmin_SailingIdle ,76D,712,719,1,40,0,,2122,6122,ff,E_Temp_Prim_Stor_SailingIdle ,76D,720,727,1,40,0,,2122,6122,ff,E_Temp_Prim_Stor_StopStart ,76D,728,735,1,40,0,,2122,6122,ff,E_Temp_Prim_Storage_min ,76D,736,743,1,0,0,,2122,6122,ff,E_TM_CurrentStop_max ,76D,744,751,1,0,0,,2122,6122,ff,E_TM_MaxProdLoad_SailingIdle ,76D,752,767,.1,0,1,,2122,6122,ff,E1d_Pct_DOD_ESM_X 0 ,76D,768,783,.1,0,1,,2122,6122,ff,E1d_Pct_DOD_ESM_X 1 ,76D,784,791,.1,0,1,,2122,6122,ff,E1d_Pct_DOD_ESM_Y 0 ,76D,792,799,.1,0,1,,2122,6122,ff,E1d_Pct_DOD_ESM_Y 1 ,76D,800,807,.5,0,1,,2122,6122,ff,E1d_Pct_DOD_SS_X 0 ,76D,808,815,.5,0,1,,2122,6122,ff,E1d_Pct_DOD_SS_X 1 ,76D,816,823,.1,0,1,,2122,6122,ff,E1d_Pct_DOD_SS_Y 0 ,76D,824,831,.1,0,1,,2122,6122,ff,E1d_Pct_DOD_SS_Y 1 ,76D,832,839,1,0,0,,2122,6122,ff,E_Pct_SOC_LOB ,76D,840,855,1,0,0,,2122,6122,ff,E_TM_LOB_Authorized_Max ,76D,856,871,1,0,0,,2122,6122,ff,E_TM_LOB_Authorized_Min ,76D,872,879,1,0,0,,2122,6122,ff,E_TM_LOB_LIM_delay ,76D,880,895,1,0,0,,2122,6122,ff,E_TM_MMI_LOB_Duration ,76D,896,903,.1,0,1,,2122,6122,ff,E_U_Voltage_LOB_Threshold ,76D,904,911,.01,0,2,,2122,6122,ff,E_TM_Offset_time ,76D,912,919,1,0,0,,2122,6122,ff,E_TM_PrimStorDiscDetect ,76D,920,935,1,0,0,,2122,6122,ff,E_U_MedSticking_max ,76D,936,951,1,0,0,,2122,6122,ff,E_U_MedSticking_min ,76D,952,967,1,0,0,,2122,6122,ff,E_U_PrimStorSensorVariation ,76D,968,975,.025,0,2,,2122,6122,1ff,E_U_Prod_Req_Offset_1 ,76D,976,983,.025,0,2,,2122,6122,1ff,E_U_Prod_Req_Offset_2 ,76D,984,991,.025,0,2,,2122,6122,1ff,E_U_Prod_Req_Offset_3 ,76D,992,999,.025,0,2,,2122,6122,1ff,E_U_Prod_Req_Offset_4 ,76D,1000,1031,1,0,0,,2122,6122,4ff,E_I_StorageIBS_ini ,76D,1032,1039,1,0,0,,2122,6122,ff,E_K_StorageID ,76D,1040,1055,.04,0,2,,2122,6122,ff,E_R_StorageIBS_ini ,76D,1056,1063,1,40,0,sec,2122,6122,ff,E_Temp_StorageIBS_ini ,76D,1064,1071,.01,0,2,sec,2122,6122,ff,E_TM_LINIBS_initialization ,76D,1072,1087,.01,0,2,sec,2122,6122,ff,E_TM_TempHighOutDiag_conf ,76D,1088,1103,.01,0,2,sec,2122,6122,ff,E_TM_TempLowOutDiag_conf ,76D,1104,1111,.1,0,1,,2122,6122,ff,E_U_BattThresTempSensDgn ,76D,1112,1127,10,0,0,,2122,6122,ff,E_U_TempSens_high_limit ,76D,1128,1143,10,0,0,,2122,6122,ff,E_U_TempSens_low_limit ,76D,1144,1151,.1,0,1,,2122,6122,ff,E_U_Prod_StorageDisc ,76D,1152,1159,1,0,0,,2122,6122,ff,E_K_SOFC_Counter_Decrement_max ,76D,1160,1167,1,0,0,,2122,6122,ff,E_K_SOFC_Counter_Decrement_min ,76D,1168,1175,1,0,0,,2122,6122,ff,E_K_SOFC_Counter_max ,76D,1176,1183,1,0,0,,2122,6122,ff,E_K_SOFC_Counter_min ,76D,1184,1191,1,0,0,,2122,6122,ff,E_Pct_SOCminforSOFC ,76D,1192,1199,1,40,0,,2122,6122,ff,E_Temp_TempminforSOFC ,76D,1200,1207,.05,0,2,,2122,6122,ff,E_U_SOFC_AutoStartOffset ,76D,1208,1215,1,40,0,,2122,6122,ff,E1d_Temp_SOFC_Threshold 0 ,76D,1216,1223,1,40,0,,2122,6122,ff,E1d_Temp_SOFC_Threshold 1 ,76D,1224,1231,1,40,0,,2122,6122,ff,E1d_Temp_SOFC_Threshold 2 ,76D,1232,1239,1,40,0,,2122,6122,ff,E1d_Temp_SOFC_Threshold 3 ,76D,1240,1247,1,40,0,,2122,6122,ff,E1d_Temp_SOFC_Threshold 4 ,76D,1248,1255,1,40,0,,2122,6122,ff,E1d_Temp_SOFC_Threshold 5 ,76D,1256,1271,.01,0,2,,2122,6122,ff,E1d_U_SOFC_Threshold 0 ,76D,1272,1287,.01,0,2,,2122,6122,ff,E1d_U_SOFC_Threshold 1 ,76D,1288,1303,.01,0,2,,2122,6122,ff,E1d_U_SOFC_Threshold 2 ,76D,1304,1319,.01,0,2,,2122,6122,ff,E1d_U_SOFC_Threshold 3 ,76D,1320,1335,.01,0,2,,2122,6122,ff,E1d_U_SOFC_Threshold 4 ,76D,1336,1351,.01,0,2,,2122,6122,ff,E1d_U_SOFC_Threshold 5 ,76D,1352,1359,1,0,0,,2122,6122,ff,E_Pct_FloatingSOCLow ,76D,1360,1367,.1,0,1,,2122,6122,ff,E_dU_ESM_min_neg_rate ,76D,1368,1375,.1,0,1,,2122,6122,ff,E_dU_ESM_min_pos_rate ,76D,1376,1383,.1,0,1,,2122,6122,ff,E_dU_ESM_neg_rate ,76D,1384,1391,.1,0,1,,2122,6122,ff,E_dU_ESM_pos_frozen_rate ,76D,1392,1399,.1,0,1,,2122,6122,ff,E_dU_ESM_pos_limit_rate ,76D,1400,1407,.1,0,1,,2122,6122,ff,E_dU_ESM_pos_rate ,76D,1408,1415,.1,0,1,,2122,6122,ff,E_dU_EV_Charge_rate ,76D,1416,1423,.1,0,1,,2122,6122,ff,E_dU_ExtraFeeding_rate ,76D,1424,1431,.1,0,1,,2122,6122,ff,E_dU_Floating_rate ,76D,1432,1439,.1,0,1,,2122,6122,ff,E_dU_Nominal_rate ,76D,1440,1447,.1,0,1,,2122,6122,ff,E_dU_Rate0_by_AC ,76D,1448,1455,.1,0,1,,2122,6122,ff,E_dU_Rate0_by_BCM ,76D,1456,1463,.1,0,1,,2122,6122,ff,E_dU_Rate0_by_ECM ,76D,1464,1471,.1,0,1,,2122,6122,ff,E_dU_Rate1_by_AC ,76D,1472,1479,.1,0,1,,2122,6122,ff,E_dU_Rate1_by_BCM ,76D,1480,1487,.1,0,1,,2122,6122,ff,E_dU_Rate1_by_ECM ,76D,1488,1495,.1,0,1,,2122,6122,ff,E_dU_Rate2_by_AC ,76D,1496,1503,.1,0,1,,2122,6122,ff,E_dU_Rate2_by_BCM ,76D,1504,1511,.1,0,1,,2122,6122,ff,E_dU_Rate2_by_ECM ,76D,1512,1519,.1,0,1,,2122,6122,ff,E_dU_Rate3_by_AC ,76D,1520,1527,.1,0,1,,2122,6122,ff,E_dU_Rate3_by_BCM ,76D,1528,1535,.1,0,1,,2122,6122,ff,E_dU_Rate3_by_ECM ,76D,1536,1543,.1,0,1,,2122,6122,ff,E_dU_Rate4_by_ECM ,76D,1544,1551,1,0,0,,2122,6122,ff,E_I_Prim_Storage_max ,76D,1552,1559,1,0,0,,2122,6122,ff,E_K_JaugeMin_Lights ,76D,1560,1567,1,0,0,,2122,6122,ff,E_K_Sys_Opti_Volt_Level_hi ,76D,1568,1575,1,0,0,,2122,6122,ff,E_K_Sys_Opti_Volt_Level_lo ,76D,1576,1583,1,40,0,,2122,6122,ff,E_Temp_BattMin_Lights ,76D,1584,1591,1,40,0,,2122,6122,ff,E_Temp_EngineMin_Lights ,76D,1592,1599,1,40,0,,2122,6122,ff,E_Temp_FloatingInhibit ,76D,1600,1607,1,0,0,,2122,6122,ff,E_Temp_Zcurve_high ,76D,1608,1615,1,0,0,,2122,6122,1ff,E_Temp_Zcurve_low ,76D,1616,1623,60,0,0,,2122,6122,ff,E_TM_EV_Charge_running ,76D,1624,1631,1,0,0,,2122,6122,ff,E_TM_IdleSpeedInhibition ,76D,1632,1639,15,0,0,,2122,6122,ff,E_TM_NoLightLimitation ,76D,1640,1647,1,0,0,,2122,6122,ff,E_TM_RVS_Activation_delay ,76D,1648,1655,.1,0,1,,2122,6122,ff,E_U_ESM_min ,76D,1656,1663,.1,0,1,,2122,6122,ff,E_U_ESM_OptimumVoltage_init ,76D,1664,1671,.1,0,1,,2122,6122,ff,E_U_ESM_step ,76D,1672,1679,.1,0,1,,2122,6122,ff,E_U_EV_Charge ,76D,1680,1687,.1,0,1,,2122,6122,ff,E_U_EV_Charge_regen ,76D,1688,1695,.1,0,1,,2122,6122,ff,E_U_ExtraFeeding_Customer ,76D,1696,1703,.1,0,1,,2122,6122,ff,E_U_ExtraFeeding_Delivery ,76D,1704,1711,.1,0,1,,2122,6122,ff,E_U_Floating ,76D,1712,1719,.1,0,1,,2122,6122,ff,E_U_max_by_Lights ,76D,1720,1727,.1,0,1,,2122,6122,ff,E_U_OCVForOffset_MAX ,76D,1728,1735,.1,0,1,,2122,6122,ff,E_U_OCVForOffset_MIN ,76D,1736,1743,.1,0,1,,2122,6122,ff,E_U_OffsetMAX ,76D,1744,1751,.1,0,1,,2122,6122,ff,E_U_OffsetMIN ,76D,1752,1759,.1,0,1,,2122,6122,ff,E_U_OptiVoltNoDischarge ,76D,1760,1767,.1,0,1,,2122,6122,ff,E_U_Prim_Storage_Ps100Pct ,76D,1768,1775,.1,0,1,,2122,6122,ff,E_U_Storage_Zcurve_MAX ,76D,1776,1783,.1,0,1,,2122,6122,ff,E_U_Storage_Zcurve_MIN ,76D,1784,1791,.1,0,1,,2122,6122,ff,E_U_VoltageNetwork_max ,76D,1792,1799,.1,0,1,,2122,6122,ff,E_U_VoltageNetwork_min ,76D,1800,1807,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_130 0 ,76D,1808,1815,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_130 1 ,76D,1816,1823,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_130 2 ,76D,1824,1831,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_130 3 ,76D,1832,1839,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_130 4 ,76D,1840,1847,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_130 5 ,76D,1848,1855,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_130 6 ,76D,1856,1863,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_130 7 ,76D,1864,1871,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_135 0 ,76D,1872,1879,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_135 1 ,76D,1880,1887,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_135 2 ,76D,1888,1895,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_135 3 ,76D,1896,1903,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_135 4 ,76D,1904,1911,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_135 5 ,76D,1912,1919,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_135 6 ,76D,1920,1927,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_135 7 ,76D,1928,1935,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_140 0 ,76D,1936,1943,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_140 1 ,76D,1944,1951,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_140 2 ,76D,1952,1959,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_140 3 ,76D,1960,1967,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_140 4 ,76D,1968,1975,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_140 5 ,76D,1976,1983,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_140 6 ,76D,1984,1991,.5,0,1,,2122,6122,ff,E1d_Pct_SOCinterESM_140 7 ,76D,1992,1999,.5,0,1,,2122,6122,ff,E_I_O_FR_WIPER_LO_Comp ,76D,2000,2007,.5,0,1,,2122,6122,ff,E_I_O_FR_WIPER_HI_Comp ,76D,2008,2015,.5,0,1,,2122,6122,ff,E_I_O_AC_CLUTCH_Comp ,76D,2016,2023,.5,0,1,,2122,6122,ff,E_I_BATT2_Comp ,76D,2024,2031,.5,0,1,,2122,6122,ff,E_I_O_WATER_PUMP_Comp ,76D,16,23,1,0,0,,2124,6124,ff,E_E_Prim_Storage_Position,0:dt_ENUMPrim_Storage_Position_UNDERHOOD;1:dt_ENUMPrim_Storage_Position_CABIN ,76D,24,31,.01,0,2,,2124,6124,ff,E_K_High_limit_max ,76D,32,39,.01,0,2,,2124,6124,ff,E_K_High_limit_min ,76D,40,47,.01,0,2,,2124,6124,ff,E_K_Low_limit_max ,76D,48,55,.01,0,2,,2124,6124,ff,E_K_Low_limit_min ,76D,56,63,1,0,0,,2124,6124,ff,E_K_TempGradientMax ,76D,64,71,1,0,0,,2124,6124,ff,E_PWM_EngineFanSpeed_Min ,76D,72,87,.01,0,2,,2124,6124,ff,E_S_DefaultVehicleSpeed_high ,76D,88,103,.01,0,2,,2124,6124,ff,E_S_mCHTRVSP ,76D,104,111,1,0,0,,2124,6124,ff,E_S_veh_limit_max ,76D,112,119,1,0,0,,2124,6124,ff,E_S_veh_limit_min ,76D,120,135,1,0,0,,2124,6124,ff,E_Tau_Engine ,76D,136,151,1,0,0,,2124,6124,ff,E_Tau_NoTempSens_high ,76D,152,167,1,0,0,,2124,6124,ff,E_Tau_NoTempSens_low ,76D,168,183,1,0,0,,2124,6124,ff,E_Tau_NoTempSens_mid ,76D,184,199,1,0,0,,2124,6124,ff,E_Tau_TempSens_high ,76D,200,215,1,0,0,,2124,6124,ff,E_Tau_TempSens_low ,76D,216,231,1,0,0,,2124,6124,ff,E_Tau_TempSens_mid ,76D,232,239,1,40,0,,2124,6124,ff,E_Temp_DefaultEngineCoolTemp ,76D,240,247,1,40,0,,2124,6124,ff,E_Temp_Eq_ext_limit_max ,76D,248,255,1,40,0,,2124,6124,ff,E_Temp_Eq_ext_limit_min ,76D,256,263,.5,100,1,,2124,6124,ff,E_Temp_mNPOFS ,76D,264,271,1,40,0,,2124,6124,ff,E_Temp_StorageIBS_ivld ,76D,272,303,1,0,0,,2124,6124,4ff,E_TM_EngineCoolTemp_invalid ,76D,304,335,1,0,0,,2124,6124,4ff,E_TM_LongParkingTime ,76D,336,351,.01,0,2,,2124,6124,ff,E_TM_PrimStorTempActiv_delay ,76D,352,352,1,0,0,,2124,6124,ff,E_B_ExtraFeeding_1_inhibit ,76D,353,353,1,0,0,,2124,6124,ff,E_B_ExtraFeeding_2_inhibit ,76D,354,354,1,0,0,,2124,6124,ff,E_B_RegenCurr_inhibit ,76D,355,355,1,0,0,,2124,6124,ff,E_B_SOFC_ChargeReq_inhibit ,76D,356,356,1,0,0,,2124,6124,ff,E_B_SOFD_inhibit ,76D,357,357,1,0,0,,2124,6124,ff,E_B_UnderEst_Gauge_Inhibit ,76D,358,358,1,0,0,,2124,6124,ff,E_B_ESMInhibit ,76D,359,359,1,0,0,,2124,6124,ff,E_B_AutoStart_HV ,76D,360,367,10,0,0,,2124,6124,ff,E_I_PrimStor_NominalCCA ,76D,368,383,.0001,0,3,,2124,6124,ff,E_I_PrimStorage_DarkCurrent ,76D,384,399,1,0,0,,2124,6124,1ff,E_I_PrimStorageFilt_init ,76D,400,415,.01,0,2,,2124,6124,ff,E_K_CoeffC ,76D,416,431,.01,0,2,,2124,6124,ff,E_K_CoeffCorrTemp ,76D,432,463,1,0,0,,2124,6124,4ff,E_K_MaxAhForRebalancing ,76D,464,471,10,0,0,,2124,6124,ff,E_K_OldPrimStor_AhThreshold ,76D,472,479,1,0,0,,2124,6124,ff,E_K_PrimStor_NominalCapacity ,76D,480,487,1,0,0,,2124,6124,ff,E_K_TechnicalWUChargerDetect ,76D,488,503,.1,0,1,,2124,6124,ff,E_Pct_OverEstAlertPct ,76D,504,511,1,0,0,,2124,6124,ff,E_Pct_RebalancingFinalSOC ,76D,512,519,1,0,0,,2124,6124,ff,E_Pct_RegenCurr_Load_thd ,76D,520,527,.1,0,1,,2124,6124,ff,E_Pct_Prim_RegenCurr_SOC_offset ,76D,528,535,1,0,0,,2124,6124,ff,E_Pct_Prim_RegenCurr_SOC_thd ,76D,536,543,1,0,0,,2124,6124,ff,E_Pct_SOCafterCharger ,76D,544,551,.5,0,1,,2124,6124,ff,E_Pct_SOCCurrent_limp ,76D,552,559,1,0,0,,2124,6124,ff,E_Pct_Underest_OverLoad_max ,76D,560,575,.1,0,1,,2124,6124,ff,E_Pct_Prim_UnderestSOC_high ,76D,576,583,1,0,0,,2124,6124,ff,E_Pct_VeryPolarizedSOC ,76D,584,591,.1,0,1,,2124,6124,ff,E_Tau_IPrimStorRebalancingFlt ,76D,592,599,.1,0,1,,2124,6124,ff,E_Tau_UPrimStorRebalancingFlt ,76D,600,607,1,40,0,,2124,6124,ff,E_Temp_PrimStorage_Alert ,76D,608,615,1,40,0,,2124,6124,ff,E_Temp_RebalancingTempMax ,76D,616,623,1,40,0,,2124,6124,ff,E_Temp_RebalancingTempMin ,76D,624,631,1,40,0,,2124,6124,ff,E_Temp_Ref ,76D,632,639,1,40,0,,2124,6124,ff,E_Temp_Prim_RegenCurr_thd ,76D,640,655,1,0,0,,2124,6124,ff,E_TM_12VProducerOFF_thd ,76D,656,663,.01,0,2,,2124,6124,ff,E_TM_ChgReq_ResetDelay ,76D,664,679,1,0,0,,2124,6124,ff,E_TM_ExtraFeeding_1_Conseq_thd ,76D,680,695,1,0,0,,2124,6124,ff,E_TM_ExtraFeeding_2_Accum_thd ,76D,696,711,1,0,0,,2124,6124,ff,E_TM_ExtraFeeding_2_Conseq_thd ,76D,712,719,1,0,0,,2124,6124,ff,E_TM_ExtraFeedingReq_timeout ,76D,720,727,.1,0,1,,2124,6124,ff,E_TM_LimitTime_CustomerConf ,76D,728,743,1,0,0,,2124,6124,ff,E_TM_NoExtraFeedingDuration_thd ,76D,744,751,1,0,0,,2124,6124,ff,E_TM_OverEstAlert_Conf ,76D,752,759,.01,0,2,,2124,6124,ff,E_TM_PrimStorageGaugeActiv ,76D,760,775,.1,0,1,,2124,6124,ff,E_TM_RebalancingCurrentCond ,76D,776,791,1,0,0,,2124,6124,ff,E_TM_RebalancingMaxDuration ,76D,792,807,.1,0,1,,2124,6124,ff,E_TM_RebalancingTime ,76D,808,839,1,0,0,,2124,6124,4ff,E_TM_RefreshTime ,76D,840,847,.1,0,1,,2124,6124,ff,E_TM_RegenConfirm_thd ,76D,848,855,.1,0,1,,2124,6124,ff,E_TM_RegenCurr_delay ,76D,856,871,30,0,0,,2124,6124,ff,E_TM_SOCInitTime_OldPrimStor ,76D,872,879,10,0,0,,2124,6124,ff,E_TM_SOCInitTime_YoungPrimStor ,76D,880,887,.1,0,1,,2124,6124,ff,E_U_ChargerDetect ,76D,888,903,.001,0,3,,2124,6124,ff,E_U_CoeffD ,76D,904,911,.1,0,1,,2124,6124,ff,E_U_ExtraFeeding_NoLoad_custom ,76D,912,919,.1,0,1,,2124,6124,ff,E_U_ExtraFeeding_NoLoad_deliv ,76D,920,927,.1,0,1,,2124,6124,ff,E_U_PrimStorageFilt_init ,76D,928,943,.01,0,2,,2124,6124,ff,E_U_PrimStorStartingThreshold ,76D,944,959,.01,0,2,,2124,6124,ff,E_U_RebalancingVoltageMax ,76D,960,975,.01,0,2,,2124,6124,ff,E_U_RebalancingVoltageMin ,76D,976,983,.1,0,1,,2124,6124,ff,E_U_RegenCurr_high_thd ,76D,984,991,.1,0,1,,2124,6124,ff,E_U_RegenCurr_low_thd ,76D,992,1007,.01,0,2,,2124,6124,ff,E_U_VeryPolarizedOCV_threshold ,76D,1008,1015,.1,0,1,,2124,6124,ff,E_U_WellCharged ,76D,1016,1031,.01,0,2,,2124,6124,ff,E_U_SOFD_threshold ,76D,1032,1039,1,0,0,,2124,6124,ff,E_Pct_VT_Gauge_MMI_threshold ,76D,1040,1055,1,0,0,,2124,6124,ff,E_TM_TimeMinForAdvice ,76D,1056,1071,1,0,0,,2124,6124,ff,E_TM_WaitAfterCECM_Alert ,76D,1072,1087,1,0,0,,2124,6124,ff,E_TM_WaitCustomerMode ,76D,1088,1103,1,0,0,,2124,6124,ff,E_TM_WaitDeliveryMode ,76D,1104,1111,.1,0,1,,2124,6124,ff,E_U_NoCharge ,76D,1112,1119,1,0,0,,2124,6124,ff,E1d_I_Prim_RegenCurr 0 ,76D,1120,1127,1,0,0,,2124,6124,ff,E1d_I_Prim_RegenCurr 1 ,76D,1128,1135,1,0,0,,2124,6124,ff,E1d_I_Prim_RegenCurr 2 ,76D,1136,1143,1,0,0,,2124,6124,ff,E1d_I_Prim_RegenCurr 3 ,76D,1144,1151,1,0,0,,2124,6124,ff,E1d_I_Prim_RegenCurr 4 ,76D,1152,1159,.1,0,1,,2124,6124,ff,E1d_I_RebalancingMaxCurrent 0 ,76D,1160,1167,.1,0,1,,2124,6124,ff,E1d_I_RebalancingMaxCurrent 1 ,76D,1168,1175,.1,0,1,,2124,6124,ff,E1d_I_RebalancingMaxCurrent 2 ,76D,1176,1183,.1,0,1,,2124,6124,ff,E1d_I_RebalancingMaxCurrent 3 ,76D,1184,1191,.1,0,1,,2124,6124,ff,E1d_I_RebalancingMaxCurrent 4 ,76D,1192,1199,1,0,0,,2124,6124,ff,E1d_I_Prim_UnderestCurr_high 0 ,76D,1200,1207,1,0,0,,2124,6124,ff,E1d_I_Prim_UnderestCurr_high 1 ,76D,1208,1215,1,0,0,,2124,6124,ff,E1d_I_Prim_UnderestCurr_high 2 ,76D,1216,1223,1,0,0,,2124,6124,ff,E1d_I_Prim_UnderestCurr_high 3 ,76D,1224,1231,1,0,0,,2124,6124,ff,E1d_I_Prim_UnderestCurr_high 4 ,76D,1232,1239,.1,0,1,,2124,6124,ff,E1d_I_Prim_UnderestCurr_low 0 ,76D,1240,1247,.1,0,1,,2124,6124,ff,E1d_I_Prim_UnderestCurr_low 1 ,76D,1248,1255,.1,0,1,,2124,6124,ff,E1d_I_Prim_UnderestCurr_low 2 ,76D,1256,1263,.1,0,1,,2124,6124,ff,E1d_I_Prim_UnderestCurr_low 3 ,76D,1264,1271,.1,0,1,,2124,6124,ff,E1d_I_Prim_UnderestCurr_low 4 ,76D,1272,1287,.01,0,2,,2124,6124,ff,E1d_K_chargeCoeff 0 ,76D,1288,1303,.01,0,2,,2124,6124,ff,E1d_K_chargeCoeff 1 ,76D,1304,1319,.01,0,2,,2124,6124,ff,E1d_K_DischargeCoeff 0 ,76D,1320,1335,.01,0,2,,2124,6124,ff,E1d_K_DischargeCoeff 1 ,76D,1336,1351,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 0 ,76D,1352,1367,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 1 ,76D,1368,1383,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 2 ,76D,1384,1399,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 3 ,76D,1400,1415,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 4 ,76D,1416,1431,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 5 ,76D,1432,1447,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 6 ,76D,1448,1463,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 7 ,76D,1464,1479,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 8 ,76D,1480,1495,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 9 ,76D,1496,1511,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 10 ,76D,1512,1527,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 11 ,76D,1528,1543,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 12 ,76D,1544,1559,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 13 ,76D,1560,1575,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 14 ,76D,1576,1591,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 15 ,76D,1592,1607,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 16 ,76D,1608,1623,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 17 ,76D,1624,1639,.005,0,3,,2124,6124,1ff,E1d_Pct_PctCCAAlert 18 ,76D,1640,1655,.5,0,1,,2124,6124,1ff,E1d_Pct_VTGauge_Increment 0 ,76D,1656,1671,.5,0,1,,2124,6124,1ff,E1d_Pct_VTGauge_Increment 1 ,76D,1672,1687,.5,0,1,,2124,6124,1ff,E1d_Pct_VTGauge_Increment 2 ,76D,1688,1703,.5,0,1,,2124,6124,1ff,E1d_Pct_VTGauge_Increment 3 ,76D,1704,1719,.5,0,1,,2124,6124,1ff,E1d_Pct_VTGauge_Increment 4 ,76D,1720,1735,.5,0,1,,2124,6124,1ff,E1d_Pct_VTGauge_Increment 5 ,76D,1736,1751,.5,0,1,,2124,6124,1ff,E1d_Pct_VTGauge_Increment 6 ,76D,1752,1767,.5,0,1,,2124,6124,1ff,E1d_Pct_VTGauge_Increment 7 ,76D,1768,1783,.5,0,1,,2124,6124,1ff,E1d_Pct_VTGauge_Increment 8 ,76D,1784,1799,.5,0,1,,2124,6124,1ff,E1d_Pct_VTGauge_Increment 9 ,76D,1800,1807,1,40,0,,2124,6124,ff,E1d_Temp_Prim_RegenCurr 0 ,76D,1808,1815,1,40,0,,2124,6124,ff,E1d_Temp_Prim_RegenCurr 1 ,76D,1816,1823,1,40,0,,2124,6124,ff,E1d_Temp_Prim_RegenCurr 2 ,76D,1824,1831,1,40,0,,2124,6124,ff,E1d_Temp_Prim_RegenCurr 3 ,76D,1832,1839,1,40,0,,2124,6124,ff,E1d_Temp_Prim_RegenCurr 4 ,76D,16,23,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 0 ,76D,24,31,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 1 ,76D,32,39,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 2 ,76D,40,47,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 3 ,76D,48,55,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 4 ,76D,56,63,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 5 ,76D,64,71,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 6 ,76D,72,79,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 7 ,76D,80,87,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 8 ,76D,88,95,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 9 ,76D,96,103,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 10 ,76D,104,111,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 11 ,76D,112,119,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 12 ,76D,120,127,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 13 ,76D,128,135,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 14 ,76D,136,143,1,0,0,,2125,6125,ff,E1d_Pct_SOCCoeffSOC 15 ,76D,144,151,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 0 ,76D,152,159,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 1 ,76D,160,167,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 2 ,76D,168,175,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 3 ,76D,176,183,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 4 ,76D,184,191,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 5 ,76D,192,199,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 6 ,76D,200,207,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 7 ,76D,208,215,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 8 ,76D,216,223,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 9 ,76D,224,231,1,40,0,,2125,6125,ff,E1d_Temp_PrimStorageCoeffSOC 10 ,76D,232,239,1,20,0,,2125,6125,ff,E1d_Temp_PrimStorForCharge 0 ,76D,240,247,1,20,0,,2125,6125,ff,E1d_Temp_PrimStorForCharge 1 ,76D,248,255,1,20,0,,2125,6125,ff,E1d_Temp_PrimStorForDischarge 0 ,76D,256,263,1,20,0,,2125,6125,ff,E1d_Temp_PrimStorForDischarge 1 ,76D,264,271,1,40,0,,2125,6125,ff,E1d_Temp_RebalancingTemp 0 ,76D,272,279,1,40,0,,2125,6125,ff,E1d_Temp_RebalancingTemp 1 ,76D,280,287,1,40,0,,2125,6125,ff,E1d_Temp_RebalancingTemp 2 ,76D,288,295,1,40,0,,2125,6125,ff,E1d_Temp_RebalancingTemp 3 ,76D,296,303,1,40,0,,2125,6125,ff,E1d_Temp_RebalancingTemp 4 ,76D,304,311,.1,0,1,,2125,6125,ff,E1d_U_Ralacc_threshold 0 ,76D,312,319,.1,0,1,,2125,6125,ff,E1d_U_Ralacc_threshold 1 ,76D,320,327,.1,0,1,,2125,6125,ff,E1d_U_Ralacc_threshold 2 ,76D,328,335,.5,0,1,,2125,6125,ff,E_I_BATT1_Comp ,76D,336,343,.5,0,1,,2125,6125,ff,E_I_IGN_ON_Comp ,76D,344,351,1,40,0,,2125,6125,ff,E1d_Temp_TempPrimStorageSOC 0 ,76D,352,359,1,40,0,,2125,6125,ff,E1d_Temp_TempPrimStorageSOC 1 ,76D,360,367,1,40,0,,2125,6125,ff,E1d_Temp_TempPrimStorageSOC 2 ,76D,368,375,1,40,0,,2125,6125,ff,E1d_Temp_Prim_Underest_high 0 ,76D,376,383,1,40,0,,2125,6125,ff,E1d_Temp_Prim_Underest_high 1 ,76D,384,391,1,40,0,,2125,6125,ff,E1d_Temp_Prim_Underest_high 2 ,76D,392,399,1,40,0,,2125,6125,ff,E1d_Temp_Prim_Underest_high 3 ,76D,400,407,1,40,0,,2125,6125,ff,E1d_Temp_Prim_Underest_high 4 ,76D,408,415,1,40,0,,2125,6125,ff,E1d_Temp_Prim_Underest_low 0 ,76D,416,423,1,40,0,,2125,6125,ff,E1d_Temp_Prim_Underest_low 1 ,76D,424,431,1,40,0,,2125,6125,ff,E1d_Temp_Prim_Underest_low 2 ,76D,432,439,1,40,0,,2125,6125,ff,E1d_Temp_Prim_Underest_low 3 ,76D,440,447,1,40,0,,2125,6125,ff,E1d_Temp_Prim_Underest_low 4 ,76D,448,463,.001,0,3,,2125,6125,1ff,E1d_U_OffsetV_duringTechWakeUp 0 ,76D,464,479,.001,0,3,,2125,6125,1ff,E1d_U_OffsetV_duringTechWakeUp 1 ,76D,480,495,.001,0,3,,2125,6125,1ff,E1d_U_OffsetV_duringTechWakeUp 2 ,76D,496,511,.05,0,2,,2125,6125,ff,E1d_U_PrimStorVolt_IncVTGauge 0 ,76D,512,527,.05,0,2,,2125,6125,ff,E1d_U_PrimStorVolt_IncVTGauge 1 ,76D,528,543,.05,0,2,,2125,6125,ff,E1d_U_PrimStorVolt_IncVTGauge 2 ,76D,544,559,.05,0,2,,2125,6125,ff,E1d_U_PrimStorVolt_IncVTGauge 3 ,76D,560,575,.05,0,2,,2125,6125,ff,E1d_U_PrimStorVolt_IncVTGauge 4 ,76D,576,591,.05,0,2,,2125,6125,ff,E1d_U_PrimStorVolt_IncVTGauge 5 ,76D,592,607,.05,0,2,,2125,6125,ff,E1d_U_PrimStorVolt_IncVTGauge 6 ,76D,608,623,.05,0,2,,2125,6125,ff,E1d_U_PrimStorVolt_IncVTGauge 7 ,76D,624,639,.05,0,2,,2125,6125,ff,E1d_U_PrimStorVolt_IncVTGauge 8 ,76D,640,655,.05,0,2,,2125,6125,ff,E1d_U_PrimStorVolt_IncVTGauge 9 ,76D,656,671,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 0 ,76D,672,687,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 1 ,76D,688,703,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 2 ,76D,704,719,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 3 ,76D,720,735,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 4 ,76D,736,751,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 5 ,76D,752,767,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 6 ,76D,768,783,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 7 ,76D,784,799,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 8 ,76D,800,815,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 9 ,76D,816,831,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 10 ,76D,832,847,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 11 ,76D,848,863,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 12 ,76D,864,879,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 13 ,76D,880,895,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 14 ,76D,896,911,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 15 ,76D,912,927,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 16 ,76D,928,943,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 17 ,76D,944,959,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_cold 18 ,76D,960,975,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 0 ,76D,976,991,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 1 ,76D,992,1007,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 2 ,76D,1008,1023,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 3 ,76D,1024,1039,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 4 ,76D,1040,1055,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 5 ,76D,1056,1071,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 6 ,76D,1072,1087,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 7 ,76D,1088,1103,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 8 ,76D,1104,1119,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 9 ,76D,1120,1135,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 10 ,76D,1136,1151,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 11 ,76D,1152,1167,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 12 ,76D,1168,1183,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 13 ,76D,1184,1199,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 14 ,76D,1200,1215,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 15 ,76D,1216,1231,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 16 ,76D,1232,1247,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 17 ,76D,1248,1263,.01,0,2,,2125,6125,ff,E1d_U_VMiniAlert_warm 18 ,76D,1264,1271,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 0 ,76D,1272,1279,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 1 ,76D,1280,1287,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 2 ,76D,1288,1295,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 3 ,76D,1296,1303,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 4 ,76D,1304,1311,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 5 ,76D,1312,1319,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 6 ,76D,1320,1327,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 7 ,76D,1328,1335,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 8 ,76D,1336,1343,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 9 ,76D,1344,1351,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 10 ,76D,1352,1359,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 11 ,76D,1360,1367,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 12 ,76D,1368,1375,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 13 ,76D,1376,1383,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 14 ,76D,1384,1391,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 15 ,76D,1392,1399,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 16 ,76D,1400,1407,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 17 ,76D,1408,1415,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 18 ,76D,1416,1423,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 19 ,76D,1424,1431,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 20 ,76D,1432,1439,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 21 ,76D,1440,1447,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 22 ,76D,1448,1455,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 23 ,76D,1456,1463,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 24 ,76D,1464,1471,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 25 ,76D,1472,1479,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 26 ,76D,1480,1487,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 27 ,76D,1488,1495,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 28 ,76D,1496,1503,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 29 ,76D,1504,1511,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 30 ,76D,1512,1519,1,50,0,,2125,6125,ff,E1d_Temp_Prim_Storage_Sens 31 ,76D,1520,1527,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 0 ,76D,1528,1535,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 1 ,76D,1536,1543,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 2 ,76D,1544,1551,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 3 ,76D,1552,1559,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 4 ,76D,1560,1567,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 5 ,76D,1568,1575,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 6 ,76D,1576,1583,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 7 ,76D,1584,1591,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 8 ,76D,1592,1599,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 9 ,76D,1600,1607,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 10 ,76D,1608,1615,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 11 ,76D,1616,1623,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 12 ,76D,1624,1631,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 13 ,76D,1632,1639,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 14 ,76D,1640,1647,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 15 ,76D,1648,1655,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 16 ,76D,1656,1663,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 17 ,76D,1664,1671,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 18 ,76D,1672,1679,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 19 ,76D,1680,1687,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 20 ,76D,1688,1695,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 21 ,76D,1696,1703,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 22 ,76D,1704,1711,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 23 ,76D,1712,1719,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 24 ,76D,1720,1727,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 25 ,76D,1728,1735,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 26 ,76D,1736,1743,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 27 ,76D,1744,1751,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 28 ,76D,1752,1759,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 29 ,76D,1760,1767,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 30 ,76D,1768,1775,.02,0,2,,2125,6125,ff,E1d_U_Prim_Storage_temp_HW 31 ,76D,16,23,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 0 ,76D,24,31,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 1 ,76D,32,39,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 2 ,76D,40,47,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 3 ,76D,48,55,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 4 ,76D,56,63,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 5 ,76D,64,71,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 6 ,76D,72,79,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 7 ,76D,80,87,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 8 ,76D,88,95,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 9 ,76D,96,103,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 10 ,76D,104,111,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 11 ,76D,112,119,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 12 ,76D,120,127,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 13 ,76D,128,135,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 14 ,76D,136,143,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 15 ,76D,144,151,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 16 ,76D,152,159,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 17 ,76D,160,167,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 18 ,76D,168,175,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 19 ,76D,176,183,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 20 ,76D,184,191,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 21 ,76D,192,199,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 22 ,76D,200,207,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 23 ,76D,208,215,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 24 ,76D,216,223,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 25 ,76D,224,231,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 26 ,76D,232,239,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 27 ,76D,240,247,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 28 ,76D,248,255,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 29 ,76D,256,263,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 30 ,76D,264,271,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 31 ,76D,272,279,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 32 ,76D,280,287,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 33 ,76D,288,295,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 34 ,76D,296,303,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 35 ,76D,304,311,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 36 ,76D,312,319,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 37 ,76D,320,327,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 38 ,76D,328,335,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 39 ,76D,336,343,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 40 ,76D,344,351,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 41 ,76D,352,359,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 42 ,76D,360,367,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 43 ,76D,368,375,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 44 ,76D,376,383,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 45 ,76D,384,391,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 46 ,76D,392,399,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 47 ,76D,400,407,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 48 ,76D,408,415,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 49 ,76D,416,423,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 50 ,76D,424,431,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 51 ,76D,432,439,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 52 ,76D,440,447,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 53 ,76D,448,455,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 54 ,76D,456,463,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 55 ,76D,464,471,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 56 ,76D,472,479,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 57 ,76D,480,487,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 58 ,76D,488,495,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 59 ,76D,496,503,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 60 ,76D,504,511,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 61 ,76D,512,519,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 62 ,76D,520,527,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 63 ,76D,528,535,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 64 ,76D,536,543,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 65 ,76D,544,551,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 66 ,76D,552,559,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 67 ,76D,560,567,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 68 ,76D,568,575,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 69 ,76D,576,583,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 70 ,76D,584,591,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 71 ,76D,592,599,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 72 ,76D,600,607,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 73 ,76D,608,615,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 74 ,76D,616,623,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 75 ,76D,624,631,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 76 ,76D,632,639,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 77 ,76D,640,647,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 78 ,76D,648,655,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 79 ,76D,656,663,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 80 ,76D,664,671,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 81 ,76D,672,679,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 82 ,76D,680,687,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 83 ,76D,688,695,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 84 ,76D,696,703,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 85 ,76D,704,711,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 86 ,76D,712,719,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 87 ,76D,720,727,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 88 ,76D,728,735,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 89 ,76D,736,743,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 90 ,76D,744,751,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 91 ,76D,752,759,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 92 ,76D,760,767,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 93 ,76D,768,775,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 94 ,76D,776,783,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 95 ,76D,784,791,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 96 ,76D,792,799,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 97 ,76D,800,807,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 98 ,76D,808,815,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 99 ,76D,816,823,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 100 ,76D,824,831,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 101 ,76D,832,839,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 102 ,76D,840,847,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 103 ,76D,848,855,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 104 ,76D,856,863,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 105 ,76D,864,871,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 106 ,76D,872,879,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 107 ,76D,880,887,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 108 ,76D,888,895,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 109 ,76D,896,903,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 110 ,76D,904,911,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 111 ,76D,912,919,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 112 ,76D,920,927,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 113 ,76D,928,935,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 114 ,76D,936,943,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 115 ,76D,944,951,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 116 ,76D,952,959,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 117 ,76D,960,967,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 118 ,76D,968,975,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 119 ,76D,976,983,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 120 ,76D,984,991,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 121 ,76D,992,999,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 122 ,76D,1000,1007,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 123 ,76D,1008,1015,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 124 ,76D,1016,1023,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 125 ,76D,1024,1031,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 126 ,76D,1032,1039,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 127 ,76D,1040,1047,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 128 ,76D,1048,1055,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 129 ,76D,1056,1063,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 130 ,76D,1064,1071,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 131 ,76D,1072,1079,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 132 ,76D,1080,1087,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 133 ,76D,1088,1095,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 134 ,76D,1096,1103,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 135 ,76D,1104,1111,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 136 ,76D,1112,1119,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 137 ,76D,1120,1127,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 138 ,76D,1128,1135,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 139 ,76D,1136,1143,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 140 ,76D,1144,1151,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 141 ,76D,1152,1159,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 142 ,76D,1160,1167,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 143 ,76D,1168,1175,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 144 ,76D,1176,1183,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 145 ,76D,1184,1191,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 146 ,76D,1192,1199,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 147 ,76D,1200,1207,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 148 ,76D,1208,1215,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 149 ,76D,1216,1223,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 150 ,76D,1224,1231,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 151 ,76D,1232,1239,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 152 ,76D,1240,1247,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 153 ,76D,1248,1255,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 154 ,76D,1256,1263,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 155 ,76D,1264,1271,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 156 ,76D,1272,1279,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 157 ,76D,1280,1287,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 158 ,76D,1288,1295,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 159 ,76D,1296,1303,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 160 ,76D,1304,1311,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 161 ,76D,1312,1319,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 162 ,76D,1320,1327,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 163 ,76D,1328,1335,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 164 ,76D,1336,1343,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 165 ,76D,1344,1351,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 166 ,76D,1352,1359,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 167 ,76D,1360,1367,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 168 ,76D,1368,1375,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 169 ,76D,1376,1383,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 170 ,76D,1384,1391,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 171 ,76D,1392,1399,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 172 ,76D,1400,1407,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 173 ,76D,1408,1415,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 174 ,76D,1416,1423,.05,0,2,,2126,6126,ff,E2d_K_RendSOC 175 ,76D,1424,1431,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_145 0 ,76D,1432,1439,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_145 1 ,76D,1440,1447,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_145 2 ,76D,1448,1455,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_145 3 ,76D,1456,1463,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_145 4 ,76D,1464,1471,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_145 5 ,76D,1472,1479,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_145 6 ,76D,1480,1487,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_145 7 ,76D,1488,1495,1,40,0,,2126,6126,ff,E1d_Temp_interESM_150 0 ,76D,1496,1503,1,40,0,,2126,6126,ff,E1d_Temp_interESM_150 1 ,76D,1504,1511,1,40,0,,2126,6126,ff,E1d_Temp_interESM_150 2 ,76D,1512,1519,1,40,0,,2126,6126,ff,E1d_Temp_interESM_150 3 ,76D,1520,1527,1,40,0,,2126,6126,ff,E1d_Temp_interESM_150 4 ,76D,1528,1535,1,40,0,,2126,6126,ff,E1d_Temp_interESM_150 5 ,76D,1536,1543,1,40,0,,2126,6126,ff,E1d_Temp_interESM_150 6 ,76D,1544,1551,1,40,0,,2126,6126,ff,E1d_Temp_interESM_150 7 ,76D,1552,1559,.1,0,1,,2126,6126,ff,E1d_U_interESM_125 0 ,76D,1560,1567,.1,0,1,,2126,6126,ff,E1d_U_interESM_125 1 ,76D,1568,1575,.1,0,1,,2126,6126,ff,E1d_U_interESM_125 2 ,76D,1576,1583,.1,0,1,,2126,6126,ff,E1d_U_interESM_125 3 ,76D,1584,1591,.1,0,1,,2126,6126,ff,E1d_U_interESM_125 4 ,76D,1592,1599,.1,0,1,,2126,6126,ff,E1d_U_interESM_125 5 ,76D,1600,1607,.1,0,1,,2126,6126,ff,E1d_U_interESM_125 6 ,76D,1608,1615,.1,0,1,,2126,6126,ff,E1d_U_interESM_130 0 ,76D,1616,1623,.1,0,1,,2126,6126,ff,E1d_U_interESM_130 1 ,76D,1624,1631,.1,0,1,,2126,6126,ff,E1d_U_interESM_130 2 ,76D,1632,1639,.1,0,1,,2126,6126,ff,E1d_U_interESM_130 3 ,76D,1640,1647,.1,0,1,,2126,6126,ff,E1d_U_interESM_130 4 ,76D,1648,1655,.1,0,1,,2126,6126,ff,E1d_U_interESM_130 5 ,76D,1656,1663,.1,0,1,,2126,6126,ff,E1d_U_interESM_130 6 ,76D,1664,1671,.1,0,1,,2126,6126,ff,E1d_U_interESM_135 0 ,76D,1672,1679,.1,0,1,,2126,6126,ff,E1d_U_interESM_135 1 ,76D,1680,1687,.1,0,1,,2126,6126,ff,E1d_U_interESM_135 2 ,76D,1688,1695,.1,0,1,,2126,6126,ff,E1d_U_interESM_135 3 ,76D,1696,1703,.1,0,1,,2126,6126,ff,E1d_U_interESM_135 4 ,76D,1704,1711,.1,0,1,,2126,6126,ff,E1d_U_interESM_135 5 ,76D,1712,1719,.1,0,1,,2126,6126,ff,E1d_U_interESM_135 6 ,76D,1720,1727,.1,0,1,,2126,6126,ff,E1d_U_interESM_140 0 ,76D,1728,1735,.1,0,1,,2126,6126,ff,E1d_U_interESM_140 1 ,76D,1736,1743,.1,0,1,,2126,6126,ff,E1d_U_interESM_140 2 ,76D,1744,1751,.1,0,1,,2126,6126,ff,E1d_U_interESM_140 3 ,76D,1752,1759,.1,0,1,,2126,6126,ff,E1d_U_interESM_140 4 ,76D,1760,1767,.1,0,1,,2126,6126,ff,E1d_U_interESM_140 5 ,76D,1768,1775,.1,0,1,,2126,6126,ff,E1d_U_interESM_140 6 ,76D,1776,1783,.1,0,1,,2126,6126,ff,E1d_U_interESM_145 0 ,76D,1784,1791,.1,0,1,,2126,6126,ff,E1d_U_interESM_145 1 ,76D,1792,1799,.1,0,1,,2126,6126,ff,E1d_U_interESM_145 2 ,76D,1800,1807,.1,0,1,,2126,6126,ff,E1d_U_interESM_145 3 ,76D,1808,1815,.1,0,1,,2126,6126,ff,E1d_U_interESM_145 4 ,76D,1816,1823,.1,0,1,,2126,6126,ff,E1d_U_interESM_145 5 ,76D,1824,1831,.1,0,1,,2126,6126,ff,E1d_U_interESM_145 6 ,76D,1832,1839,.1,0,1,,2126,6126,ff,E1d_U_interESM_150 0 ,76D,1840,1847,.1,0,1,,2126,6126,ff,E1d_U_interESM_150 1 ,76D,1848,1855,.1,0,1,,2126,6126,ff,E1d_U_interESM_150 2 ,76D,1856,1863,.1,0,1,,2126,6126,ff,E1d_U_interESM_150 3 ,76D,1864,1871,.1,0,1,,2126,6126,ff,E1d_U_interESM_150 4 ,76D,1872,1879,.1,0,1,,2126,6126,ff,E1d_U_interESM_150 5 ,76D,1880,1887,.1,0,1,,2126,6126,ff,E1d_U_interESM_150 6 ,76D,1888,1895,.1,0,1,,2126,6126,ff,E1d_U_interESM_150 7 ,76D,1896,1903,.1,0,1,,2126,6126,ff,E1d_U_Ralacc 0 ,76D,1904,1911,.1,0,1,,2126,6126,ff,E1d_U_Ralacc 1 ,76D,1912,1919,.1,0,1,,2126,6126,ff,E1d_U_Ralacc 2 ,76D,1920,1927,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_125 0 ,76D,1928,1935,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_125 1 ,76D,1936,1943,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_125 2 ,76D,1944,1951,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_125 3 ,76D,1952,1959,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_125 4 ,76D,1960,1967,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_125 5 ,76D,1968,1975,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_125 6 ,76D,1976,1983,.5,0,1,,2126,6126,ff,E1d_Pct_SOCinterESM_125 7 ,76D,1984,1991,.5,0,1,,2126,6126,ff,E_I_O_IGN_AT_LPG_Comp ,76D,1992,1999,.5,0,1,,2126,6126,ff,E_I_O_LIGHT_REVERSE_LAMP_Comp ,76D,2000,2000,1,0,0,,2126,6126,ff,E_B_SOFC_Inhibition ,76D,16,16,1,0,0,,2127,6127,ff,E_B_CLL_Deactivation_by_Flasher ,76D,17,17,1,0,0,,2127,6127,ff,E_B_DRLWithoutPWM ,76D,18,18,1,0,0,,2127,6127,ff,E_B_FrontFogWithoutPWM ,76D,19,19,1,0,0,,2127,6127,ff,E_B_HighBeamWithoutPWM ,76D,20,20,1,0,0,,2127,6127,ff,E_B_LowBeamWithoutPWM ,76D,21,21,1,0,0,,2127,6127,ff,E_B_PassingAvoidingAltOverload ,76D,22,22,1,0,0,,2127,6127,ff,E_B_PositionFrontWithoutPWM ,76D,23,23,1,0,0,,2127,6127,ff,E_B_PositionRear1WithoutPWM ,76D,24,24,1,0,0,,2127,6127,ff,E_B_PositionRear2WithoutPWM ,76D,25,25,1,0,0,,2127,6127,ff,E_B_SingleBulb ,76D,26,26,1,0,0,,2127,6127,ff,E_B_LowBeamWithoutPWM_sty_inv ,76D,27,27,1,0,0,,2127,6127,ff,E_B_ADB_cf ,76D,28,28,1,0,0,,2127,6127,ff,E_B_FBL ,76D,29,29,1,0,0,,2127,6127,ff,E_B_FBLWithoutPWM ,76D,32,39,1,0,0,,2127,6127,ff,E_E_DRLType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,40,47,1,0,0,,2127,6127,ff,E_E_LowBeamType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,48,55,1,0,0,,2127,6127,ff,E_E_PositionFrontType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,56,63,1,0,0,,2127,6127,ff,E_E_PositionRear1Type,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,64,71,1,0,0,,2127,6127,ff,E_E_PositionRear2Type,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,72,79,1,0,0,,2127,6127,ff,E_K_DRL_close_to_ID ,76D,80,87,1,0,0,,2127,6127,ff,E_K_Singlebulb_DRL_Tail ,76D,88,95,.01,0,2,,2127,6127,ff,E_Pct_DRL_adapt_for_LDM ,76D,96,103,.01,0,2,,2127,6127,ff,E_Pct_DRL_Tail ,76D,104,111,.01,0,2,,2127,6127,ff,E_Pct_HBeam_DRL ,76D,112,119,.01,0,2,,2127,6127,ff,E_PWM_Cor_Y_Min ,76D,120,135,.01,0,2,,2127,6127,ff,E_PWM_Goodbye_front_activation ,76D,136,143,.01,0,2,,2127,6127,ff,E_R_coef_G_1 ,76D,144,151,.01,0,2,,2127,6127,ff,E_R_coef_G_2 ,76D,152,159,.01,0,2,,2127,6127,ff,E_R_coef_G_3 ,76D,160,167,.01,0,2,,2127,6127,ff,E_R_coef_G_4 ,76D,168,175,.01,0,2,,2127,6127,ff,E_R_coef_W_1 ,76D,176,183,.01,0,2,,2127,6127,ff,E_R_coef_W_2 ,76D,184,191,.01,0,2,,2127,6127,ff,E_R_coef_W_3 ,76D,192,199,.01,0,2,,2127,6127,ff,E_R_coef_W_4 ,76D,200,215,.5,0,1,,2127,6127,ff,E_R_DC_G_1 ,76D,216,231,.5,0,1,,2127,6127,ff,E_R_DC_G_2 ,76D,232,247,.5,0,1,,2127,6127,ff,E_R_DC_G_3 ,76D,248,263,.5,0,1,,2127,6127,ff,E_R_DC_G_4 ,76D,264,279,.5,0,1,,2127,6127,ff,E_R_DC_G_initial ,76D,280,295,.5,0,1,,2127,6127,ff,E_R_DC_W_1 ,76D,296,311,.5,0,1,,2127,6127,ff,E_R_DC_W_2 ,76D,312,327,.5,0,1,,2127,6127,ff,E_R_DC_W_3 ,76D,328,343,.5,0,1,,2127,6127,ff,E_R_DC_W_4 ,76D,344,359,.5,0,1,,2127,6127,ff,E_R_DC_W_initial ,76D,360,367,.01,0,2,,2127,6127,ff,E_TM_Delay_before_switch_WG_OFF ,76D,368,375,.1,0,1,,2127,6127,ff,E_TM_Dimming_Time_Cor ,76D,376,383,.02,0,2,,2127,6127,ff,E_TM_R_T1_G ,76D,384,391,.02,0,2,,2127,6127,ff,E_TM_R_T1_W ,76D,392,399,.02,0,2,,2127,6127,ff,E_TM_R_T2_G ,76D,400,407,.02,0,2,,2127,6127,ff,E_TM_R_T2_W ,76D,408,415,.02,0,2,,2127,6127,ff,E_TM_R_T3_G ,76D,416,423,.02,0,2,,2127,6127,ff,E_TM_R_T3_W ,76D,424,431,.02,0,2,,2127,6127,ff,E_TM_R_T4_G ,76D,432,439,.02,0,2,,2127,6127,ff,E_TM_R_T4_W ,76D,448,455,.01,0,2,,2127,6127,ff,E_U_DRLLeftOffset ,76D,456,463,.01,0,2,,2127,6127,ff,E_U_DRLRightOffset ,76D,464,471,.05,0,2,,2127,6127,ff,E_U_FBL_BeamLeftOffset ,76D,472,479,.05,0,2,,2127,6127,ff,E_U_FBL_BeamRightOffset ,76D,480,487,.01,0,2,,2127,6127,ff,E_U_FrontFogLeftOffset ,76D,488,495,.01,0,2,,2127,6127,ff,E_U_FrontFogRightOffset ,76D,496,503,.01,0,2,,2127,6127,ff,E_U_HighBeamLeftOffset ,76D,504,511,.01,0,2,,2127,6127,ff,E_U_HighBeamRightOffset ,76D,512,519,.01,0,2,,2127,6127,ff,E_U_LowBeamLeftOffset ,76D,520,527,.01,0,2,,2127,6127,ff,E_U_LowBeamRightOffset ,76D,528,535,.01,0,2,,2127,6127,ff,E_U_TAIL1LeftOffset ,76D,536,543,.01,0,2,,2127,6127,ff,E_U_TAIL2Offset ,76D,544,551,.01,0,2,,2127,6127,ff,E_U_TAIL3Offset ,76D,560,575,.01,0,2,,2127,6127,ff,E_PWM_Welcome_front_activation ,76D,576,583,.01,0,2,,2127,6127,ff,E_U_TAIL1RightOffset ,76D,584,591,1,0,0,,2127,6127,ff,E_A_Threshold_A1 ,76D,592,599,1,0,0,,2127,6127,ff,E_A_Threshold_A2 ,76D,600,607,1,0,0,,2127,6127,ff,E_A_Threshold_X1 ,76D,608,615,1,0,0,,2127,6127,ff,E_A_Threshold_X2 ,76D,616,623,1,0,0,,2127,6127,ff,E_E_FrontFogType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,624,631,1,0,0,,2127,6127,ff,E_E_HighBeamType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,632,639,1,0,0,,2127,6127,ff,E_K_Cor_Dimming_step_nb ,76D,640,647,1,0,0,,2127,6127,ff,E_K_FBL_Dimming_step_nb ,76D,648,655,.01,0,2,,2127,6127,ff,E_PWM_Cor_Y_Max ,76D,656,663,.01,0,2,,2127,6127,ff,E_PWM_FBL_Y_Max ,76D,664,671,.01,0,2,,2127,6127,ff,E_PWM_FBL_Y_Min ,76D,672,679,1,0,0,,2127,6127,ff,E_S_Threshold_V1 ,76D,680,687,1,0,0,,2127,6127,ff,E_S_Threshold_V2 ,76D,688,695,1,0,0,,2127,6127,ff,E_S_Threshold_V3 ,76D,696,703,1,0,0,,2127,6127,ff,E_S_Threshold_V4 ,76D,704,711,1,0,0,,2127,6127,ff,E_S_Threshold_V5 ,76D,712,719,1,0,0,,2127,6127,ff,E_S_Threshold_V6 ,76D,720,727,.1,0,1,,2127,6127,ff,E_TM_welcome_dot_delay ,76D,728,735,.1,0,1,,2127,6127,ff,E1d_DRL_Law_X 0 ,76D,736,743,.1,0,1,,2127,6127,ff,E1d_DRL_Law_X 1 ,76D,744,751,.1,0,1,,2127,6127,ff,E1d_DRL_Law_X 2 ,76D,752,759,.1,0,1,,2127,6127,ff,E1d_DRL_Law_X 3 ,76D,760,767,.4,0,1,,2127,6127,ff,E1d_DRL_Law_Y 0 ,76D,768,775,.4,0,1,,2127,6127,ff,E1d_DRL_Law_Y 1 ,76D,776,783,.4,0,1,,2127,6127,ff,E1d_DRL_Law_Y 2 ,76D,784,791,.4,0,1,,2127,6127,ff,E1d_DRL_Law_Y 3 ,76D,792,799,.1,0,1,,2127,6127,ff,E1d_FBL_Law_X 0 ,76D,800,807,.1,0,1,,2127,6127,ff,E1d_FBL_Law_X 1 ,76D,808,815,.1,0,1,,2127,6127,ff,E1d_FBL_Law_X 2 ,76D,816,823,.1,0,1,,2127,6127,ff,E1d_FBL_Law_X 3 ,76D,824,831,.4,0,1,,2127,6127,ff,E1d_FBL_Law_Y 0 ,76D,832,839,.4,0,1,,2127,6127,ff,E1d_FBL_Law_Y 1 ,76D,840,847,.4,0,1,,2127,6127,ff,E1d_FBL_Law_Y 2 ,76D,848,855,.4,0,1,,2127,6127,ff,E1d_FBL_Law_Y 3 ,76D,856,863,.1,0,1,,2127,6127,ff,E1d_FrontFog_Law_X 0 ,76D,864,871,.1,0,1,,2127,6127,ff,E1d_FrontFog_Law_X 1 ,76D,872,879,.1,0,1,,2127,6127,ff,E1d_FrontFog_Law_X 2 ,76D,880,887,.1,0,1,,2127,6127,ff,E1d_FrontFog_Law_X 3 ,76D,888,895,.4,0,1,,2127,6127,ff,E1d_FrontFog_Law_Y 0 ,76D,896,903,.4,0,1,,2127,6127,ff,E1d_FrontFog_Law_Y 1 ,76D,904,911,.4,0,1,,2127,6127,ff,E1d_FrontFog_Law_Y 2 ,76D,912,919,.4,0,1,,2127,6127,ff,E1d_FrontFog_Law_Y 3 ,76D,920,927,.1,0,1,,2127,6127,ff,E1d_HighBeam_Law_X 0 ,76D,928,935,.1,0,1,,2127,6127,ff,E1d_HighBeam_Law_X 1 ,76D,936,943,.1,0,1,,2127,6127,ff,E1d_HighBeam_Law_X 2 ,76D,944,951,.1,0,1,,2127,6127,ff,E1d_HighBeam_Law_X 3 ,76D,952,959,.4,0,1,,2127,6127,ff,E1d_HighBeam_Law_Y 0 ,76D,960,967,.4,0,1,,2127,6127,ff,E1d_HighBeam_Law_Y 1 ,76D,968,975,.4,0,1,,2127,6127,ff,E1d_HighBeam_Law_Y 2 ,76D,976,983,.4,0,1,,2127,6127,ff,E1d_HighBeam_Law_Y 3 ,76D,984,991,.1,0,1,,2127,6127,ff,E1d_LowBeam_Law_X 0 ,76D,992,999,.1,0,1,,2127,6127,ff,E1d_LowBeam_Law_X 1 ,76D,1000,1007,.1,0,1,,2127,6127,ff,E1d_LowBeam_Law_X 2 ,76D,1008,1015,.1,0,1,,2127,6127,ff,E1d_LowBeam_Law_X 3 ,76D,1016,1023,.4,0,1,,2127,6127,ff,E1d_LowBeam_Law_Y 0 ,76D,1024,1031,.4,0,1,,2127,6127,ff,E1d_LowBeam_Law_Y 1 ,76D,1032,1039,.4,0,1,,2127,6127,ff,E1d_LowBeam_Law_Y 2 ,76D,1040,1047,.4,0,1,,2127,6127,ff,E1d_LowBeam_Law_Y 3 ,76D,1048,1055,.1,0,1,,2127,6127,ff,E1d_PositionFront_Law_X 0 ,76D,1056,1063,.1,0,1,,2127,6127,ff,E1d_PositionFront_Law_X 1 ,76D,1064,1071,.1,0,1,,2127,6127,ff,E1d_PositionFront_Law_X 2 ,76D,1072,1079,.1,0,1,,2127,6127,ff,E1d_PositionFront_Law_X 3 ,76D,1080,1087,.4,0,1,,2127,6127,ff,E1d_PositionFront_Law_Y 0 ,76D,1088,1095,.4,0,1,,2127,6127,ff,E1d_PositionFront_Law_Y 1 ,76D,1096,1103,.4,0,1,,2127,6127,ff,E1d_PositionFront_Law_Y 2 ,76D,1104,1111,.4,0,1,,2127,6127,ff,E1d_PositionFront_Law_Y 3 ,76D,1112,1119,.1,0,1,,2127,6127,ff,E1d_PositionRear1_Law_X 0 ,76D,1120,1127,.1,0,1,,2127,6127,ff,E1d_PositionRear1_Law_X 1 ,76D,1128,1135,.1,0,1,,2127,6127,ff,E1d_PositionRear1_Law_X 2 ,76D,1136,1143,.1,0,1,,2127,6127,ff,E1d_PositionRear1_Law_X 3 ,76D,1144,1151,.4,0,1,,2127,6127,ff,E1d_PositionRear1_Law_Y 0 ,76D,1152,1159,.4,0,1,,2127,6127,ff,E1d_PositionRear1_Law_Y 1 ,76D,1160,1167,.4,0,1,,2127,6127,ff,E1d_PositionRear1_Law_Y 2 ,76D,1168,1175,.4,0,1,,2127,6127,ff,E1d_PositionRear1_Law_Y 3 ,76D,1176,1183,.1,0,1,,2127,6127,ff,E1d_PositionRear2_Law_X 0 ,76D,1184,1191,.1,0,1,,2127,6127,ff,E1d_PositionRear2_Law_X 1 ,76D,1192,1199,.1,0,1,,2127,6127,ff,E1d_PositionRear2_Law_X 2 ,76D,1200,1207,.1,0,1,,2127,6127,ff,E1d_PositionRear2_Law_X 3 ,76D,1208,1215,.4,0,1,,2127,6127,ff,E1d_PositionRear2_Law_Y 0 ,76D,1216,1223,.4,0,1,,2127,6127,ff,E1d_PositionRear2_Law_Y 1 ,76D,1224,1231,.4,0,1,,2127,6127,ff,E1d_PositionRear2_Law_Y 2 ,76D,1232,1239,.4,0,1,,2127,6127,ff,E1d_PositionRear2_Law_Y 3 ,76D,1240,1247,1,0,0,,2127,6127,ff,E_E_FBLType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,1248,1255,1,0,0,,2127,6127,ff,E_A_Threshold_B1 ,76D,1256,1263,1,0,0,,2127,6127,ff,E_A_Threshold_B2 ,76D,1264,1279,1,0,0,,2127,6127,ff,E_TM_DLimite ,76D,1280,1287,.1,0,1,,2127,6127,ff,E_TM_LedLbeam_ReEmission ,76D,1352,1359,1,0,0,,2127,6127,ff,E_S_Vthreshold_Cornering ,76D,1360,1367,1,0,0,,2127,6127,ff,E_E_PositionFront_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,1368,1375,1,0,0,,2127,6127,ff,E_E_PositionRear1_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,1376,1383,1,0,0,,2127,6127,ff,E_E_PositionRear2_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,1384,1391,1,0,0,,2127,6127,ff,E_E_DRL_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,1392,1399,1,0,0,,2127,6127,ff,E_E_LowBeam_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,1400,1407,1,0,0,,2127,6127,ff,E_E_HighBeam_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,1408,1415,1,0,0,,2127,6127,ff,E_E_FrontFog_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,1416,1423,1,0,0,,2127,6127,ff,E_E_FBL_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,16,31,.0005,0,3,,2128,6128,1ff,E_ATT_THR_STOP_FIL ,76D,32,39,20,0,0,,2128,6128,ff,E_ATT_TIMER_STOP_FILT ,76D,40,47,6.27450980392157E-03,0,3,,2128,6128,ff,E_D_WHEEL_HDLMP_DIST ,76D,48,55,1,0,0,,2128,6128,ff,E_E_LVL_CFG,0:dt_ENUMLvlCfg_NO_LVL;1:dt_ENUMLvlCfg_RR_SSR;2:dt_ENUMLvlCfg_FT_SSR;3:dt_ENUMLvlCfg_MAN_STEPS;255:dt_ENUMLvlCfg_LVL_MAX;4:dt_ENUMLvlCfg_MAN_INC_DEC ,76D,56,71,1.52590218966964E-05,0,3,,2128,6128,1ff,E_FT_SSR_ATT_COEF ,76D,72,79,.06274509803921,-1,2,,2128,6128,1ff,E_FT_SSR_COMP_COEF ,76D,80,95,1.52590218966964E-05,0,3,,2128,6128,ff,E_K_HDLMP_MECH_ATT ,76D,96,103,3.92156862745098E-03,0,3,,2128,6128,ff,E_K_MAN_SWI_FIL_COEF ,76D,104,119,.0305180437934,0,2,,2128,6128,1ff,E_K_MOTOR_ATT_STAT_COEF ,76D,120,127,3.92156862745098E-03,0,3,,2128,6128,ff,E_K_SWA_FILTER_COEF ,76D,128,135,1,0,0,,2128,6128,ff,E_K_VDC_Absent ,76D,144,151,.4,0,1,,2128,6128,ff,E_Pct_MAN_SWI_INDEX_BAND ,76D,152,159,.4,0,1,,2128,6128,ff,E_Pct_MAN_SWI_INDEX_TAB_1 ,76D,160,167,.4,0,1,,2128,6128,ff,E_Pct_MAN_SWI_INDEX_TAB_2 ,76D,168,175,.4,0,1,,2128,6128,ff,E_Pct_MAN_SWI_INDEX_TAB_3 ,76D,176,183,.4,0,1,,2128,6128,ff,E_Pct_MAN_SWI_INDEX_TAB_4 ,76D,184,191,.4,0,1,,2128,6128,ff,E_Pct_MAN_SWI_INDEX_TAB_5 ,76D,192,207,.002,0,3,,2128,6128,ff,E_Pct_NOM_PWM_OFS ,76D,208,223,.002,0,3,,2128,6128,ff,E_Pct_PWM_NOM_MAX ,76D,224,239,.002,0,3,,2128,6128,ff,E_Pct_PWM_NOM_MIN ,76D,240,247,.39215686275,0,1,,2128,6128,ff,E_Pct_RR_SSR_DIAG_CTCY_H ,76D,248,255,.39215686275,0,1,,2128,6128,ff,E_Pct_RR_SSR_DIAG_CTCY_L ,76D,256,271,50,0,0,ms,2128,6128,ff,E_TM_PassingDetect ,76D,272,279,.39215686275,0,1,,2128,6128,ff,E_Pct_RR_SSR_INIT_RGE_H ,76D,280,287,.39215686275,0,1,,2128,6128,ff,E_Pct_RR_SSR_INIT_RGE_L ,76D,288,303,1.52590218966964E-05,0,3,,2128,6128,1ff,E_RR_SSR_ATT_COEF ,76D,304,311,3.92156862745098E-03,0,3,,2128,6128,ff,E_RR_SSR_LOW_PASS_COEF ,76D,312,319,.392156862745098,0,1,,2128,6128,ff,E_RR_SSR_SAT_MAX_LNT ,76D,320,327,.392156862745098,0,1,,2128,6128,ff,E_RR_SSR_SAT_MIN_LNT ,76D,328,335,20,0,0,,2128,6128,ff,E_Ts_MAN_SWI_INDEX_TIM ,76D,336,351,.00015259,0,3,,2128,6128,ff,E_U_MAN_SWI_DIAG_ELEC_SCG ,76D,352,367,.00015259,0,3,,2128,6128,ff,E_U_MAN_SWI_DIAG_ELEC_SCP ,76D,368,383,1,0,0,,2128,6128,ff,E_WHEEL_BASE ,76D,384,391,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 0 ,76D,392,399,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 1 ,76D,400,407,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 2 ,76D,408,415,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 3 ,76D,416,423,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 4 ,76D,424,431,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 5 ,76D,432,439,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 6 ,76D,440,447,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 7 ,76D,448,455,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 8 ,76D,456,463,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 9 ,76D,464,471,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 10 ,76D,472,479,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 11 ,76D,480,487,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 0 ,76D,488,495,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 1 ,76D,496,503,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 2 ,76D,504,511,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 3 ,76D,512,519,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 4 ,76D,520,527,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 5 ,76D,528,535,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 6 ,76D,536,543,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 7 ,76D,544,551,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 8 ,76D,552,559,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 9 ,76D,560,567,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 10 ,76D,568,575,1,0,0,,2128,6128,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 11 ,76D,576,591,.0005,0,3,,2128,6128,1ff,E1d_STA_ATT_MAN_PCT_TAB_Y 0 ,76D,592,607,.0005,0,3,,2128,6128,1ff,E1d_STA_ATT_MAN_PCT_TAB_Y 1 ,76D,608,623,.0005,0,3,,2128,6128,1ff,E1d_STA_ATT_MAN_PCT_TAB_Y 2 ,76D,624,639,.0005,0,3,,2128,6128,1ff,E1d_STA_ATT_MAN_PCT_TAB_Y 3 ,76D,640,655,.0005,0,3,,2128,6128,1ff,E1d_STA_ATT_MAN_PCT_TAB_Y 4 ,76D,656,656,1,0,0,,2128,6128,ff,E_B_AFS_AntiFog_Cfg_0 ,76D,657,657,1,0,0,,2128,6128,ff,E_B_AFS_AntiFog_Cfg_1 ,76D,658,658,1,0,0,,2128,6128,ff,E_B_AFS_AntiFog_Cfg_2 ,76D,659,659,1,0,0,,2128,6128,ff,E_B_AFS_AntiFog_Cfg_3 ,76D,660,660,1,0,0,,2128,6128,ff,E_B_AFS_AntiFog_Cfg_4 ,76D,664,679,.125,0,1,,2128,6128,1ff,E_deg_AFS_SWA_MAX ,76D,680,695,.125,0,1,,2128,6128,1ff,E_deg_AFS_SWA_MIN ,76D,696,703,20,0,0,,2128,6128,ff,E_U_AUT_DT_VOLT_MAX_TIME ,76D,704,711,1,0,0,,2128,6128,ff,E_K_AFS_Antifog_P_OFF ,76D,712,719,1,0,0,,2128,6128,ff,E_K_AFS_Antifog_P_ON ,76D,720,727,1,0,0,,2128,6128,ff,E_K_MAN_SWI_POSITION_CFG ,76D,728,743,.002,0,3,,2128,6128,1ff,E_Pct_AFS_OFF_CONV_STEP ,76D,744,751,.4,0,1,,2128,6128,ff,E_Pct_MIN_PERC_BAT_VALUE ,76D,752,767,.002,0,3,,2128,6128,1ff,E_Pct_RLB_OFF_CONV_STEP ,76D,768,783,.01,0,2,,2128,6128,ff,E_S_AFS_VehSpd_Thrs_0 ,76D,784,799,.01,0,2,,2128,6128,ff,E_S_AFS_VehSpd_Thrs_1 ,76D,800,815,.01,0,2,,2128,6128,ff,E_S_AFS_VehSpd_Thrs_2 ,76D,816,831,.01,0,2,,2128,6128,ff,E_S_AFS_VehSpd_Thrs_3 ,76D,832,839,20,0,0,,2128,6128,ff,E_TM_AFS_Antifog_T_OFF ,76D,840,847,20,0,0,,2128,6128,ff,E_TM_AFS_Antifog_T_ON ,76D,848,855,20,0,0,,2128,6128,ff,E_TM_AFS_OFF_CONV_TIMER ,76D,856,871,.018311,0,2,,2128,6128,ff,E_TM_AFS_VehSpd_Timer_0_Drop ,76D,872,887,.018311,0,2,,2128,6128,ff,E_TM_AFS_VehSpd_Timer_1_Drop ,76D,888,903,.018311,0,2,,2128,6128,ff,E_TM_AFS_VehSpd_Timer_1_Rise ,76D,904,919,.018311,0,2,,2128,6128,ff,E_TM_AFS_VehSpd_Timer_2_Drop ,76D,920,935,.018311,0,2,,2128,6128,ff,E_TM_AFS_VehSpd_Timer_2_Rise ,76D,936,951,.018311,0,2,,2128,6128,ff,E_TM_AFS_VehSpd_Timer_3_Drop ,76D,952,967,.018311,0,2,,2128,6128,ff,E_TM_AFS_VehSpd_Timer_3_Rise ,76D,968,983,.018311,0,2,,2128,6128,ff,E_TM_AFS_VehSpd_Timer_4_Rise ,76D,984,991,10,0,0,,2128,6128,ff,E_TM_LVL_TIME_DETECT_NEW_VALUE ,76D,992,999,1,0,0,,2128,6128,ff,E_TM_MAN_SWI_INC_DEC_TIM ,76D,1000,1007,20,0,0,,2128,6128,ff,E_TM_RLB_OFF_CONV_TIMER ,76D,1008,1023,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 0 ,76D,1024,1039,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 1 ,76D,1040,1055,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 2 ,76D,1056,1071,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 3 ,76D,1072,1087,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 4 ,76D,1088,1103,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 5 ,76D,1104,1119,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 0 ,76D,1120,1135,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 1 ,76D,1136,1151,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 2 ,76D,1152,1167,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 3 ,76D,1168,1183,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 4 ,76D,1184,1199,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 5 ,76D,1200,1215,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 0 ,76D,1216,1231,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 1 ,76D,1232,1247,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 2 ,76D,1248,1263,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 3 ,76D,1264,1279,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 4 ,76D,1280,1295,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 5 ,76D,1296,1311,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 0 ,76D,1312,1327,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 1 ,76D,1328,1343,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 2 ,76D,1344,1359,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 3 ,76D,1360,1375,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 4 ,76D,1376,1391,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 5 ,76D,1392,1407,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 0 ,76D,1408,1423,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 1 ,76D,1424,1439,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 2 ,76D,1440,1455,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 3 ,76D,1456,1471,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 4 ,76D,1472,1487,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 5 ,76D,1488,1503,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 0 ,76D,1504,1519,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 1 ,76D,1520,1535,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 2 ,76D,1536,1551,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 3 ,76D,1552,1567,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 4 ,76D,1568,1583,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 5 ,76D,1584,1599,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 0 ,76D,1600,1615,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 1 ,76D,1616,1631,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 2 ,76D,1632,1647,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 3 ,76D,1648,1663,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 4 ,76D,1664,1679,.0005,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 5 ,76D,1680,1695,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 0 ,76D,1696,1711,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 1 ,76D,1712,1727,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 2 ,76D,1728,1743,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 3 ,76D,1744,1759,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 4 ,76D,1760,1775,.0031,0,3,,2128,6128,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 5 ,76D,1776,1791,.0005,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 0 ,76D,1792,1807,.0005,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 1 ,76D,1808,1823,.0005,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 2 ,76D,1824,1839,.0005,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 3 ,76D,1840,1855,.0005,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 4 ,76D,1856,1871,.0005,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 5 ,76D,1872,1887,.0031,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 0 ,76D,1888,1903,.0031,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 1 ,76D,1904,1919,.0031,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 2 ,76D,1920,1935,.0031,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 3 ,76D,1936,1951,.0031,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 4 ,76D,1952,1967,.0031,0,3,,2128,6128,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 5 ,76D,1968,1983,.002,0,3,,2128,6128,1ff,E_ACC_RR_SSR_FIL_AUTH ,76D,1984,1999,.002,0,3,,2128,6128,1ff,E_ACC_RR_SSR_FIL_AUTH_2 ,76D,2000,2015,.00015259,0,3,,2128,6128,ff,E_U_POWER_SSR_DIAG_SCG ,76D,16,23,1,0,0,,2129,6129,ff,E_E_Cornering_AFS_cf,0:NO_CORNERING_NO_AFS;2:NO_CORNERING_AFS_ON;1:CORNERING_ON_NO_AFS;3:CORNERING_ON_AFS_ON ,76D,24,31,1,0,0,,2129,6129,ff,E_E_HandDriving_usersetting_cf,0:dt_ENUM_HandDrivingActivationState_RIGHT_HAND_DRIVING_ACTIVATED;1:dt_ENUM_HandDrivingActivationState_LEFT_HAND_DRIVING_ACTIVATED ,76D,32,39,1,0,0,,2129,6129,ff,E_E_HandDriving_Vehicle_cf,0:dt_ENUM_HandDriving_Vehicle_RIGHT_DD;1:dt_ENUM_HandDriving_Vehicle_LEFT_DG ,76D,40,55,.025,0,2,,2129,6129,ff,E_FT_SSR_DELTA_INT_CND ,76D,56,63,3.92156862745098E-03,0,3,,2129,6129,ff,E_FT_SSR_DELTA_INT_COEF_LNT ,76D,64,79,1,0,0,,2129,6129,ff,E_FT_SSR_DELTA_INT_TH ,76D,80,95,.025,0,2,,2129,6129,ff,E_FT_SSR_DELTA_MAX_LNT ,76D,96,103,3.92156862745098E-03,0,3,,2129,6129,ff,E_FT_SSR_LOW_PASS_COEF ,76D,104,119,20,0,0,,2129,6129,ff,E_FT_SSR_LOW_PASS_PER_SEC ,76D,120,127,.392156862745098,0,1,,2129,6129,ff,E_FT_SSR_SAT_MAX_LNT ,76D,128,135,.392156862745098,0,1,,2129,6129,ff,E_FT_SSR_SAT_MIN_LNT ,76D,136,143,.06274509803921,-1,2,,2129,6129,1ff,E_K_FT_SSR_COMP_COEF_INT_SYS ,76D,144,159,1,0,0,,2129,6129,ff,E_K_N_MIN_STA_FAST_LNT_LH ,76D,160,175,1,0,0,,2129,6129,ff,E_K_N_MIN_STA_LP_LNT_LH ,76D,176,183,.06274509803922,-1,2,,2129,6129,1ff,E_K_RR_SSR_COMP_COEF_INT_SYS ,76D,184,191,3.92156862745098E-03,0,3,,2129,6129,ff,E_K_SPEED_FILTER_GAIN ,76D,192,199,.5,0,1,,2129,6129,ff,E_Pct_Antifog_Vmax_ON ,76D,200,215,.002,0,3,,2129,6129,1ff,E_Pct_MBL_OFS_EXT_FAIL ,76D,216,231,.0005,0,3,,2129,6129,1ff,E_Pct_NOM_ATT_OFS ,76D,232,247,.002,0,3,,2129,6129,1ff,E_Pct_SP_OFS_W_EXT_FAIL ,76D,248,263,.002,0,3,,2129,6129,ff,E_Pct_SP_W_LVL_FAIL ,76D,264,271,64,0,0,,2129,6129,1ff,E_ROLL_RR_SSR_FIL_AUT ,76D,272,279,64,0,0,,2129,6129,1ff,E_ROLL_RR_SSR_FIL_AUTH_2 ,76D,280,295,.025,0,2,,2129,6129,ff,E_RR_SSR_DELTA_INT_CND ,76D,296,303,3.92156862745098E-03,0,3,,2129,6129,ff,E_RR_SSR_DELTA_INT_COEF_LNT ,76D,304,319,1,0,0,,2129,6129,ff,E_RR_SSR_DELTA_INT_TH ,76D,320,335,.025,0,2,,2129,6129,ff,E_RR_SSR_DELTA_MAX_LNT ,76D,336,351,20,0,0,,2129,6129,ff,E_RR_SSR_LOW_PASS_PER_SEC ,76D,352,367,.125,0,1,,2129,6129,1ff,E_SWA_RR_SSR_FIL_AUTH_1 ,76D,368,383,.125,0,1,,2129,6129,1ff,E_SWA_RR_SSR_FIL_AUTH_2 ,76D,384,391,10,0,0,sec,2129,6129,ff,E_TM_MAN_SWI_POS_TIM ,76D,392,399,20,0,0,,2129,6129,ff,E_Ts_AUT_TH_BEAM_DLY ,76D,400,407,20,0,0,,2129,6129,ff,E_Ts_AUT_TH_VOLT_TIME ,76D,408,415,.1,0,1,,2129,6129,ff,E_U_AUT_DT_VOLT_MAX ,76D,416,423,.1,0,1,,2129,6129,ff,E_U_AUT_TH_VOLT_MAX ,76D,424,431,.1,0,1,,2129,6129,ff,E_U_AUT_TH_VOLT_MIN ,76D,432,439,1,0,0,,2129,6129,ff,E_VADA_DRIVER_SEL_TH ,76D,440,455,.01,0,2,,2129,6129,ff,E_VEH_SPD_TH_SWA_STATIC_AUT ,76D,456,463,1,0,0,,2129,6129,ff,E1d_STA_ATT_MAN_PCT_TAB_X 0 ,76D,464,471,1,0,0,,2129,6129,ff,E1d_STA_ATT_MAN_PCT_TAB_X 1 ,76D,472,479,1,0,0,,2129,6129,ff,E1d_STA_ATT_MAN_PCT_TAB_X 2 ,76D,480,487,1,0,0,,2129,6129,ff,E1d_STA_ATT_MAN_PCT_TAB_X 3 ,76D,488,495,1,0,0,,2129,6129,ff,E1d_STA_ATT_MAN_PCT_TAB_X 4 ,76D,496,503,1,0,0,,2129,6129,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_X 0 ,76D,504,511,1,0,0,,2129,6129,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_X 1 ,76D,512,519,1,0,0,,2129,6129,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_X 2 ,76D,520,527,1,0,0,,2129,6129,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_X 3 ,76D,528,535,.005,0,3,,2129,6129,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_Y 0 ,76D,536,543,.005,0,3,,2129,6129,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_Y 1 ,76D,544,551,.005,0,3,,2129,6129,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_Y 2 ,76D,552,559,.005,0,3,,2129,6129,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_Y 3 ,76D,560,575,.002,0,3,,2129,6129,1ff,E_BRAKE_RR_SSR_FIL_AUTH ,76D,576,583,1,0,0,,2129,6129,ff,E_ATT_STOP_FIL_VEH_TH ,76D,584,599,.002,0,3,,2129,6129,1ff,E_BRAKE_RR_SSR_FIL_AUTH_2 ,76D,736,743,.39215686275,0,1,,2129,6129,ff,E_Pct_FT_SSR_DIAG_CTCY_L ,76D,744,751,.39215686275,0,1,,2129,6129,ff,E_Pct_FT_SSR_DIAG_CTCY_H ,76D,752,759,1,0,0,,2129,6129,ff,E_S_SSR_INIT_VEH_SPD_TH ,76D,760,767,.39215686275,0,1,,2129,6129,ff,E_Pct_FT_SSR_INIT_RGE_H ,76D,768,775,.39215686275,0,1,,2129,6129,ff,E_Pct_FT_SSR_INIT_RGE_L ,76D,776,783,.39215686275,0,1,,2129,6129,ff,E_Pct_LVL_CMD_DIAG_LOW ,76D,784,791,.39215686275,0,1,,2129,6129,ff,E_Pct_LVL_CMD_DIAG_HIGH ,76D,792,799,1,0,0,,2129,6129,ff,E_E_MBL_cf,0:dt_ENUM_MBL_Enabled_DISABLED;1:dt_ENUM_MBL_Enabled_ENABLED ,76D,800,815,1,0,0,ms,2129,6129,ff,E_TM_LVL_CMD_ENABLE_Delay ,76D,1792,1807,.00015259,0,3,,2129,6129,ff,E_U_POWER_SSR_DIAG_SCP ,76D,1808,1823,.00015259,0,3,,2129,6129,ff,E_U_SSR_DIAG_ELEC_SCG ,76D,1824,1839,.00015259,0,3,,2129,6129,ff,E_U_SSR_DIAG_ELEC_SCP ,76D,1840,1855,.00015259,0,3,,2129,6129,ff,E_U_SSR_DIAG_RGE_H ,76D,1856,1871,.00015259,0,3,,2129,6129,ff,E_U_SSR_DIAG_RGE_L ,76D,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,76D,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,76D,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,76D,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,76D,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,76D,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,76D,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,76D,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,1:284B6;0:284B7 ,76D,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:284B7 ,76D,192,199,1,0,0,,2180,6180,4ff,ApprovalNumber.BasicPartList ,76D,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;255:Renault R3;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS R2 ,76D,16,23,1,0,0,,2181,6181,2ff,S1d_K_VINData 0 ,76D,24,31,1,0,0,,2181,6181,2ff,S1d_K_VINData 1 ,76D,32,39,1,0,0,,2181,6181,2ff,S1d_K_VINData 2 ,76D,40,47,1,0,0,,2181,6181,2ff,S1d_K_VINData 3 ,76D,48,55,1,0,0,,2181,6181,2ff,S1d_K_VINData 4 ,76D,56,63,1,0,0,,2181,6181,2ff,S1d_K_VINData 5 ,76D,64,71,1,0,0,,2181,6181,2ff,S1d_K_VINData 6 ,76D,72,79,1,0,0,,2181,6181,2ff,S1d_K_VINData 7 ,76D,80,87,1,0,0,,2181,6181,2ff,S1d_K_VINData 8 ,76D,88,95,1,0,0,,2181,6181,2ff,S1d_K_VINData 9 ,76D,96,103,1,0,0,,2181,6181,2ff,S1d_K_VINData 10 ,76D,104,111,1,0,0,,2181,6181,2ff,S1d_K_VINData 11 ,76D,112,119,1,0,0,,2181,6181,2ff,S1d_K_VINData 12 ,76D,120,127,1,0,0,,2181,6181,2ff,S1d_K_VINData 13 ,76D,128,135,1,0,0,,2181,6181,2ff,S1d_K_VINData 14 ,76D,136,143,1,0,0,,2181,6181,2ff,S1d_K_VINData 15 ,76D,144,151,1,0,0,,2181,6181,2ff,S1d_K_VINData 16 ,76D,152,159,1,0,0,,2181,6181,2ff,S1d_K_VINCRC 0 ,76D,160,167,1,0,0,,2181,6181,2ff,S1d_K_VINCRC 1 ,76D,16,23,1,0,0,,2182,6182,ff,C_E_MessageSet,0:dt_ENUMMessageSet_RENAULT;1:dt_ENUMMessageSet_NISSAN;2:dt_ENUMMessageSet_Nissan_For_Korea;3:dt_ENUMMessageSet_C1A ,76D,24,31,1,0,0,,2182,6182,ff,CAN_Bus_OFF_parameter ,76D,32,39,1,0,0,,2182,6182,ff,CAN_ECM_missing ,76D,40,47,1,0,0,,2182,6182,ff,CAN_BCM_missing ,76D,48,55,1,0,0,,2182,6182,ff,CAN_AT_missing ,76D,56,63,1,0,0,,2182,6182,ff,CAN_EPS_missing ,76D,64,71,1,0,0,,2182,6182,ff,CAN_HVAC_missing ,76D,72,79,1,0,0,,2182,6182,ff,CAN_METER_missing ,76D,80,87,1,0,0,,2182,6182,ff,CAN_IDM_missing ,76D,88,95,1,0,0,,2182,6182,ff,CAN_VADA_missing ,76D,96,103,1,0,0,,2182,6182,ff,CAN_VDC_missing ,76D,104,111,1,0,0,,2182,6182,ff,CAN_HEVC_missing ,76D,112,119,1,0,0,,2182,6182,ff,CAN_EBA_missing ,76D,120,127,1,0,0,,2182,6182,ff,CAN_MBL_missing ,76D,128,135,1,0,0,,2182,6182,ff,CAN_IVI_missing ,76D,136,143,1,0,0,,2182,6182,ff,CAN_USM_missing ,76D,16,55,1,0,0,,2183,6183,2ff,PartNumber.LowerPart ,76D,56,63,1,0,0,,2183,6183,4ff,DiagnosticIdentificationCode ,76D,64,87,1,0,0,,2183,6183,2ff,SupplierNumber.ITG ,76D,88,127,1,0,0,,2183,6183,2ff,HardwareNumber.LowerPart ,76D,128,143,1,0,0,,2183,6183,4ff,SoftwareNumber ,76D,144,159,1,0,0,,2183,6183,4ff,EditionNumber ,76D,160,175,1,0,0,,2183,6183,4ff,CalibrationNumber ,76D,176,199,1,0,0,,2183,6183,2ff,PartNumber.BasicPartList_N ,76D,200,207,1,0,0,,2183,6183,ff,ManufacturerIdentificationCode,0:Renault R1;255:Renault R3;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS R2 ,76D,16,23,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 0 ,76D,24,31,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 1 ,76D,32,39,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 2 ,76D,40,47,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 3 ,76D,48,55,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 4 ,76D,56,63,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 5 ,76D,64,71,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 6 ,76D,72,79,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 7 ,76D,80,87,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 8 ,76D,88,95,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 9 ,76D,96,103,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 10 ,76D,104,111,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 11 ,76D,112,119,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 12 ,76D,120,127,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 13 ,76D,128,135,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 14 ,76D,136,143,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 15 ,76D,144,151,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 16 ,76D,152,159,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 17 ,76D,160,167,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 18 ,76D,168,175,1,0,0,,2184,6184,2ff,S1d_K_UDTraceability 19 ,76D,24,55,1,0,0,,220000,620000,2ff,E1d_K_Local_ID 0 ,76D,56,87,1,0,0,,220000,620000,2ff,E1d_K_Local_ID 1 ,76D,24,24,1,0,0,,220001,620001,ff,E_B_ACClutchDirectActivation ,76D,24,24,1,0,0,,220002,620002,ff,E_B_EnableGatewayMode ,76D,24,24,1,0,0,,220003,620003,ff,E_B_SafetyLineInhibition ,76D,24,31,1,0,0,,220004,620004,ff,E_K_CompType ,76D,24,31,1,0,0,,220005,620005,ff,E_E_FanType,5:dt_ENUMFanType_RELAY_MODE_VLS;0:dt_ENUMFanType_PWM_MODE;1:dt_ENUMFanType_MONO_RELAY_MODE;2:dt_ENUMFanType_DUAL_RELAY_MODE;4:dt_ENUMFanType_TRI_RELAY_MODE;3:dt_ENUMFanType_RELAY_MODE ,76D,24,24,1,0,0,,220006,620006,ff,E_B_NeutralAlwaysPres_Inhibit ,76D,24,24,1,0,0,,220007,620007,ff,E_B_NeutralContact_Inhibition ,76D,24,24,1,0,0,,220008,620008,ff,E_B_NeutralNeverPresent_Inhibit ,76D,24,24,1,0,0,,220009,620009,ff,E_B_RearGearFailure_Inhibition ,76D,24,24,1,0,0,,220010,620010,ff,E_B_IgnitionHeldWithSpeed ,76D,24,24,1,0,0,,220011,620011,ff,E_B_IgnSecurityByPassEnable ,76D,24,24,1,0,0,,220012,620012,ff,E_B_OilPressureFailureInhibition ,76D,24,39,.125,0,1,,220014,620014,ff,E_RPM_OilWarningThreshold ,76D,24,31,1,0,0,,220015,620015,ff,E_E_GearBoxType,0:dt_ENUMGearBoxType_MANUAL;1:dt_ENUMGearBoxType_AUTOMATIC ,76D,24,24,1,0,0,,220017,620017,ff,E_B_WiperAutoStopProtection ,76D,24,24,1,0,0,,220018,620018,ff,E_B_WiperProtectionInhibition ,76D,24,39,1,0,0,ms,220019,620019,ff,E_TM_HighSpeedPeriod_limit_max ,76D,24,31,1,0,0,sec,220020,620020,ff,E_TM_HighSpeedWipingProtection ,76D,24,39,1,0,0,ms,220021,620021,ff,E_TM_LowSpeedPeriod_limit_max ,76D,24,31,1,0,0,sec,220022,620022,ff,E_TM_LowSpeedWipingProtection ,76D,24,24,1,0,0,,220023,620023,ff,E_B_DRLWithoutPWM ,76D,24,24,1,0,0,,220024,620024,ff,E_B_FrontFogWithoutPWM ,76D,24,24,1,0,0,,220025,620025,ff,E_B_HighBeamWithoutPWM ,76D,24,24,1,0,0,,220026,620026,ff,E_B_LowBeamWithoutPWM ,76D,24,24,1,0,0,,220028,620028,ff,E_B_PositionFrontWithoutPWM ,76D,24,24,1,0,0,,220029,620029,ff,E_B_PositionRear1WithoutPWM ,76D,24,24,1,0,0,,220030,620030,ff,E_B_PositionRear2WithoutPWM ,76D,24,31,1,0,0,,220031,620031,ff,E_E_DRLType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,24,31,1,0,0,,220032,620032,ff,E_E_LowBeamType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,24,31,1,0,0,,220033,620033,ff,E_E_PositionFrontType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,24,31,1,0,0,,220034,620034,ff,E_E_PositionRear1Type,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,24,31,1,0,0,,220035,620035,ff,E_E_PositionRear2Type,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,24,31,1,0,0,,220036,620036,ff,E_K_Singlebulb_DRL_Tail ,76D,24,31,.01,0,2,,220053,620053,ff,E_Pct_DRL_Tail ,76D,24,24,1,0,0,,220055,620055,ff,E_B_Nissan_AT_CVT_cf ,76D,24,31,1,0,0,,220100,620100,ff,E_E_HandDriving_usersetting_cf,0:dt_ENUM_HandDrivingActivationState_RIGHT_HAND_DRIVING_ACTIVATED;1:dt_ENUM_HandDrivingActivationState_LEFT_HAND_DRIVING_ACTIVATED ,76D,24,31,1,0,0,,220101,620101,ff,E_E_Voltage_Rate_ECM_LHM,0:dt_ENUMVoltageRate_NO_REQUEST;1:dt_ENUMVoltageRate_RATE_1;2:dt_ENUMVoltageRate_RATE_2;3:dt_ENUMVoltageRate_RATE_3;4:dt_ENUMVoltageRate_RATE_4 ,76D,24,31,.1,0,1,,220102,620102,ff,E_TM_welcome_dot_delay ,76D,24,31,1,0,0,,220103,620103,ff,E_E_FrontFogType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,24,31,.1,0,1,,220104,620104,ff,E_U_RegenCurr_low_thd ,76D,24,31,.01,0,2,,220135,620135,ff,E_K_High_limit_max ,76D,24,31,.01,0,2,,220136,620136,ff,E_K_High_limit_min ,76D,24,31,.01,0,2,,220137,620137,ff,E_K_Low_limit_max ,76D,24,31,.01,0,2,,220138,620138,ff,E_K_Low_limit_min ,76D,24,31,1,0,0,,220139,620139,ff,E_K_TempGradientMax ,76D,24,31,1,0,0,,220140,620140,ff,E_PWM_EngineFanSpeed_Min ,76D,24,39,.01,0,2,,220141,620141,ff,E_S_DefaultVehicleSpeed_high ,76D,24,39,.01,0,2,,220142,620142,ff,E_S_mCHTRVSP ,76D,24,31,1,0,0,,220143,620143,ff,E_S_veh_limit_max ,76D,24,31,1,0,0,,220144,620144,ff,E_S_veh_limit_min ,76D,24,39,1,0,0,,220145,620145,ff,E_Tau_Engine ,76D,24,31,1,40,0,,220146,620146,ff,E_Temp_DefaultEngineCoolTemp ,76D,24,31,1,40,0,,220147,620147,ff,E_Temp_Eq_ext_limit_max ,76D,24,31,1,40,0,,220148,620148,ff,E_Temp_Eq_ext_limit_min ,76D,24,31,.5,100,1,,220149,620149,ff,E_Temp_mNPOFS ,76D,24,24,1,0,0,,220153,620153,ff,E_B_STOPSTARTInhibit ,76D,24,39,.01,0,2,,220158,620158,ff,E_K_CoeffCorrTemp ,76D,24,31,1,40,0,,220173,620173,ff,E_Temp_Ref ,76D,24,31,.1,0,1,,220176,620176,ff,E_TM_LimitTime_CustomerConf ,76D,24,39,.01,0,2,,220190,620190,ff,E1d_K_chargeCoeff 0 ,76D,40,55,.01,0,2,,220190,620190,ff,E1d_K_chargeCoeff 1 ,76D,24,39,.01,0,2,,220191,620191,ff,E1d_K_DischargeCoeff 0 ,76D,40,55,.01,0,2,,220191,620191,ff,E1d_K_DischargeCoeff 1 ,76D,24,39,.001,0,3,,220206,620206,1ff,E1d_U_OffsetV_duringTechWakeUp 0 ,76D,40,55,.001,0,3,,220206,620206,1ff,E1d_U_OffsetV_duringTechWakeUp 1 ,76D,56,71,.001,0,3,,220206,620206,1ff,E1d_U_OffsetV_duringTechWakeUp 2 ,76D,24,39,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 0 ,76D,40,55,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 1 ,76D,56,71,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 2 ,76D,72,87,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 3 ,76D,88,103,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 4 ,76D,104,119,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 5 ,76D,120,135,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 6 ,76D,136,151,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 7 ,76D,152,167,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 8 ,76D,168,183,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 9 ,76D,184,199,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 10 ,76D,200,215,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 11 ,76D,216,231,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 12 ,76D,232,247,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 13 ,76D,248,263,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 14 ,76D,264,279,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 15 ,76D,280,295,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 16 ,76D,296,311,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 17 ,76D,312,327,.01,0,2,,220215,620215,ff,E1d_U_VMiniAlert_cold 18 ,76D,24,39,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 0 ,76D,40,55,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 1 ,76D,56,71,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 2 ,76D,72,87,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 3 ,76D,88,103,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 4 ,76D,104,119,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 5 ,76D,120,135,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 6 ,76D,136,151,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 7 ,76D,152,167,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 8 ,76D,168,183,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 9 ,76D,184,199,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 10 ,76D,200,215,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 11 ,76D,216,231,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 12 ,76D,232,247,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 13 ,76D,248,263,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 14 ,76D,264,279,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 15 ,76D,280,295,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 16 ,76D,296,311,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 17 ,76D,312,327,.01,0,2,,220218,620218,ff,E1d_U_VMiniAlert_warm 18 ,76D,24,24,1,0,0,,220241,620241,ff,E_B_SOCAuthorizedESM_init ,76D,24,24,1,0,0,,220242,620242,ff,E_B_SOCforDOD_ESM_init ,76D,24,24,1,0,0,,220243,620243,ff,E_B_SOCforDOD_SS_init ,76D,24,31,.1,0,1,,220246,620246,ff,E_Pct_SOCAuthorizedESM_hyst ,76D,24,31,1,0,0,,220247,620247,ff,E_Pct_SOCAuthorizedESM_min ,76D,24,31,.1,0,1,,220248,620248,ff,E_Pct_SOCforDOD_ESM_hyst ,76D,24,31,.5,0,1,,220249,620249,ff,E_Pct_SOCforDOD_ESM_min ,76D,24,31,.1,0,1,,220250,620250,ff,E_Pct_SOCforDOD_SS_hyst ,76D,24,31,.5,0,1,,220251,620251,ff,E_Pct_SOCforDOD_SS_min ,76D,24,31,1,0,0,,220253,620253,ff,E_TM_CurrentStop_max ,76D,24,31,1,0,0,,220260,620260,ff,E_TM_PrimStorDiscDetect ,76D,24,39,1,0,0,,220262,620262,ff,E_U_MedSticking_max ,76D,24,39,1,0,0,,220263,620263,ff,E_U_MedSticking_min ,76D,24,39,1,0,0,,220273,620273,ff,E_TM_LOB_Authorized_Max ,76D,24,39,1,0,0,,220274,620274,ff,E_TM_LOB_Authorized_Min ,76D,24,24,1,0,0,,220278,620278,ff,E_B_MMILowBattCustom_Activ ,76D,24,24,1,0,0,,220279,620279,ff,E_B_MMILowBattDeliv_Activ ,76D,24,39,1,0,0,,220289,620289,ff,E_TM_WaitCustomerMode ,76D,24,39,1,0,0,,220290,620290,ff,E_TM_WaitDeliveryMode ,76D,24,24,1,0,0,,220293,620293,ff,E_B_FloatingInhibit ,76D,24,31,.1,0,1,,220301,620301,ff,E_dU_ESM_pos_rate ,76D,24,31,.1,0,1,,220303,620303,ff,E_dU_Rate0_by_AC ,76D,24,31,.1,0,1,,220304,620304,ff,E_dU_Rate0_by_BCM ,76D,24,31,.1,0,1,,220305,620305,ff,E_dU_Rate0_by_ECM ,76D,24,31,.1,0,1,,220306,620306,ff,E_dU_Rate1_by_AC ,76D,24,31,.1,0,1,,220307,620307,ff,E_dU_Rate1_by_BCM ,76D,24,31,.1,0,1,,220308,620308,ff,E_dU_Rate1_by_ECM ,76D,24,31,.1,0,1,,220309,620309,ff,E_dU_Rate2_by_AC ,76D,24,31,.1,0,1,,220310,620310,ff,E_dU_Rate2_by_BCM ,76D,24,31,.1,0,1,,220311,620311,ff,E_dU_Rate2_by_ECM ,76D,24,31,.1,0,1,,220312,620312,ff,E_dU_Rate3_by_AC ,76D,24,31,.1,0,1,,220313,620313,ff,E_dU_Rate3_by_BCM ,76D,24,31,.1,0,1,,220314,620314,ff,E_dU_Rate3_by_ECM ,76D,24,31,1,0,0,,220322,620322,ff,E_Pct_FloatingSOCHigh ,76D,24,31,1,0,0,,220323,620323,ff,E_Pct_FloatingSOCLow ,76D,24,31,1,40,0,,220325,620325,ff,E_Temp_FloatingInhibit ,76D,24,31,.1,0,1,,220343,620343,ff,E_U_Floating ,76D,24,31,.1,0,1,,220345,620345,ff,E_U_OffsetMAX ,76D,24,31,.1,0,1,,220346,620346,ff,E_U_OffsetMIN ,76D,24,31,.1,0,1,,220347,620347,ff,E_U_OptiVoltNoDischarge ,76D,24,31,.1,0,1,,220363,620363,ff,E_dU_ESM_neg_rate ,76D,24,24,1,0,0,,220367,620367,ff,E_B_TempSens_HighOutDiag ,76D,24,24,1,0,0,,220368,620368,ff,E_B_TempSens_LowOutDiag ,76D,24,24,1,0,0,,22036A,62036A,ff,E_B_BattSens_MedStickDiag ,76D,24,24,1,0,0,,22036B,62036B,ff,E_B_BattSens_LowOutDiag ,76D,24,24,1,0,0,,22036C,62036C,ff,E_B_BattSens_HighOutDiag ,76D,24,31,.1,0,1,,220379,620379,ff,E_U_BattThresTempSensDgn ,76D,24,31,1,0,0,,220385,620385,ff,V_E_SOFC_Status_bpv,0:dt_ENUMSOFforSS_STATUS_NOK;1:dt_ENUMSOFforSS_STATUS_OK;2:dt_ENUMSOFforSS_STATUS_NOK_CONFIRMED ,76D,24,39,.001,0,3,,220387,620387,ff,V_U_Prim_Storage_volt_1_flt_bpv ,76D,24,39,.001,0,3,,220388,620388,ff,V_U_Prod_Voltage_req_bpv ,76D,24,31,1,40,0,°C,220389,620389,ff,V_Temp_Prim_Storage_est_bpv ,76D,24,39,.01,0,2,,22038A,62038A,ff,V_Pct_Prim_Storage_SOC_est_bpv ,76D,24,31,1,0,0,,22038B,62038B,ff,V_E_EEM_StopAutoForbidden_bpv,0:dt_ENUMStopAutoForbidden_UNAVAILABLE;1:dt_ENUMStopAutoForbidden_STOPAUTOFORBIDDEN;2:dt_ENUMStopAutoForbidden_STOPAUTOAUTHORIZED;3:dt_ENUMStopAutoForbidden_NOTUSED ,76D,24,24,1,0,0,,22038C,62038C,ff,V_B_EEM_StopAutoForbidden_bps ,76D,24,24,1,0,0,,22038D,62038D,ff,V_B_Prim_Storage_SOC_est_bps ,76D,24,24,1,0,0,,22038E,62038E,ff,V_B_Prim_Storage_volt_1_flt_bps ,76D,24,24,1,0,0,,22038F,62038F,ff,V_B_SOFC_Status_bps ,76D,24,24,1,0,0,,220390,620390,ff,V_B_Temp_Prim_Storage_est_bps ,76D,24,24,1,0,0,,220391,620391,ff,V_B_Prod_Voltage_req_bps ,76D,24,39,.002,0,3,,220392,620392,1ff,E_ACC_RR_SSR_FIL_AUTH ,76D,24,39,.002,0,3,,220393,620393,1ff,E_ACC_RR_SSR_FIL_AUTH_2 ,76D,24,31,1,0,0,,220394,620394,ff,E_ATT_STOP_FIL_VEH_TH ,76D,24,39,.0005,0,3,,220395,620395,1ff,E_ATT_THR_STOP_FIL ,76D,24,31,20,0,0,,220396,620396,ff,E_ATT_TIMER_STOP_FILT ,76D,24,39,.002,0,3,,220397,620397,1ff,E_BRAKE_RR_SSR_FIL_AUTH ,76D,24,39,.002,0,3,,220398,620398,1ff,E_BRAKE_RR_SSR_FIL_AUTH_2 ,76D,24,31,6.27450980392157E-03,0,3,,220399,620399,ff,E_D_WHEEL_HDLMP_DIST ,76D,24,31,1,0,0,,22039A,62039A,ff,E_E_LVL_CFG,0:dt_ENUMLvlCfg_NO_LVL;1:dt_ENUMLvlCfg_RR_SSR;2:dt_ENUMLvlCfg_FT_SSR;3:dt_ENUMLvlCfg_MAN_STEPS;255:dt_ENUMLvlCfg_LVL_MAX;4:dt_ENUMLvlCfg_MAN_INC_DEC ,76D,24,39,1.52590218966964E-05,0,3,,22039B,62039B,1ff,E_FT_SSR_ATT_COEF ,76D,24,31,.06274509803921,-1,2,,22039C,62039C,1ff,E_FT_SSR_COMP_COEF ,76D,24,39,.025,0,2,,22039D,62039D,ff,E_FT_SSR_DELTA_INT_CND ,76D,24,31,3.92156862745098E-03,0,3,,22039E,62039E,ff,E_FT_SSR_DELTA_INT_COEF_LNT ,76D,24,39,1,0,0,,22039F,62039F,ff,E_FT_SSR_DELTA_INT_TH ,76D,24,39,.025,0,2,,2203A0,6203A0,ff,E_FT_SSR_DELTA_MAX_LNT ,76D,24,31,3.92156862745098E-03,0,3,,2203A1,6203A1,ff,E_FT_SSR_LOW_PASS_COEF ,76D,24,39,20,0,0,,2203A2,6203A2,ff,E_FT_SSR_LOW_PASS_PER_SEC ,76D,24,31,.392156862745098,0,1,,2203A3,6203A3,ff,E_FT_SSR_SAT_MAX_LNT ,76D,24,31,.392156862745098,0,1,,2203A4,6203A4,ff,E_FT_SSR_SAT_MIN_LNT ,76D,24,31,.06274509803921,-1,2,,2203A5,6203A5,1ff,E_K_FT_SSR_COMP_COEF_INT_SYS ,76D,24,39,1.52590218966964E-05,0,3,,2203A6,6203A6,ff,E_K_HDLMP_MECH_ATT ,76D,24,31,3.92156862745098E-03,0,3,,2203A7,6203A7,ff,E_K_MAN_SWI_FIL_COEF ,76D,24,39,.0305180437934,0,2,,2203A8,6203A8,1ff,E_K_MOTOR_ATT_STAT_COEF ,76D,24,39,1,0,0,,2203A9,6203A9,ff,E_K_N_MIN_STA_FAST_LNT_LH ,76D,24,39,1,0,0,,2203AA,6203AA,ff,E_K_N_MIN_STA_LP_LNT_LH ,76D,24,31,.06274509803922,-1,2,,2203AB,6203AB,1ff,E_K_RR_SSR_COMP_COEF_INT_SYS ,76D,24,31,3.92156862745098E-03,0,3,,2203AC,6203AC,ff,E_K_SPEED_FILTER_GAIN ,76D,24,31,3.92156862745098E-03,0,3,,2203AD,6203AD,ff,E_K_SWA_FILTER_COEF ,76D,24,39,.025,0,2,,2203AE,6203AE,ff,S_Pct_FT_SSR_init ,76D,24,31,.4,0,1,,2203AF,6203AF,ff,E_Pct_MAN_SWI_INDEX_BAND ,76D,24,31,.4,0,1,,2203B0,6203B0,ff,E_Pct_MAN_SWI_INDEX_TAB_1 ,76D,24,31,.4,0,1,,2203B1,6203B1,ff,E_Pct_MAN_SWI_INDEX_TAB_2 ,76D,24,31,.4,0,1,,2203B2,6203B2,ff,E_Pct_MAN_SWI_INDEX_TAB_3 ,76D,24,31,.4,0,1,,2203B3,6203B3,ff,E_Pct_MAN_SWI_INDEX_TAB_4 ,76D,24,31,.4,0,1,,2203B4,6203B4,ff,E_Pct_MAN_SWI_INDEX_TAB_5 ,76D,24,39,.0005,0,3,,2203B5,6203B5,1ff,E_Pct_NOM_ATT_OFS ,76D,24,39,.002,0,3,,2203B6,6203B6,ff,E_Pct_NOM_PWM_OFS ,76D,24,39,.002,0,3,,2203B7,6203B7,ff,E_Pct_PWM_NOM_MAX ,76D,24,39,.002,0,3,,2203B8,6203B8,ff,E_Pct_PWM_NOM_MIN ,76D,24,39,.025,0,2,,2203B9,6203B9,ff,S_Pct_RR_SSR_init ,76D,24,39,.002,0,3,,2203BB,6203BB,1ff,E_Pct_SP_OFS_W_EXT_FAIL ,76D,24,39,.002,0,3,,2203BC,6203BC,ff,E_Pct_SP_W_LVL_FAIL ,76D,24,31,64,0,0,,2203BD,6203BD,1ff,E_ROLL_RR_SSR_FIL_AUT ,76D,24,31,64,0,0,,2203BE,6203BE,1ff,E_ROLL_RR_SSR_FIL_AUTH_2 ,76D,24,39,1.52590218966964E-05,0,3,,2203BF,6203BF,1ff,E_RR_SSR_ATT_COEF ,76D,24,39,.025,0,2,,2203C0,6203C0,ff,E_RR_SSR_DELTA_INT_CND ,76D,24,31,3.92156862745098E-03,0,3,,2203C1,6203C1,ff,E_RR_SSR_DELTA_INT_COEF_LNT ,76D,24,39,1,0,0,,2203C2,6203C2,ff,E_RR_SSR_DELTA_INT_TH ,76D,24,39,.025,0,2,,2203C3,6203C3,ff,E_RR_SSR_DELTA_MAX_LNT ,76D,24,31,3.92156862745098E-03,0,3,,2203C4,6203C4,ff,E_RR_SSR_LOW_PASS_COEF ,76D,24,39,20,0,0,,2203C5,6203C5,ff,E_RR_SSR_LOW_PASS_PER_SEC ,76D,24,31,.392156862745098,0,1,,2203C6,6203C6,ff,E_RR_SSR_SAT_MAX_LNT ,76D,24,31,.392156862745098,0,1,,2203C7,6203C7,ff,E_RR_SSR_SAT_MIN_LNT ,76D,24,39,.125,0,1,,2203C8,6203C8,1ff,E_SWA_RR_SSR_FIL_AUTH_1 ,76D,24,39,.125,0,1,,2203C9,6203C9,1ff,E_SWA_RR_SSR_FIL_AUTH_2 ,76D,24,31,20,0,0,,2203CA,6203CA,ff,E_Ts_AUT_TH_BEAM_DLY ,76D,24,31,20,0,0,,2203CB,6203CB,ff,E_Ts_AUT_TH_VOLT_TIME ,76D,24,31,20,0,0,,2203CC,6203CC,ff,E_Ts_MAN_SWI_INDEX_TIM ,76D,24,31,.1,0,1,,2203CD,6203CD,ff,E_U_AUT_DT_VOLT_MAX ,76D,24,31,20,0,0,,2203CE,6203CE,ff,E_U_AUT_DT_VOLT_MAX_TIME ,76D,24,31,.1,0,1,,2203CF,6203CF,ff,E_U_AUT_TH_VOLT_MAX ,76D,24,31,.1,0,1,,2203D0,6203D0,ff,E_U_AUT_TH_VOLT_MIN ,76D,24,31,1,0,0,,2203D1,6203D1,ff,E_VADA_DRIVER_SEL_TH ,76D,24,39,.01,0,2,,2203D2,6203D2,ff,E_VEH_SPD_TH_SWA_STATIC_AUT ,76D,24,39,1,0,0,,2203D3,6203D3,ff,E_WHEEL_BASE ,76D,24,31,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 0 ,76D,32,39,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 1 ,76D,40,47,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 2 ,76D,48,55,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 3 ,76D,56,63,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 4 ,76D,64,71,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 5 ,76D,72,79,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 6 ,76D,80,87,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 7 ,76D,88,95,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 8 ,76D,96,103,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 9 ,76D,104,111,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 10 ,76D,112,119,1,0,0,,2203D4,6203D4,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_X 11 ,76D,24,31,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 0 ,76D,32,39,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 1 ,76D,40,47,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 2 ,76D,48,55,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 3 ,76D,56,63,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 4 ,76D,64,71,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 5 ,76D,72,79,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 6 ,76D,80,87,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 7 ,76D,88,95,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 8 ,76D,96,103,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 9 ,76D,104,111,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 10 ,76D,112,119,1,0,0,,2203D5,6203D5,1ff,E1d_RR_TO_FT_SSR_DELTA_TAB_Y 11 ,76D,24,31,1,0,0,,2203D6,6203D6,ff,E1d_STA_ATT_MAN_PCT_TAB_X 0 ,76D,32,39,1,0,0,,2203D6,6203D6,ff,E1d_STA_ATT_MAN_PCT_TAB_X 1 ,76D,40,47,1,0,0,,2203D6,6203D6,ff,E1d_STA_ATT_MAN_PCT_TAB_X 2 ,76D,48,55,1,0,0,,2203D6,6203D6,ff,E1d_STA_ATT_MAN_PCT_TAB_X 3 ,76D,56,63,1,0,0,,2203D6,6203D6,ff,E1d_STA_ATT_MAN_PCT_TAB_X 4 ,76D,24,39,.0005,0,3,,2203D7,6203D7,1ff,E1d_STA_ATT_MAN_PCT_TAB_Y 0 ,76D,40,55,.0005,0,3,,2203D7,6203D7,1ff,E1d_STA_ATT_MAN_PCT_TAB_Y 1 ,76D,56,71,.0005,0,3,,2203D7,6203D7,1ff,E1d_STA_ATT_MAN_PCT_TAB_Y 2 ,76D,72,87,.0005,0,3,,2203D7,6203D7,1ff,E1d_STA_ATT_MAN_PCT_TAB_Y 3 ,76D,88,103,.0005,0,3,,2203D7,6203D7,1ff,E1d_STA_ATT_MAN_PCT_TAB_Y 4 ,76D,24,31,1,0,0,,2203D8,6203D8,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_X 0 ,76D,32,39,1,0,0,,2203D8,6203D8,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_X 1 ,76D,40,47,1,0,0,,2203D8,6203D8,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_X 2 ,76D,48,55,1,0,0,,2203D8,6203D8,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_X 3 ,76D,24,31,.005,0,3,,2203D9,6203D9,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_Y 0 ,76D,32,39,.005,0,3,,2203D9,6203D9,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_Y 1 ,76D,40,47,.005,0,3,,2203D9,6203D9,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_Y 2 ,76D,48,55,.005,0,3,,2203D9,6203D9,ff,E1d_VEH_SPD_SSR_FIL_COEF_TAB_Y 3 ,76D,24,31,1,0,0,,2203E6,6203E6,ff,E_E_ECUSupplyChoiceforSOF,0:dt_ENUMSupply_ECUSupply1;1:dt_ENUMSupply_ECUSupply2 ,76D,24,24,1,0,0,,220412,620412,ff,E_B_InhibitSSinDelivery ,76D,24,31,.001,0,3,,220413,620413,ff,E_Kaw_pos ,76D,24,31,.001,0,3,,220415,620415,ff,E_Kaw_neg ,76D,24,39,.01,0,2,,220416,620416,ff,E_TM_PrimStorTempActiv_delay ,76D,24,31,1,0,0,,220421,620421,ff,E_A_Threshold_A1 ,76D,24,31,1,0,0,,220422,620422,ff,E_A_Threshold_A2 ,76D,24,31,1,0,0,,220423,620423,ff,E_A_Threshold_X1 ,76D,24,31,1,0,0,,220424,620424,ff,E_A_Threshold_X2 ,76D,24,24,1,0,0,,220427,620427,ff,E_B_FBL ,76D,24,24,1,0,0,,220428,620428,ff,E_B_FBLWithoutPWM ,76D,24,31,1,0,0,,220429,620429,ff,E_S_Threshold_V6 ,76D,24,31,1,0,0,,22042A,62042A,ff,E_S_Threshold_V5 ,76D,24,31,1,0,0,,22042B,62042B,ff,E_S_Threshold_V4 ,76D,24,31,1,0,0,,22042C,62042C,ff,E_S_Threshold_V3 ,76D,24,31,1,0,0,,22042D,62042D,ff,E_S_Threshold_V2 ,76D,24,31,1,0,0,,22042E,62042E,ff,E_S_Threshold_V1 ,76D,24,31,.01,0,2,,22042F,62042F,ff,E_PWM_FBL_Y_Min ,76D,24,31,.01,0,2,,220430,620430,ff,E_PWM_FBL_Y_Max ,76D,24,31,.01,0,2,,220431,620431,ff,E_PWM_Cor_Y_Min ,76D,24,31,.01,0,2,,220432,620432,ff,E_PWM_Cor_Y_Max ,76D,24,31,1,0,0,,220433,620433,ff,E_K_FBL_Dimming_step_nb ,76D,24,31,1,0,0,,220434,620434,ff,E_K_Cor_Dimming_step_nb ,76D,24,31,.1,0,1,,22043C,62043C,ff,E_TM_Dimming_Time_Cor ,76D,24,31,.01,0,2,,22043E,62043E,ff,E_U_DRLLeftOffset ,76D,24,31,.01,0,2,,22043F,62043F,ff,E_U_DRLRightOffset ,76D,24,31,.05,0,2,,220440,620440,ff,E_U_FBL_BeamLeftOffset ,76D,24,31,.05,0,2,,220441,620441,ff,E_U_FBL_BeamRightOffset ,76D,24,31,.01,0,2,,220442,620442,ff,E_U_FrontFogLeftOffset ,76D,24,31,.01,0,2,,220443,620443,ff,E_U_FrontFogRightOffset ,76D,24,31,.01,0,2,,220444,620444,ff,E_U_HighBeamLeftOffset ,76D,24,31,.01,0,2,,220445,620445,ff,E_U_HighBeamRightOffset ,76D,24,31,.01,0,2,,220446,620446,ff,E_U_LowBeamLeftOffset ,76D,24,31,.01,0,2,,220447,620447,ff,E_U_LowBeamRightOffset ,76D,24,31,.01,0,2,,220448,620448,ff,E_U_TAIL1LeftOffset ,76D,24,31,.01,0,2,,220449,620449,ff,E_U_TAIL2Offset ,76D,24,31,.01,0,2,,22044A,62044A,ff,E_U_TAIL3Offset ,76D,24,24,1,0,0,,22044C,62044C,ff,E_B_FullWiperProtectionInhib ,76D,24,39,10,0,0,,22044D,62044D,ff,S_K_StoredStarterCounter ,76D,24,39,10,0,0,,22044E,62044E,ff,S_K_StoredHPPumpCounter ,76D,24,31,.39215686275,0,1,,22044F,62044F,ff,E_Pct_FT_SSR_DIAG_CTCY_H ,76D,24,31,.39215686275,0,1,,220450,620450,ff,E_Pct_FT_SSR_DIAG_CTCY_L ,76D,24,31,.39215686275,0,1,,220451,620451,ff,E_Pct_FT_SSR_INIT_RGE_H ,76D,24,31,.39215686275,0,1,,220452,620452,ff,E_Pct_FT_SSR_INIT_RGE_L ,76D,24,31,.39215686275,0,1,,220454,620454,ff,E_Pct_LVL_CMD_DIAG_HIGH ,76D,24,31,.39215686275,0,1,,220455,620455,ff,E_Pct_LVL_CMD_DIAG_LOW ,76D,24,31,.39215686275,0,1,,220458,620458,ff,E_Pct_RR_SSR_DIAG_CTCY_H ,76D,24,31,.39215686275,0,1,,220459,620459,ff,E_Pct_RR_SSR_DIAG_CTCY_L ,76D,24,31,.39215686275,0,1,,22045A,62045A,ff,E_Pct_RR_SSR_INIT_RGE_H ,76D,24,31,.39215686275,0,1,,22045B,62045B,ff,E_Pct_RR_SSR_INIT_RGE_L ,76D,24,31,1,0,0,,22045C,62045C,ff,E_S_SSR_INIT_VEH_SPD_TH ,76D,24,39,.00015259,0,3,,22045D,62045D,ff,E_U_MAN_SWI_DIAG_ELEC_SCG ,76D,24,39,.00015259,0,3,,22045E,62045E,ff,E_U_MAN_SWI_DIAG_ELEC_SCP ,76D,24,39,.00015259,0,3,,22045F,62045F,ff,E_U_POWER_SSR_DIAG_SCG ,76D,24,39,.00015259,0,3,,220460,620460,ff,E_U_POWER_SSR_DIAG_SCP ,76D,24,39,.00015259,0,3,,220461,620461,ff,E_U_SSR_DIAG_ELEC_SCG ,76D,24,39,.00015259,0,3,,220462,620462,ff,E_U_SSR_DIAG_ELEC_SCP ,76D,24,39,.00015259,0,3,,220463,620463,ff,E_U_SSR_DIAG_RGE_H ,76D,24,39,.00015259,0,3,,220464,620464,ff,E_U_SSR_DIAG_RGE_L ,76D,24,31,1,0,0,,220466,620466,ff,E_Pct_SOCafterCharger ,76D,24,39,.01,0,2,,220467,620467,ff,E_U_VeryPolarizedOCV_threshold ,76D,24,39,.001,0,3,,220472,620472,ff,E_U_CoeffD ,76D,24,39,1,0,0,ms,220482,620482,ff,E_TM_LVL_CMD_ENABLE_Delay ,76D,24,31,1,0,0,,220492,620492,ff,E_E_GearBoxType_sty,0:dt_ENUMGearBoxType_MANUAL;1:dt_ENUMGearBoxType_AUTOMATIC ,76D,24,24,1,0,0,,220494,620494,ff,E_B_IgnitionHeldWithSpeed_sty_inv ,76D,24,24,1,0,0,,220495,620495,ff,E_B_LowBeamWithoutPWM_sty_inv ,76D,24,55,1,0,0,,220496,620496,4ff,E_TM_LongParkingTime ,76D,24,31,1,0,0,,220704,620704,ff,V_K_MAN_SWITCH_INDEX_int ,76D,24,39,.025,0,2,,220707,620707,ff,V_Pct_FT_SSR_FIL_FOR_STA_int ,76D,24,39,.025,0,2,,220708,620708,ff,V_Pct_RR_SSR_FIL_FOR_STA_int ,76D,24,31,1,0,0,,22070B,62070B,ff,V_K_FAILURE_STATE_int ,76D,24,31,.39215686275,0,1,,22070C,62070C,ff,V_K_LVL_ANALOG_CMD_CALC ,76D,24,31,.39215686275,0,1,,22070D,62070D,ff,V_K_LVL_ANALOG_CMD_MEAS ,76D,24,31,.39215686275,0,1,,22070E,62070E,ff,V_K_LVL_ANALOG_CMD_DIF ,76D,24,39,.0005,0,3,,22070F,62070F,1ff,V_Pct_VEH_ATT_PCT_int ,76D,24,39,1,0,0,,22071A,62071A,ff,E_Ki_CurrentLowS ,76D,24,39,1,0,0,,22071B,62071B,ff,E_Ki_CurrentNorm ,76D,24,31,1,0,0,,22071C,62071C,ff,E_Kp_CurrentLowS ,76D,24,39,1,0,0,,22071D,62071D,ff,E_Kp_CurrentNorm ,76D,24,39,.1,0,1,,22071E,62071E,ff,E_Td_CurrentLowS ,76D,24,39,.1,0,1,,22071F,62071F,ff,E_Td_CurrentNorm ,76D,24,24,1,0,0,,220721,620721,ff,E_B_AutoStart_HV ,76D,24,31,.1,0,1,,220722,620722,ff,E_TM_IgnDelayTimeOut ,76D,24,31,1,0,0,,220731,620731,ff,E_Pct_SOC_LOB ,76D,24,39,.001,0,3,,220733,620733,ff,E_U_MinimumVoltageByLight ,76D,24,31,.1,0,1,,220735,620735,ff,E_dU_ESM_min_neg_rate ,76D,24,31,.1,0,1,,220736,620736,ff,E_dU_ESM_min_pos_rate ,76D,24,31,15,0,0,,220737,620737,ff,E_TM_NoLightLimitation ,76D,24,31,1,0,0,,220738,620738,ff,E_K_JaugeMin_Lights ,76D,24,31,1,40,0,,220739,620739,ff,E_Temp_BattMin_Lights ,76D,24,31,1,40,0,,22073A,62073A,ff,E_Temp_EngineMin_Lights ,76D,24,31,.1,0,1,,22073B,62073B,ff,E_U_ESM_step ,76D,24,31,.1,0,1,,22073C,62073C,ff,E_U_max_by_Lights ,76D,24,24,1,0,0,,22073F,62073F,ff,E_B_InhibDecoBatt_sty ,76D,24,24,1,0,0,,220740,620740,ff,E_B_InhibDecoBatt_sty_inv ,76D,24,24,1,0,0,,220741,620741,ff,E_B_ESMInhibit ,76D,24,24,1,0,0,,220742,620742,ff,E_B_VADA_Present ,76D,24,24,1,0,0,,22074F,62074F,ff,E_B_SailingIdle_Inhibit ,76D,24,24,1,0,0,,220750,620750,ff,E_B_InhibitSailinginDelivery ,76D,24,31,.01,0,2,,220756,620756,ff,E_Pct_HBeam_DRL ,76D,24,31,.1,0,1,sec,22075A,62075A,ff,E_TM_Cranking_OK ,76D,24,31,1,0,0,,22075C,62075C,ff,E_TM_UnderVFaultDetInhibition ,76D,24,24,1,0,0,,22075D,62075D,ff,E_B_USM_ST_CUT_ON ,76D,24,31,.01,0,2,,220762,620762,ff,E_TM_Offset_time ,76D,24,31,.025,0,2,,220763,620763,1ff,E_U_Prod_Req_Offset_1 ,76D,24,31,.025,0,2,,220764,620764,1ff,E_U_Prod_Req_Offset_2 ,76D,24,31,.025,0,2,,220765,620765,1ff,E_U_Prod_Req_Offset_3 ,76D,24,31,.025,0,2,,220766,620766,1ff,E_U_Prod_Req_Offset_4 ,76D,24,31,.1,0,1,,220767,620767,ff,E_Tau_CurrentConsumedByAux ,76D,24,31,.1,0,1,,220768,620768,ff,E_Tau_PowerConsumedByAux ,76D,24,24,1,0,0,,220769,620769,ff,E_B_BattCurrentSensor_present ,76D,24,24,1,0,0,,22076A,62076A,ff,E_B_Deliv_Inhibit ,76D,24,24,1,0,0,,22076B,62076B,ff,E_B_LOB_Lim_Inhibit ,76D,24,24,1,0,0,,22076C,62076C,ff,E_B_MMI_LOB_Inhibit ,76D,24,24,1,0,0,,22076D,62076D,ff,E_B_Prod_Fail_Inhibit ,76D,24,24,1,0,0,,22076E,62076E,ff,E_B_Storages_Fail_Inhibit ,76D,24,31,1,0,0,,22076F,62076F,ff,E_TM_LOB_LIM_delay ,76D,24,39,1,0,0,,220770,620770,ff,E_TM_MMI_LOB_Duration ,76D,24,31,.1,0,1,,220771,620771,ff,E_U_Voltage_LOB_Threshold ,76D,24,24,1,0,0,,220772,620772,ff,E_B_Prim_Stor_CurrSens_presnt ,76D,24,31,1,0,0,,220773,620773,ff,E_E_Overvoltage_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,24,31,1,0,0,,220774,620774,ff,E_E_Prim_current_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,24,31,1,0,0,,220775,620775,ff,E_E_PrimStorDisco_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,24,31,1,0,0,,220776,620776,ff,E_E_Ref_VoltageMes_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,24,31,1,0,0,,220777,620777,ff,E_E_Sys_Com_Fault_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,24,31,1,0,0,,220778,620778,ff,E_E_Undervoltage_LevelAlert,0:dt_ENUMAlertType_NO_ALERT;1:dt_ENUMAlertType_LOW_LEVEL_ALERT;2:dt_ENUMAlertType_HIGH_LEVEL_ALERT ,76D,24,31,1,0,0,,220779,620779,ff,E_Pct_VT_Gauge_MMI_threshold ,76D,24,39,1,0,0,,22077A,62077A,ff,E_TM_TimeMinForAdvice ,76D,24,39,1,0,0,,22077B,62077B,ff,E_TM_WaitAfterCECM_Alert ,76D,24,31,.1,0,1,,22077C,62077C,ff,E_U_NoCharge ,76D,24,31,.1,0,1,,22077D,62077D,ff,E_U_WellCharged ,76D,24,31,.1,0,1,,22077E,62077E,ff,E_U_BattThresCurrSensDgn ,76D,24,24,1,0,0,,22077F,62077F,ff,E_B_BattSens_ProdCurrDiag ,76D,24,24,1,0,0,,220780,620780,ff,E_B_BattSens_VoltCurrDiag ,76D,24,39,1,0,0,mVolt,220781,620781,ff,E_U_MedStickDiag_threshold ,76D,24,39,10,0,0,,220782,620782,ff,E_U_BattSens_low_func_limit ,76D,24,39,10,0,0,,220783,620783,ff,E_U_BattSens_high_func_limit ,76D,24,39,1,0,0,sec,220784,620784,ff,E_TM_MedStickDiag_conf_long ,76D,24,39,1,0,0,sec,220785,620785,ff,E_TM_MedStickDiag_conf_short ,76D,24,39,10,0,0,,220786,620786,ff,E_U_BattSens_low_limit ,76D,24,39,10,0,0,,220787,620787,ff,E_U_BattSens_high_limit ,76D,24,39,1,0,0,sec,220788,620788,ff,E_TM_LowOutputDiag_conf ,76D,24,39,1,0,0,sec,220789,620789,ff,E_TM_HighOutputDiag_conf ,76D,24,39,1,0,0,sec,22078A,62078A,ff,E_TM_InconsistentDiag_conf ,76D,24,31,1,0,0,,22078B,62078B,ff,E_I_ProdCurr_offset ,76D,24,31,.025,-468,2,,22078C,62078C,ff,E_U_Prod_VoltCurrDiag_thd ,76D,24,31,.1,0,1,,22078D,62078D,ff,E_U_Stor_VoltCurrDiag_thd ,76D,24,39,.1,0,1,,22078E,62078E,1ff,E_I_Prim_VoltCurrDiag_thd ,76D,24,31,.01,0,2,sec,22078F,62078F,ff,E_Tau_BCS_current_filter ,76D,24,39,.00025,0,3,,220790,620790,ff,E_K_BCS_current_slope_coef ,76D,24,39,.1,0,1,,220791,620791,ff,E_I_BCS_current_offset ,76D,24,24,1,0,0,,220792,620792,ff,E_B_BattTempSensor_present ,76D,24,39,10,0,0,,220793,620793,ff,E_U_TempSens_low_limit ,76D,24,39,10,0,0,,220794,620794,ff,E_U_TempSens_high_limit ,76D,24,39,.01,0,2,sec,220795,620795,ff,E_TM_TempLowOutDiag_conf ,76D,24,39,.01,0,2,sec,220796,620796,ff,E_TM_TempHighOutDiag_conf ,76D,24,31,.01,0,2,sec,220797,620797,ff,E_TM_LINIBS_initialization ,76D,24,31,1,40,0,sec,220798,620798,ff,E_Temp_StorageIBS_ini ,76D,24,39,.04,0,2,,220799,620799,ff,E_R_StorageIBS_ini ,76D,24,55,1,0,0,,22079A,62079A,4ff,E_I_StorageIBS_ini ,76D,24,31,1,0,0,,22079B,62079B,ff,E_K_StorageID ,76D,24,24,1,0,0,,22079C,62079C,ff,E_B_ExternalRelay_Present ,76D,24,31,1,0,0,,2207A1,6207A1,ff,E_E_StarterConfig,3:dt_ENUMStarterConfig_SS_CMD_BY_TWO_WIRES;0:dt_ENUMStarterConfig_NO_SS_CMD;1:dt_ENUMStarterConfig_SS_CMD_BY_SINGLE_WIRE;2:dt_ENUMStarterConfig_SS_CMD_BY_SINGLE_WIRE_AND_CAN ,76D,24,24,1,0,0,,2207A2,6207A2,ff,E_B_Vehicle_with_IBS ,76D,24,31,1,0,0,,2207A3,6207A3,ff,E_E_Prim_Storage_Position,0:dt_ENUMPrim_Storage_Position_UNDERHOOD;1:dt_ENUMPrim_Storage_Position_CABIN ,76D,24,39,1,0,0,,2207A4,6207A4,ff,E_Tau_NoTempSens_high ,76D,24,39,1,0,0,,2207A5,6207A5,ff,E_Tau_NoTempSens_low ,76D,24,39,1,0,0,,2207A6,6207A6,ff,E_Tau_NoTempSens_mid ,76D,24,39,1,0,0,,2207A7,6207A7,ff,E_Tau_TempSens_high ,76D,24,39,1,0,0,,2207A8,6207A8,ff,E_Tau_TempSens_low ,76D,24,39,1,0,0,,2207A9,6207A9,ff,E_Tau_TempSens_mid ,76D,24,31,1,40,0,,2207AA,6207AA,ff,E_Temp_StorageIBS_ivld ,76D,24,31,.1,0,1,,2207AB,6207AB,ff,E_K_CoefSupplyUocv ,76D,24,31,.1,0,1,,2207AC,6207AC,ff,E_K_CoefSupplyVoltage ,76D,24,31,.0001,0,3,,2207AD,6207AD,ff,E_R_Harness_1 ,76D,24,31,.0001,0,3,,2207AE,6207AE,ff,E_R_Harness_2 ,76D,24,31,.00005,0,3,,2207AF,6207AF,ff,E_R_Prim_Storage_Ground ,76D,24,39,.001,0,3,,2207B0,6207B0,ff,E_Tau_Prim_Storage_volt_1 ,76D,24,31,.01,0,2,,2207B1,6207B1,ff,E_U_ECUSupply1_Offset ,76D,24,31,.01,0,2,,2207B2,6207B2,ff,E_U_ECUSupply2_Offset ,76D,24,31,.1,0,1,,2207B3,6207B3,ff,E_U_ECUSupplyUocv_Offset ,76D,24,31,.01,0,2,,2207B4,6207B4,ff,E_U_OCSignG_Offset ,76D,24,24,1,0,0,,2207B5,6207B5,ff,E_B_InhibitEEMinDelivery ,76D,24,31,1,0,0,,2207B6,6207B6,ff,E_I_CurrentStop_max ,76D,24,31,1,0,0,,2207B7,6207B7,ff,E_Pct_DOD_ESM_inhibit ,76D,24,31,1,0,0,,2207B8,6207B8,ff,E_Pct_DOD_SS_inhibit ,76D,24,31,1,0,0,,2207B9,6207B9,ff,E_Pct_MaxProdLoad_SailingIdle ,76D,24,31,.5,0,1,%,2207BA,6207BA,ff,E_Pct_SOCmin_SailingIdle ,76D,24,31,1,40,0,,2207BB,6207BB,ff,E_Temp_Prim_Stor_SailingIdle ,76D,24,31,1,40,0,,2207BC,6207BC,ff,E_Temp_Prim_Stor_StopStart ,76D,24,31,1,40,0,,2207BD,6207BD,ff,E_Temp_Prim_Storage_min ,76D,24,31,1,0,0,,2207BE,6207BE,ff,E_TM_MaxProdLoad_SailingIdle ,76D,24,39,.1,0,1,,2207BF,6207BF,ff,E1d_Pct_DOD_ESM_X 0 ,76D,40,55,.1,0,1,,2207BF,6207BF,ff,E1d_Pct_DOD_ESM_X 1 ,76D,24,31,.1,0,1,,2207C0,6207C0,ff,E1d_Pct_DOD_ESM_Y 0 ,76D,32,39,.1,0,1,,2207C0,6207C0,ff,E1d_Pct_DOD_ESM_Y 1 ,76D,24,31,.5,0,1,,2207C1,6207C1,ff,E1d_Pct_DOD_SS_X 0 ,76D,32,39,.5,0,1,,2207C1,6207C1,ff,E1d_Pct_DOD_SS_X 1 ,76D,24,31,.1,0,1,,2207C2,6207C2,ff,E1d_Pct_DOD_SS_Y 0 ,76D,32,39,.1,0,1,,2207C2,6207C2,ff,E1d_Pct_DOD_SS_Y 1 ,76D,24,24,1,0,0,,2207C3,6207C3,ff,E_B_RebalCurrentCond_Inhibit ,76D,24,24,1,0,0,,2207C4,6207C4,ff,E_B_UnderEst_Gauge_Inhibit ,76D,24,31,10,0,0,,2207C5,6207C5,ff,E_I_PrimStor_NominalCCA ,76D,24,39,.0001,0,3,,2207C6,6207C6,ff,E_I_PrimStorage_DarkCurrent ,76D,24,39,1,0,0,,2207C7,6207C7,1ff,E_I_PrimStorageFilt_init ,76D,24,39,.01,0,2,,2207C8,6207C8,ff,E_K_CoeffC ,76D,24,55,1,0,0,,2207CB,6207CB,4ff,E_K_MaxAhForRebalancing ,76D,24,31,10,0,0,,2207CC,6207CC,ff,E_K_OldPrimStor_AhThreshold ,76D,24,31,1,0,0,,2207CD,6207CD,ff,E_K_PrimStor_NominalCapacity ,76D,24,31,1,0,0,,2207CE,6207CE,ff,E_K_TechnicalWUChargerDetect ,76D,24,39,.1,0,1,,2207D1,6207D1,ff,E_Pct_OverEstAlertPct ,76D,24,31,1,0,0,,2207D2,6207D2,ff,E_Pct_RebalancingFinalSOC ,76D,24,31,.5,0,1,,2207D3,6207D3,ff,E_Pct_SOCCurrent_limp ,76D,24,31,1,0,0,,2207D4,6207D4,ff,E_Pct_VeryPolarizedSOC ,76D,24,31,1,40,0,,2207D5,6207D5,ff,E_Temp_PrimStorage_Alert ,76D,24,31,1,40,0,,2207D6,6207D6,ff,E_Temp_RebalancingTempMax ,76D,24,31,1,40,0,,2207D7,6207D7,ff,E_Temp_RebalancingTempMin ,76D,24,31,1,0,0,,2207D8,6207D8,ff,E_TM_OverEstAlert_Conf ,76D,24,31,.01,0,2,,2207D9,6207D9,ff,E_TM_PrimStorageGaugeActiv ,76D,24,39,.1,0,1,,2207DA,6207DA,ff,E_TM_RebalancingCurrentCond ,76D,24,39,1,0,0,,2207DB,6207DB,ff,E_TM_RebalancingMaxDuration ,76D,24,39,.1,0,1,,2207DC,6207DC,ff,E_TM_RebalancingTime ,76D,24,55,1,0,0,,2207DD,6207DD,4ff,E_TM_RefreshTime ,76D,24,39,30,0,0,,2207DE,6207DE,ff,E_TM_SOCInitTime_OldPrimStor ,76D,24,31,10,0,0,,2207DF,6207DF,ff,E_TM_SOCInitTime_YoungPrimStor ,76D,24,31,.1,0,1,,2207E0,6207E0,ff,E_U_ChargerDetect ,76D,24,31,.1,0,1,,2207E1,6207E1,ff,E_U_PrimStorageFilt_init ,76D,24,39,.01,0,2,,2207E2,6207E2,ff,E_U_PrimStorStartingThreshold ,76D,24,39,.01,0,2,,2207E3,6207E3,ff,E_U_RebalancingVoltageMax ,76D,24,39,.01,0,2,,2207E4,6207E4,ff,E_U_RebalancingVoltageMin ,76D,24,24,1,0,0,,2207E5,6207E5,ff,E_B_PrimStorDisconnect_inhibit ,76D,24,31,.1,0,1,,2207E6,6207E6,ff,E1d_I_RebalancingMaxCurrent 0 ,76D,32,39,.1,0,1,,2207E6,6207E6,ff,E1d_I_RebalancingMaxCurrent 1 ,76D,40,47,.1,0,1,,2207E6,6207E6,ff,E1d_I_RebalancingMaxCurrent 2 ,76D,48,55,.1,0,1,,2207E6,6207E6,ff,E1d_I_RebalancingMaxCurrent 3 ,76D,56,63,.1,0,1,,2207E6,6207E6,ff,E1d_I_RebalancingMaxCurrent 4 ,76D,24,39,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 0 ,76D,40,55,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 1 ,76D,56,71,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 2 ,76D,72,87,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 3 ,76D,88,103,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 4 ,76D,104,119,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 5 ,76D,120,135,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 6 ,76D,136,151,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 7 ,76D,152,167,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 8 ,76D,168,183,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 9 ,76D,184,199,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 10 ,76D,200,215,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 11 ,76D,216,231,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 12 ,76D,232,247,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 13 ,76D,248,263,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 14 ,76D,264,279,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 15 ,76D,280,295,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 16 ,76D,296,311,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 17 ,76D,312,327,.005,0,3,,2207E7,6207E7,1ff,E1d_Pct_PctCCAAlert 18 ,76D,24,24,1,0,0,,2207E8,6207E8,ff,E_B_SOFC_Inhibition ,76D,24,31,1,0,0,,2207E9,6207E9,ff,E_K_SOFC_Counter_Decrement_max ,76D,24,31,1,0,0,,2207EA,6207EA,ff,E_K_SOFC_Counter_Decrement_min ,76D,24,31,1,0,0,,2207EB,6207EB,ff,E_K_SOFC_Counter_max ,76D,24,31,1,0,0,,2207EC,6207EC,ff,E_K_SOFC_Counter_min ,76D,24,31,1,0,0,,2207ED,6207ED,ff,E_Pct_SOCminforSOFC ,76D,24,31,1,40,0,,2207EE,6207EE,ff,E_Temp_TempminforSOFC ,76D,24,31,.05,0,2,,2207EF,6207EF,ff,E_U_SOFC_AutoStartOffset ,76D,24,31,.01,0,2,,2207F0,6207F0,ff,E_TM_HornDurationLock ,76D,24,24,1,0,0,,2207F2,6207F2,ff,E_B_CLL_Deactivation_by_Flasher ,76D,24,24,1,0,0,,2207F3,6207F3,ff,E_B_PassingAvoidingAltOverload ,76D,24,24,1,0,0,,2207F4,6207F4,ff,E_B_SingleBulb ,76D,24,31,1,0,0,,2207F5,6207F5,ff,E_K_DRL_close_to_ID ,76D,24,31,.01,0,2,,2207F6,6207F6,ff,E_Pct_DRL_adapt_for_LDM ,76D,24,39,.01,0,2,,2207F7,6207F7,ff,E_PWM_Goodbye_front_activation ,76D,24,39,.01,0,2,,2207F8,6207F8,ff,E_PWM_Welcome_front_activation ,76D,24,31,.01,0,2,,2207F9,6207F9,ff,E_R_coef_G_1 ,76D,24,31,.01,0,2,,2207FA,6207FA,ff,E_R_coef_G_2 ,76D,24,31,.01,0,2,,2207FB,6207FB,ff,E_R_coef_G_3 ,76D,24,31,.01,0,2,,2207FC,6207FC,ff,E_R_coef_G_4 ,76D,24,31,.01,0,2,,2207FD,6207FD,ff,E_R_coef_W_1 ,76D,24,31,.01,0,2,,2207FE,6207FE,ff,E_R_coef_W_2 ,76D,24,31,.01,0,2,,2207FF,6207FF,ff,E_R_coef_W_3 ,76D,24,31,.01,0,2,,220800,620800,ff,E_R_coef_W_4 ,76D,24,39,.5,0,1,,220801,620801,ff,E_R_DC_G_1 ,76D,24,39,.5,0,1,,220802,620802,ff,E_R_DC_G_2 ,76D,24,39,.5,0,1,,220803,620803,ff,E_R_DC_G_3 ,76D,24,39,.5,0,1,,220804,620804,ff,E_R_DC_G_4 ,76D,24,39,.5,0,1,,220805,620805,ff,E_R_DC_G_initial ,76D,24,39,.5,0,1,,220806,620806,ff,E_R_DC_W_1 ,76D,24,39,.5,0,1,,220807,620807,ff,E_R_DC_W_2 ,76D,24,39,.5,0,1,,220808,620808,ff,E_R_DC_W_3 ,76D,24,39,.5,0,1,,220809,620809,ff,E_R_DC_W_4 ,76D,24,39,.5,0,1,,22080A,62080A,ff,E_R_DC_W_initial ,76D,24,31,.01,0,2,,22080B,62080B,ff,E_TM_Delay_before_switch_WG_OFF ,76D,24,31,.02,0,2,,22080C,62080C,ff,E_TM_R_T1_G ,76D,24,31,.02,0,2,,22080D,62080D,ff,E_TM_R_T1_W ,76D,24,31,.02,0,2,,22080E,62080E,ff,E_TM_R_T2_G ,76D,24,31,.02,0,2,,22080F,62080F,ff,E_TM_R_T2_W ,76D,24,31,.02,0,2,,220810,620810,ff,E_TM_R_T3_G ,76D,24,31,.02,0,2,,220811,620811,ff,E_TM_R_T3_W ,76D,24,31,.02,0,2,,220812,620812,ff,E_TM_R_T4_G ,76D,24,31,.02,0,2,,220813,620813,ff,E_TM_R_T4_W ,76D,24,31,.02,0,2,,220814,620814,ff,E_Ki_Uprod ,76D,24,31,.02,0,2,,220815,620815,ff,E_Kp_Uprod ,76D,24,31,1,0,0,,220816,620816,ff,E_Pct_Prod_Load_acceptable ,76D,24,31,1,0,0,,220817,620817,ff,E_Pct_Prod_Load_I_hold ,76D,24,31,1,0,0,,220818,620818,ff,E_Pct_Prod_Load_max ,76D,24,31,.1,0,1,,220819,620819,ff,E_Tau_Producer_Load ,76D,24,31,.01,0,2,,22081A,62081A,ff,E_Tau_Uprod ,76D,24,31,1,0,0,,22081B,62081B,ff,E_TM_PI_Activation_delay ,76D,24,31,.005,0,3,,22081C,62081C,ff,E_U_Prod_errorNOK ,76D,24,31,.005,0,3,,22081D,62081D,ff,E_U_Prod_errorOK ,76D,24,31,.1,0,1,,22081E,62081E,ff,E_U_Prod_Start ,76D,24,31,.1,0,1,,22081F,62081F,ff,E_U_Prod_StorageDisc ,76D,24,31,.1,0,1,,220820,620820,ff,E_U_Prod_Voltage_min ,76D,24,31,.1,0,1,,220821,620821,ff,E_U_Prod_Voltage_offset ,76D,24,31,.1,0,1,,220822,620822,ff,E_U_Ref_Voltage_desat_min ,76D,24,31,.1,0,1,,220823,620823,ff,E_U_VoltageNetwork_min ,76D,24,31,1,0,0,,220824,620824,ff,E_Pct_UnderVoltage_DF ,76D,24,31,1,0,0,,220825,620825,ff,E_TM_AbsUndervolt ,76D,24,31,1,0,0,,220826,620826,ff,E_TM_Overvolt ,76D,24,31,1,0,0,,220827,620827,ff,E_TM_PWN_Diag_Activation_delay ,76D,24,31,1,0,0,,220828,620828,ff,E_TM_RelUndervolt ,76D,24,31,1,0,0,,220829,620829,ff,E_TM_Syst_Com_Fault_Conf ,76D,24,31,.1,0,1,,22082A,62082A,ff,E_U_AbsUnderVoltage_Threshold ,76D,24,31,.1,0,1,,22082B,62082B,ff,E_U_OverVoltage ,76D,24,31,.1,0,1,,22082C,62082C,ff,E_dU_ESM_pos_frozen_rate ,76D,24,31,.1,0,1,,22082D,62082D,ff,E_dU_ESM_pos_limit_rate ,76D,24,31,.1,0,1,,22082E,62082E,ff,E_dU_Floating_rate ,76D,24,31,.1,0,1,,22082F,62082F,ff,E_dU_Nominal_rate ,76D,24,31,1,0,0,,220830,620830,ff,E_I_Prim_Storage_max ,76D,24,31,1,0,0,,220831,620831,ff,E_K_Sys_Opti_Volt_Level_hi ,76D,24,31,1,0,0,,220832,620832,ff,E_K_Sys_Opti_Volt_Level_lo ,76D,24,31,1,0,0,,220833,620833,ff,E_Temp_Zcurve_high ,76D,24,31,1,0,0,,220834,620834,1ff,E_Temp_Zcurve_low ,76D,24,31,1,0,0,,220835,620835,ff,E_TM_IdleSpeedInhibition ,76D,24,31,1,0,0,,220836,620836,ff,E_TM_RVS_Activation_delay ,76D,24,31,.1,0,1,,220837,620837,ff,E_U_ESM_min ,76D,24,31,.1,0,1,,220838,620838,ff,E_U_ESM_OptimumVoltage_init ,76D,24,31,.1,0,1,,220839,620839,ff,E_U_OCVForOffset_MAX ,76D,24,31,.1,0,1,,22083A,62083A,ff,E_U_OCVForOffset_MIN ,76D,24,31,.1,0,1,,22083B,62083B,ff,E_U_Prim_Storage_Ps100Pct ,76D,24,31,.1,0,1,,22083C,62083C,ff,E_U_Storage_Zcurve_MAX ,76D,24,31,.1,0,1,,22083D,62083D,ff,E_U_Storage_Zcurve_MIN ,76D,24,31,.1,0,1,,22083E,62083E,ff,E_U_VoltageNetwork_max ,76D,24,24,1,0,0,,22083F,62083F,ff,E_B_SOFS_Inhibition ,76D,24,31,.01,0,2,,220840,620840,ff,E_TM_SOFS_init ,76D,24,39,.5,0,1,,220841,620841,1ff,E1d_Pct_VTGauge_Increment 0 ,76D,40,55,.5,0,1,,220841,620841,1ff,E1d_Pct_VTGauge_Increment 1 ,76D,56,71,.5,0,1,,220841,620841,1ff,E1d_Pct_VTGauge_Increment 2 ,76D,72,87,.5,0,1,,220841,620841,1ff,E1d_Pct_VTGauge_Increment 3 ,76D,88,103,.5,0,1,,220841,620841,1ff,E1d_Pct_VTGauge_Increment 4 ,76D,104,119,.5,0,1,,220841,620841,1ff,E1d_Pct_VTGauge_Increment 5 ,76D,120,135,.5,0,1,,220841,620841,1ff,E1d_Pct_VTGauge_Increment 6 ,76D,136,151,.5,0,1,,220841,620841,1ff,E1d_Pct_VTGauge_Increment 7 ,76D,152,167,.5,0,1,,220841,620841,1ff,E1d_Pct_VTGauge_Increment 8 ,76D,168,183,.5,0,1,,220841,620841,1ff,E1d_Pct_VTGauge_Increment 9 ,76D,24,31,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 0 ,76D,32,39,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 1 ,76D,40,47,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 2 ,76D,48,55,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 3 ,76D,56,63,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 4 ,76D,64,71,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 5 ,76D,72,79,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 6 ,76D,80,87,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 7 ,76D,88,95,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 8 ,76D,96,103,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 9 ,76D,104,111,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 10 ,76D,112,119,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 11 ,76D,120,127,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 12 ,76D,128,135,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 13 ,76D,136,143,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 14 ,76D,144,151,1,0,0,,220842,620842,ff,E1d_Pct_SOCCoeffSOC 15 ,76D,24,31,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 0 ,76D,32,39,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 1 ,76D,40,47,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 2 ,76D,48,55,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 3 ,76D,56,63,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 4 ,76D,64,71,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 5 ,76D,72,79,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 6 ,76D,80,87,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 7 ,76D,88,95,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 8 ,76D,96,103,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 9 ,76D,104,111,1,40,0,,220843,620843,ff,E1d_Temp_PrimStorageCoeffSOC 10 ,76D,24,31,1,20,0,,220844,620844,ff,E1d_Temp_PrimStorForCharge 0 ,76D,32,39,1,20,0,,220844,620844,ff,E1d_Temp_PrimStorForCharge 1 ,76D,24,31,1,20,0,,220845,620845,ff,E1d_Temp_PrimStorForDischarge 0 ,76D,32,39,1,20,0,,220845,620845,ff,E1d_Temp_PrimStorForDischarge 1 ,76D,24,31,1,40,0,,220846,620846,ff,E1d_Temp_RebalancingTemp 0 ,76D,32,39,1,40,0,,220846,620846,ff,E1d_Temp_RebalancingTemp 1 ,76D,40,47,1,40,0,,220846,620846,ff,E1d_Temp_RebalancingTemp 2 ,76D,48,55,1,40,0,,220846,620846,ff,E1d_Temp_RebalancingTemp 3 ,76D,56,63,1,40,0,,220846,620846,ff,E1d_Temp_RebalancingTemp 4 ,76D,24,31,1,40,0,,220847,620847,ff,E1d_Temp_TempPrimStorageSOC 0 ,76D,32,39,1,40,0,,220847,620847,ff,E1d_Temp_TempPrimStorageSOC 1 ,76D,40,47,1,40,0,,220847,620847,ff,E1d_Temp_TempPrimStorageSOC 2 ,76D,24,39,.05,0,2,,220849,620849,ff,E1d_U_PrimStorVolt_IncVTGauge 0 ,76D,40,55,.05,0,2,,220849,620849,ff,E1d_U_PrimStorVolt_IncVTGauge 1 ,76D,56,71,.05,0,2,,220849,620849,ff,E1d_U_PrimStorVolt_IncVTGauge 2 ,76D,72,87,.05,0,2,,220849,620849,ff,E1d_U_PrimStorVolt_IncVTGauge 3 ,76D,88,103,.05,0,2,,220849,620849,ff,E1d_U_PrimStorVolt_IncVTGauge 4 ,76D,104,119,.05,0,2,,220849,620849,ff,E1d_U_PrimStorVolt_IncVTGauge 5 ,76D,120,135,.05,0,2,,220849,620849,ff,E1d_U_PrimStorVolt_IncVTGauge 6 ,76D,136,151,.05,0,2,,220849,620849,ff,E1d_U_PrimStorVolt_IncVTGauge 7 ,76D,152,167,.05,0,2,,220849,620849,ff,E1d_U_PrimStorVolt_IncVTGauge 8 ,76D,168,183,.05,0,2,,220849,620849,ff,E1d_U_PrimStorVolt_IncVTGauge 9 ,76D,24,31,1,40,0,,22084A,62084A,ff,E1d_Temp_SOFC_Threshold 0 ,76D,32,39,1,40,0,,22084A,62084A,ff,E1d_Temp_SOFC_Threshold 1 ,76D,40,47,1,40,0,,22084A,62084A,ff,E1d_Temp_SOFC_Threshold 2 ,76D,48,55,1,40,0,,22084A,62084A,ff,E1d_Temp_SOFC_Threshold 3 ,76D,56,63,1,40,0,,22084A,62084A,ff,E1d_Temp_SOFC_Threshold 4 ,76D,64,71,1,40,0,,22084A,62084A,ff,E1d_Temp_SOFC_Threshold 5 ,76D,24,39,.01,0,2,,22084B,62084B,ff,E1d_U_SOFC_Threshold 0 ,76D,40,55,.01,0,2,,22084B,62084B,ff,E1d_U_SOFC_Threshold 1 ,76D,56,71,.01,0,2,,22084B,62084B,ff,E1d_U_SOFC_Threshold 2 ,76D,72,87,.01,0,2,,22084B,62084B,ff,E1d_U_SOFC_Threshold 3 ,76D,88,103,.01,0,2,,22084B,62084B,ff,E1d_U_SOFC_Threshold 4 ,76D,104,119,.01,0,2,,22084B,62084B,ff,E1d_U_SOFC_Threshold 5 ,76D,24,31,.1,0,1,,22084C,62084C,ff,E_U_RelUnderVoltage_offset ,76D,24,31,.1,0,1,,22084D,62084D,ff,E_U_RelUnderVoltage_Threshold ,76D,24,31,.5,0,1,,22084E,62084E,ff,E1d_Pct_SOCinterESM_125 0 ,76D,32,39,.5,0,1,,22084E,62084E,ff,E1d_Pct_SOCinterESM_125 1 ,76D,40,47,.5,0,1,,22084E,62084E,ff,E1d_Pct_SOCinterESM_125 2 ,76D,48,55,.5,0,1,,22084E,62084E,ff,E1d_Pct_SOCinterESM_125 3 ,76D,56,63,.5,0,1,,22084E,62084E,ff,E1d_Pct_SOCinterESM_125 4 ,76D,64,71,.5,0,1,,22084E,62084E,ff,E1d_Pct_SOCinterESM_125 5 ,76D,72,79,.5,0,1,,22084E,62084E,ff,E1d_Pct_SOCinterESM_125 6 ,76D,80,87,.5,0,1,,22084E,62084E,ff,E1d_Pct_SOCinterESM_125 7 ,76D,24,31,.5,0,1,,22084F,62084F,ff,E1d_Pct_SOCinterESM_130 0 ,76D,32,39,.5,0,1,,22084F,62084F,ff,E1d_Pct_SOCinterESM_130 1 ,76D,40,47,.5,0,1,,22084F,62084F,ff,E1d_Pct_SOCinterESM_130 2 ,76D,48,55,.5,0,1,,22084F,62084F,ff,E1d_Pct_SOCinterESM_130 3 ,76D,56,63,.5,0,1,,22084F,62084F,ff,E1d_Pct_SOCinterESM_130 4 ,76D,64,71,.5,0,1,,22084F,62084F,ff,E1d_Pct_SOCinterESM_130 5 ,76D,72,79,.5,0,1,,22084F,62084F,ff,E1d_Pct_SOCinterESM_130 6 ,76D,80,87,.5,0,1,,22084F,62084F,ff,E1d_Pct_SOCinterESM_130 7 ,76D,24,31,.5,0,1,,220850,620850,ff,E1d_Pct_SOCinterESM_135 0 ,76D,32,39,.5,0,1,,220850,620850,ff,E1d_Pct_SOCinterESM_135 1 ,76D,40,47,.5,0,1,,220850,620850,ff,E1d_Pct_SOCinterESM_135 2 ,76D,48,55,.5,0,1,,220850,620850,ff,E1d_Pct_SOCinterESM_135 3 ,76D,56,63,.5,0,1,,220850,620850,ff,E1d_Pct_SOCinterESM_135 4 ,76D,64,71,.5,0,1,,220850,620850,ff,E1d_Pct_SOCinterESM_135 5 ,76D,72,79,.5,0,1,,220850,620850,ff,E1d_Pct_SOCinterESM_135 6 ,76D,80,87,.5,0,1,,220850,620850,ff,E1d_Pct_SOCinterESM_135 7 ,76D,24,31,.5,0,1,,220851,620851,ff,E1d_Pct_SOCinterESM_140 0 ,76D,32,39,.5,0,1,,220851,620851,ff,E1d_Pct_SOCinterESM_140 1 ,76D,40,47,.5,0,1,,220851,620851,ff,E1d_Pct_SOCinterESM_140 2 ,76D,48,55,.5,0,1,,220851,620851,ff,E1d_Pct_SOCinterESM_140 3 ,76D,56,63,.5,0,1,,220851,620851,ff,E1d_Pct_SOCinterESM_140 4 ,76D,64,71,.5,0,1,,220851,620851,ff,E1d_Pct_SOCinterESM_140 5 ,76D,72,79,.5,0,1,,220851,620851,ff,E1d_Pct_SOCinterESM_140 6 ,76D,80,87,.5,0,1,,220851,620851,ff,E1d_Pct_SOCinterESM_140 7 ,76D,24,31,.5,0,1,,220852,620852,ff,E1d_Pct_SOCinterESM_145 0 ,76D,32,39,.5,0,1,,220852,620852,ff,E1d_Pct_SOCinterESM_145 1 ,76D,40,47,.5,0,1,,220852,620852,ff,E1d_Pct_SOCinterESM_145 2 ,76D,48,55,.5,0,1,,220852,620852,ff,E1d_Pct_SOCinterESM_145 3 ,76D,56,63,.5,0,1,,220852,620852,ff,E1d_Pct_SOCinterESM_145 4 ,76D,64,71,.5,0,1,,220852,620852,ff,E1d_Pct_SOCinterESM_145 5 ,76D,72,79,.5,0,1,,220852,620852,ff,E1d_Pct_SOCinterESM_145 6 ,76D,80,87,.5,0,1,,220852,620852,ff,E1d_Pct_SOCinterESM_145 7 ,76D,24,31,1,40,0,,220853,620853,ff,E1d_Temp_interESM_150 0 ,76D,32,39,1,40,0,,220853,620853,ff,E1d_Temp_interESM_150 1 ,76D,40,47,1,40,0,,220853,620853,ff,E1d_Temp_interESM_150 2 ,76D,48,55,1,40,0,,220853,620853,ff,E1d_Temp_interESM_150 3 ,76D,56,63,1,40,0,,220853,620853,ff,E1d_Temp_interESM_150 4 ,76D,64,71,1,40,0,,220853,620853,ff,E1d_Temp_interESM_150 5 ,76D,72,79,1,40,0,,220853,620853,ff,E1d_Temp_interESM_150 6 ,76D,80,87,1,40,0,,220853,620853,ff,E1d_Temp_interESM_150 7 ,76D,24,31,.1,0,1,,220854,620854,ff,E1d_U_interESM_125 0 ,76D,32,39,.1,0,1,,220854,620854,ff,E1d_U_interESM_125 1 ,76D,40,47,.1,0,1,,220854,620854,ff,E1d_U_interESM_125 2 ,76D,48,55,.1,0,1,,220854,620854,ff,E1d_U_interESM_125 3 ,76D,56,63,.1,0,1,,220854,620854,ff,E1d_U_interESM_125 4 ,76D,64,71,.1,0,1,,220854,620854,ff,E1d_U_interESM_125 5 ,76D,72,79,.1,0,1,,220854,620854,ff,E1d_U_interESM_125 6 ,76D,24,31,.1,0,1,,220855,620855,ff,E1d_U_interESM_130 0 ,76D,32,39,.1,0,1,,220855,620855,ff,E1d_U_interESM_130 1 ,76D,40,47,.1,0,1,,220855,620855,ff,E1d_U_interESM_130 2 ,76D,48,55,.1,0,1,,220855,620855,ff,E1d_U_interESM_130 3 ,76D,56,63,.1,0,1,,220855,620855,ff,E1d_U_interESM_130 4 ,76D,64,71,.1,0,1,,220855,620855,ff,E1d_U_interESM_130 5 ,76D,72,79,.1,0,1,,220855,620855,ff,E1d_U_interESM_130 6 ,76D,24,31,.1,0,1,,220856,620856,ff,E1d_U_interESM_135 0 ,76D,32,39,.1,0,1,,220856,620856,ff,E1d_U_interESM_135 1 ,76D,40,47,.1,0,1,,220856,620856,ff,E1d_U_interESM_135 2 ,76D,48,55,.1,0,1,,220856,620856,ff,E1d_U_interESM_135 3 ,76D,56,63,.1,0,1,,220856,620856,ff,E1d_U_interESM_135 4 ,76D,64,71,.1,0,1,,220856,620856,ff,E1d_U_interESM_135 5 ,76D,72,79,.1,0,1,,220856,620856,ff,E1d_U_interESM_135 6 ,76D,24,31,.1,0,1,,220858,620858,ff,E1d_U_interESM_140 0 ,76D,32,39,.1,0,1,,220858,620858,ff,E1d_U_interESM_140 1 ,76D,40,47,.1,0,1,,220858,620858,ff,E1d_U_interESM_140 2 ,76D,48,55,.1,0,1,,220858,620858,ff,E1d_U_interESM_140 3 ,76D,56,63,.1,0,1,,220858,620858,ff,E1d_U_interESM_140 4 ,76D,64,71,.1,0,1,,220858,620858,ff,E1d_U_interESM_140 5 ,76D,72,79,.1,0,1,,220858,620858,ff,E1d_U_interESM_140 6 ,76D,24,31,.1,0,1,,220859,620859,ff,E1d_U_interESM_145 0 ,76D,32,39,.1,0,1,,220859,620859,ff,E1d_U_interESM_145 1 ,76D,40,47,.1,0,1,,220859,620859,ff,E1d_U_interESM_145 2 ,76D,48,55,.1,0,1,,220859,620859,ff,E1d_U_interESM_145 3 ,76D,56,63,.1,0,1,,220859,620859,ff,E1d_U_interESM_145 4 ,76D,64,71,.1,0,1,,220859,620859,ff,E1d_U_interESM_145 5 ,76D,72,79,.1,0,1,,220859,620859,ff,E1d_U_interESM_145 6 ,76D,24,31,.1,0,1,,22085A,62085A,ff,E1d_U_interESM_150 0 ,76D,32,39,.1,0,1,,22085A,62085A,ff,E1d_U_interESM_150 1 ,76D,40,47,.1,0,1,,22085A,62085A,ff,E1d_U_interESM_150 2 ,76D,48,55,.1,0,1,,22085A,62085A,ff,E1d_U_interESM_150 3 ,76D,56,63,.1,0,1,,22085A,62085A,ff,E1d_U_interESM_150 4 ,76D,64,71,.1,0,1,,22085A,62085A,ff,E1d_U_interESM_150 5 ,76D,72,79,.1,0,1,,22085A,62085A,ff,E1d_U_interESM_150 6 ,76D,80,87,.1,0,1,,22085A,62085A,ff,E1d_U_interESM_150 7 ,76D,24,31,.1,0,1,,22085B,62085B,ff,E1d_U_Ralacc 0 ,76D,32,39,.1,0,1,,22085B,62085B,ff,E1d_U_Ralacc 1 ,76D,40,47,.1,0,1,,22085B,62085B,ff,E1d_U_Ralacc 2 ,76D,24,31,.1,0,1,,22085C,62085C,ff,E1d_U_Ralacc_threshold 0 ,76D,32,39,.1,0,1,,22085C,62085C,ff,E1d_U_Ralacc_threshold 1 ,76D,40,47,.1,0,1,,22085C,62085C,ff,E1d_U_Ralacc_threshold 2 ,76D,24,39,.04,0,2,,22085D,62085D,ff,E1d_R_SOFS_level1_thd 0 ,76D,40,55,.04,0,2,,22085D,62085D,ff,E1d_R_SOFS_level1_thd 1 ,76D,56,71,.04,0,2,,22085D,62085D,ff,E1d_R_SOFS_level1_thd 2 ,76D,72,87,.04,0,2,,22085D,62085D,ff,E1d_R_SOFS_level1_thd 3 ,76D,88,103,.04,0,2,,22085D,62085D,ff,E1d_R_SOFS_level1_thd 4 ,76D,24,39,.04,0,2,,22085E,62085E,ff,E1d_R_SOFS_level2_thd 0 ,76D,40,55,.04,0,2,,22085E,62085E,ff,E1d_R_SOFS_level2_thd 1 ,76D,56,71,.04,0,2,,22085E,62085E,ff,E1d_R_SOFS_level2_thd 2 ,76D,72,87,.04,0,2,,22085E,62085E,ff,E1d_R_SOFS_level2_thd 3 ,76D,88,103,.04,0,2,,22085E,62085E,ff,E1d_R_SOFS_level2_thd 4 ,76D,24,31,1,40,0,,22085F,62085F,ff,E1d_Temp_SOFS_level1_thd 0 ,76D,32,39,1,40,0,,22085F,62085F,ff,E1d_Temp_SOFS_level1_thd 1 ,76D,40,47,1,40,0,,22085F,62085F,ff,E1d_Temp_SOFS_level1_thd 2 ,76D,48,55,1,40,0,,22085F,62085F,ff,E1d_Temp_SOFS_level1_thd 3 ,76D,56,63,1,40,0,,22085F,62085F,ff,E1d_Temp_SOFS_level1_thd 4 ,76D,24,31,1,40,0,,220860,620860,ff,E1d_Temp_SOFS_level2_thd 0 ,76D,32,39,1,40,0,,220860,620860,ff,E1d_Temp_SOFS_level2_thd 1 ,76D,40,47,1,40,0,,220860,620860,ff,E1d_Temp_SOFS_level2_thd 2 ,76D,48,55,1,40,0,,220860,620860,ff,E1d_Temp_SOFS_level2_thd 3 ,76D,56,63,1,40,0,,220860,620860,ff,E1d_Temp_SOFS_level2_thd 4 ,76D,24,31,1,0,0,,220861,620861,ff,E_TM_MaxCranking ,76D,24,24,1,0,0,,220862,620862,ff,V_B_Prim_Storage_current_flt_bps ,76D,24,39,.1,0,1,,220863,620863,1ff,V_I_Prim_Storage_current_flt_bpv ,76D,24,39,.001,0,3,,220864,620864,ff,V_U_Ref_Voltage_req_bpv ,76D,24,24,1,0,0,,220865,620865,ff,V_B_Ref_Voltage_req_bps ,76D,24,31,.1,0,1,,220866,620866,ff,E_U_Min_Voltage_HighSpeedWiping ,76D,24,31,.1,0,1,,220867,620867,ff,E_U_Min_Voltage_LowSpeedWiping ,76D,24,31,1,0,0,,220868,620868,ff,E_TM_CrankingAntiJumpUSM ,76D,24,31,1,0,0,,220869,620869,ff,E_TM_MaxCrankingECM ,76D,24,31,1,0,0,,22086A,62086A,ff,E_E_Cornering_AFS_cf,0:NO_CORNERING_NO_AFS;2:NO_CORNERING_AFS_ON;1:CORNERING_ON_NO_AFS;3:CORNERING_ON_AFS_ON ,76D,24,24,1,0,0,,22086B,62086B,ff,E_B_FloatingSOC_from_Current ,76D,24,31,1,0,0,,22086C,62086C,ff,E_Pct_VT_Gauge_LOB ,76D,24,31,.1,0,1,,22086D,62086D,ff,E_Tau_UPrimStorRebalancingFlt ,76D,24,31,.1,0,1,,22086E,62086E,ff,E_Tau_IPrimStorRebalancingFlt ,76D,24,39,1,0,0,,22086F,62086F,ff,E_TM_ExtraFeeding_1_Conseq_thd ,76D,24,24,1,0,0,,220870,620870,ff,E_B_ExtraFeeding_2_inhibit ,76D,24,31,.1,0,1,,220871,620871,ff,E_U_ExtraFeeding_NoLoad_deliv ,76D,24,24,1,0,0,,220872,620872,ff,E_B_ExtraFeeding_1_inhibit ,76D,24,39,1,0,0,,220873,620873,ff,E_TM_12VProducerOFF_thd ,76D,24,31,.1,0,1,,220874,620874,ff,E_U_ExtraFeeding_NoLoad_custom ,76D,24,39,1,0,0,,220875,620875,ff,E_TM_ExtraFeeding_2_Accum_thd ,76D,24,39,1,0,0,,220876,620876,ff,E_TM_ExtraFeeding_2_Conseq_thd ,76D,24,31,1,0,0,,220877,620877,ff,E_TM_ExtraFeedingReq_timeout ,76D,24,39,1,0,0,,220878,620878,ff,E_TM_NoExtraFeedingDuration_thd ,76D,24,31,.1,0,1,,220879,620879,ff,E_dU_Rate4_by_ECM ,76D,24,31,.1,0,1,,22087A,62087A,ff,E_dU_EV_Charge_rate ,76D,24,31,.1,0,1,,22087B,62087B,ff,E_dU_ExtraFeeding_rate ,76D,24,31,.1,0,1,,22087C,62087C,ff,E_U_ExtraFeeding_Delivery ,76D,24,31,.1,0,1,,22087D,62087D,ff,E_U_ExtraFeeding_Customer ,76D,24,31,.1,0,1,,22087E,62087E,ff,E_U_EV_Charge_regen ,76D,24,31,60,0,0,,22087F,62087F,ff,E_TM_EV_Charge_running ,76D,24,31,.1,0,1,,220880,620880,ff,E_U_EV_Charge ,76D,24,31,.005,0,3,,220881,620881,ff,E_TM_TPMS_HornDuration ,76D,24,31,1,0,0,,220883,620883,ff,E_K_MAN_SWI_POSITION_CFG ,76D,24,31,1,0,0,,220884,620884,ff,E_TM_MAN_SWI_INC_DEC_TIM ,76D,24,31,10,0,0,,220885,620885,ff,E_TM_LVL_TIME_DETECT_NEW_VALUE ,76D,24,39,.01,0,2,,220886,620886,ff,E_S_AFS_VehSpd_Thrs_0 ,76D,24,39,.01,0,2,,220887,620887,ff,E_S_AFS_VehSpd_Thrs_1 ,76D,24,39,.01,0,2,,220888,620888,ff,E_S_AFS_VehSpd_Thrs_2 ,76D,24,39,.01,0,2,,220889,620889,ff,E_S_AFS_VehSpd_Thrs_3 ,76D,24,39,.018311,0,2,,22088A,62088A,ff,E_TM_AFS_VehSpd_Timer_1_Rise ,76D,24,39,.018311,0,2,,22088B,62088B,ff,E_TM_AFS_VehSpd_Timer_2_Rise ,76D,24,39,.018311,0,2,,22088C,62088C,ff,E_TM_AFS_VehSpd_Timer_3_Rise ,76D,24,39,.018311,0,2,,22088D,62088D,ff,E_TM_AFS_VehSpd_Timer_4_Rise ,76D,24,39,.018311,0,2,,22088E,62088E,ff,E_TM_AFS_VehSpd_Timer_0_Drop ,76D,24,39,.018311,0,2,,22088F,62088F,ff,E_TM_AFS_VehSpd_Timer_1_Drop ,76D,24,39,.018311,0,2,,220890,620890,ff,E_TM_AFS_VehSpd_Timer_2_Drop ,76D,24,39,.018311,0,2,,220891,620891,ff,E_TM_AFS_VehSpd_Timer_3_Drop ,76D,24,39,.002,0,3,,220892,620892,1ff,E_Pct_AFS_OFF_CONV_STEP ,76D,24,31,20,0,0,,220893,620893,ff,E_TM_AFS_OFF_CONV_TIMER ,76D,24,24,1,0,0,,220894,620894,ff,E_B_AFS_AntiFog_Cfg_0 ,76D,24,24,1,0,0,,220895,620895,ff,E_B_AFS_AntiFog_Cfg_1 ,76D,24,24,1,0,0,,220896,620896,ff,E_B_AFS_AntiFog_Cfg_2 ,76D,24,24,1,0,0,,220897,620897,ff,E_B_AFS_AntiFog_Cfg_3 ,76D,24,24,1,0,0,,220898,620898,ff,E_B_AFS_AntiFog_Cfg_4 ,76D,24,39,.002,0,3,,220899,620899,1ff,E_Pct_RLB_OFF_CONV_STEP ,76D,24,31,20,0,0,,22089A,62089A,ff,E_TM_RLB_OFF_CONV_TIMER ,76D,24,39,.125,0,1,,22089D,62089D,1ff,E_deg_AFS_SWA_MIN ,76D,24,39,.125,0,1,,22089E,62089E,1ff,E_deg_AFS_SWA_MAX ,76D,24,31,.4,0,1,,22089F,62089F,ff,E_Pct_MIN_PERC_BAT_VALUE ,76D,24,31,1,0,0,,2208A0,6208A0,ff,E_K_AFS_Antifog_P_ON ,76D,24,31,1,0,0,,2208A1,6208A1,ff,E_K_AFS_Antifog_P_OFF ,76D,24,31,20,0,0,,2208A2,6208A2,ff,E_TM_AFS_Antifog_T_ON ,76D,24,31,20,0,0,,2208A3,6208A3,ff,E_TM_AFS_Antifog_T_OFF ,76D,24,39,.0005,0,3,,2208A4,6208A4,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 0 ,76D,40,55,.0005,0,3,,2208A4,6208A4,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 1 ,76D,56,71,.0005,0,3,,2208A4,6208A4,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 2 ,76D,72,87,.0005,0,3,,2208A4,6208A4,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 3 ,76D,88,103,.0005,0,3,,2208A4,6208A4,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 4 ,76D,104,119,.0005,0,3,,2208A4,6208A4,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_X 5 ,76D,24,39,.0031,0,3,,2208A5,6208A5,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 0 ,76D,40,55,.0031,0,3,,2208A5,6208A5,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 1 ,76D,56,71,.0031,0,3,,2208A5,6208A5,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 2 ,76D,72,87,.0031,0,3,,2208A5,6208A5,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 3 ,76D,88,103,.0031,0,3,,2208A5,6208A5,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 4 ,76D,104,119,.0031,0,3,,2208A5,6208A5,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_1_Y 5 ,76D,24,39,.0005,0,3,,2208A6,6208A6,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 0 ,76D,40,55,.0005,0,3,,2208A6,6208A6,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 1 ,76D,56,71,.0005,0,3,,2208A6,6208A6,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 2 ,76D,72,87,.0005,0,3,,2208A6,6208A6,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 3 ,76D,88,103,.0005,0,3,,2208A6,6208A6,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 4 ,76D,104,119,.0005,0,3,,2208A6,6208A6,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_X 5 ,76D,24,39,.0031,0,3,,2208A7,6208A7,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 0 ,76D,40,55,.0031,0,3,,2208A7,6208A7,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 1 ,76D,56,71,.0031,0,3,,2208A7,6208A7,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 2 ,76D,72,87,.0031,0,3,,2208A7,6208A7,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 3 ,76D,88,103,.0031,0,3,,2208A7,6208A7,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 4 ,76D,104,119,.0031,0,3,,2208A7,6208A7,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_2_Y 5 ,76D,24,39,.0005,0,3,,2208A8,6208A8,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 0 ,76D,40,55,.0005,0,3,,2208A8,6208A8,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 1 ,76D,56,71,.0005,0,3,,2208A8,6208A8,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 2 ,76D,72,87,.0005,0,3,,2208A8,6208A8,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 3 ,76D,88,103,.0005,0,3,,2208A8,6208A8,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 4 ,76D,104,119,.0005,0,3,,2208A8,6208A8,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_X 5 ,76D,24,39,.0031,0,3,,2208A9,6208A9,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 0 ,76D,40,55,.0031,0,3,,2208A9,6208A9,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 1 ,76D,56,71,.0031,0,3,,2208A9,6208A9,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 2 ,76D,72,87,.0031,0,3,,2208A9,6208A9,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 3 ,76D,88,103,.0031,0,3,,2208A9,6208A9,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 4 ,76D,104,119,.0031,0,3,,2208A9,6208A9,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_3_Y 5 ,76D,24,39,.0005,0,3,,2208AA,6208AA,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 0 ,76D,40,55,.0005,0,3,,2208AA,6208AA,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 1 ,76D,56,71,.0005,0,3,,2208AA,6208AA,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 2 ,76D,72,87,.0005,0,3,,2208AA,6208AA,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 3 ,76D,88,103,.0005,0,3,,2208AA,6208AA,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 4 ,76D,104,119,.0005,0,3,,2208AA,6208AA,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_X 5 ,76D,24,39,.0031,0,3,,2208AB,6208AB,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 0 ,76D,40,55,.0031,0,3,,2208AB,6208AB,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 1 ,76D,56,71,.0031,0,3,,2208AB,6208AB,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 2 ,76D,72,87,.0031,0,3,,2208AB,6208AB,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 3 ,76D,88,103,.0031,0,3,,2208AB,6208AB,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 4 ,76D,104,119,.0031,0,3,,2208AB,6208AB,1ff,E1d_Pct_AFS_LVL_OFFSET_TAB_4_Y 5 ,76D,24,39,.0005,0,3,,2208AC,6208AC,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 0 ,76D,40,55,.0005,0,3,,2208AC,6208AC,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 1 ,76D,56,71,.0005,0,3,,2208AC,6208AC,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 2 ,76D,72,87,.0005,0,3,,2208AC,6208AC,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 3 ,76D,88,103,.0005,0,3,,2208AC,6208AC,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 4 ,76D,104,119,.0005,0,3,,2208AC,6208AC,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_X 5 ,76D,24,39,.0031,0,3,,2208AD,6208AD,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 0 ,76D,40,55,.0031,0,3,,2208AD,6208AD,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 1 ,76D,56,71,.0031,0,3,,2208AD,6208AD,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 2 ,76D,72,87,.0031,0,3,,2208AD,6208AD,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 3 ,76D,88,103,.0031,0,3,,2208AD,6208AD,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 4 ,76D,104,119,.0031,0,3,,2208AD,6208AD,1ff,E1d_Pct_RLB_LVL_OFFSET_TAB_Y 5 ,76D,24,31,1,0,0,,2208AE,6208AE,ff,E_Pct_ChargeAcceptSOC ,76D,24,31,.1,0,1,Volt,2208AF,6208AF,ff,E_U_ChargeAcceptVolt ,76D,24,31,.1,0,1,,2208B0,6208B0,ff,E1d_HighBeam_Law_X 0 ,76D,32,39,.1,0,1,,2208B0,6208B0,ff,E1d_HighBeam_Law_X 1 ,76D,40,47,.1,0,1,,2208B0,6208B0,ff,E1d_HighBeam_Law_X 2 ,76D,48,55,.1,0,1,,2208B0,6208B0,ff,E1d_HighBeam_Law_X 3 ,76D,24,31,.4,0,1,,2208B1,6208B1,ff,E1d_HighBeam_Law_Y 0 ,76D,32,39,.4,0,1,,2208B1,6208B1,ff,E1d_HighBeam_Law_Y 1 ,76D,40,47,.4,0,1,,2208B1,6208B1,ff,E1d_HighBeam_Law_Y 2 ,76D,48,55,.4,0,1,,2208B1,6208B1,ff,E1d_HighBeam_Law_Y 3 ,76D,24,31,.1,0,1,,2208B2,6208B2,ff,E1d_LowBeam_Law_X 0 ,76D,32,39,.1,0,1,,2208B2,6208B2,ff,E1d_LowBeam_Law_X 1 ,76D,40,47,.1,0,1,,2208B2,6208B2,ff,E1d_LowBeam_Law_X 2 ,76D,48,55,.1,0,1,,2208B2,6208B2,ff,E1d_LowBeam_Law_X 3 ,76D,24,31,.4,0,1,,2208B3,6208B3,ff,E1d_LowBeam_Law_Y 0 ,76D,32,39,.4,0,1,,2208B3,6208B3,ff,E1d_LowBeam_Law_Y 1 ,76D,40,47,.4,0,1,,2208B3,6208B3,ff,E1d_LowBeam_Law_Y 2 ,76D,48,55,.4,0,1,,2208B3,6208B3,ff,E1d_LowBeam_Law_Y 3 ,76D,24,31,.1,0,1,,2208B4,6208B4,ff,E1d_FrontFog_Law_X 0 ,76D,32,39,.1,0,1,,2208B4,6208B4,ff,E1d_FrontFog_Law_X 1 ,76D,40,47,.1,0,1,,2208B4,6208B4,ff,E1d_FrontFog_Law_X 2 ,76D,48,55,.1,0,1,,2208B4,6208B4,ff,E1d_FrontFog_Law_X 3 ,76D,24,31,.4,0,1,,2208B5,6208B5,ff,E1d_FrontFog_Law_Y 0 ,76D,32,39,.4,0,1,,2208B5,6208B5,ff,E1d_FrontFog_Law_Y 1 ,76D,40,47,.4,0,1,,2208B5,6208B5,ff,E1d_FrontFog_Law_Y 2 ,76D,48,55,.4,0,1,,2208B5,6208B5,ff,E1d_FrontFog_Law_Y 3 ,76D,24,31,.1,0,1,,2208B6,6208B6,ff,E1d_DRL_Law_X 0 ,76D,32,39,.1,0,1,,2208B6,6208B6,ff,E1d_DRL_Law_X 1 ,76D,40,47,.1,0,1,,2208B6,6208B6,ff,E1d_DRL_Law_X 2 ,76D,48,55,.1,0,1,,2208B6,6208B6,ff,E1d_DRL_Law_X 3 ,76D,24,31,.4,0,1,,2208B7,6208B7,ff,E1d_DRL_Law_Y 0 ,76D,32,39,.4,0,1,,2208B7,6208B7,ff,E1d_DRL_Law_Y 1 ,76D,40,47,.4,0,1,,2208B7,6208B7,ff,E1d_DRL_Law_Y 2 ,76D,48,55,.4,0,1,,2208B7,6208B7,ff,E1d_DRL_Law_Y 3 ,76D,24,31,.1,0,1,,2208B8,6208B8,ff,E1d_PositionFront_Law_X 0 ,76D,32,39,.1,0,1,,2208B8,6208B8,ff,E1d_PositionFront_Law_X 1 ,76D,40,47,.1,0,1,,2208B8,6208B8,ff,E1d_PositionFront_Law_X 2 ,76D,48,55,.1,0,1,,2208B8,6208B8,ff,E1d_PositionFront_Law_X 3 ,76D,24,31,.4,0,1,,2208B9,6208B9,ff,E1d_PositionFront_Law_Y 0 ,76D,32,39,.4,0,1,,2208B9,6208B9,ff,E1d_PositionFront_Law_Y 1 ,76D,40,47,.4,0,1,,2208B9,6208B9,ff,E1d_PositionFront_Law_Y 2 ,76D,48,55,.4,0,1,,2208B9,6208B9,ff,E1d_PositionFront_Law_Y 3 ,76D,24,31,.1,0,1,,2208BA,6208BA,ff,E1d_PositionRear1_Law_X 0 ,76D,32,39,.1,0,1,,2208BA,6208BA,ff,E1d_PositionRear1_Law_X 1 ,76D,40,47,.1,0,1,,2208BA,6208BA,ff,E1d_PositionRear1_Law_X 2 ,76D,48,55,.1,0,1,,2208BA,6208BA,ff,E1d_PositionRear1_Law_X 3 ,76D,24,31,.4,0,1,,2208BB,6208BB,ff,E1d_PositionRear1_Law_Y 0 ,76D,32,39,.4,0,1,,2208BB,6208BB,ff,E1d_PositionRear1_Law_Y 1 ,76D,40,47,.4,0,1,,2208BB,6208BB,ff,E1d_PositionRear1_Law_Y 2 ,76D,48,55,.4,0,1,,2208BB,6208BB,ff,E1d_PositionRear1_Law_Y 3 ,76D,24,31,.1,0,1,,2208BC,6208BC,ff,E1d_PositionRear2_Law_X 0 ,76D,32,39,.1,0,1,,2208BC,6208BC,ff,E1d_PositionRear2_Law_X 1 ,76D,40,47,.1,0,1,,2208BC,6208BC,ff,E1d_PositionRear2_Law_X 2 ,76D,48,55,.1,0,1,,2208BC,6208BC,ff,E1d_PositionRear2_Law_X 3 ,76D,24,31,.4,0,1,,2208BD,6208BD,ff,E1d_PositionRear2_Law_Y 0 ,76D,32,39,.4,0,1,,2208BD,6208BD,ff,E1d_PositionRear2_Law_Y 1 ,76D,40,47,.4,0,1,,2208BD,6208BD,ff,E1d_PositionRear2_Law_Y 2 ,76D,48,55,.4,0,1,,2208BD,6208BD,ff,E1d_PositionRear2_Law_Y 3 ,76D,24,31,.1,0,1,,2208BE,6208BE,ff,E1d_FBL_Law_X 0 ,76D,32,39,.1,0,1,,2208BE,6208BE,ff,E1d_FBL_Law_X 1 ,76D,40,47,.1,0,1,,2208BE,6208BE,ff,E1d_FBL_Law_X 2 ,76D,48,55,.1,0,1,,2208BE,6208BE,ff,E1d_FBL_Law_X 3 ,76D,24,31,.4,0,1,,2208BF,6208BF,ff,E1d_FBL_Law_Y 0 ,76D,32,39,.4,0,1,,2208BF,6208BF,ff,E1d_FBL_Law_Y 1 ,76D,40,47,.4,0,1,,2208BF,6208BF,ff,E1d_FBL_Law_Y 2 ,76D,48,55,.4,0,1,,2208BF,6208BF,ff,E1d_FBL_Law_Y 3 ,76D,24,24,1,0,0,,2208C0,6208C0,ff,E_B_IVI_Present ,76D,24,24,1,0,0,,2208C1,6208C1,ff,E_B_MaxVoltageForBoost ,76D,24,24,1,0,0,,2208C2,6208C2,ff,E_B_StarterProtectionInhibit ,76D,24,55,1,0,0,,2208C3,6208C3,4ff,E_TM_EngineCoolTemp_invalid ,76D,24,39,1,0,0,,2208C4,6208C4,ff,E_U_PrimStorSensorVariation ,76D,24,31,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 0 ,76D,32,39,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 1 ,76D,40,47,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 2 ,76D,48,55,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 3 ,76D,56,63,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 4 ,76D,64,71,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 5 ,76D,72,79,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 6 ,76D,80,87,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 7 ,76D,88,95,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 8 ,76D,96,103,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 9 ,76D,104,111,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 10 ,76D,112,119,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 11 ,76D,120,127,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 12 ,76D,128,135,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 13 ,76D,136,143,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 14 ,76D,144,151,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 15 ,76D,152,159,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 16 ,76D,160,167,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 17 ,76D,168,175,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 18 ,76D,176,183,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 19 ,76D,184,191,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 20 ,76D,192,199,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 21 ,76D,200,207,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 22 ,76D,208,215,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 23 ,76D,216,223,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 24 ,76D,224,231,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 25 ,76D,232,239,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 26 ,76D,240,247,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 27 ,76D,248,255,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 28 ,76D,256,263,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 29 ,76D,264,271,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 30 ,76D,272,279,1,50,0,,2208C5,6208C5,ff,E1d_Temp_Prim_Storage_Sens 31 ,76D,24,31,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 0 ,76D,32,39,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 1 ,76D,40,47,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 2 ,76D,48,55,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 3 ,76D,56,63,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 4 ,76D,64,71,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 5 ,76D,72,79,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 6 ,76D,80,87,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 7 ,76D,88,95,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 8 ,76D,96,103,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 9 ,76D,104,111,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 10 ,76D,112,119,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 11 ,76D,120,127,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 12 ,76D,128,135,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 13 ,76D,136,143,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 14 ,76D,144,151,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 15 ,76D,152,159,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 16 ,76D,160,167,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 17 ,76D,168,175,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 18 ,76D,176,183,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 19 ,76D,184,191,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 20 ,76D,192,199,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 21 ,76D,200,207,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 22 ,76D,208,215,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 23 ,76D,216,223,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 24 ,76D,224,231,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 25 ,76D,232,239,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 26 ,76D,240,247,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 27 ,76D,248,255,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 28 ,76D,256,263,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 29 ,76D,264,271,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 30 ,76D,272,279,.02,0,2,,2208C6,6208C6,ff,E1d_U_Prim_Storage_temp_HW 31 ,76D,24,31,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 0 ,76D,32,39,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 1 ,76D,40,47,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 2 ,76D,48,55,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 3 ,76D,56,63,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 4 ,76D,64,71,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 5 ,76D,72,79,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 6 ,76D,80,87,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 7 ,76D,88,95,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 8 ,76D,96,103,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 9 ,76D,104,111,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 10 ,76D,112,119,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 11 ,76D,120,127,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 12 ,76D,128,135,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 13 ,76D,136,143,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 14 ,76D,144,151,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 15 ,76D,152,159,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 16 ,76D,160,167,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 17 ,76D,168,175,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 18 ,76D,176,183,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 19 ,76D,184,191,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 20 ,76D,192,199,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 21 ,76D,200,207,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 22 ,76D,208,215,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 23 ,76D,216,223,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 24 ,76D,224,231,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 25 ,76D,232,239,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 26 ,76D,240,247,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 27 ,76D,248,255,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 28 ,76D,256,263,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 29 ,76D,264,271,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 30 ,76D,272,279,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 31 ,76D,280,287,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 32 ,76D,288,295,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 33 ,76D,296,303,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 34 ,76D,304,311,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 35 ,76D,312,319,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 36 ,76D,320,327,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 37 ,76D,328,335,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 38 ,76D,336,343,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 39 ,76D,344,351,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 40 ,76D,352,359,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 41 ,76D,360,367,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 42 ,76D,368,375,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 43 ,76D,376,383,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 44 ,76D,384,391,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 45 ,76D,392,399,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 46 ,76D,400,407,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 47 ,76D,408,415,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 48 ,76D,416,423,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 49 ,76D,424,431,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 50 ,76D,432,439,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 51 ,76D,440,447,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 52 ,76D,448,455,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 53 ,76D,456,463,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 54 ,76D,464,471,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 55 ,76D,472,479,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 56 ,76D,480,487,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 57 ,76D,488,495,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 58 ,76D,496,503,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 59 ,76D,504,511,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 60 ,76D,512,519,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 61 ,76D,520,527,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 62 ,76D,528,535,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 63 ,76D,536,543,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 64 ,76D,544,551,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 65 ,76D,552,559,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 66 ,76D,560,567,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 67 ,76D,568,575,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 68 ,76D,576,583,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 69 ,76D,584,591,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 70 ,76D,592,599,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 71 ,76D,600,607,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 72 ,76D,608,615,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 73 ,76D,616,623,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 74 ,76D,624,631,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 75 ,76D,632,639,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 76 ,76D,640,647,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 77 ,76D,648,655,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 78 ,76D,656,663,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 79 ,76D,664,671,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 80 ,76D,672,679,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 81 ,76D,680,687,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 82 ,76D,688,695,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 83 ,76D,696,703,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 84 ,76D,704,711,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 85 ,76D,712,719,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 86 ,76D,720,727,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 87 ,76D,728,735,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 88 ,76D,736,743,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 89 ,76D,744,751,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 90 ,76D,752,759,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 91 ,76D,760,767,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 92 ,76D,768,775,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 93 ,76D,776,783,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 94 ,76D,784,791,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 95 ,76D,792,799,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 96 ,76D,800,807,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 97 ,76D,808,815,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 98 ,76D,816,823,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 99 ,76D,824,831,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 100 ,76D,832,839,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 101 ,76D,840,847,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 102 ,76D,848,855,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 103 ,76D,856,863,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 104 ,76D,864,871,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 105 ,76D,872,879,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 106 ,76D,880,887,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 107 ,76D,888,895,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 108 ,76D,896,903,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 109 ,76D,904,911,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 110 ,76D,912,919,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 111 ,76D,920,927,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 112 ,76D,928,935,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 113 ,76D,936,943,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 114 ,76D,944,951,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 115 ,76D,952,959,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 116 ,76D,960,967,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 117 ,76D,968,975,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 118 ,76D,976,983,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 119 ,76D,984,991,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 120 ,76D,992,999,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 121 ,76D,1000,1007,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 122 ,76D,1008,1015,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 123 ,76D,1016,1023,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 124 ,76D,1024,1031,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 125 ,76D,1032,1039,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 126 ,76D,1040,1047,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 127 ,76D,1048,1055,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 128 ,76D,1056,1063,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 129 ,76D,1064,1071,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 130 ,76D,1072,1079,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 131 ,76D,1080,1087,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 132 ,76D,1088,1095,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 133 ,76D,1096,1103,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 134 ,76D,1104,1111,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 135 ,76D,1112,1119,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 136 ,76D,1120,1127,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 137 ,76D,1128,1135,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 138 ,76D,1136,1143,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 139 ,76D,1144,1151,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 140 ,76D,1152,1159,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 141 ,76D,1160,1167,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 142 ,76D,1168,1175,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 143 ,76D,1176,1183,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 144 ,76D,1184,1191,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 145 ,76D,1192,1199,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 146 ,76D,1200,1207,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 147 ,76D,1208,1215,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 148 ,76D,1216,1223,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 149 ,76D,1224,1231,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 150 ,76D,1232,1239,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 151 ,76D,1240,1247,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 152 ,76D,1248,1255,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 153 ,76D,1256,1263,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 154 ,76D,1264,1271,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 155 ,76D,1272,1279,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 156 ,76D,1280,1287,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 157 ,76D,1288,1295,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 158 ,76D,1296,1303,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 159 ,76D,1304,1311,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 160 ,76D,1312,1319,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 161 ,76D,1320,1327,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 162 ,76D,1328,1335,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 163 ,76D,1336,1343,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 164 ,76D,1344,1351,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 165 ,76D,1352,1359,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 166 ,76D,1360,1367,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 167 ,76D,1368,1375,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 168 ,76D,1376,1383,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 169 ,76D,1384,1391,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 170 ,76D,1392,1399,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 171 ,76D,1400,1407,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 172 ,76D,1408,1415,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 173 ,76D,1416,1423,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 174 ,76D,1424,1431,.05,0,2,,2208C8,6208C8,ff,E2d_K_RendSOC 175 ,76D,24,24,1,0,0,,2208CE,6208CE,ff,E_B_CRBS_present ,76D,24,24,1,0,0,,2208CF,6208CF,ff,E_B_ICE_vehicle ,76D,24,31,1,0,0,,2208D0,6208D0,ff,E_E_StarterConfig_sty,3:dt_ENUMStarterConfig_SS_CMD_BY_TWO_WIRES;0:dt_ENUMStarterConfig_NO_SS_CMD;1:dt_ENUMStarterConfig_SS_CMD_BY_SINGLE_WIRE;2:dt_ENUMStarterConfig_SS_CMD_BY_SINGLE_WIRE_AND_CAN ,76D,24,31,.01,0,2,,2208D3,6208D3,ff,E_U_TAIL1RightOffset ,76D,24,31,1,0,0,,221001,621001,ff,C_D_NeutralContact_NoFail ,76D,32,39,1,0,0,,221001,621001,ff,C_D_NeutralContactAlwaysPrsnt ,76D,40,47,1,0,0,,221001,621001,ff,C_D_NeutralContactNeverPresent ,76D,48,55,1,0,0,km,221001,621001,ff,C_D_RearGear_NoFail ,76D,56,63,1,0,0,km,221001,621001,ff,C_D_RearGearAlwaysPresent ,76D,64,71,1,0,0,,221001,621001,ff,C_E_MessageSet,0:dt_ENUMMessageSet_RENAULT;1:dt_ENUMMessageSet_NISSAN;2:dt_ENUMMessageSet_Nissan_For_Korea;3:dt_ENUMMessageSet_C1A ,76D,72,79,1,0,0,A,221001,621001,ff,C_I_ConsumedByAux_invalid ,76D,80,95,1,0,0,A,221001,621001,1ff,C_I_Prim_Storage_current_Invalid ,76D,96,103,1,0,0,A,221001,621001,ff,C_I_Producer_current_limp ,76D,104,135,1,0,0,,221001,621001,4ff,C_I_StorageIBS_ivld ,76D,136,143,1,0,0,,221001,621001,ff,C_K_AC_MaxNbOfMissions ,76D,144,151,1,0,0,,221001,621001,ff,C_K_AC_MaxResetsAfterSales ,76D,152,159,1,0,0,,221001,621001,ff,C_K_AC_MaxRetriesPerMission ,76D,160,167,1,0,0,,221001,621001,ff,C_K_MaxNbOfMissions ,76D,168,175,1,0,0,,221001,621001,ff,C_K_MaxResetsAfterSales ,76D,176,183,1,0,0,,221001,621001,ff,C_K_MaxRetriesPerMission ,76D,184,191,1,0,0,,221001,621001,ff,C_K_MissionNbrNeutralFailure ,76D,192,199,1,0,0,,221001,621001,ff,C_K_MissionNbrOilFailure ,76D,200,207,1,0,0,,221001,621001,ff,C_K_NValveCurrentPID ,76D,208,223,1,0,0,,221001,621001,ff,C_K_3MonthsTable_invalid ,76D,224,231,1,0,0,,221001,621001,ff,C_K_StarterActivation ,76D,232,239,1,0,0,,221001,621001,ff,C_K_StarterDeactivation ,76D,240,247,.5,0,1,,221001,621001,ff,C_K_StarterDecrement ,76D,248,255,.5,0,1,,221001,621001,ff,C_K_StarterIncrement ,76D,256,263,1,0,0,,221001,621001,ff,C_K_StoragesZone_EEM_init ,76D,264,271,80,0,0,W,221001,621001,ff,C_P_ConsumedByAux_Invalid ,76D,272,279,1,0,0,%,221001,621001,ff,C_Pct_Producer_load_ivld ,76D,280,287,1,0,0,,221001,621001,ff,C_PWM_ACCompValveConverted ,76D,288,295,1,0,0,,221001,621001,ff,C_PWM_ACCompValveSetting ,76D,296,303,1,0,0,,221001,621001,ff,C_PWM_CompValveCommand_LHM ,76D,304,311,1,0,0,,221001,621001,ff,C_PWM_CompValveCommand_NM ,76D,312,319,1,0,0,,221001,621001,ff,C_PWM_HighSpeedActivation ,76D,320,327,1,0,0,,221001,621001,ff,C_PWM_HighSpeedDectivation ,76D,328,335,1,0,0,,221001,621001,ff,C_PWM_LowSpeedActivation ,76D,336,343,1,0,0,,221001,621001,ff,C_PWM_LowSpeedDectivation ,76D,344,351,1,0,0,,221001,621001,ff,C_PWM_SatDutyCycleSet_max ,76D,352,359,1,0,0,,221001,621001,ff,C_PWM_SatDutyCycleSet_min ,76D,360,367,1,0,0,,221001,621001,ff,C_PWM_SCG_OC_FailureDiag ,76D,368,375,1,0,0,,221001,621001,ff,C_PWM_SCS_FailureDiag ,76D,376,383,1,0,0,,221001,621001,ff,C_PWM_SuperHighSpeedActivation ,76D,384,391,1,0,0,,221001,621001,ff,C_PWM_SuperHighSpeedDectivation ,76D,392,407,1,0,0,,221001,621001,ff,C_K_3MonthsTable_init ,76D,408,423,.01,0,2,km/h,221001,621001,ff,C_S_VehicleRunnig_max ,76D,424,439,.01,0,2,km/h,221001,621001,ff,C_S_VehicleRunnig_min ,76D,440,455,.01,0,2,,221001,621001,ff,C_S_VehicleSpeed_invalid ,76D,456,463,1,0,0,,221001,621001,ff,C_S_Vseuil_FBL_Min ,76D,464,471,1,40,0,,221001,621001,ff,C_Temp_EngineCoolTemp_invalid ,76D,472,487,.25,160,1,,221001,621001,ff,C_Temp_ExternalTemp_invalid ,76D,488,495,1,40,0,°C,221001,621001,ff,C_Temp_TempBattsens_invalid ,76D,496,527,1,0,0,,221001,621001,4ff,C_TM_Absolute_Time_invalid ,76D,528,535,.01,0,2,sec,221001,621001,ff,C_TM_ACClutchActivation ,76D,536,543,.01,0,2,,221001,621001,ff,C_TM_ACClutchDeactivation ,76D,544,551,.01,0,2,sec,221001,621001,ff,C_TM_ACClutchFailureConfirm ,76D,552,559,.1,0,1,sec,221001,621001,ff,C_TM_ACValve_FailConf ,76D,560,567,.1,0,1,sec,221001,621001,ff,C_TM_ACValve_RetryDelay ,76D,568,575,.1,0,1,sec,221001,621001,ff,C_TM_ACValve_SCG_OC ,76D,576,583,.1,0,1,sec,221001,621001,ff,C_TM_ACValve_SCS ,76D,584,591,.1,0,1,sec,221001,621001,ff,C_TM_AntiMilling ,76D,592,599,300,0,0,,221001,621001,ff,C_TM_BoostOffsetNul ,76D,600,607,1,0,0,sec,221001,621001,ff,C_TM_CustomerPresenceConf ,76D,608,623,1,0,0,,221001,621001,ff,C_K_3YearsTable_init ,76D,624,631,.1,0,1,sec,221001,621001,ff,C_TM_DEAD_TIME ,76D,632,639,.1,0,1,sec,221001,621001,ff,C_TM_DEAD_TIME_XENON ,76D,640,655,1,0,0,sec,221001,621001,ff,C_TM_DLimite ,76D,656,663,.02,0,2,sec,221001,621001,ff,C_TM_FCU_Activation ,76D,664,671,.01,0,2,sec,221001,621001,ff,C_TM_HalogenStabilization ,76D,672,679,.02,0,2,sec,221001,621001,ff,C_TM_HighSpeedFan_Enable ,76D,680,687,.02,0,2,sec,221001,621001,ff,C_TM_HighSpeedFanStable ,76D,688,695,.5,-50,1,sec,221001,621001,ff,C_TM_HornActivation ,76D,696,703,.01,-20,2,sec,221001,621001,ff,C_TM_HornActivationSequence ,76D,704,711,.01,-20,2,sec,221001,621001,ff,C_TM_HornDeactivationSequence ,76D,712,719,.1,0,1,sec,221001,621001,ff,C_TM_HSFanStableRB ,76D,720,727,.1,0,1,sec,221001,621001,ff,C_TM_IgnON_EngineOFF ,76D,728,759,1,0,0,,221001,621001,4ff,C_D_DistanceTotalizer_invalid ,76D,760,775,1,0,0,sec,221001,621001,ff,C_TM_LimpHomeModeFan ,76D,776,783,.02,0,2,sec,221001,621001,ff,C_TM_LowSpeedActivation ,76D,784,791,.02,0,2,sec,221001,621001,ff,C_TM_LowSpeedDeactivation ,76D,792,799,.02,0,2,sec,221001,621001,ff,C_TM_LowSpeedFan_Enable ,76D,800,807,.02,0,2,sec,221001,621001,ff,C_TM_MiddleSpeedFan_Enable ,76D,808,815,.02,0,2,sec,221001,621001,ff,C_TM_MiddleSpeedFanStable ,76D,816,823,.5,0,1,sec,221001,621001,ff,C_TM_NeutralContact_NoFail ,76D,824,831,1,0,0,sec,221001,621001,ff,C_TM_OilPressureWarning ,76D,832,863,1,0,0,,221001,621001,4ff,C_TM_ParkingDuration_invalid ,76D,864,879,10,0,0,ms,221001,621001,ff,C_TM_QuickStarterCANConfirmation ,76D,880,887,1,0,0,sec,221001,621001,ff,C_TM_RefreshPrimStorTempCalcul ,76D,888,895,.01,0,2,sec,221001,621001,ff,C_TM_StabilizedInLowSpeed ,76D,896,903,.01,0,2,sec,221001,621001,ff,C_TM_SysStab ,76D,904,911,.01,0,2,sec,221001,621001,ff,C_TM_UStorageStab ,76D,912,919,.02,0,2,sec,221001,621001,ff,C_TM_VeryLowSpeedDeactivation ,76D,920,927,.01,0,2,sec,221001,621001,ff,C_TM_WaitInitLIN ,76D,928,943,.001,0,3,Volt,221001,621001,ff,C_U_batt_USM_ivld ,76D,944,951,.1,0,1,,221001,621001,ff,C_U_DEFAULT_MIN_VOLTAGE ,76D,952,959,.1,0,1,Volt,221001,621001,ff,C_U_FullFEMThreshold ,76D,960,975,.001,0,3,Volt,221001,621001,ff,C_U_min_Cranking_ivld ,76D,976,983,.5,0,1,Volt,221001,621001,ff,C_U_MinVoltagebyAC_Invalid ,76D,984,991,.5,0,1,Volt,221001,621001,ff,C_U_MinVoltagebyBCM_Invalid ,76D,992,999,.5,0,1,Volt,221001,621001,ff,C_U_MinVoltagebyECM_Invalid ,76D,1000,1007,.5,0,1,,221001,621001,ff,C_U_MinVoltagebySteer_Invalid ,76D,1008,1015,.1,0,1,Volt,221001,621001,ff,C_U_OCV_Default_PrimStorage ,76D,1016,1031,.001,0,3,,221001,621001,ff,C_U_Prim_Storage_NoLoad_ivld ,76D,1032,1047,.001,0,3,,221001,621001,ff,C_U_Prim_Storage_volt_1_ivld ,76D,1048,1055,.1,0,1,,221001,621001,ff,C_U_Prod_LimpHome ,76D,1056,1063,.1,0,1,Volt,221001,621001,ff,C_U_Prod_Voltage_max ,76D,1064,1071,.5,0,1,,221001,621001,ff,C_U_ProdOptiVoltage_invalid ,76D,1072,1079,.1,0,1,Volt,221001,621001,ff,C_U_Ref_Voltage_init ,76D,1080,1095,.001,0,3,Volt,221001,621001,ff,C_U_Reference_voltage_ivld ,76D,1096,1103,.1,0,1,Volt,221001,621001,ff,C_U_Sys_Opti_Voltage_init ,76D,1104,1111,.1,0,1,Volt,221001,621001,ff,C_U_Umin_Cranking_ivld ,76D,1112,1119,.1,0,1,Volt,221001,621001,ff,C_U_VNoLoadInit ,76D,1120,1135,.001,0,3,,221001,621001,ff,C_U_VoltageOffset ,76D,1136,1151,.001,0,3,,221001,621001,ff,C_U_VoltageThreshold ,76D,1152,1159,.125,0,1,Volt,221001,621001,ff,C_U_Wiper_High ,76D,1160,1167,.125,0,1,Volt,221001,621001,ff,C_U_Wiper_Low ,76D,1168,1175,.01,0,2,,221001,621001,ff,C1d_I_ConvertCurrent 0 ,76D,1176,1183,.01,0,2,,221001,621001,ff,C1d_I_ConvertCurrent 1 ,76D,1184,1191,.01,0,2,,221001,621001,ff,C1d_I_ConvertCurrent 2 ,76D,1192,1199,.01,0,2,,221001,621001,ff,C1d_I_ConvertCurrent 3 ,76D,1200,1207,.01,0,2,,221001,621001,ff,C1d_I_ConvertCurrent 4 ,76D,1208,1215,.01,0,2,,221001,621001,ff,C1d_I_ConvertCurrent 5 ,76D,1216,1223,.01,0,2,,221001,621001,ff,C1d_I_ConvertCurrent 6 ,76D,1224,1231,.01,0,2,,221001,621001,ff,C1d_I_ConvertCurrent 7 ,76D,1232,1239,.01,0,2,,221001,621001,ff,C1d_I_ConvertCurrent 8 ,76D,1240,1255,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 0 ,76D,1256,1271,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 1 ,76D,1272,1287,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 2 ,76D,1288,1303,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 3 ,76D,1304,1319,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 4 ,76D,1320,1335,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 5 ,76D,1336,1351,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 6 ,76D,1352,1367,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 7 ,76D,1368,1383,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 8 ,76D,1384,1399,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 9 ,76D,1400,1415,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 10 ,76D,1416,1431,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 11 ,76D,1432,1447,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 12 ,76D,1448,1463,.001,0,3,,221001,621001,ff,C1d_K_ExpStep 13 ,76D,1464,1464,1,0,0,,221001,621001,ff,C_B_sigma_inhibited ,76D,1465,1465,1,0,0,,221001,621001,ff,C_B_CrankingMode_Inhibition ,76D,24,31,.1,0,1,,221002,621002,ff,C_I_ACValveSCG_OCFailureThres ,76D,32,39,.1,0,1,,221002,621002,ff,C_I_ACValveSCSFailureThres ,76D,40,55,1,0,0,,221002,621002,ff,C_K_BatttempStatistic_init ,76D,56,63,1,0,0,,221002,621002,ff,C_K_CodingNo_init ,76D,64,79,1,0,0,,221002,621002,ff,C_K_DateCounter_init ,76D,80,95,1,0,0,,221002,621002,ff,C_K_DateCounter_max ,76D,96,111,10,0,0,,221002,621002,ff,C_K_StartActCounter_invalid ,76D,112,119,1,0,0,,221002,621002,ff,C_K_UseFrequencyStatistic_init ,76D,120,135,1,0,0,,221002,621002,ff,C_K_Values_init ,76D,136,167,1,0,0,,221002,621002,4ff,C_Pct_AlternatorLoad_ivld ,76D,168,175,1,0,0,,221002,621002,ff,C_Pct_PrimStorageSOC_Init ,76D,176,183,1,0,0,,221002,621002,ff,C_Pct_VT_Gauge_Init ,76D,184,199,.04,0,2,,221002,621002,ff,C_R_StorageIBS_ivld ,76D,200,207,1,40,0,°C,221002,621002,ff,C_Temp_BatteryTemp_invalid ,76D,208,223,1000,0,0,,221002,621002,ff,C_TM_Rel_Time_threshold ,76D,224,231,.1,0,1,Volt,221002,621002,ff,C_U_ACClutchFailureInhibThres ,76D,232,239,.1,0,1,Volt,221002,621002,ff,C_U_MaxVoltagebyECM_Invalid ,76D,240,247,.1,0,1,Volt,221002,621002,ff,C_U_MaxVoltagebyECM_v2_Invalid ,76D,248,255,.5,0,1,Volt,221002,621002,ff,C_U_MinVoltagebyCRBS_Invalid ,76D,256,271,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 0 ,76D,272,287,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 1 ,76D,288,303,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 2 ,76D,304,319,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 3 ,76D,320,335,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 4 ,76D,336,351,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 5 ,76D,352,367,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 6 ,76D,368,383,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 7 ,76D,384,399,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 8 ,76D,400,415,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 9 ,76D,416,431,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 10 ,76D,432,447,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 11 ,76D,448,463,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 12 ,76D,464,479,.01,0,2,sec,221002,621002,ff,C1d_TM_StepExpo 13 ,76D,480,487,1,0,0,,221002,621002,ff,C1d_PWM_ConvertCurrent 0 ,76D,488,495,1,0,0,,221002,621002,ff,C1d_PWM_ConvertCurrent 1 ,76D,496,503,1,0,0,,221002,621002,ff,C1d_PWM_ConvertCurrent 2 ,76D,504,511,1,0,0,,221002,621002,ff,C1d_PWM_ConvertCurrent 3 ,76D,512,519,1,0,0,,221002,621002,ff,C1d_PWM_ConvertCurrent 4 ,76D,520,527,1,0,0,,221002,621002,ff,C1d_PWM_ConvertCurrent 5 ,76D,528,535,1,0,0,,221002,621002,ff,C1d_PWM_ConvertCurrent 6 ,76D,536,543,1,0,0,,221002,621002,ff,C1d_PWM_ConvertCurrent 7 ,76D,544,551,1,0,0,,221002,621002,ff,C1d_PWM_ConvertCurrent 8 ,76D,552,559,1,0,0,,221002,621002,ff,C_K_TAIL_NbrOfRetriesPerMission ,76D,560,567,1,0,0,,221002,621002,ff,C_K_TAIL_NbOfMissionsAllowed ,76D,568,575,1,0,0,,221002,621002,ff,C_K_TAIL_NbOfRetriesAfterSales ,76D,576,583,1,0,0,,221002,621002,ff,C_K_LBEAM_NbrOfRetriesPerMission ,76D,584,591,1,0,0,,221002,621002,ff,C_K_LBEAM_NbOfMissionsAllowed ,76D,592,599,1,0,0,,221002,621002,ff,C_K_LBEAM_NbOfRetriesAfterSales ,76D,600,607,1,0,0,,221002,621002,ff,C_K_HBEAM_NbrOfRetriesPerMission ,76D,608,615,1,0,0,,221002,621002,ff,C_K_HBEAM_NbOfMissionsAllowed ,76D,616,623,1,0,0,,221002,621002,ff,C_K_HBEAM_NbOfRetriesAfterSales ,76D,624,631,1,0,0,,221002,621002,ff,C_K_FOG_NbrOfRetriesPerMission ,76D,632,639,1,0,0,,221002,621002,ff,C_K_FOG_NbOfMissionsAllowed ,76D,640,647,1,0,0,,221002,621002,ff,C_K_FOG_NbOfRetriesAfterSales ,76D,648,655,1,0,0,,221002,621002,ff,C_K_DRL_NbrOfRetriesPerMission ,76D,656,663,1,0,0,,221002,621002,ff,C_K_DRL_NbOfMissionsAllowed ,76D,664,671,1,0,0,,221002,621002,ff,C_K_DRL_NbOfRetriesAfterSales ,76D,672,679,1,0,0,,221002,621002,ff,C_Pct_PumpActivationReqMax ,76D,680,687,1,0,0,,221002,621002,ff,C_Pct_PumpActivationReqMin ,76D,688,703,.001,0,3,,221002,621002,ff,C_U_PRM_VBattmin_Valve ,76D,704,719,.001,0,3,,221002,621002,ff,C_U_PRM_VBattmax_Valve ,76D,720,735,.001,0,3,,221002,621002,ff,C_U_PRM_VBattmax_Clutch ,76D,736,751,.001,0,3,,221002,621002,ff,C_U_PRM_VBattmin_Clutch ,76D,752,767,.001,0,3,,221002,621002,ff,C_U_PRM_BattDefault ,76D,768,783,.001,0,3,,221002,621002,ff,C_U_PRM_VBattHys ,76D,784,791,1,0,0,,221002,621002,ff,C_E_Voltage_Rate_BCM_LHM,0:dt_ENUMVoltageRate_NO_REQUEST;1:dt_ENUMVoltageRate_RATE_1;2:dt_ENUMVoltageRate_RATE_2;3:dt_ENUMVoltageRate_RATE_3;4:dt_ENUMVoltageRate_RATE_4 ,76D,24,31,1,0,0,,221003,621003,ff,E_E_HandDriving_Vehicle_cf,0:dt_ENUM_HandDriving_Vehicle_RIGHT_DD;1:dt_ENUM_HandDriving_Vehicle_LEFT_DG ,76D,24,31,1,0,0,,221004,621004,ff,E_E_MBL_cf,0:dt_ENUM_MBL_Enabled_DISABLED;1:dt_ENUM_MBL_Enabled_ENABLED ,76D,24,39,.002,0,3,,221005,621005,1ff,E_Pct_MBL_OFS_EXT_FAIL ,76D,24,31,1,0,0,,221006,621006,1ff,E_K_SignConv_1 ,76D,24,31,1,0,0,,221007,621007,1ff,E_K_SignConv_2 ,76D,24,31,1,0,0,,221008,621008,1ff,E_K_SignConv_Gnd ,76D,24,24,1,0,0,,221009,621009,ff,E_B_ADB_cf ,76D,24,31,1,0,0,,22100B,62100B,ff,E_E_HighBeamType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,24,24,1,0,0,,22100C,62100C,ff,E_B_SensSupplyCor_Inhibit ,76D,24,31,.01,0,2,sec,22100D,62100D,ff,E_TM_HornSilentModeDeactivation ,76D,24,39,.001,0,3,Volt,22100E,62100E,ff,E_U_FL_STARTER_MED_min_thr ,76D,24,39,.001,0,3,Volt,22100F,62100F,ff,E_U_FL_STARTER_MED_max_thr ,76D,24,39,.001,0,3,Volt,221010,621010,ff,E_U_FL_STARTER_LOW_max_thr ,76D,24,39,.001,0,3,Volt,221011,621011,ff,E_U_FL_STARTER_HIGH_min_thr ,76D,24,31,.1,0,1,,221012,621012,ff,E_U_Steer_min ,76D,24,31,.1,0,1,,221013,621013,ff,E_U_ECM_min ,76D,24,24,1,0,0,,221014,621014,ff,E_B_ESMInhibitionByLights ,76D,24,31,1,40,0,,221016,621016,ff,E_Temp_EngineCoolantTemp_init ,76D,24,31,1,40,0,,221017,621017,ff,E_Temp_eq_cond_mem_init ,76D,24,31,1,40,0,,221018,621018,ff,E_Temp_LastEstimationDone_init ,76D,24,31,1,40,0,,221019,621019,ff,E_Temp_Prim_Storage_init ,76D,24,31,.01,0,2,sec,22101A,62101A,ff,E_TM_FaultVoltMeas_Conf ,76D,24,31,.01,0,2,sec,22101B,62101B,ff,E_TM_FaultVoltMeas_Det ,76D,24,31,.1,0,1,sec,22101C,62101C,ff,E_TM_SIGNAL_GND_Conf ,76D,24,31,.1,0,1,sec,22101D,62101D,ff,E_TM_SIGNAL_GND_Det ,76D,24,31,.1,0,1,,22101E,62101E,ff,E_U_ECM_maxLHM ,76D,24,31,.1,0,1,,22101F,62101F,ff,E_U_Braking_LHM ,76D,24,31,.1,0,1,,221020,621020,ff,E_U_AC_min ,76D,24,31,1,0,0,,221021,621021,ff,E_E_Voltage_Rate_AC_LHM,0:dt_ENUMVoltageRate_NO_REQUEST;1:dt_ENUMVoltageRate_RATE_1;2:dt_ENUMVoltageRate_RATE_2;3:dt_ENUMVoltageRate_RATE_3;4:dt_ENUMVoltageRate_RATE_4 ,76D,24,24,1,0,0,,221022,621022,ff,E_B_HVCharger_present ,76D,24,24,1,0,0,,221023,621023,ff,E_B_SOFD_inhibit ,76D,24,39,.01,0,2,,221024,621024,ff,E_U_SOFD_threshold ,76D,24,24,1,0,0,,221025,621025,ff,V_B_SOF_D_Status_bps ,76D,24,31,1,0,0,,221026,621026,ff,V_E_SOF_D_Status_bpv,0:STATUS_NOK;1:STATUS_OK ,76D,24,31,.1,0,1,,221028,621028,ff,E_TM_RegenCurr_delay ,76D,24,31,1,0,0,,221029,621029,ff,E_Pct_RegenCurr_Load_thd ,76D,24,31,1,40,0,,22102A,62102A,ff,E1d_Temp_Prim_RegenCurr 0 ,76D,32,39,1,40,0,,22102A,62102A,ff,E1d_Temp_Prim_RegenCurr 1 ,76D,40,47,1,40,0,,22102A,62102A,ff,E1d_Temp_Prim_RegenCurr 2 ,76D,48,55,1,40,0,,22102A,62102A,ff,E1d_Temp_Prim_RegenCurr 3 ,76D,56,63,1,40,0,,22102A,62102A,ff,E1d_Temp_Prim_RegenCurr 4 ,76D,24,31,1,0,0,,22102B,62102B,ff,E1d_I_Prim_RegenCurr 0 ,76D,32,39,1,0,0,,22102B,62102B,ff,E1d_I_Prim_RegenCurr 1 ,76D,40,47,1,0,0,,22102B,62102B,ff,E1d_I_Prim_RegenCurr 2 ,76D,48,55,1,0,0,,22102B,62102B,ff,E1d_I_Prim_RegenCurr 3 ,76D,56,63,1,0,0,,22102B,62102B,ff,E1d_I_Prim_RegenCurr 4 ,76D,24,31,.1,0,1,,22102C,62102C,ff,E_TM_RegenConfirm_thd ,76D,24,31,.1,0,1,,22102D,62102D,ff,E_U_RegenCurr_high_thd ,76D,24,31,1,40,0,,22102E,62102E,ff,E_Temp_Prim_RegenCurr_thd ,76D,24,31,1,0,0,,22102F,62102F,ff,E_Pct_Prim_RegenCurr_SOC_thd ,76D,24,39,.1,0,1,,221030,621030,ff,E_Pct_Prim_UnderestSOC_high ,76D,24,24,1,0,0,,221031,621031,ff,E_B_RegenCurr_inhibit ,76D,24,31,.1,0,1,,221032,621032,ff,E_Pct_Prim_RegenCurr_SOC_offset ,76D,24,24,1,0,0,,221033,621033,ff,E_B_SOFC_ChargeReq_inhibit ,76D,24,31,.01,0,2,,221034,621034,ff,E_TM_ChgReq_ResetDelay ,76D,24,31,1,0,0,,221035,621035,ff,E_Pct_Underest_OverLoad_max ,76D,24,31,1,0,0,,221037,621037,ff,E1d_I_Prim_UnderestCurr_high 0 ,76D,32,39,1,0,0,,221037,621037,ff,E1d_I_Prim_UnderestCurr_high 1 ,76D,40,47,1,0,0,,221037,621037,ff,E1d_I_Prim_UnderestCurr_high 2 ,76D,48,55,1,0,0,,221037,621037,ff,E1d_I_Prim_UnderestCurr_high 3 ,76D,56,63,1,0,0,,221037,621037,ff,E1d_I_Prim_UnderestCurr_high 4 ,76D,24,31,.1,0,1,,221038,621038,ff,E1d_I_Prim_UnderestCurr_low 0 ,76D,32,39,.1,0,1,,221038,621038,ff,E1d_I_Prim_UnderestCurr_low 1 ,76D,40,47,.1,0,1,,221038,621038,ff,E1d_I_Prim_UnderestCurr_low 2 ,76D,48,55,.1,0,1,,221038,621038,ff,E1d_I_Prim_UnderestCurr_low 3 ,76D,56,63,.1,0,1,,221038,621038,ff,E1d_I_Prim_UnderestCurr_low 4 ,76D,24,31,1,40,0,,221039,621039,ff,E1d_Temp_Prim_Underest_high 0 ,76D,32,39,1,40,0,,221039,621039,ff,E1d_Temp_Prim_Underest_high 1 ,76D,40,47,1,40,0,,221039,621039,ff,E1d_Temp_Prim_Underest_high 2 ,76D,48,55,1,40,0,,221039,621039,ff,E1d_Temp_Prim_Underest_high 3 ,76D,56,63,1,40,0,,221039,621039,ff,E1d_Temp_Prim_Underest_high 4 ,76D,24,31,1,40,0,,22103A,62103A,ff,E1d_Temp_Prim_Underest_low 0 ,76D,32,39,1,40,0,,22103A,62103A,ff,E1d_Temp_Prim_Underest_low 1 ,76D,40,47,1,40,0,,22103A,62103A,ff,E1d_Temp_Prim_Underest_low 2 ,76D,48,55,1,40,0,,22103A,62103A,ff,E1d_Temp_Prim_Underest_low 3 ,76D,56,63,1,40,0,,22103A,62103A,ff,E1d_Temp_Prim_Underest_low 4 ,76D,24,31,.5,0,1,,22103C,62103C,ff,E_Pct_Antifog_Vmax_ON ,76D,24,31,10,0,0,sec,22103D,62103D,ff,E_TM_MAN_SWI_POS_TIM ,76D,24,31,.1,0,1,,22103E,62103E,ff,E_U_Braking_min ,76D,24,31,.1,0,1,,22103F,62103F,ff,E_U_BCM_min ,76D,24,31,1,0,0,,221041,621041,ff,E_TM_KeepWipingVoltageTime ,76D,24,31,1,0,0,,221042,621042,ff,E_E_FBLType,0:dt_ENUMLightType_HALOGEN;1:dt_ENUMLightType_LED ,76D,24,31,1,0,0,,221043,621043,ff,E_A_Threshold_B1 ,76D,24,31,1,0,0,,221044,621044,ff,E_A_Threshold_B2 ,76D,24,39,1,0,0,,221045,621045,ff,E_TM_DLimite ,76D,24,31,.5,0,1,,221046,621046,ff,E_I_BATT1_Comp ,76D,24,31,.5,0,1,,221047,621047,ff,E_I_IGN_ON_Comp ,76D,24,31,.5,0,1,,221048,621048,ff,E_I_O_IGN_AT_LPG_Comp ,76D,24,31,.5,0,1,,221049,621049,ff,E_I_O_LIGHT_REVERSE_LAMP_Comp ,76D,24,31,.5,0,1,,22104A,62104A,ff,E_I_BATT2_Comp ,76D,24,31,.5,0,1,,22104B,62104B,ff,E_I_O_AC_CLUTCH_Comp ,76D,24,31,.5,0,1,,22104C,62104C,ff,E_I_O_FR_WIPER_HI_Comp ,76D,24,31,.5,0,1,,22104D,62104D,ff,E_I_O_FR_WIPER_LO_Comp ,76D,24,31,.5,0,1,,22104E,62104E,ff,E_I_O_WATER_PUMP_Comp ,76D,24,31,.1,0,1,,22104F,62104F,ff,E_TM_LedLbeam_ReEmission ,76D,24,31,1,0,0,,221054,621054,ff,E_K_VDC_Absent ,76D,24,39,50,0,0,ms,221055,621055,ff,E_TM_PassingDetect ,76D,24,31,1,0,0,,221056,621056,ff,E_S_Vthreshold_Cornering ,76D,24,31,1,0,0,,221057,621057,ff,E_E_PositionFront_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,24,31,1,0,0,,221058,621058,ff,E_E_PositionRear1_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,24,31,1,0,0,,221059,621059,ff,E_E_PositionRear2_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,24,31,1,0,0,,22105A,62105A,ff,E_E_DRL_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,24,31,1,0,0,,22105B,62105B,ff,E_E_LowBeam_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,24,31,1,0,0,,22105C,62105C,ff,E_E_HighBeam_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,24,31,1,0,0,,22105D,62105D,ff,E_E_FrontFog_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,24,31,1,0,0,,22105E,62105E,ff,E_E_FBL_Law_Z,0:dt_ENUMLightPWMFreq_PWM_FREQ_100HZ;1:dt_ENUMLightPWMFreq_PWM_FREQ_200HZ ,76D,24,24,1,0,0,,22105F,62105F,ff,E_B_WEPPresence ,76D,24,55,1,0,0,,221060,621060,1ff,E_K_Coef_G_retro_init ,76D,24,24,1,0,0,,221061,621061,ff,E_B_ClutchPresence ,76D,24,31,1,0,0,,221062,621062,ff,E_PWM_OFF_value ,76D,24,31,1,0,0,,221063,621063,ff,E_PWM_Default_Max_value ,76D,24,39,.001,0,3,Volt,221064,621064,ff,E_U_Threshold_A ,76D,24,39,.001,0,3,Volt,221065,621065,ff,E_U_Threshold_B ,76D,24,39,.001,0,3,Volt,221066,621066,ff,E_U_Threshold_C ,76D,24,31,10,-1,0,ms,221067,621067,ff,E_TM_Nominal_StCut_ON_Delay ,76D,24,55,.000000001,0,3,,221069,621069,1ff,E_K_AC_Valve_ParamB ,76D,24,63,1,0,0,,22106A,62106A,2ff,Levelizer ,76D,24,55,.000000001,0,3,,22106B,62106B,1ff,E_K_AC_Valve_ParamA ,76D,24,24,1,0,0,,22106C,62106C,ff,dtc_INH_I_CURRENT_SENSOR_failure_Internal ,76D,24,24,1,0,0,,22106D,62106D,ff,dtc_INH_LO_FAN_RELAY2_PWM_SCS ,76D,24,24,1,0,0,,22106E,62106E,ff,dtc_INH_O_FBL_LH_SCG ,76D,24,24,1,0,0,,22106F,62106F,ff,dtc_INH_O_FBL_LH_SCS_OC ,76D,24,63,1,0,0,,2210B5,6210B5,2ff,USM ,76D,24,55,.000000001,0,3,,2210B6,6210B6,1ff,E_K_AC_Valve_ParamC ,76D,24,24,1,0,0,,2210B7,6210B7,ff,dtc_INH_AC_Clutch_SCG ,76D,24,24,1,0,0,,2210B8,6210B8,ff,dtc_INH_AC_Clutch_SCS_OC ,76D,24,24,1,0,0,,2210B9,6210B9,ff,dtc_INH_AC_Valve_OC_SCG ,76D,24,24,1,0,0,,2210BA,6210BA,ff,dtc_INH_O_LIGHT_LBEAM_LH_SCG ,76D,24,24,1,0,0,,2210BC,6210BC,ff,dtc_INH_O_ACTUATOR_ON_UnderVoltage ,76D,24,24,1,0,0,,2210BD,6210BD,ff,dtc_INH_O_STARTER_SCS ,76D,24,24,1,0,0,,2210BE,6210BE,ff,dtc_INH_FL_BAT_2_OC_SCG ,76D,24,24,1,0,0,,2210BF,6210BF,ff,dtc_INH_O_LIGHT_DTRL_LH_SCG ,76D,24,24,1,0,0,,2210C0,6210C0,ff,dtc_INH_Starter_RLY_ON_stuck_SignalStuckHigh ,76D,24,24,1,0,0,,2210C1,6210C1,ff,dtc_INH_O_STARTER_SD ,76D,24,24,1,0,0,,2210C2,6210C2,ff,dtc_INH_O_STARTER_SignalCompare ,76D,24,24,1,0,0,,2210C3,6210C3,ff,dtc_INH_O_LIGHT_HBEAM_RH_SCG ,76D,24,24,1,0,0,,2210C4,6210C4,ff,dtc_INH_IGN_RLY_ON_STUCK_SCS ,76D,24,24,1,0,0,,2210C5,6210C5,ff,dtc_INH_O_LIGHT_HBEAM_RH_SCS_OC ,76D,24,24,1,0,0,,2210C6,6210C6,ff,dtc_INH_LI_LED_2_Failure ,76D,24,24,1,0,0,,2210C7,6210C7,ff,dtc_INH_IGN_RLY_ON_OFF_STUCK_OC_SCG ,76D,24,24,1,0,0,,2210C8,6210C8,ff,dtc_INH_Starter_RLY_External_Failure_undervoltage ,76D,24,24,1,0,0,,2210C9,6210C9,ff,dtc_INH_O_LIGHT_DTRL_LH_SCS_OC ,76D,24,24,1,0,0,,2210CA,6210CA,ff,dtc_INH_I_TEMP_SENSOR_SCS_OC ,76D,24,24,1,0,0,,2210CB,6210CB,ff,dtc_INH_O_LIGHT_FR_FOG_LAMPS_LH_SCG ,76D,24,24,1,0,0,,2210CC,6210CC,ff,dtc_INH_O_LIGHT_FR_FOG_LAMPS_LH_SCS_OC ,76D,24,24,1,0,0,,2210CD,6210CD,ff,dtc_INH_Starter_RLY_OFF_stuck_SCG_OC ,76D,24,24,1,0,0,,2210CE,6210CE,ff,dtc_INH_Starter_RLY_External_Failure_OC ,76D,24,24,1,0,0,,2210CF,6210CF,ff,dtc_INH_TRAILER_RELAY_OC_SCG ,76D,24,24,1,0,0,,2210D0,6210D0,ff,dtc_INH_LO_FAN_RELAY2_PWM_SCG_OC ,76D,24,24,1,0,0,,2210D1,6210D1,ff,dtc_INH_O_LIGHT_DTRL_RH_SCS_OC ,76D,24,24,1,0,0,,2210D2,6210D2,ff,dtc_INH_O_FBL_RH_SCG ,76D,24,24,1,0,0,,2210D3,6210D3,ff,dtc_INH_I_CURRENT_SENSOR_SCS ,76D,24,24,1,0,0,,2210D4,6210D4,ff,dtc_INH_I_LIGHT_REVERSE_SW_AlwaysPres ,76D,24,24,1,0,0,,2210D5,6210D5,ff,dtc_INH_O_LIGHT_FR_FOG_LAMPS_RH_SCS_OC ,76D,24,24,1,0,0,,2210D6,6210D6,ff,dtc_INH_LO_WASHER_SCG_OC ,76D,24,24,1,0,0,,2210D7,6210D7,ff,dtc_INH_O_LIGHT_DTRL_RH_SCG ,76D,24,24,1,0,0,,2210D8,6210D8,ff,dtc_INH_LO_FAN_RELAY1_SCS ,76D,24,24,1,0,0,,2210D9,6210D9,ff,dtc_INH_O_ACTUATOR_5_SignalStuckLow ,76D,24,24,1,0,0,,2210DA,6210DA,ff,dtc_INH_LO_WASHER_SCS ,76D,24,24,1,0,0,,2210DB,6210DB,ff,dtc_INH_O_ACTUATOR_ON_SignalStuckHigh ,76D,24,24,1,0,0,,2210DC,6210DC,ff,dtc_INH_O_LEVELIZER_DC_MOTOR_SCS ,76D,24,24,1,0,0,,2210DD,6210DD,ff,dtc_INH_O_LEVELIZER_DC_MOTOR_SCG ,76D,24,24,1,0,0,,2210DE,6210DE,ff,dtc_INH_I_HEIGHT_FRONT_Out_Of_Range ,76D,24,24,1,0,0,,2210DF,6210DF,ff,dtc_INH_O_LEVELIZER_DC_MOTOR_SignalCompare ,76D,24,24,1,0,0,,2210E0,6210E0,ff,dtc_INH_I_HEIGHT_FRONT_SCS ,76D,24,24,1,0,0,,2210E1,6210E1,ff,dtc_INH_O_LIGHT_HBEAM_LH_SCG ,76D,24,24,1,0,0,,2210E2,6210E2,ff,dtc_INH_O_FR_WIPER_SignalStuckLow ,76D,24,24,1,0,0,,2210E3,6210E3,ff,dtc_INH_O_LIGHT_CLEARANCE_LH_RH_SCG ,76D,24,24,1,0,0,,2210E4,6210E4,ff,dtc_INH_IBS_Internal_Failure ,76D,24,24,1,0,0,,2210E5,6210E5,ff,dtc_INH_O_LIGHT_CLEARANCE_LH_RH_SCS_OC ,76D,24,24,1,0,0,,2210E6,6210E6,ff,dtc_INH_I_HEIGHT_REAR_OC_SCG ,76D,24,24,1,0,0,,2210E7,6210E7,ff,dtc_INH_O_LIGHT_FR_FOG_LAMPS_RH_SCG ,76D,24,24,1,0,0,,2210E8,6210E8,ff,dtc_INH_IGNITION_SD ,76D,24,24,1,0,0,,2210E9,6210E9,ff,dtc_INH_O_FBL_RH_SCS_OC ,76D,24,24,1,0,0,,2210EA,6210EA,ff,dtc_INH_IBS_LIN_Communiction_fault ,76D,24,24,1,0,0,,2210EB,6210EB,ff,dtc_INH_O_HEIGHT_SENSOR_SUPPLY_SCG ,76D,24,24,1,0,0,,2210EC,6210EC,ff,dtc_INH_LIGHTS_SD ,76D,24,24,1,0,0,,2210ED,6210ED,ff,dtc_INH_O_LIGHT_HBEAM_LH_SCS_OC ,76D,24,24,1,0,0,,2210EF,6210EF,ff,dtc_INH_Levellizer_front_sensor_Coherence ,76D,24,24,1,0,0,,2210F0,6210F0,ff,dtc_INH_LI_NEUTRAL_SW_AlwysSeen ,76D,24,24,1,0,0,,2210F1,6210F1,ff,dtc_INH_BATTERY_Battery_Used ,76D,24,24,1,0,0,,2210F2,6210F2,ff,dtc_INH_Levellizer_rear_sensor_Coherence ,76D,24,24,1,0,0,,2210F3,6210F3,ff,dtc_INH_I_HEIGHT_REAR_SCS ,76D,24,24,1,0,0,,2210F4,6210F4,ff,dtc_INH_LI_HOOD_SW_SCS ,76D,24,24,1,0,0,,2210F5,6210F5,ff,dtc_INH_BATTERY_SD ,76D,24,24,1,0,0,,2210F6,6210F6,ff,dtc_INH_O_STARTER_SCG ,76D,24,24,1,0,0,,2210F7,6210F7,ff,dtc_INH_I_HEIGHT_REAR_Out_Of_Range ,76D,24,24,1,0,0,,2210F8,6210F8,ff,dtc_INH_I_HEIGHT_MANUAL_SCS ,76D,24,24,1,0,0,,2210F9,6210F9,ff,dtc_INH_Levellizer_Sensor_Initialisation ,76D,24,24,1,0,0,,2210FA,6210FA,ff,dtc_INH_O_LIGHT_LICENCE_PLATE_SCS_OC ,76D,24,24,1,0,0,,2210FB,6210FB,ff,dtc_INH_BATTERY_BatteryDisconnected ,76D,24,24,1,0,0,,2210FC,6210FC,ff,dtc_INH_O_FUEL_PUMP_SignalStuckLow ,76D,24,24,1,0,0,,2210FD,6210FD,ff,dtc_INH_BATTERY_SOF ,76D,24,24,1,0,0,,2210FE,6210FE,ff,dtc_INH_O_LIGHT_POSITION_REAR_SCS_OC ,76D,24,24,1,0,0,,2210FF,6210FF,ff,dtc_INH_BATTERY_SD_misconfigured ,76D,24,24,1,0,0,,221100,621100,ff,dtc_INH_USM_ECU_Not configured ,76D,24,24,1,0,0,,221101,621101,ff,dtc_INH_O_LIGHT_LBEAM_LH_SCS_OC ,76D,24,24,1,0,0,,221102,621102,ff,dtc_INH_LI_STARTER_SWITCH1_SCS ,76D,24,24,1,0,0,,221103,621103,ff,dtc_INH_IGNITION_misconfigured ,76D,24,24,1,0,0,,221104,621104,ff,dtc_INH_ECU_System_Internal_Failure ,76D,24,24,1,0,0,,221105,621105,ff,dtc_INH_TRAILER_RELAY_SCS ,76D,24,24,1,0,0,,221106,621106,ff,dtc_INH_I_CURRENT_SENSOR_OC_SCG ,76D,24,24,1,0,0,,221107,621107,ff,dtc_INH_LI_OIL_PRESSURE_SW_Algo ,76D,24,24,1,0,0,,221108,621108,ff,dtc_INH_SS_STARTER_RELAY_SCS ,76D,24,24,1,0,0,,221109,621109,ff,dtc_INH_O_HEIGHT_SENSOR_SUPPLY_SCS ,76D,24,24,1,0,0,,22110A,62110A,ff,dtc_INH_LI_STARTER_SWITCH2_SCS ,76D,24,24,1,0,0,,22110B,62110B,ff,dtc_INH_O_ACTUATOR_5_SignalStuckHigh ,76D,24,24,1,0,0,,22110C,62110C,ff,dtc_INH_O_FUEL_PUMP_SignalStuckHigh ,76D,24,24,1,0,0,,22110E,62110E,ff,dtc_INH_I_HEIGHT_FRONT_OC_SCG ,76D,24,24,1,0,0,,22110F,62110F,ff,dtc_INH_O_LIGHT_LBEAM_RH_SCS_OC ,76D,24,24,1,0,0,,221110,621110,ff,dtc_INH_O_FR_WIPER_SignalStuckHigh ,76D,24,24,1,0,0,,221111,621111,ff,dtc_INH_O_LIGHT_LBEAM_RH_SCG ,76D,24,24,1,0,0,,221112,621112,ff,dtc_INH_Auto_Stop_Wiper_SCS_OC ,76D,24,24,1,0,0,,221113,621113,ff,dtc_INH_SS_STARTER_RELAY_OC_SCG ,76D,24,24,1,0,0,,221114,621114,ff,dtc_INH_O_IGN_NOT_COLUMN_LOCK_SCG ,76D,24,24,1,0,0,,221115,621115,ff,dtc_INH_MBL_Missing_Frame ,76D,24,24,1,0,0,,221116,621116,ff,dtc_INH_CAN_failure_OC ,76D,24,24,1,0,0,,221117,621117,ff,dtc_INH_LIGHTS_misconfigured ,76D,24,24,1,0,0,,221118,621118,ff,dtc_INH_I_TEMP_SENSOR_SCG ,76D,24,24,1,0,0,,221119,621119,ff,dtc_INH_Levellizer_Bad_Config_Or_not_done ,76D,24,24,1,0,0,,22111A,62111A,ff,dtc_INH_LI_NEUTRAL_SW_NeverSeen ,76D,24,24,1,0,0,,22111B,62111B,ff,dtc_INH_O_LIGHT_POSITION_REAR_SCG ,76D,24,24,1,0,0,,22111C,62111C,ff,dtc_INH_VDC_Missing_Frame ,76D,24,24,1,0,0,,22111D,62111D,ff,dtc_INH_2ND_SIGNAL_GND_OC ,76D,24,24,1,0,0,,22111E,62111E,ff,dtc_INH_IBS_SOFS ,76D,24,24,1,0,0,,22111F,62111F,ff,dtc_INH_VADA_Missing_Frame ,76D,24,24,1,0,0,,221120,621120,ff,dtc_INH_EPS_Missing_Frame ,76D,24,24,1,0,0,,221121,621121,ff,dtc_INH_IDM_Missing_Frame ,76D,24,24,1,0,0,,221122,621122,ff,dtc_INH_O_STARTER_misconfigured ,76D,24,24,1,0,0,,221123,621123,ff,dtc_INH_LI_HOOD_SW_OC ,76D,24,24,1,0,0,,221124,621124,ff,dtc_INH_METER_Missing_Frame ,76D,24,24,1,0,0,,221125,621125,ff,dtc_INH_SIGNAL_GND_OC ,76D,24,24,1,0,0,,221126,621126,ff,dtc_INH_O_LIGHT_LICENCE_PLATE_SCG ,76D,24,24,1,0,0,,221127,621127,ff,dtc_INH_OVER_VOLTAGE_DTC ,76D,24,24,1,0,0,,221128,621128,ff,dtc_INH_HEVC_Missing_Frame ,76D,24,24,1,0,0,,221129,621129,ff,dtc_INH_UNDER_VOLTAGE_DTC ,76D,24,24,1,0,0,,22112A,62112A,ff,dtc_INH_IVI_Missing_Frame ,76D,24,24,1,0,0,,22112B,62112B,ff,dtc_INH_I_HEIGHT_MANUAL_OC_SCG ,76D,24,24,1,0,0,,22112C,62112C,ff,dtc_INH_Auto_Stop_Wiper_Algo ,76D,24,24,1,0,0,,22112D,62112D,ff,dtc_INH_O_STARTER_OC ,76D,24,24,1,0,0,,22112E,62112E,ff,dtc_INH_ECM_Missing_Frame ,76D,24,24,1,0,0,,22112F,62112F,ff,dtc_INH_BUS_OFF ,76D,24,24,1,0,0,,221130,621130,ff,dtc_INH_AT_Missing_Frame ,76D,24,24,1,0,0,,221131,621131,ff,dtc_INH_HVAC_Missing_Frame ,76D,24,24,1,0,0,,221132,621132,ff,dtc_INH_I_HEIGHT_MANUAL_OutOfRange ,76D,24,24,1,0,0,,221133,621133,ff,dtc_INH_LI_LED_1_Failure ,76D,24,24,1,0,0,,221134,621134,ff,dtc_INH_LO_FAN_RELAY1_SCG_OC ,76D,24,24,1,0,0,,221135,621135,ff,dtc_INH_EBA_Missing_Frame ,76D,24,24,1,0,0,,221136,621136,ff,dtc_INH_BCM_Missing_Frame ,76D,24,24,1,0,0,,221137,621137,ff,dtc_INH_FL_BAT_1_OC_SCG ,76D,24,24,1,0,0,,221138,621138,ff,dtc_INH_AC_Valve_SCS ,76D,24,24,1,0,0,,221139,621139,ff,dtc_INH_O_IGN_NOT_COLUMN_LOCK_SCS ,76D,24,24,1,0,0,,22113A,62113A,ff,dtc_INH_O_ACTUATOR_ON_SignalStuckLow ,76D,24,31,1,0,0,,222000,622000,ff,S_K_MissionNbrWithNeutral ,76D,32,47,.01,0,2,,222000,622000,ff,S_D_DistRearReached ,76D,48,63,.01,0,2,,222000,622000,ff,S_D_DistNeutralReached ,76D,65,65,1,0,0,,222000,622000,ff,S_B_Custom_WU_Igni_On ,76D,112,127,.01,0,2,,222000,622000,ff,S_D_DistNeutralNotReached ,76D,144,159,.25,200,1,,222000,622000,ff,S_Temp_eq_cond ,76D,160,167,1,40,0,,222000,622000,ff,S_Temp_LastEstimationDone ,76D,168,199,1,0,0,,222000,622000,4ff,S_TM_ParkingTime ,76D,200,215,.01,0,2,,222000,622000,ff,S_D_DistRearNotReached ,76D,256,271,.0005,0,3,,222000,622000,1ff,S_Pct_VEH_ATT_PCT_AVG ,76D,328,343,1,0,0,,222000,622000,ff,S_K_VEH_ATT_PCT_CNT ,76D,344,359,1,0,0,,222000,622000,ff,S_K_LVL_CMD_ENABLE_CNT ,76D,360,375,1,0,0,,222000,622000,ff,S_K_LVL_CMD_PWM_CNT ,76D,432,439,1,0,0,,222000,622000,ff,S_K_HornRly_NbDealerRsts ,76D,440,447,1,0,0,,222000,622000,ff,S_K_HornRly_NbOfMissions ,76D,448,455,1,0,0,,222000,622000,ff,S_K_HornRly_RetrPerMiss ,76D,456,463,1,0,0,,222000,622000,ff,S_K_LvlSupply_NbDealerRsts ,76D,464,471,1,0,0,,222000,622000,ff,S_K_LvlSupply_NbOfMissions ,76D,472,479,1,0,0,,222000,622000,ff,S_K_LvlSupply_RetrPerMiss ,76D,480,487,1,0,0,,222000,622000,ff,S_K_AC_Valve_NbDealerRsts ,76D,488,495,1,0,0,,222000,622000,ff,S_K_AC_Valve_NbOfMissions ,76D,496,503,1,0,0,,222000,622000,ff,S_K_AC_Valve_RetrPerMiss ,76D,504,511,1,0,0,,222000,622000,ff,S_K_Clearance_LH_NbDealerRsts ,76D,512,519,1,0,0,,222000,622000,ff,S_K_Clearance_LH_NbOfMissions ,76D,520,527,1,0,0,,222000,622000,ff,S_K_Clearance_LH_RetrPerMiss ,76D,528,535,1,0,0,,222000,622000,ff,S_K_DTRL_LH_NbDealerRsts ,76D,536,543,1,0,0,,222000,622000,ff,S_K_DTRL_LH_NbOfMissions ,76D,544,551,1,0,0,,222000,622000,ff,S_K_DTRL_LH_RetrPerMiss ,76D,552,559,1,0,0,,222000,622000,ff,S_K_DTRL_RH_NbDealerRsts ,76D,560,567,1,0,0,,222000,622000,ff,S_K_DTRL_RH_NbOfMissions ,76D,568,575,1,0,0,,222000,622000,ff,S_K_DTRL_RH_RetrPerMiss ,76D,576,583,1,0,0,,222000,622000,ff,S_K_ExtMFan1_NbDealerRsts ,76D,584,591,1,0,0,,222000,622000,ff,S_K_ExtMFan1_NbOfMissions ,76D,592,599,1,0,0,,222000,622000,ff,S_K_ExtMFan1_RetrPerMiss ,76D,600,607,1,0,0,,222000,622000,ff,S_K_ExtMFan2_NbDealerRsts ,76D,608,615,1,0,0,,222000,622000,ff,S_K_ExtMFan2_NbOfMissions ,76D,616,623,1,0,0,,222000,622000,ff,S_K_ExtMFan2_RetrPerMiss ,76D,624,631,1,0,0,,222000,622000,ff,S_K_FBL_LH_NbDealerRsts ,76D,632,639,1,0,0,,222000,622000,ff,S_K_FBL_LH_NbOfMissions ,76D,640,647,1,0,0,,222000,622000,ff,S_K_FBL_LH_RetrPerMiss ,76D,648,655,1,0,0,,222000,622000,ff,S_K_FBL_RH_NbDealerRsts ,76D,656,663,1,0,0,,222000,622000,ff,S_K_FBL_RH_NbOfMissions ,76D,664,671,1,0,0,,222000,622000,ff,S_K_FBL_RH_RetrPerMiss ,76D,672,679,1,0,0,,222000,622000,ff,S_K_FrontFog_LH_NbDealerRsts ,76D,680,687,1,0,0,,222000,622000,ff,S_K_FrontFog_LH_NbOfMissions ,76D,688,695,1,0,0,,222000,622000,ff,S_K_FrontFog_LH_RetrPerMiss ,76D,696,703,1,0,0,,222000,622000,ff,S_K_FrontFog_RH_NbDealerRsts ,76D,704,711,1,0,0,,222000,622000,ff,S_K_FrontFog_RH_NbOfMissions ,76D,712,719,1,0,0,,222000,622000,ff,S_K_FrontFog_RH_RetrPerMiss ,76D,720,727,1,0,0,,222000,622000,ff,S_K_HighBeam_LH_NbDealerRsts ,76D,728,735,1,0,0,,222000,622000,ff,S_K_HighBeam_LH_NbOfMissions ,76D,736,743,1,0,0,,222000,622000,ff,S_K_HighBeam_LH_RetrPerMiss ,76D,744,751,1,0,0,,222000,622000,ff,S_K_HighBeam_RH_NbDealerRsts ,76D,752,759,1,0,0,,222000,622000,ff,S_K_HighBeam_RH_NbOfMissions ,76D,760,767,1,0,0,,222000,622000,ff,S_K_HighBeam_RH_RetrPerMiss ,76D,768,775,1,0,0,,222000,622000,ff,S_K_IgnNOT_NbDealerRsts ,76D,776,783,1,0,0,,222000,622000,ff,S_K_IgnNOT_NbOfMissions ,76D,784,791,1,0,0,,222000,622000,ff,S_K_IgnNOT_RetrPerMiss ,76D,792,799,1,0,0,,222000,622000,ff,S_K_LowBeam_LH_NbDealerRsts ,76D,800,807,1,0,0,,222000,622000,ff,S_K_LowBeam_LH_NbOfMissions ,76D,808,815,1,0,0,,222000,622000,ff,S_K_LowBeam_LH_RetrPerMiss ,76D,816,823,1,0,0,,222000,622000,ff,S_K_LowBeam_RH_NbDealerRsts ,76D,824,831,1,0,0,,222000,622000,ff,S_K_LowBeam_RH_NbOfMissions ,76D,832,839,1,0,0,,222000,622000,ff,S_K_LowBeam_RH_RetrPerMiss ,76D,840,847,1,0,0,,222000,622000,ff,S_K_LVL_Motor_NbDealerRsts ,76D,848,855,1,0,0,,222000,622000,ff,S_K_LVL_Motor_NbOfMissions ,76D,856,863,1,0,0,,222000,622000,ff,S_K_LVL_Motor_RetrPerMiss ,76D,864,871,1,0,0,,222000,622000,ff,S_K_PosRear_LH_NbDealerRsts ,76D,872,879,1,0,0,,222000,622000,ff,S_K_PosRear_LH_NbOfMissions ,76D,880,887,1,0,0,,222000,622000,ff,S_K_PosRear_LH_RetrPerMiss ,76D,888,895,1,0,0,,222000,622000,ff,S_K_PosRear_RH_NbDealerRsts ,76D,896,903,1,0,0,,222000,622000,ff,S_K_PosRear_RH_NbOfMissions ,76D,904,911,1,0,0,,222000,622000,ff,S_K_PosRear_RH_RetrPerMiss ,76D,912,919,1,0,0,,222000,622000,ff,S_K_SSStarterRly_NbDealerRsts ,76D,920,927,1,0,0,,222000,622000,ff,S_K_SSStarterRly_NbOfMissions ,76D,928,935,1,0,0,,222000,622000,ff,S_K_SSStarterRly_RetrPerMiss ,76D,936,943,1,0,0,,222000,622000,ff,S_K_TrailerRly_NbDealerRsts ,76D,944,951,1,0,0,,222000,622000,ff,S_K_TrailerRly_NbOfMissions ,76D,952,959,1,0,0,,222000,622000,ff,S_K_TrailerRly_RetrPerMiss ,76D,960,967,1,0,0,,222000,622000,ff,S_K_Washer_NbDealerRsts ,76D,968,975,1,0,0,,222000,622000,ff,S_K_Washer_NbOfMissions ,76D,976,983,1,0,0,,222000,622000,ff,S_K_Washer_RetrPerMiss ,76D,984,991,1,0,0,,222000,622000,ff,S_K_Clearance_RH_NbDealerRsts ,76D,992,999,1,0,0,,222000,622000,ff,S_K_Clearance_RH_NbOfMissions ,76D,1000,1007,1,0,0,,222000,622000,ff,S_K_Clearance_RH_RetrPerMiss ,76D,1176,1207,1,0,0,,222000,622000,4ff,S_TM_cell_rebalancing ,76D,1208,1223,.01,0,2,,222000,622000,ff,S_Pct_Prim_Storage_SOC_est ,76D,1224,1231,1,0,0,,222000,622000,ff,S_K_AC_Clutch_NbDealerRsts ,76D,1232,1239,1,0,0,,222000,622000,ff,S_K_AC_Clutch_NbOfMissions ,76D,1240,1247,1,0,0,,222000,622000,ff,S_K_AC_Clutch_RetrPerMiss ,76D,1248,1255,1,0,0,,222000,622000,ff,S_K_WaterPump_NbDealerRsts ,76D,1256,1263,1,0,0,,222000,622000,ff,S_K_WaterPump_NbOfMissions ,76D,1264,1271,1,0,0,,222000,622000,ff,S_K_WaterPump_RetrPerMiss ,76D,1272,1279,1,40,0,,222000,622000,ff,S_Temp_EngineCoolantTemp ,76D,1280,1287,1,40,0,,222000,622000,ff,S_Temp_Prim_Storage ,76D,1288,1303,.001,0,3,,222000,622000,ff,S_U_Prim_Storage_OCV_mes ,76D,1304,1311,1,0,0,,222000,622000,ff,S_K_reset_HWcounter ,76D,1312,1319,1,0,0,,222000,622000,ff,S_K_reset_watchdog ,76D,24,24,1,0,0,,222001,622001,ff,V_B_SOF_D_CalculationFinished_int ,76D,24,31,1,0,0,,222002,622002,ff,V_E_SOF_D_Status,0:STATUS_NOK;1:STATUS_OK ,76D,24,39,1,0,0,,226000,626000,ff,V_K_DIAG_CONF ,76D,24,39,.125,0,1,Rpm,226001,626001,ff,V_RPM_EngineRPM ,76D,24,39,.001,0,3,,226002,626002,ff,V_U_LevelizerSupply ,76D,24,39,.001,0,3,,226003,626003,ff,V_U_I_HEIGHT_FRONT ,76D,24,39,.001,0,3,,226004,626004,ff,V_U_I_HEIGHT_REAR ,76D,24,39,.001,0,3,,226005,626005,ff,V_U_Prim_Storage_volt_1_flt ,76D,24,39,1,0,0,,226006,626006,ff,V_K_DIAG_DET ,76D,24,24,1,0,0,,226008,626008,ff,V_B_Levelizer_CMD_EN ,76D,24,39,.002,0,3,%,226009,626009,ff,V_PWM_Levelizer_req ,76D,24,39,.01,0,2,,226010,626010,ff,S_Pct_Prim_Storage_SOC_est ,76D,24,31,1,0,0,,226011,626011,ff,S_K_ChargerDetectCounter ,76D,24,55,1,0,0,,226012,626012,4ff,V_D_DistanceTotalizer ,76D,24,31,1,0,0,,226013,626013,ff,V_E_LowBeamRequest,0:dt_ENUMLowBeamRequest_NOT_REQUESTED;1:dt_ENUMLowBeamRequest_REQUESTED ,76D,24,31,1,0,0,,226014,626014,ff,V_E_CrankingAuthorization_AT,0:dt_ENUMCrankingAuthor_NO_REQUEST;1:dt_ENUMCrankingAuthor_NOT_ALLOWED;2:dt_ENUMCrankingAuthor_ALLOWED;3:dt_ENUMCrankingAuthor_STOP_REQUIRED;4:dt_ENUMCrankingAuthor_RESERVED ,76D,24,55,1,0,0,,226015,626015,4ff,S_TM_ExtraFeedingStop_Time ,76D,24,31,1,0,0,,226016,626016,ff,V_E_NeutralContact,0:dt_ENUMNeutralContact_NOT_USED;1:dt_ENUMNeutralContact_NOT_REACHED;2:dt_ENUMNeutralContact_REACHED;3:dt_ENUMNeutralContact_UNAVAILABLE ,76D,24,31,1,0,0,,226017,626017,ff,V_E_RearGearEngaged,0:dt_ENUMRearGearEngaged_NOT_USED;1:dt_ENUMRearGearEngaged_NOT_REACHED;2:dt_ENUMRearGearEngaged_REACHED;3:dt_ENUMRearGearEngaged_UNAVAILABLE ,76D,24,31,1,0,0,,226018,626018,ff,V_E_StarterStatus,0:dt_ENUMStarterStatus_STARTER_OFF;1:dt_ENUMStarterStatus_SHORT_RELAXATION;2:dt_ENUMStarterStatus_LONG_RELAXATION;3:dt_ENUMStarterStatus_STARTER_ON ,76D,24,39,.01,0,2,,226019,626019,ff,V_S_VehicleSpeed ,76D,24,31,1,0,0,,22601A,62601A,ff,V_E_EngineHoodState,0:dt_ENUMEngineHoodState_UNAVAILABLE;1:dt_ENUMEngineHoodState_OPENED;2:dt_ENUMEngineHoodState_CLOSED;3:dt_ENUMEngineHoodState_NOT_USED ,76D,24,55,1,0,0,,22601B,62601B,4ff,S_TM_12VProducerOFF_Time ,76D,24,39,1,0,0,,22601C,62601C,ff,S_TM_ExtraFeedingDuration ,76D,24,31,1,0,0,,22601D,62601D,ff,S_E_EEM_Extra_Feeding_req ,76D,24,31,1,0,0,,22601E,62601E,ff,S_K_LVL_index_CFG ,76D,24,24,1,0,0,,22601F,62601F,ff,S_B_AFS_usersetting_temp ,76D,24,31,1,0,0,,226020,626020,ff,V_E_ClutchSwitchMaximumTravel,0:dt_ENUMClutchSwitchMaxTravel_NOT_USED;1:dt_ENUMClutchSwitchMaxTravel_NOT_PRESSED;2:dt_ENUMClutchSwitchMaxTravel_PRESSED;3:dt_ENUMClutchSwitchMaxTravel_UNAVAILABLE ,76D,24,31,1,0,0,,226021,626021,ff,V_E_SetPointGeneratorStatus,0:dt_ENUMSetPointGeneratorStatus_NOMINAL_MODE;1:dt_ENUMSetPointGeneratorStatus_RELATIVE_UNDERVOLT_CONF;2:dt_ENUMSetPointGeneratorStatus_ABSOLUTE_UNDERVOLT_CONF;3:dt_ENUMSetPointGeneratorStatus_OVERVOLTAGE_CONF;4:dt_ENUMSetPointGeneratorStatus_VOLTAGE_MEASUREMENT_FAULT_CONF;5:dt_ENUMSetPointGeneratorStatus_BATTERY_DISCONNECTED_CONF ,76D,24,31,1,0,0,,226023,626023,ff,V_E_GenMode,0:dt_ENUMGenMode_GENMODE0_LIMIT_REQ_BY_ENGINE;1:dt_ENUMGenMode_GENMODE1_NOMINAL_STRATEGY_MODE;2:dt_ENUMGenMode_GENMODE2_ESM_INTERMEDIATE_MODE;3:dt_ENUMGenMode_GENMODE3_BATTERY_PROTECTION;4:dt_ENUMGenMode_GENMODE4_ESM_DISCHAGE_MODE;5:dt_ENUMGenMode_GENMODE5_ESM_REGENERATION_MODE;6:dt_ENUMGenMode_GENMODE6_ESM_INHIBITED_BY_WIPER;7:dt_ENUMGenMode_GENMODE7_ESM_INHIBITED_BY_ACTUATOR;8:dt_ENUMGenMode_GENMODE8_MAX_VOLTAGE_BY_ENDUR;9:dt_ENUMGenMode_GENMODE9_MIN_VOLTAGE_BY_ECM;10:dt_ENUMGenMode_GENMODE10_FLOATING_MODE;13:dt_ENUMGenMode_NOT_USED;15:dt_ENUMGenMode_UNAVAILABLE;11:dt_ENUMGenMode_GENMODE11_EXTRA_FEEDING_MODE;12:dt_ENUMGenMode_GENMODE12_EV_CHARGE_MODE ,76D,24,31,1,0,0,,226025,626025,ff,V_E_VoltageRegulationStatus,0:dt_ENUMVoltageRegulationStatus_NOT_INITIALIZED;1:dt_ENUMVoltageRegulationStatus_STARTING_SEQUENCE;2:dt_ENUMVoltageRegulationStatus_NOMINAL_MODE;3:dt_ENUMVoltageRegulationStatus_PRODUCER_POWER_LIMITATION;4:dt_ENUMVoltageRegulationStatus_PRODUCER_COM_FAULT_DETECT;5:dt_ENUMVoltageRegulationStatus_PRODUCER_COM_FAULT_CONF;6:dt_ENUMVoltageRegulationStatus_PRODUCER_FAULT_DETECT;7:dt_ENUMVoltageRegulationStatus_PRODUCER_FAULT_CONF;8:dt_ENUMVoltageRegulationStatus_UNDERVOLT_DETECT;9:dt_ENUMVoltageRegulationStatus_UNDERVOLT_CONF;10:dt_ENUMVoltageRegulationStatus_OVERVOLT_DETECT;11:dt_ENUMVoltageRegulationStatus_OVERVOLT_CONF;12:dt_ENUMVoltageRegulationStatus_CAN_FAULT_DETECT;13:dt_ENUMVoltageRegulationStatus_CAN_FAULT_CONF;14:dt_ENUMVoltageRegulationStatus_NOT_USED;15:dt_ENUMVoltageRegulationStatus_UNAVAILABLE ,76D,24,39,.01,0,2,,226030,626030,ff,V_Pct_DOD_ESM_int ,76D,24,39,.01,0,2,,226031,626031,ff,V_Pct_DOD_SS_int ,76D,24,31,1,40,0,,226033,626033,ff,V_Temp_EngineCoolantTemp ,76D,24,39,.25,200,1,,226034,626034,ff,V_Temp_ExternalTemp ,76D,24,39,1,0,0,,226041,626041,ff,S_TM_BoostTimer ,76D,24,31,1,0,0,,226042,626042,ff,V_K_SailingForbid_Forbid_int ,76D,24,31,1,0,0,,226043,626043,ff,V_E_EngineHoodState2,0:dt_ENUMEngineHoodState_UNAVAILABLE;1:dt_ENUMEngineHoodState_OPENED;2:dt_ENUMEngineHoodState_CLOSED;3:dt_ENUMEngineHoodState_NOT_USED ,76D,24,39,.001,0,3,,226044,626044,ff,S_U_BoostOffset ,76D,24,31,1,0,0,,226045,626045,ff,S_E_HandDriving_temp,0:dt_ENUM_HandDrivingActivationState_RIGHT_HAND_DRIVING_ACTIVATED;1:dt_ENUM_HandDrivingActivationState_LEFT_HAND_DRIVING_ACTIVATED ,76D,24,39,.1,0,1,,226046,626046,1ff,V_I_Prim_Storage_current_flt ,76D,24,31,1,0,0,,226047,626047,ff,V_Pct_Producer_load ,76D,24,31,1,40,0,,226048,626048,ff,V_Temp_Prim_Storage_est ,76D,24,39,.001,0,3,,226049,626049,ff,V_U_Prim_UminCranking ,76D,24,39,.001,0,3,,22604A,62604A,ff,V_U_Prod_Voltage_req ,76D,24,39,.001,0,3,,22604B,62604B,ff,V_U_Reference_voltage ,76D,24,31,1,0,0,,22604C,62604C,ff,V_E_ReReadIgn_sens_status,0:dt_ENUMSwitchState_OPEN;1:dt_ENUMSwitchState_CLOSE ,76D,24,31,1,0,0,,22604D,62604D,ff,V_E_VehicleStates,0:dt_ENUMVehicleStates_SLEEPING;1:dt_ENUMVehicleStates_TECHNICAL_WAKE_UP;2:dt_ENUMVehicleStates_CUTOFFPENDING;3:dt_ENUMVehicleStates_AUTOACC_BATTEMPO_LEVEL;4:dt_ENUMVehicleStates_NOT_USED;5:dt_ENUMVehicleStates_IGNITION_LEVEL;6:dt_ENUMVehicleStates_STARTING_PROGRESS;7:dt_ENUMVehicleStates_POWERTRAIN_RUNNING;8:dt_ENUMVehicleStates_AUTO_START;9:dt_ENUMVehicleStates_ENGINE_SYSTEM_STOP;15:dt_ENUMVehicleStates_UNAVAILABLE ,76D,24,55,1,0,0,,22604E,62604E,4ff,V_TM_Absolute_Time ,76D,24,39,.1,0,1,,22604F,62604F,1ff,V_I_ConsumedByAux ,76D,24,31,1,0,0,,226050,626050,ff,V_E_Prim_Storage_current_vld,0:dt_ENUMDATAstatus_VALID;1:dt_ENUMDATAstatus_NOT_VALID ,76D,24,24,1,0,0,,226051,626051,ff,S_B_NoLoad_changed ,76D,24,31,1,0,0,,226052,626052,ff,V_E_EEM_regulation_loop_req ,76D,24,55,1,0,0,,226053,626053,4ff,S_K_AHCountRebalancing ,76D,24,55,1,0,0,,226054,626054,4ff,S_K_LifeAhDischargedCounter ,76D,24,39,.01,0,2,,226055,626055,ff,S_Pct_VT_Gauge ,76D,24,24,1,0,0,,226056,626056,ff,V_B_Extra_Feeding_req ,76D,24,24,1,0,0,,226057,626057,ff,V_B_Prim_Storage_Ps100Pct_req ,76D,24,55,.00001,0,3,,226058,626058,1ff,V_K_AmpereHours_int ,76D,24,39,.01,0,2,,226059,626059,ff,V_Pct_PrimStorage_SOC_Loss_int ,76D,24,39,.01,0,2,,22605A,62605A,ff,V_Pct_SOCinit_est_int ,76D,24,39,.01,0,2,,22605B,62605B,ff,V_Pct_SOCinit_int ,76D,24,55,1,0,0,,22605C,62605C,4ff,V_TM_12VProducerOFFDuration_int ,76D,24,55,1,0,0,,22605D,62605D,4ff,V_TM_NoExtraFeedingDuration_int ,76D,24,55,1,0,0,,22605E,62605E,4ff,V_TM_ParkingDuration ,76D,24,31,1,0,0,,22605F,62605F,ff,V_E_Prim_Storage_Sens_vld,0:dt_ENUMDATAstatus_VALID;1:dt_ENUMDATAstatus_NOT_VALID ,76D,24,39,1,50,0,,226060,626060,ff,V_Temp_Prim_Storage_Sens ,76D,24,31,1,0,0,,226061,626061,ff,V_E_Prim_Storage_volt_1_status,0:dt_ENUMFailurestatus_NO_DFLT;1:dt_ENUMFailurestatus_DFLT_DETECT;2:dt_ENUMFailurestatus_DFLT_CONF ,76D,24,39,.001,0,3,,226062,626062,ff,V_U_Prim_Storage_OCV_mes ,76D,24,24,1,0,0,,226064,626064,ff,V_B_ReserveSOC_ESM_OK ,76D,24,24,1,0,0,,226065,626065,ff,V_B_ReserveSOC_SS_OK_int ,76D,24,31,1,0,0,,226066,626066,ff,V_E_EEM_SailingIdleForbidden,0:dt_ENUMSailingIdleForbidden_UNAVAILABLE;2:dt_ENUMSailingIdleForbidden_SAILINGIDLEAUTHORIZED;3:dt_ENUMSailingIdleForbidden_NOTUSED;1:dt_ENUMSailingIdleForbidden_SAILINGIDLEFORBIDDEN ,76D,24,31,1,0,0,,226067,626067,ff,V_E_EEM_StopAutoForbidden,0:dt_ENUMStopAutoForbidden_UNAVAILABLE;1:dt_ENUMStopAutoForbidden_STOPAUTOFORBIDDEN;2:dt_ENUMStopAutoForbidden_STOPAUTOAUTHORIZED;3:dt_ENUMStopAutoForbidden_NOTUSED ,76D,24,39,1,0,0,,226068,626068,ff,V_K_SailingForbid_Unavail_int ,76D,24,39,1,0,0,,226069,626069,ff,V_K_StopAutoForbid_Forbid_int ,76D,24,39,1,0,0,,22606A,62606A,ff,V_K_StopAutoForbid_Unavail_int ,76D,24,39,1,0,0,,22606B,62606B,ff,V_K_StoragesZone_EEM_status ,76D,24,31,1,0,0,,22606C,62606C,ff,V_E_EEM_Power_Lim_req,0:dt_ENUMEEMPowerLimReq_NO_REQUEST;1:dt_ENUMEEMPowerLimReq_LOB_POWER_LIM_REQ;2:dt_ENUMEEMPowerLimReq_DELIVERY_MODE_POWER_LIM_REQ;3:dt_ENUMEEMPowerLimReq_BATT_FAIL_POWER_LIM_REQ;4:dt_ENUMEEMPowerLimReq_PROD_FAIL_POWER_LIM_REQ;5:dt_ENUMEEMPowerLimReq_NOT_USED ,76D,24,31,1,0,0,,22606D,62606D,ff,S_K_SOF_C_Counter ,76D,24,24,1,0,0,,22606E,62606E,ff,V_B_SOFC_possible_int ,76D,24,31,1,0,0,,22606F,62606F,ff,V_E_SOF_C_Status,0:dt_ENUMSOFforSS_STATUS_NOK;1:dt_ENUMSOFforSS_STATUS_OK;2:dt_ENUMSOFforSS_STATUS_NOK_CONFIRMED ,76D,24,31,1,0,0,,226070,626070,ff,V_E_EEM_Strategy_int ,76D,24,39,.001,0,3,,226071,626071,ff,V_U_ESM_OptimumVoltage_int ,76D,24,31,1,0,0,,226072,626072,ff,V_E_DeliveryModeInformation,0:dt_ENUMDeliveryModeInfo_CUSTOMER_MODE;1:dt_ENUMDeliveryModeInfo_DELIVERY_MODE_1;2:dt_ENUMDeliveryModeInfo_DELIVERY_MODE_2;3:dt_ENUMDeliveryModeInfo_NOT_USED ,76D,24,31,1,0,0,,226073,626073,ff,V_E_Producer_Loss_status,0:dt_ENUMProducerLossStatus_PRODUCER_IS_NOT_LOST;1:dt_ENUMProducerLossStatus_PRODUCER_IS_CONFIRMED_LOST ,76D,24,31,1,0,0,,226074,626074,ff,V_E_VoltageRatebyAC,0:dt_ENUMVoltageRate_NO_REQUEST;1:dt_ENUMVoltageRate_RATE_1;2:dt_ENUMVoltageRate_RATE_2;3:dt_ENUMVoltageRate_RATE_3;4:dt_ENUMVoltageRate_RATE_4 ,76D,24,31,1,0,0,,226075,626075,ff,V_E_VoltageRatebyBCM,0:dt_ENUMVoltageRate_NO_REQUEST;1:dt_ENUMVoltageRate_RATE_1;2:dt_ENUMVoltageRate_RATE_2;3:dt_ENUMVoltageRate_RATE_3;4:dt_ENUMVoltageRate_RATE_4 ,76D,24,31,1,0,0,,226076,626076,ff,V_E_VoltageRatebyECM,0:dt_ENUMVoltageRate_NO_REQUEST;1:dt_ENUMVoltageRate_RATE_1;2:dt_ENUMVoltageRate_RATE_2;3:dt_ENUMVoltageRate_RATE_3;4:dt_ENUMVoltageRate_RATE_4 ,76D,24,39,.01,0,2,,226077,626077,1ff,V_I_ECUSupply1_est ,76D,24,39,.01,0,2,,226078,626078,1ff,V_I_ECUSupply2_est ,76D,24,39,.1,0,1,,226079,626079,1ff,V_I_Producer_current_est ,76D,24,39,.001,0,3,,22607A,62607A,ff,V_U_ECUSupply1_mes ,76D,24,39,.001,0,3,,22607B,62607B,ff,V_U_ECUSupply2_mes ,76D,24,39,.001,0,3,,22607C,62607C,ff,V_U_max_by_ECM ,76D,24,39,.001,0,3,,22607D,62607D,ff,V_U_min_by_AC ,76D,24,39,.001,0,3,,22607E,62607E,ff,V_U_min_by_BCM ,76D,24,39,.001,0,3,,22607F,62607F,ff,V_U_min_by_Braking ,76D,24,39,.001,0,3,,226080,626080,ff,V_U_min_by_ECM ,76D,24,39,.001,0,3,,226081,626081,ff,V_U_min_by_Steer ,76D,24,39,.001,0,3,,226082,626082,ff,V_U_min_by_VehFuncts ,76D,24,39,.001,0,3,,226083,626083,ff,V_U_ProducerOptimumVoltage ,76D,24,31,1,0,0,,226084,626084,ff,V_E_LowBatteryVoltageDisplay,0:dt_ENUMLowBatteryVoltageDisp_NO_DISPLAY_REQUEST;1:dt_ENUMLowBatteryVoltageDisp_BATTERY_SAVE_MODE;2:dt_ENUMLowBatteryVoltageDisp_BATTERY_WEAK_START_ENGINE;3:dt_ENUMLowBatteryVoltageDisp_BATTERY_IN_CHARGE ,76D,24,31,1,0,0,,226085,626085,ff,V_E_MMI_high_level_1,0:dt_ENUMBattWarnReqLevelHiUSM_NOT_USED;1:dt_ENUMBattWarnReqLevelHiUSM_NO_WARNING_REQUESTED;2:dt_ENUMBattWarnReqLevelHiUSM_REQUESTED ,76D,24,31,1,0,0,,226086,626086,ff,V_E_MMI_low_level_1,0:dt_ENUMBattWarnReqLevelLoUSM_NO_WARNING_REQUESTED;1:dt_ENUMBattWarnReqLevelLoUSM_REQUESTED ,76D,24,31,.1,0,1,,226087,626087,ff,V_dU_Max_by_AC_int ,76D,24,31,.1,0,1,,226088,626088,ff,V_dU_Max_by_BCM_int ,76D,24,31,.1,0,1,,226089,626089,ff,V_dU_Rate_by_ECM_int ,76D,24,31,.1,0,1,,22608A,62608A,ff,V_dU_Ref_rate_neg_req_int ,76D,24,31,.1,0,1,,22608B,62608B,ff,V_dU_Ref_rate_pos_req_int ,76D,24,31,1,0,0,,22608C,62608C,ff,V_E_RVS_Activation_status_int ,76D,24,31,1,0,0,,22608D,62608D,ff,V_E_IdleSpeedInhibitionRequest,0:dt_ENUMIdleSpeedInhibRequest_UNAVAILABLE;1:dt_ENUMIdleSpeedInhibRequest_IDLE_SPEED_INHIBIT_REQUESTED;2:dt_ENUMIdleSpeedInhibRequest_IDLE_SPEED_INHIBIT_NOT_REQUESTED;3:dt_ENUMIdleSpeedInhibRequest_NOT_USED ,76D,24,39,.001,0,3,,22608E,62608E,ff,V_U_Ref_Voltage_req ,76D,24,31,.1,0,1,,22608F,62608F,ff,V_dU_Syst_Opti_rate_neg_req_int ,76D,24,31,.1,0,1,,226090,626090,ff,V_dU_Syst_Opti_rate_pos_req_int ,76D,24,31,1,0,0,,226091,626091,ff,V_K_Sys_Opti_Volt_Level_int ,76D,24,39,.001,0,3,,226092,626092,ff,V_U_ESM_req_int ,76D,24,39,.001,0,3,,226093,626093,ff,V_U_EV_Charge_req_int ,76D,24,39,.001,0,3,,226094,626094,ff,V_U_ExtraFeeding_req_int ,76D,24,39,.001,0,3,,226095,626095,ff,V_U_Floating_req_int ,76D,24,39,.001,0,3,,226096,626096,ff,V_U_Nominal_req_int ,76D,24,39,.001,0,3,,226097,626097,ff,V_U_RegeESM_int ,76D,24,39,.001,0,3,,226098,626098,ff,V_U_Sys_Opti_Voltage_req_int ,76D,24,31,1,0,0,,226099,626099,ff,V_K_Prim_UminCranking_Updated ,76D,24,39,.001,0,3,,22609A,62609A,ff,V_U_IbattSensor ,76D,24,39,1,0,0,,22609B,62609B,ff,V_U_Prim_Storage_current_HW ,76D,24,39,.001,0,3,,22609C,62609C,ff,V_U_TempBattSens ,76D,24,39,.001,0,3,,22609D,62609D,ff,V_U_Prim_Storage_temp_HW_int ,76D,24,31,1,0,0,,22609E,62609E,ff,V_E_Maintenance_Mode_Status,1:dt_ENUM_Maintenance_Mode_Status_NOT_REQUESTED;2:dt_ENUM_Maintenance_Mode_Status_REQUESTED;3:dt_ENUM_Maintenance_Mode_Status_UNAVAILABLE;0:dt_ENUM_Maintenance_Mode_Status_NOT_USED ,76D,24,31,1,0,0,,22609F,62609F,ff,V_E_ESM_status_int,0:dt_ENUMESMStatus_NOT_USED;1:dt_ENUMESMStatus_NOMINAL;2:dt_ENUMESMStatus_FLOATING;3:dt_ENUMESMStatus_DISCHARGE;4:dt_ENUMESMStatus_REGENERATION;5:dt_ENUMESMStatus_INTERMEDIATE;6:dt_ENUMESMStatus_DEACTIVATED ,76D,24,31,1,0,0,,2260A0,6260A0,ff,V_E_HandDrivingActivationRequest,0:dt_ENUM_HandDrivingActivationRequest_NO_REQUEST;1:dt_ENUM_HandDrivingActivationRequest_RIGHT_HAND_DRIVING_REQUESTED;2:dt_ENUM_HandDrivingActivationRequest_LEFT_HAND_DRIVING_REQUESTED;3:dt_ENUM_HandDrivingActivationRequest_RESET_REQUEST ,76D,24,31,1,0,0,,2260A1,6260A1,ff,V_E_WarningLightsStatus,0:dt_ENUM_WarningLightsStatus_NOT_REQUESTED;1:dt_ENUM_WarningLightsStatus_REQUESTED ,76D,24,24,1,0,0,,2260A2,6260A2,ff,V_B_EndOfTrip_ChgCompleted_int ,76D,24,24,1,0,0,,2260A3,6260A3,ff,V_B_RegenCurr_checked_int ,76D,24,24,1,0,0,,2260A4,6260A4,ff,V_B_RegenCurr_Curr_cond_int ,76D,24,24,1,0,0,,2260A5,6260A5,ff,V_B_RegenCurr_Insufficient_int ,76D,24,24,1,0,0,,2260A6,6260A6,ff,V_B_RegenCurr_prod_OK_int ,76D,24,24,1,0,0,,2260A7,6260A7,ff,V_B_RegenCurr_Prod_Start_OK_int ,76D,24,24,1,0,0,,2260A8,6260A8,ff,V_B_RegenCurr_regen_trigger_int ,76D,24,24,1,0,0,,2260A9,6260A9,ff,V_B_RegenCurr_trigger_start_int ,76D,24,24,1,0,0,,2260AA,6260AA,ff,V_B_UnderestDetected_int ,76D,24,39,.01,0,2,,2260AB,6260AB,ff,V_Pct_SOCinit_est_raw_int ,76D,24,39,1,0,0,,2260AC,6260AC,ff,V_Pct_UnderestResetSOC_int ,76D,24,39,.1,0,1,,2260AD,6260AD,ff,V_I_PrimStor_Underest_thd_int ,76D,24,39,.1,0,1,,2260AE,6260AE,1ff,V_I_Prim_RegenCurr_int ,76D,24,31,1,0,0,,2260AF,6260AF,ff,V_E_Vehicle_State_EEM,0:dt_ENUMVehicleStateEEM_PERIODIC_TECH_WU;1:dt_ENUMVehicleStateEEM_EVENT_TECH_WU;2:dt_ENUMVehicleStateEEM_CUSTOMER_WU;3:dt_ENUMVehicleStateEEM_EV_CHARGE;4:dt_ENUMVehicleStateEEM_IGNITION;5:dt_ENUMVehicleStateEEM_E_MOTOR_RUNNING;6:dt_ENUMVehicleStateEEM_STARTING_IN_PROGRESS;7:dt_ENUMVehicleStateEEM_ICE_RUNNING;8:dt_ENUMVehicleStateEEM_AUTO_START;9:dt_ENUMVehicleStateEEM_AUTO_STOP;10:dt_ENUMVehicleStateEEM_UNAVAILABLE ,76D,24,39,.025,0,2,,2260B0,6260B0,ff,S_Pct_FT_SSR ,76D,24,39,.025,0,2,,2260B1,6260B1,ff,S_Pct_RR_SSR ,76D,24,31,1,0,0,,2260B2,6260B2,ff,V_E_FrontWiperProtection,0:dt_ENUMFrontWiperProtection_INACTIVE;1:dt_ENUMFrontWiperProtection_LOW_SPEED_PROTECTION;2:dt_ENUMFrontWiperProtection_HIGH_SPEED_PROTECTION;3:dt_ENUMFrontWiperProtection_NOT_USED ,76D,24,39,.001,0,3,,2260B3,6260B3,ff,S_U_Prim_Storage_NoLoad ,76D,24,55,1,0,0,,22DA00,62DA00,4ff,V-SSD 0 ,76D,56,87,1,0,0,,22DA00,62DA00,4ff,V-SSD 1 ,76D,88,119,1,0,0,,22DA00,62DA00,4ff,V-SSD 2 ,76D,120,151,1,0,0,,22DA00,62DA00,4ff,V-SSD 3 ,76D,152,183,1,0,0,,22DA00,62DA00,4ff,V-SSD 4 ,76D,184,215,1,0,0,,22DA00,62DA00,4ff,V-SSD 5 ,76D,216,247,1,0,0,,22DA00,62DA00,4ff,V-SSD 6 ,76D,248,279,1,0,0,,22DA00,62DA00,4ff,V-SSD 7 ,76D,280,311,1,0,0,,22DA00,62DA00,4ff,V-SSD 8 ,76D,312,343,1,0,0,,22DA00,62DA00,4ff,V-SSD 9 ,76D,344,375,1,0,0,,22DA00,62DA00,4ff,V-SSD 10 ,76D,376,407,1,0,0,,22DA00,62DA00,4ff,V-SSD 11 ,76D,408,439,1,0,0,,22DA00,62DA00,4ff,V-SSD 12 ,76D,440,471,1,0,0,,22DA00,62DA00,4ff,V-SSD 13 ,76D,472,503,1,0,0,,22DA00,62DA00,4ff,V-SSD 14 ,76D,504,535,1,0,0,,22DA00,62DA00,4ff,V-SSD 15 ,76D,536,567,1,0,0,,22DA00,62DA00,4ff,V-SSD 16 ,76D,568,599,1,0,0,,22DA00,62DA00,4ff,V-SSD 17 ,76D,600,631,1,0,0,,22DA00,62DA00,4ff,V-SSD 18 ,76D,632,663,1,0,0,,22DA00,62DA00,4ff,V-SSD 19 ,76D,664,695,1,0,0,,22DA00,62DA00,4ff,V-SSD 20 ,76D,696,727,1,0,0,,22DA00,62DA00,4ff,V-SSD 21 ,76D,728,759,1,0,0,,22DA00,62DA00,4ff,V-SSD 22 ,76D,760,791,1,0,0,,22DA00,62DA00,4ff,V-SSD 23 ,76D,792,823,1,0,0,,22DA00,62DA00,4ff,V-SSD 24 ,76D,824,855,1,0,0,,22DA00,62DA00,4ff,V-SSD 25 ,76D,856,887,1,0,0,,22DA00,62DA00,4ff,V-SSD 26 ,76D,888,919,1,0,0,,22DA00,62DA00,4ff,V-SSD 27 ,76D,920,951,1,0,0,,22DA00,62DA00,4ff,V-SSD 28 ,76D,952,983,1,0,0,,22DA00,62DA00,4ff,V-SSD 29 ,76D,984,1015,1,0,0,,22DA00,62DA00,4ff,V-SSD 30 ,76D,1016,1047,1,0,0,,22DA00,62DA00,4ff,V-SSD 31 ,76D,1048,1079,1,0,0,,22DA00,62DA00,4ff,V-SSD 32 ,76D,1080,1111,1,0,0,,22DA00,62DA00,4ff,V-SSD 33 ,76D,1112,1143,1,0,0,,22DA00,62DA00,4ff,V-SSD 34 ,76D,1144,1175,1,0,0,,22DA00,62DA00,4ff,V-SSD 35 ,76D,1176,1207,1,0,0,,22DA00,62DA00,4ff,V-SSD 36 ,76D,1208,1239,1,0,0,,22DA00,62DA00,4ff,V-SSD 37 ,76D,1240,1271,1,0,0,,22DA00,62DA00,4ff,V-SSD 38 ,76D,1272,1303,1,0,0,,22DA00,62DA00,4ff,V-SSD 39 ,76D,1304,1335,1,0,0,,22DA00,62DA00,4ff,V-SSD 40 ,76D,1336,1367,1,0,0,,22DA00,62DA00,4ff,V-SSD 41 ,76D,1368,1399,1,0,0,,22DA00,62DA00,4ff,V-SSD 42 ,76D,1400,1431,1,0,0,,22DA00,62DA00,4ff,V-SSD 43 ,76D,1432,1463,1,0,0,,22DA00,62DA00,4ff,V-SSD 44 ,76D,1464,1495,1,0,0,,22DA00,62DA00,4ff,V-SSD 45 ,76D,1496,1527,1,0,0,,22DA00,62DA00,4ff,V-SSD 46 ,76D,1528,1559,1,0,0,,22DA00,62DA00,4ff,V-SSD 47 ,76D,1560,1591,1,0,0,,22DA00,62DA00,4ff,V-SSD 48 ,76D,1592,1623,1,0,0,,22DA00,62DA00,4ff,V-SSD 49 ,76D,1624,1655,1,0,0,,22DA00,62DA00,4ff,V-SSD 50 ,76D,1656,1687,1,0,0,,22DA00,62DA00,4ff,V-SSD 51 ,76D,1688,1719,1,0,0,,22DA00,62DA00,4ff,V-SSD 52 ,76D,1720,1751,1,0,0,,22DA00,62DA00,4ff,V-SSD 53 ,76D,1752,1783,1,0,0,,22DA00,62DA00,4ff,V-SSD 54 ,76D,1784,1815,1,0,0,,22DA00,62DA00,4ff,V-SSD 55 ,76D,1816,1847,1,0,0,,22DA00,62DA00,4ff,V-SSD 56 ,76D,1848,1879,1,0,0,,22DA00,62DA00,4ff,V-SSD 57 ,76D,1880,1911,1,0,0,,22DA00,62DA00,4ff,V-SSD 58 ,76D,1912,1943,1,0,0,,22DA00,62DA00,4ff,V-SSD 59 ,76D,1944,1975,1,0,0,,22DA00,62DA00,4ff,V-SSD 60 ,76D,1976,2007,1,0,0,,22DA00,62DA00,4ff,V-SSD 61 ,76D,2008,2039,1,0,0,,22DA00,62DA00,4ff,V-SSD 62 ,76D,2040,2071,1,0,0,,22DA00,62DA00,4ff,V-SSD 63 ,76D,2072,2103,1,0,0,,22DA00,62DA00,4ff,V-SSD 64 ,76D,2104,2135,1,0,0,,22DA00,62DA00,4ff,V-SSD 65 ,76D,2136,2167,1,0,0,,22DA00,62DA00,4ff,V-SSD 66 ,76D,2168,2199,1,0,0,,22DA00,62DA00,4ff,V-SSD 67 ,76D,2200,2231,1,0,0,,22DA00,62DA00,4ff,V-SSD 68 ,76D,2232,2263,1,0,0,,22DA00,62DA00,4ff,V-SSD 69 ,76D,2264,2295,1,0,0,,22DA00,62DA00,4ff,V-SSD 70 ,76D,2296,2327,1,0,0,,22DA00,62DA00,4ff,V-SSD 71 ,76D,2328,2359,1,0,0,,22DA00,62DA00,4ff,V-SSD 72 ,76D,2360,2391,1,0,0,,22DA00,62DA00,4ff,V-SSD 73 ,76D,2392,2423,1,0,0,,22DA00,62DA00,4ff,V-SSD 74 ,76D,2424,2455,1,0,0,,22DA00,62DA00,4ff,V-SSD 75 ,76D,2456,2487,1,0,0,,22DA00,62DA00,4ff,V-SSD 76 ,76D,2488,2519,1,0,0,,22DA00,62DA00,4ff,V-SSD 77 ,76D,2520,2543,1,0,0,,22DA00,62DA00,4ff,V-SSD 78 ,76D,24,55,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 0 ,76D,56,87,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 1 ,76D,88,119,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 2 ,76D,120,151,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 3 ,76D,152,183,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 4 ,76D,184,215,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 5 ,76D,216,247,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 6 ,76D,248,279,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 7 ,76D,280,311,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 8 ,76D,312,343,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 9 ,76D,344,375,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 10 ,76D,376,407,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 11 ,76D,408,439,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 12 ,76D,440,471,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 13 ,76D,472,503,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 14 ,76D,504,535,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 15 ,76D,536,567,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 16 ,76D,568,599,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 17 ,76D,600,631,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 18 ,76D,632,663,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 19 ,76D,664,695,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 20 ,76D,696,727,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 21 ,76D,728,759,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 22 ,76D,760,791,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 23 ,76D,792,823,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 24 ,76D,824,855,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 25 ,76D,856,887,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 26 ,76D,888,919,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 27 ,76D,920,951,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 28 ,76D,952,983,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 29 ,76D,984,1015,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 30 ,76D,1016,1047,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 31 ,76D,1048,1079,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 32 ,76D,1080,1111,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 33 ,76D,1112,1143,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 34 ,76D,1144,1175,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 35 ,76D,1176,1207,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 36 ,76D,1208,1239,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 37 ,76D,1240,1271,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 38 ,76D,1272,1303,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 39 ,76D,1304,1335,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 40 ,76D,1336,1367,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 41 ,76D,1368,1399,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 42 ,76D,1400,1431,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 43 ,76D,1432,1463,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 44 ,76D,1464,1495,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 45 ,76D,1496,1527,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 46 ,76D,1528,1559,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 47 ,76D,1560,1591,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 48 ,76D,1592,1623,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 49 ,76D,1624,1655,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 50 ,76D,1656,1687,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 51 ,76D,1688,1719,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 52 ,76D,1720,1751,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 53 ,76D,1752,1783,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 54 ,76D,1784,1815,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 55 ,76D,1816,1847,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 56 ,76D,1848,1879,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 57 ,76D,1880,1911,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 58 ,76D,1912,1943,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 59 ,76D,1944,1975,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 60 ,76D,1976,2007,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 61 ,76D,2008,2039,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 62 ,76D,2040,2071,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 63 ,76D,2072,2103,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 64 ,76D,2104,2135,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 65 ,76D,2136,2167,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 66 ,76D,2168,2199,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 67 ,76D,2200,2231,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 68 ,76D,2232,2263,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 69 ,76D,2264,2295,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 70 ,76D,2296,2327,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 71 ,76D,2328,2359,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 72 ,76D,2360,2391,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 73 ,76D,2392,2423,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 74 ,76D,2424,2455,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 75 ,76D,2456,2487,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 76 ,76D,2488,2519,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 77 ,76D,2520,2543,1,0,0,,22DA01,62DA01,4ff,V-SSD_1 78 ,76D,24,55,1,0,0,,22DA10,62DA10,4ff,V-TDD 0 ,76D,56,87,1,0,0,,22DA10,62DA10,4ff,V-TDD 1 ,76D,88,119,1,0,0,,22DA10,62DA10,4ff,V-TDD 2 ,76D,120,151,1,0,0,,22DA10,62DA10,4ff,V-TDD 3 ,76D,152,183,1,0,0,,22DA10,62DA10,4ff,V-TDD 4 ,76D,184,215,1,0,0,,22DA10,62DA10,4ff,V-TDD 5 ,76D,216,247,1,0,0,,22DA10,62DA10,4ff,V-TDD 6 ,76D,248,279,1,0,0,,22DA10,62DA10,4ff,V-TDD 7 ,76D,280,311,1,0,0,,22DA10,62DA10,4ff,V-TDD 8 ,76D,312,343,1,0,0,,22DA10,62DA10,4ff,V-TDD 9 ,76D,344,375,1,0,0,,22DA10,62DA10,4ff,V-TDD 10 ,76D,376,407,1,0,0,,22DA10,62DA10,4ff,V-TDD 11 ,76D,408,439,1,0,0,,22DA10,62DA10,4ff,V-TDD 12 ,76D,440,471,1,0,0,,22DA10,62DA10,4ff,V-TDD 13 ,76D,472,503,1,0,0,,22DA10,62DA10,4ff,V-TDD 14 ,76D,504,535,1,0,0,,22DA10,62DA10,4ff,V-TDD 15 ,76D,536,567,1,0,0,,22DA10,62DA10,4ff,V-TDD 16 ,76D,568,599,1,0,0,,22DA10,62DA10,4ff,V-TDD 17 ,76D,600,631,1,0,0,,22DA10,62DA10,4ff,V-TDD 18 ,76D,632,663,1,0,0,,22DA10,62DA10,4ff,V-TDD 19 ,76D,664,695,1,0,0,,22DA10,62DA10,4ff,V-TDD 20 ,76D,696,727,1,0,0,,22DA10,62DA10,4ff,V-TDD 21 ,76D,728,759,1,0,0,,22DA10,62DA10,4ff,V-TDD 22 ,76D,760,791,1,0,0,,22DA10,62DA10,4ff,V-TDD 23 ,76D,792,823,1,0,0,,22DA10,62DA10,4ff,V-TDD 24 ,76D,824,855,1,0,0,,22DA10,62DA10,4ff,V-TDD 25 ,76D,856,887,1,0,0,,22DA10,62DA10,4ff,V-TDD 26 ,76D,888,919,1,0,0,,22DA10,62DA10,4ff,V-TDD 27 ,76D,920,951,1,0,0,,22DA10,62DA10,4ff,V-TDD 28 ,76D,952,983,1,0,0,,22DA10,62DA10,4ff,V-TDD 29 ,76D,984,1015,1,0,0,,22DA10,62DA10,4ff,V-TDD 30 ,76D,1016,1047,1,0,0,,22DA10,62DA10,4ff,V-TDD 31 ,76D,1048,1079,1,0,0,,22DA10,62DA10,4ff,V-TDD 32 ,76D,1080,1111,1,0,0,,22DA10,62DA10,4ff,V-TDD 33 ,76D,1112,1143,1,0,0,,22DA10,62DA10,4ff,V-TDD 34 ,76D,1144,1175,1,0,0,,22DA10,62DA10,4ff,V-TDD 35 ,76D,1176,1183,1,0,0,,22DA10,62DA10,4ff,V-TDD 36 ,76D,24,55,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 0 ,76D,56,87,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 1 ,76D,88,119,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 2 ,76D,120,151,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 3 ,76D,152,183,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 4 ,76D,184,215,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 5 ,76D,216,247,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 6 ,76D,248,279,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 7 ,76D,280,311,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 8 ,76D,312,343,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 9 ,76D,344,375,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 10 ,76D,376,407,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 11 ,76D,408,439,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 12 ,76D,440,471,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 13 ,76D,472,503,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 14 ,76D,504,535,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 15 ,76D,536,567,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 16 ,76D,568,599,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 17 ,76D,600,631,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 18 ,76D,632,663,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 19 ,76D,664,695,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 20 ,76D,696,727,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 21 ,76D,728,759,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 22 ,76D,760,791,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 23 ,76D,792,823,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 24 ,76D,824,855,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 25 ,76D,856,887,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 26 ,76D,888,919,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 27 ,76D,920,951,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 28 ,76D,952,983,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 29 ,76D,984,1015,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 30 ,76D,1016,1047,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 31 ,76D,1048,1079,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 32 ,76D,1080,1111,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 33 ,76D,1112,1143,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 34 ,76D,1144,1175,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 35 ,76D,1176,1183,1,0,0,,22DA11,62DA11,4ff,V-TDD_1 36 ,76D,24,55,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 0 ,76D,56,87,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 1 ,76D,88,119,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 2 ,76D,120,151,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 3 ,76D,152,183,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 4 ,76D,184,215,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 5 ,76D,216,247,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 6 ,76D,248,279,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 7 ,76D,280,311,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 8 ,76D,312,343,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 9 ,76D,344,375,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 10 ,76D,376,407,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 11 ,76D,408,439,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 12 ,76D,440,471,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 13 ,76D,472,503,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 14 ,76D,504,535,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 15 ,76D,536,567,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 16 ,76D,568,599,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 17 ,76D,600,631,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 18 ,76D,632,663,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 19 ,76D,664,695,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 20 ,76D,696,727,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 21 ,76D,728,759,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 22 ,76D,760,791,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 23 ,76D,792,823,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 24 ,76D,824,855,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 25 ,76D,856,887,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 26 ,76D,888,919,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 27 ,76D,920,951,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 28 ,76D,952,983,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 29 ,76D,984,1015,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 30 ,76D,1016,1047,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 31 ,76D,1048,1079,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 32 ,76D,1080,1111,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 33 ,76D,1112,1143,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 34 ,76D,1144,1175,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 35 ,76D,1176,1183,1,0,0,,22DA12,62DA12,4ff,V-TDD_2 36 ,76D,24,55,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 0 ,76D,56,87,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 1 ,76D,88,119,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 2 ,76D,120,151,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 3 ,76D,152,183,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 4 ,76D,184,215,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 5 ,76D,216,247,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 6 ,76D,248,279,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 7 ,76D,280,311,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 8 ,76D,312,343,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 9 ,76D,344,375,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 10 ,76D,376,407,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 11 ,76D,408,439,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 12 ,76D,440,471,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 13 ,76D,472,503,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 14 ,76D,504,535,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 15 ,76D,536,567,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 16 ,76D,568,599,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 17 ,76D,600,631,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 18 ,76D,632,663,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 19 ,76D,664,695,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 20 ,76D,696,727,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 21 ,76D,728,759,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 22 ,76D,760,791,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 23 ,76D,792,823,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 24 ,76D,824,855,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 25 ,76D,856,887,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 26 ,76D,888,919,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 27 ,76D,920,951,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 28 ,76D,952,983,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 29 ,76D,984,1015,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 30 ,76D,1016,1047,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 31 ,76D,1048,1079,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 32 ,76D,1080,1111,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 33 ,76D,1112,1143,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 34 ,76D,1144,1175,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 35 ,76D,1176,1183,1,0,0,,22DA13,62DA13,4ff,V-TDD_3 36 ,76D,24,55,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 0 ,76D,56,87,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 1 ,76D,88,119,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 2 ,76D,120,151,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 3 ,76D,152,183,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 4 ,76D,184,215,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 5 ,76D,216,247,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 6 ,76D,248,279,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 7 ,76D,280,311,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 8 ,76D,312,343,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 9 ,76D,344,375,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 10 ,76D,376,407,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 11 ,76D,408,439,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 12 ,76D,440,471,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 13 ,76D,472,503,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 14 ,76D,504,535,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 15 ,76D,536,567,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 16 ,76D,568,599,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 17 ,76D,600,631,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 18 ,76D,632,663,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 19 ,76D,664,695,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 20 ,76D,696,727,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 21 ,76D,728,759,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 22 ,76D,760,791,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 23 ,76D,792,823,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 24 ,76D,824,855,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 25 ,76D,856,887,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 26 ,76D,888,919,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 27 ,76D,920,951,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 28 ,76D,952,983,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 29 ,76D,984,1015,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 30 ,76D,1016,1047,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 31 ,76D,1048,1079,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 32 ,76D,1080,1111,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 33 ,76D,1112,1143,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 34 ,76D,1144,1175,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 35 ,76D,1176,1183,1,0,0,,22DA14,62DA14,4ff,V-TDD_4 36 ,76D,24,55,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 0 ,76D,56,87,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 1 ,76D,88,119,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 2 ,76D,120,151,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 3 ,76D,152,183,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 4 ,76D,184,215,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 5 ,76D,216,247,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 6 ,76D,248,279,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 7 ,76D,280,311,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 8 ,76D,312,343,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 9 ,76D,344,375,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 10 ,76D,376,407,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 11 ,76D,408,439,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 12 ,76D,440,471,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 13 ,76D,472,503,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 14 ,76D,504,535,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 15 ,76D,536,567,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 16 ,76D,568,599,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 17 ,76D,600,631,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 18 ,76D,632,663,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 19 ,76D,664,695,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 20 ,76D,696,727,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 21 ,76D,728,759,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 22 ,76D,760,791,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 23 ,76D,792,823,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 24 ,76D,824,855,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 25 ,76D,856,887,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 26 ,76D,888,919,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 27 ,76D,920,951,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 28 ,76D,952,983,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 29 ,76D,984,1015,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 30 ,76D,1016,1047,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 31 ,76D,1048,1079,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 32 ,76D,1080,1111,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 33 ,76D,1112,1143,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 34 ,76D,1144,1175,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 35 ,76D,1176,1183,1,0,0,,22DA15,62DA15,4ff,V-TDD_5 36 ,76D,24,55,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 0 ,76D,56,87,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 1 ,76D,88,119,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 2 ,76D,120,151,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 3 ,76D,152,183,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 4 ,76D,184,215,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 5 ,76D,216,247,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 6 ,76D,248,279,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 7 ,76D,280,311,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 8 ,76D,312,343,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 9 ,76D,344,375,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 10 ,76D,376,407,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 11 ,76D,408,439,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 12 ,76D,440,471,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 13 ,76D,472,503,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 14 ,76D,504,535,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 15 ,76D,536,567,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 16 ,76D,568,599,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 17 ,76D,600,631,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 18 ,76D,632,663,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 19 ,76D,664,695,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 20 ,76D,696,727,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 21 ,76D,728,759,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 22 ,76D,760,791,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 23 ,76D,792,823,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 24 ,76D,824,855,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 25 ,76D,856,887,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 26 ,76D,888,919,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 27 ,76D,920,951,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 28 ,76D,952,983,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 29 ,76D,984,1015,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 30 ,76D,1016,1047,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 31 ,76D,1048,1079,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 32 ,76D,1080,1111,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 33 ,76D,1112,1143,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 34 ,76D,1144,1175,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 35 ,76D,1176,1183,1,0,0,,22DA16,62DA16,4ff,V-TDD_6 36 ,76D,24,55,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 0 ,76D,56,87,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 1 ,76D,88,119,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 2 ,76D,120,151,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 3 ,76D,152,183,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 4 ,76D,184,215,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 5 ,76D,216,247,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 6 ,76D,248,279,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 7 ,76D,280,311,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 8 ,76D,312,343,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 9 ,76D,344,375,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 10 ,76D,376,407,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 11 ,76D,408,439,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 12 ,76D,440,471,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 13 ,76D,472,503,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 14 ,76D,504,535,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 15 ,76D,536,567,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 16 ,76D,568,599,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 17 ,76D,600,631,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 18 ,76D,632,663,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 19 ,76D,664,695,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 20 ,76D,696,727,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 21 ,76D,728,759,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 22 ,76D,760,791,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 23 ,76D,792,823,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 24 ,76D,824,855,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 25 ,76D,856,887,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 26 ,76D,888,919,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 27 ,76D,920,951,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 28 ,76D,952,983,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 29 ,76D,984,1015,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 30 ,76D,1016,1047,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 31 ,76D,1048,1079,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 32 ,76D,1080,1111,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 33 ,76D,1112,1143,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 34 ,76D,1144,1175,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 35 ,76D,1176,1183,1,0,0,,22DA17,62DA17,4ff,V-TDD_7 36 ,76D,24,55,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 0 ,76D,56,87,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 1 ,76D,88,119,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 2 ,76D,120,151,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 3 ,76D,152,183,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 4 ,76D,184,215,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 5 ,76D,216,247,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 6 ,76D,248,279,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 7 ,76D,280,311,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 8 ,76D,312,343,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 9 ,76D,344,375,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 10 ,76D,376,407,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 11 ,76D,408,439,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 12 ,76D,440,471,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 13 ,76D,472,503,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 14 ,76D,504,535,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 15 ,76D,536,567,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 16 ,76D,568,599,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 17 ,76D,600,631,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 18 ,76D,632,663,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 19 ,76D,664,695,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 20 ,76D,696,727,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 21 ,76D,728,759,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 22 ,76D,760,791,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 23 ,76D,792,823,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 24 ,76D,824,855,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 25 ,76D,856,887,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 26 ,76D,888,919,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 27 ,76D,920,951,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 28 ,76D,952,983,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 29 ,76D,984,1015,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 30 ,76D,1016,1047,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 31 ,76D,1048,1079,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 32 ,76D,1080,1111,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 33 ,76D,1112,1143,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 34 ,76D,1144,1175,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 35 ,76D,1176,1183,1,0,0,,22DA18,62DA18,4ff,V-TDD_8 36 ,76D,24,55,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 0 ,76D,56,87,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 1 ,76D,88,119,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 2 ,76D,120,151,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 3 ,76D,152,183,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 4 ,76D,184,215,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 5 ,76D,216,247,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 6 ,76D,248,279,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 7 ,76D,280,311,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 8 ,76D,312,343,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 9 ,76D,344,375,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 10 ,76D,376,407,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 11 ,76D,408,439,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 12 ,76D,440,471,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 13 ,76D,472,503,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 14 ,76D,504,535,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 15 ,76D,536,567,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 16 ,76D,568,599,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 17 ,76D,600,631,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 18 ,76D,632,663,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 19 ,76D,664,695,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 20 ,76D,696,727,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 21 ,76D,728,759,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 22 ,76D,760,791,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 23 ,76D,792,823,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 24 ,76D,824,855,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 25 ,76D,856,887,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 26 ,76D,888,919,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 27 ,76D,920,951,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 28 ,76D,952,983,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 29 ,76D,984,1015,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 30 ,76D,1016,1047,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 31 ,76D,1048,1079,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 32 ,76D,1080,1111,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 33 ,76D,1112,1143,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 34 ,76D,1144,1175,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 35 ,76D,1176,1183,1,0,0,,22DA19,62DA19,4ff,V-TDD_9 36 ,76D,24,55,1,0,0,,22DA30,62DA30,4ff,S-SSD 0 ,76D,56,87,1,0,0,,22DA30,62DA30,4ff,S-SSD 1 ,76D,88,119,1,0,0,,22DA30,62DA30,4ff,S-SSD 2 ,76D,120,151,1,0,0,,22DA30,62DA30,4ff,S-SSD 3 ,76D,152,183,1,0,0,,22DA30,62DA30,4ff,S-SSD 4 ,76D,184,215,1,0,0,,22DA30,62DA30,4ff,S-SSD 5 ,76D,216,247,1,0,0,,22DA30,62DA30,4ff,S-SSD 6 ,76D,248,279,1,0,0,,22DA30,62DA30,4ff,S-SSD 7 ,76D,280,311,1,0,0,,22DA30,62DA30,4ff,S-SSD 8 ,76D,312,343,1,0,0,,22DA30,62DA30,4ff,S-SSD 9 ,76D,344,375,1,0,0,,22DA30,62DA30,4ff,S-SSD 10 ,76D,376,407,1,0,0,,22DA30,62DA30,4ff,S-SSD 11 ,76D,408,439,1,0,0,,22DA30,62DA30,4ff,S-SSD 12 ,76D,440,471,1,0,0,,22DA30,62DA30,4ff,S-SSD 13 ,76D,472,479,1,0,0,,22DA30,62DA30,4ff,S-SSD 14 ,76D,24,55,1,0,0,,22DA31,62DA31,4ff,S-SSD_1 0 ,76D,56,87,1,0,0,,22DA31,62DA31,4ff,S-SSD_1 1 ,76D,88,95,1,0,0,,22DA31,62DA31,4ff,S-SSD_1 2 ,76D,24,55,1,0,0,,22DA50,62DA50,4ff,S-TDD 0 ,76D,56,87,1,0,0,,22DA50,62DA50,4ff,S-TDD 1 ,76D,88,119,1,0,0,,22DA50,62DA50,4ff,S-TDD 2 ,76D,120,151,1,0,0,,22DA50,62DA50,4ff,S-TDD 3 ,76D,152,183,1,0,0,,22DA50,62DA50,4ff,S-TDD 4 ,76D,184,215,1,0,0,,22DA50,62DA50,4ff,S-TDD 5 ,76D,216,247,1,0,0,,22DA50,62DA50,4ff,S-TDD 6 ,76D,248,279,1,0,0,,22DA50,62DA50,4ff,S-TDD 7 ,76D,280,311,1,0,0,,22DA50,62DA50,4ff,S-TDD 8 ,76D,312,343,1,0,0,,22DA50,62DA50,4ff,S-TDD 9 ,76D,344,375,1,0,0,,22DA50,62DA50,4ff,S-TDD 10 ,76D,376,407,1,0,0,,22DA50,62DA50,4ff,S-TDD 11 ,76D,408,439,1,0,0,,22DA50,62DA50,4ff,S-TDD 12 ,76D,440,471,1,0,0,,22DA50,62DA50,4ff,S-TDD 13 ,76D,472,503,1,0,0,,22DA50,62DA50,4ff,S-TDD 14 ,76D,504,535,1,0,0,,22DA50,62DA50,4ff,S-TDD 15 ,76D,536,567,1,0,0,,22DA50,62DA50,4ff,S-TDD 16 ,76D,568,599,1,0,0,,22DA50,62DA50,4ff,S-TDD 17 ,76D,600,631,1,0,0,,22DA50,62DA50,4ff,S-TDD 18 ,76D,632,663,1,0,0,,22DA50,62DA50,4ff,S-TDD 19 ,76D,664,695,1,0,0,,22DA50,62DA50,4ff,S-TDD 20 ,76D,696,727,1,0,0,,22DA50,62DA50,4ff,S-TDD 21 ,76D,728,759,1,0,0,,22DA50,62DA50,4ff,S-TDD 22 ,76D,760,791,1,0,0,,22DA50,62DA50,4ff,S-TDD 23 ,76D,792,823,1,0,0,,22DA50,62DA50,4ff,S-TDD 24 ,76D,824,855,1,0,0,,22DA50,62DA50,4ff,S-TDD 25 ,76D,856,887,1,0,0,,22DA50,62DA50,4ff,S-TDD 26 ,76D,888,919,1,0,0,,22DA50,62DA50,4ff,S-TDD 27 ,76D,920,951,1,0,0,,22DA50,62DA50,4ff,S-TDD 28 ,76D,952,983,1,0,0,,22DA50,62DA50,4ff,S-TDD 29 ,76D,984,1015,1,0,0,,22DA50,62DA50,4ff,S-TDD 30 ,76D,1016,1047,1,0,0,,22DA50,62DA50,4ff,S-TDD 31 ,76D,1048,1079,1,0,0,,22DA50,62DA50,4ff,S-TDD 32 ,76D,1080,1111,1,0,0,,22DA50,62DA50,4ff,S-TDD 33 ,76D,1112,1119,1,0,0,,22DA50,62DA50,4ff,S-TDD 34 ,76D,24,55,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 0 ,76D,56,87,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 1 ,76D,88,119,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 2 ,76D,120,151,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 3 ,76D,152,183,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 4 ,76D,184,215,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 5 ,76D,216,247,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 6 ,76D,248,279,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 7 ,76D,280,311,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 8 ,76D,312,343,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 9 ,76D,344,375,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 10 ,76D,376,407,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 11 ,76D,408,439,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 12 ,76D,440,471,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 13 ,76D,472,503,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 14 ,76D,504,535,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 15 ,76D,536,567,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 16 ,76D,568,599,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 17 ,76D,600,631,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 18 ,76D,632,663,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 19 ,76D,664,695,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 20 ,76D,696,727,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 21 ,76D,728,759,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 22 ,76D,760,791,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 23 ,76D,792,823,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 24 ,76D,824,855,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 25 ,76D,856,887,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 26 ,76D,888,919,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 27 ,76D,920,951,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 28 ,76D,952,983,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 29 ,76D,984,1015,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 30 ,76D,1016,1047,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 31 ,76D,1048,1079,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 32 ,76D,1080,1111,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 33 ,76D,1112,1119,1,0,0,,22DA51,62DA51,4ff,S-TDD_1 34 ,76D,24,55,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 0 ,76D,56,87,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 1 ,76D,88,119,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 2 ,76D,120,151,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 3 ,76D,152,183,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 4 ,76D,184,215,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 5 ,76D,216,247,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 6 ,76D,248,279,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 7 ,76D,280,311,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 8 ,76D,312,343,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 9 ,76D,344,375,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 10 ,76D,376,407,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 11 ,76D,408,439,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 12 ,76D,440,471,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 13 ,76D,472,503,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 14 ,76D,504,535,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 15 ,76D,536,567,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 16 ,76D,568,599,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 17 ,76D,600,631,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 18 ,76D,632,663,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 19 ,76D,664,695,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 20 ,76D,696,727,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 21 ,76D,728,759,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 22 ,76D,760,791,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 23 ,76D,792,823,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 24 ,76D,824,855,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 25 ,76D,856,887,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 26 ,76D,888,919,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 27 ,76D,920,951,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 28 ,76D,952,983,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 29 ,76D,984,1015,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 30 ,76D,1016,1047,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 31 ,76D,1048,1079,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 32 ,76D,1080,1111,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 33 ,76D,1112,1119,1,0,0,,22DA52,62DA52,4ff,S-TDD_2 34 ,76D,24,55,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 0 ,76D,56,87,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 1 ,76D,88,119,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 2 ,76D,120,151,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 3 ,76D,152,183,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 4 ,76D,184,215,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 5 ,76D,216,247,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 6 ,76D,248,279,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 7 ,76D,280,311,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 8 ,76D,312,343,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 9 ,76D,344,375,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 10 ,76D,376,407,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 11 ,76D,408,439,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 12 ,76D,440,471,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 13 ,76D,472,503,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 14 ,76D,504,535,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 15 ,76D,536,567,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 16 ,76D,568,599,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 17 ,76D,600,631,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 18 ,76D,632,663,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 19 ,76D,664,695,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 20 ,76D,696,727,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 21 ,76D,728,759,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 22 ,76D,760,791,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 23 ,76D,792,823,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 24 ,76D,824,855,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 25 ,76D,856,887,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 26 ,76D,888,919,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 27 ,76D,920,951,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 28 ,76D,952,983,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 29 ,76D,984,1015,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 30 ,76D,1016,1047,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 31 ,76D,1048,1079,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 32 ,76D,1080,1111,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 33 ,76D,1112,1119,1,0,0,,22DA53,62DA53,4ff,S-TDD_3 34 ,76D,24,55,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 0 ,76D,56,87,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 1 ,76D,88,119,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 2 ,76D,120,151,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 3 ,76D,152,183,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 4 ,76D,184,215,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 5 ,76D,216,247,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 6 ,76D,248,279,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 7 ,76D,280,311,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 8 ,76D,312,343,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 9 ,76D,344,375,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 10 ,76D,376,407,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 11 ,76D,408,439,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 12 ,76D,440,471,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 13 ,76D,472,503,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 14 ,76D,504,535,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 15 ,76D,536,567,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 16 ,76D,568,599,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 17 ,76D,600,631,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 18 ,76D,632,663,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 19 ,76D,664,695,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 20 ,76D,696,727,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 21 ,76D,728,759,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 22 ,76D,760,791,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 23 ,76D,792,823,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 24 ,76D,824,855,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 25 ,76D,856,887,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 26 ,76D,888,919,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 27 ,76D,920,951,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 28 ,76D,952,983,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 29 ,76D,984,1015,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 30 ,76D,1016,1047,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 31 ,76D,1048,1079,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 32 ,76D,1080,1111,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 33 ,76D,1112,1119,1,0,0,,22DA54,62DA54,4ff,S-TDD_4 34 ,76D,24,55,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 0 ,76D,56,87,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 1 ,76D,88,119,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 2 ,76D,120,151,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 3 ,76D,152,183,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 4 ,76D,184,215,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 5 ,76D,216,247,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 6 ,76D,248,279,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 7 ,76D,280,311,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 8 ,76D,312,343,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 9 ,76D,344,375,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 10 ,76D,376,407,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 11 ,76D,408,439,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 12 ,76D,440,471,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 13 ,76D,472,503,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 14 ,76D,504,535,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 15 ,76D,536,567,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 16 ,76D,568,599,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 17 ,76D,600,631,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 18 ,76D,632,663,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 19 ,76D,664,695,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 20 ,76D,696,727,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 21 ,76D,728,759,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 22 ,76D,760,791,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 23 ,76D,792,823,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 24 ,76D,824,855,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 25 ,76D,856,887,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 26 ,76D,888,919,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 27 ,76D,920,951,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 28 ,76D,952,983,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 29 ,76D,984,1015,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 30 ,76D,1016,1047,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 31 ,76D,1048,1079,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 32 ,76D,1080,1111,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 33 ,76D,1112,1119,1,0,0,,22DA55,62DA55,4ff,S-TDD_5 34 ,76D,24,55,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 0 ,76D,56,87,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 1 ,76D,88,119,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 2 ,76D,120,151,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 3 ,76D,152,183,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 4 ,76D,184,215,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 5 ,76D,216,247,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 6 ,76D,248,279,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 7 ,76D,280,311,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 8 ,76D,312,343,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 9 ,76D,344,375,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 10 ,76D,376,407,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 11 ,76D,408,439,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 12 ,76D,440,471,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 13 ,76D,472,503,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 14 ,76D,504,535,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 15 ,76D,536,567,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 16 ,76D,568,599,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 17 ,76D,600,631,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 18 ,76D,632,663,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 19 ,76D,664,695,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 20 ,76D,696,727,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 21 ,76D,728,759,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 22 ,76D,760,791,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 23 ,76D,792,823,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 24 ,76D,824,855,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 25 ,76D,856,887,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 26 ,76D,888,919,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 27 ,76D,920,951,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 28 ,76D,952,983,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 29 ,76D,984,1015,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 30 ,76D,1016,1047,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 31 ,76D,1048,1079,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 32 ,76D,1080,1111,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 33 ,76D,1112,1119,1,0,0,,22DA56,62DA56,4ff,S-TDD_6 34 ,76D,24,55,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 0 ,76D,56,87,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 1 ,76D,88,119,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 2 ,76D,120,151,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 3 ,76D,152,183,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 4 ,76D,184,215,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 5 ,76D,216,247,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 6 ,76D,248,279,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 7 ,76D,280,311,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 8 ,76D,312,343,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 9 ,76D,344,375,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 10 ,76D,376,407,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 11 ,76D,408,439,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 12 ,76D,440,471,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 13 ,76D,472,503,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 14 ,76D,504,535,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 15 ,76D,536,567,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 16 ,76D,568,599,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 17 ,76D,600,631,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 18 ,76D,632,663,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 19 ,76D,664,695,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 20 ,76D,696,727,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 21 ,76D,728,759,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 22 ,76D,760,791,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 23 ,76D,792,823,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 24 ,76D,824,855,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 25 ,76D,856,887,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 26 ,76D,888,919,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 27 ,76D,920,951,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 28 ,76D,952,983,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 29 ,76D,984,1015,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 30 ,76D,1016,1047,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 31 ,76D,1048,1079,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 32 ,76D,1080,1111,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 33 ,76D,1112,1119,1,0,0,,22DA57,62DA57,4ff,S-TDD_7 34 ,76D,24,55,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 0 ,76D,56,87,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 1 ,76D,88,119,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 2 ,76D,120,151,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 3 ,76D,152,183,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 4 ,76D,184,215,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 5 ,76D,216,247,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 6 ,76D,248,279,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 7 ,76D,280,311,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 8 ,76D,312,343,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 9 ,76D,344,375,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 10 ,76D,376,407,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 11 ,76D,408,439,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 12 ,76D,440,471,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 13 ,76D,472,503,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 14 ,76D,504,535,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 15 ,76D,536,567,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 16 ,76D,568,599,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 17 ,76D,600,631,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 18 ,76D,632,663,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 19 ,76D,664,695,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 20 ,76D,696,727,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 21 ,76D,728,759,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 22 ,76D,760,791,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 23 ,76D,792,823,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 24 ,76D,824,855,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 25 ,76D,856,887,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 26 ,76D,888,919,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 27 ,76D,920,951,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 28 ,76D,952,983,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 29 ,76D,984,1015,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 30 ,76D,1016,1047,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 31 ,76D,1048,1079,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 32 ,76D,1080,1111,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 33 ,76D,1112,1119,1,0,0,,22DA58,62DA58,4ff,S-TDD_8 34 ,76D,24,55,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 0 ,76D,56,87,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 1 ,76D,88,119,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 2 ,76D,120,151,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 3 ,76D,152,183,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 4 ,76D,184,215,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 5 ,76D,216,247,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 6 ,76D,248,279,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 7 ,76D,280,311,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 8 ,76D,312,343,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 9 ,76D,344,375,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 10 ,76D,376,407,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 11 ,76D,408,439,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 12 ,76D,440,471,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 13 ,76D,472,503,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 14 ,76D,504,535,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 15 ,76D,536,567,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 16 ,76D,568,599,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 17 ,76D,600,631,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 18 ,76D,632,663,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 19 ,76D,664,695,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 20 ,76D,696,727,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 21 ,76D,728,759,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 22 ,76D,760,791,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 23 ,76D,792,823,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 24 ,76D,824,855,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 25 ,76D,856,887,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 26 ,76D,888,919,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 27 ,76D,920,951,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 28 ,76D,952,983,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 29 ,76D,984,1015,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 30 ,76D,1016,1047,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 31 ,76D,1048,1079,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 32 ,76D,1080,1111,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 33 ,76D,1112,1119,1,0,0,,22DA59,62DA59,4ff,S-TDD_9 34 ,76D,24,55,1,0,0,,22DA80,62DA80,4ff,N-USD 0 ,76D,56,87,1,0,0,,22DA80,62DA80,4ff,N-USD 1 ,76D,88,119,1,0,0,,22DA80,62DA80,4ff,N-USD 2 ,76D,120,151,1,0,0,,22DA80,62DA80,4ff,N-USD 3 ,76D,152,183,1,0,0,,22DA80,62DA80,4ff,N-USD 4 ,76D,184,215,1,0,0,,22DA80,62DA80,4ff,N-USD 5 ,76D,216,247,1,0,0,,22DA80,62DA80,4ff,N-USD 6 ,76D,248,279,1,0,0,,22DA80,62DA80,4ff,N-USD 7 ,76D,280,311,1,0,0,,22DA80,62DA80,4ff,N-USD 8 ,76D,312,343,1,0,0,,22DA80,62DA80,4ff,N-USD 9 ,76D,344,375,1,0,0,,22DA80,62DA80,4ff,N-USD 10 ,76D,376,407,1,0,0,,22DA80,62DA80,4ff,N-USD 11 ,76D,408,439,1,0,0,,22DA80,62DA80,4ff,N-USD 12 ,76D,440,471,1,0,0,,22DA80,62DA80,4ff,N-USD 13 ,76D,472,503,1,0,0,,22DA80,62DA80,4ff,N-USD 14 ,76D,504,535,1,0,0,,22DA80,62DA80,4ff,N-USD 15 ,76D,536,567,1,0,0,,22DA80,62DA80,4ff,N-USD 16 ,76D,568,599,1,0,0,,22DA80,62DA80,4ff,N-USD 17 ,76D,600,631,1,0,0,,22DA80,62DA80,4ff,N-USD 18 ,76D,632,663,1,0,0,,22DA80,62DA80,4ff,N-USD 19 ,76D,664,695,1,0,0,,22DA80,62DA80,4ff,N-USD 20 ,76D,696,727,1,0,0,,22DA80,62DA80,4ff,N-USD 21 ,76D,728,759,1,0,0,,22DA80,62DA80,4ff,N-USD 22 ,76D,760,791,1,0,0,,22DA80,62DA80,4ff,N-USD 23 ,76D,792,823,1,0,0,,22DA80,62DA80,4ff,N-USD 24 ,76D,824,855,1,0,0,,22DA80,62DA80,4ff,N-USD 25 ,76D,856,887,1,0,0,,22DA80,62DA80,4ff,N-USD 26 ,76D,888,919,1,0,0,,22DA80,62DA80,4ff,N-USD 27 ,76D,920,951,1,0,0,,22DA80,62DA80,4ff,N-USD 28 ,76D,952,983,1,0,0,,22DA80,62DA80,4ff,N-USD 29 ,76D,984,1015,1,0,0,,22DA80,62DA80,4ff,N-USD 30 ,76D,1016,1047,1,0,0,,22DA80,62DA80,4ff,N-USD 31 ,76D,1048,1079,1,0,0,,22DA80,62DA80,4ff,N-USD 32 ,76D,1080,1111,1,0,0,,22DA80,62DA80,4ff,N-USD 33 ,76D,1112,1143,1,0,0,,22DA80,62DA80,4ff,N-USD 34 ,76D,1144,1175,1,0,0,,22DA80,62DA80,4ff,N-USD 35 ,76D,1176,1207,1,0,0,,22DA80,62DA80,4ff,N-USD 36 ,76D,1208,1239,1,0,0,,22DA80,62DA80,4ff,N-USD 37 ,76D,1240,1271,1,0,0,,22DA80,62DA80,4ff,N-USD 38 ,76D,1272,1303,1,0,0,,22DA80,62DA80,4ff,N-USD 39 ,76D,1304,1335,1,0,0,,22DA80,62DA80,4ff,N-USD 40 ,76D,1336,1367,1,0,0,,22DA80,62DA80,4ff,N-USD 41 ,76D,1368,1399,1,0,0,,22DA80,62DA80,4ff,N-USD 42 ,76D,1400,1431,1,0,0,,22DA80,62DA80,4ff,N-USD 43 ,76D,1432,1463,1,0,0,,22DA80,62DA80,4ff,N-USD 44 ,76D,1464,1495,1,0,0,,22DA80,62DA80,4ff,N-USD 45 ,76D,1496,1527,1,0,0,,22DA80,62DA80,4ff,N-USD 46 ,76D,1528,1559,1,0,0,,22DA80,62DA80,4ff,N-USD 47 ,76D,1560,1591,1,0,0,,22DA80,62DA80,4ff,N-USD 48 ,76D,1592,1623,1,0,0,,22DA80,62DA80,4ff,N-USD 49 ,76D,1624,1655,1,0,0,,22DA80,62DA80,4ff,N-USD 50 ,76D,1656,1687,1,0,0,,22DA80,62DA80,4ff,N-USD 51 ,76D,1688,1719,1,0,0,,22DA80,62DA80,4ff,N-USD 52 ,76D,1720,1751,1,0,0,,22DA80,62DA80,4ff,N-USD 53 ,76D,1752,1783,1,0,0,,22DA80,62DA80,4ff,N-USD 54 ,76D,1784,1815,1,0,0,,22DA80,62DA80,4ff,N-USD 55 ,76D,1816,1847,1,0,0,,22DA80,62DA80,4ff,N-USD 56 ,76D,1848,1879,1,0,0,,22DA80,62DA80,4ff,N-USD 57 ,76D,1880,1911,1,0,0,,22DA80,62DA80,4ff,N-USD 58 ,76D,1912,1943,1,0,0,,22DA80,62DA80,4ff,N-USD 59 ,76D,1944,1975,1,0,0,,22DA80,62DA80,4ff,N-USD 60 ,76D,1976,2007,1,0,0,,22DA80,62DA80,4ff,N-USD 61 ,76D,2008,2039,1,0,0,,22DA80,62DA80,4ff,N-USD 62 ,76D,2040,2071,1,0,0,,22DA80,62DA80,4ff,N-USD 63 ,76D,2072,2103,1,0,0,,22DA80,62DA80,4ff,N-USD 64 ,76D,2104,2135,1,0,0,,22DA80,62DA80,4ff,N-USD 65 ,76D,2136,2167,1,0,0,,22DA80,62DA80,4ff,N-USD 66 ,76D,2168,2199,1,0,0,,22DA80,62DA80,4ff,N-USD 67 ,76D,2200,2231,1,0,0,,22DA80,62DA80,4ff,N-USD 68 ,76D,2232,2263,1,0,0,,22DA80,62DA80,4ff,N-USD 69 ,76D,2264,2295,1,0,0,,22DA80,62DA80,4ff,N-USD 70 ,76D,2296,2327,1,0,0,,22DA80,62DA80,4ff,N-USD 71 ,76D,2328,2359,1,0,0,,22DA80,62DA80,4ff,N-USD 72 ,76D,2360,2391,1,0,0,,22DA80,62DA80,4ff,N-USD 73 ,76D,2392,2423,1,0,0,,22DA80,62DA80,4ff,N-USD 74 ,76D,2424,2455,1,0,0,,22DA80,62DA80,4ff,N-USD 75 ,76D,2456,2487,1,0,0,,22DA80,62DA80,4ff,N-USD 76 ,76D,2488,2519,1,0,0,,22DA80,62DA80,4ff,N-USD 77 ,76D,2520,2551,1,0,0,,22DA80,62DA80,4ff,N-USD 78 ,76D,2552,2583,1,0,0,,22DA80,62DA80,4ff,N-USD 79 ,76D,2584,2615,1,0,0,,22DA80,62DA80,4ff,N-USD 80 ,76D,2616,2647,1,0,0,,22DA80,62DA80,4ff,N-USD 81 ,76D,2648,2679,1,0,0,,22DA80,62DA80,4ff,N-USD 82 ,76D,2680,2711,1,0,0,,22DA80,62DA80,4ff,N-USD 83 ,76D,2712,2743,1,0,0,,22DA80,62DA80,4ff,N-USD 84 ,76D,2744,2775,1,0,0,,22DA80,62DA80,4ff,N-USD 85 ,76D,2776,2807,1,0,0,,22DA80,62DA80,4ff,N-USD 86 ,76D,2808,2839,1,0,0,,22DA80,62DA80,4ff,N-USD 87 ,76D,2840,2871,1,0,0,,22DA80,62DA80,4ff,N-USD 88 ,76D,2872,2903,1,0,0,,22DA80,62DA80,4ff,N-USD 89 ,76D,2904,2935,1,0,0,,22DA80,62DA80,4ff,N-USD 90 ,76D,2936,2967,1,0,0,,22DA80,62DA80,4ff,N-USD 91 ,76D,2968,2999,1,0,0,,22DA80,62DA80,4ff,N-USD 92 ,76D,3000,3031,1,0,0,,22DA80,62DA80,4ff,N-USD 93 ,76D,3032,3063,1,0,0,,22DA80,62DA80,4ff,N-USD 94 ,76D,3064,3095,1,0,0,,22DA80,62DA80,4ff,N-USD 95 ,76D,3096,3127,1,0,0,,22DA80,62DA80,4ff,N-USD 96 ,76D,3128,3159,1,0,0,,22DA80,62DA80,4ff,N-USD 97 ,76D,3160,3191,1,0,0,,22DA80,62DA80,4ff,N-USD 98 ,76D,3192,3223,1,0,0,,22DA80,62DA80,4ff,N-USD 99 ,76D,3224,3255,1,0,0,,22DA80,62DA80,4ff,N-USD 100 ,76D,3256,3287,1,0,0,,22DA80,62DA80,4ff,N-USD 101 ,76D,3288,3319,1,0,0,,22DA80,62DA80,4ff,N-USD 102 ,76D,3320,3351,1,0,0,,22DA80,62DA80,4ff,N-USD 103 ,76D,3352,3383,1,0,0,,22DA80,62DA80,4ff,N-USD 104 ,76D,3384,3415,1,0,0,,22DA80,62DA80,4ff,N-USD 105 ,76D,3416,3447,1,0,0,,22DA80,62DA80,4ff,N-USD 106 ,76D,3448,3479,1,0,0,,22DA80,62DA80,4ff,N-USD 107 ,76D,3480,3511,1,0,0,,22DA80,62DA80,4ff,N-USD 108 ,76D,3512,3543,1,0,0,,22DA80,62DA80,4ff,N-USD 109 ,76D,3544,3575,1,0,0,,22DA80,62DA80,4ff,N-USD 110 ,76D,3576,3607,1,0,0,,22DA80,62DA80,4ff,N-USD 111 ,76D,3608,3639,1,0,0,,22DA80,62DA80,4ff,N-USD 112 ,76D,3640,3671,1,0,0,,22DA80,62DA80,4ff,N-USD 113 ,76D,3672,3703,1,0,0,,22DA80,62DA80,4ff,N-USD 114 ,76D,3704,3735,1,0,0,,22DA80,62DA80,4ff,N-USD 115 ,76D,3736,3767,1,0,0,,22DA80,62DA80,4ff,N-USD 116 ,76D,3768,3799,1,0,0,,22DA80,62DA80,4ff,N-USD 117 ,76D,3800,3831,1,0,0,,22DA80,62DA80,4ff,N-USD 118 ,76D,3832,3863,1,0,0,,22DA80,62DA80,4ff,N-USD 119 ,76D,3864,3895,1,0,0,,22DA80,62DA80,4ff,N-USD 120 ,76D,3896,3927,1,0,0,,22DA80,62DA80,4ff,N-USD 121 ,76D,3928,3959,1,0,0,,22DA80,62DA80,4ff,N-USD 122 ,76D,3960,3991,1,0,0,,22DA80,62DA80,4ff,N-USD 123 ,76D,3992,4023,1,0,0,,22DA80,62DA80,4ff,N-USD 124 ,76D,24,55,1,0,0,,22DA81,62DA81,4ff,N-USD_1 0 ,76D,56,87,1,0,0,,22DA81,62DA81,4ff,N-USD_1 1 ,76D,88,119,1,0,0,,22DA81,62DA81,4ff,N-USD_1 2 ,76D,120,151,1,0,0,,22DA81,62DA81,4ff,N-USD_1 3 ,76D,152,183,1,0,0,,22DA81,62DA81,4ff,N-USD_1 4 ,76D,184,215,1,0,0,,22DA81,62DA81,4ff,N-USD_1 5 ,76D,216,247,1,0,0,,22DA81,62DA81,4ff,N-USD_1 6 ,76D,248,279,1,0,0,,22DA81,62DA81,4ff,N-USD_1 7 ,76D,280,311,1,0,0,,22DA81,62DA81,4ff,N-USD_1 8 ,76D,312,343,1,0,0,,22DA81,62DA81,4ff,N-USD_1 9 ,76D,344,375,1,0,0,,22DA81,62DA81,4ff,N-USD_1 10 ,76D,376,407,1,0,0,,22DA81,62DA81,4ff,N-USD_1 11 ,76D,408,439,1,0,0,,22DA81,62DA81,4ff,N-USD_1 12 ,76D,440,471,1,0,0,,22DA81,62DA81,4ff,N-USD_1 13 ,76D,472,503,1,0,0,,22DA81,62DA81,4ff,N-USD_1 14 ,76D,504,535,1,0,0,,22DA81,62DA81,4ff,N-USD_1 15 ,76D,536,567,1,0,0,,22DA81,62DA81,4ff,N-USD_1 16 ,76D,568,599,1,0,0,,22DA81,62DA81,4ff,N-USD_1 17 ,76D,600,631,1,0,0,,22DA81,62DA81,4ff,N-USD_1 18 ,76D,632,663,1,0,0,,22DA81,62DA81,4ff,N-USD_1 19 ,76D,664,695,1,0,0,,22DA81,62DA81,4ff,N-USD_1 20 ,76D,696,727,1,0,0,,22DA81,62DA81,4ff,N-USD_1 21 ,76D,728,759,1,0,0,,22DA81,62DA81,4ff,N-USD_1 22 ,76D,760,791,1,0,0,,22DA81,62DA81,4ff,N-USD_1 23 ,76D,792,823,1,0,0,,22DA81,62DA81,4ff,N-USD_1 24 ,76D,824,855,1,0,0,,22DA81,62DA81,4ff,N-USD_1 25 ,76D,856,887,1,0,0,,22DA81,62DA81,4ff,N-USD_1 26 ,76D,888,919,1,0,0,,22DA81,62DA81,4ff,N-USD_1 27 ,76D,920,951,1,0,0,,22DA81,62DA81,4ff,N-USD_1 28 ,76D,952,983,1,0,0,,22DA81,62DA81,4ff,N-USD_1 29 ,76D,984,1015,1,0,0,,22DA81,62DA81,4ff,N-USD_1 30 ,76D,1016,1047,1,0,0,,22DA81,62DA81,4ff,N-USD_1 31 ,76D,1048,1079,1,0,0,,22DA81,62DA81,4ff,N-USD_1 32 ,76D,1080,1111,1,0,0,,22DA81,62DA81,4ff,N-USD_1 33 ,76D,1112,1143,1,0,0,,22DA81,62DA81,4ff,N-USD_1 34 ,76D,1144,1175,1,0,0,,22DA81,62DA81,4ff,N-USD_1 35 ,76D,1176,1207,1,0,0,,22DA81,62DA81,4ff,N-USD_1 36 ,76D,1208,1239,1,0,0,,22DA81,62DA81,4ff,N-USD_1 37 ,76D,1240,1271,1,0,0,,22DA81,62DA81,4ff,N-USD_1 38 ,76D,1272,1303,1,0,0,,22DA81,62DA81,4ff,N-USD_1 39 ,76D,1304,1335,1,0,0,,22DA81,62DA81,4ff,N-USD_1 40 ,76D,1336,1367,1,0,0,,22DA81,62DA81,4ff,N-USD_1 41 ,76D,1368,1399,1,0,0,,22DA81,62DA81,4ff,N-USD_1 42 ,76D,1400,1431,1,0,0,,22DA81,62DA81,4ff,N-USD_1 43 ,76D,1432,1463,1,0,0,,22DA81,62DA81,4ff,N-USD_1 44 ,76D,1464,1495,1,0,0,,22DA81,62DA81,4ff,N-USD_1 45 ,76D,1496,1527,1,0,0,,22DA81,62DA81,4ff,N-USD_1 46 ,76D,1528,1559,1,0,0,,22DA81,62DA81,4ff,N-USD_1 47 ,76D,1560,1591,1,0,0,,22DA81,62DA81,4ff,N-USD_1 48 ,76D,1592,1623,1,0,0,,22DA81,62DA81,4ff,N-USD_1 49 ,76D,1624,1655,1,0,0,,22DA81,62DA81,4ff,N-USD_1 50 ,76D,1656,1687,1,0,0,,22DA81,62DA81,4ff,N-USD_1 51 ,76D,1688,1719,1,0,0,,22DA81,62DA81,4ff,N-USD_1 52 ,76D,1720,1751,1,0,0,,22DA81,62DA81,4ff,N-USD_1 53 ,76D,1752,1783,1,0,0,,22DA81,62DA81,4ff,N-USD_1 54 ,76D,1784,1815,1,0,0,,22DA81,62DA81,4ff,N-USD_1 55 ,76D,1816,1847,1,0,0,,22DA81,62DA81,4ff,N-USD_1 56 ,76D,1848,1879,1,0,0,,22DA81,62DA81,4ff,N-USD_1 57 ,76D,1880,1911,1,0,0,,22DA81,62DA81,4ff,N-USD_1 58 ,76D,1912,1943,1,0,0,,22DA81,62DA81,4ff,N-USD_1 59 ,76D,1944,1975,1,0,0,,22DA81,62DA81,4ff,N-USD_1 60 ,76D,1976,2007,1,0,0,,22DA81,62DA81,4ff,N-USD_1 61 ,76D,2008,2039,1,0,0,,22DA81,62DA81,4ff,N-USD_1 62 ,76D,2040,2071,1,0,0,,22DA81,62DA81,4ff,N-USD_1 63 ,76D,2072,2103,1,0,0,,22DA81,62DA81,4ff,N-USD_1 64 ,76D,2104,2135,1,0,0,,22DA81,62DA81,4ff,N-USD_1 65 ,76D,2136,2167,1,0,0,,22DA81,62DA81,4ff,N-USD_1 66 ,76D,2168,2199,1,0,0,,22DA81,62DA81,4ff,N-USD_1 67 ,76D,2200,2231,1,0,0,,22DA81,62DA81,4ff,N-USD_1 68 ,76D,2232,2263,1,0,0,,22DA81,62DA81,4ff,N-USD_1 69 ,76D,2264,2295,1,0,0,,22DA81,62DA81,4ff,N-USD_1 70 ,76D,2296,2327,1,0,0,,22DA81,62DA81,4ff,N-USD_1 71 ,76D,2328,2359,1,0,0,,22DA81,62DA81,4ff,N-USD_1 72 ,76D,2360,2391,1,0,0,,22DA81,62DA81,4ff,N-USD_1 73 ,76D,2392,2423,1,0,0,,22DA81,62DA81,4ff,N-USD_1 74 ,76D,2424,2455,1,0,0,,22DA81,62DA81,4ff,N-USD_1 75 ,76D,2456,2487,1,0,0,,22DA81,62DA81,4ff,N-USD_1 76 ,76D,2488,2519,1,0,0,,22DA81,62DA81,4ff,N-USD_1 77 ,76D,2520,2551,1,0,0,,22DA81,62DA81,4ff,N-USD_1 78 ,76D,2552,2583,1,0,0,,22DA81,62DA81,4ff,N-USD_1 79 ,76D,2584,2615,1,0,0,,22DA81,62DA81,4ff,N-USD_1 80 ,76D,2616,2647,1,0,0,,22DA81,62DA81,4ff,N-USD_1 81 ,76D,2648,2679,1,0,0,,22DA81,62DA81,4ff,N-USD_1 82 ,76D,2680,2711,1,0,0,,22DA81,62DA81,4ff,N-USD_1 83 ,76D,2712,2743,1,0,0,,22DA81,62DA81,4ff,N-USD_1 84 ,76D,2744,2775,1,0,0,,22DA81,62DA81,4ff,N-USD_1 85 ,76D,2776,2807,1,0,0,,22DA81,62DA81,4ff,N-USD_1 86 ,76D,2808,2839,1,0,0,,22DA81,62DA81,4ff,N-USD_1 87 ,76D,2840,2871,1,0,0,,22DA81,62DA81,4ff,N-USD_1 88 ,76D,2872,2903,1,0,0,,22DA81,62DA81,4ff,N-USD_1 89 ,76D,2904,2935,1,0,0,,22DA81,62DA81,4ff,N-USD_1 90 ,76D,2936,2967,1,0,0,,22DA81,62DA81,4ff,N-USD_1 91 ,76D,2968,2999,1,0,0,,22DA81,62DA81,4ff,N-USD_1 92 ,76D,3000,3031,1,0,0,,22DA81,62DA81,4ff,N-USD_1 93 ,76D,3032,3063,1,0,0,,22DA81,62DA81,4ff,N-USD_1 94 ,76D,3064,3095,1,0,0,,22DA81,62DA81,4ff,N-USD_1 95 ,76D,3096,3127,1,0,0,,22DA81,62DA81,4ff,N-USD_1 96 ,76D,3128,3159,1,0,0,,22DA81,62DA81,4ff,N-USD_1 97 ,76D,3160,3191,1,0,0,,22DA81,62DA81,4ff,N-USD_1 98 ,76D,3192,3223,1,0,0,,22DA81,62DA81,4ff,N-USD_1 99 ,76D,3224,3255,1,0,0,,22DA81,62DA81,4ff,N-USD_1 100 ,76D,3256,3287,1,0,0,,22DA81,62DA81,4ff,N-USD_1 101 ,76D,3288,3319,1,0,0,,22DA81,62DA81,4ff,N-USD_1 102 ,76D,3320,3351,1,0,0,,22DA81,62DA81,4ff,N-USD_1 103 ,76D,3352,3383,1,0,0,,22DA81,62DA81,4ff,N-USD_1 104 ,76D,3384,3415,1,0,0,,22DA81,62DA81,4ff,N-USD_1 105 ,76D,3416,3447,1,0,0,,22DA81,62DA81,4ff,N-USD_1 106 ,76D,3448,3479,1,0,0,,22DA81,62DA81,4ff,N-USD_1 107 ,76D,3480,3511,1,0,0,,22DA81,62DA81,4ff,N-USD_1 108 ,76D,3512,3543,1,0,0,,22DA81,62DA81,4ff,N-USD_1 109 ,76D,3544,3575,1,0,0,,22DA81,62DA81,4ff,N-USD_1 110 ,76D,3576,3607,1,0,0,,22DA81,62DA81,4ff,N-USD_1 111 ,76D,3608,3639,1,0,0,,22DA81,62DA81,4ff,N-USD_1 112 ,76D,3640,3671,1,0,0,,22DA81,62DA81,4ff,N-USD_1 113 ,76D,3672,3703,1,0,0,,22DA81,62DA81,4ff,N-USD_1 114 ,76D,3704,3735,1,0,0,,22DA81,62DA81,4ff,N-USD_1 115 ,76D,3736,3767,1,0,0,,22DA81,62DA81,4ff,N-USD_1 116 ,76D,3768,3799,1,0,0,,22DA81,62DA81,4ff,N-USD_1 117 ,76D,3800,3831,1,0,0,,22DA81,62DA81,4ff,N-USD_1 118 ,76D,3832,3863,1,0,0,,22DA81,62DA81,4ff,N-USD_1 119 ,76D,3864,3895,1,0,0,,22DA81,62DA81,4ff,N-USD_1 120 ,76D,3896,3927,1,0,0,,22DA81,62DA81,4ff,N-USD_1 121 ,76D,3928,3959,1,0,0,,22DA81,62DA81,4ff,N-USD_1 122 ,76D,3960,3991,1,0,0,,22DA81,62DA81,4ff,N-USD_1 123 ,76D,3992,4023,1,0,0,,22DA81,62DA81,4ff,N-USD_1 124 ,76D,24,55,1,0,0,,22DA82,62DA82,4ff,N-USD_2 0 ,76D,56,87,1,0,0,,22DA82,62DA82,4ff,N-USD_2 1 ,76D,88,119,1,0,0,,22DA82,62DA82,4ff,N-USD_2 2 ,76D,120,151,1,0,0,,22DA82,62DA82,4ff,N-USD_2 3 ,76D,152,183,1,0,0,,22DA82,62DA82,4ff,N-USD_2 4 ,76D,184,215,1,0,0,,22DA82,62DA82,4ff,N-USD_2 5 ,76D,216,247,1,0,0,,22DA82,62DA82,4ff,N-USD_2 6 ,76D,248,279,1,0,0,,22DA82,62DA82,4ff,N-USD_2 7 ,76D,280,311,1,0,0,,22DA82,62DA82,4ff,N-USD_2 8 ,76D,312,343,1,0,0,,22DA82,62DA82,4ff,N-USD_2 9 ,76D,344,375,1,0,0,,22DA82,62DA82,4ff,N-USD_2 10 ,76D,376,407,1,0,0,,22DA82,62DA82,4ff,N-USD_2 11 ,76D,408,439,1,0,0,,22DA82,62DA82,4ff,N-USD_2 12 ,76D,440,471,1,0,0,,22DA82,62DA82,4ff,N-USD_2 13 ,76D,472,503,1,0,0,,22DA82,62DA82,4ff,N-USD_2 14 ,76D,504,535,1,0,0,,22DA82,62DA82,4ff,N-USD_2 15 ,76D,536,567,1,0,0,,22DA82,62DA82,4ff,N-USD_2 16 ,76D,568,599,1,0,0,,22DA82,62DA82,4ff,N-USD_2 17 ,76D,600,631,1,0,0,,22DA82,62DA82,4ff,N-USD_2 18 ,76D,632,663,1,0,0,,22DA82,62DA82,4ff,N-USD_2 19 ,76D,664,695,1,0,0,,22DA82,62DA82,4ff,N-USD_2 20 ,76D,696,727,1,0,0,,22DA82,62DA82,4ff,N-USD_2 21 ,76D,728,759,1,0,0,,22DA82,62DA82,4ff,N-USD_2 22 ,76D,760,791,1,0,0,,22DA82,62DA82,4ff,N-USD_2 23 ,76D,792,823,1,0,0,,22DA82,62DA82,4ff,N-USD_2 24 ,76D,824,855,1,0,0,,22DA82,62DA82,4ff,N-USD_2 25 ,76D,856,887,1,0,0,,22DA82,62DA82,4ff,N-USD_2 26 ,76D,888,919,1,0,0,,22DA82,62DA82,4ff,N-USD_2 27 ,76D,920,951,1,0,0,,22DA82,62DA82,4ff,N-USD_2 28 ,76D,952,983,1,0,0,,22DA82,62DA82,4ff,N-USD_2 29 ,76D,984,1015,1,0,0,,22DA82,62DA82,4ff,N-USD_2 30 ,76D,1016,1047,1,0,0,,22DA82,62DA82,4ff,N-USD_2 31 ,76D,1048,1079,1,0,0,,22DA82,62DA82,4ff,N-USD_2 32 ,76D,1080,1111,1,0,0,,22DA82,62DA82,4ff,N-USD_2 33 ,76D,1112,1143,1,0,0,,22DA82,62DA82,4ff,N-USD_2 34 ,76D,1144,1175,1,0,0,,22DA82,62DA82,4ff,N-USD_2 35 ,76D,1176,1207,1,0,0,,22DA82,62DA82,4ff,N-USD_2 36 ,76D,1208,1239,1,0,0,,22DA82,62DA82,4ff,N-USD_2 37 ,76D,1240,1271,1,0,0,,22DA82,62DA82,4ff,N-USD_2 38 ,76D,1272,1303,1,0,0,,22DA82,62DA82,4ff,N-USD_2 39 ,76D,1304,1335,1,0,0,,22DA82,62DA82,4ff,N-USD_2 40 ,76D,1336,1367,1,0,0,,22DA82,62DA82,4ff,N-USD_2 41 ,76D,1368,1399,1,0,0,,22DA82,62DA82,4ff,N-USD_2 42 ,76D,1400,1431,1,0,0,,22DA82,62DA82,4ff,N-USD_2 43 ,76D,1432,1463,1,0,0,,22DA82,62DA82,4ff,N-USD_2 44 ,76D,1464,1495,1,0,0,,22DA82,62DA82,4ff,N-USD_2 45 ,76D,1496,1527,1,0,0,,22DA82,62DA82,4ff,N-USD_2 46 ,76D,1528,1559,1,0,0,,22DA82,62DA82,4ff,N-USD_2 47 ,76D,1560,1591,1,0,0,,22DA82,62DA82,4ff,N-USD_2 48 ,76D,1592,1623,1,0,0,,22DA82,62DA82,4ff,N-USD_2 49 ,76D,1624,1655,1,0,0,,22DA82,62DA82,4ff,N-USD_2 50 ,76D,1656,1687,1,0,0,,22DA82,62DA82,4ff,N-USD_2 51 ,76D,1688,1719,1,0,0,,22DA82,62DA82,4ff,N-USD_2 52 ,76D,1720,1751,1,0,0,,22DA82,62DA82,4ff,N-USD_2 53 ,76D,1752,1783,1,0,0,,22DA82,62DA82,4ff,N-USD_2 54 ,76D,1784,1815,1,0,0,,22DA82,62DA82,4ff,N-USD_2 55 ,76D,1816,1847,1,0,0,,22DA82,62DA82,4ff,N-USD_2 56 ,76D,1848,1879,1,0,0,,22DA82,62DA82,4ff,N-USD_2 57 ,76D,1880,1911,1,0,0,,22DA82,62DA82,4ff,N-USD_2 58 ,76D,1912,1943,1,0,0,,22DA82,62DA82,4ff,N-USD_2 59 ,76D,1944,1975,1,0,0,,22DA82,62DA82,4ff,N-USD_2 60 ,76D,1976,2007,1,0,0,,22DA82,62DA82,4ff,N-USD_2 61 ,76D,2008,2039,1,0,0,,22DA82,62DA82,4ff,N-USD_2 62 ,76D,2040,2071,1,0,0,,22DA82,62DA82,4ff,N-USD_2 63 ,76D,2072,2103,1,0,0,,22DA82,62DA82,4ff,N-USD_2 64 ,76D,2104,2135,1,0,0,,22DA82,62DA82,4ff,N-USD_2 65 ,76D,2136,2167,1,0,0,,22DA82,62DA82,4ff,N-USD_2 66 ,76D,2168,2199,1,0,0,,22DA82,62DA82,4ff,N-USD_2 67 ,76D,2200,2231,1,0,0,,22DA82,62DA82,4ff,N-USD_2 68 ,76D,2232,2263,1,0,0,,22DA82,62DA82,4ff,N-USD_2 69 ,76D,2264,2295,1,0,0,,22DA82,62DA82,4ff,N-USD_2 70 ,76D,2296,2327,1,0,0,,22DA82,62DA82,4ff,N-USD_2 71 ,76D,2328,2359,1,0,0,,22DA82,62DA82,4ff,N-USD_2 72 ,76D,2360,2391,1,0,0,,22DA82,62DA82,4ff,N-USD_2 73 ,76D,2392,2423,1,0,0,,22DA82,62DA82,4ff,N-USD_2 74 ,76D,2424,2455,1,0,0,,22DA82,62DA82,4ff,N-USD_2 75 ,76D,2456,2487,1,0,0,,22DA82,62DA82,4ff,N-USD_2 76 ,76D,2488,2519,1,0,0,,22DA82,62DA82,4ff,N-USD_2 77 ,76D,2520,2551,1,0,0,,22DA82,62DA82,4ff,N-USD_2 78 ,76D,2552,2583,1,0,0,,22DA82,62DA82,4ff,N-USD_2 79 ,76D,2584,2615,1,0,0,,22DA82,62DA82,4ff,N-USD_2 80 ,76D,2616,2647,1,0,0,,22DA82,62DA82,4ff,N-USD_2 81 ,76D,2648,2679,1,0,0,,22DA82,62DA82,4ff,N-USD_2 82 ,76D,2680,2711,1,0,0,,22DA82,62DA82,4ff,N-USD_2 83 ,76D,2712,2743,1,0,0,,22DA82,62DA82,4ff,N-USD_2 84 ,76D,2744,2775,1,0,0,,22DA82,62DA82,4ff,N-USD_2 85 ,76D,2776,2807,1,0,0,,22DA82,62DA82,4ff,N-USD_2 86 ,76D,2808,2839,1,0,0,,22DA82,62DA82,4ff,N-USD_2 87 ,76D,2840,2871,1,0,0,,22DA82,62DA82,4ff,N-USD_2 88 ,76D,2872,2903,1,0,0,,22DA82,62DA82,4ff,N-USD_2 89 ,76D,2904,2935,1,0,0,,22DA82,62DA82,4ff,N-USD_2 90 ,76D,2936,2967,1,0,0,,22DA82,62DA82,4ff,N-USD_2 91 ,76D,2968,2999,1,0,0,,22DA82,62DA82,4ff,N-USD_2 92 ,76D,3000,3031,1,0,0,,22DA82,62DA82,4ff,N-USD_2 93 ,76D,3032,3063,1,0,0,,22DA82,62DA82,4ff,N-USD_2 94 ,76D,3064,3095,1,0,0,,22DA82,62DA82,4ff,N-USD_2 95 ,76D,3096,3127,1,0,0,,22DA82,62DA82,4ff,N-USD_2 96 ,76D,3128,3159,1,0,0,,22DA82,62DA82,4ff,N-USD_2 97 ,76D,3160,3191,1,0,0,,22DA82,62DA82,4ff,N-USD_2 98 ,76D,3192,3223,1,0,0,,22DA82,62DA82,4ff,N-USD_2 99 ,76D,3224,3255,1,0,0,,22DA82,62DA82,4ff,N-USD_2 100 ,76D,3256,3287,1,0,0,,22DA82,62DA82,4ff,N-USD_2 101 ,76D,3288,3319,1,0,0,,22DA82,62DA82,4ff,N-USD_2 102 ,76D,3320,3351,1,0,0,,22DA82,62DA82,4ff,N-USD_2 103 ,76D,3352,3383,1,0,0,,22DA82,62DA82,4ff,N-USD_2 104 ,76D,3384,3415,1,0,0,,22DA82,62DA82,4ff,N-USD_2 105 ,76D,3416,3447,1,0,0,,22DA82,62DA82,4ff,N-USD_2 106 ,76D,3448,3479,1,0,0,,22DA82,62DA82,4ff,N-USD_2 107 ,76D,3480,3511,1,0,0,,22DA82,62DA82,4ff,N-USD_2 108 ,76D,3512,3543,1,0,0,,22DA82,62DA82,4ff,N-USD_2 109 ,76D,3544,3575,1,0,0,,22DA82,62DA82,4ff,N-USD_2 110 ,76D,3576,3607,1,0,0,,22DA82,62DA82,4ff,N-USD_2 111 ,76D,3608,3639,1,0,0,,22DA82,62DA82,4ff,N-USD_2 112 ,76D,3640,3671,1,0,0,,22DA82,62DA82,4ff,N-USD_2 113 ,76D,3672,3703,1,0,0,,22DA82,62DA82,4ff,N-USD_2 114 ,76D,3704,3735,1,0,0,,22DA82,62DA82,4ff,N-USD_2 115 ,76D,3736,3767,1,0,0,,22DA82,62DA82,4ff,N-USD_2 116 ,76D,3768,3799,1,0,0,,22DA82,62DA82,4ff,N-USD_2 117 ,76D,3800,3831,1,0,0,,22DA82,62DA82,4ff,N-USD_2 118 ,76D,3832,3863,1,0,0,,22DA82,62DA82,4ff,N-USD_2 119 ,76D,3864,3895,1,0,0,,22DA82,62DA82,4ff,N-USD_2 120 ,76D,3896,3927,1,0,0,,22DA82,62DA82,4ff,N-USD_2 121 ,76D,3928,3959,1,0,0,,22DA82,62DA82,4ff,N-USD_2 122 ,76D,3960,3991,1,0,0,,22DA82,62DA82,4ff,N-USD_2 123 ,76D,3992,4023,1,0,0,,22DA82,62DA82,4ff,N-USD_2 124 ,76D,24,55,1,0,0,,22DA83,62DA83,4ff,N-USD_3 0 ,76D,56,87,1,0,0,,22DA83,62DA83,4ff,N-USD_3 1 ,76D,88,119,1,0,0,,22DA83,62DA83,4ff,N-USD_3 2 ,76D,120,151,1,0,0,,22DA83,62DA83,4ff,N-USD_3 3 ,76D,152,183,1,0,0,,22DA83,62DA83,4ff,N-USD_3 4 ,76D,184,215,1,0,0,,22DA83,62DA83,4ff,N-USD_3 5 ,76D,216,247,1,0,0,,22DA83,62DA83,4ff,N-USD_3 6 ,76D,248,279,1,0,0,,22DA83,62DA83,4ff,N-USD_3 7 ,76D,280,311,1,0,0,,22DA83,62DA83,4ff,N-USD_3 8 ,76D,312,343,1,0,0,,22DA83,62DA83,4ff,N-USD_3 9 ,76D,344,375,1,0,0,,22DA83,62DA83,4ff,N-USD_3 10 ,76D,376,407,1,0,0,,22DA83,62DA83,4ff,N-USD_3 11 ,76D,408,439,1,0,0,,22DA83,62DA83,4ff,N-USD_3 12 ,76D,440,471,1,0,0,,22DA83,62DA83,4ff,N-USD_3 13 ,76D,472,503,1,0,0,,22DA83,62DA83,4ff,N-USD_3 14 ,76D,504,535,1,0,0,,22DA83,62DA83,4ff,N-USD_3 15 ,76D,536,567,1,0,0,,22DA83,62DA83,4ff,N-USD_3 16 ,76D,568,599,1,0,0,,22DA83,62DA83,4ff,N-USD_3 17 ,76D,600,631,1,0,0,,22DA83,62DA83,4ff,N-USD_3 18 ,76D,632,663,1,0,0,,22DA83,62DA83,4ff,N-USD_3 19 ,76D,664,695,1,0,0,,22DA83,62DA83,4ff,N-USD_3 20 ,76D,696,727,1,0,0,,22DA83,62DA83,4ff,N-USD_3 21 ,76D,728,759,1,0,0,,22DA83,62DA83,4ff,N-USD_3 22 ,76D,760,791,1,0,0,,22DA83,62DA83,4ff,N-USD_3 23 ,76D,792,823,1,0,0,,22DA83,62DA83,4ff,N-USD_3 24 ,76D,824,855,1,0,0,,22DA83,62DA83,4ff,N-USD_3 25 ,76D,856,887,1,0,0,,22DA83,62DA83,4ff,N-USD_3 26 ,76D,888,919,1,0,0,,22DA83,62DA83,4ff,N-USD_3 27 ,76D,920,951,1,0,0,,22DA83,62DA83,4ff,N-USD_3 28 ,76D,952,983,1,0,0,,22DA83,62DA83,4ff,N-USD_3 29 ,76D,984,1015,1,0,0,,22DA83,62DA83,4ff,N-USD_3 30 ,76D,1016,1047,1,0,0,,22DA83,62DA83,4ff,N-USD_3 31 ,76D,1048,1079,1,0,0,,22DA83,62DA83,4ff,N-USD_3 32 ,76D,1080,1111,1,0,0,,22DA83,62DA83,4ff,N-USD_3 33 ,76D,1112,1143,1,0,0,,22DA83,62DA83,4ff,N-USD_3 34 ,76D,1144,1175,1,0,0,,22DA83,62DA83,4ff,N-USD_3 35 ,76D,1176,1207,1,0,0,,22DA83,62DA83,4ff,N-USD_3 36 ,76D,1208,1239,1,0,0,,22DA83,62DA83,4ff,N-USD_3 37 ,76D,1240,1271,1,0,0,,22DA83,62DA83,4ff,N-USD_3 38 ,76D,1272,1303,1,0,0,,22DA83,62DA83,4ff,N-USD_3 39 ,76D,1304,1335,1,0,0,,22DA83,62DA83,4ff,N-USD_3 40 ,76D,1336,1367,1,0,0,,22DA83,62DA83,4ff,N-USD_3 41 ,76D,1368,1399,1,0,0,,22DA83,62DA83,4ff,N-USD_3 42 ,76D,1400,1431,1,0,0,,22DA83,62DA83,4ff,N-USD_3 43 ,76D,1432,1463,1,0,0,,22DA83,62DA83,4ff,N-USD_3 44 ,76D,1464,1495,1,0,0,,22DA83,62DA83,4ff,N-USD_3 45 ,76D,1496,1527,1,0,0,,22DA83,62DA83,4ff,N-USD_3 46 ,76D,1528,1559,1,0,0,,22DA83,62DA83,4ff,N-USD_3 47 ,76D,1560,1591,1,0,0,,22DA83,62DA83,4ff,N-USD_3 48 ,76D,1592,1623,1,0,0,,22DA83,62DA83,4ff,N-USD_3 49 ,76D,1624,1655,1,0,0,,22DA83,62DA83,4ff,N-USD_3 50 ,76D,1656,1687,1,0,0,,22DA83,62DA83,4ff,N-USD_3 51 ,76D,1688,1719,1,0,0,,22DA83,62DA83,4ff,N-USD_3 52 ,76D,1720,1751,1,0,0,,22DA83,62DA83,4ff,N-USD_3 53 ,76D,1752,1783,1,0,0,,22DA83,62DA83,4ff,N-USD_3 54 ,76D,1784,1815,1,0,0,,22DA83,62DA83,4ff,N-USD_3 55 ,76D,1816,1847,1,0,0,,22DA83,62DA83,4ff,N-USD_3 56 ,76D,1848,1879,1,0,0,,22DA83,62DA83,4ff,N-USD_3 57 ,76D,1880,1911,1,0,0,,22DA83,62DA83,4ff,N-USD_3 58 ,76D,1912,1943,1,0,0,,22DA83,62DA83,4ff,N-USD_3 59 ,76D,1944,1975,1,0,0,,22DA83,62DA83,4ff,N-USD_3 60 ,76D,1976,2007,1,0,0,,22DA83,62DA83,4ff,N-USD_3 61 ,76D,2008,2039,1,0,0,,22DA83,62DA83,4ff,N-USD_3 62 ,76D,2040,2071,1,0,0,,22DA83,62DA83,4ff,N-USD_3 63 ,76D,2072,2103,1,0,0,,22DA83,62DA83,4ff,N-USD_3 64 ,76D,2104,2135,1,0,0,,22DA83,62DA83,4ff,N-USD_3 65 ,76D,2136,2167,1,0,0,,22DA83,62DA83,4ff,N-USD_3 66 ,76D,2168,2199,1,0,0,,22DA83,62DA83,4ff,N-USD_3 67 ,76D,2200,2231,1,0,0,,22DA83,62DA83,4ff,N-USD_3 68 ,76D,2232,2263,1,0,0,,22DA83,62DA83,4ff,N-USD_3 69 ,76D,2264,2295,1,0,0,,22DA83,62DA83,4ff,N-USD_3 70 ,76D,2296,2327,1,0,0,,22DA83,62DA83,4ff,N-USD_3 71 ,76D,2328,2359,1,0,0,,22DA83,62DA83,4ff,N-USD_3 72 ,76D,2360,2391,1,0,0,,22DA83,62DA83,4ff,N-USD_3 73 ,76D,2392,2423,1,0,0,,22DA83,62DA83,4ff,N-USD_3 74 ,76D,2424,2455,1,0,0,,22DA83,62DA83,4ff,N-USD_3 75 ,76D,2456,2487,1,0,0,,22DA83,62DA83,4ff,N-USD_3 76 ,76D,2488,2519,1,0,0,,22DA83,62DA83,4ff,N-USD_3 77 ,76D,2520,2551,1,0,0,,22DA83,62DA83,4ff,N-USD_3 78 ,76D,2552,2583,1,0,0,,22DA83,62DA83,4ff,N-USD_3 79 ,76D,2584,2615,1,0,0,,22DA83,62DA83,4ff,N-USD_3 80 ,76D,2616,2647,1,0,0,,22DA83,62DA83,4ff,N-USD_3 81 ,76D,2648,2679,1,0,0,,22DA83,62DA83,4ff,N-USD_3 82 ,76D,2680,2711,1,0,0,,22DA83,62DA83,4ff,N-USD_3 83 ,76D,2712,2743,1,0,0,,22DA83,62DA83,4ff,N-USD_3 84 ,76D,2744,2775,1,0,0,,22DA83,62DA83,4ff,N-USD_3 85 ,76D,2776,2807,1,0,0,,22DA83,62DA83,4ff,N-USD_3 86 ,76D,2808,2839,1,0,0,,22DA83,62DA83,4ff,N-USD_3 87 ,76D,2840,2871,1,0,0,,22DA83,62DA83,4ff,N-USD_3 88 ,76D,2872,2903,1,0,0,,22DA83,62DA83,4ff,N-USD_3 89 ,76D,2904,2935,1,0,0,,22DA83,62DA83,4ff,N-USD_3 90 ,76D,2936,2967,1,0,0,,22DA83,62DA83,4ff,N-USD_3 91 ,76D,2968,2999,1,0,0,,22DA83,62DA83,4ff,N-USD_3 92 ,76D,3000,3031,1,0,0,,22DA83,62DA83,4ff,N-USD_3 93 ,76D,3032,3063,1,0,0,,22DA83,62DA83,4ff,N-USD_3 94 ,76D,3064,3095,1,0,0,,22DA83,62DA83,4ff,N-USD_3 95 ,76D,3096,3127,1,0,0,,22DA83,62DA83,4ff,N-USD_3 96 ,76D,3128,3159,1,0,0,,22DA83,62DA83,4ff,N-USD_3 97 ,76D,3160,3191,1,0,0,,22DA83,62DA83,4ff,N-USD_3 98 ,76D,3192,3223,1,0,0,,22DA83,62DA83,4ff,N-USD_3 99 ,76D,3224,3255,1,0,0,,22DA83,62DA83,4ff,N-USD_3 100 ,76D,3256,3287,1,0,0,,22DA83,62DA83,4ff,N-USD_3 101 ,76D,3288,3319,1,0,0,,22DA83,62DA83,4ff,N-USD_3 102 ,76D,3320,3351,1,0,0,,22DA83,62DA83,4ff,N-USD_3 103 ,76D,3352,3383,1,0,0,,22DA83,62DA83,4ff,N-USD_3 104 ,76D,3384,3415,1,0,0,,22DA83,62DA83,4ff,N-USD_3 105 ,76D,3416,3447,1,0,0,,22DA83,62DA83,4ff,N-USD_3 106 ,76D,3448,3479,1,0,0,,22DA83,62DA83,4ff,N-USD_3 107 ,76D,3480,3511,1,0,0,,22DA83,62DA83,4ff,N-USD_3 108 ,76D,3512,3543,1,0,0,,22DA83,62DA83,4ff,N-USD_3 109 ,76D,3544,3575,1,0,0,,22DA83,62DA83,4ff,N-USD_3 110 ,76D,3576,3607,1,0,0,,22DA83,62DA83,4ff,N-USD_3 111 ,76D,3608,3639,1,0,0,,22DA83,62DA83,4ff,N-USD_3 112 ,76D,3640,3671,1,0,0,,22DA83,62DA83,4ff,N-USD_3 113 ,76D,3672,3703,1,0,0,,22DA83,62DA83,4ff,N-USD_3 114 ,76D,3704,3735,1,0,0,,22DA83,62DA83,4ff,N-USD_3 115 ,76D,3736,3767,1,0,0,,22DA83,62DA83,4ff,N-USD_3 116 ,76D,3768,3799,1,0,0,,22DA83,62DA83,4ff,N-USD_3 117 ,76D,3800,3831,1,0,0,,22DA83,62DA83,4ff,N-USD_3 118 ,76D,3832,3863,1,0,0,,22DA83,62DA83,4ff,N-USD_3 119 ,76D,3864,3895,1,0,0,,22DA83,62DA83,4ff,N-USD_3 120 ,76D,3896,3927,1,0,0,,22DA83,62DA83,4ff,N-USD_3 121 ,76D,3928,3959,1,0,0,,22DA83,62DA83,4ff,N-USD_3 122 ,76D,3960,3991,1,0,0,,22DA83,62DA83,4ff,N-USD_3 123 ,76D,3992,4023,1,0,0,,22DA83,62DA83,4ff,N-USD_3 124 ,76D,24,55,1,0,0,,22DA84,62DA84,4ff,N-USD_4 0 ,76D,56,87,1,0,0,,22DA84,62DA84,4ff,N-USD_4 1 ,76D,88,119,1,0,0,,22DA84,62DA84,4ff,N-USD_4 2 ,76D,120,151,1,0,0,,22DA84,62DA84,4ff,N-USD_4 3 ,76D,152,183,1,0,0,,22DA84,62DA84,4ff,N-USD_4 4 ,76D,184,215,1,0,0,,22DA84,62DA84,4ff,N-USD_4 5 ,76D,216,247,1,0,0,,22DA84,62DA84,4ff,N-USD_4 6 ,76D,248,279,1,0,0,,22DA84,62DA84,4ff,N-USD_4 7 ,76D,280,311,1,0,0,,22DA84,62DA84,4ff,N-USD_4 8 ,76D,312,343,1,0,0,,22DA84,62DA84,4ff,N-USD_4 9 ,76D,344,375,1,0,0,,22DA84,62DA84,4ff,N-USD_4 10 ,76D,376,407,1,0,0,,22DA84,62DA84,4ff,N-USD_4 11 ,76D,408,439,1,0,0,,22DA84,62DA84,4ff,N-USD_4 12 ,76D,440,471,1,0,0,,22DA84,62DA84,4ff,N-USD_4 13 ,76D,472,503,1,0,0,,22DA84,62DA84,4ff,N-USD_4 14 ,76D,504,535,1,0,0,,22DA84,62DA84,4ff,N-USD_4 15 ,76D,536,567,1,0,0,,22DA84,62DA84,4ff,N-USD_4 16 ,76D,568,599,1,0,0,,22DA84,62DA84,4ff,N-USD_4 17 ,76D,600,631,1,0,0,,22DA84,62DA84,4ff,N-USD_4 18 ,76D,632,663,1,0,0,,22DA84,62DA84,4ff,N-USD_4 19 ,76D,664,695,1,0,0,,22DA84,62DA84,4ff,N-USD_4 20 ,76D,696,727,1,0,0,,22DA84,62DA84,4ff,N-USD_4 21 ,76D,728,759,1,0,0,,22DA84,62DA84,4ff,N-USD_4 22 ,76D,760,791,1,0,0,,22DA84,62DA84,4ff,N-USD_4 23 ,76D,792,823,1,0,0,,22DA84,62DA84,4ff,N-USD_4 24 ,76D,824,855,1,0,0,,22DA84,62DA84,4ff,N-USD_4 25 ,76D,856,887,1,0,0,,22DA84,62DA84,4ff,N-USD_4 26 ,76D,888,919,1,0,0,,22DA84,62DA84,4ff,N-USD_4 27 ,76D,920,951,1,0,0,,22DA84,62DA84,4ff,N-USD_4 28 ,76D,952,983,1,0,0,,22DA84,62DA84,4ff,N-USD_4 29 ,76D,984,1015,1,0,0,,22DA84,62DA84,4ff,N-USD_4 30 ,76D,1016,1047,1,0,0,,22DA84,62DA84,4ff,N-USD_4 31 ,76D,1048,1079,1,0,0,,22DA84,62DA84,4ff,N-USD_4 32 ,76D,1080,1111,1,0,0,,22DA84,62DA84,4ff,N-USD_4 33 ,76D,1112,1143,1,0,0,,22DA84,62DA84,4ff,N-USD_4 34 ,76D,1144,1175,1,0,0,,22DA84,62DA84,4ff,N-USD_4 35 ,76D,1176,1207,1,0,0,,22DA84,62DA84,4ff,N-USD_4 36 ,76D,1208,1239,1,0,0,,22DA84,62DA84,4ff,N-USD_4 37 ,76D,1240,1271,1,0,0,,22DA84,62DA84,4ff,N-USD_4 38 ,76D,1272,1303,1,0,0,,22DA84,62DA84,4ff,N-USD_4 39 ,76D,1304,1335,1,0,0,,22DA84,62DA84,4ff,N-USD_4 40 ,76D,1336,1367,1,0,0,,22DA84,62DA84,4ff,N-USD_4 41 ,76D,1368,1399,1,0,0,,22DA84,62DA84,4ff,N-USD_4 42 ,76D,1400,1431,1,0,0,,22DA84,62DA84,4ff,N-USD_4 43 ,76D,1432,1463,1,0,0,,22DA84,62DA84,4ff,N-USD_4 44 ,76D,1464,1495,1,0,0,,22DA84,62DA84,4ff,N-USD_4 45 ,76D,1496,1527,1,0,0,,22DA84,62DA84,4ff,N-USD_4 46 ,76D,1528,1559,1,0,0,,22DA84,62DA84,4ff,N-USD_4 47 ,76D,1560,1591,1,0,0,,22DA84,62DA84,4ff,N-USD_4 48 ,76D,1592,1623,1,0,0,,22DA84,62DA84,4ff,N-USD_4 49 ,76D,1624,1655,1,0,0,,22DA84,62DA84,4ff,N-USD_4 50 ,76D,1656,1687,1,0,0,,22DA84,62DA84,4ff,N-USD_4 51 ,76D,1688,1719,1,0,0,,22DA84,62DA84,4ff,N-USD_4 52 ,76D,1720,1751,1,0,0,,22DA84,62DA84,4ff,N-USD_4 53 ,76D,24,55,1,0,0,,22DA85,62DA85,4ff,N-USD_5 0 ,76D,56,87,1,0,0,,22DA85,62DA85,4ff,N-USD_5 1 ,76D,88,119,1,0,0,,22DA85,62DA85,4ff,N-USD_5 2 ,76D,120,151,1,0,0,,22DA85,62DA85,4ff,N-USD_5 3 ,76D,152,183,1,0,0,,22DA85,62DA85,4ff,N-USD_5 4 ,76D,184,215,1,0,0,,22DA85,62DA85,4ff,N-USD_5 5 ,76D,216,247,1,0,0,,22DA85,62DA85,4ff,N-USD_5 6 ,76D,248,279,1,0,0,,22DA85,62DA85,4ff,N-USD_5 7 ,76D,280,311,1,0,0,,22DA85,62DA85,4ff,N-USD_5 8 ,76D,312,343,1,0,0,,22DA85,62DA85,4ff,N-USD_5 9 ,76D,344,375,1,0,0,,22DA85,62DA85,4ff,N-USD_5 10 ,76D,376,407,1,0,0,,22DA85,62DA85,4ff,N-USD_5 11 ,76D,408,439,1,0,0,,22DA85,62DA85,4ff,N-USD_5 12 ,76D,440,471,1,0,0,,22DA85,62DA85,4ff,N-USD_5 13 ,76D,472,503,1,0,0,,22DA85,62DA85,4ff,N-USD_5 14 ,76D,504,535,1,0,0,,22DA85,62DA85,4ff,N-USD_5 15 ,76D,536,567,1,0,0,,22DA85,62DA85,4ff,N-USD_5 16 ,76D,568,599,1,0,0,,22DA85,62DA85,4ff,N-USD_5 17 ,76D,600,631,1,0,0,,22DA85,62DA85,4ff,N-USD_5 18 ,76D,632,663,1,0,0,,22DA85,62DA85,4ff,N-USD_5 19 ,76D,664,695,1,0,0,,22DA85,62DA85,4ff,N-USD_5 20 ,76D,696,727,1,0,0,,22DA85,62DA85,4ff,N-USD_5 21 ,76D,728,759,1,0,0,,22DA85,62DA85,4ff,N-USD_5 22 ,76D,760,791,1,0,0,,22DA85,62DA85,4ff,N-USD_5 23 ,76D,792,823,1,0,0,,22DA85,62DA85,4ff,N-USD_5 24 ,76D,824,855,1,0,0,,22DA85,62DA85,4ff,N-USD_5 25 ,76D,856,887,1,0,0,,22DA85,62DA85,4ff,N-USD_5 26 ,76D,888,919,1,0,0,,22DA85,62DA85,4ff,N-USD_5 27 ,76D,920,951,1,0,0,,22DA85,62DA85,4ff,N-USD_5 28 ,76D,952,983,1,0,0,,22DA85,62DA85,4ff,N-USD_5 29 ,76D,984,1015,1,0,0,,22DA85,62DA85,4ff,N-USD_5 30 ,76D,1016,1047,1,0,0,,22DA85,62DA85,4ff,N-USD_5 31 ,76D,1048,1079,1,0,0,,22DA85,62DA85,4ff,N-USD_5 32 ,76D,1080,1111,1,0,0,,22DA85,62DA85,4ff,N-USD_5 33 ,76D,1112,1143,1,0,0,,22DA85,62DA85,4ff,N-USD_5 34 ,76D,1144,1175,1,0,0,,22DA85,62DA85,4ff,N-USD_5 35 ,76D,1176,1207,1,0,0,,22DA85,62DA85,4ff,N-USD_5 36 ,76D,1208,1239,1,0,0,,22DA85,62DA85,4ff,N-USD_5 37 ,76D,1240,1271,1,0,0,,22DA85,62DA85,4ff,N-USD_5 38 ,76D,1272,1303,1,0,0,,22DA85,62DA85,4ff,N-USD_5 39 ,76D,1304,1335,1,0,0,,22DA85,62DA85,4ff,N-USD_5 40 ,76D,1336,1367,1,0,0,,22DA85,62DA85,4ff,N-USD_5 41 ,76D,1368,1399,1,0,0,,22DA85,62DA85,4ff,N-USD_5 42 ,76D,1400,1431,1,0,0,,22DA85,62DA85,4ff,N-USD_5 43 ,76D,1432,1463,1,0,0,,22DA85,62DA85,4ff,N-USD_5 44 ,76D,1464,1495,1,0,0,,22DA85,62DA85,4ff,N-USD_5 45 ,76D,1496,1527,1,0,0,,22DA85,62DA85,4ff,N-USD_5 46 ,76D,1528,1559,1,0,0,,22DA85,62DA85,4ff,N-USD_5 47 ,76D,1560,1591,1,0,0,,22DA85,62DA85,4ff,N-USD_5 48 ,76D,1592,1623,1,0,0,,22DA85,62DA85,4ff,N-USD_5 49 ,76D,1624,1655,1,0,0,,22DA85,62DA85,4ff,N-USD_5 50 ,76D,1656,1687,1,0,0,,22DA85,62DA85,4ff,N-USD_5 51 ,76D,1688,1719,1,0,0,,22DA85,62DA85,4ff,N-USD_5 52 ,76D,1720,1751,1,0,0,,22DA85,62DA85,4ff,N-USD_5 53 ,76D,1752,1783,1,0,0,,22DA85,62DA85,4ff,N-USD_5 54 ,76D,1784,1815,1,0,0,,22DA85,62DA85,4ff,N-USD_5 55 ,76D,1816,1847,1,0,0,,22DA85,62DA85,4ff,N-USD_5 56 ,76D,1848,1879,1,0,0,,22DA85,62DA85,4ff,N-USD_5 57 ,76D,1880,1911,1,0,0,,22DA85,62DA85,4ff,N-USD_5 58 ,76D,1912,1943,1,0,0,,22DA85,62DA85,4ff,N-USD_5 59 ,76D,1944,1975,1,0,0,,22DA85,62DA85,4ff,N-USD_5 60 ,76D,1976,2007,1,0,0,,22DA85,62DA85,4ff,N-USD_5 61 ,76D,2008,2039,1,0,0,,22DA85,62DA85,4ff,N-USD_5 62 ,76D,2040,2071,1,0,0,,22DA85,62DA85,4ff,N-USD_5 63 ,76D,2072,2103,1,0,0,,22DA85,62DA85,4ff,N-USD_5 64 ,76D,2104,2135,1,0,0,,22DA85,62DA85,4ff,N-USD_5 65 ,76D,2136,2167,1,0,0,,22DA85,62DA85,4ff,N-USD_5 66 ,76D,2168,2199,1,0,0,,22DA85,62DA85,4ff,N-USD_5 67 ,76D,2200,2231,1,0,0,,22DA85,62DA85,4ff,N-USD_5 68 ,76D,2232,2263,1,0,0,,22DA85,62DA85,4ff,N-USD_5 69 ,76D,2264,2295,1,0,0,,22DA85,62DA85,4ff,N-USD_5 70 ,76D,2296,2327,1,0,0,,22DA85,62DA85,4ff,N-USD_5 71 ,76D,2328,2359,1,0,0,,22DA85,62DA85,4ff,N-USD_5 72 ,76D,2360,2391,1,0,0,,22DA85,62DA85,4ff,N-USD_5 73 ,76D,2392,2423,1,0,0,,22DA85,62DA85,4ff,N-USD_5 74 ,76D,2424,2455,1,0,0,,22DA85,62DA85,4ff,N-USD_5 75 ,76D,2456,2487,1,0,0,,22DA85,62DA85,4ff,N-USD_5 76 ,76D,2488,2519,1,0,0,,22DA85,62DA85,4ff,N-USD_5 77 ,76D,2520,2551,1,0,0,,22DA85,62DA85,4ff,N-USD_5 78 ,76D,2552,2583,1,0,0,,22DA85,62DA85,4ff,N-USD_5 79 ,76D,2584,2615,1,0,0,,22DA85,62DA85,4ff,N-USD_5 80 ,76D,2616,2647,1,0,0,,22DA85,62DA85,4ff,N-USD_5 81 ,76D,2648,2679,1,0,0,,22DA85,62DA85,4ff,N-USD_5 82 ,76D,2680,2711,1,0,0,,22DA85,62DA85,4ff,N-USD_5 83 ,76D,2712,2743,1,0,0,,22DA85,62DA85,4ff,N-USD_5 84 ,76D,2744,2775,1,0,0,,22DA85,62DA85,4ff,N-USD_5 85 ,76D,2776,2807,1,0,0,,22DA85,62DA85,4ff,N-USD_5 86 ,76D,2808,2839,1,0,0,,22DA85,62DA85,4ff,N-USD_5 87 ,76D,2840,2871,1,0,0,,22DA85,62DA85,4ff,N-USD_5 88 ,76D,2872,2903,1,0,0,,22DA85,62DA85,4ff,N-USD_5 89 ,76D,2904,2935,1,0,0,,22DA85,62DA85,4ff,N-USD_5 90 ,76D,2936,2967,1,0,0,,22DA85,62DA85,4ff,N-USD_5 91 ,76D,2968,2999,1,0,0,,22DA85,62DA85,4ff,N-USD_5 92 ,76D,3000,3031,1,0,0,,22DA85,62DA85,4ff,N-USD_5 93 ,76D,3032,3063,1,0,0,,22DA85,62DA85,4ff,N-USD_5 94 ,76D,3064,3095,1,0,0,,22DA85,62DA85,4ff,N-USD_5 95 ,76D,3096,3127,1,0,0,,22DA85,62DA85,4ff,N-USD_5 96 ,76D,3128,3159,1,0,0,,22DA85,62DA85,4ff,N-USD_5 97 ,76D,3160,3191,1,0,0,,22DA85,62DA85,4ff,N-USD_5 98 ,76D,3192,3223,1,0,0,,22DA85,62DA85,4ff,N-USD_5 99 ,76D,3224,3255,1,0,0,,22DA85,62DA85,4ff,N-USD_5 100 ,76D,3256,3287,1,0,0,,22DA85,62DA85,4ff,N-USD_5 101 ,76D,3288,3319,1,0,0,,22DA85,62DA85,4ff,N-USD_5 102 ,76D,3320,3351,1,0,0,,22DA85,62DA85,4ff,N-USD_5 103 ,76D,3352,3383,1,0,0,,22DA85,62DA85,4ff,N-USD_5 104 ,76D,3384,3415,1,0,0,,22DA85,62DA85,4ff,N-USD_5 105 ,76D,3416,3447,1,0,0,,22DA85,62DA85,4ff,N-USD_5 106 ,76D,3448,3479,1,0,0,,22DA85,62DA85,4ff,N-USD_5 107 ,76D,24,55,1,0,0,,22DA86,62DA86,4ff,N-USD_6 0 ,76D,56,87,1,0,0,,22DA86,62DA86,4ff,N-USD_6 1 ,76D,88,119,1,0,0,,22DA86,62DA86,4ff,N-USD_6 2 ,76D,120,151,1,0,0,,22DA86,62DA86,4ff,N-USD_6 3 ,76D,24,39,1,0,0,,22DA87,62DA87,4ff,N-USD_7 ,76D,24,55,1,0,0,,22DA88,62DA88,4ff,N-USD_8 0 ,76D,56,79,1,0,0,,22DA88,62DA88,4ff,N-USD_8 1 ,76D,24,31,1,0,0,,22DAB0,62DAB0,4ff,DiagnosticTriggerFrameFunctionActivation ,76D,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/USM_Tests.csv ================================================ 44,data memory failure 62,signal compare failure 63,circuit component protection time-out 64,signal plausibility failure 65,signal has too few transitions events 61,signal calculation failure 67,signal incorrect after event 51,not programmed 71,actuator stuck 72,actuator stuck open 45,program memory failure 55,not configured 54,missing calibration 52,not activated 4B,over temperature 4A,incorrect component installed 49,internal electronic failure 48,supervision software failure 47,watchdog safety uC failure 46,calibration parameter memory failure 73,actuator stuck closed 87,missing message 53,deactivated 43,special memory failure 98,component or system over temperature 97,Component or system operation obstructed or blocked 96,component internal failure 95,incorrect assembly 94,unexpected operation 93,no operation 92,performance or incorrect operation 91,parametric 8F,erratic 88,bus off 85,signal above allowable range 86,signal invalid 74,actuator slipping 84,signal below allowable range 83,value of signal protection calculation incorrect 82,alive sequence counter incorrect not updated 81,invalid serial data received 7B,low fluid level 7A,fluid leak or seal failure 79,mechanical linkage failure 78,alignment or adjustment incorrect 77,commanded position not reachable 76,wrong mounting position 75,emergency position not reachable 66,signal has too many transitions events 0F,Vehicle manufacturer System supplier specific 1B,circuit resistance above threshold 1A,circuit resistance below threshold 19,circuit current above threshold 18,circuit current below threshold 17,circuit voltage above threshold 16,circuit voltage below threshold 15,circuit short to battery or open 14,circuit short to ground or open 13,circuit open 1C,circuit voltage out of range 11,circuit short to ground 09,Component Failures 08,Bus Signal Message Failures 06,Algorithm Based Failures 05,System Programming Failures 04,System Internal Failures 03,FM_PWM Failures 02,General signal failure 01,General Electrical Failure 00,Device and failure type ODB codding Gen Failure Info 42,general memory failure 68,event information 12,circuit short to battery 35,signal high time high maximum 41,general checksum failure 3A,incorrect has too many pulses 07,Mechanical Failures 1D,circuit current out of range 39,incorrect has too few pulses 38,signal frequency incorrect 36,signal frequency too low 34,signal high time low minimum 33,signal low time high maximum 32,signal low time low minimum 31,no signal 25,signal shape waveform failure 21,signal amplitude low minimum 37,signal frequency too high 2F,signal erratic 1F,circuit intermittent 23,signal stuck low 24,signal stuck high 22,signal amplitude high maximum 1E,circuit resistance out of range 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal bias level outofrange 0 adjust failure 29,signal signal invalid ================================================ FILE: app/src/main/assets/ZOE_Ph2/VSP_Dtcs.csv ================================================ C075,CAN_COMM_CIRCUIT A860,CONTROL UNIT(CAN) *2 A861,DSC_FAILURE E141,Communication Failure of ATCU ECU E14F,Communication Failure of BCM ECU E148,Communication Failure of VDC ECU E143,Communication Failure of HEVC ECU E140,Communication Failure of ECM ECU E14E,Communication Failure of METER ECU E15B,Communication Failure of USM ECU A862,ECU Missing Configuration ================================================ FILE: app/src/main/assets/ZOE_Ph2/VSP_Fields.csv ================================================ ,761,0,0,1,0,0,,1081,5081,ff,StartDefaultSession ,761,0,0,1,0,0,,1085,5085,ff,StartReprogSession ,761,0,0,1,0,0,,10C0,50C0,ff,StartDiagnosticSession ,761,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,761,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,761,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,761,40,43,1,0,0,,1902FF,5902FF,ff,DTCFailureType.Category,0:General Failure Information;1:General Electrical Failures;2:General Signal Failures;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;15:Vehicle manufacturer / System supplier specific ,761,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,761,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested ,761,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle ,761,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,761,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,761,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,761,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC ,761,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle ,761,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,761,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,761,40,47,1,8,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,761,16,39,1,0,0,,190600000080,590600000080,4ff,DTCRecord ,761,40,47,1,8,0,,190600000080,590600000080,ff,StatusOfDTC ,761,48,55,1,0,0,,190600000080,590600000080,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,761,56,79,1,0,0,km,190600000080,590600000080,ff,DTCExtendedData.Mileage ,761,16,39,1,0,0,,1906000000FF,5906000000FF,4ff,DTCRecord ,761,40,47,1,8,0,,1906000000FF,5906000000FF,ff,StatusOfDTC ,761,48,55,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedDataRecordNumber,128:Mileage;129:AgingCounter;130:DTCOccurrenceCounter ,761,56,63,1,0,0,,1906000000FF,5906000000FF,ff,DTCExtendedData.DTCOccurrenceCounter ,761,16,47,1,0,0,,2100,6100,4ff,Support LID data ,761,21,21,1,0,0,,2103,6103,ff,Configuration of DiagMUX DTCs.ECM_Presence,0:Absent;1:Present ,761,22,22,1,0,0,,2103,6103,ff,Configuration of DiagMUX DTCs.HEVC_Presence,0:Absent;1:Present ,761,23,23,1,0,0,,2103,6103,ff,Configuration of DiagMUX DTCs.ATCU_Presence,0:Absent;1:Present ,761,16,23,1,0,0,,2104,6104,4ff,SoundVolumeValue ChargingSound.SoundVolumeValue_ChargingSound ,761,16,16,1,0,0,,2105,6105,ff,Data monitor value request.IgnitionSupplyConfirmation,0:no primary ignition supply;1:primary ignition supply on ,761,17,17,1,0,0,,2105,6105,ff,Data monitor value request.VSPstatusDisplay,0:VSP deactivated not request;1:VSP deactivated request ,761,24,39,.125,0,1,rpm,2105,6105,ff,Data monitor value request.EngineRPM ,761,40,41,1,0,0,,2105,6105,ff,Data monitor value request.PowerTrainStatus,0:Powertrain Stopped;1:Reserved;2:Powertrain Running;3:Powertrain Starting ,761,42,43,1,0,0,,2105,6105,ff,Data monitor value request.DayNightForBacklights,0:Day;1:Twilight;2:Night;3:Unavailable ,761,44,45,1,0,0,,2105,6105,ff,Data monitor value request.ChargingSoundRequest,0:No request;1:Play charging plug sound request;2:Play Admit to charge battery sound request;3:Play Unlock charging plug sound request ,761,46,46,1,0,0,,2105,6105,ff,Data monitor value request.PeriodicReverseBuzzerTrigger,0:No request;1:Reverse alert trigger ,761,47,47,1,0,0,,2105,6105,ff,Data monitor value request.DiagMuxOn_BCM,0:counting and storage of CAN mute/absent failures masked;1:counting and storage of CAN mute/absent failures not masked ,761,48,63,.01,0,2,km/h,2105,6105,ff,Data monitor value request.VehicleSpeed ,761,64,67,1,0,0,,2105,6105,ff,Data monitor value request.VehicleStateExtented,0:Sleeping;1:Technical Wakeup;2:CutOffPending;3:BatTempoLevel;4:AccessoryLevel;5:IgnitionLevel;6:StartingInProgress;7:EngineRunning;8:AutoStart;9:EngineSystemStop;10:UnvailableValue ,761,68,95,.01,0,2,km,2105,6105,ff,Data monitor value request.DistanceTotalizer ,761,96,98,1,0,0,,2105,6105,ff,Data monitor value request.BrakeInfoStatus,0:Not used;1:Brake pedal not pressed;2:Brake pedal pressed;4:Brake pedal confirmed pressed;7:unavailable ,761,16,23,1,0,0,,2106,6106,4ff,Parameter VSP_Sound_A ,761,16,23,1,0,0,,2107,6107,4ff,Parameter VSP_Sound_B ,761,16,23,1,0,0,,2108,6108,4ff,Parameter VSP_Sound_C ,761,16,17,1,0,0,,2109,6109,ff,VSP Configuration Parameters.Sound type,0:Sound 1;1:Sound 2;2:Sound 3 ,761,18,18,1,0,0,,2109,6109,ff,VSP Configuration Parameters. LED_DTC_ENABLE,0:Absent;1:Present ,761,19,19,1,0,0,,2109,6109,ff,VSP Configuration Parameters.Activation by switch,0:absent;1:present ,761,20,20,1,0,0,,2109,6109,ff,VSP Configuration Parameters.REVERSE sound,0:absent;1:present ,761,21,21,1,0,0,,2109,6109,ff,VSP Configuration Parameters.CHARGING sound,0:absent;1:present ,761,22,22,1,0,0,,2109,6109,ff,VSP Configuration Parameters.D_R_Identical_sound,0:absent;1:present ,761,23,23,1,0,0,,2109,6109,ff,VSP Configuration Parameters. SWITCH_DTC_ENABLE,0:Absent;1:Present ,761,28,31,1,0,0,,2109,6109,ff,VSP Configuration Parameters. Engine Speed Treshold,0:300rpm;1:400rpm;2:500rpm;3:600rpm;4:700rpm;5:800rpm;6:900rpm;7:1000rpm;8:1100rpm;9:1200rpm;10:1300rpm;11:1400rpm;12:1500rpm;13:1600rpm;14:1700rpm;15:1800rpm ,761,16,55,1,0,0,,2180,6180,2ff,PartNumber.LowerPart ,761,56,63,1,0,0,,2180,6180,4ff,DiagnosticIdentificationCode ,761,64,87,1,0,0,,2180,6180,2ff,SupplierNumber.ITG ,761,88,127,1,0,0,,2180,6180,2ff,HardwareNumber.LowerPart ,761,128,143,1,0,0,,2180,6180,4ff,SoftwareNumber ,761,144,159,1,0,0,,2180,6180,4ff,EditionNumber ,761,160,175,1,0,0,,2180,6180,4ff,CalibrationNumber ,761,176,183,1,0,0,,2180,6180,ff,PartNumber.BasicPartList,0:NA;1:256A8;2:285N6 ,761,184,191,1,0,0,,2180,6180,ff,HardwareNumber.BasicPartList,0:HARDW;1:285J9 ,761,192,199,1,0,0,,2180,6180,ff,ApprovalNumber.BasicPartList,0:NA ,761,200,207,1,0,0,,2180,6180,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,761,16,151,1,0,0,,2181,6181,2ff,VIN.VIN ,761,152,167,1,0,0,,2181,6181,4ff,VIN.CRC ,761,40,40,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.Mute Module_Current_fault status,0:failure absent;1:failure present ,761,41,41,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.Mute Module_Confirmed_fault status,0:failure absent;1:failure present ,761,42,47,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.Mute Module_Fault counter ,761,64,64,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.METER Absent_Current_fault status,0:failure absent;1:failure present ,761,65,65,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.METER Absent_Confirmed_fault status,0:failure absent;1:failure present ,761,66,71,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.METER Absent_Fault counter ,761,72,72,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.BCM Absent_Current_fault status,0:failure absent;1:failure present ,761,73,73,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.BCM Absent_Confirmed_fault status,0:failure absent;1:failure present ,761,74,79,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.BCM Absent_Fault counter ,761,112,112,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.AT Absent_HEV_Current_fault status,0:failure absent;1:failure present ,761,113,113,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.AT Absent_HEV_Confirmed_fault status,0:failure absent;1:failure present ,761,114,119,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.AT Absent_HEV_Fault counter ,761,424,424,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.VCM Absent_Current_fault status,0:failure absent;1:failure present ,761,425,425,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.VCM Absent_Confirmed_fault status,0:failure absent;1:failure present ,761,426,431,1,0,0,,2182,6182,ff,Multiplex network diagnostic request.VCM Absent_Fault counter ,761,16,55,1,0,0,,2183,6183,2ff,NissanID.PartNumberLowerPart ,761,56,63,1,0,0,,2183,6183,4ff,NissanID.DiagnosticIdentificationCode ,761,64,87,1,0,0,,2183,6183,2ff,NissanID.SupplierNumberITG ,761,88,127,1,0,0,,2183,6183,4ff,NissanID.HardwareNumberLowerPart ,761,128,143,1,0,0,,2183,6183,4ff,NissanID.SoftwareNumber ,761,144,159,1,0,0,,2183,6183,4ff,NissanID.EditionNumber ,761,160,175,1,0,0,,2183,6183,4ff,NissanID.CalibrationNumber ,761,176,199,1,0,0,,2183,6183,4ff,NissanID.Other system features ,761,200,207,1,0,0,,2183,6183,ff,NissanID.ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,761,16,39,1,0,0,,2184,6184,2ff,Traceability.SupplierCode ,761,40,71,1,0,0,,2184,6184,2ff,Traceability.ProductionYear ,761,72,87,1,0,0,,2184,6184,2ff,Traceability.ProductionWeek ,761,88,175,1,0,0,,2184,6184,2ff,Traceability.SerialNumber ,761,16,95,1,0,0,,21EF,61EF,2ff,DaimlerID.HardwarePartNumber ,761,96,175,1,0,0,,21EF,61EF,2ff,DaimlerID.SoftwarePartNumber ,761,16,55,1,0,0,,21FA,61FA,2ff,PartNumber.LowerPart ,761,56,63,1,0,0,,21FA,61FA,4ff,DiagnosticIdentificationCode ,761,64,87,1,0,0,,21FA,61FA,2ff,SupplierNumber.ITG ,761,88,127,1,0,0,,21FA,61FA,2ff,HardwareNumber.LowerPart ,761,128,143,1,0,0,,21FA,61FA,4ff,SoftwareNumber ,761,144,159,1,0,0,,21FA,61FA,4ff,EditionNumber ,761,160,175,1,0,0,,21FA,61FA,4ff,CalibrationNumber ,761,176,183,1,0,0,,21FA,61FA,ff,PartNumber.BasicPartList,0:NA;1:256A8;2:285N6 ,761,184,191,1,0,0,,21FA,61FA,ff,HardwareNumber.BasicPartList,0:HARDW;1:285J9 ,761,192,199,1,0,0,,21FA,61FA,ff,ApprovalNumber.BasicPartList,0:NA ,761,200,207,1,0,0,,21FA,61FA,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,761,16,55,1,0,0,,21FC,61FC,2ff,PartNumber.LowerPart ,761,56,63,1,0,0,,21FC,61FC,4ff,DiagnosticIdentificationCode ,761,64,87,1,0,0,,21FC,61FC,2ff,SupplierNumber.ITG ,761,88,127,1,0,0,,21FC,61FC,2ff,HardwareNumber.LowerPart ,761,128,143,1,0,0,,21FC,61FC,4ff,SoftwareNumber ,761,144,159,1,0,0,,21FC,61FC,4ff,EditionNumber ,761,160,175,1,0,0,,21FC,61FC,4ff,CalibrationNumber ,761,176,183,1,0,0,,21FC,61FC,ff,PartNumber.BasicPartList,0:NA;1:256A8;2:285N6 ,761,184,191,1,0,0,,21FC,61FC,ff,HardwareNumber.BasicPartList,0:HARDW;1:285J9 ,761,192,199,1,0,0,,21FC,61FC,ff,ApprovalNumber.BasicPartList,0:NA ,761,200,207,1,0,0,,21FC,61FC,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,761,16,55,1,0,0,,21FE,61FE,2ff,PartNumber.LowerPart ,761,56,63,1,0,0,,21FE,61FE,4ff,DiagnosticIdentificationCode ,761,64,87,1,0,0,,21FE,61FE,2ff,SupplierNumber.ITG ,761,88,127,1,0,0,,21FE,61FE,2ff,HardwareNumber.LowerPart ,761,128,143,1,0,0,,21FE,61FE,4ff,SoftwareNumber ,761,144,159,1,0,0,,21FE,61FE,4ff,EditionNumber ,761,160,175,1,0,0,,21FE,61FE,4ff,CalibrationNumber ,761,176,183,1,0,0,,21FE,61FE,ff,PartNumber.BasicPartList,0:NA;1:256A8;2:285N6 ,761,184,191,1,0,0,,21FE,61FE,ff,HardwareNumber.BasicPartList,0:HARDW;1:285J9 ,761,192,199,1,0,0,,21FE,61FE,ff,ApprovalNumber.BasicPartList,0:NA ,761,200,207,1,0,0,,21FE,61FE,ff,ManufacturerIdentificationCode,0:Renault R1;128:Nissan N1;129:Nissan N2;130:Nissan N3;136:5DIGITS ,761,24,47,1,0,0,km,22F0D0,62F0D0,ff,DTC Mileage ,761,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC Occurrence Counter ,761,0,0,1,0,0,,3E01,7E01,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/VSP_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal level out of range/zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component | system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/WCGS_Dtcs.csv ================================================ 9B00,Bus Signal / Message Failures 9B01,circuit voltage out of range 9B02,circuit current out of range 9B03,internal electronic failure 9B04,Virgin or incomplete configuration ================================================ FILE: app/src/main/assets/ZOE_Ph2/WCGS_Fields.csv ================================================ ,7AD,0,0,1,0,0,,1001,5001,ff,StartDiagnosticSession.Default ,7AD,0,0,1,0,0,,1002,5002,ff,StartDiagnosticSession.Reprog ,7AD,0,0,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,7AD,0,0,1,0,0,,14FFFFFF,54FFFFFF,ff,ClearDiagnosticInformation.All ,7AD,16,23,1,0,0,,1901FF,5901FF,ff,DTCStatusAvailabilityMask ,7AD,24,31,1,0,0,,1901FF,5901FF,ff,DTCFormatIdentifier,0:SAE_J2012-DA_DTCFormat;1:ISO_14229-1_DTCFormat;2:SAE_J1939-73_DTCFormat;3:ISO_11992-4_DTCFormat;4:SAE_J2012-DA_WWHOBD_DTCFormat ,7AD,32,47,1,0,0,,1901FF,5901FF,4ff,DTCCount ,7AD,16,23,1,0,0,,1902FF,5902FF,ff,DTCStatusAvailabilityMask ,7AD,24,39,1,0,0,,1902FF,5902FF,ff,DTCDeviceAndFailureTypeOBD ,7AD,40,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType,0:Device and failure type ODB codding;1:General Electrical Failure;2:General signal failure;3:FM / PWM Failures;4:System Internal Failures;5:System Programming Failures;6:Algorithm Based Failures;7:Mechanical Failures;8:Bus Signal / Message Failures;9:Component Failures;17:circuit short to ground;18:circuit short to battery;19:circuit open;20:circuit short to ground or open;21:circuit short to battery or open;22:circuit voltage below threshold;23:circuit voltage above threshold;24:circuit current below threshold;25:circuit current above threshold;26:circuit resistance below threshold;27:circuit resistance above threshold;28:circuit voltage out of range;29:circuit current out of range;30:circuit resistance out of range;31:circuit intermittent;33:signal amplitude < minimum;34:signal amplitude > maximum;35:signal stuck low;36:signal stuck high;37:signal shape / waveform failure;38:signal rate of change below threshold;39:signal rate of change above threshold;40:signal level out of range/zero adjustment failure;41:signal signal invalid;47:signal erratic;49:no signal;50:signal low time < minimum;51:signal low time > maximum;52:signal high time < minimum;53:signal high time > maximum;54:signal frequency too low;55:signal frequency too high;56:signal frequency incorrect;57:incorrect has too few pulses;58:incorrect has too many pulses;65:general checksum failure;66:general memory failure;67:special memory failure;68:data memory failure;69:program memory failure;70:calibration / parameter memory failure;71:watchdog / safety µC failure;72:supervision software failure;73:internal electronic failure;74:incorrect component installed;75:over temperature;81:not programmed;82:not activated;83:deactivated;84:missing calibration;85:not configured;97:signal calculation failure;98:signal compare failure;99:circuit / component protection time-out;100:signal plausibility failure;101:signal has too few transitions / events;102:signal has too many transitions / events;103:signal incorrect after event;104:event information;113:actuator stuck;114:actuator stuck open;115:actuator stuck closed;116:actuator slipping;117:emergency position not reachable;118:wrong mounting position;119:commanded position not reachable;120:alignment or adjustment incorrect;121:mechanical linkage failure;122:fluid leak or seal failure;123:low fluid level;129:invalid serial data received;130:alive / sequence counter incorrect / not updated;131:value of signal protection calculation incorrect;132:signal below allowable range;133:signal above allowable range;134:signal invalid;135:missing message;136:bus off;143:erratic;145:parametric;146:performance or incorrect operation;147:no operation;148:unexpected operation;149:incorrect assembly;150:component internal failure;151:Component | system operation obstructed or blocked;152:component or system over temperature ,7AD,44,47,1,0,0,,1902FF,5902FF,ff,DTCFailureType.ManufacturerOrSupplier ,7AD,48,48,1,0,0,,1902FF,5902FF,ff,DTCStatus.warningIndicatorRequested ,7AD,49,49,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedThisMonitoringCycle ,7AD,50,50,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedSinceLastClear,0:No;1:Yes ,7AD,51,51,1,0,0,,1902FF,5902FF,ff,DTCStatus.testNotCompletedSinceLastClear,0:No;1:Yes ,7AD,52,52,1,0,0,,1902FF,5902FF,ff,DTCStatus.confirmedDTC,0:No;1:Yes ,7AD,53,53,1,0,0,,1902FF,5902FF,ff,DTCStatus.pendingDTC ,7AD,54,54,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailedThisMonitoringCycle ,7AD,55,55,1,0,0,,1902FF,5902FF,ff,DTCStatus.testFailed,0:No;1:Yes ,7AD,0,0,1,0,0,,1903000000FF,5903000000FF,ff,ReadDTCInformation.ReportDTCSnapshotIdentification ,7AD,16,39,1,0,0,,1904000000FF,5904000000FF,4ff,DTCRecord ,7AD,40,47,1,0,0,,1904000000FF,5904000000FF,ff,StatusOfDTC ,7AD,16,23,1,0,0,,190A,590A,ff,DTCStatusAvailabilityMask ,7AD,24,31,1,0,0,,220100,620100,ff,Diagnosis ID,0:Unavailable;1:Driver;2:Passenger ,7AD,24,31,1,0,0,,220101,620101,ff,System power on,0:Unavailable;1:Yes;2:No ,7AD,24,31,1,0,0,,220102,620102,ff,Object detected,0:Unavailable;1:No;2:Yes ,7AD,24,31,1,0,0,,220103,620103,ff,Phone detected,0:Unavailable;1:No;2:Yes ,7AD,24,31,1,0,0,,220104,620104,ff,Charging state,0:Unavailable;1:Uncharging;2:LP charging;3:MP Charging ,7AD,24,31,1,0,0,,220105,620105,ff,Hardware version,0:Unknown;1:V1.1;2:V1.2;3:V1.3;4:V1.4;5:V1.5;6:V1.6;7:V1.7;8:V1.8;9:V1.9;10:V2.0;11:V2.1;12:V2.2;13:V2.3;14:V2.4;15:V2.5 ,7AD,24,55,1,0,0,,220106,620106,4ff,ID of receivers charging IC ,7AD,24,31,1,0,0,,220107,620107,ff,Manufacturer of receivers charging IC,0:Unknown;1:Samsung;2:LGE;3:Nokia;4:Motorola;5:Apple;6:Others ,7AD,24,31,1,0,0,,220108,620108,ff,Charging standard and version of receiver,0:Unavailable;1:WPC 1.0;2:WPC 1.1;3:WPC 1.2;4:WPC x.x;5:PMA;6:A4WP ,7AD,24,31,1,0,0,,220109,620109,ff,Existence of foreign object,0:Unavailable;1:No;2:Yes ,7AD,24,31,.2,0,1,V,22010A,62010A,ff,Voltage of charging coil ,7AD,24,31,.05,0,2,A,22010B,62010B,ff,Current of charging coil ,7AD,24,31,.2,0,1,V,22010C,62010C,ff,Input voltage ,7AD,24,31,.05,0,2,A,22010D,62010D,ff,Input current ,7AD,24,31,1,40,0,°C,22010E,62010E,ff,System temperature ,7AD,24,31,1,0,0,W,22010F,62010F,ff,Power consumption of charger ,7AD,24,31,1,0,0,W,220110,620110,ff,Received power reported by receiver ,7AD,24,31,1,0,0,W,220111,620111,ff,Power loss between charger and receiver ,7AD,24,31,1,0,0,min,220112,620112,ff,Charging_Time ,7AD,24,31,1,0,0,,220113,620113,ff,disconnection of charging coil,0:Unavailable;1:No;2:Yes ,7AD,24,31,1,0,0,,220114,620114,ff,memory fault,0:Unavailable;1:No;2:Yes ,7AD,24,31,1,0,0,,220115,620115,ff,reason of stop charging,0:RECHARGETIME_RX_UNKNOWN;1:RECHARGETIME_RX_CHARGE_COMPLETE;2:RECHARGETIME_TX_QFOD_ERROR;3:RECHARGETIME_TX_OVER_TEMP_FAULT;4:RECHARGETIME_TX_RCVPWR_TIMEOUT;5:RECHARGETIME_TX_FOD_ERROR;6:RECHARGETIME_TX_OVER_INCURR_LIMIT;7:RECHARGETIME_TX_INPWREXCEED;8:RECHARGETIME_TX_OVER_COILCURR_LIMIT ,7AD,24,31,1,0,0,,220116,620116,ff,stop charing request from HFM,0:No request;1:Stop requested ,7AD,24,31,1,0,0,,220119,620119,ff,Firmware Version,0:Unknown;1:V1.1;2:V1.2;3:V1.3;4:V1.4;5:V1.5;6:V1.6;7:V1.7;8:V1.8;9:V1.9;10:V2.0;11:V2.1;12:V2.2;13:V2.3;14:V2.4;15:V2.5 ,7AD,24,31,1,0,0,,222003,622003,ff,EE architecture configuration,0:C1A/T4VS (gateway);1:G1;2:Others ,7AD,24,31,1,0,0,,229000,629000,ff,Control of yellow LED,0:OFF;1:ON ,7AD,24,31,1,0,0,,229001,629001,ff,Control of Green LED,0:OFF;1:ON ,7AD,24,31,1,0,0,,229002,629002,ff,Control of WCBS charging,0:OFF;1:ON ,7AD,24,151,1,0,0,,22F010,62F010,4ff,Fingerprint ,7AD,24,103,1,0,0,,22F011,62F011,2ff,IndexSrvData ,7AD,24,103,1,0,0,,22F012,62F012,2ff,Operational Reference ,7AD,24,103,1,0,0,,22F013,62F013,2ff,SecondaryOperationnalReference ,7AD,24,47,1,0,0,km,22F0D0,62F0D0,ff,Mileage ,7AD,24,31,1,0,0,,22F0D1,62F0D1,ff,DTC Occurrence Counter ,7AD,24,103,1,0,0,,22F111,62F111,2ff,VehicleManufacturerECUHardwareNumber_DAI ,7AD,24,183,1,0,0,,22F121,62F121,2ff,VehicleManufacturerECUSoftwareNumber_DAI ,7AD,24,31,1,0,0,,22F180,62F180,4ff,BootVersion.ModuleNumber ,7AD,32,135,1,0,0,,22F180,62F180,2ff,BootVersion.Coding ,7AD,24,103,1,0,0,,22F187,62F187,2ff,vehicleManufacturerSparePartNumber ,7AD,24,103,1,0,0,,22F188,62F188,2ff,vehicleManufacturerECUSoftwareNumber ,7AD,24,95,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7AD,24,183,1,0,0,,22F18C,62F18C,2ff,ECUSerialNumber ,7AD,24,159,1,0,0,,22F190,62F190,2ff,VIN ,7AD,24,103,1,0,0,,22F191,62F191,2ff,vehicleManufacturerECUHardwareNumber ,7AD,24,79,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7AD,24,143,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7AD,24,31,1,0,0,,22F1A0,62F1A0,4ff,diagnosticVersion ,7AD,24,103,1,0,0,,22F1A1,62F1A1,2ff,VehicleManufacturerSparePartNumber_N ,7AD,24,103,1,0,0,,22F1A2,62F1A2,2ff,ConfigurationDataReferenceAfterConfigurationProcess ,7AD,0,0,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse ================================================ FILE: app/src/main/assets/ZOE_Ph2/WCGS_Tests.csv ================================================ 00,Device and failure type ODB codding 01,General Electrical Failure 02,General signal failure 03,FM / PWM Failures 04,System Internal Failures 05,System Programming Failures 06,Algorithm Based Failures 07,Mechanical Failures 08,Bus Signal / Message Failures 09,Component Failures 11,circuit short to ground 12,circuit short to battery 13,circuit open 14,circuit short to ground or open 15,circuit short to battery or open 16,circuit voltage below threshold 17,circuit voltage above threshold 18,circuit current below threshold 19,circuit current above threshold 1A,circuit resistance below threshold 1B,circuit resistance above threshold 1C,circuit voltage out of range 1D,circuit current out of range 1E,circuit resistance out of range 1F,circuit intermittent 21,signal amplitude < minimum 22,signal amplitude > maximum 23,signal stuck low 24,signal stuck high 25,signal shape / waveform failure 26,signal rate of change below threshold 27,signal rate of change above threshold 28,signal level out of range/zero adjustment failure 29,signal signal invalid 2F,signal erratic 31,no signal 32,signal low time < minimum 33,signal low time > maximum 34,signal high time < minimum 35,signal high time > maximum 36,signal frequency too low 37,signal frequency too high 38,signal frequency incorrect 39,incorrect has too few pulses 3A,incorrect has too many pulses 41,general checksum failure 42,general memory failure 43,special memory failure 44,data memory failure 45,program memory failure 46,calibration / parameter memory failure 47,watchdog / safety µC failure 48,supervision software failure 49,internal electronic failure 4A,incorrect component installed 4B,over temperature 51,not programmed 52,not activated 53,deactivated 54,missing calibration 55,not configured 61,signal calculation failure 62,signal compare failure 63,circuit / component protection time-out 64,signal plausibility failure 65,signal has too few transitions / events 66,signal has too many transitions / events 67,signal incorrect after event 68,event information 71,actuator stuck 72,actuator stuck open 73,actuator stuck closed 74,actuator slipping 75,emergency position not reachable 76,wrong mounting position 77,commanded position not reachable 78,alignment or adjustment incorrect 79,mechanical linkage failure 7A,fluid leak or seal failure 7B,low fluid level 81,invalid serial data received 82,alive / sequence counter incorrect / not updated 83,value of signal protection calculation incorrect 84,signal below allowable range 85,signal above allowable range 86,signal invalid 87,missing message 88,bus off 8F,erratic 91,parametric 92,performance or incorrect operation 93,no operation 94,unexpected operation 95,incorrect assembly 96,component internal failure 97,Component | system operation obstructed or blocked 98,component or system over temperature ================================================ FILE: app/src/main/assets/ZOE_Ph2/_Ecus.csv ================================================ # Descriptive name, Renault ID, Network (s), From ID (used in fields), To ID, Mnemonic, Alias(ses), GetDtc responseID (s), Session required # If more than one, semicolon separated ABS-VDC,0,,18daf12d,18da2df1,ABS-VDC,ESC;ABS,590201,5003,0 Airbag,0,,772,752,AIRBAG-SRS,AIBAG;AIRBAG,5902ff,50c0,0 Audio Amplifier Unit,0,,7a2,782,AAU,,5902ff,5003,0 Automatic Parking Brake,0,,775,755,APB,,5902af,5003,0 Battery Charger Block,0,,18daf1de,18dadef1,BCB-OBC,BCB,5902af,50c0,0 Body Control Module,0,,765,745,UCH,BCM;UCH,5902ff,5003,0 Climate Control,0,,764,744,HVAC,CLIM;CLIMA;CLIMBOX,5902ff,5003,0 Data Communication Module,0,,7da,7ca,DCM,TCU,5902ff,5003,0 E-ACT-EBA,0,,18daf1e2,18dae2f1,E-ACT-EBA,-,590201,5003,0 Electrical Power Steering,0,,762,742,EPS,PAS,5902ff,5003,0 Front Camera,0,,7dd,7dc,FCAM,-,5902ff,5003,0 Hands Free Module,0,,7b9,799,HFM,-,5902ff,5003,0 Integrated Dynamics Control Module,0,,700,70c,IDM,-,5902ff,5000,0 INV-ME,0,,18daf1df,18dadff1,INV-ME,-,5902af,50c0,0 Laser radar for Adaptive Cruise Control System,0,,735,723,FRRAD,-,5902ff,5003,0 Lithium Battery Controller,0,,18daf1db,18dadbf1,LBC,-,5902ff,5003,0 Lithium Battery Controller 2,0,,18daf1dc,18dadcf1,LBC2,-,5902ff,5003,0 Meter Cluster,0,,763,743,TDB,CLUSTER;BIC,5902ff,5003,0 Multimedia Interface Unit,0,,734,714,MIU,-,5902ff,5003,0 Navigation-UCC-ITM,0,,767,747,Navigation-UCC-ITM,-,5902ff,5003,0 Parking Sonar,0,,76e,74e,Parking-Sonar,-,5902ff,5003,0 Power Line connection/ Power Line Gateway,0,,7c8,7d8,PLC-PLGW,-,5902ff,5003,0 Security Gateway,0,,18daf1d2,18dad2f1,S-GW3,-,5902ff,5003,0 U Safety Module,0,,76d,74d,USM,UPC;UCM,5902af,50c0,0 Vehicle Controle Module,0,,18daf1da,18dadaf1,EVC-HCM-VCM,EVC;SCH,5902af,5003,0 Vehicle Sound for Pedestrians,0,,761,73f,VSP,-,5902ff,50c0,0 Wireless Charger Smartphone,0,,7ad,7aa,WCGS,-,5902ff,5003,0 # 0x800 - 0x8ff is reserved for CanZE's virtuals VirtualField computer,9999,V,800,800,VFC,-,,50c0,0 Free fields,9998,V,801,801,FFC,-,,50c0,0 ================================================ FILE: app/src/main/assets/ZOE_Ph2/_Fields.csv ================================================ # SID (defaults to ID.startBit.[responseId]), ID (hex), startBit, endBit, resolution, offset (aplied BEFORE resolution multiplication), decimals, unit, requestID (hex string), responseID (hex string), options (hex, see MainActivity for definitions), optional name, optional list # 130,44,55,-3,4094,0,Nm,,,ff,DriverBrakeWheelTq_Req # Note that in the next line the resolution is negated from the original definition, to match 130.44 130.44,18daf1e2,28,39,-1,4096,0,Nm,999999,999999,ff,DriverBrakeWheelTq_Req # 186,40,49,0.125,0,1,%,,,ff,Throttle 186.40,18daf1da,24,39,0.125,0,1,%,22202E,62202E,ff,Accelerator pedal position # ,1f8,16,27,1,4096,0,Nm,,,ff,TotalPotentialResistiveWheelsTorque # free frame 1f8.16 is in wheel NM, isotp 22247 in 32's motor torque 1f8.16,18daf1da,24,39,0.29125,32768,0,N.m,222247,622247,ff,Minimum effective torque that can be requested to the electrical motor (EM) # 1f8,28,39,-1,4096,0,Nm,,,ff,ElecBrakeWheelsTorqueApplied 1f8.28,18daf1e2,28,39,-1,4096,0,Nm,999999,999999,ff,ElecBrakeWheelsTorqueApplied # # 1f8,40,50,10,0,0,Rpm,,,ff,ElecEngineRPM 1f8.40,18DAF1DA,24,39,1,0,0,rpm,223064,623064,1ff,Electrical motor engine speed # 1fd,0,7,0.390625,0,1,%,,,ff,12V Battery Current? # 1fd.0,18daf1da,24,31,1,0,0,A,223025,623025,ff,14V DCDC current measure 1fd.0,18DAF1DA,24,39,1,32767,0,A,2221DF,6221DF,ff,Low voltage power supply current supply by DCDC # 1fd,48,55,1,80,0,kW,,,ff,Consumption # Possible to use a virtual computer field here? No, so this really needs to be changed in the code # 1fd.48,800,24,55,1,0,0,kW,,,ff,Consumption # 35c,5,7,1,0,0,,,,ff,Vehicle state # 35c.5,765,152,159,1,0,0,,210D,610D,ff,Vehicle state 35c.5,765,24,31,1,0,0,,228003,628003,ff,VEHICLE_STATE,0:VS_SLEEPING;1:VS_TECHNICAL_WAKE_UP;2:VS_CUT_OFF_PENDING;4:VS_NOT_USED_4;5:VS_IGNITION_LEVEL;6:VS_STARTING_IN_PROGRESS;7:VS_ENGINE_RUNNING;8:VS_AUTOSTART;10:VS_NOT_USED_10;11:VS_NOT_USED_11;12:VS_NOT_USED_12;13:VS_NOT_USED_13;14:VS_NOT_USED_14;15:VS_UNAVAILABLE;9:VS_ENGINE_SYSTEM_STOP;3:VS_AUTOACC_LEVEL # 427,40,47,0.3,0,0,kW,,,e2,Available Charging Power (UCP) # 427.40,18daf1da,24,39,.1,0,1,kW,223470,623470,ff,Available JB2 power for a battery charge 427.40,18DAF1DA,24,39,.025,0,2,kW,22300F,62300F,ff,Available Charging Power AC # 427,49,57,0.1,0,1,kWh,,,e2,Available Energy # 427.49,18daf1da,24,39,0.005,0,1,kWh,22320C,62320C,ff,Available discharge Energy 427.49,18DAF1DB,24,47,.001,0,3,kWh,2291C8,6291C8,ff,Available Energy(Wxx_avl_e) # 42e,0,12,0.02,0,2,%,,,e3,State of Charge # 42e.0,18daf1da,24,39,0.02,0,2,%,222002,622002,ff,State of Charge 42e.0,18DAF1DB,24,39,.01,0,2,%,229002,629002,ff,Battery USOC(Wxx_usoc_avg) # 42e,20,24,5,0,0,%,,,e2,Engine Fan Speed # 42e.20,18daf1da,24,31,5,0,0,%,223471,613471,e2,Engine Fan Speed # 42e.20,18daf1da,24,31,1,0,0,%,22345E,62345E,ff,FAN global request from ETS in PWM including AC, Cooling needs and Relay protection check 42e.20,764,24,31,1,0,0,%,224258,624258,ff,OH_EngineFanSpeedRequestPWM_AC # 42e,44,50,1,40,0,°C,,,e3,HV Battery Temp # 42e.44,18daf1da,24,31,1,40,0,°C,222001,622001,ff,HV Battery Temp 42e.44,18DAF1DB,24,39,.0625,640,2,°C,229012,629012,ff,Average Temperature(Wxx_temp_avg) # Note that 5d7.0 is best always present as it is used for safe driving mode # 5d7,0,15,0.01,0,2,km/h,,,ff,Speed 5d7.0,18daf1da,24,39,0.01,0,2,km/h,222003,622003,ff,Speed # #,62d,0,9,0.1,0,0,kWh/100km,,,ff,Worst Average Consumption 62d.0,18daf1da,24,39,.001953125,0,3,kW,223457,623457,ff,Mean pessimistic electrical consumption (worst possible consumption) #,62d,10,19,0.1,0,0,kWh/100km,,,ff,Best Average Consumption 62d.10,18daf1da,24,39,.001953125,0,3,kW,223455,623455,ff,Mean eco electrical consumption (if driver has economical driving behavior) #,654,52,61,0.1,0,1,kWh/100km,,,ff,Average Consumption 654.52,18daf1da,24,47,0.00000762939453125,0,3,kWh/km,223478,623478,ff,Raw mean consumption per unit of distance # # 638,37,39,1,0,0,,,,ff,Battery 14v To Be Changed Display 638.37,18daf1da,29,31,1,0,0,,223486,623486,ff,Battery 14v To Be Changed Display # 654,2,2,1,0,0,,,,ff,Charging Plug Connected # 654.2,18daf1da,31,31,1,0,0,,22339D,62339D,ff,Charging Plug detected as present by the Charger.processed,0:No charging plug;1:Charging plug detected 654.2,18DAF1DA,31,31,1,0,0,,222B85,622B85,ff,Mains plug presence,0:Not present;1:present # 654,42,51,1,0,0,km,,,ff,Available Distance 654.42,18daf1da,24,39,1,0,0,km,223451,623451,ff,Estimated kilometric cruising range sent to MMI # 656,48,55,1,40,0,°C,,,e2,External Temp # 656.48,763,110,117,1,40,0,°C,2143,6143,ff,External Temp 656.48,18DAF1DA,24,39,.1,2730,1,°C,2220DE,6220DE,ff,Ambient temperature # 658,33,39,1,0,0,%,,,ff,Battery Health # 658.33,18daf1db,72,79,0.5,0,0,%,2161,6161,ff,Battery Health 658.33,18DAF1DB,24,39,.01,0,2,%,229003,629003,ff,Battery SOH(Zxx_sohe_avg) # 673,0,0,1,0,0,,,,ff,Speed pressure misadaptation 673.0,765,66,66,1,0,0,,2174,6174,ff,SpeedPressureMisadaptation # 673,2,4,1,0,0,,,,ff,Rear right wheel state 673.2,765,72,74,1,0,0,,2174,6174,ff,RearRightWheelState # 673,5,7,1,0,0,,,,ff,Rear left wheel state 673.5,765,80,82,1,0,0,,2174,6174,ff,RearLeftWheelState # 673,8,10,1,0,0,,,,ff,Front right wheel state 673.8,765,88,90,1,0,0,,2174,6174,ff,FrontRightWheelState # 673,11,13,1,0,0,,,,ff,Front left wheel state 673.11,765,96,98,1,0,0,,2174,6174,ff,FrontLeftWheelState # 673,16,23,13.725,0,0,mbar,,,ff,Rear right wheel pressure 673.16,765,112,119,13.725,0,0,mbar,2174,6174,ff,RearRightWheelPressure # 673,24,31,13.725,0,0,mbar,2174,6174,ff,Rear left wheel pressure 673.24,765,120,127,13.725,0,0,mbar,2174,6174,ff,RearLeftWheelPressure # 673,32,39,13.725,0,0,mbar,2174,6174,ff,Front right wheel pressure 673.32,765,128,135,13.725,0,0,mbar,2174,6174,ff,FrontRightWheelPressure # 673,40,47,13.725,0,0,mbar,2174,6174,ff,Front left wheel pressure 673.40,765,136,143,13.725,0,0,mbar,2174,6174,ff,FrontLeftWheelPressure # ABS-VDC / ESC # 760.6180.56,18DAF12D,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion 760.6180.64,18DAF12D,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier 760.6180.128,18DAF12D,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber 760.6180.144,18DAF12D,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber 760.54.0,18daf12d,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC 760.5902ff.0.,18daf12d,0,23,1,0,0,,19023b,5902ff,ff,Query DTC # EPS # ,762,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,762,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,762,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,762,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,762,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC ,762,0,23,1,0,0,,19023b,5902ff,ff,Query DTC # TDB / CLUSTER # ,763,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,763,24,95,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,763,24,55,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,763,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,763,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC ,763,0,23,1,0,0,,19023b,5902ff,ff,Query DTC # HVAC / CLIM # ,764,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion 764.6180.64,764,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier 764.6180.128,764,24,231,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber 764.6180.144,764,24,79,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber 764.6121.26,764,24,39,.1,400,1,°C,224009,624009,ff,IH_IncarTemp 764.6121.36,764,24,31,.5,0,1,%,22423B,62423B,ff,IH_RHumidity 764.6143.86,764,24,31,1,0,0,,224266,624266,ff,IH_EcoModeRequest 764.6143.110,764,24,39,.25,200,1,°C,224347,624347,ff,IH_ExternalTemperature 764.6143.134,764,24,39,.1,0,1,bar,22426C,62426C,ff,IH_ACHighPressureSensor 764.6144.107,764,24,39,1,0,0,rpm,2243D8,6243D8,ff,IH_EcompRealSpeed 764.6145.29,764,24,31,.5,0,1,°C,224004,624004,ff,OLB_FP_LeftTempDisplay 699.8,764,24,31,.5,0,1,°C,224004,624004,ff,OLB_FP_LeftTempDisplay 764.6167.21,764,24,31,1,0,0,,224402,624402,ff,OH_ClimLoopMode,1:AC Mode;2:Deicing Mode;4:HeatPump Mode;6:Demisting Mode;7:Idle Mode 764.6167.40,764,24,39,.25,200,1,°C,224347,624347,ff,IH_ExternalTemperature 430.38,764,168,169,1,0,0,,999999,999999,ff,HV Battery Cooling State 430.40,764,24,39,.1,400,1,°C,224423,624423,ff,IH_HVBattEvapTempMeasure 432.36,764,24,31,1,0,0,,22441C,62441C,ff,VH_HVBatConditionningMode,0:NoRequest;1:CoolCabinCoupleByAir;2:CoolBattCoupleByAir;3:CoolBattAloneByAir;4:CoolCabinCouple 42a.30,764,24,39,.1,400,1,°C,22400A,62400A,ff,IH_EvapTemp 42a.48,764,24,31,1,0,0,,224409,624409,ff,IH_HPM_ClimLoopMode,0:Unavailable;1:AC Mode;2:AC deicing mode;3:AC to heat pump mode;4:Heat pump mode;5:Heat pump to AC mode;6:Not used;7:Idle mode #HVAC ,764,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC ,764,0,23,1,0,0,,19023b,5902ff,ff,Query DTC ,764,24,31,.5,-32,1,°C,224360,624360,ff,OH_CabinTempTargetValue # BCM # ,765,24,199,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,765,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,765,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,765,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,765,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC ,765,0,23,1,0,0,,19023b,5902ff,ff,Query DTC ,765,16,16,1,0,0,,2171,6171,ff,PRESENCE_SSPP,0:without;1:with ,765,24,47,1,0,0,,2171,6171,ff,TPMS ,765,48,71,1,0,0,,2171,6171,ff,TPMS ,765,72,95,1,0,0,,2171,6171,ff,TPMS ,765,96,119,1,0,0,,2171,6171,ff,TPMS # USM # ,76d,56,63,1,0,0,,2180,6180,ff,diagVersion ,76d,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,76d,128,143,1,0,0,,2180,6180,ff,Soft ,76d,144,159,1,0,0,,2180,6180,ff,Version ,76d,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC ,76d,0,23,1,0,0,,19023b,5902ff,ff,Query DTC ,76d,0,23,1,0,0,,19023b,5902ff,ff,Query DTC # Parking-Sonar # ,76e,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,76e,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,76e,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,76e,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,76e,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC ,76e,0,23,1,0,0,,19023b,5902ff,ff,Query DTC # AIRBAG-SRS # ,772,56,63,1,0,0,,2180,6180,ff,diagVersion ,772,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,772,128,143,1,0,0,,2180,6180,ff,Soft ,772,144,159,1,0,0,,2180,6180,ff,Version ,772,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC ,772,0,23,1,0,0,,19023b,5902ff,ff,Query DTC # INV-ME ,18daf1df,56,63,1,0,0,,2180,6180,ff,diagVersion ,18daf1df,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) ,18daf1df,128,143,1,0,0,,2180,6180,ff,Soft ,18daf1df,144,159,1,0,0,,2180,6180,ff,Version ,18daf1df,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC ,18daf1df,0,23,1,0,0,,19023b,5902ff,ff,Query DTC # 77e.623025.24,18daf1df,24,39,0.015625,15256,2,Nm,222002,622002,ff,Emotor torque estimation based on measured values 77e.623025.24,700,24,39,.5,0,1,Nm,22011F,62011F,1ff,Current Estimated Engine Torque Value # BCB 793.5081.0,18daf1de,0,0,1,0,0,,1081,5081,ff,start diag 793.50c0.0,18daf1de,0,0,1,0,0,,10c0,50c0,ff,start diag 793.7e01.0,18daf1de,0,0,1,0,0,,3e01,7e01,ff,Tester present 793.6180.56,18daf1de,56,63,1,0,0,,2180,6180,ff,diagVersion 793.6180.64,18daf1de,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) 793.6180.128,18daf1de,128,143,1,0,0,,2180,6180,ff,Soft 793.6180.144,18daf1de,144,159,1,0,0,,2180,6180,ff,Version 793.54.0,18daf1de,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC 793.5902ff.0,18daf1de,0,23,1,0,0,,19023b,5902ff,ff,Query DTC 793.625057.24,18daf1de,24,39,0.0625,32768,2,mA,225057,625057,ff,DataRead.Raw leakage current - DC part measurement 793.625058.24,18daf1de,24,39,0.0625,32768,2,mA,225058,625058,ff,DataRead.Raw leakage current - High Frequency 10kHz part measurement 793.625059.24,18daf1de,24,39,0.0625,32768,2,mA,225059,625059,ff,DataRead.Raw leakage current - High Frequency 1st part measurement 793.62505a.24,18daf1de,24,39,0.0625,32768,2,mA,22505a,62505a,ff,DataRead.Raw leakage current - Low Frequency part measurement (50Hz) 793.622001.24,18daf1de,24,39,.0625,3200,2,A,222001,622001,ff,Mains phase 1 current RMS value # 793.625026.24,18daf1de,24,31,1,0,1,%,225026,625026,ff,J1772 control pilot raw duty cycle 793.62503a.24,18daf1de,24,39,.0625,3200,2,A,22503a,62503a,ff,Mains phase 2 current RMS 793.62503b.24,18daf1de,24,39,.0625,3200,2,A,22503b,62503b,ff,Mains phase 3 current RMS 793.625017.29,18daf1de,29,31,1,0,0,,225017,625017,ff,Mains current type,0:Nok;1:AC mono;2:AC tri;3:DC;4:AC bi 793.62502c.24,18daf1de,24,39,.5,32000,1,V,22502c,62502c,ff,Raw AC mains phase 1 measured voltage 793.62502d.24,18daf1de,24,39,.5,32000,1,V,22502d,62502d,ff,Raw AC mains phase 2 measured voltage 793.62502e.24,18daf1de,24,39,.5,32000,1,V,22502e,62502e,ff,Raw AC mains phase 3 measured voltage 793.62503f.24,18DAF1DE,24,39,.015625,0,2,V,22503F,62503F,ff,($503F) Mains phase 1-2 voltage RMS value 793.625041.24,18DAF1DE,24,39,.015625,0,2,V,225041,625041,ff,($5041) Mains phase 2-3 voltage RMS value 793.625042.24,18DAF1DE,24,39,.015625,0,2,V,225042,625042,ff,($5042) Mains phase 3-1 voltage RMS value 793.62504a.24,18daf1de,24,39,1,20000,0,W,22504a,62504a,ff,Mains active power consumed 793.625062.24,18daf1de,24,39,1,0,0,Ohm,225062,625062,ff,Mains ground resistance 793.625063.24,18daf1de,24,31,1,0,0,,225063,625063,ff,Supervisor state,0:Init;1:Wait;2:ClosingS2;3:InitType;4:InitLkg;5:InitChg;6:Charge;7:ZeroAmpMode;8:EndOfChg;9:OpeningS2;10:ReadyToSleep;11:EmergencyStop;12:InitChargeDF;13:OCPStop;14:WaitS2 793.625064.24,18daf1de,24,31,1,0,0,,225064,625064,ff,Leakage current diagnostic stored completion status,0:init;1:HF10;3:Mains Ground Default;5:Earth Current default;9:Ground Default;17:Means Leakage DC;33:Means Leakage LF;49:Means Leakage DC+LF;65:Means Leakage HF;81:Means Leakage DC+HF;97:Means Leakage LF+HF;113:Means Leakage DC+LF+HF # LBC2 # 7b6.6180.64,18DAF1DC,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier 7b6.6180.128,18DAF1DC,24,55,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber 7b6.6180.144,18DAF1DC,24,55,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber 7b6.6180.56,18DAF1DC,24,31,1,0,0,,22F1A0,62F1A0,ff,VDIAG 7b6.54.0,18daf1dc,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC 7b6.59020f.0,18daf1dc,0,23,1,0,0,,19023b,59020f,ff,Query DTC # LBC # 7bb.6180.64,18DAF1DB,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier 7bb.6180.128,18DAF1DB,24,55,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber 7bb.6180.144,18DAF1DB,24,55,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber 7bb.6180.56,18DAF1DB,24,31,1,0,0,,22F1A0,62F1A0,ff,VDIAG 7bb.54.0,18daf1db,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC 7bb.5902ff.0,18daf1db,0,23,1,0,0,,19023b,5902ff,ff,Query DTC 7bb.5003.0,18daf1db,0,23,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended 7bb.6101.336,18daf1db,24,39,0.01,0,2,kW,229018,629018,ff,Maximum battery input power 7bb.6103.192,18daf1db,24,39,0.01,300,2,%,229001,629001,ff,Real State of Charge 7ec.622002.24,18DAF1DB,24,39,.01,0,2,%,229002,629002,ff,Battery USOC(Wxx_usoc_avg) # 7ec.623206.24,18DAF1DB,24,39,.1,0,1,%,2291BC,6291BC,ff,Battery SOH (Available Power calculation)(Zxx_sohap) 7ec.623206.24,18DAF1DB,24,39,.01,0,2,%,229003,629003,ff,Battery SOH(Zxx_sohe_avg) 7ec.623203.24,18daf1db,24,39,.1,0,2,V,229005,629005,ff,Pack voltage (LBC Can value) 7bb.6104.32,18daf1db,24,39,0.0625,640,2,°C,229131,629131,ff,Cell 1 Temperature 7bb.6104.56,18daf1db,24,39,0.0625,640,2,°C,229132,629132,ff,Cell 2 Temperature 7bb.6104.80,18daf1db,24,39,0.0625,640,2,°C,229133,629133,ff,Cell 3 Temperature 7bb.6104.104,18daf1db,24,39,0.0625,640,2,°C,229134,629134,ff,Cell 4 Temperature 7bb.6104.128,18daf1db,24,39,0.0625,640,2,°C,229135,629135,ff,Cell 5 Temperature 7bb.6104.152,18daf1db,24,39,0.0625,640,2,°C,229136,629136,ff,Cell 6 Temperature 7bb.6104.176,18daf1db,24,39,0.0625,640,2,°C,229137,629137,ff,Cell 7 Temperature 7bb.6104.200,18daf1db,24,39,0.0625,640,2,°C,229138,629138,ff,Cell 8 Temperature 7bb.6104.224,18daf1db,24,39,0.0625,640,2,°C,229139,629139,ff,Cell 9 Temperature 7bb.6104.248,18daf1db,24,39,0.0625,640,2,°C,22913a,62913a,ff,Cell 10 Temperature 7bb.6104.272,18daf1db,24,39,0.0625,640,2,°C,22913b,62913b,ff,Cell 11 Temperature 7bb.6104.296,18daf1db,24,39,0.0625,640,2,°C,22913c,62913c,ff,Cell 12 Temperature 7bb.6104.600,18daf1db,24,39,0.0625,640,2,°C,229012,629012,ff,Mean battery compartment temp 7bb.6107.16,18daf1db,16,23,1,0,0,,2107,6107,ff,Cell 1 Balancing switch 7bb.6107.24,18daf1db,24,31,1,0,0,,2107,6107,ff,Cell 2 Balancing switch 7bb.6107.32,18daf1db,32,39,1,0,0,,2107,6107,ff,Cell 3 Balancing switch 7bb.6107.40,18daf1db,40,47,1,0,0,,2107,6107,ff,Cell 4 Balancing switch 7bb.6107.48,18daf1db,48,55,1,0,0,,2107,6107,ff,Cell 5 Balancing switch 7bb.6107.56,18daf1db,56,63,1,0,0,,2107,6107,ff,Cell 6 Balancing switch 7bb.6107.64,18daf1db,64,71,1,0,0,,2107,6107,ff,Cell 7 Balancing switch 7bb.6107.72,18daf1db,72,79,1,0,0,,2107,6107,ff,Cell 8 Balancing switch 7bb.6107.80,18daf1db,80,87,1,0,0,,2107,6107,ff,Cell 9 Balancing switch 7bb.6107.88,18daf1db,88,95,1,0,0,,2107,6107,ff,Cell 10 Balancing switch 7bb.6107.96,18daf1db,96,102,1,0,0,,2107,6107,ff,Cell 11 Balancing switch 7bb.6107.104,18daf1db,104,111,1,0,0,,2107,6107,ff,Cell 12 Balancing switch 7bb.6141.16,18daf1db,24,39,0.000976563,0,3,V,229021,629021,ff,Cell 01 V 7bb.6141.32,18daf1db,24,39,0.000976563,0,3,V,229022,629022,ff,Cell 02 V 7bb.6141.48,18daf1db,24,39,0.000976563,0,3,V,229023,629023,ff,Cell 03 V 7bb.6141.64,18daf1db,24,39,0.000976563,0,3,V,229024,629024,ff,Cell 04 V 7bb.6141.80,18daf1db,24,39,0.000976563,0,3,V,229025,629025,ff,Cell 05 V 7bb.6141.96,18daf1db,24,39,0.000976563,0,3,V,229026,629026,ff,Cell 06 V 7bb.6141.112,18daf1db,24,39,0.000976563,0,3,V,229027,629027,ff,Cell 07 V 7bb.6141.128,18daf1db,24,39,0.000976563,0,3,V,229028,629028,ff,Cell 08 V 7bb.6141.144,18daf1db,24,39,0.000976563,0,3,V,229029,629029,ff,Cell 09 V 7bb.6141.160,18daf1db,24,39,0.000976563,0,3,V,22902a,62902a,ff,Cell 10 V 7bb.6141.176,18daf1db,24,39,0.000976563,0,3,V,22902b,62902b,ff,Cell 11 V 7bb.6141.192,18daf1db,24,39,0.000976563,0,3,V,22902c,62902c,ff,Cell 12 V 7bb.6141.208,18daf1db,24,39,0.000976563,0,3,V,22902d,62902d,ff,Cell 13 V 7bb.6141.224,18daf1db,24,39,0.000976563,0,3,V,22902e,62902e,ff,Cell 14 V 7bb.6141.240,18daf1db,24,39,0.000976563,0,3,V,22902f,62902f,ff,Cell 15 V 7bb.6141.256,18daf1db,24,39,0.000976563,0,3,V,229030,629030,ff,Cell 16 V 7bb.6141.272,18daf1db,24,39,0.000976563,0,3,V,229031,629031,ff,Cell 17 V 7bb.6141.288,18daf1db,24,39,0.000976563,0,3,V,229032,629032,ff,Cell 18 V 7bb.6141.304,18daf1db,24,39,0.000976563,0,3,V,229033,629033,ff,Cell 19 V 7bb.6141.320,18daf1db,24,39,0.000976563,0,3,V,229034,629034,ff,Cell 20 V 7bb.6141.336,18daf1db,24,39,0.000976563,0,3,V,229035,629035,ff,Cell 21 V 7bb.6141.352,18daf1db,24,39,0.000976563,0,3,V,229036,629036,ff,Cell 22 V 7bb.6141.368,18daf1db,24,39,0.000976563,0,3,V,229037,629037,ff,Cell 23 V 7bb.6141.384,18daf1db,24,39,0.000976563,0,3,V,229038,629038,ff,Cell 24 V 7bb.6141.400,18daf1db,24,39,0.000976563,0,3,V,229039,629039,ff,Cell 25 V 7bb.6141.416,18daf1db,24,39,0.000976563,0,3,V,22903a,62903a,ff,Cell 26 V 7bb.6141.432,18daf1db,24,39,0.000976563,0,3,V,22903b,62903b,ff,Cell 27 V 7bb.6141.448,18daf1db,24,39,0.000976563,0,3,V,22903c,62903c,ff,Cell 28 V 7bb.6141.464,18daf1db,24,39,0.000976563,0,3,V,22903d,62903d,ff,Cell 29 V 7bb.6141.480,18daf1db,24,39,0.000976563,0,3,V,22903e,62903e,ff,Cell 30 V 7bb.6141.496,18daf1db,24,39,0.000976563,0,3,V,22903f,62903f,ff,Cell 31 V 7bb.6141.512,18daf1db,24,39,0.000976563,0,3,V,229041,629041,ff,Cell 32 V 7bb.6141.528,18daf1db,24,39,0.000976563,0,3,V,229042,629042,ff,Cell 33 V 7bb.6141.544,18daf1db,24,39,0.000976563,0,3,V,229043,629043,ff,Cell 34 V 7bb.6141.560,18daf1db,24,39,0.000976563,0,3,V,229044,629044,ff,Cell 35 V 7bb.6141.576,18daf1db,24,39,0.000976563,0,3,V,229045,629045,ff,Cell 36 V 7bb.6141.592,18daf1db,24,39,0.000976563,0,3,V,229046,629046,ff,Cell 37 V 7bb.6141.608,18daf1db,24,39,0.000976563,0,3,V,229047,629047,ff,Cell 38 V 7bb.6141.624,18daf1db,24,39,0.000976563,0,3,V,229048,629048,ff,Cell 39 V 7bb.6141.640,18daf1db,24,39,0.000976563,0,3,V,229049,629049,ff,Cell 40 V 7bb.6141.656,18daf1db,24,39,0.000976563,0,3,V,22904a,62904a,ff,Cell 41 V 7bb.6141.672,18daf1db,24,39,0.000976563,0,3,V,22904b,62904b,ff,Cell 42 V 7bb.6141.688,18daf1db,24,39,0.000976563,0,3,V,22904c,62904c,ff,Cell 43 V 7bb.6141.704,18daf1db,24,39,0.000976563,0,3,V,22904d,62904d,ff,Cell 44 V 7bb.6141.720,18daf1db,24,39,0.000976563,0,3,V,22904e,62904e,ff,Cell 45 V 7bb.6141.736,18daf1db,24,39,0.000976563,0,3,V,22904f,62904f,ff,Cell 46 V 7bb.6141.752,18daf1db,24,39,0.000976563,0,3,V,229050,629050,ff,Cell 47 V 7bb.6141.768,18daf1db,24,39,0.000976563,0,3,V,229051,629051,ff,Cell 48 V 7bb.6141.784,18daf1db,24,39,0.000976563,0,3,V,229052,629052,ff,Cell 49 V 7bb.6141.800,18daf1db,24,39,0.000976563,0,3,V,229053,629053,ff,Cell 50 V 7bb.6141.816,18daf1db,24,39,0.000976563,0,3,V,229054,629054,ff,Cell 51 V 7bb.6141.832,18daf1db,24,39,0.000976563,0,3,V,229055,629055,ff,Cell 52 V 7bb.6141.848,18daf1db,24,39,0.000976563,0,3,V,229056,629056,ff,Cell 53 V 7bb.6141.864,18daf1db,24,39,0.000976563,0,3,V,229057,629057,ff,Cell 54 V 7bb.6141.880,18daf1db,24,39,0.000976563,0,3,V,229058,629058,ff,Cell 55 V 7bb.6141.896,18daf1db,24,39,0.000976563,0,3,V,229059,629059,ff,Cell 56 V 7bb.6141.912,18daf1db,24,39,0.000976563,0,3,V,22905a,62905a,ff,Cell 57 V 7bb.6141.928,18daf1db,24,39,0.000976563,0,3,V,22905b,62905b,ff,Cell 58 V 7bb.6141.944,18daf1db,24,39,0.000976563,0,3,V,22905c,62905c,ff,Cell 59 V 7bb.6141.960,18daf1db,24,39,0.000976563,0,3,V,22905d,62905d,ff,Cell 60 V 7bb.6141.976,18daf1db,24,39,0.000976563,0,3,V,22905e,62905e,ff,Cell 61 V 7bb.6141.992,18daf1db,24,39,0.000976563,0,3,V,22905f,62905f,ff,Cell 62 V 7bb.6142.16,18daf1db,24,39,0.000976563,0,3,V,229061,629061,ff,Cell 63 V 7bb.6142.32,18daf1db,24,39,0.000976563,0,3,V,229062,629062,ff,Cell 64 V 7bb.6142.48,18daf1db,24,39,0.000976563,0,3,V,229063,629063,ff,Cell 65 V 7bb.6142.64,18daf1db,24,39,0.000976563,0,3,V,229064,629064,ff,Cell 66 V 7bb.6142.80,18daf1db,24,39,0.000976563,0,3,V,229065,629065,ff,Cell 67 V 7bb.6142.96,18daf1db,24,39,0.000976563,0,3,V,229066,629066,ff,Cell 68 V 7bb.6142.112,18daf1db,24,39,0.000976563,0,3,V,229067,629067,ff,Cell 69 V 7bb.6142.128,18daf1db,24,39,0.000976563,0,3,V,229068,629068,ff,Cell 70 V 7bb.6142.144,18daf1db,24,39,0.000976563,0,3,V,229069,629069,ff,Cell 71 V 7bb.6142.160,18daf1db,24,39,0.000976563,0,3,V,22906a,62906a,ff,Cell 72 V 7bb.6142.176,18daf1db,24,39,0.000976563,0,3,V,22906b,62906b,ff,Cell 73 V 7bb.6142.192,18daf1db,24,39,0.000976563,0,3,V,22906c,62906c,ff,Cell 74 V 7bb.6142.208,18daf1db,24,39,0.000976563,0,3,V,22906d,62906d,ff,Cell 75 V 7bb.6142.224,18daf1db,24,39,0.000976563,0,3,V,22906e,62906e,ff,Cell 76 V 7bb.6142.240,18daf1db,24,39,0.000976563,0,3,V,22906f,62906f,ff,Cell 77 V 7bb.6142.256,18daf1db,24,39,0.000976563,0,3,V,229070,629070,ff,Cell 78 V 7bb.6142.272,18daf1db,24,39,0.000976563,0,3,V,229071,629071,ff,Cell 79 V 7bb.6142.288,18daf1db,24,39,0.000976563,0,3,V,229072,629072,ff,Cell 80 V 7bb.6142.304,18daf1db,24,39,0.000976563,0,3,V,229073,629073,ff,Cell 81 V 7bb.6142.320,18daf1db,24,39,0.000976563,0,3,V,229074,629074,ff,Cell 82 V 7bb.6142.336,18daf1db,24,39,0.000976563,0,3,V,229075,629075,ff,Cell 83 V 7bb.6142.352,18daf1db,24,39,0.000976563,0,3,V,229076,629076,ff,Cell 84 V 7bb.6142.368,18daf1db,24,39,0.000976563,0,3,V,229077,629077,ff,Cell 85 V 7bb.6142.384,18daf1db,24,39,0.000976563,0,3,V,229078,629078,ff,Cell 86 V 7bb.6142.400,18daf1db,24,39,0.000976563,0,3,V,229079,629079,ff,Cell 87 V 7bb.6142.416,18daf1db,24,39,0.000976563,0,3,V,22907a,62907a,ff,Cell 88 V 7bb.6142.432,18daf1db,24,39,0.000976563,0,3,V,22907b,62907b,ff,Cell 89 V 7bb.6142.448,18daf1db,24,39,0.000976563,0,3,V,22907c,62907c,ff,Cell 90 V 7bb.6142.464,18daf1db,24,39,0.000976563,0,3,V,22907d,62907d,ff,Cell 91 V 7bb.6142.480,18daf1db,24,39,0.000976563,0,3,V,22907e,62907e,ff,Cell 92 V 7bb.6142.496,18daf1db,24,39,0.000976563,0,3,V,22907f,62907f,ff,Cell 93 V 7bb.6142.512,18daf1db,24,39,0.000976563,0,3,V,229081,629081,ff,Cell 94 V 7bb.6142.528,18daf1db,24,39,0.000976563,0,3,V,229082,629082,ff,Cell 95 V 7bb.6142.544,18daf1db,24,39,0.000976563,0,3,V,229083,629083,ff,Cell 96 V 7bb.6161.96,18daf1db,96,119,1,0,0,km,999999,999999,ff,Battery mileage in km # 7bb.6161.96,18DAF1DB,24,55,.03125,-2147483648,2,km,2291CF,6291CF,1ff,Battery mileage(Zxx_dist_pack_mem) # 7bb.6161.96,18DAF1DB,24,55,.03125,-2147483648,2,km,2291CF,6291CF,ff,Battery mileage(Zxx_dist_pack_mem) 7bb.6161.120,18DAF1DB,24,55,.001,0,3,kWh,229243,629243,1ff,Cumulated energy in charge ,18DAF1DB,24,55,.001,0,3,,229247,629247,1ff,Cumulated energy in regen : CD mode(Zxx_kwh_rgn_cd) # 7bb.6162.16,18daf1db,16,47,1,0,0,,2162,6162,ff,21_62_03_Serial_Number (FIN) 7bb.6162.16,763,24,159,1,0,0,,22F190,62F190,2ff,VIN 7bb.6166.48,18DAF1DB,24,39,1,0,0,,229210,629210,ff,Overall number of complete charge(Zxx_full_chg_ctr) 7bb.6166.64,18DAF1DB,24,39,1,0,0,,229215,629215,ff,Overall number of partial charge(Zxx_partial_chg_ctr) # UBP xxxxxxx --> E-ACT-EBA #,7bc,56,63,1,0,0,,2180,6180,ff,diagVersion #,7bc,64,87,1,0,0,,2180,6180,2ff,Supplier (string!) #,7bc,128,143,1,0,0,,2180,6180,ff,Soft #,7bc,144,159,1,0,0,,2180,6180,ff,Version #,7bc,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC #,7bc,0,23,1,0,0,,19023b,5902ff,ff,Query DTC 7bc.624b7d.28,18daf1e2,28,39,1,4094,0,N·m,999999,999999,ff,Total Hydraulic brake wheels torque request # TCU - DCM Renault # ,7da,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7da,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7da,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7da,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7da,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC ,7da,0,23,1,0,0,,19023b,5902ff,ff,Query DTC # S-GW3 # ,18daf1d2,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,18daf1d2,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,18daf1d2,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,18daf1d2,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,18daf1d2,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC ,18daf1d2,0,23,1,0,0,,19023b,5902ff,ff,Query DTC ,18daf1d2,0,23,1,0,0,,1003,5003,ff,StartDiagnosticSession.Extended ,18daf1d2,0,7,1,0,0,,3E00,7E00,ff,TesterPresent.WithResponse # EVC # 7ec.6180.64,18DAF1DA,24,223,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier 7ec.6180.128,18DAF1DA,24,55,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber 7ec.6180.144,18DAF1DA,24,55,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber 7ec.6180.56,18DAF1DA,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion 7ec.54.0,18daf1da,0,7,1,0,0,,14FFFFFF,54FFFFFF,ff,Reset DTC 7ec.5902ff.0,18daf1da,0,23,1,0,0,,19023b,5902ff,ff,Query DTC 7ec.5003.0,18daf1da,0,23,1,0,0,,10c0,50c0,ff,StartDiagnosticSession.Extended 7ec.5001.0,18daf1da,0,23,1,0,0,,1001,5001,ff,StartDiagnosticSession 7ec.5003.0,18daf1da,0,23,1,0,0,,1003,5003,ff,StartDiagnosticSession # 7ec.622002.24,18daf1da,24,39,.02,0,2,%,222002,622002,ff,State Of Charge (SOC) HV battery 7ec.622005.24,18daf1da,24,39,.01,0,2,V,222005,622005,ff,Battery voltage 14v 7ec.622006.24,18daf1da,24,47,1,0,0,km,222006,622006,ff,Total vehicle distance 7ec.62202e.24,18daf1da,24,39,.00125,0,0,-,22202E,62202E,ff,Accelerator pedal position 7ec.622243.24,18daf1da,24,39,.03125,32768,2,N.m,222243,622243,1ff,Final effective torque request to the electric motor (EM) 7ec.622245.24,18daf1da,24,39,.03125,32768,2,N.m,222245,622245,ff,Limited electrical motor (EM) effective torque setpoint 7ec.622246.24,18daf1da,24,39,.03125,32768,2,N.m,222246,622246,ff,Electrical motor (EM) maximum effective torque available 7ec.622247.24,18daf1da,24,39,.03125,32768,2,N.m,222247,622247,ff,Minimum effective torque that can be requested to the electrical motor (EM) # 7ec.623028.24,18daf1da,24,31,.390625,0,1,%,223028,623028,ff,DCDC Load 7ec.623028.24,18DAF1DA,24,31,.392156863,0,1,%,2229FA,6229FA,ff,DCDC load #7ec.623203.24,18daf1da,24,39,.5,0,1,V,223203,623203,ff,HV LBC voltage measure #7ec.623204.24,18daf1da,24,39,.25,32768,1,A,223204,623204,ff,HV LBC current measure 7ec.623204.24,18daf1da,24,39,.25,2000,1,A,2221cc,6221cc,ff,High voltage battery Current measured consolidated # 7ec.623206.24,18daf1da,24,31,1,0,0,%,223206,623206,ff,State Of Health (SOH) HV battery 7ec.623318.24,18daf1da,24,31,1,1,0,,223318,623318,ff,Motor Water pump speed 7ec.623319.24,18daf1da,24,31,1,1,0,,223319,623319,ff,Charger pump speed 7ec.62331a.24,18daf1da,24,31,1,1,0,,22331a,62331a,ff,Heater water pump speed #,18daf1da,24,47,0.001,1,0,kWh,2233dc,6233dc,ff,Consumed domestic energy 7ec.6233d4.240,18daf1da,240,263,1,0,0,km,223085,623085,ff,odometer history 1 7ec.6233d4.216,18daf1da,216,239,1,0,0,km,223085,623085,ff,odometer history 2 7ec.6233d4.192,18daf1da,192,215,1,0,0,km,223085,623085,ff,odometer history 3 7ec.6233d4.168,18daf1da,168,191,1,0,0,km,223085,623085,ff,odometer history 4 7ec.6233d4.144,18daf1da,144,167,1,0,0,km,223085,623085,ff,odometer history 5 7ec.6233d4.120,18daf1da,120,143,1,0,0,km,223085,623085,ff,odometer history 6 7ec.6233d4.96,18daf1da,96,119,1,0,0,km,223085,623085,ff,odometer history 7 7ec.6233d4.72,18daf1da,72,95,1,0,0,km,223085,623085,ff,odometer history 8 7ec.6233d4.48,18daf1da,48,71,1,0,0,km,223085,623085,ff,odometer history 9 7ec.6233d4.24,18daf1da,24,47,1,0,0,km,223085,623085,ff,odometer history 10 7ec.6233d5.96,18daf1da,96,103,1,0,0,,2233d5,6233d5,ff,end 1,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 7ec.6233d5.88,18daf1da,88,95,1,0,0,,2233d5,6233d5,ff,end 2,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 7ec.6233d5.80,18daf1da,80,87,1,0,0,,2233d5,6233d5,ff,end 3,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 7ec.6233d5.72,18daf1da,72,79,1,0,0,,2233d5,6233d5,ff,end 4,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 7ec.6233d5.64,18daf1da,64,71,1,0,0,,2233d5,6233d5,ff,end 5,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 7ec.6233d5.56,18daf1da,56,63,1,0,0,,2233d5,6233d5,ff,end 6,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 7ec.6233d5.48,18daf1da,48,55,1,0,0,,2233d5,6233d5,ff,end 7,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 7ec.6233d5.40,18daf1da,40,47,1,0,0,,2233d5,6233d5,ff,end 8,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 7ec.6233d5.32,18daf1da,32,39,1,0,0,,2233d5,6233d5,ff,end 9,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 7ec.6233d5.24,18daf1da,24,31,1,0,0,,2233d5,6233d5,ff,end 10,0:Full;1:Unpl;2:Cut ch;3:Fail;4:Sched;5:Flt1;6:Flt2;7:Flt3;8:Flt4;9:Flt5;10:Flt6 7ec.6233d6.96,18daf1da,46,47,1,0,0,,223084,623084,ff,type 1,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched 7ec.6233d6.88,18daf1da,44,45,1,0,0,,223084,623084,ff,type 2,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched 7ec.6233d6.80,18daf1da,42,43,1,0,0,,223084,623084,ff,type 3,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched 7ec.6233d6.72,18daf1da,40,41,1,0,0,,223084,623084,ff,type 4,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched 7ec.6233d6.64,18daf1da,38,39,1,0,0,,223084,623084,ff,type 5,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched 7ec.6233d6.56,18daf1da,36,37,1,0,0,,223084,623084,ff,type 6,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched 7ec.6233d6.48,18daf1da,34,35,1,0,0,,223084,623084,ff,type 7,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched 7ec.6233d6.40,18daf1da,32,33,1,0,0,,223084,623084,ff,type 8,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched 7ec.6233d6.32,18daf1da,30,31,1,0,0,,223084,623084,ff,type 9,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched 7ec.6233d6.24,18daf1da,28,29,1,0,0,,223084,623084,ff,type 10,0:Slow;1:Quick;2:Drop;3:Unknw;4:Sched 7ec.6233d7.168,18daf1da,168,183,.02,0,1,%,223150,623150,ff,soc 1 7ec.6233d7.152,18daf1da,152,167,.02,0,1,%,223150,623150,ff,soc 2 7ec.6233d7.136,18daf1da,136,151,.02,0,1,%,223150,623150,ff,soc 3 7ec.6233d7.120,18daf1da,120,135,.02,0,1,%,223150,623150,ff,soc 4 7ec.6233d7.104,18daf1da,104,119,.02,0,1,%,223150,623150,ff,soc 5 7ec.6233d7.88,18daf1da,88,103,.02,0,1,%,223150,623150,ff,soc 6 7ec.6233d7.72,18daf1da,72,87,.02,0,1,%,223150,623150,ff,soc 7 7ec.6233d7.56,18daf1da,56,71,.02,0,1,%,223150,623150,ff,soc 8 7ec.6233d7.40,18daf1da,40,55,.02,0,1,%,223150,623150,ff,soc 9 7ec.6233d7.24,18daf1da,24,39,.02,0,1,%,223150,623150,ff,soc 10 7ec.6233d8.96,18daf1da,96,103,1,40,0,°C,223082,623082,ff,temp 1 7ec.6233d8.88,18daf1da,88,95,1,40,0,°C,223082,623082,ff,temp 2 7ec.6233d8.80,18daf1da,80,87,1,40,0,°C,223082,623082,ff,temp 3 7ec.6233d8.72,18daf1da,72,79,1,40,0,°C,223082,623082,ff,temp 4 7ec.6233d8.64,18daf1da,64,71,1,40,0,°C,223082,623082,ff,temp 5 7ec.6233d8.56,18daf1da,56,63,1,40,0,°C,223082,623082,ff,temp 6 7ec.6233d8.48,18daf1da,48,55,1,40,0,°C,223082,623082,ff,temp 7 7ec.6233d8.40,18daf1da,40,47,1,40,0,°C,223082,623082,ff,temp 8 7ec.6233d8.32,18daf1da,32,39,1,40,0,°C,223082,623082,ff,temp 9 7ec.6233d8.24,18daf1da,24,31,1,40,0,°C,223082,623082,ff,temp 10 7ec.6233d9.168,18daf1da,168,183,1,0,0,min,223086,623086,ff,duration 1 7ec.6233d9.152,18daf1da,152,167,1,0,0,min,223086,623086,ff,duration 2 7ec.6233d9.136,18daf1da,136,151,1,0,0,min,223086,623086,ff,duration 3 7ec.6233d9.120,18daf1da,120,135,1,0,0,min,223086,623086,ff,duration 4 7ec.6233d9.104,18daf1da,104,119,1,0,0,min,223086,623086,ff,duration 5 7ec.6233d9.88,18daf1da,88,103,1,0,0,min,223086,623086,ff,duration 6 7ec.6233d9.72,18daf1da,72,87,1,0,0,min,223086,623086,ff,duration 7 7ec.6233d9.56,18daf1da,56,71,1,0,0,min,223086,623086,ff,duration 8 7ec.6233d9.40,18daf1da,40,55,1,0,0,min,223086,623086,ff,duration 9 7ec.6233d9.24,18daf1da,24,39,1,0,0,min,223086,623086,ff,duration 10 7ec.6233de.24,18daf1da,24,55,0.0001,0,2,km,2233de,6233de,ff,Trip distance 7ec.623451.24,18daf1da,24,39,1,0,0,km,223451,623451,ff,Estimated kilometric cruising range sent to MMI 7ec.623455.24,18daf1da,24,39,.001953125,0,3,kW,223455,623455,ff,Mean eco electrical consumption (if driver has economical driving behavior) 7ec.623457.24,18daf1da,24,39,.001953125,0,3,kW,223457,623457,ff,Mean pessimistic electrical consumption (worst possible consumption) 7ec.6233dd.24,18daf1da,24,47,0.001,0,0,kwh,2233dd,6233dd,ff,Trip energy consumed 7ec.6233de.24,18daf1da,24,55,0.0001,0,0,km,2233de,6233de,ff,Trip distance 7ec.623484.24,18daf1da,24,39,1,32767,0,A,999999,999999,ff,Current measurement given by BCS Battery Current Sensor 7ec.6234.84.24,18daf1da,24,39,.001,0,0,V,999999,999999,ff,Voltage measurement given by BCS Battery Current Sensor ,18DAF1DA,24,39,50,0,0,W,223006,623006,ff,ComboEVSEMaximumPowerLimit ,18DAF1DA,24,39,.1,0,1,V,223008,623008,ff,ComboEVSEMaximumVoltageLimit ,18DAF1DA,24,39,.1,0,1,A,22300A,62300A,ff,ComboEVSEMaximumCurrentLimit 793.625026.24,18DAF1DA,24,31,.5,0,1,%,223088,623088,ff,J1772 control pilot raw duty cycle 764.6143.88,18DAF1DA,24,39,1,0,0,W,222B79,622B79,ff,thermal comfort power consumption # 7ec.6234.84.24,76D,24,39,.001,0,3,,2260B3,6260B3,ff,S_U_Prim_Storage_NoLoad # E-ACT-EBA # ,18DAF1E2,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,18DAF1E2,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,18DAF1E2,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,18DAF1E2,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion # IDM # ,700,24,55,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,700,24,79,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,700,24,39,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,700,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion # AAU # ,7A2,24,47,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7A2,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7A2,24,167,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7A2,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion # APB # ,775,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,775,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,775,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,775,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion # FCAM # ,7dd,24,47,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7dd,24,79,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7dd,24,151,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7dd,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion # HFM # ,7b9,24,111,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7b9,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7b9,24,279,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7b9,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion # FRRAD # ,735,24,47,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,735,24,87,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,735,24,87,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,735,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion # MIU # ,734,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,734,24,279,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,734,24,79,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,734,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion # Navigation-UCC-ITM # ,767,24,63,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,767,24,199,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,767,24,111,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,767,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion # PLC-PLGW # ,7C8,24,535,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7C8,24,103,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7C8,24,159,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7C8,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ,7C8,28,31,1,0,0,,220326,620326,ff,Combo_EVchargeHLCRequest,0:No HLC Request [inital value];1:Communication&service setting request;2:Charge parameter Discovery request;3:Cable Check request;4:Precharge request;5:Power delivery request;6:Current demand request;7:Metering receipt request;8:Welding detection request;9:Session stop request;10:Matching Reset;11:Charging Status request;12:AC BPT;13:DC BPT ,7C8,28,31,1,0,0,,220327,620327,ff,Combo_EVErrorCode,0:NO_ERROR [initial value];1:FAILED_RESSTemperatureInhibit;2:FAILED_EVShiftPosition;3:FAILED_ChargerConnectorLockFault;4:FAILED_EVRESSMalfunction;5:FAILED_ChargingCurrentdifferential;6:FAILED_ChargingVoltageOutOfRange;7:Reserved_A;8:Reserved_B;9:Reserved_C;10:FAILED_ChargingSystemIncompatibility;11:NoData;12:not used;15:Unavailable Value ,7C8,24,35,1.6,0,1,A,220328,620328,ff,Combo_EVMaximumCurrentLimit ,7C8,31,31,1,0,0,,220329,620329,ff,Combo_EVReady,0:EV isn't ready to charge [initial value];1:EV is ready to charge ,7C8,24,37,.4,0,1,V,22032A,62032A,ff,Combo_EVMaximumVoltageLimit ,7C8,28,31,1,0,0,,22032C,62032C,ff,Combo_EVSEchargeHLCState,0:No HLC communication is established [initial value];1:Communication&service setting is established;2:ChargeparameterDiscovery res;3:CableCheck response;4:Precharge response;5:Power delivery response;6:Current demand response;7:Metering receipt response;8:Welding detection response;9:Session stop response with EVSE(station charging);10:Charging Status response ,7C8,31,31,1,0,0,,22032D,62032D,ff,Combo_EVSECurrentLimitAchieved,0:EVSE hasn't reached its current limit [initial value];1:EVSE has reached its current limit ,7C8,24,35,800,0,0,W,22032E,62032E,ff,Combo_EVSEMaximumPowerLimit ,7C8,24,37,.4,0,1,V,22032F,62032F,ff,Combo_EVSEMaximumVoltageLimit ,7C8,24,35,1.6,0,1,A,220331,620331,ff,Combo_EVSEMaximumCurrentLimit ,7C8,31,31,1,0,0,,220334,620334,ff,Combo_EVSEPowerLimitAchieved,0:EVSE hasn't reached its power limit [initial value];1:EVSE has reached its power limit ,7C8,24,35,1.6,0,1,A,220335,620335,ff,Combo_EVSEPresentCurrent ,7C8,24,37,.4,0,1,V,220336,620336,ff,Combo_EVSEPresentVoltage ,7C8,31,31,1,0,0,,220337,620337,ff,Combo_EVSEVoltageLimitAchieved,0:the EVSE hasn't reached its voltage limit;1:the EVSE has reached its voltage limit ,7C8,29,31,1,0,0,,220338,620338,ff,CPLC_ChargeProgress,0:Stop;1:Start;2:Renegociate;3:Not used;7:Unavailable Value [initial value] ,7C8,29,31,1,0,0,,220339,620339,ff,CPLC_ChargingSession,0:No state [Initial Value];1:terminate the V2G Communication Session;2:pause the V2G Communication Session;3:reset the V2G Communication Session;4:emergency stop the V2G Communication Session;5:Not used ,7C8,28,31,1,0,0,,22033A,62033A,ff,CPLC_CommunicationStatus,0:No HLC communication is established;1:HLC communication is initializing;2:HLC communication is ready - secured mode;3:HLC communication is stopped;4:HLC communication error;5:HLC Communication is ready - not secured mode;6:Not used;7:Unavailable Value[initial value];8:HLC Communication is not ready- TLS setup failed;9:HLC Communication is not ready- TLS timeout;10:HLC Communication is not ready- TLS not supported;11:HLC Communication is not ready- SDP timeout;12:HLC Communication is not ready- not supported ISO-2 version;13:HLC Communication is not ready- V2G setup timeout;14:HLC Communication is not ready- V2G failed ,7C8,24,31,1,0,0,,22033B,62033B,ff,Failure_Status,0:Ok;1:OK_CertificateExpiresSoon;2:FAILED_CertificateExpired;3:FAILED_ContractCanceled;4:FAILED_CertificateRevoked;5:FAILED_CertificateNotAllowedAtThisEVSE;6:FAILED_NoCertificate Available;8:FAILED_WrongEnergyTransferMode;9:FAILED_WrongChargeParameter;10:FAILED_ChargingProfileInvalid;11:FAILED_ServiceIDInvalid;12:FAILED_UnknownSession;13:FAILED_ServiceSelectionInvalid;14:FAILED_TariffSelectionInvalid;15:FAILED_PaymentSelectionInvalid;16:FAILED_CertChainError;17:FAILED_ChallengeInvalid;18:FAILED_MeteringSignatureNotValid;19:FAILED_NoChargeServiceSelected;20:FAILED_SequenceError;21:FAILED_SignatureError;22:FAILED_NoCertificateAvailable;23:FAILED_PowerDeliveryNotApplied;24:FAILED;25:FAILED_ContactorError ,7C8,24,31,1,0,0,,22033C,62033C,ff,EVSE_Status,0:Ok;1:EVSEnotReady;2:EVSEShutdown;3:EVSE_UtilityInterruptEvent;4:EVSE_IsolationMonitoringActive;5:EVSE_EmergencyShutdown;6:EVSE_Malfunction;7:Reserved 8-C;8:Renegotiate ,7C8,29,31,1,0,0,,22033D,62033D,ff,CPLC_RequestedEnergyTransferMode,0:No request [initial value];1:AC_single_phase_core;2:AC_three_phase_core;3:DC_core;4:DC_combo_core;5:DC_unique;6:DC_extended;7:not used ,7C8,30,31,1,0,0,,22033E,62033E,ff,Combo_DCExtendedConnectStatus,0:Unavailable[initial value];1:DC extended not detected;2:DC extended detected;3:not used # VSP # ,761,56,63,1,0,0,,2180,6180,ff,diagVersion ,761,64,87,1,0,0,,2180,6180,2ff,Supplier (string) ,761,128,143,1,0,0,,2180,6180,ff,Soft ,761,144,159,1,0,0,,2180,6180,ff,Version # WCGS # ,7ad,24,95,1,0,0,,22F18A,62F18A,2ff,systemSupplierIdentifier ,7ad,24,79,1,0,0,,22F194,62F194,2ff,systemSupplierECUSoftwareNumber ,7ad,24,143,1,0,0,,22F195,62F195,2ff,systemSupplierECUSoftwareVersionNumber ,7ad,24,31,1,0,0,,22F1A0,62F1A0,ff,diagnosticVersion ================================================ FILE: app/src/main/assets/ZOE_Ph2/_Frames.csv ================================================ #Frame ID,interval ZOE, interval FLUKAN, Sending ECU # For ZE50, we do not use free frames anymore # The container frames for ISOTP, in essence just one frame per ECU # 11 bit systems 700,100,100,IDM 734,100,100,MIU 735,100,100,FRRAD 761,100,100,VSP 762,100,100,EPS 763,100,100,TDB 764,100,100,HVAC 765,100,100,UCH 767,100,100,Navigation-UCC-ITM 76d,100,100,USM 76e,100,100,Parking-Sonar 772,100,100,AIRBAG-SRS 775,100,100,APB 7b9,100,100,HFM 7a2,100,100,AAU 7ad,100,100,WCGS 7c8,100,100,PLC-PLGW 7da,100,100,DCM 7dd,100,100,FCAM # 0x800 - 0x8ff is reserved for CanZE's virtuals 800,100,100,VFC # 29 bit systems 18daf12d,100,100,ABS-VDC 18daf1de,100,100,BCB-OBC 18daf1e2,100,100,E-ACT-EBA 18daf1df,100,100,INV-ME 18daf1db,100,100,LBC 18daf1dc,100,100,LBC2 18daf1d2,100,100,S-GW3 18daf1da,100,100,EVC-HCM-VCM ================================================ FILE: app/src/main/java/lu/fisch/awt/Color.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.awt; import android.content.res.Resources; import android.util.TypedValue; import java.lang.reflect.Field; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.classes.Crashlytics; public class Color { private int alpha = 0xff; private int red = 0; private int green = 0; private int blue = 0; public static final Color WHITE = new Color(255, 255, 255); public static final Color BLACK = new Color(0, 0, 0); public static final Color RED = new Color(255, 0, 0); public static final Color GREEN = new Color(0, 255, 0); public static final Color GREEN_DARK = new Color(0, 128, 0); public static final Color BLUE = new Color(0, 0, 255); public static final Color GRAY = new Color(138, 138, 138); public static final Color GRAY_LIGHT = new Color(204, 204, 204); public static final Color GRAY_DARK = new Color(80, 80, 80); public static final Color YELLOW = new Color(255, 255, 128); public static final Color RENAULT_RED = new Color(250, 36, 4); public static final Color RENAULT_BLUE = new Color(11, 198, 209); public static final Color RENAULT_GREEN = new Color(133, 196, 26); public static final Color RENAULT_YELLOW = new Color(251, 207, 0); public Color() { } public Color(int red, int green, int blue) { this.alpha = 0xff; this.red = red; this.green = green; this.blue = blue; } public Color(int alpha, int red, int green, int blue) { this.alpha = alpha; this.red = red; this.green = green; this.blue = blue; } public int getAndroidColor() { return android.graphics.Color.argb(alpha, red, green, blue); } public static Color decode(String nm) throws NumberFormatException { try { long i; if (nm.startsWith("@")) { // get the id of the color defined in colors.xml. These are static and can be obtained from the Resources int id = MainActivity.getInstance().getResources().getIdentifier(nm, "color", MainActivity.getInstance().getPackageName()); // obtain the string assocated with that id and decode it's value i = Long.decode(MainActivity.getStringSingle(id)); } else if (nm.startsWith("?")) { // get the id of the theme based color (see getAttrId method below) int id = getAttrId(nm.substring(nm.lastIndexOf('/') + 1)); // get the value associated with that id. This is dynamic and based on the theme. // use the theme of the topmost (latest) activity as it is the only one restarted TypedValue value = new TypedValue(); Resources.Theme theme = MainActivity.getInstance().getLocalTheme(); if (theme != null) { theme.resolveAttribute(id, value, true); i = value.data; } else { return new Color(0xff, 0x0, 0xff); } } else { i = Long.decode(nm); } if (i < 0x1000000) return new Color( (int) ((i >> 16) & 0xFF), (int) ((i >> 8) & 0xFF), (int) (i & 0xFF)); return new Color( (int) ((i >> 24) & 0xFF), (int) ((i >> 16) & 0xFF), (int) ((i >> 8) & 0xFF), (int) (i & 0xFF)); } catch (NumberFormatException e) { return new Color(0xff, 0x0, 0xff); } } public int getAlpha() { return alpha; } public int getRed() { return red; } public int getGreen() { return green; } public int getBlue() { return blue; } private static int getAttrId(String resName) { // obtain the id of an attribute, using reflection. try { Field idField = android.R.attr.class.getDeclaredField(resName); return idField.getInt(idField); } catch (Exception e) { Crashlytics.logException(e); return -1; } } } ================================================ FILE: app/src/main/java/lu/fisch/awt/Graphics.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.awt; import android.graphics.Canvas; import android.graphics.LinearGradient; import android.graphics.Paint; import android.graphics.Path; import android.graphics.Point; import android.graphics.RectF; import android.graphics.Shader; import android.text.style.TextAppearanceSpan; public class Graphics { private Canvas canvas; private Color color = Color.BLACK; private Paint paint = new Paint(); private float textSize = 12; public Graphics(Canvas canvas) { this.canvas=canvas; paint.setAntiAlias(true); } public Canvas getCanvas() { return canvas; } public int getWidth() { return canvas.getWidth(); } public int getHeight() { return canvas.getHeight(); } public void fillOval(int x, int y, int width, int height) { fillOval((float) x, (float) y, (float) width, (float) height); } public void fillOval(float x, float y, float width, float height) { paint.setColor(color.getAndroidColor()); paint.setStyle(Paint.Style.FILL); RectF oval = new RectF(x,y,x+width,y+height); canvas.drawOval(oval, paint); } public void drawOval(int x, int y, int width, int height) { drawOval((float) x, (float) y, (float) width, (float) height); } public void drawOval(float x, float y, float width, float height) { paint.setColor(color.getAndroidColor()); paint.setStyle(Paint.Style.STROKE); RectF oval = new RectF(x,y,x+width,y+height); canvas.drawOval(oval, paint); } public void fillRect(int x, int y, int width, int height) { fillRect((float) x, (float) y, (float) width, (float) height); } public void fillRect(float x, float y, float width, float height) { paint.setColor(color.getAndroidColor()); paint.setStyle(Paint.Style.FILL); RectF rect = new RectF(x,y,x+width,y+height); canvas.drawRect(rect, paint); } public void drawRect(int x, int y, int width, int height) { drawRect((float) x, (float) y, (float) width, (float) height); } public void drawRect(float x, float y, float width, float height) { paint.setColor(color.getAndroidColor()); paint.setStyle(Paint.Style.STROKE); RectF rect = new RectF(x,y,x+width,y+height); canvas.drawRect(rect, paint); } public void drawRoundRect(int x, int y, int width, int height, int rx, int ry) { drawRoundRect((float) x, (float) y, (float) width, (float) height, (float) rx, (float) ry); } public void drawRoundRect(float x, float y, float width, float height, float rx, float ry) { paint.setColor(color.getAndroidColor()); paint.setStyle(Paint.Style.STROKE); RectF rect = new RectF(x,y,x+width,y+height); canvas.drawRoundRect(rect, rx, ry, paint); } public void drawLine(int x1, int y1, int x2, int y2) { drawLine((float) x1, (float) y1, (float) x2, (float) y2); } public void drawLine(float x1, float y1, float x2, float y2) { paint.setColor(color.getAndroidColor()); paint.setStyle(Paint.Style.STROKE); canvas.drawLine(x1, y1, x2, y2, paint); } public void drawString(String text, int x, int y) { drawString(text, (float) x, (float) y); } public void drawString(String text, float x, float y) { paint.setColor(color.getAndroidColor()); paint.setStyle(Paint.Style.FILL); canvas.drawText(text, x, y, paint); } public void drawString(String text, int x, int y, int size) { drawString(text, (float) x, (float) y, (float) size); } public void drawString(String text, float x, float y, float size) { paint.setColor(color.getAndroidColor()); paint.setStyle(Paint.Style.FILL); paint.setTextSize(size); canvas.drawText(text, x, y, paint); } public void setColor(Color color) { this.color=color; } public Color getColor(Color color) { return color; } public void drawPolygon(Polygon p) { paint.setColor(color.getAndroidColor()); paint.setStyle(Paint.Style.STROKE); Path path = new Path(); path.moveTo(p.get(p.size()-1).x,p.get(p.size()-1).y); for(int i=0; i. */ package lu.fisch.awt; import android.graphics.Point; import java.util.ArrayList; /** * Created by robertfisch on 15.08.2015. */ public class Polygon { private ArrayList points = new ArrayList<>(); public void addPoint(Point p) { points.add(p); } public void addPoint(int x, int y) { points.add(new Point(x,y)); } public int size() { return points.size(); } public Point get(int index) { return points.get(index); } } ================================================ FILE: app/src/main/java/lu/fisch/awt/Rectangle.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.awt; import android.graphics.Point; /** * Created by robertfisch on 14.08.2015. */ public class Rectangle { private int x, y, width, height; public Rectangle(int x, int y, int width, int height) { this.x=x; this.y=y; this.width=width; this.height=height; } public boolean contains(Point p) { return x<=p.x && p.x<=x+width && y<=p.y && p.y<=y+height; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/AllDataActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.annotation.SuppressLint; import android.content.pm.ActivityInfo; import android.content.res.Configuration; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.ProgressBar; import android.widget.Spinner; import android.widget.TextView; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Locale; import lu.fisch.canze.BuildConfig; import lu.fisch.canze.R; import lu.fisch.canze.actors.Ecu; import lu.fisch.canze.actors.Ecus; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.actors.Frame; import lu.fisch.canze.actors.Frames; import lu.fisch.canze.actors.Message; import lu.fisch.canze.actors.StoppableThread; import lu.fisch.canze.bluetooth.BluetoothManager; import static lu.fisch.canze.activities.MainActivity.debug; public class AllDataActivity extends CanzeActivity { // queries all known fields for private TextView textView; private BufferedWriter bufferedDumpWriter = null; private boolean dumpInProgress = false; private StringBuffer resultbuffer; private int bufferedLines = 0; private StoppableThread queryThread; private long ticker = 0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_alldata); textView = findViewById(R.id.textResult); ArrayAdapter arrayAdapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1); for (Ecu ecu : Ecus.getInstance().getAllEcus()) { if (ecu.getFromId() > 0 && ecu.getFromId() != 0x800 && ecu.getFromId() != 0x801 && (!BuildConfig.BRANCH.equals("master") || ( !ecu.getAliases().contains("AIRBAG") && !ecu.getAliases().contains("ESC")) )) { arrayAdapter.add(ecu.getMnemonic()); // all reachable ECU's plus the Free Fields Computer. We skip the Virtual Fields Computer for now as it requires real fields and thus frames. } } // display the list final Spinner spinnerEcu = findViewById(R.id.ecuList); spinnerEcu.setAdapter(arrayAdapter); final Button btnDiag = findViewById(R.id.allData); btnDiag.setOnClickListener(v -> { String mne = String.valueOf(spinnerEcu.getSelectedItem()); Ecu ecu = Ecus.getInstance().getByMnemonic(mne); if (ecu != null) { dogetAllData(ecu); } else { appendResult("Can't find ECU:" + mne); } }); setDoRestartQueueOnResume(false); new Thread(() -> { displayProgressSpinner(true, R.id.progressBar_cyclic); //appendResult(R.string.message_PollerStopping); if (MainActivity.device != null) { // stop the poller thread MainActivity.device.stopAndJoin(); } if (!BluetoothManager.getInstance().isConnected()) { appendResult(R.string.message_NoConnection); //} else { // appendResult(MainActivity.getStringSingle(R.string.message_Ready)); } displayProgressSpinner(false, R.id.progressBar_cyclic); }).start(); } protected void initListeners() { } private void testerKeepalive() { ticker = Calendar.getInstance().getTimeInMillis(); } private void testerKeepalive(Ecu ecu) { if (!ecu.getSessionRequired() && !MainActivity.isPh2()) return; // quit ticker if no gateway and no session if (Calendar.getInstance().getTimeInMillis() < ticker) return; // then, quit if no timeout if (MainActivity.isPh2() && MainActivity.pokeSecureGateway) { // open the gateway MainActivity.device.requestFrame(Frames.getInstance().getById(0x18daf1d2, "5003")); } //MainActivity.device.requestFrame(Frames.getInstance().getById(ecu.getFromId(), "7e01")); MainActivity.device.requestFrame(Frames.getInstance().getById(ecu.getFromId(), ecu.getStartDiag())); ticker = ticker + 3000; } private boolean testerInit(Ecu ecu) { if (!ecu.getSessionRequired()) return true; String filter = Integer.toHexString(ecu.getFromId()); // we are a testerInit appendResult(MainActivity.getStringSingle(R.string.message_StartTestSession) + " (testerInit)"); //field = Fields.getInstance().getBySID(filter + ".7e01.0"); Field field = Fields.getInstance().getBySID(filter + "." + ecu.getStartDiag() + ".0"); if (field != null) { // query the Field Message message = MainActivity.device.requestFrame(field.getFrame()); if (!message.isError()) { String backRes = message.getData(); // check the response if (backRes.toLowerCase().startsWith(ecu.getStartDiag())) { testerKeepalive(); // start the keepalive timer return true; } else { appendResult("Start Diag Session, unexpected result [" + backRes + "]"); } } else { appendResult("Start Diag Session, error result [" + message.getError() + "]"); } } else { appendResult(R.string.message_NoTestSessionField); } return false; } private void dogetAllData(final Ecu ecu) { // try to stop previous thread if (queryThread != null) { if (queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch (Exception e) { MainActivity.debug(e.getMessage()); } } } queryThread = new StoppableThread(() -> { // Stop responding to rotation freezeOrientation(); // clear the screen clearResult(); displayProgressSpinner(true, R.id.progressBar_cyclic); appendResult("Query " + ecu.getName() + " (renault ID:" + ecu.getRenaultId() + ")"); // here initialize this particular ECU diagnostics fields try { Frames.getInstance().load(ecu); Fields.getInstance().load( MainActivity.getAssetPrefix() + ecu.getMnemonic() + "_Fields.csv"); } catch (Exception e) { appendResult(R.string.message_NoEcuDefinition); // Reload the default frame & timings Frames.getInstance().load(); Fields.getInstance().load(); // Don't care about DTC's and tests return; } // re-initialize the device appendResult(R.string.message_SendingInit); // re-initialize the device if (!MainActivity.device.initDevice(1)) { appendResult(R.string.message_InitFailed); displayProgressSpinner(false, R.id.progressBar_cyclic); return; } createDump(ecu); testerInit(ecu); // for (Frame frame : Frames.getInstance().getAllFrames()) { <<< this is not thread-safe! for (int i = 0; i < Frames.getInstance().getAllFrames().size(); i++) { // see if we need to stop right now if (((StoppableThread) Thread.currentThread()).isStopped()) return; Frame frame = Frames.getInstance().get(i); if (frame.getResponseId() != null && !frame.getResponseId().startsWith("5")) { // ship dtc commands and mode controls testerKeepalive(ecu); // may need to set a keepalive/session if (frame.getContainingFrame() != null || ecu.getFromId() == 0x801) { // only use subframes and free frames // query the Frame Message message = MainActivity.device.requestFrame(frame); if (!message.isError()) { // isError is also true when a 7f is returned // process the frame by going through all the contained fields // setting their values and notifying all listeners (there should be none) message.onMessageCompleteEvent(); // output all the contained fields for (Field field : frame.getAllFields()) { appendResultBuffered(field.getDebugValue()); } } else { // for readability output all contained fields, but instead of the field value state the frame error for (Field field : frame.getAllFields()) { appendResultBuffered(field.getDebugValue(message.getError())); } if (!message.isError7f()) { // it makes no sense to re-initialize the device if a 7f is returned if (!MainActivity.device.initDevice(1)) { appendResultBuffered(MainActivity.getStringSingle(R.string.message_InitFailed)); break; } } } } } } appendResultBuffered(""); // empty buffer closeDump(); if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, R.string.message_DumpDone); displayProgressSpinner(false, R.id.progressBar_cyclic); // allow rotation again setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED); }); queryThread.start(); } // Ensure all UI updates are done on the UiThread private void clearResult() { runOnUiThread(() -> textView.setText("")); } private void appendResultBuffered (String str) { // optimize speed and avoid ANRs by reducing UI work if (dumpInProgress) log(str); if (bufferedLines-- == 0 || str.isEmpty()) { if (resultbuffer != null) { // empty buffer appendResult(resultbuffer.toString()); } resultbuffer = new StringBuffer(); bufferedLines = 100; } resultbuffer.append(str).append("\n"); } private void appendResult(String str) { if (dumpInProgress) log(str); final String localStr = str; runOnUiThread(() -> textView.append(localStr)); } private void appendResult(int strResource) { final String localStr = MainActivity.getStringSingle(strResource); appendResult(localStr); } private void log(String text) { if (!dumpInProgress) return; try { bufferedDumpWriter.append(text); bufferedDumpWriter.append(System.getProperty("line.separator")); } catch (IOException e) { e.printStackTrace(); } } private void createDump(Ecu ecu) { dumpInProgress = false; if (!MainActivity.storageIsAvailable) { debug("AllDataActivity.createDump: SDcard not available"); return; } // ensure that there is a CanZE Folder in SDcard if (!MainActivity.getInstance().isExternalStorageWritable()) { debug("AllDataActivity.createDump: SDcard not writeable"); return; } String file_path = MainActivity.getInstance().getExternalFolder(); File dir = new File(file_path); if (!dir.exists()) { if (!dir.mkdirs()) { debug("DiagDump: Can't create directory:" + file_path); return; } } debug("DiagDump: file_path:" + file_path); SimpleDateFormat sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHMS), Locale.getDefault()); String exportdataFileName = file_path + ecu.getMnemonic() + "-" + sdf.format(Calendar.getInstance().getTime()) + ".txt"; File logFile = new File(exportdataFileName); if (!logFile.exists()) { try { if (!logFile.createNewFile()) { debug("DiagDump: Can't create file:" + exportdataFileName); return; } debug("DiagDump: NewFile:" + exportdataFileName); } catch (IOException e) { e.printStackTrace(); return; } } try { //BufferedWriter for performance, true to set append to file flag bufferedDumpWriter = new BufferedWriter(new FileWriter(logFile, true)); dumpInProgress = true; if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, MainActivity.getStringSingle(R.string.format_DumpWriting), exportdataFileName); } catch (IOException e) { e.printStackTrace(); } } private void closeDump() { try { if (dumpInProgress) { bufferedDumpWriter.close(); if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Done."); } } catch (IOException e) { e.printStackTrace(); } } private void displayProgressSpinner(final boolean on, final int id) { // remove progress spinners runOnUiThread(() -> { ProgressBar pb = findViewById(id); if (pb != null) pb.setVisibility(on ? View.VISIBLE : View.GONE); }); } @SuppressLint("SourceLockedOrientationActivity") // this is done to avoid restarting the long running activity private void freezeOrientation () { int rotation = getWindowManager().getDefaultDisplay().getRotation(); switch (getResources().getConfiguration().orientation) { case Configuration.ORIENTATION_PORTRAIT: if (rotation == android.view.Surface.ROTATION_90 || rotation == android.view.Surface.ROTATION_180) { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT); } else { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); } break; case Configuration.ORIENTATION_LANDSCAPE: if (rotation == android.view.Surface.ROTATION_0 || rotation == android.view.Surface.ROTATION_90) { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); } else { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE); } break; } } @Override protected void onDestroy() { // stop the query thread if still running if (queryThread != null) if (queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch (Exception e) { MainActivity.debug(e.getMessage()); } } closeDump(); // Reload the frame & timings Frames.getInstance().load(); Fields.getInstance().load(); // restart the poller if (MainActivity.device != null) { MainActivity.device.initConnection(); // register application wide fields MainActivity.getInstance().registerApplicationFields(); } super.onDestroy(); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/AuxBattTechActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.widget.TextView; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; // If you want to monitor changes, you must add a FieldListener to the fields. // For the simple activity, the easiest way is to implement it in the actitviy itself. public class AuxBattTechActivity extends CanzeActivity implements FieldListener, DebugListener { //private final String[] charging_Status = MainActivity.getStringList(R.array.list_ChargingStatus2); private final String[] vehicle_Status = MainActivity.getStringList(MainActivity.isPh2() ? R.array.list_VehicleStatePh2 : R.array.list_VehicleState); private final String[] aux_Status = MainActivity.getStringList(R.array.list_AuxStatus); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_auxbatt); } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); addField(Sid.Aux12V, 2000); addField(Sid.Aux12A, 1000); addField(Sid.DcLoad, 1000); addField(Sid.AuxStatus, 1000); addField(Sid.VehicleState); //addField(Sid.ChargingStatusDisplay, 1000); addField(Sid.VoltageUnderLoad, 6000); addField(Sid.CurrentUnderLoad, 6000); } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String fieldId = field.getSID(); TextView tv = null; int value; // get the text field switch (fieldId) { case Sid.Aux12V: tv = findViewById(R.id.text12V); break; case Sid.Aux12A: tv = findViewById(R.id.text12A); break; case Sid.DcLoad: tv = findViewById(R.id.textDcLoad); break; case Sid.AuxStatus: tv = findViewById(R.id.textAuxStatus); value = (int) field.getValue(); if (tv != null && aux_Status != null && value >= 0 && value <= 7) tv.setText(aux_Status[value]); tv = null; break; case Sid.VehicleState: tv = findViewById(R.id.text_vehicle_state); value = (int) field.getValue(); if (tv != null && vehicle_Status != null && value >= 0 && value <= 7) tv.setText(vehicle_Status[value]); tv = null; break; //case Sid.ChargingStatusDisplay: // tv = findViewById(R.id.textChaStatus); // value = (int) field.getValue(); // if (tv != null && charging_Status != null && value >= 0 && value <= 7) // tv.setText(charging_Status[value]); // tv = null; // break; case Sid.VoltageUnderLoad: tv = findViewById(R.id.textVoltageLoad); break; case Sid.CurrentUnderLoad: tv = findViewById(R.id.textCurrentLoad); break; } // set regular new content, all exeptions handled above if (tv != null) { tv.setText(String.format(Locale.getDefault(), "%.1f", field.getValue())); } } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/BatteryActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.text.Html; import android.text.method.LinkMovementMethod; import android.view.Menu; import android.widget.TextView; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; public class BatteryActivity extends CanzeActivity implements DebugListener { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_battery); TextView textView = findViewById(R.id.link); textView.setText(Html.fromHtml(MainActivity.getStringSingle(R.string.help_QA))); textView.setMovementMethod(LinkMovementMethod.getInstance()); } protected void initListeners () { MainActivity.getInstance().setDebugListener(this); addField(Sid.BatterySerial, 60000); } /********************************/ @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { TextView tv; switch (field.getSID()) { // positive torque case Sid.BatterySerial: tv = findViewById(R.id.textBatterySerial); if (tv != null) tv.setText(String.format(Locale.getDefault(), "Serial: %X", (long)field.getValue()).replace (" 26", "F")); //tv = null; } // set regular new content, all exceptions handled above /* if (tv != null) { double val = field.getValue(); tv.setText(Double.isNaN(val) ? "" : String.format(Locale.getDefault(), "%.1f", val)); } */ } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/BrakingActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.widget.ProgressBar; import android.widget.TextView; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; public class BrakingActivity extends CanzeActivity implements FieldListener, DebugListener { private double frictionTorque = 0; private double elecBrakeTorque = 0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_braking); } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); addField(Sid.TotalPotentialResistiveWheelsTorque); addField(Sid.FrictionTorque); addField(Sid.ElecBrakeTorque); } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String fieldId = field.getSID(); TextView tv; ProgressBar pb; // get the text field switch (fieldId) { case Sid.TotalPotentialResistiveWheelsTorque: //bluebar int tprwt = - ((int) field.getValue()); pb = findViewById(R.id.MaxBreakTorque); if (pb != null) pb.setProgress(tprwt < 2047 ? tprwt : 20); break; case Sid.FrictionTorque: frictionTorque = field.getValue(); pb = findViewById(R.id.pb_diff_friction_torque); pb.setProgress((int) frictionTorque); tv = findViewById(R.id.text_diff_friction_torque); if (tv != null) tv.setText(String.format(Locale.getDefault(), "%.0f" + MainActivity.getStringSingle(R.string.unit_Nm), frictionTorque)); pb = findViewById(R.id.pb_driver_torque_request); pb.setProgress((int)(frictionTorque + elecBrakeTorque)); tv = findViewById(R.id.text_driver_torque_request); if (tv != null) tv.setText(String.format(Locale.getDefault(), "%.0f" + MainActivity.getStringSingle(R.string.unit_Nm), frictionTorque + elecBrakeTorque)); break; case Sid.ElecBrakeTorque: elecBrakeTorque = field.getValue(); pb = findViewById(R.id.pb_ElecBrakeWheelsTorqueApplied); pb.setProgress((int) elecBrakeTorque); tv = findViewById(R.id.text_ElecBrakeWheelsTorqueApplied); if (tv != null) tv.setText(String.format(Locale.getDefault(), "%.0f" + MainActivity.getStringSingle(R.string.unit_Nm), elecBrakeTorque)); pb = findViewById(R.id.pb_driver_torque_request); pb.setProgress((int)(frictionTorque + elecBrakeTorque)); tv = findViewById(R.id.text_driver_torque_request); if (tv != null) tv.setText(String.format(Locale.getDefault(), "%.0f" + MainActivity.getStringSingle(R.string.unit_Nm), frictionTorque + elecBrakeTorque)); break; } } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/CanSeeActivity.java ================================================ package lu.fisch.canze.activities; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import lu.fisch.canze.R; public class CanSeeActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getSupportActionBar().setDisplayHomeAsUpEnabled(true); setContentView(R.layout.activity_can_see); } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id==android.R.id.home) { saveOptions (); finish(); return true; } else if (id == R.id.action_cancel) { // finish without saving the settings finish(); return true; } return super.onOptionsItemSelected(item); } @Override public void onBackPressed() { //toast(MainActivity.TOAST_NONE, R.string.toast_PleaseUseTop); saveOptions (); super.onBackPressed(); } private void saveOptions () { } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/CanzeActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Build; import android.os.Bundle; import androidx.annotation.NonNull; import androidx.appcompat.app.ActionBar; import androidx.appcompat.app.AppCompatActivity; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.view.WindowManager; import android.widget.TextView; import java.security.InvalidParameterException; import java.util.ArrayList; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.bluetooth.BluetoothManager; import lu.fisch.canze.interfaces.FieldListener; import lu.fisch.canze.widgets.WidgetView; import static lu.fisch.canze.devices.Device.INTERVAL_ASAP; /** * Created by robertfisch on 30.09.2015. */ public abstract class CanzeActivity extends AppCompatActivity implements FieldListener { private boolean iLeftMyOwn = false; private boolean back = false; protected boolean widgetView = false; public void setWidgetClicked(boolean widgetClicked) { this.widgetClicked = widgetClicked; } protected boolean widgetClicked = false; protected boolean doReStartQueueOnResume = true; protected Menu mOptionsMenu; @Override protected void onCreate(Bundle savedInstanceState) { // enable hardware acceleration, except for dubious Android versions /*if (Build.VERSION.SDK_INT != 26 && Build.VERSION.SDK_INT != 27) { getWindow().setFlags( WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED, WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED); }*/ super.onCreate(savedInstanceState); // save the local theme do it can be used decoding colors for the graphs MainActivity.getInstance().setLocalTheme(this.getTheme()); // display the home button (it will automatically act as a menu tap (onOption) ActionBar actionBar = getSupportActionBar(); if (actionBar != null) actionBar.setDisplayHomeAsUpEnabled(true); // reconnect bluetooth if needed if (MainActivity.device != null) { if (!BluetoothManager.getInstance().isConnected()) { // restart Bluetooth MainActivity.debug("CanzeActivity: restarting BT"); (new Thread(new Runnable() { @Override public void run() { try { BluetoothManager.getInstance().connect(); } catch (InvalidParameterException e) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, R.string.message_CantConnect); } } })).start(); //BluetoothManager.getInstance().connect(); } } MainActivity.debug("CanzeActivity: onCreate (" + this.getClass().getSimpleName() + ")"); } void setDoRestartQueueOnResume (boolean start) { doReStartQueueOnResume = start; } @Override protected void onPause() { super.onPause(); MainActivity.debug("CanzeActivity: onPause"); // stop here if we are in an activity with a halted poller if (!doReStartQueueOnResume) return; // stop here if BT should stay on! if (MainActivity.bluetoothBackgroundMode) { return; } // if we have not pressed the back or home buton if (!back && !widgetClicked) { MainActivity.debug("CanzeActivity: onPause > stopBluetooth"); // stop the background process, do NOT clear the queue, disconnect MainActivity.getInstance().stopBluetooth(false); } if (!widgetClicked) { // remember we paused ourselves iLeftMyOwn = true; } // stop the self propelled fields (i.e. GPS) selfPropelFields(false); // remove this activity from being a listener to field updates it subscribed itself to removeFieldListeners(); // remove this activity from being a listener to debug events if (MainActivity.getInstance() != null) MainActivity.getInstance().setDebugListener(null); } @Override protected void onResume() { super.onResume(); // set the menu globally MainActivity.getInstance().setBluetoothMenuItem(mOptionsMenu); MainActivity.debug("CanzeActivity: onResume"); // save the local theme do it can be used decoding colors for the graphs MainActivity.getInstance().setLocalTheme(this.getTheme()); // when initlisteners is called, the activity adds the fields to the device queue // moved up because sef propelled fields need to already be added to subscribedFields // note that onResume (re)adds the fields, while onPause does not clear them out // this is done by onDestroy->removeFieldListeners initListeners(); // start the self propelled fields (i.e. GPS) selfPropelFields(true); // if we paused ourselvers if (iLeftMyOwn && !widgetClicked) { MainActivity.debug("CanzeActivity: onResume > reloadBluetooth"); // restart Bluetooth // jm moved to a thread to avoid ANR Thread t = new Thread() { public void run() { MainActivity.getInstance().reloadBluetooth(false); } }; t.start(); iLeftMyOwn = false; } if (BluetoothManager.getInstance().isDummyMode()) if (MainActivity.device != null) MainActivity.device.initConnection(); if (!widgetClicked) { MainActivity.debug("CanzeActivity: onResume > initWidgets"); // initialise the widgets (if any present) initWidgets(); } widgetClicked = false; } @Override protected void onDestroy() { MainActivity.debug("CanzeActivity: onDestroy"); if (!widgetView) { // free the widget listerners freeWidgetListeners(); // remove this activity from being a listener to field updates it subscribed itself to removeFieldListeners(); if (isFinishing()) { MainActivity.debug("CanzeActivity: onDestroy (finishing)"); // clear filters if (MainActivity.device != null) MainActivity.device.clearFields(); //MainActivity.registerFields(); } } super.onDestroy(); } void selfPropelFields(boolean startStop) { for (Field field : subscribedFields) { if (field.isSelfPropelled()) { Fields.getInstance().selfPropel(field.getResponseId(), startStop); } } } @Override public boolean onCreateOptionsMenu(Menu menu) { // save the menu. it is being set globally here and in resume to allow Bluetooth to change // it's appearance mOptionsMenu = menu; // inflate the menu; this adds items to the action bar if it is present. Empty contains // only the bluetooth icon. getMenuInflater().inflate(R.menu.menu_empty, menu); // set the menu globally MainActivity.getInstance().setBluetoothMenuItem(mOptionsMenu); return true; } @Override public boolean onOptionsItemSelected(@NonNull MenuItem item) { if (!MainActivity.isSafe()) return true; // do nothing // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == android.R.id.home) { back = true; finish(); } return super.onOptionsItemSelected(item); } @Override public void onBackPressed() { if (!MainActivity.isSafe()) return; super.onBackPressed(); back = true; } /********************************************************/ private void initWidgets() { final ArrayList widgets = getWidgetViewArrayList((ViewGroup) findViewById(android.R.id.content)); if (!widgets.isEmpty()) // MainActivity.toast(R.string.toast_InitWidgets); new Thread(new Runnable() { @Override public void run() { // connect the widgets to the respective fields // and add the filters to the reader for (int i = 0; i < widgets.size(); i++) { final WidgetView wv = widgets.get(i); // connect widgets to fields if (wv == null) { throw new ExceptionInInitializerError("CanzeActivity: initWidgets: Widget <" + i + "> is NULL!"); } wv.setCanzeActivity(CanzeActivity.this); MainActivity.debug("CanzeActivity: initWidgets: Widget: " + wv.getDrawable().getTitle() + " (" + wv.getFieldSID() + ")"); } } }).start(); } private void freeWidgetListeners() { // free up the listener again ArrayList widgets = getWidgetViewArrayList((ViewGroup) findViewById(R.id.table)); for (int i = 0; i < widgets.size(); i++) { WidgetView wv = widgets.get(i); String sid = wv.getFieldSID(); if (sid != null) { String[] sids = sid.split(","); for (String sid1 : sids) { Field field = MainActivity.fields.getBySID(sid1); if (field != null) { field.removeListener(wv.getDrawable()); } } } } } private ArrayList getWidgetViewArrayList(ViewGroup viewGroup) { ArrayList result = new ArrayList<>(); if (viewGroup != null) { for (int i = 0; i < viewGroup.getChildCount(); i++) { View v = viewGroup.getChildAt(i); if (v instanceof ViewGroup) { result.addAll(getWidgetViewArrayList((ViewGroup) v)); } else if (v instanceof WidgetView) { result.add((WidgetView) v); } } } return result; } /******* activity field stuff ********************/ private final ArrayList subscribedFields = new ArrayList<>(); protected void addField(String sid) { addField(sid, INTERVAL_ASAP); // follows frame rate } protected void addField(Field field) { addField(field, INTERVAL_ASAP); // follows frame rate } protected void addField(String sid, int intervalMs) { Field field = MainActivity.fields.getBySID(sid); if (field != null) { if (!field.getResponseId().equals ("999999")) { addField(field, intervalMs); } } else { MainActivity.debug(this.getClass().getSimpleName() + " (CanzeActivity): SID " + sid + " does not exist in class Fields"); if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, String.format(Locale.getDefault(), MainActivity.getStringSingle(R.string.format_NoSid), this.getClass().getSimpleName(), sid)); } } protected void addField(Field field, int intervalMs) { if (field != null && !field.getResponseId().equals("999999")) { // add a listener to the field field.addListener(this); // register it in the queue // enable it to self propel MainActivity.device.addActivityField(field, intervalMs); // remember this field has been added (filter out doubles) if (!subscribedFields.contains(field)) subscribedFields.add(field); } } private void removeFieldListeners() { // free up the listeners again for (Field field : subscribedFields) { field.removeListener(this); } subscribedFields.clear(); } public void dropDebugMessage(final String msg) { runOnUiThread(new Runnable() { @Override public void run() { TextView tv = findViewById(R.id.textDebug); if (tv != null) tv.setText(msg); } }); } public void appendDebugMessage(final String msg) { runOnUiThread(new Runnable() { @Override public void run() { TextView tv = findViewById(R.id.textDebug); if (tv != null) { String newMsg = tv.getText() + " " + msg; tv.setText(newMsg); } } }); } @Override public void onFieldUpdateEvent(Field field) { // empty --> descents should override this } protected abstract void initListeners(); } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/ChargingActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.content.res.Resources; import android.os.Bundle; import android.util.TypedValue; import android.widget.TextView; import androidx.annotation.ColorInt; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; // If you want to monitor changes, you must add a FieldField to the fields. // For the simple activity, the easiest way is to implement it in the activity itself. public class ChargingActivity extends CanzeActivity implements FieldListener, DebugListener { private double avChPwr; @ColorInt private int baseColor; @ColorInt private int alarmColor; private boolean dark; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_charging); TypedValue typedValue = new TypedValue(); Resources.Theme theme = this.getTheme(); theme.resolveAttribute(R.attr.colorButtonNormal, typedValue, true); baseColor = typedValue.data; dark = ((baseColor & 0xff0000) <= 0xa00000); alarmColor = dark ? baseColor + 0x200000 : baseColor - 0x00002020; } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); if (MainActivity.isPh2()) addField("7ec.5003.0", 2000); // open EVC addField(Sid.MaxCharge, 5000); addField(Sid.UserSoC, 5000); addField(Sid.RealSoC, 5000); addField(Sid.SOH, 5000); // state of health gives continuous timeouts. This frame is send at a very low rate addField(Sid.RangeEstimate, 5000); addField(Sid.DcPowerIn, 5000); addField(Sid.AvailableChargingPower, 5000); addField(Sid.HvTemp, 5000); } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String fieldId = field.getSID(); TextView tv = null; // get the text field switch (fieldId) { case Sid.MaxCharge: double maxCharge = field.getValue(); tv = findViewById(R.id.text_max_charge); tv.setBackgroundColor((maxCharge < (avChPwr * 0.8) && avChPwr < 45.0) ? alarmColor : baseColor); break; case Sid.UserSoC: tv = findViewById(R.id.textUserSOC); break; case Sid.RealSoC: tv = findViewById(R.id.textRealSOC); break; case Sid.HvTemp: tv = findViewById(R.id.textHvTemp); break; case Sid.SOH: tv = findViewById(R.id.textSOH); break; case Sid.RangeEstimate: tv = findViewById(R.id.textKMA); if (field.getValue() >= 1023) { tv.setText("---"); } else { tv.setText(String.format(Locale.getDefault(), "%.0f", field.getValue())); } tv = null; break; case Sid.DcPowerIn: tv = findViewById(R.id.textDcPwr); break; case Sid.AvailableChargingPower: avChPwr = field.getValue(); tv = findViewById(R.id.textAvChPwr); if (avChPwr > 45.0) { tv.setText("---"); tv = null; } break; } // set regular new content, all exceptions handled above if (tv != null) { tv.setText(String.format(Locale.getDefault(), "%.1f", field.getValue())); } } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/ChargingGraphActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import lu.fisch.canze.R; import lu.fisch.canze.interfaces.DebugListener; public class ChargingGraphActivity extends CanzeActivity implements DebugListener { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_charging_graph); } protected void initListeners () { if(MainActivity.getInstance()!=null) MainActivity.getInstance().setDebugListener(this); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/ChargingHistActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.widget.TextView; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; // If you want to monitor changes, you must add a FieldListener to the fields. // For the simple activity, the easiest way is to implement it in the actitviy itself. public class ChargingHistActivity extends CanzeActivity implements FieldListener, DebugListener { private final String[] charging_HistEnd = MainActivity.getStringList(R.array.list_ChargingHistEnd); private final String[] charging_HistTyp = MainActivity.getStringList(R.array.list_ChargingHistTyp); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_charginghist); } protected void initListeners() { String sid; MainActivity.getInstance().setDebugListener(this); for (int i = 0; i < 10; i++) { sid = Sid.Preamble_KM + (240 - i * 24); addField(sid); sid = Sid.Preamble_END + ( 96 - i * 8); addField(sid); sid = Sid.Preamble_TYP + ( 96 - i * 8); addField(sid); sid = Sid.Preamble_SOC + (168 - i * 16); addField(sid); sid = Sid.Preamble_TMP + ( 96 - i * 8); addField(sid); sid = Sid.Preamble_DUR + (168 - i * 16); addField(sid); } addField(Sid.Total_kWh); addField(Sid.Counter_Full); addField(Sid.Counter_Partial); if (MainActivity.isPh2()) { addField(Sid.Total_Regen_kWh); } } // This event is fired as soon as any registered field is set through its setValue() method // by the Message.onMessageCompleteEvent event. @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String sidPreamble = field.getSID().substring(0,11); // 7e4.2233D4. String startBit = field.getSID().substring(11); // 240 = 0 etc double val = field.getValue(); TextView tv = null; int value; // get the text column, select the row through the bit position switch (sidPreamble) { case Sid.Preamble_KM: tv = findViewById(getResources().getIdentifier("textKM" + ((264 - Integer.parseInt(startBit)) / 24), "id", getPackageName())); break; case Sid.Preamble_END: tv = findViewById(getResources().getIdentifier("textEND" + ((104 - Integer.parseInt(startBit)) / 8), "id", getPackageName())); value = (int) val; if (tv != null) { if (!Double.isNaN(val) && charging_HistEnd != null && value >= 0 && value < charging_HistEnd.length) { tv.setText(charging_HistEnd[value]); } else { tv.setText("---"); } } tv = null; break; case Sid.Preamble_TYP: tv = findViewById(getResources().getIdentifier("textTYP" + ((104 - Integer.parseInt(startBit)) / 8), "id", getPackageName())); value = (int) val; if (tv != null) { if (!Double.isNaN(val) && charging_HistTyp != null && value >= 0 && value < charging_HistTyp.length) { tv.setText(charging_HistTyp[value]); } else { tv.setText("---"); } } tv = null; break; case Sid.Preamble_SOC: tv = findViewById(getResources().getIdentifier("textSOC" + ((184 - Integer.parseInt(startBit)) / 16), "id", getPackageName())); break; case Sid.Preamble_TMP: tv = findViewById(getResources().getIdentifier("textTMP" + ((104 - Integer.parseInt(startBit)) / 8), "id", getPackageName())); break; case Sid.Preamble_DUR: tv = findViewById(getResources().getIdentifier("textDUR" + ((184 - Integer.parseInt(startBit)) / 16), "id", getPackageName())); break; default: switch (field.getSID()) { case Sid.Total_kWh: tv = findViewById(R.id.textTotKwh); break; case Sid.Total_Regen_kWh: tv = findViewById(R.id.textTotKwhRegen); break; case Sid.Counter_Full: tv = findViewById(R.id.textCountFull); break; case Sid.Counter_Partial: tv = findViewById(R.id.textCountPartial); break; } } // set regular new content, all exeptions handled above if (tv != null) { tv.setText(Double.isNaN(val) ? "" : String.format(Locale.getDefault(), "%.0f", val)); } } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/ChargingTechActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.view.View; import android.widget.TableLayout; import android.widget.TextView; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; public class ChargingTechActivity extends CanzeActivity implements FieldListener, DebugListener { // Bcbtesterinit and -awake are hardcoded here, but shoud of course be optionally taken from // the ECU getSessionRequired and getStartDiag. However, since the BCB fields are aliassed in // Ph2 to the 11 bits address, we leave it like this for now /* Todo Add unaliased settings for BCB tester fields in _FieldsPh2, and make tester logic here use the formal ECU settings */ public static final String DefaultFormatTemperature = "%3.0f"; public static final String DefaultFormatBalancing = "%02X"; private final String[] plug_Status = MainActivity.getStringList(R.array.list_PlugStatus); private final String[] mains_Current_Type = MainActivity.getStringList(R.array.list_MainsCurrentType); private final String[] supervisor_State = MainActivity.getStringList(MainActivity.isPh2() ? R.array.list_SupervisorStatePh2 : R.array.list_SupervisorState); private final String[] completion_Status = MainActivity.getStringList(R.array.list_CompletionStatus); private final String[] evse_status = MainActivity.getStringList(R.array.list_EVSEStatus); private final String[] evse_failure_status = MainActivity.getStringList(R.array.list_EVSEFailureStatus); private final String[] ev_ready_status = MainActivity.getStringList(R.array.list_EVReady); private final String[] cplc_com_status = MainActivity.getStringList(R.array.list_CPLCComStatus); private final String[] ev_request_state = MainActivity.getStringList(R.array.list_EVRequestState); private final String[] evse_state = MainActivity.getStringList(R.array.list_EVSEState); private final String[] limit_reached = MainActivity.getStringList(R.array.list_EVSELimitReached); private double dcVolt = 0; // holds the DC voltage, so we can calculate the power when the amps come in private double pilot = 0; private double usoc = 0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_chargingtech); if (MainActivity.isPh2()){ TableLayout tl; tl = findViewById(R.id.tableLayoutEVSE); tl.setVisibility(View.VISIBLE); } } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); addField(Sid.BcbTesterInit, lu.fisch.canze.devices.Device.INTERVAL_ONCE); addField(Sid.MaxCharge, 5000); addField(Sid.ACPilot, 5000); addField(Sid.PlugConnected, 5000); addField(Sid.UserSoC, 5000); addField(Sid.RealSoC, 5000); addField(Sid.AvailableChargingPower, 5000); addField(Sid.AvailableEnergy, 5000); addField(Sid.SOH, 5000); // state of health gives continuous timeouts. This frame is send at a very low rate addField(Sid.RangeEstimate, 5000); addField(Sid.HvKilometers, 5000); addField(Sid.TractionBatteryVoltage, 5000); addField(Sid.TractionBatteryCurrent, 5000); // Battery compartment temperatures int lastCell = 12; for (int i = 0; i < lastCell; i++) { String sid = Sid.Preamble_CompartmentTemperatures + (32 + i * 24); addField(sid, 5000); sid = Sid.Preamble_BalancingBytes + (16 + i * 8); addField(sid, 5000); } addField(Sid.BcbTesterAwake, 1500); addField(Sid.MainsCurrentType); addField(Sid.Phase1currentRMS); addField(Sid.Phase2CurrentRMS); addField(Sid.Phase3CurrentRMS); if (!MainActivity.isPh2()) { addField(Sid.PhaseVoltage1); addField(Sid.PhaseVoltage2); addField(Sid.PhaseVoltage3); } addField(Sid.InterPhaseVoltage12); addField(Sid.InterPhaseVoltage23); addField(Sid.InterPhaseVoltage31); addField(Sid.MainsActivePower); addField(Sid.GroundResistance); addField(Sid.SupervisorState); addField(Sid.CompletionStatus); // TODO: Add variable holding information if CCS charging is available for the car if (MainActivity.isPh2()){ addField(Sid.CCSEVSEStatus); addField(Sid.CCSFailureStatus); addField(Sid.CCSEVReady); addField(Sid.CCSCPLCComStatus); addField(Sid.CCSEVRequestState); addField(Sid.CCSEVSEState); addField(Sid.CCSEVSEMaxPower); addField(Sid.CCSEVSEPowerLimitReached); addField(Sid.CCSEVSEMaxVoltage); addField(Sid.CCSEVSEPresentVoltage); addField(Sid.CCSEVSEVoltageLimitReaced); addField(Sid.CCSEVSEMaxCurrent); addField(Sid.CCSEVSEPresentCurrent); addField(Sid.CCSEVSECurrentLimitReached); } if (MainActivity.altFieldsMode) { addField(Sid.BcbVersion); // pre 0x0800 versions have a pilot PWM resolution of 1 } } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String fieldId = field.getSID(); TextView tv = null; int value; // get the text field switch (fieldId) { case Sid.MaxCharge: tv = findViewById(R.id.text_max_charge); break; case Sid.ACPilot: pilot = field.getValue(); // save pilot amps tv = findViewById(R.id.text_max_pilot); tv.setText(String.format(Locale.getDefault(), "%.0f", field.getValue())); tv = null; break; case Sid.UserSoC: usoc = field.getValue() / 100.0; tv = findViewById(R.id.textUserSOC); break; case Sid.RealSoC: tv = findViewById(R.id.textRealSOC); break; case Sid.SOH: tv = findViewById(R.id.textSOH); tv.setText(String.format(Locale.getDefault(), "%.0f", field.getValue())); tv = null; break; case Sid.RangeEstimate: tv = findViewById(R.id.textKMA); if (field.getValue() >= 1023) { tv.setText("---"); } else { tv.setText(String.format(Locale.getDefault(), "%.0f", field.getValue())); } tv = null; break; case Sid.TractionBatteryVoltage: // DC volts // save DC voltage for DC power purposes dcVolt = field.getValue(); // continue tv = findViewById(R.id.textVolt); break; case Sid.TractionBatteryCurrent: // DC amps // calculate DC power double dcPwr = dcVolt * field.getValue() / 1000.0; tv = findViewById(R.id.textDcPwr); tv.setText(String.format(Locale.getDefault(), "%.1f", dcPwr)); // continue tv = findViewById(R.id.textAmps); break; case Sid.AvailableChargingPower: double avChPwr = field.getValue(); tv = findViewById(R.id.textAvChPwr); if (avChPwr > 45.0) { tv.setText("-"); tv = null; } break; case Sid.AvailableEnergy: if (usoc > 0) { tv = findViewById(R.id.textETF); tv.setText(String.format(Locale.getDefault(), "%.1f", field.getValue() * (1 - usoc) / usoc)); } tv = findViewById(R.id.textAvEner); break; case Sid.HvKilometers: tv = findViewById(R.id.textHKM); tv.setText(String.format(Locale.getDefault(), "%.0f", field.getValue())); tv = null; break; case Sid.PlugConnected: value = (int) field.getValue(); tv = findViewById(R.id.textPlug); if (tv != null && plug_Status != null && value >= 0 && value < plug_Status.length) tv.setText(plug_Status[value]); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "32": tv = findViewById(R.id.text_comp_1_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "56": tv = findViewById(R.id.text_comp_2_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "80": tv = findViewById(R.id.text_comp_3_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "104": tv = findViewById(R.id.text_comp_4_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "128": tv = findViewById(R.id.text_comp_5_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "152": tv = findViewById(R.id.text_comp_6_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "176": tv = findViewById(R.id.text_comp_7_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "200": tv = findViewById(R.id.text_comp_8_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "224": tv = findViewById(R.id.text_comp_9_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "248": tv = findViewById(R.id.text_comp_10_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "272": tv = findViewById(R.id.text_comp_11_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_CompartmentTemperatures + "296": tv = findViewById(R.id.text_comp_12_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatTemperature, field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "16": tv = findViewById(R.id.text_bala_1_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "24": tv = findViewById(R.id.text_bala_2_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "32": tv = findViewById(R.id.text_bala_3_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "40": tv = findViewById(R.id.text_bala_4_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "48": tv = findViewById(R.id.text_bala_5_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "56": tv = findViewById(R.id.text_bala_6_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "64": tv = findViewById(R.id.text_bala_7_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "72": tv = findViewById(R.id.text_bala_8_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "80": tv = findViewById(R.id.text_bala_9_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "88": tv = findViewById(R.id.text_bala_10_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "96": tv = findViewById(R.id.text_bala_11_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.Preamble_BalancingBytes + "104": tv = findViewById(R.id.text_bala_12_temp); tv.setText(String.format(Locale.getDefault(), DefaultFormatBalancing, (int) field.getValue())); tv = null; break; case Sid.MainsCurrentType: tv = findViewById(R.id.textMainsCurrentType); value = (int) field.getValue(); if (tv != null && mains_Current_Type != null && value >= 0 && value < mains_Current_Type.length) tv.setText(mains_Current_Type[value]); tv = null; break; case Sid.Phase1currentRMS: tv = findViewById(R.id.textPhase1CurrentRMS); break; case Sid.Phase2CurrentRMS: tv = findViewById(R.id.textPhase2CurrentRMS); break; case Sid.Phase3CurrentRMS: tv = findViewById(R.id.textPhase3CurrentRMS); break; case Sid.PhaseVoltage1: tv = findViewById(R.id.textPhaseVoltage1); break; case Sid.PhaseVoltage2: tv = findViewById(R.id.textPhaseVoltage2); break; case Sid.PhaseVoltage3: tv = findViewById(R.id.textPhaseVoltage3); break; case Sid.InterPhaseVoltage12: tv = findViewById(R.id.textInterPhaseVoltage12); break; case Sid.InterPhaseVoltage23: tv = findViewById(R.id.textInterPhaseVoltage23); break; case Sid.InterPhaseVoltage31: tv = findViewById(R.id.textInterPhaseVoltage31); break; case Sid.MainsActivePower: tv = findViewById(R.id.textMainsActivePower); break; case Sid.GroundResistance: tv = findViewById(R.id.textGroundResistance); break; case Sid.SupervisorState: tv = findViewById(R.id.textSupervisorState); value = (int) field.getValue(); if (tv != null && supervisor_State != null && value >= 0 && value < supervisor_State.length) tv.setText(supervisor_State[value]); tv = null; break; case Sid.CompletionStatus: tv = findViewById(R.id.textCompletionStatus); value = (int) field.getValue(); if (tv != null && completion_Status != null && value >= 0 && value < completion_Status.length) tv.setText(completion_Status[value]); tv = null; break; case Sid.CCSEVSEStatus: tv = findViewById(R.id.textEVSEStatus); value = (int) field.getValue(); if (tv != null && evse_status != null && value >= 0 && value < evse_status.length) tv.setText(evse_status[value]); tv = null; break; case Sid.CCSFailureStatus: tv = findViewById(R.id.textEVSEFailureStatus); value = (int) field.getValue(); if (tv != null && evse_failure_status != null && value >= 0 && value < evse_failure_status.length) tv.setText(evse_failure_status[value]); tv = null; break; case Sid.CCSEVReady: tv = findViewById(R.id.textEVReady); value = (int) field.getValue(); if (tv != null && ev_ready_status != null && value >= 0 && value < ev_ready_status.length) tv.setText(ev_ready_status[value]); tv = null; break; case Sid.CCSCPLCComStatus: tv = findViewById(R.id.textCPLCComStatus); value = (int) field.getValue(); if (tv != null && cplc_com_status != null && value >= 0 && value < cplc_com_status.length) tv.setText(cplc_com_status[value]); tv = null; break; case Sid.CCSEVRequestState: tv = findViewById(R.id.textEVRequestState); value = (int) field.getValue(); if (tv != null && ev_request_state != null && value >= 0 && value < ev_request_state.length) tv.setText(ev_request_state[value]); tv = null; break; case Sid.CCSEVSEState: tv = findViewById(R.id.textEVSEState); value = (int) field.getValue(); if (tv != null && evse_state != null && value >= 0 && value < evse_state.length) tv.setText(evse_state[value]); tv = null; break; case Sid.CCSEVSEMaxPower: tv = findViewById(R.id.textEVSEMaxPower); break; case Sid.CCSEVSEPowerLimitReached: tv = findViewById(R.id.textEVSEPowerLimitReached); value = (int) field.getValue(); if (tv != null && limit_reached != null && value >= 0 && value < limit_reached.length) tv.setText(limit_reached[value]); tv = null; break; case Sid.CCSEVSEMaxVoltage: tv = findViewById(R.id.textEVSEMaxVoltage); break; case Sid.CCSEVSEPresentVoltage: tv = findViewById(R.id.textEVSEPresentVoltage); break; case Sid.CCSEVSEVoltageLimitReaced: tv = findViewById(R.id.textEVSEVoltageLimitReached); value = (int) field.getValue(); if (tv != null && limit_reached != null && value >= 0 && value < limit_reached.length) tv.setText(limit_reached[value]); tv = null; break; case Sid.CCSEVSEMaxCurrent: tv = findViewById(R.id.textEVSEMaxCurrent); break; case Sid.CCSEVSEPresentCurrent: tv = findViewById(R.id.textEVSEPresentCurrent); break; case Sid.CCSEVSECurrentLimitReached: tv = findViewById(R.id.textEVSECurrentLimitReached); value = (int) field.getValue(); if (tv != null && limit_reached != null && value >= 0 && value < limit_reached.length) tv.setText(limit_reached[value]); tv = null; break; case Sid.BcbVersion: Field bcbVersionField = Fields.getInstance().getBySID(Sid.ACPilotDutyCycle); if (bcbVersionField != null) bcbVersionField.setResolution(((int)field.getValue() < 0x0800) ? 1.0 : 0.5); } // set regular new content, all exceptions handled above if (tv != null) { double val = field.getValue(); tv.setText(Double.isNaN(val) ? "" : String.format(Locale.getDefault(), "%.1f", val)); } } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/ClimaTechActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.widget.TextView; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; // If you want to monitor changes, you must add a FieldListener to the fields. // For the simple activity, the easiest way is to implement it in the actitviy itself. public class ClimaTechActivity extends CanzeActivity implements FieldListener, DebugListener { private final String[] cooling_Status = MainActivity.getStringList(R.array.list_CoolingStatus); private final String[] conditioning_Status = MainActivity.getStringList (MainActivity.isPh2() ? R.array.list_ConditioningStatusPh2 : R.array.list_ConditioningStatus); private final String[] climate_Status = MainActivity.getStringList(MainActivity.isPh2() ? R.array.list_ClimateStatusPh2 : R.array.list_ClimateStatus); private final String[] ptc_Relay = MainActivity.getStringList(R.array.list_PtcRelay); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_climatech); } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); //if (MainActivity.isZOE()) { addField(Sid.EngineFanSpeed, 0); // addListener(Sid.ChargingPower); addField(Sid.HvCoolingState, 0); addField(Sid.HvEvaporationTemp, 10000); addField(Sid.Pressure, 1000); addField(Sid.BatteryConditioningMode, 0); addField(Sid.ClimaLoopMode, 0); //addField(Sid.PtcRelay1, 1000); //addField(Sid.PtcRelay2, 1000); //addField(Sid.PtcRelay3, 1000); //} TextView tv = findViewById(R.id.textLabel_climatePower); if (MainActivity.isPh2()) { addField(Sid.ThermalComfortPower, 0); tv.setText(getResources().getString(R.string.label_ThermalComfortPower)); } else { addField(Sid.DcPowerOut, 0); tv.setText(getResources().getString(R.string.label_DcPwr)); } } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String fieldId = field.getSID(); TextView tv = null; int value; // get the text field switch (fieldId) { case Sid.EngineFanSpeed: tv = findViewById(R.id.text_EFS); break; case Sid.DcPowerOut: tv = findViewById(R.id.text_ClimatePower); break; // case Sid.ChargingPower: // tv = (TextView) findViewById(R.id.text_CPO); // break; case Sid.HvCoolingState: value = (int) field.getValue(); tv = findViewById(R.id.text_HCS); if (tv != null && cooling_Status != null && value >= 0 && value < cooling_Status.length) tv.setText(cooling_Status[value]); tv = null; break; case Sid.HvEvaporationTemp: tv = findViewById(R.id.text_HET); break; case Sid.Pressure: tv = findViewById(R.id.text_PRE); break; case Sid.BatteryConditioningMode: value = (int) field.getValue(); tv = findViewById(R.id.text_HCM); if (tv != null && conditioning_Status != null && value >= 0 && value < conditioning_Status.length) tv.setText(conditioning_Status[value]); tv = null; break; case Sid.ClimaLoopMode: value = (int) field.getValue(); tv = findViewById(R.id.text_CLM); if (tv != null && climate_Status != null && value >= 0 && value < climate_Status.length) tv.setText(climate_Status[value]); tv = null; break; case Sid.ThermalComfortPower: tv = findViewById(R.id.text_ClimatePower); break; //case Sid.PtcRelay1: // value = (int) field.getValue(); // tv = findViewById(R.id.text_PTC1); // if (tv != null && ptc_Relay != null && value >= 0 && value < ptc_Relay.length) // tv.setText(ptc_Relay[value]); // tv = null; // break; //case Sid.PtcRelay2: // value = (int) field.getValue(); // tv = findViewById(R.id.text_PTC2); // if (tv != null && ptc_Relay != null && value >= 0 && value < ptc_Relay.length) // tv.setText(ptc_Relay[value]); // tv = null; // break; //case Sid.PtcRelay3: // value = (int) field.getValue(); // tv = findViewById(R.id.text_PTC3); // if (tv != null && ptc_Relay != null && value >= 0 && value < ptc_Relay.length) // tv.setText(ptc_Relay[value]); // tv = null; // break; } // set regular new content, all exeptions handled above if (tv != null) { tv.setText(String.format(Locale.getDefault(), "%.1f", field.getValue())); } //tv = (TextView) findViewById(R.id.textDebug); //tv.setText(fieldId); } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/ConsumptionActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.graphics.Point; import android.os.Bundle; import android.view.Display; import android.view.View; import android.widget.ProgressBar; import android.widget.TableLayout; import android.widget.TableRow; import android.widget.TextView; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; public class ConsumptionActivity extends CanzeActivity implements FieldListener, DebugListener { private int coasting_Torque = 0; private int driverBrakeWheel_Torque_Request = 0; private int posTorque = 0; private int negTorque = 0; public void initListeners () { MainActivity.getInstance().setDebugListener(this); addField(Sid.TotalPositiveTorque); addField(Sid.TotalNegativeTorque); addField(Sid.TotalPotentialResistiveWheelsTorque, 7200); addField(Sid.Instant_Consumption, 0); } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // dash = 1280x400 Display display = getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); float width = size.x; float height = size.y; //width = width / getResources().getDisplayMetrics().scaledDensity; height = height / getResources().getDisplayMetrics().scaledDensity; if(height<480 || width<480) { setContentView(R.layout.activity_consumption_dash); } else { if (MainActivity.milesMode) { setContentView(R.layout.activity_consumption_mi); if (MainActivity.isPh2()){ TableRow tr; tr = findViewById(R.id.tableRowRangeMi); tr.setVisibility(View.GONE); tr.setEnabled(false); } } else { setContentView(R.layout.activity_consumption); if (MainActivity.isPh2()){ TableRow tr; tr = findViewById(R.id.tableRowRange); tr.setVisibility(View.GONE); tr.setEnabled(false); } } } } /********************************/ @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String fieldId = field.getSID(); ProgressBar pb; TextView tv; switch (fieldId) { case Sid.TotalPositiveTorque: posTorque = (int)(field.getValue()); pb = findViewById(R.id.MeanEffectiveAccTorque); pb.setProgress(posTorque); tv = findViewById(R.id.text_wheel_torque); if (tv != null) tv.setText((posTorque - negTorque) + " " + field.getUnit()); break; case Sid.TotalNegativeTorque: negTorque = (int)(field.getValue()); pb = findViewById(R.id.pb_driver_torque_request); pb.setProgress(negTorque); tv = findViewById(R.id.text_wheel_torque); if (tv != null) tv.setText((posTorque - negTorque) + " " + field.getUnit()); break; // negative blue bar case Sid.TotalPotentialResistiveWheelsTorque: int tprwt = -((int) field.getValue()); pb = findViewById(R.id.MaxBreakTorque); if (pb != null) pb.setProgress(tprwt < 2047 ? tprwt : 10); break; // consumption case Sid.Instant_Consumption: double consumptionDbl = field.getValue(); int consumptionInt = (int)consumptionDbl; tv = findViewById(R.id.text_instant_consumption_negative); if (!Double.isNaN(consumptionDbl)) { // progress bars are rescaled to miles by the layout ((ProgressBar) findViewById(R.id.pb_instant_consumption_negative)).setProgress(-(Math.min(0, consumptionInt))); ((ProgressBar) findViewById(R.id.pb_instant_consumption_positive)).setProgress( Math.max(0, consumptionInt) ); if (!MainActivity.milesMode) { tv.setText(consumptionInt + " " + field.getUnit()); } else if (consumptionDbl != 0.0) { // consumption is now in kWh/100mi, so rescale progress bar // display the value in imperial format (100 / consumption, meaning mi/kwh) tv.setText(String.format (Locale.getDefault(),"%.2f %s", (100.0 / consumptionDbl), MainActivity.getStringSingle(R.string.unit_ConsumptionMiAlt))); } else { tv.setText("-"); } } else { tv.setText("-"); } break; } } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/DashActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.view.Menu; import android.widget.ProgressBar; import android.widget.TextView; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; public class DashActivity extends CanzeActivity { public void initListeners () { addField(Sid.TotalPotentialResistiveWheelsTorque, 7200); //addField(Sid.Instant_Consumption, 0); addField(Sid.TotalPositiveTorque, 0); addField(Sid.TotalNegativeTorque, 0); } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_dash); } @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String fieldId = field.getSID(); ProgressBar pb; TextView tv; double consumption; switch (fieldId) { case Sid.TotalPotentialResistiveWheelsTorque: //blue bar int tprwt = -((int) field.getValue()); pb = findViewById(R.id.MaxBrakeTorque); if (pb != null) pb.setProgress(tprwt < 2047 ? tprwt : 10); tv = null; // findViewById(R.id.textTPRWT); break; case Sid.TotalNegativeTorque: pb = findViewById(R.id.pb_driver_torque_request); if (pb != null) pb.setProgress((int) field.getValue()); tv = null; break; case Sid.TotalPositiveTorque: pb = findViewById(R.id.MeanEffectiveAccTorque); pb.setProgress((int)field.getValue()); // --> translate from motor torque to wheel torque break; } } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/DrivingActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.annotation.SuppressLint; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; import android.content.SharedPreferences; import android.os.Bundle; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.inputmethod.InputMethodManager; import android.widget.EditText; import android.widget.ProgressBar; import android.widget.TextView; import androidx.annotation.NonNull; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; public class DrivingActivity extends CanzeActivity implements FieldListener, DebugListener { private float odo = 0; private float destOdo = 0; // have to init from save file private float tripBdistance = -1; private float tripBenergy = -1; private float startBdistance = -1; private float startBenergy = -1; private float tripDistance = -1; private float tripEnergy = -1; private float savedTripStart = 0; private double realSpeed = 0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_driving); final TextView distkmToDest = findViewById(R.id.LabelDistToDest); distkmToDest.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { setDistanceToDestination(); } }); final TextView tripConsumption = findViewById(R.id.LabelTripConsumption); tripConsumption.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { setSavedTripStart(); } }); if (MainActivity.milesMode) { TextView tv; tv = findViewById(R.id.textSpeedUnit); tv.setText(MainActivity.getStringSingle(R.string.unit_SpeedMi)); tv = findViewById(R.id.textConsumptionUnit); //tv.setText(MainActivity.getStringSingle(R.string.unit_ConsumptionMi)); tv.setText(MainActivity.getStringSingle(R.string.unit_ConsumptionMiAlt)); } } protected void initListeners() { getDestOdo(); getSavedTripStart(); // Make sure to add ISO-TP listeners grouped by ID MainActivity.getInstance().setDebugListener(this); addField(Sid.DcPowerOut, 0); addField(Sid.Pedal, 0); //addField(Sid.DriverBrakeWheel_Torque_Request, 0); //addField(Sid.ElecBrakeWheelsTorqueApplied, 0); //addField(Sid.Coasting_Torque, 0); addField(Sid.TotalPositiveTorque, 0); addField(Sid.TotalNegativeTorque, 0); addField(Sid.TotalPotentialResistiveWheelsTorque, 0); addField(Sid.RealSpeed, 0); addField(Sid.SoC, 7200); addField(Sid.RangeEstimate, 7200); addField(Sid.EVC_Odometer, 6000); addField(Sid.TripMeterB, 6000); addField(Sid.TripEnergyB, 6000); } private void setDistanceToDestination() { // don't react if we do not have a live odo yet if (odo == 0) return; final Context context = DrivingActivity.this; AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context); LayoutInflater inflater = getLayoutInflater(); // we allow this SuppressLint as this is a pop up Dialog @SuppressLint("InflateParams") final View distToDestView = inflater.inflate(R.layout.alert_dist_to_dest, null); // set dialog message alertDialogBuilder .setView(distToDestView) .setTitle(R.string.prompt_Distance) .setMessage(MainActivity.getStringSingle(R.string.prompt_SetDistance)) .setCancelable(true) .setPositiveButton(R.string.default_Ok, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); if (imm != null) imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, 0); EditText dialogDistToDest = distToDestView.findViewById(R.id.dialog_dist_to_dest); if (dialogDistToDest != null) { try { saveDestOdo(odo + Integer.parseInt(dialogDistToDest.getText().toString())); } catch (NumberFormatException e) { /* do nothing if nonsense is entered */ } } dialog.cancel(); } }) .setNeutralButton(R.string.button_Double, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); if (imm != null) imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, 0); EditText dialogDistToDest = distToDestView.findViewById(R.id.dialog_dist_to_dest); if (dialogDistToDest != null) { try { saveDestOdo(odo + 2 * Integer.parseInt(dialogDistToDest.getText().toString())); } catch (NumberFormatException e) { /* do nothing if nonsense is entered */ } } dialog.cancel(); } }) .setNegativeButton(R.string.default_Cancel, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); if (imm != null) imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, 0); dialog.cancel(); } }); // create alert dialog AlertDialog alertDialog = alertDialogBuilder.create(); InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); if (imm != null) imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0); // show it alertDialog.show(); } private void saveDestOdo(float d) { if (!Float.isNaN(d)) { SharedPreferences settings = getSharedPreferences(MainActivity.PREFERENCES_FILE, 0); SharedPreferences.Editor editor = settings.edit(); editor.putFloat("destOdo", d); editor.apply(); destOdo = d; displayDistToDest(); } } private void getDestOdo() { SharedPreferences settings = getSharedPreferences(MainActivity.PREFERENCES_FILE, 0); destOdo = 0; try { destOdo = settings.getFloat("destOdo", 0); } catch (ClassCastException e) { // This happens when an old integer value is in the pref file destOdo = settings.getInt("destOdo", 0); } displayDistToDest(); } private void displayDistToDest(int distance1, int distance2) { TextView tv; tv = findViewById(R.id.textDistToDest); tv.setText(String.valueOf(distance1)); tv = findViewById(R.id.textDistAVailAtDest); tv.setText(String.valueOf(distance2)); } private void displayDistToDest() { TextView tv; tv = findViewById(R.id.textDistToDest); tv.setText("-"); tv = findViewById(R.id.textDistAVailAtDest); tv.setText("-"); } private void setSavedTripStart() { if (!Float.isNaN(odo) && odo != 0 && !Float.isNaN(tripBdistance) && tripBdistance != -1 && !Float.isNaN(tripBenergy) && tripBenergy != -1) { savedTripStart = odo - tripBdistance; startBdistance = tripBdistance; startBenergy = tripBenergy; SharedPreferences settings = getSharedPreferences(MainActivity.PREFERENCES_FILE, 0); SharedPreferences.Editor editor = settings.edit(); editor.putFloat("savedTripStart", savedTripStart); editor.putFloat("startBdistance", startBdistance); editor.putFloat("startBenergy", startBenergy); editor.apply(); displayTripData(); //} else { // MainActivity.toast(MainActivity.TOAST_NONE, "Could not reset Trip Consumption yet"); } } private void getSavedTripStart() { SharedPreferences settings = getSharedPreferences(MainActivity.PREFERENCES_FILE, 0); try { savedTripStart = settings.getFloat("savedTripStart", 0); startBdistance = settings.getFloat("startBdistance", 0); startBenergy = settings.getFloat("startBenergy", 0); } catch (ClassCastException e) { // do nothing, too unimportant to try getInt } } private void displayTripData () { TextView tv = findViewById(R.id.textTripConsumption); if ((odo - tripBdistance - 1) > savedTripStart) { tv.setText(MainActivity.getStringSingle(R.string.default_Reset)); tv = findViewById(R.id.textTripDistance); tv.setText(""); tv = findViewById(R.id.textTripEnergy); tv.setText(""); } else if (tripEnergy <= 0 || tripDistance <= 0) { tv.setText("..."); tv = findViewById(R.id.textTripDistance); tv.setText("..."); tv = findViewById(R.id.textTripEnergy); tv.setText("..."); } else { tv.setText(String.format(Locale.getDefault(), "%.1f", MainActivity.milesMode ? (tripDistance / tripEnergy) : (tripEnergy * 100.0 / tripDistance))); tv = findViewById(R.id.textTripDistance); tv.setText(String.format(Locale.getDefault(), "%.1f", tripDistance)); tv = findViewById(R.id.textTripEnergy); tv.setText(String.format(Locale.getDefault(), "%.1f", tripEnergy)); } } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String fieldId = field.getSID(); TextView tv = null; ProgressBar pb; // get the text field switch (fieldId) { case Sid.SoC: tv = findViewById(R.id.textSOC); break; case Sid.Pedal: pb = findViewById(R.id.pedalBar); pb.setProgress((int) field.getValue()); break; case Sid.TotalPositiveTorque: pb = findViewById(R.id.MeanEffectiveAccTorque); pb.setProgress((int)field.getValue()); // --> translate from motor torque to wheel torque break; case Sid.EVC_Odometer: odo = (float) field.getValue(); tv = null; break; case Sid.TripMeterB: tripBdistance = (float) field.getValue(); tripDistance = tripBdistance - startBdistance; displayTripData (); tv = null; break; case Sid.TripEnergyB: tripBenergy = (float) field.getValue(); tripEnergy = tripBenergy - startBenergy; displayTripData (); tv = null; break; case Sid.MaxCharge: tv = findViewById(R.id.text_max_charge); break; case Sid.RealSpeed: realSpeed = field.getValue(); tv = findViewById(R.id.textRealSpeed); break; case Sid.DcPowerOut: double dcPwr = field.getValue(); tv = findViewById(R.id.textConsumption); if (!MainActivity.milesMode && realSpeed > 5) { tv.setText(String.format(Locale.getDefault(), "%.1f", 100.0 * dcPwr / realSpeed)); } else if (MainActivity.milesMode && dcPwr != 0) { // real speed has already been returned in miles, so no conversions should be done tv.setText(String.format(Locale.getDefault(), "%.2f", realSpeed / dcPwr)); } else { tv.setText("-"); } tv = null; break; case Sid.RangeEstimate: //int rangeInBat = (int) Utils.kmOrMiles(field.getValue()); int rangeInBat = (int) field.getValue(); if (rangeInBat > 0 && odo > 0 && destOdo > 0) { // we update only if there are no weird values if (destOdo > odo) { displayDistToDest((int) (destOdo - odo), (int) (rangeInBat - destOdo + odo)); } else { displayDistToDest(0, 0); } } else { displayDistToDest(); } tv = null; break; case Sid.TotalPotentialResistiveWheelsTorque: //blue bar int tprwt = -((int) field.getValue()); pb = findViewById(R.id.MaxBrakeTorque); if (pb != null) pb.setProgress(tprwt < 2047 ? tprwt : 10); tv = null; // findViewById(R.id.textTPRWT); break; case Sid.TotalNegativeTorque: pb = findViewById(R.id.pb_driver_torque_request); if (pb != null) pb.setProgress((int) field.getValue()); tv = null; break; //case Sid.DriverBrakeWheel_Torque_Request: // driverBrakeWheel_Torque_Request = field.getValue() + coasting_Torque; // pb = findViewById(R.id.pb_driver_torque_request); // if (pb != null) pb.setProgress((int) driverBrakeWheel_Torque_Request); // tv = null; // break; //case Sid.Coasting_Torque: // coasting_Torque = field.getValue() * MainActivity.reduction; // this torque is given in motor torque, not in wheel torque // break; } // set regular new content, all exeptions handled above if (tv != null) { tv.setText(String.format(Locale.getDefault(), "%.1f", field.getValue())); } } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. This menu // is another way to set the distance mOptionsMenu = menu; getMenuInflater().inflate(R.menu.menu_driving, menu); MainActivity.getInstance().setBluetoothMenuItem (menu); return true; } @Override public boolean onOptionsItemSelected(@NonNull MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == R.id.action_setDistanceToDestination) { setDistanceToDestination(); return true; } else if (id == R.id.action_resetTripConsumption) { setSavedTripStart(); return true; } return super.onOptionsItemSelected(item); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/DtcActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.Spinner; import android.widget.TextView; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Locale; import lu.fisch.canze.BuildConfig; import lu.fisch.canze.R; import lu.fisch.canze.actors.Dtcs; import lu.fisch.canze.actors.Ecu; import lu.fisch.canze.actors.Ecus; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.actors.Frame; import lu.fisch.canze.actors.Frames; import lu.fisch.canze.actors.Message; import lu.fisch.canze.actors.StoppableThread; import lu.fisch.canze.bluetooth.BluetoothManager; import lu.fisch.canze.classes.Crashlytics; import static lu.fisch.canze.activities.MainActivity.debug; public class DtcActivity extends CanzeActivity { // List, or clear, DTC's. This is done on a per ECU basis private TextView textView; private BufferedWriter bufferedDumpWriter = null; private boolean dumpInProgress = false; private StoppableThread queryThread; private long ticker = 0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_dtc); textView = findViewById(R.id.textResult); // add all ECUs to the pull down list ArrayAdapter arrayAdapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1); for (Ecu ecu : Ecus.getInstance().getAllEcus()) { if (ecu.getFromId() > 0 && ecu.getFromId() != 0x800 && ecu.getFromId() != 0x801 && (!BuildConfig.BRANCH.equals("master") || ( !ecu.getAliases().contains("AIRBAG") && !ecu.getAliases().contains("ESC")) )) { arrayAdapter.add(ecu.getMnemonic()); // only list real, known, reachable ECUs } } // display the list final Spinner spinnerEcu = findViewById(R.id.ecuList); spinnerEcu.setAdapter(arrayAdapter); // bind code to button2 final Button btnQuery = findViewById(R.id.ecuQuery); btnQuery.setOnClickListener(v -> doQueryEcu(Ecus.getInstance().getByMnemonic(String.valueOf(spinnerEcu.getSelectedItem())))); final Button btnClear = findViewById(R.id.ecuClear); btnClear.setOnClickListener(v -> doClearEcu(Ecus.getInstance().getByMnemonic(String.valueOf(spinnerEcu.getSelectedItem())))); // stop the poller new Thread(() -> { appendResult(R.string.message_PollerStopping); if (MainActivity.device != null) { // stop the poller thread MainActivity.device.stopAndJoin(); } if (!BluetoothManager.getInstance().isConnected()) { appendResult(R.string.message_NoConnection); return; } appendResult(MainActivity.getStringSingle(R.string.message_Ready)); }).start(); } protected void initListeners() { // the poller is stopped. No fields will be updated } // initialize the keeplive timer private void testerKeepalive() { ticker = Calendar.getInstance().getTimeInMillis(); } // check if we need to ie keep the gateway open, keep diadnostic sessions, testerpresent, etc private void testerKeepalive(Ecu ecu) { if (!ecu.getSessionRequired() && !MainActivity.isPh2()) return; // quit ticker if no gateway and no session if (Calendar.getInstance().getTimeInMillis() < ticker) return; // then, quit if no timeout if (MainActivity.isPh2() && MainActivity.pokeSecureGateway) { // open the gateway MainActivity.device.requestFrame(Frames.getInstance().getById(0x18daf1d2, "5003")); } // TODO: we should use KeepAlive here MainActivity.device.requestFrame(Frames.getInstance().getById(ecu.getFromId(), ecu.getStartDiag())); ticker = ticker + 3000; } private boolean testerInit(Ecu ecu) { if (!ecu.getSessionRequired()) return true; String filter = Integer.toHexString(ecu.getFromId()); // we are a testerInit appendResult(MainActivity.getStringSingle(R.string.message_StartTestSession) + " (testerInit)\n"); Field field = Fields.getInstance().getBySID(filter + "." + ecu.getStartDiag() + ".0"); if (field != null) { // query the Field Message message = MainActivity.device.requestFrame(field.getFrame()); if (!message.isError()) { String backRes = message.getData(); // check the response if (backRes.toLowerCase().startsWith(ecu.getStartDiag())) { testerKeepalive(); // start the keepalive timer return true; } else { appendResult("Start Diag Session, unexpected result [" + backRes + "]\n"); } } else { appendResult("Start Diag Session, error result [" + message.getError() + "]\n"); } } else { appendResult(R.string.message_NoTestSessionField); } return false; } private void doQueryEcu(final Ecu ecu) { clearResult(); if (ecu == null) { appendResult("No ECU selected\n"); return; } appendResult("Query " + ecu.getName() + " (renault ID:" + ecu.getRenaultId() + ")\n"); // here initialize this particular ECU diagnostics fields try { //Object diagEcu = Class.forName("lu.fisch.canze.actors.EcuDiag" + ecu.getMnemonic()).newInstance(); //java.lang.reflect.Method methodLoad; //methodLoad = diagEcu.getClass().getMethod("load"); //methodLoad.invoke(diagEcu); Frames.getInstance().load (ecu); Fields.getInstance().load(MainActivity.getAssetPrefix() + ecu.getMnemonic() + "_Fields.csv"); Dtcs.getInstance().load(MainActivity.getAssetPrefix() + ecu.getMnemonic() + "_Dtcs.csv", MainActivity.getAssetPrefix() + ecu.getMnemonic() + "_Tests.csv"); } catch (Exception e) { appendResult(R.string.message_NoEcuDefinition); // Reload the default frame & timings Frames.getInstance().load(); Fields.getInstance().load(); // Don't care about DTC's and tests } // re-initialize the device appendResult(R.string.message_SendingInit); // try to stop previous thread if (queryThread != null) if (queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch (Exception e) { Crashlytics.logException(e); MainActivity.debug(e.getMessage()); } } queryThread = new StoppableThread(() -> { Field field; String filter; Message message; String backRes; if (MainActivity.device == null) { appendResult(R.string.message_NoConnection); return; } if (!MainActivity.device.initDevice(1)) { appendResult(R.string.message_InitFailed); return; } // still trying desperately to get to the BCB!!!1 if (!testerInit(ecu)) { appendResult(R.string.message_InitFailed); return; } // get the from ID from the selected ECU filter = Integer.toHexString(ecu.getFromId()); boolean onePrinted = false; for (String getDtc : ecu.getGetDtcs().split(";")) { testerKeepalive(ecu); // compile the field query and get the Field object appendResult(MainActivity.getStringSingle(R.string.message_GetDtcs) + getDtc + "]\n"); field = Fields.getInstance().getBySID(filter + "." + getDtc + ".16"); // get DTC if (field != null) { // query the Field message = MainActivity.device.requestFrame(field.getFrame()); if (!message.isError()) { // check the response backRes = message.getData(); if (backRes.startsWith("59")) { // loop trough all DTC's // format of the message is // blocks of 4 bytes // first 2 bytes is the DTC // first nibble of DTC is th P0 etc encoding, but we are nit using that // next byte is the test that triggered the DTC // next byte contains the flags // All decoding is done in the Dtcs class for (int i = 6; i < backRes.length() - 7; i += 8) { // see if we need to stop right now if (((StoppableThread) Thread.currentThread()).isStopped()) return; try { int flags = Integer.parseInt(backRes.substring(i + 6, i + 8), 16); // exclude 50 / 10 as it means something like "I have this DTC code, but I have never tested it" if (flags != 0x50 && flags != 0x10) { onePrinted = true; appendResult( "\n*** DTC" + backRes.substring(i, i + 6) + " (" + Dtcs.getInstance().getDisplayCodeById(backRes.substring(i, i + 6)) + ") ***\n" + Dtcs.getInstance().getDescriptionById(backRes.substring(i, i + 6)) + "\nFlags:" + Dtcs.getInstance().getFlagDescription(flags) ); } } catch (Exception e) { onePrinted = true; appendResult( "\n*** DTC uninterpretable;" + backRes.substring(i, i + 8) + ") ***\n" + e.getMessage() ); } } } else { appendResult(MainActivity.getStringSingle(R.string.message_UnexpectedResult) + backRes + "]\n"); } } else { appendResult(MainActivity.getStringSingle(R.string.message_UnexpectedResult) + message.getError() + "]\n"); } } else { appendResult(R.string.message_NoGetDtcsField); } } if (!onePrinted) appendResult(R.string.message_NoActiveDtcs); }); queryThread.start(); } private void doClearEcu(final Ecu ecu) { clearResult(); if (ecu == null) { appendResult("No ECU selected\n"); return; } appendResult(MainActivity.getStringSingle(R.string.message_clear) + ecu.getName() + " (renault ID:" + ecu.getRenaultId() + ")\n"); // here initialize this particular ECU diagnostics fields try { //Object diagEcu = Class.forName("lu.fisch.canze.actors.EcuDiag" + ecu.getMnemonic()).newInstance(); //java.lang.reflect.Method methodLoad; //methodLoad = diagEcu.getClass().getMethod("load"); //methodLoad.invoke(diagEcu); Frames.getInstance().load (ecu); Fields.getInstance().load (MainActivity.getAssetPrefix() + ecu.getMnemonic() + "_Fields.csv"); } catch (Exception e) { appendResult(R.string.message_NoEcuDefinition); // Reload the default frame & timings Frames.getInstance().load(); Fields.getInstance().load(); // Don't care about DTC's and tests } // re-initialize the device appendResult(R.string.message_SendingInit); // try to stop previous thread if (queryThread != null) if (queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch (Exception e) { MainActivity.debug(e.getMessage()); } } queryThread = new StoppableThread(() -> { Field field; Frame frame; String filter; // get the from ID from the selected ECU filter = Integer.toHexString(ecu.getFromId()); // compile the field query and get the Field object field = Fields.getInstance().getBySID(filter + ".54ffffff.0"); // get DTC Clear if (field == null) { appendResult(R.string.message_NoClearDtcField); return; } frame = field.getFrame(); // re-initialize the device appendResult(R.string.message_SendingInit); if (!MainActivity.device.initDevice(1)) { appendResult(R.string.message_InitFailed); return; } testerInit(ecu); testerKeepalive(); // query the Field Message message = MainActivity.device.requestFrame(frame); if (message.isError()) { appendResult(message.getError()); return; } String backRes = message.getData(); // check the response if (!backRes.startsWith("54")) { appendResult(MainActivity.getStringSingle(R.string.message_UnexpectedResult) + backRes + "]\n"); return; } appendResult(R.string.message_ClearSuccessful); }); queryThread.start(); } // Ensure all UI updates are done on the UiThread private void clearResult() { runOnUiThread(() -> textView.setText("")); } private void appendResult(final String str) { if (dumpInProgress) log(str); runOnUiThread(() -> textView.append(str)); } private void appendResult(int strResource) { String localStr = MainActivity.getStringSingle(strResource); appendResult(localStr); } private void log(String text) { if (!dumpInProgress) return; try { bufferedDumpWriter.append(text); bufferedDumpWriter.append(System.getProperty("line.separator")); } catch (IOException e) { e.printStackTrace(); } } private void createDump(Ecu ecu) { dumpInProgress = false; SimpleDateFormat sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHMS), Locale.getDefault()); // ensure that there is a CanZE Folder in SDcard if (!MainActivity.getInstance().isExternalStorageWritable()) { debug("DiagDump: SDcard not writeable"); return; } String file_path = MainActivity.getInstance().getExternalFolder(); File dir = new File(file_path); if (!dir.exists()) { if (!dir.mkdirs()) { debug("DiagDump: Can't create directory:" + file_path); return; } } debug("DiagDump: file_path:" + file_path); // SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss"); String exportdataFileName = file_path + ecu.getMnemonic() + "-" + sdf.format(Calendar.getInstance().getTime()) + ".txt"; File logFile = new File(exportdataFileName); if (!logFile.exists()) { try { if (!logFile.createNewFile()) { debug("DiagDump: Can't create file:" + exportdataFileName); return; } debug("DiagDump: NewFile:" + exportdataFileName); } catch (IOException e) { e.printStackTrace(); } } try { //BufferedWriter for performance, true to set append to file flag bufferedDumpWriter = new BufferedWriter(new FileWriter(logFile, true)); dumpInProgress = true; MainActivity.toast (MainActivity.TOAST_NONE, MainActivity.getStringSingle(R.string.format_DumpWriting), exportdataFileName); } catch (IOException e) { e.printStackTrace(); } } private void closeDump() { try { if (dumpInProgress) { bufferedDumpWriter.close(); if (!isFinishing()) MainActivity.toast (MainActivity.TOAST_NONE, "Done."); // resources } } catch (IOException e) { e.printStackTrace(); } } // UI elements @Override protected void onDestroy() { // stop the query thread if still running if (queryThread != null) if (queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch (Exception e) { MainActivity.debug(e.getMessage()); } } closeDump(); // Reload the frame & timings Frames.getInstance().load(); Fields.getInstance().load(); // restart the poller if (MainActivity.device != null) { MainActivity.device.initConnection(); // register application wide fields MainActivity.getInstance().registerApplicationFields(); } super.onDestroy(); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/ElmTestActivity.java ================================================ package lu.fisch.canze.activities; import android.os.Bundle; import android.view.Menu; import android.widget.TextView; import lu.fisch.canze.R; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.actors.Message; import lu.fisch.canze.bluetooth.BluetoothManager; /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ public class ElmTestActivity extends CanzeActivity { private TextView textView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_elm_test); textView = findViewById(R.id.textResult); new Thread(new Runnable() { @Override public void run() { appendResult(MainActivity.getStringSingle(R.string.message_PollerStopping)); if (MainActivity.device != null){ // stop the poller thread MainActivity.device.stopAndJoin(); } if (!BluetoothManager.getInstance().isConnected()) { appendResult(MainActivity.getStringSingle(R.string.message_NoConnection)); return; } doTest(); } }).start(); } protected void initListeners () {} private void doTest () { Field field; Message message; String backRes; clearResult(); appendResult(R.string.message_SendingInit); if (!MainActivity.device.initDevice(1)) { appendResult(MainActivity.getStringSingle(R.string.message_InitFailed)); appendResult(MainActivity.getStringSingle(R.string.message_Problem) + MainActivity.device.getLastInitProblem() + "\n"); return; } appendResult(R.string.message_ExpectedResult); appendResult(R.string.message_PrepIsoTp); field = Fields.getInstance().getBySID("763.6180.144"); if (field == null) { appendResult(R.string.message_FieldNotExists); return; } message = MainActivity.device.requestFrame(field.getFrame()); if (message.isError()) { appendResult(message.getError() + "\n"); return; } backRes = message.getData(); if (backRes.equals("")) { appendResult(R.string.message_ResultEmpty); return; } if (!backRes.startsWith("6180")) { appendResult(MainActivity.getStringSingle(R.string.message_UnexpectedResult) + backRes.replace('\r', '•') + "]\n"); return; } appendResult(R.string.message_ExpectedResult); appendResult(""); if (MainActivity.altFieldsMode) { appendResult(R.string.message_NoFreeTesting); appendResult(R.string.message_DevicePassed); return; } appendResult(R.string.message_PrepFree); field = Fields.getInstance().getBySID("4f8.4"); if (field == null) { appendResult(R.string.message_FieldNotExists); return; } message = MainActivity.device.requestFrame(field.getFrame()); if (message.isError()) { appendResult(R.string.message_MessageNull); return; } backRes = message.getData(); if (backRes.equals("")) { appendResult(R.string.message_ResultEmpty); return; } //if (backRes.length() != 10) { if (backRes.startsWith("-")) { appendResult(MainActivity.getStringSingle(R.string.message_UnexpectedResult) + backRes.replace('\r', '•') + "]\n"); return; } appendResult(R.string.message_ExpectedResult); appendResult(R.string.message_DevicePassed); } // Ensure all UI updates are done on the UiThread private void clearResult() { runOnUiThread(new Runnable() { @Override public void run() { textView.setText(""); } }); } private void appendResult(String str) { final String localStr = str; runOnUiThread(new Runnable() { @Override public void run() { textView.append(localStr); } }); } private void appendResult(int strResource) { final String localStr = MainActivity.getStringSingle(strResource); runOnUiThread(new Runnable() { @Override public void run() { textView.append(localStr); } }); } // UI elements @Override protected void onDestroy() { // restart the poller if(MainActivity.device!=null) MainActivity.device.initConnection(); super.onDestroy(); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/FieldTestActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.widget.ProgressBar; import android.widget.TextView; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; public class FieldTestActivity extends CanzeActivity implements FieldListener, DebugListener { // ISO-TP data private static final String SID_1 = "77e.623025.24"; // PEBTorque ==>>> total torque, positive or negative, on the motor axle private static final String SID_2 = "7ec.622247.24"; // Minimum effective torque that can be requested to the electrical motor (EM) ==> this is the blue bar, negative value //private static final String SID_2 = "7ec.622243.24"; // Final effective torque request to the electric motor (EM) ==> Same but only braking, becomes -2048 when not braking/coasting private static final String SID_3 = "7ec.62202e.24"; // Pedal //private static final String SID_3 = "7ec.622246.24"; // Electrical motor (EM) maximum effective torque available ==> not usable //private static final String SID_4 = "7ec.622245.24"; // Limited electrical motor (EM) effective torque setpoint private static final String SID_4 = "7bc.624b7d.28"; // Total Hydraulic brake wheels torque request //private static final String SID_11 = "7ec.623451.24"; // Total Hydraulic brake wheels torque request //private static final String SID_12 = "7ec.623455.24"; //private static final String SID_13 = "7ec.623457.24"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_fieldtest); } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); addField(SID_1); addField(SID_2); addField(SID_3); addField(SID_4); //addField(SID_11); //addField(SID_12); //addField(SID_13); } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String fieldId = field.getSID(); double val = field.getValue(); TextView tv = null; ProgressBar pb = null; // get the text field switch (fieldId) { case SID_1: tv = findViewById(R.id.tv_test_1); pb = findViewById(R.id.pb_test_1); val *= MainActivity.reduction; break; case SID_2: tv = findViewById(R.id.tv_test_2); pb = findViewById(R.id.pb_test_2); val *= MainActivity.reduction; break; case SID_3: tv = findViewById(R.id.tv_test_3); pb = findViewById(R.id.pb_test_3); break; case SID_4: tv = findViewById(R.id.tv_test_4); pb = findViewById(R.id.pb_test_4); break; //case SID_11: // tv = findViewById(R.id.tv_test_11); // pb = null; // break; //case SID_12: // tv = findViewById(R.id.tv_test_12); // pb = null; // break; //case SID_13: // tv = findViewById(R.id.tv_test_13); // pb = null; // break; } // set regular new content, all exceptions handled above if (tv != null) { tv.setText(String.format(Locale.getDefault(), "%s:%." + field.getDecimals() + "f%s\n", field.getName(), field.getValue(), field.getUnit())); } if (pb != null) { pb.setProgress((int)(val)); } } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/FirmwareActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.annotation.SuppressLint; import android.content.pm.ActivityInfo; import android.content.res.Configuration; import android.os.Bundle; import android.text.Html; import android.text.method.LinkMovementMethod; import android.util.TypedValue; import android.view.View; import android.view.View.OnClickListener; import android.widget.LinearLayout; import android.widget.ProgressBar; import android.widget.ScrollView; import android.widget.TextView; import android.widget.Button; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Locale; import lu.fisch.canze.BuildConfig; import lu.fisch.canze.R; import lu.fisch.canze.actors.Ecu; import lu.fisch.canze.actors.Ecus; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.actors.Frame; import lu.fisch.canze.actors.Frames; import lu.fisch.canze.actors.Message; import lu.fisch.canze.actors.StoppableThread; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; import static lu.fisch.canze.activities.MainActivity.debug; // Jeroen public class FirmwareActivity extends CanzeActivity implements FieldListener, DebugListener { // displays firmware version of an eCU, or // writes firmware version of all ECUs to a CSv private StoppableThread queryThread; private BufferedWriter bufferedDumpWriter = null; private boolean dumpInProgress = false; private long ticker = 0; @SuppressLint("StringFormatMatches") @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_firmware); int index = 0; for (Ecu ecu : Ecus.getInstance().getAllEcus()) { // ensure we are only selecting true (as in physical boxes) and reachable (as in, i.e. skipping R-LINK) ECU's if (ecu.getFromId() > 0 && ecu.getFromId() != 0x800 && ecu.getFromId() != 0x801 && (!BuildConfig.BRANCH.equals("master") || ( !ecu.getAliases().contains("AIRBAG") && !ecu.getAliases().contains("ESC")) )) { TextView tv; tv = findViewById(getResources().getIdentifier("lEcu" + index, "id", getPackageName())); if (tv != null) { final Ecu thisEcu = ecu; tv.setText(ecu.getMnemonic() + " (" + ecu.getName() + ")"); tv.setOnClickListener(v -> { if(dumpInProgress) return; showSelected (v); // clear out previous values an the selection bar, and set the new bar doGetOneFirmware(thisEcu); // get the new values and populate }); index++; } else { MainActivity.toast(MainActivity.TOAST_NONE, MainActivity.getStringSingle(R.string.format_NoView), "lEcu", Integer.toString (index)); } } } final Button btnCsvSave = findViewById(R.id.csvFirmware); btnCsvSave.setOnClickListener(v -> doGetAllFirmware()); TextView textView = findViewById(R.id.link); textView.setText(Html.fromHtml(MainActivity.getStringSingle(R.string.help_Ecus))); textView.setMovementMethod(LinkMovementMethod.getInstance()); setDoRestartQueueOnResume(false); new Thread(() -> { if (MainActivity.device != null) { // stop the poller thread // note tht for the ZE50, the gateway is now not triggered MainActivity.device.stopAndJoin(); } }).start(); } private void showSelected (View v) { View tv; int bgColor = 0xfff3f3f3; TypedValue a = new TypedValue(); getTheme().resolveAttribute(android.R.attr.windowBackground, a, true); if (a.type >= TypedValue.TYPE_FIRST_COLOR_INT && a.type <= TypedValue.TYPE_LAST_COLOR_INT) { bgColor = a.data; } // deselect bg color ecu list for (int index = 0; (tv = findViewById(getResources().getIdentifier("lEcu" + index, "id", getPackageName())))!= null ; index++) { tv.setBackgroundColor(bgColor); } /* for (Ecu ecu : Ecus.getInstance().getAllEcus()) { if (ecu.getFromId() > 0 && ecu.getFromId() < 0x800) { tv = findViewById(getResources().getIdentifier("lEcu" + Integer.toHexString(ecu.getFromId()).toLowerCase(), "id", getPackageName())); if (tv != null) { tv.setBackgroundColor(bgColor); } } } */ // set bg selected ecu v.setBackgroundColor(0xff808080); // selected color // clear out old values setSoftwareValue(R.id.textDiagVersion, null, ""); setSoftwareValue(R.id.textSupplier, null, ""); setSoftwareValue(R.id.textSoft, null, ""); setSoftwareValue(R.id.textVersion, null, ""); } private void doGetOneFirmware (final Ecu ecu) { // try to stop previous thread if(queryThread!=null) { if (queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch (Exception e) { MainActivity.debug(e.getMessage()); } } } // clear out the result fields from previous results setSoftwareValue(R.id.textDiagVersion, null, null); setSoftwareValue(R.id.textSupplier, null, null); setSoftwareValue(R.id.textSoft, null, null); setSoftwareValue(R.id.textVersion, null, null); queryThread = new StoppableThread(() -> { if (MainActivity.isPh2() && MainActivity.pokeSecureGateway) { // open the gateway, as the poller is stopped queryFrame(getFrame(0x18daf1d2, "5003")); } if (ecu.getSessionRequired()) { // open the ecu, as the poller is stopped queryFrame(getFrame(ecu.getFromId(), ecu.getStartDiag())); } // get the info processOneEcu(ecu, R.id.textDiagVersion, R.id.textSupplier, R.id.textSoft, R.id.textVersion); }); queryThread.start(); } private void doGetAllFirmware(){ // try to stop previous thread if(queryThread!=null) { if (queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch (Exception e) { MainActivity.debug(e.getMessage()); } } } queryThread = new StoppableThread(() -> { freezeOrientation(); Frame frame; displayProgress(true, R.id.progressBar_cyclic3, R.id.csvFirmware); // re-initialize the device if (!MainActivity.device.initDevice(1)) { return; } createDump(); ticker = Calendar.getInstance().getTimeInMillis(); log("ECU, Version Type, Version data"); if (MainActivity.isPh2() && MainActivity.pokeSecureGateway) { frame = getFrame(0x18daf1d2, "5003"); // open the gateway, as the poller is stopped queryFrame(frame); } for (Ecu ecu : Ecus.getInstance().getAllEcus()) { // see if we need to stop right now if (((StoppableThread) Thread.currentThread()).isStopped()) return; if (ecu.getFromId() > 0 && (ecu.getFromId() < 0x800 || ecu.getFromId() >= 0x900)) { keepAlive(); if (ecu.getSessionRequired()) { frame = getFrame(ecu.getFromId(), ecu.getStartDiag()); // open the ecu, as the poller is stopped queryFrame(frame); } processOneEcu(ecu, 0, 0, 0, 0); } } closeDump(); displayProgress(false, R.id.progressBar_cyclic3, R.id.csvFirmware); }); queryThread.start(); } private void processOneEcu (Ecu ecu, int idDiag, int idSupplier, int idSoft, int idVersion) { // query the Frame Frame frame = getFrame(ecu.getFromId(), "6180"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { for (Field field : frame.getAllFields()) { switch (field.getFrom()) { case 56: setSoftwareValue(idDiag, field, ecu.getMnemonic() + ", diagVersion"); break; case 64: setSoftwareValue(idSupplier, field, ecu.getMnemonic() + ", supplier"); break; case 128: setSoftwareValue(idSoft, field, ecu.getMnemonic() + ", soft"); break; case 144: setSoftwareValue(idVersion, field, ecu.getMnemonic() + ", version"); break; } } } return; } // else 2nd approach frame = getFrame(ecu.getFromId(), "62f1a0"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idDiag, field, ecu.getMnemonic() + ", diagVersion"); } } frame = getFrame(ecu.getFromId(), "62f18a"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idSupplier, field, ecu.getMnemonic() + ", supplier"); } } frame = getFrame(ecu.getFromId(), "62f194"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idSoft, field, ecu.getMnemonic() + ", soft:"); } } frame = getFrame(ecu.getFromId(), "62f195"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idVersion, field, ecu.getMnemonic() + ", version:"); } } } private Frame getFrame (int fromId, String responseId) { Frame frame = Frames.getInstance().getById(fromId, responseId); if (frame == null) { MainActivity.getInstance().dropDebugMessage(String.format(Locale.getDefault(), "Frame for this ECU %X.%s not found", fromId, responseId)); return null; } MainActivity.getInstance().dropDebugMessage(frame.getFromIdHex() + "." + frame.getResponseId()); return frame; } private Frame queryFrame (Frame frame) { if (frame == null) return null; Message message = MainActivity.device.requestFrame(frame); // field.getFrame()); if (message.isError()) { MainActivity.getInstance().dropDebugMessage(message.getError()); return null; } MainActivity.debug("msg:" + message.getData()); message.onMessageCompleteEvent(); // set the value of all fields in the frame of this message return frame; } private void setSoftwareValue(final int id, final Field field, final String label) { final String toDisplay; if (field == null) { toDisplay = ""; } else if (field.isString()) { toDisplay = label + ":" + field.getStringValue(); } else if ((field.getTo() - field.getFrom()) < 8) { toDisplay = label + String.format(Locale.getDefault(), ":%02X", (int)field.getValue()); } else { toDisplay = label + String.format(Locale.getDefault(), ":%04X", (int)field.getValue()); } if (id == 0) { //log log (toDisplay); return; } runOnUiThread(() -> { TextView tv = findViewById(id); if (tv != null) { tv.setText(toDisplay); } }); } private void log(String text) { if (!dumpInProgress) return; try { bufferedDumpWriter.append(text); bufferedDumpWriter.append(System.getProperty("line.separator")); } catch (IOException e) { e.printStackTrace(); } } private void createDump() { dumpInProgress = false; if (!MainActivity.storageIsAvailable) { debug("FirmwareActivity.createDump: SDcard not available"); return; } // ensure that there is a CanZE Folder in SDcard if (!MainActivity.getInstance().isExternalStorageWritable()) { debug("FirmwareActivity.createDump: SDcard not writeable"); return; } String file_path = MainActivity.getInstance().getExternalFolder(); File dir = new File(file_path); if (!dir.exists()) { if (!dir.mkdirs()) { debug("DiagDump: Can't create directory:" + file_path); return; } } debug("DiagDump: file_path:" + file_path); SimpleDateFormat sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHMS), Locale.getDefault()); String exportdataFileName = file_path + "Firmwares-" + sdf.format(Calendar.getInstance().getTime()) + ".csv"; File logFile = new File(exportdataFileName); if (!logFile.exists()) { try { if (!logFile.createNewFile()) { debug("DiagDump: Can't create file:" + exportdataFileName); return; } debug("DiagDump: NewFile:" + exportdataFileName); } catch (IOException e) { e.printStackTrace(); return; } } try { //BufferedWriter for performance, true to set append to file flag bufferedDumpWriter = new BufferedWriter(new FileWriter(logFile, true)); dumpInProgress = true; if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, MainActivity.getStringSingle(R.string.format_DumpWriting), exportdataFileName); } catch (IOException e) { e.printStackTrace(); } } private void keepAlive() { if (!MainActivity.isPh2()) return; // quit ticker if no gateway and no session if (Calendar.getInstance().getTimeInMillis() < ticker) return; // then, quit if no timeout if (MainActivity.isPh2() && MainActivity.pokeSecureGateway) { // open the gateway MainActivity.device.requestFrame(Frames.getInstance().getById(0x18daf1d2, "5003")); } ticker = ticker + 3000; } private void closeDump() { try { if (dumpInProgress) { bufferedDumpWriter.close(); if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Done."); } } catch (IOException e) { e.printStackTrace(); } } // UI elements private void displayProgress(final boolean on, final int id_spinner, final int id_button) { // remove progress spinners runOnUiThread(() -> { ProgressBar pb = findViewById(id_spinner); if (pb != null){ pb.setVisibility(on ? View.VISIBLE : View.GONE);} Button btn = findViewById(id_button); if (btn != null){btn.setEnabled(!on);} }); } @SuppressLint("SourceLockedOrientationActivity") // this is done to avoid restarting the long running activity private void freezeOrientation () { int rotation = getWindowManager().getDefaultDisplay().getRotation(); switch (getResources().getConfiguration().orientation) { case Configuration.ORIENTATION_PORTRAIT: if (rotation == android.view.Surface.ROTATION_90 || rotation == android.view.Surface.ROTATION_180) { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT); } else { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); } break; case Configuration.ORIENTATION_LANDSCAPE: if (rotation == android.view.Surface.ROTATION_0 || rotation == android.view.Surface.ROTATION_90) { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); } else { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE); } break; } } @Override protected void onDestroy() { // stop the query thread if still running if(queryThread!=null) if(queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch(Exception e) { MainActivity.debug(e.getMessage()); } } closeDump(); // Reload the frame & timings Frames.getInstance().load(); Fields.getInstance().load(); // restart the poller if (MainActivity.device != null) { MainActivity.device.initConnection(); // register application wide fields MainActivity.getInstance().registerApplicationFields(); } super.onDestroy(); } protected void initListeners () { MainActivity.getInstance().setDebugListener(this); } @Override public void onFieldUpdateEvent(final Field field) { // do nothing, no fields will ne updated } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/HeatmapBatcompActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.content.res.Resources; import android.os.Bundle; import android.util.TypedValue; import android.widget.TextView; import androidx.annotation.ColorInt; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; /** * Heatmap by jeroen on 27-10-15. */ public class HeatmapBatcompActivity extends CanzeActivity implements FieldListener, DebugListener { private double mean = 0; private final double[] lastVal = {0,15,15,15,15,15,15,15,15,15,15,15,15}; private final int lastCell = 12; //4; @ColorInt private int baseColor; private boolean dark; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //setContentView(MainActivity.isZOE() ? R.layout.activity_heatmap_batcomp : R.layout.activity_heatmap_batcomp2); setContentView(R.layout.activity_heatmap_batcomp); TypedValue typedValue = new TypedValue(); Resources.Theme theme = this.getTheme(); theme.resolveAttribute(R.attr.colorButtonNormal, typedValue, true); baseColor = typedValue.data; dark = ((baseColor & 0xff0000) <= 0xa00000); } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); //if(MainActivity.isZOE()) { // lastCell = 12; //} for (int i = 1; i <= lastCell; i++) { String sid = Sid.Preamble_CompartmentTemperatures + (8 + i * 24); // remember, first is pos 32, i starts s at 1 addField(sid, 5000); } } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { final String fieldId = field.getSID(); // get the text field if (fieldId.startsWith(Sid.Preamble_CompartmentTemperatures)) { int cell = (Integer.parseInt(fieldId.split("[.]")[2]) - 8) / 24; // cell is 1-based final double value = field.getValue(); lastVal[cell] = value; // calculate the mean value of the previous full round if (cell == lastCell) { mean = 0; for (int i = 1; i <= lastCell; i++) { mean += lastVal[i]; } mean /= lastCell; // the update has to be done in a separate thread // otherwise the UI will not be repainted doing that here only when the entire temperature array is (supposed to be) in, runOnUiThread(new Runnable() { @Override public void run() { for (int i = 1; i <= lastCell; i++) { TextView tv = findViewById(getResources().getIdentifier("text_comp_" + i + "_temp", "id", getPackageName())); if (tv != null) { // tv.setText("" + lastVal[i]); tv.setText(String.format(Locale.getDefault(), "%.0f", lastVal[i])); int delta = (int) (50 * (lastVal[i] - mean)); // color is temp minus mean tv.setBackgroundColor(makeColor (delta)); } } } }); } } } private @ColorInt int makeColor (int delta) { @ColorInt int color = baseColor; if (delta > 62) delta = 62; else if (delta < -62) delta = -62; if (dark) { if (delta > 0) { return baseColor + (delta * 0x010000); // one tick is one red } else { return baseColor - (delta * 0x000001); // one degree below is a 16th blue added } } else { // light if (delta > 0) { return baseColor - (delta * 0x000101); // one tick is one red } else { return baseColor + (delta * 0x010100); // one degree below is a 16th blue added } } } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/HeatmapCellvoltageActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.content.res.Resources; import android.graphics.Paint; import android.os.Bundle; import android.util.TypedValue; import android.widget.TextView; import androidx.annotation.ColorInt; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; /** * Heatmap by jeroen on 27-10-15. */ public class HeatmapCellvoltageActivity extends CanzeActivity implements FieldListener, DebugListener { private double mean = 0; private double lowest, highest; private double cutoff; private final double[] lastVoltage = {0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}; private final boolean[] balancingBits = new boolean[97]; private final int lastCell = 96; @ColorInt private int baseColor; private boolean dark; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_heatmap_cellvoltage); TypedValue typedValue = new TypedValue(); Resources.Theme theme = this.getTheme(); theme.resolveAttribute(R.attr.colorButtonNormal, typedValue, true); baseColor = typedValue.data; dark = ((baseColor & 0xff0000) <= 0xa00000); } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); // Battery compartment temperatures for (int i = 1; i <= 62; i++) { String sid = Sid.Preamble_CellVoltages1 + (i * 16); // remember, first is pos 16, i starts at 1 addField(sid); } for (int i = 63; i <= 96; i++) { String sid = Sid.Preamble_CellVoltages2 + ((i - 62) * 16); // remember, first is pos 16, i starts at 1 addField(sid); } for (int i = 0; i < 12; i++) { String sid = Sid.Preamble_BalancingBytes + ((i + 2) * 8); // remember, first is pos 16, i starts at 0 addField(sid); } } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { // get the text field final String fieldId = field.getSID(); int cell = 0; if (fieldId.startsWith(Sid.Preamble_CellVoltages1)) { cell = (Integer.parseInt(fieldId.split("[.]")[2])) / 16; // cell is 1-based } else if (fieldId.startsWith(Sid.Preamble_CellVoltages2)) { cell = (Integer.parseInt(fieldId.split("[.]")[2])) / 16 + 62; // cell is 1-based } else if (fieldId.startsWith(Sid.Preamble_BalancingBytes)) { cell = (Integer.parseInt(fieldId.split("[.]")[2])) / 8 - 2; // cell is 0-based int mask = 0b10000000; int value = (int) field.getValue(); for (int i = 0; i < 8; i++) { balancingBits[cell * 8 + i + 1] = ((value & mask) != 0); mask = mask >> 1; } return; } if (cell > 0 && cell <= lastCell) { final double value = field.getValue(); lastVoltage[cell] = value; if (cell == lastCell) { mean = 0; lowest = 5; highest = 3; // lastVoltage[20] = 3.5; fake for test for (int i = 1; i <= lastCell; i++) { mean += lastVoltage[i]; if (lastVoltage[i] < lowest ) lowest = lastVoltage[i]; if (lastVoltage[i] > highest) highest = lastVoltage[i]; } mean /= lastCell; cutoff = lowest < 3.712 ? mean - (highest - mean) * 1.5 : 2; // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { for (int i = 1; i <= lastCell; i++) { TextView tv = findViewById(getResources().getIdentifier("text_cell_" + i + "_voltage", "id", getPackageName())); if (tv != null) { // tv.setText(String.format("%.3f", lastVoltage[i])); if (balancingBits[i]) { tv.setPaintFlags(tv.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG); } else { tv.setPaintFlags(tv.getPaintFlags() & (~Paint.UNDERLINE_TEXT_FLAG)); } tv.setText(String.format(Locale.getDefault(), "%.3f", lastVoltage[i])); int delta = (int) (5000 * (lastVoltage[i] - mean)); // color is temp minus mean. 1mV difference is 5 color ticks tv.setBackgroundColor(makeColor (delta)); } } // Only update the high-low if we have realistic data if (highest >= lowest) { TextView tv = findViewById(R.id.text_CellVoltageTop); if (tv != null) { tv.setText(String.format("%.3f", highest)); } tv = findViewById(R.id.text_CellVoltageBottom); if (tv != null) { tv.setText(String.format("%.3f", lowest)); } tv = findViewById(R.id.text_CellVoltageDelta); if (tv != null) { tv.setText(String.format("%d", Math.round(1000 * (highest - lowest)))); } } } }); } return; } } private @ColorInt int makeColor (int delta) { @ColorInt int color = baseColor; if (delta > 62) delta = 62; else if (delta < -62) delta = -62; if (dark) { if (delta > 0) { return baseColor + (delta * 0x010000); // one tick is one red } else { return baseColor - (delta * 0x000001); // one degree below is a 16th blue added } } else { // light if (delta > 0) { return baseColor - (delta * 0x000101); // one tick is one red } else { return baseColor + (delta * 0x010100); // one degree below is a 16th blue added } } } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/LeakCurrentsActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.interfaces.DebugListener; public class LeakCurrentsActivity extends CanzeActivity implements DebugListener { // Bcbtesterinit and -awake are hardcoded here, but shoud of course be optionally taken from // the ECU getSessionRequired and getStartDiag. However, since the BCB fields are aliassed in // Ph2 to the 11 bits address, we leave it like this for now /* Todo Add unaliased settings for BCB tester fields in _FieldsPh2, and make tester logic here use the formal ECU settings */ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_leak_currents); } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); addField(Sid.BcbTesterInit, lu.fisch.canze.devices.Device.INTERVAL_ONCE); addField(Sid.BcbTesterAwake, 1500); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/LoggingActivity.java ================================================ package lu.fisch.canze.activities; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.ListView; import android.widget.Spinner; import lu.fisch.canze.R; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.adapters.FieldAdapter; import lu.fisch.canze.classes.LoggingLogger; public class LoggingActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_logging); MainActivity.debug("LoggingActivity: onCreate"); // load logging logger LoggingLogger.getInstance(); updateList(); ArrayAdapter arrayFieldAdapter; final Spinner field = findViewById(R.id.field); arrayFieldAdapter = new ArrayAdapter<>(this,android.R.layout.simple_list_item_1); arrayFieldAdapter.add(Fields.getInstance().getBySID("5d7.0")); // speed arrayFieldAdapter.add(Fields.getInstance().getBySID("800.6109.24")); // power field.setAdapter(arrayFieldAdapter); ArrayAdapter arrayStringAdapter; final Spinner interval = findViewById(R.id.interval); arrayStringAdapter = new ArrayAdapter<>(this,android.R.layout.simple_list_item_1); for(int i = 5; i<30; i+=5) arrayStringAdapter.add(i+" s"); for(int i = 30; i<=120; i+=30) arrayStringAdapter.add(i+" s"); interval.setAdapter(arrayStringAdapter); Button addButton = findViewById(R.id.addButton); addButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { LoggingLogger loggingLogger = LoggingLogger.getInstance(); String intervalString = interval.getSelectedItem().toString(); intervalString = intervalString.replace(" s",""); int interval = Integer.valueOf(intervalString); // add to logger loggingLogger.add((Field) field.getSelectedItem(),interval); updateList(); } }); } private void updateList() { ListView listView = findViewById(R.id.selectedFieldsList); FieldAdapter fieldAdapter = new FieldAdapter(MainActivity.getInstance() ,R.layout.logger_field, LoggingLogger.getInstance().getLoggingFields()); listView.setAdapter(fieldAdapter); /* ArrayAdapter arrayAdapter = new ArrayAdapter<>(this,android.R.layout.simple_list_item_1); LoggingLogger loggingLogger = LoggingLogger.getInstance(); MainActivity.debug("Logger: actual fields in list = "+loggingLogger.size()); for(int i=0; i. */ package lu.fisch.canze.activities; import android.Manifest; import android.annotation.SuppressLint; import android.app.AlertDialog; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothSocket; import android.content.BroadcastReceiver; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.content.IntentFilter; import android.content.SharedPreferences; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; import android.content.res.Configuration; import android.content.res.Resources; import android.graphics.Point; import android.graphics.drawable.AnimationDrawable; import android.os.Build; import android.os.Bundle; import android.os.Environment; import android.os.Handler; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatDelegate; import androidx.core.app.ActivityCompat; import androidx.core.content.ContextCompat; import androidx.viewpager.widget.ViewPager; import androidx.appcompat.app.ActionBar; import androidx.appcompat.app.AppCompatActivity; import android.text.Html; import android.util.Log; import android.view.Display; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.view.Window; import android.view.WindowManager; import android.widget.Button; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.ProgressBar; import android.widget.Toast; //import com.google.firebase.crashlytics.FirebaseCrashlytics; import java.io.File; import java.util.Locale; import java.util.concurrent.ExecutionException; import lu.fisch.canze.BuildConfig; import lu.fisch.canze.R; import lu.fisch.canze.actors.Ecus; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.actors.Frames; import lu.fisch.canze.bluetooth.BluetoothManager; import lu.fisch.canze.classes.Activity; import lu.fisch.canze.classes.ActivityRegistry; import lu.fisch.canze.classes.Crashlytics; import lu.fisch.canze.classes.DataLogger; import lu.fisch.canze.classes.DebugLogger; import lu.fisch.canze.classes.ForegroundCheckTask; import lu.fisch.canze.database.CanzeDataSource; import lu.fisch.canze.devices.CanSee; import lu.fisch.canze.devices.Device; import lu.fisch.canze.devices.ELM327; import lu.fisch.canze.devices.Http; import lu.fisch.canze.interfaces.BluetoothEvent; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; import lu.fisch.canze.ui.AppSectionsPagerAdapter; import me.drakeet.support.toast.ToastCompat; public class MainActivity extends AppCompatActivity implements FieldListener /*, android.support.v7.app.ActionBar.TabListener */ { public static final String TAG = "CanZE"; // SPP UUID service // private static final UUID MY_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"); public final static String PREFERENCES_FILE = "lu.fisch.canze.settings"; public final static String DATA_FILE = "lu.fisch.canze.data"; public final static boolean pokeSecureGateway = false; // MAC-address of Bluetooth module (you must edit this line) private static String bluetoothDeviceAddress = null; private static String bluetoothDeviceName = null; // url of gateway if in use private static String gatewayUrl = null; // public final static int RECEIVE_MESSAGE = 1; public final static int REQUEST_ENABLE_BT = 3; public final static int SETTINGS_ACTIVITY = 7; public final static int LEAVE_BLUETOOTH_ON = 11; // note that the CAR constants are stored in the option property of the field object // this is a short // public static final short CAR_MASK = 0xff; public static final short CAR_NONE = 0x000; //public static final int CAR_ANY = 0x0ff; public static final short CAR_TWINGO = 0x001; public static final short CAR_ZOE_Q210 = 0x002; //public static final short CAR_KANGOO = 0x004; public static final short CAR_TWIZY = 0x008; public static final short CAR_X10PH2 = 0x010; // ZE50 public static final short CAR_ZOE_R240 = 0x020; public static final short CAR_ZOE_Q90 = 0x040; public static final short CAR_ZOE_R90 = 0x080; public static final short FIELD_TYPE_MASK = 0x700; //public static final short FIELD_TYPE_UNSIGNED = 0x000; public static final short FIELD_TYPE_SIGNED = 0x100; public static final short FIELD_TYPE_STRING = 0x200; public static final short FIELD_TYPE_HEXSTRING = 0x400; public static final short FIELD_SELFPROPELLED = 0x800; // Menus public static final int MENU_MAIN = 0; public static final int MENU_TECHNICAL = 1; public static final int MENU_EXPERIMENTAL = 2; public static final int MENU_CUSTOM = 3; public static final double reduction = 9.32; // update suggested by Loc Dao static int screenOrientation = 0; // private StringBuilder sb = new StringBuilder(); // private String buffer = ""; // private int count; // private long start; private SharedPreferences settings = null; private boolean visible = true; public boolean leaveBluetoothOn = false; private boolean returnFromWidget = false; public static final Fields fields = Fields.getInstance(); public static Device device = null; private static MainActivity instance = null; //private static Context context = null; public static boolean safeDrivingMode = true; public static boolean bluetoothBackgroundMode = false; public static boolean debugLogMode = false; public static boolean fieldLogMode = false; // use "debugLogMode" instead //public static boolean dataExportMode = false; public static DataLogger dataLogger = null; // rather use singleton in onCreate public static int car = CAR_NONE; private static boolean isDriving = false; public static boolean milesMode = false; public static boolean altFieldsMode = false; public static final boolean storageIsAvailable = true; public static final short TOAST_NONE = 0; public static final short TOAST_ELM = 1; public static final short TOAST_ELMCAR = 2; public static int toastLevel = TOAST_NONE; // The lower toastlevel is set, the less messages come through private DebugListener debugListener = null; // private Fragment actualFragment; static private Resources res; private Resources.Theme localTheme; // bluetooth stuff private MenuItem bluetoothMenutItem = null; private final static int BLUETOOTH_DISCONNECTED = 21; private final static int BLUETOOTH_SEARCH = 22; private final static int BLUETOOTH_CONNECTED = 23; protected Menu mOptionsMenu; // needed to find BT symbol private int mBtState = BLUETOOTH_SEARCH; private boolean storageGranted = false; private boolean btConnectGranted = false; private boolean btLocationGranted = false; private int startAnotherFragmentIndex = -2; //The BroadcastReceiver that listens for bluetooth broadcasts private final BroadcastReceiver broadcastReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); // BluetoothDevice bluetoothDevice = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action)) { //Device has disconnected // only resume if this activity is also visible // jm: changed to always stop the poller and show state change // but only onResume if we are visible //if (visible) { // stop the poller if (device != null) device.stopAndJoin(); // inform user // setTitle(TAG + " - disconnected"); showBluetoothState(BLUETOOTH_DISCONNECTED); if (!isFinishing()) { toast(R.string.toast_BluetoothLost); } try { // check if application is in foreground // OR // we use background mode if ( (new ForegroundCheckTask()).execute(context).get()==true || bluetoothBackgroundMode==true ) { // try to reconnect (new Thread(new Runnable() { @Override public void run() { reloadBluetooth(false); } })).start(); } else toast("CanZE is sleeping ..."); } catch (ExecutionException e) { toast(e.getMessage()); } catch (InterruptedException e) { toast(e.getMessage()); } //if (visible) onResume(); //} } } }; public static MainActivity getInstance() { if (instance == null) /* TODO I wonder if this is safe beavior. instance should never be null and if it is, something is pretty wrong and it is probably not a good plan to create a new object, unless I am missing something Bob: You are right: in this case instance should never be null! The beneath code is nothing less or more than the singleton-design-pattern. */ instance = new MainActivity(); return instance; } public static void debug(String text) { if (text == null) text = "null"; //if (!BuildConfig.BRANCH.equals("master")) { Log.d(TAG, text); //} if (storageIsAvailable && debugLogMode) { DebugLogger.getInstance().log(text); } } // ***** Toasts ******* public static void toast(int level, final String message) { // the lower the level is set, the higer the prio by convension. TOAST_NONE is the highest prio possible if (level > toastLevel) return; if (instance != null && !instance.isFinishing()) { instance.runOnUiThread(new Runnable() { @Override public void run() { try { Context c = instance.getApplicationContext(); if (c != null) { ToastCompat.makeText(c, message, Toast.LENGTH_SHORT).show(); } } catch (NullPointerException e) { // do nothing. getApplicationContext sometimes trips on a null pointer // exception and when that happens, it's accepable to simply give up // on a transient toast message. An alternative approach might be to use // https://www.dev2qa.com/android-get-application-context-from-anywhere-example/ // but it seems that overwriting Application is frowned upon a bit. } } }); } } private static void toast(final String message) { toast(TOAST_NONE, message); } public static void toast(int level, String format, Object... arguments) { String finalMessage = String.format(Locale.getDefault(), format, arguments); toast(level, finalMessage); } private static void toast(String format, Object... arguments) { toast(TOAST_NONE, format, arguments); } public static void toast(int level, final int resource) { final String finalMessage = getStringSingle(resource); toast(level, finalMessage); } private static void toast(final int resource) { toast(TOAST_NONE, resource); } private void loadSettings() { debug("MainActivity: loadSettings"); try { this.settings = getSharedPreferences(PREFERENCES_FILE, 0); // First, migrate old settings if needed SettingsActivity.convertOldSettings(settings); versionChangeCheck(settings); bluetoothDeviceName = settings.getString(SettingsActivity.SETTING_DEVICE_NAME, null); bluetoothDeviceAddress = settings.getString(SettingsActivity.SETTING_DEVICE_ADDRESS, null); gatewayUrl = settings.getString(SettingsActivity.SETTING_DEVICE_HTTP_GATEWAY, null); // String dataFormat = settings.getString("dataFormat", "crdt"); String deviceType = settings.getString(SettingsActivity.SETTING_DEVICE_TYPE, "Arduino"); safeDrivingMode = settings.getBoolean(SettingsActivity.SETTING_SECURITY_SAFE_MODE, true); bluetoothBackgroundMode = settings.getBoolean(SettingsActivity.SETTING_DEVICE_USE_BACKGROUND_MODE, false); milesMode = settings.getBoolean(SettingsActivity.SETTING_CAR_USE_MILES, false); altFieldsMode = settings.getBoolean(SettingsActivity.SETTING_DEVICE_USE_ISOTP_FIELDS, false); //dataExportMode = settings.getBoolean(SettingsActivity.SETTING_LOGGING_USE_SD_CARD, false); debugLogMode = settings.getBoolean(SettingsActivity.SETTING_LOGGING_DEBUG_LOG, false); fieldLogMode = settings.getBoolean(SettingsActivity.SETTING_LOGGING_FIELDS_LOG, false); toastLevel = settings.getInt(SettingsActivity.SETTING_DISPLAY_TOAST_LEVEL, MainActivity.TOAST_ELM); if (bluetoothDeviceName != null && !bluetoothDeviceName.isEmpty() && bluetoothDeviceName.length() > 4) BluetoothManager.getInstance().setDummyMode(bluetoothDeviceName.substring(0, 4).compareTo("HTTP") == 0); // Set car model car = settings.getInt(SettingsActivity.SETTING_CAR_MODEL, CAR_NONE); // Ph2 car has no altfields if (car == CAR_X10PH2) { altFieldsMode = false; } // as the settings may have changed, we need to reload different things // create a new device if (deviceType == null) deviceType = ""; // overdone, but keep lint happy switch (deviceType) { case "Bob Due": case "CanSee": device = new CanSee(); break; case "ELM327": device = new ELM327(); break; case "ELM327Http": case "Http": device = new Http(); break; default: device = null; break; } // since the car type may have changed, reload the ecus (ze50 and non ze50), frame timings and fields Ecus.getInstance().load(); Frames.getInstance().load(); fields.load(); if (device != null) { // initialise the connection device.initConnection(); // register application wide fields // registerApplicationFields(); // now done in Fields.load } // after loading PREFERENCES we may have new values for "debugLogMode" debugLogMode = dataLogger.activate(debugLogMode); } catch (Exception e) { if (BuildConfig.BRANCH.equals("master")) { Crashlytics.logException(e); } else { e.printStackTrace(); } } } public void registerApplicationFields() { Field field = fields.getBySID("5d7.0"); if (safeDrivingMode) { // speed if (field != null) { field.addListener(MainActivity.getInstance()); // callback is onFieldUpdateEvent if (device != null) device.addApplicationField(field, 10000); // query every 10 seconds } } else { if (field != null) { field.removeListener(MainActivity.getInstance()); if (device != null) device.removeApplicationField(field); } } // (de)activate the secure gateway if (pokeSecureGateway) { field = fields.getBySID("18daf1d2.5003.0"); if (isPh2()) { if (field != null) { field.addListener(MainActivity.getInstance()); // callback is onFieldUpdateEvent if (device != null) device.addApplicationField(field, 3000); // keep awake every 3 seconds } } else { if (field != null) { field.removeListener(MainActivity.getInstance()); if (device != null) device.removeApplicationField(field); } } } } private void updateActionBar() { switch (viewPager.getCurrentItem()) { case 0: actionBar.setIcon(R.mipmap.ic_launcher); break; case 1: actionBar.setIcon(R.drawable.fragment_technical); break; case 2: actionBar.setIcon(R.drawable.fragment_experimental); break; default: break; } } private ViewPager viewPager; private ActionBar actionBar; private static final int MY_PERMISSIONS_REQUEST = 123; private void configureBluetoothManager() { // configure Bluetooth manager BluetoothManager.getInstance().setBluetoothEvent(new BluetoothEvent() { @Override public void onBeforeConnect() { showBluetoothState(BLUETOOTH_SEARCH); } @Override public void onAfterConnect(BluetoothSocket bluetoothSocket) { if (device != null) device.init(visible); showBluetoothState(BLUETOOTH_CONNECTED); } @Override public void onBeforeDisconnect(BluetoothSocket bluetoothSocket) { } @Override public void onAfterDisconnect() { showBluetoothState(BLUETOOTH_DISCONNECTED); } }); // detect hardware status int BT_STATE = BluetoothManager.getInstance().getHardwareState(); if (BT_STATE == BluetoothManager.STATE_BLUETOOTH_NOT_AVAILABLE) toast("Sorry, but your device doesn't seem to have Bluetooth support!"); else if (BT_STATE == BluetoothManager.STATE_BLUETOOTH_NOT_ACTIVE) { Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); startActivityForResult(enableBtIntent, 1); } } @Override public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); switch (requestCode) { case 100: if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) { // toast("BLUETOOTH_CONNECT Granted!"); configureBluetoothManager(); } else { // toast("BLUETOOTH_CONNECT Denied!"); } case 101: if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) { // toast("BLUETOOTH_SCAN Granted!"); configureBluetoothManager(); } else { // toast("BLUETOOTH_SCAN Denied!"); } case 102: if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) { // toast("WRITE_EXTERNAL_STORAGE Granted!"); storageGranted = true; } else { // toast("WRITE_EXTERNAL_STORAGE Denied!"); storageGranted = false; } } } private void requestPermission(String permissionName, int permissionRequestCode) { ActivityCompat.requestPermissions(this, new String[]{permissionName}, permissionRequestCode); } public void checkPermissions() { int permissionCheck; if(Build.VERSION.SDK_INT>30) { permissionCheck = ContextCompat.checkSelfPermission( this, Manifest.permission.BLUETOOTH_CONNECT); if (permissionCheck != PackageManager.PERMISSION_GRANTED) { requestPermission(Manifest.permission.BLUETOOTH_CONNECT, 100); } permissionCheck = ContextCompat.checkSelfPermission( this, Manifest.permission.BLUETOOTH_SCAN); if (permissionCheck != PackageManager.PERMISSION_GRANTED) { requestPermission(Manifest.permission.BLUETOOTH_SCAN, 101); } } else { permissionCheck = ContextCompat.checkSelfPermission( this, Manifest.permission.WRITE_EXTERNAL_STORAGE); if (permissionCheck != PackageManager.PERMISSION_GRANTED) { requestPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE, 102); } } } @Override protected void onStart() { super.onStart(); checkPermissions(); if((ContextCompat.checkSelfPermission(this, Manifest.permission.BLUETOOTH_CONNECT) == PackageManager.PERMISSION_GRANTED && Build.VERSION.SDK_INT>30) || (ContextCompat.checkSelfPermission(this, Manifest.permission.BLUETOOTH) == PackageManager.PERMISSION_GRANTED && Build.VERSION.SDK_INT<=30) ) { configureBluetoothManager(); } } @Override protected void onCreate(Bundle savedInstanceState) { // always create an instance instance = this; // needed to get strings from resources in non-Activity classes res = getResources(); handleDarkMode(); // dataLogger = DataLogger.getInstance(); dataLogger = new DataLogger(); debug("MainActivity: onCreate"); //MainActivity.context = getApplicationContext(); getWindow().requestFeature(Window.FEATURE_ACTION_BAR); super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // navigation bar AppSectionsPagerAdapter appSectionsPagerAdapter = new AppSectionsPagerAdapter(getSupportFragmentManager()); actionBar = getSupportActionBar(); if (actionBar != null) actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME | ActionBar.DISPLAY_SHOW_TITLE); //actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); viewPager = findViewById(R.id.main); viewPager.setAdapter(appSectionsPagerAdapter); // viewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() { viewPager.addOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() { @Override public void onPageSelected(int position) { //actionBar.setSelectedNavigationItem(position); updateActionBar(); } }); updateActionBar(); /* int permission; permission= ActivityCompat.checkSelfPermission(this, Manifest.permission.BLUETOOTH_CONNECT); Log.w("canze-bt","BLUETOOTH_CONNECT: "+permission); if (permission != PackageManager.PERMISSION_GRANTED){ Log.w("canze-bt","BLUETOOTH_CONNECT: request!"); ActivityCompat.requestPermissions( this, new String[] {Manifest.permission.BLUETOOTH_CONNECT}, REQ ); } permission = ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION); Log.w("canze-bt","ACCESS_FINE_LOCATION: "+permission); Log.w("canze-bt","PERMISSION_GRANTED: "+PackageManager.PERMISSION_GRANTED); if (permission != PackageManager.PERMISSION_GRANTED){ Log.w("canze-bt","ACCESS_FINE_LOCATION: request!"); ActivityCompat.requestPermissions( this, new String[] {Manifest.permission.ACCESS_FINE_LOCATION}, 1 ); }*/ // setTitle(TAG + " - not connected"); showBluetoothState(BLUETOOTH_DISCONNECTED); // open the database CanzeDataSource.getInstance(getBaseContext()).open(); // cleanup CanzeDataSource.getInstance().cleanUp(); // setup cleaning (once every hour) // Extra check for non null CanzeDatasource instance Runnable cleanUpRunnable = () -> { CanzeDataSource dsInstance = CanzeDataSource.getInstance(); if (dsInstance != null) { dsInstance.cleanUp(); } }; Handler handler = new Handler(); handler.postDelayed(cleanUpRunnable, 60 * 1000); // register for bluetooth changes IntentFilter intentFilter = new IntentFilter(BluetoothDevice.ACTION_ACL_DISCONNECTED); this.registerReceiver(broadcastReceiver, intentFilter); // load settings // - includes the reader // - includes the decoder //loadSettings(); --> done in onResume // load fields from static code debug("Loaded fields: " + fields.size()); // load fields //final SharedPreferences settings = getSharedPreferences(PREFERENCES_FILE, 0); (new Thread(() -> { debug("Loading fields last field values from database"); for (int i = 0; i < fields.size(); i++) { Field field = fields.get(i); if (field != null) field.setCalculatedValue(CanzeDataSource.getInstance().getLast(field.getSID())); //debug("MainActivity: Setting "+field.getSID()+" = "+field.getValue()); //f.setValue(settings.getFloat(f.getUniqueID(), 0)); } debug("Loading fields last field values from database (done)"); })).start(); } void handleDarkMode() { // dark mode handling // this is a silly extra check against surious NPEs if (instance == null) return; // this is another check against NPE if (instance.getBaseContext() == null) return; // due to a few NullPointerExceptions on getSharedPreferences, now explicitely using the application context jm20191223 Context c = instance.getApplicationContext(); if (c == null) return; SharedPreferences set = c.getSharedPreferences(PREFERENCES_FILE, 0); int darkModeSetting; try { // handle old boolean preference darkModeSetting = set.getInt(SettingsActivity.SETTING_DISPLAY_THEME, AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM); } catch (ClassCastException e) { darkModeSetting = set.getBoolean(SettingsActivity.SETTING_DISPLAY_THEME, false) ? AppCompatDelegate.MODE_NIGHT_YES : AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM; } if(AppCompatDelegate.getDefaultNightMode() != darkModeSetting) { // 2 AppCompatDelegate.setDefaultNightMode (darkModeSetting); if(Build.VERSION.SDK_INT < 28) { finish(); startActivity(new Intent(MainActivity.this, MainActivity.this.getClass())); } } } private boolean displayDone = false; @Override public void onResume() { debug("MainActivity: onResume"); setBluetoothMenuItem (mOptionsMenu); instance = this; // If I am not mistaken, instance should only ever be populated in onCreate visible = true; super.onResume(); // if returning from a single widget activity, we have to leave here! if (returnFromWidget) { returnFromWidget = false; return; } // remove progress spinners runOnUiThread(() -> { ProgressBar pb; pb = findViewById(R.id.progressBar_cyclic0); if (pb != null) pb.setVisibility(View.GONE); pb = findViewById(R.id.progressBar_cyclic1); if (pb != null) pb.setVisibility(View.GONE); pb = findViewById(R.id.progressBar_cyclic2); if (pb != null) pb.setVisibility(View.GONE); }); // load/reload settings if they have not been loaded yet if (null == this.settings) { this.loadSettings(); } if (!leaveBluetoothOn) { showBluetoothState(BLUETOOTH_DISCONNECTED); (new Thread(this::reloadBluetooth)).start(); } if(!displayDone) if (!this.settings.getBoolean(SettingsActivity.SETTING_APP_DISCLAIMER_SEEN, false)) { AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this); displayDone=true; // set title alertDialogBuilder.setTitle(R.string.prompt_Disclaimer); // set dialog message String yes = getStringSingle(R.string.prompt_Accept); String no = getStringSingle(R.string.prompt_Decline); Display display = getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); float width = size.x; float height = size.y; // int height = size.y; width = width / getResources().getDisplayMetrics().scaledDensity; height = height / getResources().getDisplayMetrics().scaledDensity; if (width <= 480 || height <= 480) { yes = getStringSingle(R.string.default_Yes); no = getStringSingle(R.string.default_No); } alertDialogBuilder .setMessage(Html.fromHtml(getStringSingle(R.string.prompt_DisclaimerText))) .setCancelable(true) .setPositiveButton(yes, (dialog, id) -> { // if this button is clicked, close SharedPreferences.Editor editor = settings.edit(); editor.putBoolean(SettingsActivity.SETTING_APP_DISCLAIMER_SEEN, true); // editor.commit(); editor.apply(); // current activity dialog.cancel(); }) .setNegativeButton(no, (dialog, id) -> { // if this button is clicked, just close // the dialog box and do nothing dialog.cancel(); //MainActivity.this.finishAffinity(); requires API16 MainActivity.this.finish(); android.os.Process.killProcess(android.os.Process.myPid()); System.exit(0); }); // create alert dialog AlertDialog alertDialog = alertDialogBuilder.create(); // show it alertDialog.show(); //alertDialog.getButton(AlertDialog.BUTTON_POSITIVE).setTextSize(TypedValue.COMPLEX_UNIT_SP, 25.0f); //alertDialog.getButton(AlertDialog.BUTTON_NEGATIVE).setTextSize(TypedValue.COMPLEX_UNIT_SP, 25.0f); } // do we need to start another default activity (but leave main in the stack)? // first, we select the proper fragment. Note that this is a precursor to running another // activity. -1 means no change, 0 means you might actually also select an activity even // if it is on the 0th fragment. if (startAnotherFragmentIndex == -2) { startAnotherFragmentIndex = settings.getInt(SettingsActivity.SETTING_DISPLAY_STARTUP_MENU, -1); } //debug("LOADING: "+startAnotherFragmentIndex); int startAnotherActivityIndex = -1; try { // try as in a test version this was a string startAnotherActivityIndex = settings.getInt(SettingsActivity.SETTING_DISPLAY_STARTUP_ACTIVITY, -1); } catch (Exception e) { // do nothing } if (startAnotherFragmentIndex >= 0) { // switch to the proper fragment viewPager.setCurrentItem(startAnotherFragmentIndex); // ensure it won't happen again i.e. after Settings or dark mode change // note that putting this code in onCreate is not the best idea as i.e. the fields have // not been read in yet startAnotherFragmentIndex = -1; // if also another activity is to be started Activity a = ActivityRegistry.getInstance().getById(startAnotherActivityIndex); if (a != null) { try { // get it's class and start it Intent intent = new Intent(this, a.getClassOf()); leaveBluetoothOn = true; this.startActivityForResult(intent, MainActivity.LEAVE_BLUETOOTH_ON); // do NOT finish this activity so the main stack is intact } catch (Exception e) { // do nothing if starting another activity fails, so stay on MainActivity } } } } private void reloadBluetooth() { reloadBluetooth(true); } public void reloadBluetooth(boolean reloadSettings) { if (reloadSettings) { // re-load the settings. It will do a device.initConnection (start poller if there is a connection) loadSettings(); } else { // else only (re)initialize the connection if (device != null) { device.initConnection(); } } // try to get a new BT thread BluetoothManager.getInstance().connect( bluetoothDeviceAddress, !(MainActivity.altFieldsMode && device instanceof ELM327), // go insecure if ELM and in altFieldsmode BluetoothManager.RETRIES_INFINITE); } @Override public void onPause() { debug("MainActivity.onPause"); debug("MainActivity.onPause > leaveBluetoothOn = " + leaveBluetoothOn); visible = false; // stop here if BT should stay on! if (bluetoothBackgroundMode) { super.onPause(); return; } if (!leaveBluetoothOn) { if (device != null) device.clearFields(); debug("MainActivity.onPause: stopping BT"); stopBluetooth(); } super.onPause(); } private void stopBluetooth() { stopBluetooth(true); } public void stopBluetooth(boolean reset) { if (device != null) { // stop the device debug("MainActivity.stopBluetooth > stopAndJoin"); device.stopAndJoin(); // remove reference if (reset) { device.clearFields(); } } // disconnect BT debug("MainActivity.stopBluetooth > BT disconnect"); BluetoothManager.getInstance().disconnect(); } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { MainActivity.debug("MainActivity.onActivityResult"); MainActivity.debug("MainActivity.onActivityResult > requestCode = " + requestCode); MainActivity.debug("MainActivity.onActivityResult > resultCode = " + resultCode); // this must be set in any case leaveBluetoothOn = false; if (requestCode == SETTINGS_ACTIVITY) { // load settings loadSettings(); } else if (requestCode == LEAVE_BLUETOOTH_ON) { MainActivity.debug("MainActivity.onActivityResult > " + LEAVE_BLUETOOTH_ON); returnFromWidget = true; // register fields this activity needs /* registerFields(); */ } else super.onActivityResult(requestCode, resultCode, data); } @Override protected void onDestroy() { debug("MainActivity: onDestroy"); dataLogger.destroy(); // clean up if (device != null) { // stop the device nicely device.stopAndJoin(); device.clearFields(); } // disconnect the bluetooth BluetoothManager.getInstance().disconnect(); // un-register for bluetooth changes this.unregisterReceiver(broadcastReceiver); super.onDestroy(); } @Override public boolean onCreateOptionsMenu(final Menu menu) { mOptionsMenu = menu; // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_main, menu); mBtState = BLUETOOTH_DISCONNECTED; // Only enable the force crash option when we're in the debug variant // Note that beta builds supposed to always be build through the // release variant. The safes way to do this is through the command line // using ./gradlew bundleRelease //if (BuildConfig.BUILD_TYPE.equals("debug")) setForceCrash(menu); if (BuildConfig.DEBUG) setForceCrash(menu); // get a reference to the bluetooth action button setBluetoothMenuItem (menu); //bluetoothMenutItem = menu.findItem(R.id.action_bluetooth); // and put the right view on it // bluetoothMenutItem.setActionView(R.layout.animated_menu_item); // set the correct initial state moved upm as setluetoothMenuItem sets it // showBluetoothState(BLUETOOTH_DISCONNECTED); // get access to the image view ==> moved to setBluetoothMenuItem /* ImageView imageView = bluetoothMenutItem.getActionView().findViewById(R.id.animated_menu_item_action); // define an action imageView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { (new Thread(new Runnable() { @Override public void run() { toast(getStringSingle(R.string.toast_Reconnecting)); stopBluetooth(); reloadBluetooth(); } })).start(); } }); */ return true; } private void setForceCrash (Menu menu) { if (menu == null) return; MenuItem crasher = menu.findItem(R.id.action_crash); crasher.setVisible(true); } public void setBluetoothMenuItem (Menu menu) { if (menu == null) return; bluetoothMenutItem = menu.findItem(R.id.action_bluetooth); showBluetoothState(mBtState); // get access to the image view ImageView imageView = bluetoothMenutItem.getActionView().findViewById(R.id.animated_menu_item_action); // define an action imageView.setOnClickListener(v -> (new Thread(new Runnable() { @Override public void run() { toast(getStringSingle(R.string.toast_Reconnecting)); stopBluetooth(false); // do NOT clear the activity queue reloadBluetooth(false); // no need to reload settings } })).start()); } private void showBluetoothState(final int btState) { mBtState = btState; // save state. The icon must be redrawn in the last state if activity switches if (bluetoothMenutItem != null) { View view = bluetoothMenutItem.getActionView(); if (view == null) return; final ImageView imageView = view.findViewById(R.id.animated_menu_item_action); runOnUiThread(() -> { // stop the animation if there is one running AnimationDrawable frameAnimation = null; if (imageView.getBackground() instanceof AnimationDrawable) { frameAnimation = (AnimationDrawable) imageView.getBackground(); if (frameAnimation.isRunning()) frameAnimation.stop(); } switch (btState) { case BLUETOOTH_DISCONNECTED: imageView.setBackgroundResource(R.drawable.bluetooth_none); // 21, white icon break; case BLUETOOTH_CONNECTED: imageView.setBackgroundResource(R.drawable.bluetooth_3); // 23, blue icon break; case BLUETOOTH_SEARCH: imageView.setBackgroundResource(R.drawable.animation_bluetooth); // 22, animated blue icon // AnimationDrawable frameAnimation = (AnimationDrawable) imageView.getBackground(); if (frameAnimation != null) frameAnimation.start(); break; default: break; } }); } } @Override public boolean onOptionsItemSelected(MenuItem item) { int id = item.getItemId(); // start the settings activity if (id == R.id.action_settings) { if (isSafe()) { // run a toast // toast(R.string.toast_WaitingSettings); // display the spinner runOnUiThread(() -> { ProgressBar pb = null; if (viewPager.getCurrentItem() == 0) { pb = findViewById(R.id.progressBar_cyclic0); } else if (viewPager.getCurrentItem() == 1) { pb = findViewById(R.id.progressBar_cyclic1); } else if (viewPager.getCurrentItem() == 2) { pb = findViewById(R.id.progressBar_cyclic2); } if (pb != null) pb.setVisibility(View.VISIBLE); }); (new Thread(() -> { if (device != null) { // stop the BT device device.stopAndJoin(); device.clearFields(); BluetoothManager.getInstance().disconnect(); } // load the activity checkPermissions(); if((ContextCompat.checkSelfPermission(this, Manifest.permission.BLUETOOTH_CONNECT) != PackageManager.PERMISSION_GRANTED && Build.VERSION.SDK_INT>30) || (ContextCompat.checkSelfPermission(this, Manifest.permission.BLUETOOTH) != PackageManager.PERMISSION_GRANTED && Build.VERSION.SDK_INT<=30) ) { toast("Can't open settings without having the permission to use bluetooth. Sorry!"); } else { Intent intent = new Intent(MainActivity.this, SettingsActivity.class); startActivityForResult(intent, SETTINGS_ACTIVITY); } })).start(); return true; } // see AppSectionsPagerAdapter for the right sequence } else if (id == R.id.action_main) { viewPager.setCurrentItem(0, true); updateActionBar(); } else if (id == R.id.action_technical) { viewPager.setCurrentItem(1, true); updateActionBar(); } else if (id == R.id.action_experimental) { viewPager.setCurrentItem(2, true); updateActionBar(); } else if (id == R.id.action_crash) { AlertDialog alertDialog = new AlertDialog.Builder(this).create(); alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Force Crash", (dialog, which) -> { throw new RuntimeException("Test crash"); }); alertDialog.show(); Button btnPositive = alertDialog.getButton(AlertDialog.BUTTON_POSITIVE); // get the button LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) btnPositive.getLayoutParams(); // get its layout layoutParams.width = ViewGroup.LayoutParams.MATCH_PARENT; // adjust it btnPositive.setLayoutParams(layoutParams); // apply it } else if (id == R.id.action_custom) { viewPager.setCurrentItem(3, true); updateActionBar(); } return super.onOptionsItemSelected(item); } @Override public void onFieldUpdateEvent(Field field) { if (field.getSID().equals("5d7.0")) { //debug("Speed "+field.getValue()); isDriving = (field.getValue() > 10); } } public static boolean isSafe() { boolean safe = !isDriving || !safeDrivingMode; if (!safe) { Toast.makeText(MainActivity.instance, R.string.toast_NotWhileDriving, Toast.LENGTH_LONG).show(); } return safe; } public static boolean isZOE() { return (car == CAR_ZOE_Q90 || car == CAR_ZOE_Q210 || car == CAR_ZOE_R90 || car == CAR_ZOE_R240); } public static boolean isPh2() { return (car == CAR_X10PH2); } public static boolean isTwingo() { return (car == CAR_TWINGO); } public static boolean isTwizy() { return (car == CAR_TWIZY); } public static String getAssetPrefix() { if (isPh2()) return "ZOE_Ph2/"; if (isTwingo()) return "Twingo_3_Ph2/"; if (isTwizy()) return "Twizy/"; return "ZOE/"; } //public static boolean isFluKan() { // return (car == CAR_FLUENCE || car == CAR_KANGOO); //} //public static boolean isTwizy() { // return (car == CAR_TWIZY); //} public static String getBluetoothDeviceAddress() { if ("HTTP Gateway".equals(bluetoothDeviceName)) return gatewayUrl; return bluetoothDeviceAddress; } private void versionChangeCheck(SharedPreferences settings) { // get the current and the saved version of the app String previousVersion = settings.getString(SettingsActivity.SETTING_APP_VERSION, ""); String currentVersion = ""; try { PackageInfo pInfo = getPackageManager().getPackageInfo(getPackageName(), 0); currentVersion = pInfo.versionName; } catch (Exception e) { // ignore this error, currentVersion = "" } if (currentVersion.equals(previousVersion)) return; // this case statement contains optional code to move a previous instance of the app to the // current state if (previousVersion == null) previousVersion = ""; // keep lint happy switch (previousVersion) { case "": default: // clear database CanzeDataSource.getInstance().clear(); break; } // if we successfully got the current version of the app, we save it in the preferences if (!currentVersion.equals("")) { SharedPreferences.Editor editor = settings.edit(); editor.putString(SettingsActivity.SETTING_APP_VERSION, currentVersion); editor.apply(); // finish(); // unclear why I put this here. I see no need to finish the app after a conversion, and finishing in a thread is a pretty bad idea anyway. } } public static String getStringSingle(int resId) { if (res == null) return ""; try { return res.getString(resId); } catch (Resources.NotFoundException e) { return ""; } } public static String[] getStringList(int resId) { if (res == null) return null; try { return res.getStringArray(resId); } catch (Resources.NotFoundException e) { return null; } } public void setDebugListener(DebugListener debugListener) { this.debugListener = debugListener; } public void dropDebugMessage(String msg) { if (debugListener != null) debugListener.dropDebugMessage(msg); } public void appendDebugMessage(String msg) { if (debugListener != null) debugListener.appendDebugMessage(msg); } private int getScreenOrientation() { WindowManager wm = getWindowManager(); if (wm == null) return Configuration.ORIENTATION_PORTRAIT; Display screenOrientation = wm.getDefaultDisplay(); if (screenOrientation == null) return Configuration.ORIENTATION_PORTRAIT; Point point = new Point(); screenOrientation.getSize(point); if (point.x > point.y) { return Configuration.ORIENTATION_LANDSCAPE; } /* if (screenOrientation.getWidth() == screenOrientation.getHeight()) { return Configuration.ORIENTATION_SQUARE; } else if (screenOrientation.getWidth() > screenOrientation.getHeight()) { return Configuration.ORIENTATION_LANDSCAPE; } */ return Configuration.ORIENTATION_PORTRAIT; } public boolean isLandscape() { if (screenOrientation == 0) screenOrientation = getScreenOrientation(); return screenOrientation == Configuration.ORIENTATION_LANDSCAPE; } public boolean isPortrait() { if (screenOrientation == 0) screenOrientation = getScreenOrientation(); return screenOrientation == Configuration.ORIENTATION_PORTRAIT; } public void setLocalTheme (Resources.Theme localTheme) { this.localTheme = localTheme; } public Resources.Theme getLocalTheme () { if (this.localTheme == null) return this.getTheme(); // we can't do better than this. So still default to something in the Color.decode return this.localTheme; } public boolean isExternalStorageWritable() { if (!storageGranted) return false; String SDstate = Environment.getExternalStorageState(); return (Environment.MEDIA_MOUNTED.equals(SDstate)); } public String getExternalFolder() { // old code path // return Environment.getExternalStorageDirectory().getAbsolutePath() + "/CanZE/"; // moved to new data storage framework starting Android 10 // On a Samsung J6 this returns /storage/emulated/0/Android/data/lu.fisch.canze/files/ // In the My Files app this is visible under Internal Storage > Android > data > lu.fisch.canze > files // In a connected Ubuntu PC this shows up as Samsung Android > Phone > Android > data > lu.fisch.canze > files // Two isues // - through USB the folder is unfortunately read-only. This makes it almost impossible to use the _Research facility // - it selects Internal storage instead of SD card. Why is somewhat unclear, but more or less OK for now //Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE); //startActivityForResult(intent, 713); File path = Environment.getExternalStoragePublicDirectory("CanZE"); //debug("Datalogger: "+Environment.DIRECTORY_DCIM); path.mkdirs(); return path.getAbsolutePath()+ "/"; //return getExternalFilesDir(null).getAbsolutePath() + "/"; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/PredictionActivity.java ================================================ package lu.fisch.canze.activities; import android.os.Bundle; import android.view.Menu; import android.widget.TextView; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Battery; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; public class PredictionActivity extends CanzeActivity implements FieldListener, DebugListener { private Battery battery; private double car_soc = 5; private double car_soh = 100; private double car_bat_temp = 10; private double car_charger_ac_power = 22; private int car_status = 0; private int charging_status = 0; private int seconds_per_tick = 288; // time 100 iterations = 8 hours private double car_range_est = 1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_prediction); // initialize the battery model battery = new Battery(); // set charger limit if (MainActivity.car == MainActivity.CAR_ZOE_R240 || MainActivity.car == MainActivity.CAR_ZOE_R90) { battery.setDcPowerLowerLimit(1.0); battery.setDcPowerUpperLimit(20.0); } if (MainActivity.car == MainActivity.CAR_ZOE_Q90 || MainActivity.car == MainActivity.CAR_ZOE_R90) { battery.setBatteryType(41); } else { battery.setBatteryType(22); } } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); addField(Sid.RangeEstimate, 10000); //0x08 addField(Sid.AvailableChargingPower, 10000); //0x01 addField(Sid.UserSoC, 10000); //0x02 //addField(Sid.ChargingStatusDisplay, 10000); addField(Sid.AverageBatteryTemperature, 10000); //0x04 addField(Sid.SOH, 10000); //0x20 } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { String fieldId = field.getSID(); Double fieldVal = field.getValue(); if (fieldVal.isNaN()) return; // get the text field switch (fieldId) { case Sid.AvailableChargingPower: car_charger_ac_power = fieldVal; car_status |= 0x01; if (car_charger_ac_power > 1){ car_status |= 0x10; charging_status = 1; } else { charging_status = 0; } break; case Sid.UserSoC: car_soc = fieldVal; car_status |= 0x02; break; case Sid.AverageBatteryTemperature: car_bat_temp = fieldVal; car_status |= 0x04; break; case Sid.RangeEstimate: car_range_est = fieldVal; car_status |= 0x08; break; //case Sid.ChargingStatusDisplay: // charging_status = (fieldVal == 3) ? 1 : 0; // car_status |= 0x10; // break; case Sid.SOH: car_soh = fieldVal; car_status |= 0x20; break; } // display the debug values if (car_status == 0x3f) { //dropDebugMessage2 (String.format(Locale.getDefault(), "go %02X", car_status)); runPrediction(); car_status = 0; } //else { //dropDebugMessage2 (String.format(Locale.getDefault(), ".. %02X", car_status)); //} } private void runPrediction() { updatePrediction("texttemp", "" + (int) car_bat_temp + "°C"); updatePrediction("textsoc", (int) car_soc + "%"); // if there is no charging going on, erase all fields in the table if (charging_status == 0) { updatePrediction("textacpwr", "Not charging"); for (int t = 10; t <= 100; t = t + 10) { updatePrediction("textTIM" + t, "00:00"); updatePrediction("textSOC" + t, "-"); updatePrediction("textRAN" + t, "-"); updatePrediction("textPWR" + t, "-"); } return; } // set the battery object to an initial state equal to the real battery ( battery.setTimeRunning(0); // set the State of Health battery.setStateOfHealth(car_soh); // set the internal battery temperature battery.setTemperature(car_bat_temp); // set the internal state of charge battery.setStateOfChargePerc(car_soc); // set the external maximum charger capacity updatePrediction("textacpwr", ((int) (car_charger_ac_power * 10)) / 10 + " kW"); battery.setChargerPower(car_charger_ac_power); // now start iterating over time int iter_at_99 = 100; // tick when the battery is full for (int t = 1; t <= 100; t++) { // 100 ticks battery.iterateCharging(seconds_per_tick); double soc = battery.getStateOfChargePerc(); // save the earliest tick when the battery is full if (soc >= 99 && t < iter_at_99) iter_at_99 = t; // optimization if ((t % 10) == 0) { updatePrediction("textTIM" + t, "" + formatTime(battery.getTimeRunning())); updatePrediction("textSOC" + t, "" + ((int) soc)); if (car_soc > 0.0) updatePrediction("textRAN" + t, "" + ((int) (car_range_est * soc / car_soc))); updatePrediction("textPWR" + t, String.format(Locale.getDefault(), "%.1f", battery.getDcPower())); } } // adjust the tick time if neccesary. Note that this is // effective on th next iteration if (iter_at_99 == 100 && seconds_per_tick < 288) { // if we were unable to go to 99% and below 8 hours, double tick step seconds_per_tick *= 2; } else if (iter_at_99 > 50) { // if we were full after half the table size // do nothing //seconds_per_tick *= 1; } else if (iter_at_99 > 25 && seconds_per_tick > 18) { // if we were full after a quarter of the table size // and over half an hour, half the tick step seconds_per_tick /= 2; } else if (seconds_per_tick > 18) { // if we were full before or equal a quarter of the table size // and over half an hour, quarter the tick step seconds_per_tick /= 4; } } private void updatePrediction(final String id, final String msg) { runOnUiThread(new Runnable() { @Override public void run() { TextView tv; tv = findViewById(getResources().getIdentifier(id, "id", getPackageName())); if (tv != null) { tv.setText(msg); } } }); } private String formatTime(int t) { // t is in seconds t /= 60; // t is in minutes return "" + format2Digit(t / 60) + ":" + format2Digit(t % 60); } private String format2Digit(int t) { return ("00" + t).substring(t > 9 ? 2 : 1); } /* public void dropDebugMessage (final String msg) {} public void dropDebugMessage2 (final String msg) { runOnUiThread(new Runnable() { @Override public void run() { TextView tv = findViewById(R.id.textDebug); if (tv != null) tv.setText(msg); } }); } */ } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/RangeActivity.java ================================================ package lu.fisch.canze.activities; import android.content.SharedPreferences; import android.os.Bundle; import android.widget.SeekBar; import android.widget.TextView; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; public class RangeActivity extends CanzeActivity implements FieldListener, DebugListener { private double distance = 0; private double range = 0; private double rangeWorst = 0; private double rangeBest = 0; private double energy = 0; private double consumption = 1; private double consumptionWorst = 1; private double consumptionBest = 1; private double loss = 0.1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_range); SharedPreferences settings = getSharedPreferences(MainActivity.PREFERENCES_FILE, 0); loss = settings.getInt("loss", 10) / 100.0; MainActivity.debug("LOSS (load): " + loss); SeekBar seekBar = findViewById(R.id.seekBar); seekBar.setProgress((int) (loss * 100) + 50); //((TextView) findViewById(R.id.lossView)).setText(seekBar.getProgress()+"%"); //((TextView) findViewById(R.id.lossView)).setText(String.format(Locale.getDefault(), "%d%%", seekBar.getProgress())); updateSeekBar(seekBar); seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { @Override public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { updateSeekBar(seekBar); // save value SharedPreferences settings = getSharedPreferences(MainActivity.PREFERENCES_FILE, 0); SharedPreferences.Editor editor = settings.edit(); editor.putInt("loss", (int) (loss * 100)); editor.apply(); MainActivity.debug("LOSS (save): " + loss); } @Override public void onStartTrackingTouch(SeekBar seekBar) { updateSeekBar(seekBar); } @Override public void onStopTrackingTouch(SeekBar seekBar) { updateSeekBar(seekBar); } }); } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); addField(Sid.RangeEstimate, 2000); addField(Sid.AvailableEnergy, 2000); addField(Sid.AverageConsumption, 2000); addField(Sid.WorstAverageConsumption, 8000); addField(Sid.BestAverageConsumption, 8000); } private void updateSeekBar(SeekBar seekBar) { int progressPosition = seekBar.getProgress(); loss = (progressPosition - 50) / 100.; ((TextView) findViewById(R.id.lossView)).setText(String.format(Locale.getDefault(), "%d%%", progressPosition - 50)); updateRange(); } private void updateRange() { TextView tv; tv = findViewById(R.id.canzeRange); if (tv != null) tv.setText(String.format(Locale.getDefault(), "%.1f - %.1f - %.1f", rangeWorst, range * (1 - loss), rangeBest)); /* ((TextView) findViewById(R.id.canzeRange)).setText( (Math.floor(rangeWorst*100))/100. +" > "+ (Math.floor(range*100*(1-loss)))/100.+" > "+ (Math.floor(rangeBest*100))/100. ); */ } public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { String fieldId = field.getSID(); // ProgressBar pb; TextView tv; switch (fieldId) { case Sid.RangeEstimate: distance = field.getValue(); tv = findViewById(R.id.carRange); if (tv != null) tv.setText(String.format(Locale.getDefault(), "%.1f", distance)); break; case Sid.AvailableEnergy: energy = field.getValue(); range = energy / consumption * 100; rangeWorst = energy / consumptionWorst * 100; rangeBest = energy / consumptionBest * 100; updateRange(); break; case Sid.AverageConsumption: consumption = field.getValue(); range = energy / consumption * 100; updateRange(); break; case Sid.WorstAverageConsumption: consumptionWorst = field.getValue(); rangeWorst = energy / consumptionWorst * 100; updateRange(); break; case Sid.BestAverageConsumption: consumptionBest = field.getValue(); rangeBest = energy / consumptionBest * 100; updateRange(); break; } } }); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/ResearchActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.os.Environment; import android.widget.TextView; import java.io.File; import java.util.ArrayList; import java.util.HashMap; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.actors.Frames; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; import static lu.fisch.canze.activities.MainActivity.TOAST_NONE; import static lu.fisch.canze.activities.MainActivity.debug; import static lu.fisch.canze.activities.MainActivity.toast; public class ResearchActivity extends CanzeActivity implements FieldListener, DebugListener { ArrayList fields; private final HashMap viewsBySid = new HashMap<>(); private final boolean savedFieldLogMode = MainActivity.fieldLogMode; private int firstEmptyRow = 0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_research); // stop the poller thread if (MainActivity.device != null) { MainActivity.device.stopAndJoin(); } // get to the _research.csv file if (!MainActivity.storageIsAvailable) { toast(TOAST_NONE, "Research.onCreate: SDcard not available"); finish(); return; } if (!MainActivity.getInstance().isExternalStorageWritable()) { toast(TOAST_NONE, "Research.onCreate: SDcard not writeable"); finish(); return; } String importFieldsFileName = MainActivity.getInstance().getExternalFolder() + "_Research.csv"; File fieldsFile = new File(importFieldsFileName); if (!fieldsFile.exists()) { toast(TOAST_NONE, "Research.onCreate: " + importFieldsFileName + " does not exist"); finish(); return; } // load the data // reloading the frames is essential as it removes earlier linked fields so those fields // are no longer updated, leading to all sort of extra log entries Frames.getInstance().load(); // load the frame definition try { Fields.getInstance().load(importFieldsFileName); } catch (Exception e) { toast(TOAST_NONE, "Research.onCreate: could not load " + importFieldsFileName); Fields.getInstance().load(); finish(); return; } // force field logging mode on (previous mode was already saved) MainActivity.fieldLogMode = true; // start the poller if (MainActivity.device != null) { MainActivity.device.initConnection(); MainActivity.getInstance().registerApplicationFields(); } // add to the screen and build index viewsBySid fields = Fields.getInstance().getAllFields(); TextView tv; for (firstEmptyRow = 0; firstEmptyRow < fields.size(); firstEmptyRow++) { Field field = fields.get(firstEmptyRow); if (field != null) { // we only display the first 20, but note if there are more, they are logged if (firstEmptyRow <= 19) { fillView("textResL" + ("0" + firstEmptyRow).substring(firstEmptyRow < 10 ? 0 : 1), field.getName() + " (" + field.getUnit() + ")"); tv = findViewById(getResources().getIdentifier("textResV" + ("0" + firstEmptyRow).substring(firstEmptyRow < 10 ? 0 : 1), "id", getPackageName())); fillView(tv, "-"); viewsBySid.put(field.getSID(), tv); } } } } protected void initListeners() { MainActivity.getInstance().setDebugListener(this); // simply make this activity a listener to all fields for (int i = 0; i < fields.size(); i++) { Field f = fields.get(i); if (f != null) { addField(f); } } } // helper function to put a msg in a textview, identified by it's id string private void fillView(final String id, final String msg) { TextView tv = findViewById(getResources().getIdentifier(id, "id", getPackageName())); fillView(tv, msg); } // helper function to put a msg in a textview private void fillView(final TextView tv, final String msg) { if (tv == null) return; runOnUiThread(new Runnable() { @Override public void run() { tv.setText(msg); } }); } // this event is fired for every field that has been registered when it has been updated @Override public void onFieldUpdateEvent(final Field field) { // get the corresponding textview TextView tv = viewsBySid.get(field.getSID()); // this code is added to add stray fields to the screen. This happened earlier when the // frames were not cleared, but should not happen anymore if (tv == null && firstEmptyRow <= 19) { fillView("textResL" + ("0" + firstEmptyRow).substring(firstEmptyRow < 10 ? 0 : 1), field.getName() + "(" + field.getUnit() + ")"); tv = findViewById(getResources().getIdentifier("textResV" + ("0" + firstEmptyRow).substring(firstEmptyRow < 10 ? 0 : 1), "id", getPackageName())); viewsBySid.put(field.getSID(), tv); firstEmptyRow++; } // display the value. We ignore the list setting and will display those as numeric (index) values if (field.isString()) { fillView(tv, field.getStringValue()); } else { double val = field.getValue(); fillView(tv, Double.isNaN(val) ? "Nan" : String.format(Locale.getDefault(), "%." + field.getDecimals() + "f", val)); } } @Override protected void onDestroy() { debug("Research.onDestroy"); // stop the poller if (MainActivity.device != null) { MainActivity.device.stopAndJoin(); } // Reload default data Frames.getInstance().load(); Fields.getInstance().load(); // restore field logging mode MainActivity.fieldLogMode = savedFieldLogMode; // restart the poller if (MainActivity.device != null) { MainActivity.device.initConnection(); MainActivity.getInstance().registerApplicationFields(); } super.onDestroy(); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/SettingsActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.app.AlertDialog; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothDevice; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.content.SharedPreferences; import android.content.res.Resources; import android.graphics.Point; import android.os.Bundle; import android.os.Environment; import android.text.Html; import android.view.Display; import android.view.Menu; import android.view.MenuItem; import android.widget.TextView; import com.google.gson.Gson; import java.lang.reflect.Method; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Set; import androidx.appcompat.app.ActionBar; import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.app.AppCompatDelegate; import androidx.preference.EditTextPreference; import androidx.preference.ListPreference; import androidx.preference.Preference; import androidx.preference.PreferenceFragmentCompat; import androidx.preference.PreferenceManager; import androidx.preference.SwitchPreference; import lu.fisch.canze.BuildConfig; import lu.fisch.canze.R; import lu.fisch.canze.actors.Utils; import lu.fisch.canze.classes.Activity; import lu.fisch.canze.classes.ActivityRegistry; import lu.fisch.canze.classes.Crashlytics; import lu.fisch.canze.database.CanzeDataSource; public class SettingsActivity extends AppCompatActivity { // Settings keys // -> Device public static final String SETTING_DEVICE_CHOICE = "btDeviceChoice"; public static final String SETTING_DEVICE_NAME = "btDeviceName"; public static final String SETTING_DEVICE_TYPE = "btDeviceType"; public static final String SETTING_DEVICE_ADDRESS = "btDeviceAddress"; public static final String SETTING_DEVICE_HTTP_GATEWAY = "btHttpGateway"; public static final String SETTING_DEVICE_USE_ISOTP_FIELDS = "btUseIsotp"; public static final String SETTING_DEVICE_USE_BACKGROUND_MODE = "btUseBackgroundMode"; // -> Car public static final String SETTING_CAR_MODEL = "carModel"; public static final String SETTING_CAR_USE_MILES = "carUseMiles"; // -> Security public static final String SETTING_SECURITY_SAFE_MODE = "securitySafeMode"; // -> Display public static final String SETTING_DISPLAY_THEME = "displayTheme"; public static final String SETTING_DISPLAY_TOAST_LEVEL = "displayToastLevel"; public static final String SETTING_DISPLAY_STARTUP_ACTIVITY = "displayStartupActivity"; public static final String SETTING_DISPLAY_STARTUP_MENU = "displayStartupMenu"; // -> Logging public static final String SETTING_LOGGING_DEBUG_LOG = "loggingDebugLog"; public static final String SETTING_LOGGING_FIELDS_LOG = "loggingFieldLog"; public static final String SETTING_LOGGING_USE_SD_CARD = "loggingUseSdCard"; // -> Info public static final String INFO_APP_VERSION_LABEL = "lblVersionInfo"; // -> App public static final String SETTING_APP_OLD_SETTINGS_MIGRATED = "appOldSettingsMigrated"; public static final String SETTING_APP_OLD_SETTINGS_VALUES = "appOldSettingsValues"; public static final String SETTING_APP_DISCLAIMER_SEEN = "appDisclaimerSeen"; public static final String SETTING_APP_VERSION = "appVersion"; // -> Actions & buttons public static final String BTN_LOGGING_SETTINGS = "btnLoggingSettings"; public static final String BTN_CAN_SEE_SETTINGS = "btnCanSeeSettings"; public static final String BTN_CLEAR_CACHE = "btnClearCache"; public static final String BTN_CUSTOM_FRAGMENT = "btnCustomFragment"; // Bluetooth devices types public static final String DEVICE_TYPE_HTTP_GATEWAY = "Http"; public static final String DEVICE_TYPE_ELM_327 = "ELM327"; public static final String DEVICE_TYPE_CAN_SEE = "CanSee"; public static final String DEVICE_TYPE_ELM_HTTP = "ELM327Http"; public static final String DEVICE_TYPE_BOB_DUE = "Bob Due"; // Bluetooth devices names used to compare settings values public static final String DEVICE_NAME_HTTP_GATEWAY = "http gateway"; public static final String DEVICE_NAME_CAN_SEE = "cansee"; // Car models public static final CharSequence[] CAR_MODELS_LABELS = { "ZOE Q210", "ZOE R240", "ZOE Q90", "ZOE R90/110", "ZOE ZE40/ZE50", "TWINGO 3 Ph2 (unsupported)", "TWIZY (unsupported)" }; public static final CharSequence[] CAR_MODELS_VALUES = { String.valueOf(MainActivity.CAR_ZOE_Q210), String.valueOf(MainActivity.CAR_ZOE_R240), String.valueOf(MainActivity.CAR_ZOE_Q90), String.valueOf(MainActivity.CAR_ZOE_R90), String.valueOf(MainActivity.CAR_X10PH2), String.valueOf(MainActivity.CAR_TWINGO), String.valueOf(MainActivity.CAR_TWIZY) }; // Display contrast modes public static final CharSequence[] DISPLAY_THEMES_VALUES = { String.valueOf(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM), String.valueOf(AppCompatDelegate.MODE_NIGHT_YES), String.valueOf(AppCompatDelegate.MODE_NIGHT_NO), }; // Display toast levels public static final CharSequence[] DISPLAY_TOAST_LEVELS_VALUES = { String.valueOf(MainActivity.TOAST_NONE), String.valueOf(MainActivity.TOAST_ELM), String.valueOf(MainActivity.TOAST_ELMCAR), }; SettingsFragment settingsFragment; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); this.settingsFragment = new SettingsFragment(); setContentView(R.layout.activity_settings); if (savedInstanceState == null) { getSupportFragmentManager() .beginTransaction() .replace(R.id.settings_list_main, settingsFragment) .commit(); } ActionBar actionBar = getSupportActionBar(); if (actionBar != null) { actionBar.setDisplayHomeAsUpEnabled(true); } } @Override public void onBackPressed() { settingsFragment.saveSettings(); MainActivity.getInstance().handleDarkMode(); super.onBackPressed(); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_settings, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == android.R.id.home) { settingsFragment.saveSettings(); MainActivity.getInstance().handleDarkMode(); finish(); return true; } else if (id == R.id.action_cancel) { finish(); return true; } return super.onOptionsItemSelected(item); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == MainActivity.REQUEST_ENABLE_BT) { settingsFragment.fillDeviceList(); } MainActivity.debug("Code = " + requestCode); } public static void convertOldSettings(SharedPreferences settings) { // Check if old settings have already been migrated if (settings.getBoolean(SETTING_APP_OLD_SETTINGS_MIGRATED, false)) { return; } MainActivity.debug("Migrating old settings..."); // Get the old settings for future use SharedPreferences.Editor editor = settings.edit(); Map oldSettings = settings.getAll(); MainActivity.debug("Settings before migration: " + oldSettings.toString()); // Iterate over all the settings boolean removeSetting; for (Map.Entry entry : oldSettings.entrySet()) { String oldValue = entry.getValue().toString(); removeSetting = false; switch (entry.getKey()) { // Map the old setting to the new one case "deviceName": editor.putString(SETTING_DEVICE_NAME, oldValue); removeSetting = true; break; case "gatewayUrl": editor.putString(SETTING_DEVICE_HTTP_GATEWAY, oldValue); removeSetting = true; break; case "startActivity": editor.putInt(SETTING_DISPLAY_STARTUP_ACTIVITY, StrToIntDefault(oldValue, 0)); removeSetting = true; break; case "deviceAddress": editor.putString(SETTING_DEVICE_ADDRESS, oldValue); removeSetting = true; break; case "device": editor.putString(SETTING_DEVICE_TYPE, oldValue); removeSetting = true; break; case "car": short car = MainActivity.CAR_NONE; switch (oldValue) { case "None": car = MainActivity.CAR_NONE; break; case "Zoé": case "ZOE": case "ZOE Q210": car = MainActivity.CAR_ZOE_Q210; break; case "ZOE R240": car = MainActivity.CAR_ZOE_R240; break; case "ZOE Q90": car = MainActivity.CAR_ZOE_Q90; break; case "ZOE R90": case "ZOE R90/110": car = MainActivity.CAR_ZOE_R90; break; case "ZOE ZE50": car = MainActivity.CAR_X10PH2; break; } editor.putInt(SETTING_CAR_MODEL, car); removeSetting = true; break; case "optDebugLog": editor.putBoolean(SETTING_LOGGING_DEBUG_LOG, Boolean.parseBoolean(oldValue)); removeSetting = true; break; case "optToast": editor.putInt(SETTING_DISPLAY_TOAST_LEVEL, StrToIntDefault(oldValue, MainActivity.TOAST_ELMCAR)); removeSetting = true; break; case "optBTBackground": editor.putBoolean(SETTING_DEVICE_USE_BACKGROUND_MODE, Boolean.parseBoolean(oldValue)); removeSetting = true; break; case "optSafe": editor.putBoolean(SETTING_SECURITY_SAFE_MODE, Boolean.parseBoolean(oldValue)); removeSetting = true; break; case "optMiles": editor.putBoolean(SETTING_CAR_USE_MILES, Boolean.parseBoolean(oldValue)); removeSetting = true; break; case "optAltFields": editor.putBoolean(SETTING_DEVICE_USE_ISOTP_FIELDS, Boolean.parseBoolean(oldValue)); removeSetting = true; break; case "optFieldLog": editor.putBoolean(SETTING_LOGGING_FIELDS_LOG, Boolean.parseBoolean(oldValue)); removeSetting = true; break; case "optDataExport": editor.putBoolean(SETTING_LOGGING_USE_SD_CARD, Boolean.parseBoolean(oldValue)); removeSetting = true; break; case "optDark": editor.putInt(SETTING_DISPLAY_THEME, StrToIntDefault (oldValue, AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM)); removeSetting = true; break; case "disclaimer": editor.putBoolean(SETTING_APP_DISCLAIMER_SEEN, Boolean.parseBoolean(oldValue)); removeSetting = true; break; case "startMenu": editor.putInt(SETTING_DISPLAY_STARTUP_MENU, StrToIntDefault (oldValue, 0)); removeSetting = true; break; } // Remove the old setting if needed if (removeSetting) { editor.remove(entry.getKey()); } } // Mark old settings as converted editor.putBoolean(SETTING_APP_OLD_SETTINGS_MIGRATED, true); // Save settings editor.apply(); MainActivity.debug("Settings after migration: " + settings.getAll().toString()); } private static int StrToIntDefault (String s, int defaultValue) { try{ return Integer.parseInt(s); } catch (Exception e) { return defaultValue; } } public static class SettingsFragment extends PreferenceFragmentCompat { // Settings object SharedPreferences settings; @Override public void onCreatePreferences(Bundle savedInstanceState, String rootKey) { // Load preferences file PreferenceManager preferenceManager = getPreferenceManager(); preferenceManager.setSharedPreferencesName(MainActivity.PREFERENCES_FILE); preferenceManager.setSharedPreferencesMode(0); this.settings = preferenceManager.getSharedPreferences(); MainActivity.debug(this.settings.toString()); // Check for non-migrated settings (from old settings version) if (!this.settings.getBoolean(SettingsActivity.SETTING_APP_OLD_SETTINGS_MIGRATED, false)) { convertOldSettings(settings); } // Load views from settings fragment setPreferencesFromResource(R.xml.fragment_settings_main, rootKey); MainActivity.debug("ALL SETTINGS " + this.settings.getAll().toString()); // Bind settings fields events bindSettingsEvents(); // Bind buttons and actions bindActionButtons(); // Load settings loadDeviceSettings(); loadCarSettings(); loadSecuritySettings(); loadDisplaySettings(); loadInfo(); } /* @Override public void onDetach() { super.onDetach(); // saveSettings(); } */ private void bindSettingsEvents() { // On BT device choice findPreference(SETTING_DEVICE_CHOICE).setOnPreferenceChangeListener(new Preference.OnPreferenceChangeListener() { @Override public boolean onPreferenceChange(Preference preference, Object newValue) { ListPreference devicesList = (ListPreference) preference; String choiceValue = newValue.toString(); String choiceLabel = devicesList.getEntries()[devicesList.findIndexOfValue(choiceValue)].toString(); applyDeviceSettings(choiceLabel, choiceValue); return true; } }); // On safe mode check findPreference(SETTING_SECURITY_SAFE_MODE).setOnPreferenceChangeListener(new Preference.OnPreferenceChangeListener() { @Override public boolean onPreferenceChange(Preference preference, Object newValue) { MainActivity.debug("SAFE MODE VALUE CHANGED" + newValue); return true; } }); findPreference(SETTING_SECURITY_SAFE_MODE).setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override public boolean onPreferenceClick(final Preference preference) { if (!((SwitchPreference)preference).isChecked()) { // set dialog message String yes = MainActivity.getStringSingle(R.string.prompt_YesIKnow); String no = MainActivity.getStringSingle(R.string.prompt_NoSecureWay); Display display = getActivity().getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); float width = size.x; //int height = size.y; width = width / getResources().getDisplayMetrics().density * getResources().getDisplayMetrics().scaledDensity; if (width <= 480) { yes = MainActivity.getStringSingle(R.string.default_Yes); no = MainActivity.getStringSingle(R.string.default_No); } final Context context = getActivity(); AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context); // set title alertDialogBuilder.setTitle(R.string.prompt_Attention); // set dialog message alertDialogBuilder .setMessage(MainActivity.getStringSingle(R.string.prompt_WarningDriving)) .setCancelable(true) .setPositiveButton(yes, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { // if this button is clicked, close // current activity setSwitchPreferenceStatus(((SwitchPreference) preference), SETTING_SECURITY_SAFE_MODE, false); dialog.cancel(); } }) .setNegativeButton(no, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { // if this button is clicked, just close // the dialog box and do nothing setSwitchPreferenceStatus(((SwitchPreference) preference), SETTING_SECURITY_SAFE_MODE, true); dialog.cancel(); } }); // create alert dialog AlertDialog alertDialog = alertDialogBuilder.create(); // show it alertDialog.show(); // Block the click by default as the actual result is handled by the dialog return false; } return true; } }); // On BT background mode check findPreference(SETTING_DEVICE_USE_BACKGROUND_MODE).setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override public boolean onPreferenceClick(final Preference preference) { if (((SwitchPreference)preference).isChecked()) { // set dialog message String yes = MainActivity.getStringSingle(R.string.prompt_YesIKnow); String no = MainActivity.getStringSingle(R.string.prompt_NoThanks); Display display = getActivity().getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); float width = size.x; //int height = size.y; width = width / getResources().getDisplayMetrics().scaledDensity; if (width <= 480) { yes = MainActivity.getStringSingle(R.string.default_Yes); no = MainActivity.getStringSingle(R.string.default_No); } final Context context = getActivity(); AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context); // set title alertDialogBuilder.setTitle("ATTENTION"); // set dialog message alertDialogBuilder .setMessage(Html.fromHtml(MainActivity.getStringSingle(R.string.prompt_BluetoothOn))) .setCancelable(true) .setPositiveButton(yes, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { // if this button is clicked, close // current activity setSwitchPreferenceStatus(((SwitchPreference) preference), SETTING_DEVICE_USE_BACKGROUND_MODE, true); dialog.cancel(); } }) .setNegativeButton(no, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { // if this button is clicked, just close // the dialog box and do nothing setSwitchPreferenceStatus(((SwitchPreference) preference), SETTING_DEVICE_USE_BACKGROUND_MODE, false); dialog.cancel(); } }); // create alert dialog AlertDialog alertDialog = alertDialogBuilder.create(); // show it alertDialog.show(); // Block the click by default as the actual result is handled by the dialog return false; } return true; } }); /* findPreference(SETTING_LOGGING_USE_SD_CARD).setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override public boolean onPreferenceClick(final Preference preference) { // add code here to check external SDcard is avail, writeable and has sufficient space if (!MainActivity.getInstance().isExternalStorageWritable()) { final Context context = getActivity(); AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context); // set title alertDialogBuilder.setTitle(R.string.prompt_Sorry); // set dialog message alertDialogBuilder .setMessage(Html.fromHtml(MainActivity.getStringSingle(R.string.prompt_NoSd))) .setCancelable(true) .setPositiveButton("OK", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { // if this button is clicked, close // current activity setSwitchPreferenceStatus(((SwitchPreference) preference), SETTING_LOGGING_USE_SD_CARD, false); dialog.cancel(); } }); // create alert dialog AlertDialog alertDialog = alertDialogBuilder.create(); // show it alertDialog.show(); MainActivity.dataExportMode = false; // due to SDcard not writeable return false; } return true; } });*/ // On debug log check findPreference(SETTING_LOGGING_DEBUG_LOG).setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override public boolean onPreferenceClick(final Preference preference) { // add code here to check external SDcard is avail, writeable and has sufficient space final boolean sdcardCheck = Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState()); // check for space later if (!sdcardCheck) { final Context context = getActivity(); AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context); // set title alertDialogBuilder.setTitle(R.string.prompt_Sorry); // set dialog message alertDialogBuilder .setMessage(Html.fromHtml(MainActivity.getStringSingle(R.string.prompt_NoSd))) .setCancelable(true) .setPositiveButton("OK", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { // if this button is clicked, close // current activity setSwitchPreferenceStatus(((SwitchPreference) preference), SETTING_LOGGING_DEBUG_LOG, false); dialog.cancel(); } }); // create alert dialog AlertDialog alertDialog = alertDialogBuilder.create(); // show it alertDialog.show(); return false; } return true; } }); // On debug fields check findPreference(SETTING_LOGGING_FIELDS_LOG).setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override public boolean onPreferenceClick(final Preference preference) { // add code here to check external SDcard is avail, writeable and has sufficient space final boolean sdcardCheck = Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState()); // check for space later if (!sdcardCheck) { final Context context = getActivity(); AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context); // set title alertDialogBuilder.setTitle(R.string.prompt_Sorry); // set dialog message alertDialogBuilder .setMessage(Html.fromHtml(MainActivity.getStringSingle(R.string.prompt_NoSd))) .setCancelable(true) .setPositiveButton("OK", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { // if this button is clicked, close // current activity setSwitchPreferenceStatus(((SwitchPreference) preference), SETTING_LOGGING_FIELDS_LOG, false); dialog.cancel(); } }); // create alert dialog AlertDialog alertDialog = alertDialogBuilder.create(); // show it alertDialog.show(); return false; } return true; } }); } private void loadDeviceSettings() { // Device address EditTextPreference deviceAddress = (EditTextPreference) findPreference(SETTING_DEVICE_ADDRESS); deviceAddress.setText(settings.getString(SETTING_DEVICE_ADDRESS, "")); // Device type ListPreference deviceType = (ListPreference) findPreference(SETTING_DEVICE_TYPE); deviceType.setValue(settings.getString(SETTING_DEVICE_TYPE, DEVICE_TYPE_ELM_327)); // Use ISOTP SwitchPreference btUseIsotp = (SwitchPreference) findPreference(SETTING_DEVICE_USE_ISOTP_FIELDS); btUseIsotp.setChecked(settings.getBoolean(SETTING_DEVICE_USE_ISOTP_FIELDS, false)); // Use background mode SwitchPreference btUseBackground = (SwitchPreference) findPreference(SETTING_DEVICE_USE_BACKGROUND_MODE); btUseBackground.setChecked(settings.getBoolean(SETTING_DEVICE_USE_BACKGROUND_MODE, false)); // Device choice: load devices list ListPreference devicesList = findPreference(SETTING_DEVICE_CHOICE); tryTofillDeviceList(); String deviceAddressValue = settings.getString(SETTING_DEVICE_ADDRESS, ""); String deviceNameValue = settings.getString(SETTING_DEVICE_NAME, ""); if (deviceNameValue.toLowerCase().startsWith(DEVICE_NAME_HTTP_GATEWAY)) { devicesList.setValue(DEVICE_TYPE_HTTP_GATEWAY); //deviceAddressValue = settings.getString(SETTING_DEVICE_HTTP_GATEWAY, ""); } else if (deviceAddressValue.isEmpty()) { devicesList.setValueIndex(0); } else { devicesList.setValue(deviceAddressValue); } // Propagate device settings to other fields applyDeviceSettings( settings.getString(SETTING_DEVICE_NAME, ""), deviceAddressValue ); } private void loadCarSettings() { // Car model ListPreference carModel = (ListPreference) findPreference(SETTING_CAR_MODEL); carModel.setEntryValues(CAR_MODELS_VALUES); carModel.setEntries(CAR_MODELS_LABELS); carModel.setValue(String.valueOf(settings.getInt(SETTING_CAR_MODEL, MainActivity.CAR_ZOE_Q210))); } private void loadSecuritySettings() { // Nothing for now } private void loadDisplaySettings() { // Display theme ListPreference theme = (ListPreference) findPreference(SETTING_DISPLAY_THEME); theme.setEntryValues(DISPLAY_THEMES_VALUES); theme.setValue(String.valueOf(settings.getInt(SETTING_DISPLAY_THEME, AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM))); // Display toast level ListPreference toastLevel = (ListPreference) findPreference(SETTING_DISPLAY_TOAST_LEVEL); toastLevel.setEntryValues(DISPLAY_TOAST_LEVELS_VALUES); toastLevel.setValue(String.valueOf(settings.getInt(SETTING_DISPLAY_TOAST_LEVEL, MainActivity.TOAST_NONE))); // Startup activity fillStartupActivityList(); } private void loadLoggingSettings() { // Nothing for now } private void loadInfo() { // Display build version EditTextPreference versionInfo = findPreference(INFO_APP_VERSION_LABEL); try { Date buildDate = new Date(BuildConfig.TIMESTAMP); SimpleDateFormat sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHM), Locale.getDefault()); String version = MainActivity.getStringSingle(R.string.version) + BuildConfig.VERSION_NAME + " (" + BuildConfig.BUILD_TYPE + "-" + BuildConfig.BRANCH + ") " + MainActivity.getStringSingle(R.string.build) + sdf.format(buildDate); versionInfo.setTitle(version); } catch (Exception e) { Crashlytics.logException(e); } } private void saveCarSettings(SharedPreferences.Editor editor) { // Car model editor.putInt(SETTING_CAR_MODEL, Integer.parseInt(((ListPreference) findPreference(SETTING_CAR_MODEL)).getValue())); } private void saveDisplaySettings(SharedPreferences.Editor editor) { // Display theme editor.putInt(SETTING_DISPLAY_THEME, Integer.parseInt(((ListPreference) findPreference(SETTING_DISPLAY_THEME)).getValue())); // Display toast level editor.putInt(SETTING_DISPLAY_TOAST_LEVEL, Integer.parseInt(((ListPreference) findPreference(SETTING_DISPLAY_TOAST_LEVEL)).getValue())); // Startup activity or menu ListPreference activitiesList = (ListPreference) findPreference(SETTING_DISPLAY_STARTUP_ACTIVITY); String startupChoice = activitiesList.getValue(); if (startupChoice.startsWith("m")) { editor.remove(SETTING_DISPLAY_STARTUP_ACTIVITY); editor.putInt(SETTING_DISPLAY_STARTUP_MENU, Integer.parseInt(startupChoice.substring(1))); } else { // Find the menu corresponding to the selected activity to add it as parent boolean menuFound = false; for (String menu : new String[]{"MAIN", "TECHNICAL", "EXPERIMENTAL", "CUSTOM"}) { int[] activityCategory; try { activityCategory = (int[]) ActivityRegistry.class.getField("ACTIVITIES_" + menu).get(null); } catch (NoSuchFieldException | IllegalAccessException e) { // If the activity group is not found, go to the next continue; } for (int activity : activityCategory) { if (activity == Integer.parseInt(startupChoice)) { menuFound = true; try { editor.putInt(SETTING_DISPLAY_STARTUP_MENU, (Integer) MainActivity.class.getField("MENU_" + menu).get(null)); } catch (IllegalAccessException | NoSuchFieldException e) { // Fail silently } } } } if (!menuFound) { editor.remove(SETTING_DISPLAY_STARTUP_MENU); } editor.putInt(SETTING_DISPLAY_STARTUP_ACTIVITY, Integer.parseInt(startupChoice)); } } private void bindActionButtons() { // CanSee settings Preference btnCanSeeSettings = findPreference(BTN_CAN_SEE_SETTINGS); btnCanSeeSettings.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override public boolean onPreferenceClick(Preference preference) { Intent intent = new Intent(getActivity(), CanSeeActivity.class); startActivityForResult(intent, 4); return true; } }); // Log settings Preference btnLoggingSettings = findPreference(BTN_LOGGING_SETTINGS); btnLoggingSettings.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override public boolean onPreferenceClick(Preference preference) { Intent intent = new Intent(getActivity(), LoggingActivity.class); startActivityForResult(intent, 4); return true; } }); // Clear cached data Preference btnClearCache = findPreference(BTN_CLEAR_CACHE); btnClearCache.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override public boolean onPreferenceClick(Preference preference) { // Clear settings SharedPreferences.Editor editor = settings.edit(); editor.clear(); editor.apply(); // Clear data file PreferenceManager preferenceManager = getPreferenceManager(); preferenceManager.setSharedPreferencesName(MainActivity.DATA_FILE); preferenceManager.setSharedPreferencesMode(0); SharedPreferences dataSettings = preferenceManager.getSharedPreferences(); dataSettings.edit().clear().apply(); // Clear database CanzeDataSource cds = CanzeDataSource.getInstance(); if (cds != null) CanzeDataSource.getInstance().clear(); MainActivity.fields.clearAllFields(); MainActivity.toast(MainActivity.TOAST_NONE, R.string.toast_CacheCleared); return true; } }); // Configure custom fragment Preference btnCustomFragment = findPreference(BTN_CUSTOM_FRAGMENT); btnCustomFragment.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override public boolean onPreferenceClick(Preference preference) { Intent i = new Intent(getActivity(), SettingsCustomActivity.class); startActivity(i); return true; } }); } private void applyDeviceSettings(String choiceLabel, String choiceValue) { EditTextPreference deviceAddress = (EditTextPreference) findPreference(SETTING_DEVICE_ADDRESS); ListPreference deviceType = (ListPreference) findPreference(SETTING_DEVICE_TYPE); SwitchPreference useIsotp = (SwitchPreference) findPreference(SETTING_DEVICE_USE_ISOTP_FIELDS); // Set fields depending on the detected dongle type if (choiceLabel.toLowerCase().startsWith(DEVICE_NAME_HTTP_GATEWAY)) { // Enable manual address selection deviceAddress.setEnabled(true); // Set gateway address deviceAddress.setText(settings.getString(SETTING_DEVICE_HTTP_GATEWAY, "")); // Set device type and disable field deviceType.setValue(DEVICE_TYPE_HTTP_GATEWAY); deviceType.setEnabled(false); } else if (choiceLabel.toLowerCase().startsWith(DEVICE_NAME_CAN_SEE)) { // Set device address deviceAddress.setText(choiceValue); // Disable manual address selection deviceAddress.setEnabled(false); // Set device type and disable field deviceType.setValue(DEVICE_TYPE_CAN_SEE); deviceType.setEnabled(false); // Set ISOTP to false useIsotp.setChecked(false); } else { // Set device address deviceAddress.setText(choiceValue); // Disable manual address selection deviceAddress.setEnabled(false); // Set device type to ELM by default and disable field deviceType.setValue(DEVICE_TYPE_ELM_327); deviceType.setEnabled(false); // Set ISOTP to true useIsotp.setChecked(true); } } private void tryTofillDeviceList() { // get the bluetooth adapter BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); if (bluetoothAdapter == null) { MainActivity.toast(MainActivity.TOAST_NONE, R.string.toast_NoBluetooth); } else { if (!bluetoothAdapter.isEnabled()) { // launch the system activity Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); startActivityForResult(enableBtIntent, MainActivity.REQUEST_ENABLE_BT); } } fillDeviceList(); // if no BT, still allow the http devices } private void fillDeviceList() { // Get current device info String deviceAddress = settings.getString(SETTING_DEVICE_ADDRESS, null); String deviceName = settings.getString(SETTING_DEVICE_NAME, ""); MainActivity.debug("SELECT: deviceAddress = " + deviceAddress); MainActivity.debug("SELECT: deviceName = " + deviceName); // Create labels and values arrays List listLabels = new ArrayList<>(); List listValues = new ArrayList<>(); int selectedIndex = -1; //int i = 0; // activateing the selection is now done in loadDeviceSettings // Get the bluetooth adapter BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); if (bluetoothAdapter != null) { // get the devices Set pairedDevices = bluetoothAdapter.getBondedDevices(); // if there are paired devices if (pairedDevices.size() > 0) { // loop through paired devices for (BluetoothDevice device : pairedDevices) { // add the name and address to an array adapter to show in a ListView // see https://stackoverflow.com/questions/20658142/getting-the-renamed-name-of-an-android-bluetoothdevice String deviceAlias = device.getName(); try { // getAliasName is preferred as it returns the user naming. This simplifies // identification if having several dongles, so you can name them "KONNWEI", "blue" // etcetera in Android's Bluetooth settings. // this will lint warning as getAliasName has @hide set. Method method = device.getClass().getMethod("getAliasName"); // getMethod is supposed never to return null, but raise an exception instead //if (method != null) { deviceAlias = (String) method.invoke(device); //} } catch (Exception e) { // do nothing. Trapping here is no problem, as we already have the name } listLabels.add(deviceAlias + "\n" + device.getAddress()); listValues.add(device.getAddress()); // Set selected index if the device equals the one in the settings if (deviceAlias != null && deviceAlias.equals(deviceName)) { //selectedIndex = i; // plus one as HTTP is always first in list //MainActivity.debug("SELECT: found = "+i+" ("+deviceAlias+")"); } //i++; } } } // Add a static entry for the HTTP Gateway listLabels.add("HTTP Gateway\n-"); listValues.add(DEVICE_TYPE_HTTP_GATEWAY); //if ("HTTP Gateway".equals(deviceName)) // selectedIndex = i; // Map the labels/values to the list ListPreference devicesList = (ListPreference) findPreference(SETTING_DEVICE_CHOICE); devicesList.setEntries(listLabels.toArray(new CharSequence[listLabels.size()])); devicesList.setEntryValues(listValues.toArray(new CharSequence[listValues.size()])); // Select the actual device //devicesList.setValueIndex(selectedIndex == -1 ? i : selectedIndex); } public void fillStartupActivityList() { // Get the ListPreference ListPreference startupActivities = (ListPreference) findPreference(SETTING_DISPLAY_STARTUP_ACTIVITY); // Create labels and values arrays List listLabels = new ArrayList<>(); List listValues = new ArrayList<>(); // Iterate over the different activity categories and add the list items for (String menu : new String[]{"MAIN", "TECHNICAL", "EXPERIMENTAL", "CUSTOM"}) { // Add the menu item try { int resId = Utils.getResId("menu_" + Utils.capitalizeString(menu), R.string.class); listValues.add("m" + MainActivity.class.getField("MENU_" + menu).get(null)); listLabels.add("-- " + getString(resId) + " --"); } catch (NoSuchFieldException | SecurityException | IllegalAccessException | Resources.NotFoundException e) { // Fail silently as we won't add the menu if the field does not exist } // Add activity items from the menu int[] activityCategory; try { activityCategory = (int[]) ActivityRegistry.class.getField("ACTIVITIES_" + menu).get(null); } catch (NoSuchFieldException | IllegalAccessException e) { // If the activity group is not found, go to the next continue; } for (int i : activityCategory) { Activity activity = ActivityRegistry.getInstance().getById(i); listLabels.add(activity.getTitle()); listValues.add(String.valueOf(i)); } } // Load values startupActivities.setEntries(listLabels.toArray(new CharSequence[listLabels.size()])); startupActivities.setEntryValues(listValues.toArray(new CharSequence[listValues.size()])); // Set selected value int selectedStartupActivity = settings.getInt(SETTING_DISPLAY_STARTUP_ACTIVITY, -1); int selectedStartupMenu = settings.getInt(SETTING_DISPLAY_STARTUP_MENU, -1); if (selectedStartupMenu > -1) { startupActivities.setValue("m" + selectedStartupMenu); } else if (selectedStartupActivity > -1) { startupActivities.setValue(String.valueOf(selectedStartupActivity)); } else { startupActivities.setValueIndex(0); } } public void saveSettings() { // double check if settings is set. We've seen crashes on that if (settings == null) return; // Using the fragment, all visible settings are automatically saved, we need to save // the "meta" (without View) settings SharedPreferences.Editor editor = settings.edit(); ListPreference devicesList = (ListPreference) findPreference(SETTING_DEVICE_CHOICE); if (devicesList != null && devicesList.getEntry() != null) { String device = devicesList.getEntry().toString(); editor.putString(SETTING_DEVICE_NAME, device); if (device.toLowerCase().startsWith(DEVICE_NAME_HTTP_GATEWAY)) { EditTextPreference url = findPreference(SETTING_DEVICE_ADDRESS); editor.putString(SETTING_DEVICE_HTTP_GATEWAY, url.getText().replace ("http:", "https:")); } } // As we use ListPreference that only accept string, we have to manually save some // non-string settings saveCarSettings(editor); saveDisplaySettings(editor); // Remove the visible "meta" fields from the settings as they are not needed there editor.remove(SETTING_DEVICE_CHOICE); // Save to file editor.apply(); } private void setSwitchPreferenceStatus(SwitchPreference preference, String setting, boolean status) { SharedPreferences.Editor editor = settings.edit(); preference.setChecked(status); editor.putBoolean(setting, status).apply(); } } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/SettingsCustomActivity.java ================================================ package lu.fisch.canze.activities; import androidx.appcompat.app.ActionBar; import androidx.appcompat.app.AppCompatActivity; import android.content.SharedPreferences; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; import lu.fisch.canze.R; import lu.fisch.canze.classes.ActivityRegistry; import lu.fisch.canze.fragments.CustomFragment; public class SettingsCustomActivity extends AppCompatActivity { private ListView all; private ListView selected; private int allPos = -1; private int selPos = -1; private ActivityRegistry registry = ActivityRegistry.getInstance(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ActionBar actionBar = getSupportActionBar(); if (actionBar != null) actionBar.setDisplayHomeAsUpEnabled(true); setContentView(R.layout.activity_settings_custom); all = (ListView) findViewById(R.id.lstAll); all.setChoiceMode(ListView.CHOICE_MODE_SINGLE); ArrayAdapter adapter = new ArrayAdapter(getApplicationContext(), R.layout.spinner_item, registry.getActivities()); all.setAdapter(adapter); all.setClickable(true); all.setOnItemClickListener(new AdapterView.OnItemClickListener() { public void onItemClick(AdapterView arg0, View arg1, int position, long arg3) { allPos = position; } }); loadSelected(); selected = (ListView) findViewById(R.id.lstSelected); selected.setChoiceMode(ListView.CHOICE_MODE_SINGLE); selected.setClickable(true); selected.setOnItemClickListener(new AdapterView.OnItemClickListener() { public void onItemClick(AdapterView arg0, View arg1, int position, long arg3) { selPos = position; } }); // add Button findViewById(R.id.btnAdd).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if(allPos!=-1) { registry.addToSelected(allPos); loadSelected(); } } }); // remove Button findViewById(R.id.btnRemove).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if(selPos!=-1) { registry.removeFromSelected(selPos); loadSelected(); } } }); // up Button findViewById(R.id.btnUp).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if(selPos!=-1) { if(registry.moveSelectedUp(selPos)) { loadSelected(); selPos--; selected.requestFocusFromTouch(); selected.setItemChecked(selPos,true); selected.setSelection(selPos); } } } }); // down Button findViewById(R.id.btnDown).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if(selPos!=-1) { if(registry.moveSelectedDown(selPos)) { loadSelected(); selPos++; selected.requestFocusFromTouch(); selected.setItemChecked(selPos,true); selected.setSelection(selPos); } } } }); } private void loadSelected() { selected = (ListView) findViewById(R.id.lstSelected); ArrayAdapter adapter = new ArrayAdapter(getApplicationContext(), R.layout.spinner_item, registry.getSelected()); selected.setAdapter(adapter); } private void saveSettings() { // removed the MainActivity.getInstance(), as we got a nullException, 20210104 SharedPreferences settings = getSharedPreferences(MainActivity.PREFERENCES_FILE, 0); SharedPreferences.Editor editor = settings.edit(); for(int i = 0; i< CustomFragment.BUTTONCOUNT; i++) { if(i0.1) { // calculate avg speed speedCalc = ((distanceInterpolated - distanceStart) * 3600000.0) / (timeEnd - timeStart); // show it tv = findViewById(R.id.speed); if (tv != null) tv.setText(String.format(Locale.getDefault(), speedformat, speedCalc)); } } // clear the clutter if (!BuildConfig.BRANCH.equals("master")) { tv = findViewById(R.id.textDetails); tv.setText( String.format(Locale.getDefault(), "Distance:%.2f%s - Time:%s > %s = %s - Speed:%.2f%s - SpeedCalc:%.2f%s - SDK:%s", distanceEnd - distanceStart, MainActivity.milesMode ? mi : km, timeToStr(timeStart), timeToStr(timeEnd), timeToStr(timeEnd - timeStart), speed, MainActivity.milesMode ? mih : kmh, speedCalc, MainActivity.milesMode ? mih : kmh, Build.VERSION.SDK_INT ) ); } else { // added to remove "waiting for second value" when on master branch tv = findViewById(R.id.textDetails); tv.setText(""); } distanceLast = distanceEnd; timeLast = timeEnd; } else if(distanceLast == 0) { // do nothing ... tv = findViewById(R.id.textDetails); tv.setText(R.string.message_gotfirst); distanceLast = distanceEnd; } else if (distanceLast != distanceEnd) { // set starting distance as long as starting time is not set distanceStart = distanceEnd; distanceLast = distanceEnd; distanceInterpolated = distanceEnd; // set start time timeStart = timeEnd; timeLast = timeEnd; tv = findViewById(R.id.textDetails); tv.setText(R.string.message_gotsecond); } else { tv = findViewById(R.id.textDetails); tv.setText(R.string.message_waitsecond); } } break; } } }); } public String timeToStr(long time) { String r = ""; time=time/1000; long h = time/3600; long m = (time%3600)/60; long s = (time % 60); if(h<10)r+="0"; r+=h; r+=":"; if(m<10)r+="0"; r+=m; r+=":"; if(s<10)r+="0"; r+=s; return r; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/TiresActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.content.res.Resources; import android.os.Bundle; import android.util.TypedValue; import android.view.View; import android.view.WindowManager; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import androidx.annotation.ColorInt; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import lu.fisch.canze.R; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.actors.Ecu; import lu.fisch.canze.actors.Ecus; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Frame; import lu.fisch.canze.actors.Frames; import lu.fisch.canze.actors.Message; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; import static lu.fisch.canze.activities.MainActivity.debug; public class TiresActivity extends CanzeActivity implements FieldListener, DebugListener { private static final String[] val_TireSpdPresMisadaption = {MainActivity.getStringSingle(R.string.default_Ok), MainActivity.getStringSingle(R.string.default_NotOk)}; private static final String[] val_TireState = MainActivity.getStringList(R.array.list_TireStatus); private static final String val_Unavailable = MainActivity.getStringSingle(R.string.default_Dash); @ColorInt private int baseColor; @ColorInt private int alarmColor; static int previousState = -2; // uninitialized private final Ecu ecu = Ecus.getInstance().getByMnemonic("BCM"); private final int ecuFromId = (ecu == null) ? 0 : ecu.getFromId(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_tires); TypedValue typedValue = new TypedValue(); Resources.Theme theme = this.getTheme(); theme.resolveAttribute(R.attr.colorButtonNormal, typedValue, true); baseColor = typedValue.data; boolean dark = ((baseColor & 0xff0000) <= 0xa00000); alarmColor = dark ? baseColor + 0x200000 : baseColor - 0x00002020; // do not display the keyboard immediately getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN); // set the two button handlers Button button = findViewById(R.id.button_TiresRead); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { (new Thread(new Runnable() { @Override public void run() { buttonRead(); } })).start(); } }); button = findViewById(R.id.button_TiresWrite); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { (new Thread(new Runnable() { @Override public void run() { buttonWrite(); } })).start(); } }); button = findViewById(R.id.button_TiresLoadA); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { load ("A"); } }); button = findViewById(R.id.button_TiresSaveA); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { save("A"); } }); button = findViewById(R.id.button_TiresLoadB); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { load ("B"); } }); button = findViewById(R.id.button_TiresSaveB); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { save("B"); } }); button = findViewById(R.id.button_TiresSwap); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { buttonSwap(); } }); tpmsState(-1); // initialize to "no TPMS, but don't Toast that". This ensures disabled fields, also after a rotate } // set the fields the poller should query protected void initListeners() { MainActivity.getInstance().setDebugListener(this); addField(Sid.TpmsState, 1000); addField(Sid.TireSpdPresMisadaption, 6000); addField(Sid.TireFLState, 6000); addField(Sid.TireFLPressure, 6000); addField(Sid.TireFRState, 6000); addField(Sid.TireFRPressure, 6000); addField(Sid.TireRLState, 6000); addField(Sid.TireRLPressure, 6000); addField(Sid.TireRRState, 6000); addField(Sid.TireRRPressure, 6000); } // fired event when any of the registered fields are getting updated by the device @Override public void onFieldUpdateEvent(final Field field) { // the update has to be done in a separate thread // otherwise the UI will not be repainted runOnUiThread(new Runnable() { @Override public void run() { if (Double.isNaN(field.getValue())) return; String fieldId = field.getSID(); TextView tv = null; String value = ""; int intValue = (int) field.getValue(); int color = baseColor; // get the text field switch (fieldId) { case Sid.TpmsState: tpmsState (intValue); tv = null; break; case Sid.TireSpdPresMisadaption: tv = findViewById(R.id.text_TireSpdPresMisadaption); color = 0; // don't set color value = val_TireSpdPresMisadaption[intValue]; break; case Sid.TireFLState: if (intValue < 0 || intValue > 6) return; tv = findViewById(R.id.text_TireFLState); if (intValue > 1) color = alarmColor; value = val_TireState != null ? val_TireState[intValue] : ""; break; case Sid.TireFLPressure: tv = findViewById(R.id.text_TireFLPressure); value = (intValue >= 3499) ? val_Unavailable : ("" + intValue); break; case Sid.TireFRState: if (intValue < 0 || intValue > 6) return; tv = findViewById(R.id.text_TireFRState); if (intValue > 1) color = alarmColor; value = val_TireState != null ? val_TireState[intValue] : ""; break; case Sid.TireFRPressure: tv = findViewById(R.id.text_TireFRPressure); value = (intValue >= 3499) ? val_Unavailable : ("" + intValue); break; case Sid.TireRLState: if (intValue < 0 || intValue > 6) return; tv = findViewById(R.id.text_TireRLState); if (intValue > 1) color = alarmColor; value = val_TireState != null ? val_TireState[intValue] : ""; break; case Sid.TireRLPressure: tv = findViewById(R.id.text_TireRLPressure); value = (intValue >= 3499) ? val_Unavailable : ("" + intValue); break; case Sid.TireRRState: if (intValue < 0 || intValue > 6) return; tv = findViewById(R.id.text_TireRRState); if (intValue > 1) color = alarmColor; value = val_TireState != null ? val_TireState[intValue] : ""; break; case Sid.TireRRPressure: tv = findViewById(R.id.text_TireRRPressure); value = (intValue >= 3499) ? val_Unavailable : ("" + intValue); break; } // set regular new content, all exeptions handled above if (tv != null) { tv.setText(value); if (color != 0) tv.setBackgroundColor(color); } tv = findViewById(R.id.textDebug); tv.setText(fieldId); } }); } private void tpmsState (int state) { if (state == previousState || ecu == null || ecuFromId == 0 || MainActivity.device == null) return; previousState = state; boolean isEnabled = (state == 1); EditText edittext; edittext = findViewById(R.id.text_TireFLId); edittext.setEnabled(isEnabled); edittext = findViewById(R.id.text_TireFRId); edittext.setEnabled(isEnabled); edittext = findViewById(R.id.text_TireRLId); edittext.setEnabled(isEnabled); edittext = findViewById(R.id.text_TireRRId); edittext.setEnabled(isEnabled); Button button; button = findViewById(R.id.button_TiresRead); button.setEnabled(isEnabled); button = findViewById(R.id.button_TiresWrite); button.setEnabled(isEnabled); button = findViewById(R.id.button_TiresSaveA); button.setEnabled(isEnabled); button = findViewById(R.id.button_TiresLoadA); button.setEnabled(isEnabled); button = findViewById(R.id.button_TiresSaveB); button.setEnabled(isEnabled); button = findViewById(R.id.button_TiresLoadB); button.setEnabled(isEnabled); button = findViewById(R.id.button_TiresSwap); button.setEnabled(isEnabled); // do not use !enabled as a rotate will reinitialize the activity, setting state to -1 if (state == 0) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Your car has no TPMS system"); } else if (state == 1) { (new Thread(new Runnable() { @Override public void run() { buttonRead(); } })).start(); } } private boolean ensureFolderThere () { if (!MainActivity.storageIsAvailable) { debug("AllDataActivity.createDump: SDcard not available"); return false; } if (!MainActivity.getInstance().isExternalStorageWritable()) { debug("DiagDump: SDcard not writeable"); return false; } String file_path = MainActivity.getInstance().getExternalFolder(); File dir = new File(file_path); if (!dir.exists()) { dir.mkdirs(); } return true; } private void load (String set) { String file_path = MainActivity.getInstance().getExternalFolder(); String filename = file_path + "_Tires" + set + ".csv"; ensureFolderThere(); try { BufferedReader bufferedReader = new BufferedReader(new FileReader(filename)); String line = bufferedReader.readLine(); bufferedReader.close(); String[] idsRead = line.split(","); displayId(R.id.text_TireFLId, idsRead[0]); displayId(R.id.text_TireFRId, idsRead[1]); displayId(R.id.text_TireRRId, idsRead[2]); displayId(R.id.text_TireRLId, idsRead[3]); } catch (IOException e ) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Can't access file " + filename); } catch (ArrayIndexOutOfBoundsException e ) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Wrong format in file " + filename); } } private void save (String set) { String file_path = MainActivity.getInstance().getExternalFolder(); String filename = file_path + "_Tires" + set + ".csv"; ensureFolderThere(); try { String line = simpleStringParse(R.id.text_TireFLId) + "," +simpleStringParse(R.id.text_TireFRId) + "," +simpleStringParse(R.id.text_TireRRId) + "," +simpleStringParse(R.id.text_TireRLId) + "\n"; BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(filename, false)); bufferedWriter.append(line); bufferedWriter.close(); } catch (IOException e ) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Can't access file " + filename); } } private void displayId(final int fieldId, final int val) { displayId (fieldId, String.format("%06X", val)); } private void displayId(final int fieldId, final String val) { runOnUiThread(new Runnable() { @Override public void run() { EditText et = findViewById(fieldId); if (et != null) et.setText(val); } }); } private void readTpms (int[] idsRead) { for (int i = 0; i < idsRead.length; i++) { idsRead[i] = 0; } if (ecu == null || ecuFromId == 0) return; Frame frame = Frames.getInstance().getById(ecuFromId, "6171"); // get TPMS ids if (frame == null) { MainActivity.debug("frame does not exist:" + ecu.getHexFromId() + ".6171"); return; } if (MainActivity.device == null) return; // this should not happen as the fragment checks the device property, but it does Message message = MainActivity.device.injectRequest(frame); // return result message of last request (get TPMS ids) if (message == null) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Could not read TPMS sensors"); return; } if (message.isError()) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Could not read TPMS sensors:" + message.getError()); return; } // process the frame by going through all the containing fields // setting their values and notifying all listeners (there should be none) message.onMessageCompleteEvent(); // now process all fields in the frame. Select only the ones we are interested in for (Field field : frame.getAllFields()) { switch (field.getFrom()) { case 24: // CodeIdentite(1)_(0) --> Ident code, left front wheel (Wheel 1, set 0) idsRead[0] = (int) field.getValue(); break; case 48: // CodeIdentite(2)_(0) --> Ident code, right front wheel (Wheel 2, set 0) idsRead[1] = (int) field.getValue(); break; case 72: // CodeIdentite(3)_(0) --> Ident code, right rear wheel (Wheel 3, set 0) idsRead[2] = (int) field.getValue(); break; case 96: // CodeIdentite(4)_(0) --> IIdent code, left rear wheel (Wheel 4, set 0) idsRead[3] = (int) field.getValue(); break; } } bit23on(idsRead); } private void buttonRead() { int[] idsRead = new int[4]; readTpms(idsRead); if (!isFinishing()) { // display the fetched values displayId(R.id.text_TireFLId, idsRead[0]); displayId(R.id.text_TireFRId, idsRead[1]); displayId(R.id.text_TireRRId, idsRead[2]); displayId(R.id.text_TireRLId, idsRead[3]); MainActivity.toast(MainActivity.TOAST_NONE, "TPMS sensors read"); } } private int simpleIntParse(int fieldId) { try { return Integer.parseInt(simpleStringParse(fieldId), 16); } catch (Exception e) { return -1; } } private String simpleStringParse(int fieldId) { EditText et = findViewById(fieldId); if (et != null) { return et.getText().toString(); } else { return "-1"; } } private boolean compareTpms (int[] idsRead, int[] idsWrite) { for (int i = 0; i < idsRead.length; i++) { if (idsRead[i] == 0) return false; if (idsWrite[i] == 0) return false; if (idsRead[i] != idsWrite[i]) return false; } return true; } private void buttonWrite() { int[] idsWrite = new int[4]; int[] idsRead = new int[4]; idsWrite[0] = simpleIntParse(R.id.text_TireFLId); // front left / AVG idsWrite[1] = simpleIntParse(R.id.text_TireFRId); // front right / AVD idsWrite[2] = simpleIntParse(R.id.text_TireRRId); // back right / ARD idsWrite[3] = simpleIntParse(R.id.text_TireRLId); // back left / ARG bit23on(idsWrite); if (ecu == null || ecuFromId == 0) return; if (idsWrite[0] == -1 || idsWrite[1] == -1 || idsWrite[2] == -1 || idsWrite[3] == -1) { MainActivity.toast(MainActivity.TOAST_NONE, "Those are not all valid hex values"); return; } if (idsWrite[0] == 0 && idsWrite[1] == 0 && idsWrite[2] == 0 && idsWrite[3] == 0) { MainActivity.toast(MainActivity.TOAST_NONE, "All values are 0"); return; } for (int retries = 0; retries < 3; retries++) { // write the values for (int i = 0; i < idsWrite.length; i++) { if (idsWrite[i] != 0) { Frame frame = new Frame(ecuFromId, 0, ecu, String.format("7b5e%02x%06x", i + 1, idsWrite[i]), null); if (MainActivity.device == null) return; // this should not happen as the fragment checks the device property, but it does Message message = MainActivity.device.injectRequest(frame); if (message == null) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Could not write TPMS valve " + i); } else if (message.isError()) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Could not write TPMS valve " + i + ":" + message.getError()); } else if (!message.getData().startsWith("7b5e")) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Could not write TPMS valve " + i + ":" + message.getData()); } else { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Wrote TPMS valve " + i); } try { Thread.sleep(250); } catch (Exception e) { // ignore a sleep exception } } } // now read the values readTpms(idsRead); if (compareTpms(idsRead, idsWrite)) { if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "TPMS sensors written. Read again to verify"); return; } try { Thread.sleep(250); } catch (Exception e) { // ignore a sleep exception } } if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Failed to write all TPMS sensors"); } private void buttonSwap() { int[] ids = new int[4]; ids[0] = simpleIntParse(R.id.text_TireFLId); // front left / AVG ids[1] = simpleIntParse(R.id.text_TireFRId); // front right / AVD ids[2] = simpleIntParse(R.id.text_TireRRId); // back right / ARD ids[3] = simpleIntParse(R.id.text_TireRLId); // back left / ARG bit23on(ids); displayId(R.id.text_TireFLId, ids[3]); displayId(R.id.text_TireFRId, ids[2]); displayId(R.id.text_TireRRId, ids[1]); displayId(R.id.text_TireRLId, ids[0]); } private void bit23on(int[] ids) { for (int i = 0; i < ids.length; i++) { ids[i] = 0x800000 | (ids[i] & 0x7fffff); } } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/TwingoTestActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.annotation.SuppressLint; import android.content.pm.ActivityInfo; import android.content.res.Configuration; import android.os.Bundle; import android.text.Html; import android.text.method.LinkMovementMethod; import android.util.TypedValue; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.ProgressBar; import android.widget.TextView; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Locale; import lu.fisch.canze.BuildConfig; import lu.fisch.canze.R; import lu.fisch.canze.actors.Ecu; import lu.fisch.canze.actors.Ecus; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.actors.Frame; import lu.fisch.canze.actors.Frames; import lu.fisch.canze.actors.Message; import lu.fisch.canze.actors.StoppableThread; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; import static lu.fisch.canze.activities.MainActivity.debug; // Jeroen public class TwingoTestActivity extends CanzeActivity implements FieldListener, DebugListener { // displays firmware version of an eCU, or // writes firmware version of all ECUs to a CSv private StoppableThread queryThread; private BufferedWriter bufferedDumpWriter = null; private boolean dumpInProgress = false; private long ticker = 0; @SuppressLint("StringFormatMatches") @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_firmware); final Button btnCsvSave = findViewById(R.id.csvFirmware); btnCsvSave.setOnClickListener(v -> doGetAllFirmware()); new Thread(() -> { if (MainActivity.device != null) { // stop the poller thread // note tht for the ZE50, the gateway is now not triggered MainActivity.device.stopAndJoin(); } }).start(); } private void doGetAllFirmware(){ // try to stop previous thread if(queryThread!=null) { if (queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch (Exception e) { MainActivity.debug(e.getMessage()); } } } queryThread = new StoppableThread(() -> { freezeOrientation(); Frame frame; displayProgress(true, R.id.progressBar_cyclic3, R.id.csvFirmware); // re-initialize the device if (!MainActivity.device.initDevice(1)) { return; } Ecus.getInstance().load("Twingo_3_Ph2/_Ecus.csv"); Frames.getInstance().load("Twingo_3_Ph2/_Frames.csv"); Fields.getInstance().load("Twingo_3_Ph2/_Fields.csv"); createDump(); ticker = Calendar.getInstance().getTimeInMillis(); log("ECU, Version Type, Version data"); if (MainActivity.isPh2() && MainActivity.pokeSecureGateway) { frame = getFrame(0x18daf1d2, "5003"); // open the gateway, as the poller is stopped queryFrame(frame); } for (Ecu ecu : Ecus.getInstance().getAllEcus()) { // see if we need to stop right now if (((StoppableThread) Thread.currentThread()).isStopped()) return; if (ecu.getFromId() > 0 && (ecu.getFromId() < 0x800 || ecu.getFromId() >= 0x900)) { keepAlive(); if (ecu.getSessionRequired()) { frame = getFrame(ecu.getFromId(), ecu.getStartDiag()); // open the ecu, as the poller is stopped queryFrame(frame); } processOneEcu(ecu, 0, 0, 0, 0); } } closeDump(); displayProgress(false, R.id.progressBar_cyclic3, R.id.csvFirmware); }); queryThread.start(); } private void processOneEcu (Ecu ecu, int idDiag, int idSupplier, int idSoft, int idVersion) { // query the Frame Frame frame = getFrame(ecu.getFromId(), "6180"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { for (Field field : frame.getAllFields()) { switch (field.getFrom()) { case 56: setSoftwareValue(idDiag, field, ecu.getMnemonic() + ", diagVersion"); break; case 64: setSoftwareValue(idSupplier, field, ecu.getMnemonic() + ", supplier"); break; case 128: setSoftwareValue(idSoft, field, ecu.getMnemonic() + ", soft"); break; case 144: setSoftwareValue(idVersion, field, ecu.getMnemonic() + ", version"); break; } } } return; } // else 2nd approach frame = getFrame(ecu.getFromId(), "62f1a0"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idDiag, field, ecu.getMnemonic() + ", diagVersion"); } } frame = getFrame(ecu.getFromId(), "62f18a"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idSupplier, field, ecu.getMnemonic() + ", supplier"); } } frame = getFrame(ecu.getFromId(), "62f194"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idSoft, field, ecu.getMnemonic() + ", soft:"); } } frame = getFrame(ecu.getFromId(), "62f195"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idVersion, field, ecu.getMnemonic() + ", version:"); } } } private Frame getFrame (int fromId, String responseId) { Frame frame = Frames.getInstance().getById(fromId, responseId); if (frame == null) { MainActivity.getInstance().dropDebugMessage(String.format(Locale.getDefault(), "Frame for this ECU %X.%s not found", fromId, responseId)); return null; } MainActivity.getInstance().dropDebugMessage(frame.getFromIdHex() + "." + frame.getResponseId()); return frame; } private Frame queryFrame (Frame frame) { if (frame == null) return null; Message message = MainActivity.device.requestFrame(frame); // field.getFrame()); if (message.isError()) { MainActivity.getInstance().dropDebugMessage(message.getError()); return null; } MainActivity.debug("msg:" + message.getData()); message.onMessageCompleteEvent(); // set the value of all fields in the frame of this message return frame; } private void setSoftwareValue(final int id, final Field field, final String label) { final String toDisplay; if (field == null) { toDisplay = ""; } else if (field.isString()) { toDisplay = label + ":" + field.getStringValue(); } else if ((field.getTo() - field.getFrom()) < 8) { toDisplay = label + String.format(Locale.getDefault(), ":%02X", (int)field.getValue()); } else { toDisplay = label + String.format(Locale.getDefault(), ":%04X", (int)field.getValue()); } if (id == 0) { //log log (toDisplay); return; } runOnUiThread(() -> { TextView tv = findViewById(id); if (tv != null) { tv.setText(toDisplay); } }); } private void log(String text) { if (!dumpInProgress) return; try { bufferedDumpWriter.append(text); bufferedDumpWriter.append(System.getProperty("line.separator")); } catch (IOException e) { e.printStackTrace(); } } private void createDump() { dumpInProgress = false; if (!MainActivity.storageIsAvailable) { debug("FirmwareActivity.createDump: SDcard not available"); return; } // ensure that there is a CanZE Folder in SDcard if (!MainActivity.getInstance().isExternalStorageWritable()) { debug("FirmwareActivity.createDump: SDcard not writeable"); return; } String file_path = MainActivity.getInstance().getExternalFolder(); File dir = new File(file_path); if (!dir.exists()) { if (!dir.mkdirs()) { debug("DiagDump: Can't create directory:" + file_path); return; } } debug("DiagDump: file_path:" + file_path); SimpleDateFormat sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHMS), Locale.getDefault()); String exportdataFileName = file_path + "Firmwares-" + sdf.format(Calendar.getInstance().getTime()) + ".csv"; File logFile = new File(exportdataFileName); if (!logFile.exists()) { try { if (!logFile.createNewFile()) { debug("DiagDump: Can't create file:" + exportdataFileName); return; } debug("DiagDump: NewFile:" + exportdataFileName); } catch (IOException e) { e.printStackTrace(); return; } } try { //BufferedWriter for performance, true to set append to file flag bufferedDumpWriter = new BufferedWriter(new FileWriter(logFile, true)); dumpInProgress = true; MainActivity.toast(MainActivity.TOAST_NONE, MainActivity.getStringSingle(R.string.format_DumpWriting), exportdataFileName); } catch (IOException e) { e.printStackTrace(); } } private void keepAlive() { if (!MainActivity.isPh2()) return; // quit ticker if no gateway and no session if (Calendar.getInstance().getTimeInMillis() < ticker) return; // then, quit if no timeout if (MainActivity.isPh2() && MainActivity.pokeSecureGateway) { // open the gateway MainActivity.device.requestFrame(Frames.getInstance().getById(0x18daf1d2, "5003")); } ticker = ticker + 3000; } private void closeDump() { try { if (dumpInProgress) { bufferedDumpWriter.close(); if (!isFinishing()) MainActivity.toast(MainActivity.TOAST_NONE, "Done."); } } catch (IOException e) { e.printStackTrace(); } } // UI elements private void displayProgress(final boolean on, final int id_spinner, final int id_button) { // remove progress spinners runOnUiThread(() -> { ProgressBar pb = findViewById(id_spinner); if (pb != null){ pb.setVisibility(on ? View.VISIBLE : View.GONE);} Button btn = findViewById(id_button); if (btn != null){btn.setEnabled(!on);} }); } @SuppressLint("SourceLockedOrientationActivity") // this is done to avoid restarting the long running activity private void freezeOrientation () { int rotation = getWindowManager().getDefaultDisplay().getRotation(); switch (getResources().getConfiguration().orientation) { case Configuration.ORIENTATION_PORTRAIT: if (rotation == android.view.Surface.ROTATION_90 || rotation == android.view.Surface.ROTATION_180) { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT); } else { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); } break; case Configuration.ORIENTATION_LANDSCAPE: if (rotation == android.view.Surface.ROTATION_0 || rotation == android.view.Surface.ROTATION_90) { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); } else { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE); } break; } } @Override protected void onDestroy() { // stop the query thread if still running if(queryThread!=null) if(queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch(Exception e) { MainActivity.debug(e.getMessage()); } } closeDump(); // Reload the frame & timings Ecus.getInstance().load(); Frames.getInstance().load(); Fields.getInstance().load(); // restart the poller if (MainActivity.device != null) { MainActivity.device.initConnection(); // register application wide fields MainActivity.getInstance().registerApplicationFields(); } super.onDestroy(); } protected void initListeners () { MainActivity.getInstance().setDebugListener(this); } @Override public void onFieldUpdateEvent(final Field field) { // do nothing, no fields will ne updated } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/TwizyTestActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.annotation.SuppressLint; import android.content.pm.ActivityInfo; import android.content.res.Configuration; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.ProgressBar; import android.widget.TextView; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.actors.Ecu; import lu.fisch.canze.actors.Ecus; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.actors.Frame; import lu.fisch.canze.actors.Frames; import lu.fisch.canze.actors.Message; import lu.fisch.canze.actors.StoppableThread; import lu.fisch.canze.interfaces.DebugListener; import lu.fisch.canze.interfaces.FieldListener; import static lu.fisch.canze.activities.MainActivity.debug; // Jeroen public class TwizyTestActivity extends CanzeActivity implements FieldListener, DebugListener { // displays firmware version of an eCU, or // writes firmware version of all ECUs to a CSv private StoppableThread queryThread; private BufferedWriter bufferedDumpWriter = null; private boolean dumpInProgress = false; private long ticker = 0; @SuppressLint("StringFormatMatches") @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_firmware); final Button btnCsvSave = findViewById(R.id.csvFirmware); btnCsvSave.setOnClickListener(v -> doGetAllFirmware()); new Thread(() -> { if (MainActivity.device != null) { // stop the poller thread // note tht for the ZE50, the gateway is now not triggered MainActivity.device.stopAndJoin(); } }).start(); } private void doGetAllFirmware(){ // try to stop previous thread if(queryThread!=null) { if (queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch (Exception e) { MainActivity.debug(e.getMessage()); } } } queryThread = new StoppableThread(() -> { freezeOrientation(); Frame frame; displayProgress(true, R.id.progressBar_cyclic3, R.id.csvFirmware); // re-initialize the device if (!MainActivity.device.initDevice(1)) { return; } Ecus.getInstance().load("Twizy/_Ecus.csv"); Frames.getInstance().load("Twizy/_Frames.csv"); Fields.getInstance().load("Twizy/_Fields.csv"); createDump(); ticker = Calendar.getInstance().getTimeInMillis(); log("ECU, Version Type, Version data"); if (MainActivity.isPh2() && MainActivity.pokeSecureGateway) { frame = getFrame(0x18daf1d2, "5003"); // open the gateway, as the poller is stopped queryFrame(frame); } for (Ecu ecu : Ecus.getInstance().getAllEcus()) { // see if we need to stop right now if (((StoppableThread) Thread.currentThread()).isStopped()) return; if (ecu.getFromId() > 0 && (ecu.getFromId() < 0x800 || ecu.getFromId() >= 0x900)) { keepAlive(); if (ecu.getSessionRequired()) { frame = getFrame(ecu.getFromId(), ecu.getStartDiag()); // open the ecu, as the poller is stopped queryFrame(frame); } processOneEcu(ecu, 0, 0, 0, 0); } } closeDump(); displayProgress(false, R.id.progressBar_cyclic3, R.id.csvFirmware); }); queryThread.start(); } private void processOneEcu (Ecu ecu, int idDiag, int idSupplier, int idSoft, int idVersion) { // query the Frame Frame frame = getFrame(ecu.getFromId(), "6180"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { for (Field field : frame.getAllFields()) { switch (field.getFrom()) { case 56: setSoftwareValue(idDiag, field, ecu.getMnemonic() + ", diagVersion"); break; case 64: setSoftwareValue(idSupplier, field, ecu.getMnemonic() + ", supplier"); break; case 128: setSoftwareValue(idSoft, field, ecu.getMnemonic() + ", soft"); break; case 144: setSoftwareValue(idVersion, field, ecu.getMnemonic() + ", version"); break; } } } return; } // else 2nd approach frame = getFrame(ecu.getFromId(), "62f1a0"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idDiag, field, ecu.getMnemonic() + ", diagVersion"); } } frame = getFrame(ecu.getFromId(), "62f18a"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idSupplier, field, ecu.getMnemonic() + ", supplier"); } } frame = getFrame(ecu.getFromId(), "62f194"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idSoft, field, ecu.getMnemonic() + ", soft:"); } } frame = getFrame(ecu.getFromId(), "62f195"); if (frame != null) { frame = queryFrame(frame); if (frame != null) { Field field = frame.getAllFields().get(0); setSoftwareValue(idVersion, field, ecu.getMnemonic() + ", version:"); } } } private Frame getFrame (int fromId, String responseId) { Frame frame = Frames.getInstance().getById(fromId, responseId); if (frame == null) { MainActivity.getInstance().dropDebugMessage(String.format(Locale.getDefault(), "Frame for this ECU %X.%s not found", fromId, responseId)); return null; } MainActivity.getInstance().dropDebugMessage(frame.getFromIdHex() + "." + frame.getResponseId()); return frame; } private Frame queryFrame (Frame frame) { if (frame == null) return null; Message message = MainActivity.device.requestFrame(frame); // field.getFrame()); if (message.isError()) { MainActivity.getInstance().dropDebugMessage(message.getError()); return null; } MainActivity.debug("msg:" + message.getData()); message.onMessageCompleteEvent(); // set the value of all fields in the frame of this message return frame; } private void setSoftwareValue(final int id, final Field field, final String label) { final String toDisplay; if (field == null) { toDisplay = ""; } else if (field.isString()) { toDisplay = label + ":" + field.getStringValue(); } else if ((field.getTo() - field.getFrom()) < 8) { toDisplay = label + String.format(Locale.getDefault(), ":%02X", (int)field.getValue()); } else { toDisplay = label + String.format(Locale.getDefault(), ":%04X", (int)field.getValue()); } if (id == 0) { //log log (toDisplay); return; } runOnUiThread(() -> { TextView tv = findViewById(id); if (tv != null) { tv.setText(toDisplay); } }); } private void log(String text) { if (!dumpInProgress) return; try { bufferedDumpWriter.append(text); bufferedDumpWriter.append(System.getProperty("line.separator")); } catch (IOException e) { e.printStackTrace(); } } private void createDump() { dumpInProgress = false; if (!MainActivity.storageIsAvailable) { debug("FirmwareActivity.createDump: SDcard not available"); return; } // ensure that there is a CanZE Folder in SDcard if (!MainActivity.getInstance().isExternalStorageWritable()) { debug("FirmwareActivity.createDump: SDcard not writeable"); return; } String file_path = MainActivity.getInstance().getExternalFolder(); File dir = new File(file_path); if (!dir.exists()) { if (!dir.mkdirs()) { debug("DiagDump: Can't create directory:" + file_path); return; } } debug("DiagDump: file_path:" + file_path); SimpleDateFormat sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHMS), Locale.getDefault()); String exportdataFileName = file_path + "Firmwares-" + sdf.format(Calendar.getInstance().getTime()) + ".csv"; File logFile = new File(exportdataFileName); if (!logFile.exists()) { try { if (!logFile.createNewFile()) { debug("DiagDump: Can't create file:" + exportdataFileName); return; } debug("DiagDump: NewFile:" + exportdataFileName); } catch (IOException e) { e.printStackTrace(); return; } } try { //BufferedWriter for performance, true to set append to file flag bufferedDumpWriter = new BufferedWriter(new FileWriter(logFile, true)); dumpInProgress = true; MainActivity.toast(MainActivity.TOAST_NONE, MainActivity.getStringSingle(R.string.format_DumpWriting), exportdataFileName); } catch (IOException e) { e.printStackTrace(); } } private void keepAlive() { if (!MainActivity.isPh2()) return; // quit ticker if no gateway and no session if (Calendar.getInstance().getTimeInMillis() < ticker) return; // then, quit if no timeout if (MainActivity.isPh2() && MainActivity.pokeSecureGateway) { // open the gateway MainActivity.device.requestFrame(Frames.getInstance().getById(0x18daf1d2, "5003")); } ticker = ticker + 3000; } private void closeDump() { try { if (dumpInProgress) { bufferedDumpWriter.close(); MainActivity.toast(MainActivity.TOAST_NONE, "Done."); } } catch (IOException e) { e.printStackTrace(); } } // UI elements private void displayProgress(final boolean on, final int id_spinner, final int id_button) { // remove progress spinners runOnUiThread(() -> { ProgressBar pb = findViewById(id_spinner); if (pb != null){ pb.setVisibility(on ? View.VISIBLE : View.GONE);} Button btn = findViewById(id_button); if (btn != null){btn.setEnabled(!on);} }); } @SuppressLint("SourceLockedOrientationActivity") // this is done to avoid restarting the long running activity private void freezeOrientation () { int rotation = getWindowManager().getDefaultDisplay().getRotation(); switch (getResources().getConfiguration().orientation) { case Configuration.ORIENTATION_PORTRAIT: if (rotation == android.view.Surface.ROTATION_90 || rotation == android.view.Surface.ROTATION_180) { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT); } else { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); } break; case Configuration.ORIENTATION_LANDSCAPE: if (rotation == android.view.Surface.ROTATION_0 || rotation == android.view.Surface.ROTATION_90) { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); } else { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE); } break; } } @Override protected void onDestroy() { // stop the query thread if still running if(queryThread!=null) if(queryThread.isAlive()) { queryThread.tryToStop(); try { queryThread.join(); } catch(Exception e) { MainActivity.debug(e.getMessage()); } } closeDump(); // Reload the frame & timings Ecus.getInstance().load(); Frames.getInstance().load(); Fields.getInstance().load(); // restart the poller if (MainActivity.device != null) { MainActivity.device.initConnection(); // register application wide fields MainActivity.getInstance().registerApplicationFields(); } super.onDestroy(); } protected void initListeners () { MainActivity.getInstance().setDebugListener(this); } @Override public void onFieldUpdateEvent(final Field field) { // do nothing, no fields will ne updated } } ================================================ FILE: app/src/main/java/lu/fisch/canze/activities/WidgetActivity.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.activities; import android.os.Bundle; import android.view.Menu; import lu.fisch.canze.R; import lu.fisch.canze.widgets.WidgetView; public class WidgetActivity extends CanzeActivity { @Override protected void onCreate(Bundle savedInstanceState) { widgetView=true; widgetClicked=true; super.onCreate(savedInstanceState); setContentView(R.layout.activity_widget); WidgetView wv = findViewById(R.id.selectedWidget); wv.setClickable(false); if(WidgetView.selectedDrawable!=null) { wv.setDrawable(WidgetView.selectedDrawable); if(WidgetView.selectedDrawable.getField()!=null) wv.setFieldSID(WidgetView.selectedDrawable.getField().getSID()); setTitle(WidgetView.selectedDrawable.getTitle()); } } protected void initListeners () {} @Override protected void onDestroy() { WidgetView wv = findViewById(R.id.selectedWidget); wv.reset(); super.onDestroy(); } @Override protected void onResume() { super.onResume(); widgetClicked=true; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/AssetLoadHelper.java ================================================ package lu.fisch.canze.actors; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import android.content.Context; import android.content.res.AssetManager; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.classes.Crashlytics; public class AssetLoadHelper { public static BufferedReader getBufferedReaderFromAsset (String asset) { try { Context myContext = MainActivity.getInstance().getApplicationContext(); // call getAssets() on the private Context myContext if (myContext == null) return null; AssetManager assetmanager = myContext.getAssets(); if (assetmanager == null) return null; InputStream inputStream = assetmanager.open(asset); // BufferedReader handles encoding, default is UTF-8, which is what we use InputStreamReader inputStreamReader = new InputStreamReader (inputStream); return new BufferedReader (inputStreamReader); } catch (FileNotFoundException e) { // do nothing, so return null } catch (IOException | NullPointerException e) { Crashlytics.logString("loading asset:[" + asset + "]"); Crashlytics.logException(e); } // Catching null is bad practice, but I have seen one thrown by myContext.getAssets(); return null; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Battery.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.actors; /** * Battery * * This class represents a mathematical representation of the battery and it's charging behavior. * Please note that this class has no relation with the real battery in the car. It is ONLY used * for prediction and it's SOC, or any parameter, or any calculation is an approximation. For non * predictive functions, always use the paramters as they are supplied by the car's LBC. * */ public class Battery { private double temperature = 10.0; private double stateOfCharge = 11.0; // watch it: in kWh!!! private double chargerPower = 11.0; // in kW private double capacity = 22.0; // in kWh private double maxDcPower = 0; // in kW. This excludes the max imposed by the external charger private double dcPower = 0; // in kW This includes the max imposed by the external charger private int secondsRunning = 0; // seconds in iteration, reset by setStateOfChargePerc private double dcPowerUpperLimit = 40.0; // for R240/R90 use 20 private double dcPowerLowerLimit = 2.0; // for R240/R90 use 1 private double rawCapacity = 22; // R90/Q90 use 41 private int batteryType = 22; // private double cons; private double tempx; private double socy; private double tempxsocy; private double soh = 100; private void predictMaxDcPower () { // if the state of charge (in kW) exceeds the capacity of the battery if (stateOfCharge >= capacity) { // stop charging maxDcPower = 0.0; // if there is capacity left to charge } else { // calculate the SOC in percantage double stateOfChargePercentage = stateOfCharge * 100.0 / capacity; // get a rounded temperature int intTemperature = (int )temperature; // now use a model to calculate the DC power, based on SOC and temperature maxDcPower = cons + (tempx * intTemperature) + (tempxsocy * stateOfChargePercentage * intTemperature) + (socy * stateOfChargePercentage); if (maxDcPower > dcPowerUpperLimit) { maxDcPower = dcPowerUpperLimit; } else if (maxDcPower < dcPowerLowerLimit) { maxDcPower = dcPowerLowerLimit; } } } private void predictDcPower() { // calculate what the battery can take predictMaxDcPower(); // predict the efficiency of the charger (assuming it will run at the cpacity the battery can take) double efficiency = 0.80 + maxDcPower * 0.00375; // predict what is needed on the AC side to give thabattery what it can take double requestedAcPower = maxDcPower / efficiency; // if this is more than what the charger can deliver if (requestedAcPower > chargerPower) { // recalculate the efficiency based on the maximum the charger can deliver efficiency = 0.80 + chargerPower * 0.00375; // DC is maximum AC corrected for efficiency dcPower = chargerPower * efficiency; // if this is less than the charger can delever } else { // DC is what the battery can take dcPower = maxDcPower; } } /* * iteration is in effect numerical integration of the power function to the SOC, respecting temperature and energy efficiency effects */ public void iterateCharging (int seconds) { secondsRunning += seconds; predictDcPower (); setTemperature (temperature + (seconds * dcPower / 7200)); // assume one degree per 40 kW per 3 minutes (180 seconds) setStateOfChargeKw (stateOfCharge + (dcPower * seconds * 0.95) / 3600); // 1kW adds 95% of 1kWh in 60 minutes } private void adjustRawCapacity () { // adjust for capacity loss due to temperature differences (system wide) if (temperature > 15.0) { // above 15C: 100% capacity = rawCapacity; } else if (temperature > 0) { // above 0C: 10% gradual decline over the 15C capacity = rawCapacity * (0.9 + temperature * 0.1 / 15.0); } else { // under 0C: 20% gradual decline per 15C capacity = rawCapacity * (0.9 + temperature * 0.2 / 15.0); } capacity = capacity * soh / 100.0; // ensure the SOC is refreshed. This is only relevant for a very full battery setStateOfChargeKw(getStateOfChargeKw()); } public void setBatteryType (int batteryType) { switch (batteryType) { case 22: setRawCapacity(22); //setCoefficients (19.00, 3.600, -0.026, -0.34000); setCoefficients (19.00, 3.600, -0.340, -0.02600); break; case 41: setCoefficients (14.93, 1.101, -0.145, -0.00824); setRawCapacity(41.0); break; } } /* * Getters and setters */ private void setCoefficients (double cons, double tempx, double socy, double tempxsocy) { this.cons = cons; this.tempx = tempx; this.socy = socy; this.tempxsocy = tempxsocy; } public double getTemperature() { return temperature; } public void setTemperature(double temperature) { this.temperature = temperature; adjustRawCapacity(); } public double getStateOfChargeKw() { return stateOfCharge; } public void setStateOfChargeKw(double stateOfCharge) { this.stateOfCharge = stateOfCharge; if (this.stateOfCharge > this.capacity) this.stateOfCharge = this.capacity; } public double getStateOfChargePerc() { return stateOfCharge * 100 / this.capacity; } public void setStateOfChargePerc(double stateOfCharge) { setStateOfChargeKw(stateOfCharge * this.capacity / 100); } public double getChargerPower() { return chargerPower; } public void setChargerPower(double chargerPower) { this.chargerPower = chargerPower; if (this.chargerPower > 43.0) { this.chargerPower = 43.0; } else if (this.chargerPower < 1.84) { this.chargerPower = 1.84; } } public double getMaxDcPower() { return maxDcPower; } public double getDcPower() { predictDcPower (); return dcPower; } public int getTimeRunning () { return secondsRunning; } public void setTimeRunning (int secondsRunning) { this.secondsRunning = secondsRunning; } public double getDcPowerUpperLimit() { return dcPowerUpperLimit; } public void setDcPowerUpperLimit(double dcPowerUpperLimit) { this.dcPowerUpperLimit = dcPowerUpperLimit; } public double getDcPowerLowerLimit() { return dcPowerLowerLimit; } public void setDcPowerLowerLimit(double dcPowerLowerLimit) { this.dcPowerLowerLimit = dcPowerLowerLimit; } public double getRawCapacity() { return rawCapacity; } public void setRawCapacity(double rawCapacity) { this.rawCapacity = rawCapacity; adjustRawCapacity(); } public void setStateOfHealth(double soh) { this.soh = soh; adjustRawCapacity(); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Dtc.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.actors; /** * ECU */ public class Dtc { private final String id; private final String description; public Dtc(String id, String description) { this.id = id; this.description = description; } public String getDescription() { return description; } public String getId() { return id; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Dtcs.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.actors; import java.io.BufferedReader; import java.io.IOException; import java.util.ArrayList; import lu.fisch.canze.R; import lu.fisch.canze.activities.MainActivity; /** * DTC id's usually are 3 bytes long. The first 2 bytes are an ID, the third byte reperesent a test * The first nibble is often displayed in an alternative way * */ public class Dtcs { private final ArrayList dtcs = new ArrayList<>(); private final ArrayList tests = new ArrayList<>(); private static Dtcs instance = null; private Dtcs() { load(); } public static Dtcs getInstance() { if (instance == null) instance = new Dtcs(); return instance; } private void fillOneDtcLine(String line) { if (line.contains("#")) line = line.substring(0, line.indexOf('#')); //Get all tokens available in line String[] tokens = line.split(","); if (tokens.length == 2) { //Create a new dtc object and fill his data Dtc dtc = new Dtc( tokens[0].trim(), tokens[1].trim() ); // add the dtc to the list of available fields addDtc(dtc); } } private void fillOneTestLine(String line) { if (line.contains("#")) line = line.substring(0, line.indexOf('#')); //Get all tokens available in line String[] tokens = line.split(","); if (tokens.length == 2) { //Create a new Test object and fill his data Test test = new Test( tokens[0].trim(), tokens[1].trim() ); // add the test to the list of available fields addTest(test); } } private void fillFromAsset (String dtcsAssetName, String testsAssetName) { //Read text from asset BufferedReader bufferedReader = AssetLoadHelper.getBufferedReaderFromAsset(dtcsAssetName); if (bufferedReader == null) { MainActivity.toast(MainActivity.TOAST_NONE, MainActivity.getStringSingle(R.string.format_NoAsset), dtcsAssetName); return; } try { String line; while ((line = bufferedReader.readLine()) != null) fillOneDtcLine(line); bufferedReader.close(); } catch (IOException e) { e.printStackTrace(); } bufferedReader = AssetLoadHelper.getBufferedReaderFromAsset(testsAssetName); if (bufferedReader == null) { MainActivity.toast(MainActivity.TOAST_NONE, MainActivity.getStringSingle(R.string.format_NoAsset), testsAssetName); return; } try { String line; while ((line = bufferedReader.readLine()) != null) fillOneTestLine(line); bufferedReader.close(); } catch (IOException e) { e.printStackTrace(); } } public void load () { load ("", ""); } public void load (String dtcsAssetName, String testsAssetName) { dtcs.clear(); tests.clear(); if (dtcsAssetName.equals("")) { // default dtcs and tests is basically nonsense. so no ZE50 specific implementation fillFromAsset("ZOE/_DtcsPh1.csv", "_TestsPh1.csv"); } else { fillFromAsset(dtcsAssetName, testsAssetName); } } public void addDtc(Dtc dtc) { dtcs.add(dtc); } public void addTest(Test test) { tests.add(test); } public Dtc getDtcById (String id) { for (Dtc dtc : dtcs) { if (dtc.getId().compareTo(id) == 0) return dtc; } return null; } public Test getTestById (String id) { for (Test test : tests) { if (test.getId().compareTo(id) == 0) return test; } return null; } public String getDescriptionById (String id) { Dtc dtc; Test test; String result = ""; if (id.length() >= 4){ dtc = getDtcById(id.substring(0, 4)); if (dtc != null) { result += dtc.getDescription(); } if (id.length() >= 6) { test = getTestById(id.substring(4, 6)); if (test != null) { result += "\n" + test.getDescription(); } } } else { result = "Too short DTC " + id; } return result; } public String getDisplayCodeById (String id) { if (id.length() == 0) return (""); switch (id.toUpperCase().charAt(0)) { case '0': return "P0" + id.substring(2); case '1': return "P1" + id.substring(2); case '2': return "P2" + id.substring(2); case '3': return "P3" + id.substring(2); case '4': return "C0" + id.substring(2); case '5': return "C1" + id.substring(2); case '6': return "C2" + id.substring(2); case '7': return "C3" + id.substring(2); case '8': return "B0" + id.substring(2); case '9': return "B1" + id.substring(2); case 'A': return "B2" + id.substring(2); case 'B': return "B3" + id.substring(2); case 'C': return "U0" + id.substring(2); case 'D': return "U1" + id.substring(2); case 'E': return "U2" + id.substring(2); case 'F': return "U3" + id.substring(2); } return id; } public String getFlagDescription (int flags) { String result = ""; if ((flags & 0x01) != 0) result += ", tstFail"; if ((flags & 0x02) != 0) result += ", tstFailThisOp"; if ((flags & 0x04) != 0) result += ", pendingDtc"; if ((flags & 0x08) != 0) result += ", confirmedDtc"; if ((flags & 0x10) != 0) result += ", noCplSinceClear"; if ((flags & 0x20) != 0) result += ", faildSinceClear"; if ((flags & 0x40) != 0) result += ", tstNtCpl"; if ((flags & 0x80) != 0) result += ", wrnLght"; if (result.length() == 0) return ""; return result.substring(2); } public ArrayList getAllDtcs () { return dtcs; } public ArrayList getAllTests () { return tests; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Ecu.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.actors; /** * ECU */ public class Ecu { private final String name; private final int renaultId; private final String networks; // single letter network names, semicolon separated, V, M, O, E private final int fromId; private final int toId; private final String mnemonic; private final String aliases; // semicolon separated private final String getDtcs; // semicolon separated private final String startDiag; private final boolean sessionRequired; private Fields fields; public Ecu(String name, int renaultId, String networks, int fromId, int toId, String mnemonic, String aliases, String getDtcs, String startDiag, boolean sessionRequired) { this.name = name; this.renaultId = renaultId; this.networks = networks; this.fromId = fromId; this.toId = toId; this.mnemonic = mnemonic; this.aliases = aliases; this.getDtcs = getDtcs; this.startDiag = startDiag; this.sessionRequired = sessionRequired; } public String getName() { return name; } public int getRenaultId() { return renaultId; } public String getNetworks() { return networks; } public int getFromId() { return fromId; } public String getHexFromId() { return Integer.toHexString(fromId); } public int getToId() { return toId; } public String getHexToId() { return Integer.toHexString(toId); } public String getMnemonic() { return mnemonic; } public String getAliases() { return aliases; } public Fields getFields() { return fields; } public void setFields(Fields fields) { this.fields = fields; } public String getGetDtcs() { return getDtcs; } public String getStartDiag() { return startDiag; } public boolean getSessionRequired() { return sessionRequired; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Ecus.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.actors; import java.io.BufferedReader; import java.io.IOException; import java.util.ArrayList; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.classes.Crashlytics; /** * Ecus */ public class Ecus { private final ArrayList ecus = new ArrayList<>(); private static Ecus instance = null; private Ecus() { load(); } public static Ecus getInstance() { if(instance==null) instance=new Ecus(); return instance; } private void fillOneLine(String line) { if (line.contains("#")) line = line.substring(0, line.indexOf('#')); //Get all tokens available in line String[] tokens = line.split(","); if (tokens.length == 10) { //Create a new field object and fill his data Ecu ecu = new Ecu( tokens[0].trim(), // name Integer.parseInt(tokens[1].trim()), // Renault ID tokens[2].trim(), // Network Integer.parseInt(tokens[3].trim(), 16), // From ID Integer.parseInt(tokens[4].trim(), 16), // To ID tokens[5].trim(), // Mnemonic tokens[6].trim(), // Aliases, semicolon separated tokens [7].trim(), // GetDtc responseIDs, semicolon separated tokens [8].trim(), // start Diagnotic sessioncommand tokens [9].trim().compareTo("1") == 0 // Session required ); // add the field to the list of available fields add(ecu); MainActivity.debug("ecu:" + tokens[5].trim()); } } private void fillFromAsset (String assetName) { //Read text from asset BufferedReader bufferedReader = AssetLoadHelper.getBufferedReaderFromAsset(assetName); if (bufferedReader == null) { MainActivity.toast(MainActivity.TOAST_NONE, "Can't access asset " + assetName); return; } try { String line; while ((line = bufferedReader.readLine()) != null) fillOneLine(line); bufferedReader.close(); } catch (IOException e) { Crashlytics.logException(e); } } public void load () { load (""); } public void load (String assetName) { ecus.clear(); if (assetName.equals("")) { fillFromAsset(getDefaultAssetName()); } else { fillFromAsset(assetName); } } public void add(Ecu ecu) { ecus.add(ecu); } public Ecu getByMnemonic (String mnemonic) { for (Ecu ecu : ecus) { if (ecu.getMnemonic().equals(mnemonic) || ecu.getAliases().contains(mnemonic)) return ecu; } return null; } private Ecu getByRenaultId (int renaultId) { // public for (Ecu ecu : ecus) { if (ecu.getRenaultId() == renaultId) return ecu; } return null; } public Ecu getByFromId (int fromId) { for (Ecu ecu : ecus) { if (ecu.getFromId() == fromId) return ecu; } return null; } private Ecu getByToId (int toId) { // public for (Ecu ecu : ecus) { if (ecu.getToId() == toId) return ecu; } return null; } public ArrayList getAllEcus () { return ecus; } private String getDefaultAssetName() { return MainActivity.getAssetPrefix() + "_Ecus.csv"; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Field.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* * This class represents a field. * Other objects can register to be notified. */ package lu.fisch.canze.actors; import androidx.annotation.NonNull; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.interfaces.FieldListener; import java.util.ArrayList; import java.util.Calendar; import java.util.Locale; /** * @author robertfisch */ public class Field { final ArrayList fieldListeners = new ArrayList<>(); private final String sid; private Frame frame; private short from; private short to; private long offset; private int decimals; private double resolution; private String unit; private String responseId; private short options; // see the options definitions in MainActivity private final String name; private final String list; private double value = Double.NaN; private String strVal = ""; //private int skipsCount = 0; private long lastRequest; private int interval = Integer.MAX_VALUE; boolean virtual = false; /* Please note that the offset is applied BEFORE scaling The request and response Ids should be stated as HEX strings without leading 0x The name is optional and can be used for diagnostice printouts The list is optional and can contain a string, semicolon-separated containing a description of the value, 0 based */ public Field(String sid, Frame frame, short from, short to, double resolution, int decimals, long offset, String unit, String responseId, short options, String name, String list) { if (sid == null || sid.equals("")) { if (responseId != null && !responseId.trim().isEmpty()) this.sid = (Integer.toHexString(frame.getFromId()) + "." + responseId.trim() + "." + from).toLowerCase(); else this.sid = (Integer.toHexString(frame.getFromId()) + "." + from).toLowerCase(); } else { this.sid = sid.toLowerCase(); } this.frame = frame; this.from = from; this.to = to; this.offset = offset; this.resolution = resolution; this.decimals = decimals; this.unit = unit; this.responseId = responseId == null ? null : responseId.toLowerCase(); this.options = options; this.name = name; this.list = list; this.lastRequest = Calendar.getInstance().getTimeInMillis(); } private Field fieldClone() { // cloning is only used in this class, method notifyFieldListeners Field field = new Field(sid, frame, from, to, resolution, decimals, offset, unit, responseId, options, name, list); field.value = value; field.strVal = strVal; field.lastRequest = lastRequest; field.interval = interval; field.virtual = this.virtual; return field; } @NonNull @Override public String toString() { return getSID() + " : " + getName() + " [" + getUnit() + "]"; } boolean isIsoTp() { return !responseId.trim().isEmpty(); } public String getSID() { return sid; } public String getPrintValue() { return getValue() + " " + getUnit(); } public String getStringValue() { return strVal; } public String getListValue() { if (list == null) return (""); if (list.equals("")) return (""); if (Double.isNaN(value)) return (""); String[] lines = list.split(";"); if (value < 0 || value >= lines.length) return (""); return lines[(int) value]; } public double getValue() { //double val = ((value-offset)/(double) divider *multiplier)/(decimals==0?1:decimals); double val = (value - offset) * resolution; // This is a tricky one. If we are in miles mode, in a virtual field the sources for that // field have already been corrected, so this should not be done twice. I.O.W. virtual // field values are, by definition already properly corrected. if (MainActivity.milesMode & !virtual) { if (unit.toLowerCase().startsWith("km")) val = Math.round(val / 1.609344 * 10.0) / 10.0; else if (unit.toLowerCase().endsWith("km")) val = Math.round(val * 1.609344 * 10.0) / 10.0; //setUnit(getUnit().replace("km", "mi")); return val; } return val; } public String getDebugValue() { return getDebugValue(""); } public String getDebugValue(String frameError) { if (!frameError.isEmpty()) { return String.format(Locale.US, "%s,%s,%s,", getSID(), getName(), frameError); } else if (isString() || isHexString()) { return String.format(Locale.US, "%s,%s,%s,", getSID(), getName(), getStringValue()); } else if (isList()) { return String.format(Locale.US, "%s,%s,%s,", getSID(), getName(), getListValue()); } else if (Double.isNaN(value)) { return String.format(Locale.US, "%s,%s,Nan,%s", getSID(), getName(), getUnit()); } return String.format(Locale.US, "%s,%s,%." + getDecimals() + "f,%s", getSID(), getName(), getValue(), getUnit()); //appendResult(field.getSID() + " " + field.getName() + ":" + field.getValue() + field.getUnit() + "\n"); } public double getMax() { double val = (int) Math.pow(2, to - from + 1); return ((val - offset) * resolution); } public double getMin() { double val = 0; return ((val - offset) * resolution); } /* -------------------------------- * Listeners management \ ------------------------------ */ public void addListener(FieldListener fieldListener) { if (!fieldListeners.contains(fieldListener)) { fieldListeners.add(fieldListener); // trigger immediate update to pass the reference to this field fieldListener.onFieldUpdateEvent(this); } } public void removeListener(FieldListener fieldListener) { fieldListeners.remove(fieldListener); } /** * Notify all listeners synchronously */ private void notifyFieldListeners() { notifyFieldListeners(false); } /** * Notify all listeners * * @param async true for asynchronous notifications (one thread per listener) */ private void notifyFieldListeners(boolean async) { // this is the only part where cloning is used. Therefor we don't need to worry // about cloned frames in the complex frame / field interaction, esp in the Device Class if (!async) { for (int i = 0; i < fieldListeners.size(); i++) { FieldListener fieldListener = fieldListeners.get(i); if (fieldListener != null) fieldListener.onFieldUpdateEvent(this.fieldClone()); } } else { // clone the frame to make sure modifications in other threads will not interfere // note though that async updating is currently never used final Field clone = this.fieldClone(); for (int i = 0; i < fieldListeners.size(); i++) { final FieldListener fieldListener = fieldListeners.get(i); final Field fieldClone = this.fieldClone(); if (fieldListener != null) { (new Thread(new Runnable() { @Override public void run() { fieldListener.onFieldUpdateEvent(fieldClone); } })).start(); } } } } /* -------------------------------- * Scheduling \ ------------------------------ */ void updateLastRequest() { lastRequest = Calendar.getInstance().getTimeInMillis(); } public long getLastRequest() { return lastRequest; } public boolean isDue(long referenceTime) { return lastRequest + interval < referenceTime; } public void setInterval(int interval) { this.interval = interval; } public int getInterval() { return interval; } /* -------------------------------- * Getters & setters \ ------------------------------ */ public int getFrom() { return from; } public void setFrom(short from) { this.from = from; } public int getTo() { return to; } public void setTo(short to) { this.to = to; } public double getOffset() { return offset; } public void setOffset(int offset) { this.offset = offset; } public double getRawValue() { return value; } public void setValue(double value) { this.value = value; if (!Double.isNaN(value)) notifyFieldListeners(); } public void setValue(String value) { this.strVal = value; notifyFieldListeners(); } public void setCalculatedValue(double value) { // inverted conversion. if (MainActivity.milesMode & !virtual) { if (unit.toLowerCase().startsWith("km")) value = value * 1.609344; else if (unit.toLowerCase().endsWith("km")) value = value / 1.609344; } // inverted calculation setValue(value / resolution + offset); } public int getId() { return frame.getFromId(); } public String getHexId() { return frame.getFromIdHex(); } // public void setId(int id) { // this.id = id; // } public double getResolution() { return resolution; } public void setResolution(double resolution) { this.resolution = resolution; } public String getUnit() { if (MainActivity.milesMode) return (unit + "").replace("km", "mi"); else return unit; } public void setUnit(String unit) { this.unit = unit; } public String getRequestId() { if (responseId.compareTo("") == 0) return (""); char[] tmpChars = responseId.toCharArray(); tmpChars[0] -= 0x20; return String.valueOf(tmpChars); } public String getResponseId() { return responseId; } public void setResponseId(String responseId) { this.responseId = responseId; } public int getCar() { return (options & 0x0f); } public boolean isCar(int car) { return (options & car) == car; } public void setCar(int car) { options = (short) ((options & 0xfe0) + (car & 0x1f)); } public int getFrequency() { return frame.getInterval(); } public int getDecimals() { return decimals; } public void setDecimals(int decimals) { this.decimals = decimals; } public boolean isVirtual() { return virtual; } boolean isSigned() { return (this.options & MainActivity.FIELD_TYPE_MASK) == MainActivity.FIELD_TYPE_SIGNED; } public boolean isString() { return (this.options & MainActivity.FIELD_TYPE_MASK) == MainActivity.FIELD_TYPE_STRING; } public boolean isHexString() { return (this.options & MainActivity.FIELD_TYPE_MASK) == MainActivity.FIELD_TYPE_HEXSTRING; } public boolean isSelfPropelled() { return ((this.options & MainActivity.FIELD_SELFPROPELLED) == MainActivity.FIELD_SELFPROPELLED); } public boolean isList() { return list != null && !list.equals(""); } public String getName() { return name; } public Frame getFrame() { return frame; } public void setFrame(Frame frame) { this.frame = frame; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Fields.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* * This class manages all know fields. * Actually only the simple fields from the free CAN stream are handled. */ package lu.fisch.canze.actors; import android.content.Context; import android.location.Location; import android.location.LocationListener; import android.location.LocationManager; import android.os.Bundle; import lu.fisch.canze.R; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.classes.Crashlytics; import lu.fisch.canze.classes.FieldLogger; import lu.fisch.canze.classes.Sid; import lu.fisch.canze.database.CanzeDataSource; import lu.fisch.canze.interfaces.VirtualFieldAction; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.Calendar; import java.util.HashMap; import java.util.Locale; /** * @author robertfisch test */ public class Fields { private static final int FIELD_SID = 0; // to be stated in HEX, no leading 0x private static final int FIELD_ID = 1; // to be stated in HEX, no leading 0x private static final int FIELD_FROM = 2; // decimal private static final int FIELD_TO = 3; // decimal private static final int FIELD_RESOLUTION = 4; // double private static final int FIELD_OFFSET = 5; // double private static final int FIELD_DECIMALS = 6; // decimal private static final int FIELD_UNIT = 7; private static final int FIELD_REQUEST_ID = 8; // to be stated in HEX, no leading 0x private static final int FIELD_RESPONSE_ID = 9; // to be stated in HEX, no leading 0x private static final int FIELD_OPTIONS = 10; // to be stated in HEX, no leading 0x private static final int FIELD_NAME = 11; // can be displayed/saved. Now only used for Diag ISO-TP private static final int FIELD_LIST = 12; // same private final ArrayList fields = new ArrayList<>(); private final HashMap fieldsBySid = new HashMap<>(); private static Fields instance = null; private double runningUsage = 0; private double realRangeReference = Double.NaN; private double realRangeReference2 = Double.NaN; private static long start = Calendar.getInstance().getTimeInMillis(); private LocationManager locationManager; private LocationListener locationListener; //private int car = CAR_ANY; private Fields() { // the will be called by load(), and only after we know (or have changed) the car //fillStatic(); //addVirtualFields(); } public static Fields getInstance() { if (instance == null) instance = new Fields(); return instance; } private void addVirtualFields() { addVirtualFieldUsage(); addVirtualFieldUsageLpf(); addVirtualFieldFrictionTorque(); //addVirtualFieldFrictionPower(); addVirtualFieldElecBrakeTorque(); addVirtualFieldTotalPositiveTorque(); addVirtualFieldTotalNegativeTorque(); addVirtualFieldDcPowerIn(); addVirtualFieldDcPowerOut(); addVirtualFieldHeaterSetpoint(); addVirtualFieldRealRange(); addVirtualFieldRealDelta(); addVirtualFieldRealDeltaNoReset(); addVirtualFieldPilotAmp(); } private void addVirtualField(String id) { switch (id) { case "6100": addVirtualFieldUsage(); break; case "6104": addVirtualFieldUsageLpf(); break; case "6101": addVirtualFieldFrictionTorque(); break; case "610a": addVirtualFieldElecBrakeTorque(); break; case "610b": addVirtualFieldTotalPositiveTorque(); break; case "610c": addVirtualFieldTotalNegativeTorque(); break; case "6103": addVirtualFieldDcPowerIn(); break; case "6109": addVirtualFieldDcPowerOut(); break; case "6105": addVirtualFieldHeaterSetpoint(); break; case "6106": addVirtualFieldRealRange(); break; case "6107": addVirtualFieldRealDelta(); break; case "6108": addVirtualFieldRealDeltaNoReset(); break; case "610d": addVirtualFieldPilotAmp(); break; case "610e": addVirtualFieldGps(); break; } } public void selfPropel(String id, boolean startStop) { switch (id) { case "610e": virtualFieldPropelGps (startStop); break; } } private void addVirtualFieldUsage() { // It would be easier use SID_Consumption = "1fd.48" (dash kWh) instead of V*A addVirtualFieldCommon("6100", "kWh/100km", Sid.TractionBatteryVoltage + ";" + Sid.TractionBatteryCurrent + ";" + Sid.RealSpeed, dependantFields -> { // get real speed Field privateField; if ((privateField = dependantFields.get(Sid.RealSpeed)) == null) return Double.NaN; double realSpeed = privateField.getValue(); if (realSpeed < 0 || realSpeed > 150) return Double.NaN; if (realSpeed < 5) return 0; // get voltage if ((privateField = dependantFields.get(Sid.TractionBatteryVoltage)) == null) return Double.NaN; double dcVolt = privateField.getValue(); // get current if ((privateField = dependantFields.get(Sid.TractionBatteryCurrent)) == null) return Double.NaN; double dcCur = privateField.getValue(); if (dcVolt < 300 || dcVolt > 450 || dcCur < -200 || dcCur > 100) return Double.NaN; // power in kW double dcPwr = dcVolt * dcCur / 1000.0; double usage = -(Math.round(1000.0 * dcPwr / realSpeed) / 10.0); if (usage < -150) return -150; else if (usage > 150) return 150; else return usage; }); } private void addVirtualFieldFrictionTorque() { if (MainActivity.altFieldsMode || MainActivity.isPh2()) { addVirtualFieldCommon("6101", "Nm", Sid.HydraulicTorqueRequest, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.HydraulicTorqueRequest)) == null) return Double.NaN; return -privateField.getValue(); }); } else { addVirtualFieldCommon("6101", "Nm", Sid.DriverBrakeWheel_Torque_Request + ";" + Sid.ElecBrakeWheelsTorqueApplied + ";" + Sid.Coasting_Torque, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.DriverBrakeWheel_Torque_Request)) == null) return Double.NaN; double requestedTorque = privateField.getValue(); if ((privateField = dependantFields.get(Sid.ElecBrakeWheelsTorqueApplied)) == null) return Double.NaN; double electricTorque = privateField.getValue(); if ((privateField = dependantFields.get(Sid.Coasting_Torque)) == null) return Double.NaN; double coastingTorque = privateField.getValue(); return requestedTorque - electricTorque - coastingTorque; }); } } private void addVirtualFieldElecBrakeTorque() { if (MainActivity.altFieldsMode || MainActivity.isPh2()) { addVirtualFieldCommon("610a", "Nm", Sid.PEBTorque, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.PEBTorque)) == null) return Double.NaN; double electricTorque = privateField.getValue() * MainActivity.reduction; return electricTorque <= 0 ? -electricTorque : 0; }); } else { addVirtualFieldCommon("610a", "Nm", Sid.ElecBrakeWheelsTorqueApplied + ";" + Sid.Coasting_Torque, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.ElecBrakeWheelsTorqueApplied)) == null) return Double.NaN; double electricTorque = privateField.getValue(); if ((privateField = dependantFields.get(Sid.Coasting_Torque)) == null) return Double.NaN; return electricTorque + (privateField.getValue() * MainActivity.reduction); }); } } private void addVirtualFieldTotalPositiveTorque() { if (MainActivity.altFieldsMode || MainActivity.isPh2()) { addVirtualFieldCommon("610b", "Nm", Sid.PEBTorque, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.PEBTorque)) == null) return Double.NaN; double pebTorque = privateField.getValue(); return pebTorque >= 0 ? pebTorque * MainActivity.reduction : 0; }); } else addVirtualFieldCommon("610b", "Nm", Sid.MeanEffectiveTorque, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.MeanEffectiveTorque)) == null) return Double.NaN; return privateField.getValue() * MainActivity.reduction; }); } private void addVirtualFieldTotalNegativeTorque() { if (MainActivity.altFieldsMode || MainActivity.isPh2()) { addVirtualFieldCommon("610c", "Nm", Sid.PEBTorque + ";" + Sid.HydraulicTorqueRequest, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.HydraulicTorqueRequest)) == null) return Double.NaN; double hydraulicTorqueRequest = privateField.getValue(); if ((privateField = dependantFields.get(Sid.PEBTorque)) == null) return Double.NaN; double pebTorque = privateField.getValue(); return pebTorque <= 0 ? -hydraulicTorqueRequest - pebTorque * MainActivity.reduction : -hydraulicTorqueRequest; }); } else { addVirtualFieldCommon("610c", "Nm", Sid.DriverBrakeWheel_Torque_Request + ";" + Sid.Coasting_Torque, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.DriverBrakeWheel_Torque_Request)) == null) return Double.NaN; double DriverBrakeWheel_Torque_Request = privateField.getValue(); if ((privateField = dependantFields.get(Sid.Coasting_Torque)) == null) return Double.NaN; double Coasting_Torque = privateField.getValue() * MainActivity.reduction; return DriverBrakeWheel_Torque_Request + Coasting_Torque; }); } } /* private void addVirtualFieldFrictionPower() { final String SID_DriverBrakeWheel_Torque_Request = "130.44"; //UBP braking wheel torque the driver wants final String SID_ElecBrakeWheelsTorqueApplied = "1f8.28"; //10ms final String SID_ElecEngineRPM = "1f8.40"; //10ms addVirtualFieldCommon("6102", "kW", SID_DriverBrakeWheel_Torque_Request + ";" + SID_ElecBrakeWheelsTorqueApplied + ";" + SID_ElecEngineRPM, new VirtualFieldAction() { @Override public double updateValue(HashMap dependantFields) { Field privateField; if ((privateField = dependantFields.get(SID_DriverBrakeWheel_Torque_Request)) == null) return Double.NaN; double torque = privateField.getValue(); if ((privateField = dependantFields.get(SID_ElecBrakeWheelsTorqueApplied)) == null) return Double.NaN; torque -= privateField.getValue(); if ((privateField = dependantFields.get(SID_ElecEngineRPM)) == null) return Double.NaN; return (torque * privateField.getValue() / MainActivity.reduction); //return (dependantFields.get(SID_DriverBrakeWheel_Torque_Request).getValue() - dependantFields.get(SID_ElecBrakeWheelsTorqueApplied).getValue()) * dependantFields.get(SID_ElecEngineRPM).getValue() / MainActivity.reduction; } }); } */ private void addVirtualFieldDcPowerIn() { // positive = charging, negative = discharging. Unusable for consumption graphs addVirtualFieldCommon("6103", "kW", Sid.TractionBatteryVoltage + ";" + Sid.TractionBatteryCurrent, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.TractionBatteryVoltage)) == null) return Double.NaN; double voltage = privateField.getValue(); if ((privateField = dependantFields.get(Sid.TractionBatteryCurrent)) == null) return Double.NaN; return (voltage * privateField.getValue() / 1000.0); //return dependantFields.get(SID_TractionBatteryVoltage).getValue() * dependantFields.get(SID_TractionBatteryCurrent).getValue() / 1000; }); } private void addVirtualFieldDcPowerOut() { // positive = discharging, negative = charging. Unusable for charging graphs addVirtualFieldCommon("6109", "kW", Sid.TractionBatteryVoltage + ";" + Sid.TractionBatteryCurrent, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.TractionBatteryVoltage)) == null) return Double.NaN; double voltage = privateField.getValue(); if ((privateField = dependantFields.get(Sid.TractionBatteryCurrent)) == null) return Double.NaN; return (voltage * privateField.getValue() / -1000.0); }); } private void addVirtualFieldUsageLpf() { // It would be easier use SID_Consumption = "1fd.48" (dash kWh) instead of V*A // need to use real timer. Now the averaging is dependant on dongle speed final String SID_VirtualUsage = "800.6100.24"; addVirtualFieldCommon("6104", "kWh/100km", SID_VirtualUsage, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(SID_VirtualUsage)) == null) return Double.NaN; double value = privateField.getValue(); if (!Double.isNaN(value)) { long now = Calendar.getInstance().getTimeInMillis(); long since = now - start; if (since > 1000) since = 1000; // use a maximum of 1 second start = now; double factor = since * 0.00005; // 0.05 per second runningUsage = runningUsage * (1 - factor) + value * factor; } return runningUsage; }); } private void addVirtualFieldHeaterSetpoint() { if (MainActivity.isPh2()) { addVirtualFieldCommon("6105", 1, "°C", Sid.OH_ClimTempDisplay, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.OH_ClimTempDisplay)) == null) return Double.NaN; double value = privateField.getValue(); if (value == 0) { return Double.NaN; } else if (value == 4) { return -10.0; } else if (value == 5) { return 40.0; } return value; }); } else if (MainActivity.altFieldsMode) { addVirtualFieldCommon("6105", "°C", Sid.OH_ClimTempDisplay, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.OH_ClimTempDisplay)) == null) return Double.NaN; double value = privateField.getValue() / 2; if (value == 0) { return Double.NaN; } else if (value == 4) { return -10.0; } else if (value == 5) { return 40.0; } return value; }); } else { addVirtualFieldCommon("6105", "°C", Sid.HeaterSetpoint, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.HeaterSetpoint)) == null) return Double.NaN; double value = privateField.getValue(); if (value == 0) { return Double.NaN; } else if (value == 4) { return -10.0; } else if (value == 5) { return 40.0; } return value; }); } } private void addVirtualFieldRealRange() { if (Double.isNaN(realRangeReference)) realRangeReference = CanzeDataSource.getInstance().getLast(Sid.RangeEstimate); addVirtualFieldCommon("6106", "km", Sid.EVC_Odometer + ";" + Sid.RangeEstimate, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.EVC_Odometer)) == null) return Double.NaN; double odo = privateField.getValue(); if ((privateField = dependantFields.get(Sid.RangeEstimate)) == null) return Double.NaN; double gom = privateField.getValue(); // timestamp of last inserted dot in MILLISECONDS long lastInsertedTime = CanzeDataSource.getInstance().getLastTime(Sid.RangeEstimate); if ( // timeout of 15 minutes (Calendar.getInstance().getTimeInMillis() - lastInsertedTime > 15 * 60 * 1000) || Double.isNaN(realRangeReference) ) { if (!Double.isNaN(gom) && !Double.isNaN(odo)) { realRangeReference = odo + gom; realRangeReference2 = odo + gom; } } if (Double.isNaN(realRangeReference)) { return Double.NaN; } /* double delta = realRangeReference - odo - gom; if (delta > 12.0 || delta < -12.0) { realRangeReference = odo + gom; } */ return realRangeReference - odo; }); } private void addVirtualFieldRealDelta() { // get last value for realRange from internal database if (Double.isNaN(realRangeReference)) { realRangeReference = CanzeDataSource.getInstance().getLast(Sid.RangeEstimate); } addVirtualFieldCommon("6107", "km", Sid.EVC_Odometer + ";" + Sid.RangeEstimate, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.EVC_Odometer)) == null) return Double.NaN; double odo = privateField.getValue(); if ((privateField = dependantFields.get(Sid.RangeEstimate)) == null) return Double.NaN; double gom = privateField.getValue(); //MainActivity.debug("realRange ODO: "+odo); //MainActivity.debug("realRange GOM: "+gom); // timestamp of last inserted dot in MILLISECONDS long lastInsertedTime = CanzeDataSource.getInstance().getLastTime(Sid.RangeEstimate); if ( // timeout of 15 minutes (Calendar.getInstance().getTimeInMillis() - lastInsertedTime > 15 * 60 * 1000) || Double.isNaN(realRangeReference) ) { if (!Double.isNaN(gom) && !Double.isNaN(odo)) { realRangeReference = odo + gom; } } if (Double.isNaN(realRangeReference)) { return Double.NaN; } double delta = realRangeReference - odo - gom; if (delta > 12.0 || delta < -12.0) { realRangeReference = odo + gom; delta = 0.0; } return delta; }); } private void addVirtualFieldRealDeltaNoReset() { // get last value for realRange from internal database if (Double.isNaN(realRangeReference2)) { realRangeReference2 = CanzeDataSource.getInstance().getLast(Sid.RangeEstimate); } addVirtualFieldCommon("6108", "km", Sid.EVC_Odometer + ";" + Sid.RangeEstimate, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.EVC_Odometer)) == null) return Double.NaN; double odo = privateField.getValue(); if ((privateField = dependantFields.get(Sid.RangeEstimate)) == null) return Double.NaN; double gom = privateField.getValue(); //MainActivity.debug("realRange ODO: "+odo); //MainActivity.debug("realRange GOM: "+gom); // timestamp of last inserted dot in MILLISECONDS long lastInsertedTime = CanzeDataSource.getInstance().getLastTime(Sid.RangeEstimate); if ( // timeout of 15 minutes (Calendar.getInstance().getTimeInMillis() - lastInsertedTime > 15 * 60 * 1000) || Double.isNaN(realRangeReference2) ) { if (!Double.isNaN(gom) && !Double.isNaN(odo)) { realRangeReference2 = odo + gom; } } if (Double.isNaN(realRangeReference2)) { return Double.NaN; } double delta = realRangeReference2 - odo - gom; if (delta > 500.0 || delta < -500.0) { realRangeReference2 = odo + gom; delta = 0.0; } return delta; }); } private void addVirtualFieldPilotAmp() { if (MainActivity.altFieldsMode || MainActivity.isPh2()) { addVirtualFieldCommon("610d", "A", Sid.ACPilotDutyCycle, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.ACPilotDutyCycle)) == null) return Double.NaN; double dutyCycle = privateField.getValue(); return dutyCycle < 80.0 ? dutyCycle * 0.6 : (dutyCycle - 64.0) * 2.5; }); } else { addVirtualFieldCommon("610d", "A", Sid.ACPilotAmps, dependantFields -> { Field privateField; if ((privateField = dependantFields.get(Sid.ACPilotAmps)) == null) return Double.NaN; return privateField.getValue(); }); } } private class MyLocationListener implements LocationListener { /*---------- Listener class to get coordinates ------------- */ // https://stackoverflow.com/questions/1513485/how-do-i-get-the-current-gps-location-programmatically-in-android @Override public void onLocationChanged(Location loc) { Field gpsField = getBySID("800.610e.24"); if (gpsField != null) { gpsField.setValue(String.format(Locale.US, "%.6f/%.6f/%.1f", loc.getLatitude(), loc.getLongitude(), loc.getAltitude())); if (MainActivity.fieldLogMode) FieldLogger.getInstance().log(gpsField.getDebugValue()); } } @Override public void onProviderDisabled(String provider) {} @Override public void onProviderEnabled(String provider) {} @Override public void onStatusChanged(String provider, int status, Bundle extras) {} } private void addVirtualFieldGps() { if (locationManager == null) { locationManager = (LocationManager) MainActivity.getInstance().getBaseContext().getSystemService(Context.LOCATION_SERVICE); locationListener = new MyLocationListener(); } Field gpsField = getBySID("800.610e.24"); if (gpsField == null) { Frame frame = Frames.getInstance().getById(0x800); gpsField = new Field("", frame, (short) 24, (short) 31, 1, 0, 0, "coord", "610e", (short) 0xaff, "GPS", ""); add(gpsField); } } private void virtualFieldPropelGps (boolean startStop) { if (locationManager == null) return; // yes I know, this is the brute force approach... try { if (startStop) { if (locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER) ) { locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 5000, 10, locationListener); } else { MainActivity.toast(MainActivity.TOAST_NONE, "Can't start location. Please switch on location services"); } } else { locationManager.removeUpdates (locationListener); } } catch (SecurityException e) { MainActivity.toast(MainActivity.TOAST_NONE, "Can't start location. Please give CanZE location permission"); } } private void addVirtualFieldCommon(String virtualId, String unit, String dependantSids, VirtualFieldAction virtualFieldAction) { addVirtualFieldCommon(virtualId, 0, unit, dependantSids,virtualFieldAction); } private void addVirtualFieldCommon(String virtualId, int decimals, String unit, String dependantSids, VirtualFieldAction virtualFieldAction) { // create a list of field this new virtual field will depend on HashMap dependantFields = new HashMap<>(); boolean allOk = true; for (String sid : dependantSids.split(";")) { Field field = getBySID(sid); if (field != null) { if (!field.getResponseId().equals("999999")) { dependantFields.put(sid, field); } else { //else not ok, but no error toast display. This is a temporary hack to avoid toast overload while fixing _FieldsPh2 allOk = false; } } else { allOk = false; MainActivity.toast(MainActivity.TOAST_NONE, String.format(Locale.getDefault(), MainActivity.getStringSingle(R.string.format_NoSid), "Fields", sid)); } } if (allOk) { Frame frame = Frames.getInstance().getById(0x800); if (frame == null) { MainActivity.toast(MainActivity.TOAST_NONE, "rame does not exist:0x800"); MainActivity.debug("frame does not exist:0x800"); return; } VirtualField virtualField = new VirtualField(virtualId, dependantFields, decimals, unit, virtualFieldAction); // a virtualfield is always ISO-TP, so we need to create a subframe for it Frame subFrame = Frames.getInstance().getById(0x800, virtualField.getResponseId()); if (subFrame == null) { subFrame = new Frame(frame.getFromId(), frame.getInterval(), frame.getSendingEcu(), virtualField.getResponseId(), frame); Frames.getInstance().add(subFrame); } subFrame.addField(virtualField); virtualField.setFrame(subFrame); // add it to the list of fields add(virtualField); } } private void fillOneLine(String line) { if (line.contains("#")) line = line.substring(0, line.indexOf('#')); String[] tokens = line.split(","); if (tokens.length > FIELD_OPTIONS) { int frameId = Integer.parseInt(tokens[FIELD_ID].trim(), 16); Frame frame = Frames.getInstance().getById(frameId); if (frame == null) { MainActivity.debug("frame does not exist:" + tokens[FIELD_ID].trim()); } else { if (frameId < 0x800 || frameId > 0x8ff) { short options = Short.parseShort(tokens[FIELD_OPTIONS].trim(), 16); // ensure this field matches the selected car if ((options & MainActivity.car) != 0 && (!tokens[FIELD_RESPONSE_ID].trim().startsWith("7") || tokens[FIELD_RESPONSE_ID].trim().toLowerCase().startsWith("7e"))) { //Create a new field object and fill his data //MainActivity.debug(tokens[FIELD_SID] + " " + tokens[FIELD_ID] + "." + tokens[FIELD_FROM] + "." + tokens[FIELD_RESPONSE_ID]); try { Field field = new Field( tokens[FIELD_SID].trim(), frame, Short.parseShort(tokens[FIELD_FROM].trim()), Short.parseShort(tokens[FIELD_TO].trim()), Double.parseDouble(tokens[FIELD_RESOLUTION].trim()), Integer.parseInt(tokens[FIELD_DECIMALS].trim()), Long.parseLong(tokens[FIELD_OFFSET].trim()), tokens[FIELD_UNIT].trim(), tokens[FIELD_RESPONSE_ID].trim(), options, (tokens.length > FIELD_NAME) ? tokens[FIELD_NAME] : "", (tokens.length > FIELD_LIST) ? tokens[FIELD_LIST] : "" ); // we are maintaining a list of all fields in a frame so we can very // quickly update all fields when a message (=frame data) comes in // note that for free frames a frame is identified by it's ID and itś definition // is entirely given // for an ISOTP frame (diagnostics) frame, the frame is just a skeleton and // the definition is entirely dependant on the responseID. Therefor, when an // ISOTP field is defined, new frames are created dynamically if (field.isIsoTp()) { Frame subFrame = Frames.getInstance().getById(frameId, field.getResponseId()); if (subFrame == null) { subFrame = new Frame(frame.getFromId(), frame.getInterval(), frame.getSendingEcu(), field.getResponseId(), frame); Frames.getInstance().add(subFrame); } subFrame.addField(field); field.setFrame(subFrame); } else { frame.addField(field); } // add the field to the list of available fields add(field); } catch (Exception e) { e.printStackTrace(); } } } else { addVirtualField(tokens[FIELD_RESPONSE_ID].trim()); } } } } private void fillFromFile(String filename) { try { BufferedReader bufferedReader = new BufferedReader(new FileReader(filename)); // removed checking for non null bufferedReader, as file not found will thow an Exception //if (bufferedReader == null) { // MainActivity.toast(MainActivity.TOAST_NONE, "Can't access file " + filename); // return; //} String line; while ((line = bufferedReader.readLine()) != null) fillOneLine(line); bufferedReader.close(); } catch (IOException e ) { MainActivity.toast(MainActivity.TOAST_NONE, "Can't access file " + filename); } } private void fillFromAsset(String assetName) { //Read text from asset BufferedReader bufferedReader = AssetLoadHelper.getBufferedReaderFromAsset(assetName); if (bufferedReader == null) { MainActivity.toast(MainActivity.TOAST_NONE, "Can't access asset " + assetName); return; } try { String line; while ((line = bufferedReader.readLine()) != null) fillOneLine(line); bufferedReader.close(); } catch (IOException e) { Crashlytics.logException(e); } } public void load() { load(""); } public void load(String assetName) { fields.clear(); fieldsBySid.clear(); // if settings were not done, no fields would be loaded from file, and then the system will // complain because it can't get register the virtual fields because it cannot find the // required dependantfields. if (MainActivity.device == null) return; if (assetName.equals("")) { fillFromAsset(getDefaultAssetName()); addVirtualFields(); } else if (assetName.startsWith("/")) { fillFromFile(assetName); } else { fillFromAsset(assetName); //if (assetName.startsWith("VFC")) { // addVirtualFields(); //} } MainActivity.getInstance().registerApplicationFields(); // this registers i.e. speed for save driving mode } public Field getBySID(String sid) { return fieldsBySid.get(sid.toLowerCase()); } public int size() { return fields.size(); } public Field get(int index) { if (index < 0 || index >= fields.size()) return null; // avoid a rare outofbounds crash when MainActivity.onCreate is reloading values from the // SQL while another thread is loading the fields. try { return fields.get(index); } catch (IndexOutOfBoundsException e) { return null; } } public void add(Field field) { fields.add(field); fieldsBySid.put(field.getSID(), field); //fieldsBySid.put(field.getCar()+"."+field.getSID(),field); } public void clearAllFields() { for (int i = 0; i < fields.size(); i++) { Field f = fields.get(i); if(f!=null) fields.get(i).setValue(0); } } public ArrayList getAllFields() { return fields; } private String getDefaultAssetName() { // note - we might ditch non-alt mode. I doubt if it's worth the effort for CanSee dongle only if (MainActivity.isZOE()) { if (MainActivity.altFieldsMode) { return MainActivity.getAssetPrefix() + "_FieldsAlt.csv"; } } return MainActivity.getAssetPrefix() + "_Fields.csv"; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Frame.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.actors; import java.util.ArrayList; import java.util.Calendar; /** * Frame */ public class Frame { // A frame is one of // - a representation of a free frame floating on the bus (Ph1 only). Though we do not use the // term "packet" like in ethernet, it's totally equivalent. Size is max 8 bytes // A free frame is identified by an ID below 0x700, at least on Ph1. We have not detected yet // accessible free frames on Ph2. // - an ISOTP formatted frame, which can (not need) consist of more than one "packet". ISOTP // carries out sequencing, (dis)assembly and flow control // ISOTP frames are almost exclusively use for "request-response" traffic, meant for // diagnstic tools. Since the ID of many ISOTP frames are the same (in principle, all ECUs // have one rc and one tx ID only), sub-frames are defined for each single ISOTP frames. // An ISOTP sub-frame is identified by an ID and a response string. // A frames is the basic unit of communication. A frame is received from the car or potentially // send to the car. Once a frame is received, it's content is stored in a Message, which is // processed further down the line. // A frame usually contains one or more Fields. private final int fromId; private final String responseId; private final Ecu sendingEcu; private final ArrayList fields = new ArrayList<>(); private final ArrayList queriedFields = new ArrayList<>(); private final Frame containingFrame; private int interval; // in ms private long lastRequest = 0; public Frame (int fromId, int interval, Ecu sendingEcu, String responseId, Frame containingFrame) { this.fromId = fromId; this.interval = interval; this.sendingEcu = sendingEcu; this.responseId = responseId == null ? null : responseId.toLowerCase(); this.containingFrame = containingFrame; } /* -------------------------------- * Scheduling * ------------------------------ */ public void updateLastRequest() { lastRequest = Calendar.getInstance().getTimeInMillis(); } public long getLastRequest() { return lastRequest; } public boolean isDue(long referenceTime) { return lastRequest+interval= 0x700 && fromId != 0x801); // All 29 bits and the VFC is considered ISOTP too } public int getFromId() { return fromId; } public String getFromIdHex() { return String.format(isExtended() ? "%08x" : "%03x", fromId); } public String getFromIdHexLSB() { return String.format(isExtended() ? "%06x" : "%03x", fromId & 0xffffff); } public String getFromIdHexMSB() { return String.format("%02x", (fromId & 0x1f000000) >> 24); } public String getRID() { // RID is the from ID, plus the response ID (for ISOTP) if(responseId != null && !responseId.trim().isEmpty()) { return (getFromIdHex() + "." + responseId.trim()).toLowerCase(); } else { return (getFromIdHex()).toLowerCase(); } } private int getToId() { Ecu ecu = Ecus.getInstance().getByFromId(fromId); return ecu != null ? ecu.getToId() : 0; } public String getToIdHex() { return String.format(isExtended() ? "%08x" : "%03x", getToId ()); } public String getToIdHexLSB() { return String.format(isExtended() ? "%06x" : "%03x", getToId() & 0xffffff); } public String getToIdHexMSB() { return String.format("%02x", (getToId() & 0x1f000000) >> 24); } public boolean isExtended () { // 0-6ff = free frame // 700-7ff = 11 bits ISOTP // 800 = VFC // 801 = FFC // 802-FFF = reserved // 1000-1FFFFFFF = 29 bits ISOTP // We are ignoring the possibility for sub 1000 29 bits for now return (fromId >= 0x1000); } public Ecu getSendingEcu() { return sendingEcu; } public String getResponseId() { return responseId; } public ArrayList getAllFields() { return fields; } public void addField(Field field) { this.fields.add(field); } public ArrayList getQueriedFields() { return queriedFields; } public void addQueriedField(Field field) { this.queriedFields.add(field); } public void removeQueriedField(Field field) { this.queriedFields.remove(field); } public String getRequestId () { if (responseId.compareTo("") == 0) return (""); char[] tmpChars = responseId.toCharArray(); tmpChars[0] -= 0x04; return String.valueOf(tmpChars); } public Frame getContainingFrame() { return containingFrame; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Frames.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.actors; import java.io.BufferedReader; import java.io.IOException; import java.util.ArrayList; import lu.fisch.canze.R; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.classes.Crashlytics; /** * Frames */ public class Frames { private static final int FRAME_ID = 0; // to be stated in HEX, no leading 0x private static final int FRAME_INTERVAL_ZOE = 1; // decimal private static final int FRAME_INTERVAL_FLUKAN = 2; // decimal, deprecated private static final int FRAME_ECU = 3; // double private final ArrayList frames = new ArrayList<>(); private static Frames instance = null; private Frames() { load(); } public static Frames getInstance() { if(instance==null) instance=new Frames(); return instance; } private void fillOneLine(String line) { if (line.contains("#")) line = line.substring(0, line.indexOf('#')); //Get all tokens available in line String[] tokens = line.split(","); if (tokens.length == 4) { //Create a new field object and fill his data Ecu ecu = Ecus.getInstance().getByMnemonic(tokens[FRAME_ECU].trim()); if (ecu == null) { MainActivity.debug("Ecu does not exist:'" + tokens[FRAME_ECU].trim() + "'"); } else { int frameId = Integer.parseInt(tokens[FRAME_ID].trim(), 16); int interval = MainActivity.car == MainActivity.CAR_ZOE_Q210 || MainActivity.car == MainActivity.CAR_ZOE_R240 ? Integer.parseInt(tokens[FRAME_INTERVAL_ZOE].trim(), 10) : Integer.parseInt(tokens[FRAME_INTERVAL_FLUKAN].trim(), 10); Frame frame = getById(frameId); if (frame == null) { frame = new Frame( frameId, interval, ecu, null, null ); } else { frame.setInterval(interval); } // add the field to the list of available fields add(frame); } } } private void fillFromAsset (String assetName) { //Read text from asset BufferedReader bufferedReader = AssetLoadHelper.getBufferedReaderFromAsset(assetName); if (bufferedReader == null) { MainActivity.toast(MainActivity.TOAST_NONE, MainActivity.getStringSingle(R.string.format_NoAsset),assetName); return; } try { String line; while ((line = bufferedReader.readLine()) != null) fillOneLine(line); bufferedReader.close(); } catch (IOException e) { Crashlytics.logException(e); } } public void load () { load (""); } public void load (String assetName) { frames.clear(); if (assetName.equals("")) { fillFromAsset(getDefaultAssetName()); } else { fillFromAsset(assetName); } } public void load (Ecu ecu) { if (ecu.getFromId() != 0x801) { // for all but the Free Frame ECU, just load it's diagnostic frame. Sub-frames will be created automatically for each field frames.clear(); Frame frame = new Frame( ecu.getFromId(), 0, ecu, null, null ); // add the field to the list of available fields add(frame); } else { // for the FCC, load all Free Frames this.load(MainActivity.getAssetPrefix() + "FFC_FramesPh1.csv"); } } public void add(Frame frame) { frames.add(frame); } public Frame get (int position) { return frames.get(position); } // Lint mark as can be private so probably never used externally public Frame getById (int id) { for(int i=0; i getAllFrames () { return frames; } private String getDefaultAssetName() { // note - we might ditch non-alt mode. I doubt if it's worth the effort for CanSee dongle only if (MainActivity.isZOE()) { if (MainActivity.altFieldsMode) { return MainActivity.getAssetPrefix() + "_FramesAlt.csv"; } } return MainActivity.getAssetPrefix() + "_Frames.csv"; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Message.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* * This class represents a CAN frame */ package lu.fisch.canze.actors; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.classes.FieldLogger; /** * * @author robertfisch */ public class Message { // A message represents a message coming from a device as a result from a frame request. // Note that for ISO-TP frames, a frame is always a sub-frame. It's parent frame is one // related to the ECU // If a communication error occurs while fetching a message, the error flag is set to true and // the data part now represents a readable error. // // If the ECU reports an error (as opposed to a comms error), error7f is raised. This is done // since in this case a reinitialization of the dongle makes no sense. // While the Message object does not automatically trigger field updates related the frame, // it provides methods to do so, both for an error or all good condition. private final Frame frame; private final String data; private final boolean error; private final boolean error7f; public Message(Frame frame, String data, boolean error) { MainActivity.debug("Message.new.data:" + data); this.frame = frame; if (frame.isIsoTp()) { if (data.startsWith("7f")) { this.error7f = true; this.error = true; this.data = "-E-Message.isotp.startswith7f"; return; } } this.data = data; this.error = error; this.error7f = false; } /* -------------------------------- * Getters & setters \ ------------------------------ */ public String getData() { return (error || data == null) ? "" : data; } /* public void setData(String data) { this.data = data; }*/ public Frame getFrame() { return frame; } /* public void setFrame(Frame frame) { this.frame = frame; } */ public boolean isError () {return error;} public boolean isError7f () {return error7f;} public String getError () { return error ? data : ""; } public void onMessageIncompleteEvent () { // simply update the fields last request datetime to send them to the back end of the queue for (Field field : frame.getAllFields()) { field.updateLastRequest(); //field.setValue(Double.NaN); } } public void onMessageCompleteEvent() { // If a message frame comes in, simply update all fields that are defined for it. // Note that for an IsoTP field, the getFrame() method returns as sub-frame. The sub-frame's // getAllFields() method only returns the fields with the same responseId. // This method is called from DtcActivity ("manual mode") and // Device.queryNextFilter ("auto mode") if (error) return; String binString = getAsBinaryString(); for (Field field : frame.getAllFields()) { onMessageCompleteEventField(binString, field); } } private void onMessageCompleteEventField(String binString, Field field) { if(binString.length()>= field.getTo() && !field.getResponseId().equals("999999")) { // parseInt --> signed, so the first bit is "cut-off"! try { binString = binString.substring(field.getFrom(), field.getTo() + 1); if (field.isString()) { StringBuilder tmpVal = new StringBuilder(); for (int i = 0; i < binString.length(); i += 8) { tmpVal.append ((char) Integer.parseInt("0" + binString.substring(i, i+8), 2)); } String val = tmpVal.toString(); field.setValue(val); } else if (field.isHexString()) { StringBuilder tmpVal = new StringBuilder(); for (int i = 0; i < binString.length(); i += 8) { tmpVal.append (String.format("%02X", Integer.parseInt("0" + binString.substring(i, i+8), 2))); } String val = tmpVal.toString(); field.setValue(val); } else if (binString.length() <= 4 || binString.contains("0")) { // experiment with unavailable: any field >= 5 bits whose value contains only 1's long val; // long to avoid craze overflows with 0x8000 ofsets if (field.isSigned() && binString.startsWith("1")) { // ugly method: flip bits, add a minus in front and subtract one val = Long.parseLong("-" + binString.replace('0', 'q').replace('1','0').replace('q','1'), 2) - 1; } else { val = Long.parseLong("0" + binString, 2); } //MainActivity.debug("Value of " + field.getFromIdHex() + "." + field.getResponseId() + "." + field.getFrom()+" = "+val); //MainActivity.debug("Fields: onMessageCompleteEvent > "+field.getSID()+" = "+val); // update the value of the field. This triggers updating all of all listeners of that field field.setValue((double)val); } else { field.setValue(Double.NaN); } // do field logging if(MainActivity.fieldLogMode) FieldLogger.getInstance().log(field.getDebugValue()); } catch (Exception e) { MainActivity.debug("Message.onMessageCompleteEventField: Exception:"); MainActivity.debug(e.getMessage()); // ignore } } // update the fields last request date field.updateLastRequest(); } /* -------------------------------- * Some utilities \ ------------------------------ */ private String getAsBinaryString() { StringBuilder result = new StringBuilder(); if (!error) { for (int i = 0; i < data.length(); i += 2) { try { result.append (String.format("%8s", Integer.toBinaryString(Integer.parseInt(data.substring(i, i + 2), 16) & 0xFF)).replace(' ', '0')); } catch (Exception e) { // do nothing } } } return result.toString(); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/StoppableThread.java ================================================ package lu.fisch.canze.actors; /** * Created by robertfisch on 30.12.2016. */ public class StoppableThread extends Thread { private boolean stopped = false; public StoppableThread(Runnable runnable) { super(runnable); } public void start() { stopped=false; super.start(); } public void tryToStop() { stopped=true; } public boolean isStopped() { return stopped; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Test.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.actors; /** * ECU */ public class Test { private final String id; private final String description; public Test(String id, String description) { this.id = id; this.description = description; } public String getDescription() { return description; } public String getId() { return id; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/Utils.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* * Some convertion utilities. */ package lu.fisch.canze.actors; import java.lang.reflect.Field; import lu.fisch.canze.activities.MainActivity; /** * * @author robertfisch */ public class Utils { /** * Converts a string in hexadecimals format into a byte array * @param hexString the hexadecimal string * @return */ public static int[] toIntArray(String hexString) throws IllegalArgumentException { // make shure the string has an even length // cut the last symbol if length is odd //if(hexString.length()%2==1) hexString=hexString.substring(0, hexString.length()-1); return parseHexBinary(hexString); } public static int[] toIntArray(byte[] byteArray) { int[] toIntArray = new int[byteArray.length]; for(int i=0; i> 4); } public static int getLastNibble(int b) { return (b & 0x0F); } public static void main(String[] args) { int valueO = (int) 0x1A; int value = valueO; System.out.println("Value = "+(value)+" / "+get8Bit(value)); value = valueO; value = getFirstNibble(value); System.out.println("First = "+(value)+" / "+get8Bit(value)); value = valueO; value = getLastNibble(value); System.out.println("Last = "+(value)+" / "+get8Bit(value)); } // source: http://stackoverflow.com/questions/140131/convert-a-string-representation-of-a-hex-dump-to-a-byte-array-using-java public static int[] parseHexBinary(String s) throws IllegalArgumentException { final int len = s.length(); // "111" is not a valid hex encoding. if( len%2 != 0 ) throw new IllegalArgumentException("hexBinary needs to be even-length: "+s); int[] out = new int[len/2]; for( int i=0; i> 4) & 0xF]); r.append(hexCode[(b & 0xF)]); } return r.toString(); } public static double kmOrMiles (double km) {if (MainActivity.milesMode) return km/1.609344; return km;} /** * Get a resource from its name * @param resName Resource name * @param c Resource class * @return int * @see "https://stackoverflow.com/a/4428288/4011313" */ public static int getResId(String resName, Class c) throws NoSuchFieldException, SecurityException, IllegalAccessException { Field idField = c.getDeclaredField(resName); return idField.getInt(idField); } /** * Capitalize the first letter of a String * @param str * @return String * @see "https://stackoverflow.com/a/62404137/4011313" */ public static String capitalizeString(String str) { String retStr = str; try { // We can face index out of bound exception if the string is null retStr = str.substring(0, 1).toUpperCase() + str.substring(1).toLowerCase(); } catch (Exception e) { } return retStr; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/actors/VirtualField.java ================================================ package lu.fisch.canze.actors; import java.util.Collection; import java.util.HashMap; import lu.fisch.canze.interfaces.FieldListener; import lu.fisch.canze.interfaces.VirtualFieldAction; /** * Created by robertfisch on 15.11.2015. */ public class VirtualField extends Field implements FieldListener { // the list of fields this field depends on private final HashMap dependantFields; // the method to be executed for the calculation of this field private final VirtualFieldAction virtualFieldAction; public VirtualField(String responseId, HashMap dependantFields, int decimals, String unit, VirtualFieldAction virtualFieldAction) { // virtual frame added in the initialization block // super(Frames.getInstance().createVirtualIfNotExists(id), 0, 0, 1, 1, 0, unit, "", "", 0); // We're creating a new Field, frame 800, bit position 24-31, resolution 1, decimals 0, offset 0, given unit, empty requestId, given responseId, generic car super("", Frames.getInstance().getById(0x800), (short)24, (short)31, 1, 0, 0, unit, responseId, (short)0, null, null); // register dependant listeners for (Field field : dependantFields.values()) { if(field!=null) field.addListener(this); } this.dependantFields = dependantFields; this.virtualFieldAction = virtualFieldAction; this.virtual = true; this.setUnit(unit); this.setDecimals(decimals); } @Override public void onFieldUpdateEvent(Field field) { if(virtualFieldAction!=null) { setValue(virtualFieldAction.updateValue(dependantFields)); } } @Override public void removeListener(FieldListener fieldListener) { // remove our listener super.removeListener(fieldListener); // remove listeners to dependant listeners for (Field field : dependantFields.values()) { fieldListeners.remove(this); } } public Collection getFields() { return dependantFields.values(); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/adapters/FieldAdapter.java ================================================ package lu.fisch.canze.adapters; import android.app.Activity; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.TextView; import java.util.ArrayList; import lu.fisch.canze.R; import lu.fisch.canze.classes.LoggingLogger; /** * Created by robert.fisch on 16.03.17. */ public class FieldAdapter extends ArrayAdapter { private final Context context; private final int layoutResourceId; // the list will hold a reference to the entire data structure private final ArrayList data; public FieldAdapter(Context context, int layoutResourceId, ArrayList data) { super(context, layoutResourceId, data); this.layoutResourceId = layoutResourceId; this.context = context; this.data = data; } @Override public View getView(final int position, View convertView, ViewGroup parent) { View row = convertView; FieldHolder holder; if(row == null) { // this will inflate the XML layout to the row LayoutInflater inflater = ((Activity) context).getLayoutInflater(); row = inflater.inflate(layoutResourceId, parent, false); holder = new FieldHolder(); // get the references to the persons list information holder.field = row.findViewById(R.id.sid); holder.interval = row.findViewById(R.id.interval); holder.deleteButton = row.findViewById(R.id.deleteButton); row.setTag(holder); } else { holder = (FieldHolder)row.getTag(); } // get the person final LoggerField loggerField = data.get(position); // fill the list items holder.field.setText(loggerField.field.toString()); holder.interval.setText(loggerField.interval+" s"); holder.deleteButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { LoggingLogger.getInstance().remove(loggerField.field); data.remove(position); FieldAdapter.this.notifyDataSetChanged(); } }); return row; } /** * a static data class to hold a persons information as show in the list */ static class FieldHolder { TextView field; TextView interval; Button deleteButton; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/adapters/LoggerField.java ================================================ package lu.fisch.canze.adapters; import lu.fisch.canze.actors.Field; /** * Created by robert.fisch on 16.03.17. */ public class LoggerField { public final Field field; public final int interval; public LoggerField(Field field, int interval) { this.field = field; this.interval = interval; } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof LoggerField)) return false; LoggerField that = (LoggerField) o; //if (interval != that.interval) return false; return field != null ? field.equals(that.field) : that.field == null; } @Override public int hashCode() { return field != null ? field.hashCode() : 0; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/bluetooth/BluetoothManager.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* * Helper class to manage the Bluetooth connection */ package lu.fisch.canze.bluetooth; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothSocket; import android.os.Build; import android.os.ParcelFileDescriptor; import android.util.Log; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.security.InvalidParameterException; import java.util.UUID; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.interfaces.BluetoothEvent; /** * Created by robertfisch on 03.09.2015. */ public class BluetoothManager { /* -------------------------------- * Sigleton stuff \ ------------------------------ */ private static BluetoothManager instance = null; private InputStream inputStream = null; private OutputStream outputStream = null; public static BluetoothManager getInstance() { if (instance == null) instance = new BluetoothManager(); return instance; } /* -------------------------------- * Attributes \ ------------------------------ */ // SPP UUID service private static final UUID MY_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"); public static final int STATE_BLUETOOTH_NOT_AVAILABLE = -1; public static final int STATE_BLUETOOTH_ACTIVE = 1; public static final int STATE_BLUETOOTH_NOT_ACTIVE = 0; private BluetoothAdapter bluetoothAdapter; private BluetoothSocket bluetoothSocket = null; public boolean isDummyMode() { return dummyMode; } private boolean dummyMode = false; private BluetoothEvent bluetoothEvent; public static final int RETRIES_NONE = 0; public static final int RETRIES_INFINITE = -1; private Thread retryThread = null; private final String retryLock = ""; // ugly! but retryThread itself can be null private String connectBluetoothAddress = null; private boolean connectSecure; private int connectRetries; private boolean retry = true; private void debug(String text) { MainActivity.debug(this.getClass().getSimpleName() + ": " + text); } /** * Create a new manager */ private BluetoothManager() { // get Bluetooth adapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); } /** * Determine the state of the Bluetooth hardware * * @return the state of the Bluetooth hardware */ public int getHardwareState() { // Check for Bluetooth support and then check to make sure it is turned on // Emulator doesn't support Bluetooth and will return null if (dummyMode) return STATE_BLUETOOTH_ACTIVE; if (bluetoothAdapter == null) { return STATE_BLUETOOTH_NOT_AVAILABLE; } else { if (bluetoothAdapter.isEnabled()) { return STATE_BLUETOOTH_ACTIVE; } else { return STATE_BLUETOOTH_NOT_ACTIVE; } } } /** * Creates a new Bluetooth socket from a given device */ private BluetoothSocket createBluetoothSocket(BluetoothDevice device, boolean secure) throws IOException { try { final Method m = device.getClass().getMethod(secure ? "createRfcommSocketToServiceRecor" : "createInsecureRfcommSocketToServiceRecord", new Class[]{UUID.class}); return (BluetoothSocket) m.invoke(device, MY_UUID); } catch (Exception e) { debug("Could not create RFComm Connection"); } return device.createRfcommSocketToServiceRecord(MY_UUID); } public void connect() { if (dummyMode) return; if (connectBluetoothAddress == null) throw new InvalidParameterException("connect() has to be called at least once with parameters!"); connect(connectBluetoothAddress, connectSecure, connectRetries); } public void connect(final String bluetoothAddress, final boolean secure, final int retries) { if (dummyMode) return; retry = true; privateConnect(bluetoothAddress, secure, retries); } private void privateConnect(final String bluetoothAddress, final boolean secure, final int retries) { synchronized (retryLock) { if (!(retryThread == null || !retryThread.isAlive())) { debug("BT: aborting connect (another one is in progress ...)"); return; } } if (retry) { // remember parameters connectBluetoothAddress = bluetoothAddress; connectSecure = secure; connectRetries = retries; // only continue if we got an address if (bluetoothAddress != null && !bluetoothAddress.isEmpty() && getHardwareState() == STATE_BLUETOOTH_ACTIVE) { // make sure there is no more active connection if (bluetoothSocket != null && bluetoothSocket.isConnected()) { try { debug("Closing previous socket"); // bluetoothSocket.close(); closeSocketAndclearFileDescriptor(); bluetoothSocket = null; } catch (Exception e) { e.printStackTrace(); } } // execute attached event if (bluetoothEvent != null) bluetoothEvent.onBeforeConnect(); // set up a pointer to the remote node using it's address. debug("Get remote device: " + bluetoothAddress); BluetoothDevice device = bluetoothAdapter.getRemoteDevice(bluetoothAddress); // create a socket try { debug("Create new socket"); bluetoothSocket = createBluetoothSocket(device, secure); } catch (IOException e) { e.printStackTrace(); } // discovery is resource intensive so make sure it is stopped debug("Cancel discovery"); bluetoothAdapter.cancelDiscovery(); try { debug("Connect the socket"); if (bluetoothSocket != null) bluetoothSocket.connect(); debug("Connect the streams"); // init with null inputStream = null; outputStream = null; // connect input if(bluetoothSocket!=null) inputStream = bluetoothSocket.getInputStream(); // connect output if(bluetoothSocket!=null) outputStream = bluetoothSocket.getOutputStream(); // execute attached event if (bluetoothEvent != null) bluetoothEvent.onAfterConnect(bluetoothSocket); // stop here and return if everything went well if(inputStream != null && outputStream != null) { debug("Connected"); return; } } catch (IOException | SecurityException e) { //e.printStackTrace(); } } // if we reach this line, something went wrong and no connection has been established debug("Something went wrong"); if (bluetoothAddress == null || bluetoothAddress.isEmpty()) debug("No device address given"); else if (getHardwareState() == STATE_BLUETOOTH_NOT_ACTIVE) debug("Bluetooth not active"); if (bluetoothSocket != null) // try { debug("Closing socket again ..."); // bluetoothSocket.close(); closeSocketAndclearFileDescriptor(); // } catch (IOException e) { // e.printStackTrace(); // } debug(retries + " tries left"); if (retries != RETRIES_NONE) { // avoid thread state mismatches synchronized (retryLock) { if (retryThread == null || !retryThread.isAlive()) { if (retryThread != null) { retryThread.interrupt(); } debug("Starting new try"); retryThread = new Thread(new Runnable() { @Override public void run() { try { Thread.sleep(2 * 1000); } catch (Exception e) { // ignore } (new Thread(new Runnable() { @Override public void run() { BluetoothManager.getInstance().privateConnect(bluetoothAddress, secure, retries - 1); } })).start(); } }); // if STILL something goes wrong, in spite of the synchronize, throw hands in the air and do nothing try { retryThread.start(); } catch (Exception e) { // do nothing } } else { debug("Another try is still running --> abort this one"); debug("Alive: " + retryThread.isAlive()); } } } } } public void disconnect() { if (dummyMode) return; try { // execute attached event if (bluetoothEvent != null) bluetoothEvent.onBeforeDisconnect(bluetoothSocket); retry = false; if (retryThread != null && retryThread.isAlive()) { debug("Waiting for retry-thread to stop ..."); retryThread.join(); } debug("Closing socket"); // close the socket if (bluetoothSocket != null) // bluetoothSocket.close(); closeSocketAndclearFileDescriptor(); // execute attached event if (bluetoothEvent != null) bluetoothEvent.onAfterDisconnect(); debug("Closed"); // } catch (IOException e) { // e.printStackTrace(); } catch (InterruptedException e) { e.printStackTrace(); } } /* -------------------------------- * input / output \ ------------------------------ */ // write a message to the output stream public void write(String message) { if (dummyMode) return; if (bluetoothSocket != null && bluetoothSocket.isConnected()) { byte[] msgBuffer = message.getBytes(); try { // outputstream should never be nll here, but seen it in crash reports so // the strategy is to simply avoid if (outputStream != null) { outputStream.write(msgBuffer); } else { MainActivity.debug("BluetoothManager.write: outputStream is null"); } } catch (IOException e) { MainActivity.debug("BT: Error sending > " + e.getMessage()); } } else { MainActivity.debug("Write failed! Socket is closed ... M = " + message); } } public int read(byte[] buffer) throws IOException { if (dummyMode || bluetoothSocket == null) return 0; if (bluetoothSocket.isConnected()) return inputStream.read(buffer); else return 0; } public int read() throws IOException { if (dummyMode || bluetoothSocket == null) return -1; if (bluetoothSocket.isConnected() && inputStream != null) return inputStream.read(); else return -1; } public int available() throws IOException { if (dummyMode || bluetoothSocket == null) return 0; if (bluetoothSocket.isConnected() && inputStream != null) return inputStream.available(); else return 0; } public boolean isConnected() { if (dummyMode) return true; if (bluetoothSocket == null) return false; return bluetoothSocket.isConnected(); } /* -------------------------------- * Events \ ------------------------------ */ public void setBluetoothEvent(BluetoothEvent bluetoothEvent) { if (dummyMode) return; this.bluetoothEvent = bluetoothEvent; } public void setDummyMode(boolean dummyMode) { this.dummyMode = dummyMode; } /* * https://codeday.me/jp/qa/20190630/1142774.html (use google translate) * https://stackoverflow.com/questions/21166222/connecting-to-bluetooth-device-fails-in-deep-sleep * lint balks ar getDeclaredField. Ignore that * */ private synchronized void closeSocketAndclearFileDescriptor() { if (bluetoothSocket == null) return; try { if (Build.VERSION.SDK_INT < 23) { Field field = BluetoothSocket.class.getDeclaredField("mPfd"); field.setAccessible(true); ParcelFileDescriptor mPfd = (ParcelFileDescriptor) field.get(bluetoothSocket); if (null != mPfd) { mPfd.close(); } } bluetoothSocket.close(); } catch (Exception e) { /* do nothing */ } } } ================================================ FILE: app/src/main/java/lu/fisch/canze/changelog.txt ================================================ 2020-05-07 [Jeroen] Version bump for Fdroid. Not release on Play (no code change) 2021-08-22 [Bob] added min/max for widget "plotter". Set custom:showValue to false to disable 2021-08-20 [Bob] moved logging to shared storage (will not work for Anrdoid 11 yet ...) 2020-02-16 [Jeroen] Extended addressing and ZE50 test code (aplha!) 2020-02-02 [Jeroen] Removed phases count in advanced charging. Already show in Mains Current Type 2020-01-25 [Jeroen] Switch off CANsee chatter on USB when on master branch 2020-01-24 [Jeroen] CANsee device is selected when name starts (aot equals) CANsee 2020-01-21 [Jeroen] Upgraded crashlytics to 17.2.2 2020-01-21 [Jeroen] Extended addressing and ZE50 test code (aplha!) 2020-01-20 [Jeroen] Several exceptions fixed 2020-01-09 [Jeroen] Do not start Crashlytics in development branches 2020-01-07 [Jeroen] Fix pilot amp formula for ISOTP mode (thanls Oleksiy Protas) 2020-01-05 [Jeroen] New startup setting 2020-01-05 [Bob] Color update in Dash 2020-01-04 [Bob] Added custom fragment wich configuration editor in settings 2020-01-03 [Jeroen] Remove crash(lytics) test code 2020-01-03 [Jeroen] Experiment startup activity 2020-01-03 [Jeroen] Added non-waiting splash screen https://www.bignerdranch.com/blog/splash-screens-the-right-way 2020-01-02 [Jeroen] Removed experiment to avoid on abort crash in Android 8.1. Gave up. 2020-01-01 [Jeroen] Avoid ugly layout in Timeplot when values go below baseline (i.e. comma) 2020-01-01 [Jeroen] Regression: Trying to avoid a NPE in handleDarkMode (getSharedPreferences) 2019-12-27 [Jeroen] Moved TPMS IDs to logical tire position block, auto-read IDs ---< Version 1.51 / 2019.12.28 / 66 >--- 2019-12-27 [Jeroen] TargetSdk to 29 (Android Q) 2019-12-27 [Jeroen] Some code cleanup, added Crashlytics on some non-fatal exceptions, inhibited log.D for master 2019-12-27 [Jeroen] Slowed down Battery activity 2019-12-25 [Jeroen] Force bit 31 on in TPMS ID (www.goingelectric.de/forum/viewtopic.php?p=1150046) 2019-12-24 [Jeroen] Changed speedcontrol to respond to tap anywhere 2019-12-24 [Jeroen] Added Front-Rear swap button to Tires 2019-12-22 [Jeroen] Trying to avoid a NPE in handleDarkMode (getSharedPreferences) 2019-12-21 [Jeroen] Fix what seems a crash at first run (but actually a finish() at a version change 2019-12-21 [Jeroen] Fix a coloring problem in consumption_dash 2019-12-21 [Bob] Avoid a crash in BluetoothManager 2019-12-14 [Jeroen] Button reordering and formatting 2019-12-14 [Jeroen] Added 5 line log to speedcontrol 2019-12-13 [Jeroen] Clarification and code layout. No factual code change 2019-12-13 [Jeroen] Fixed Darkmode not changing when exiting using Home button 2019-12-13 [Jeroen] Improved settings dropdown styling ---< Version 1.50 / 2019.12.13 / 63 >--- 2019-12-12 [Jeroen] Climate control temperature setpoint is back 2019-12-10 [Jeroen] New option save and load two tire sets to storage 2019-12-08 [Jeroen] Corrections in decimal positions in _Fields and _FieldsAlt 2019-12-09 [Jeroen] Bug fix in Research, screen number format and reloading frames (freeing old fields) 2019-12-08 [Jeroen] Recoding of selecting BT device and it's UI 2019-12-08 [Bob] Dark mode startup fix 2019-12-07 [Jeroen] Fix computation of virtual field 610a used in braking screen (non-ISOTP only) 2019-12-07 [Jeroen] Match Self propelled fields behavior to Device queue 2019-12-06 [Jeroen] Bug fix in research to handle String fields 2019-12-06 [Jeroen] Add GPS virtual field ",800,24,24,0,0,0,,210e,610e,aff,GPS". Allow Virtualfields in CSVs 2019-12-06 [Jeroen] Gradle to 3.5.3 2019-12-05 [Jeroen] Added a light mode 2019-12-05 [Jeroen] Avoid NullPointerException when databaseinstance is empty, lint 2019-12-05 [Jeroen] Avoid stack overflow crash 2019-12-03 [Jeroen] Small improvement to Speedcontrol 2019-12-01 [Jeroen] Avoid restart of activity through re-orientation 2019-12-01 [Jeroen] Changed news to json and give user update nudge 2019-12-01 [Jeroen] Changed Gson to 2.8.6 2019-11-27 [Jeroen] Added google's crashlytics, force crash option in debug mode ---< Version 1.49 / 2019.11.30 / 56 >--- 2019-11-27 [Jeroen] Catch spurious error in Timeplot 2019-11-27 [Jeroen] Code fixes and moved "tap bluetooth to reconnect" to work in all activities 2019-11-26 [Jeroen] Nudge ISOTP on for ELM dongles, off for CanSee 2019-11-25 [Jeroen] Updated proguard rules to fix or find a ClassNotFound crash 2019-11-24 [Jeroen] Many fixes in tires, inclusing refactor "tyre" out and position fixes 2019-11-24 [Jeroen] Set up quick release compile using gradlew 2019-11-24 [Jeroen] BT state in all activities and out of title ---< Version 1.48 / 2019.11.18 / 50 >--- 2019-11-24 [Jeroen] Code cleanup in fragment handling 2019-11-24 [Jeroen] Updated .gitignore to exclude some .idea and backup stuff 2019-11-23 [Jeroen] Full refactor of Tyre to Tire 2019-11-23 [Jeroen] Several fixes Tyres, changelog 2019-11-23 [Jeroen] Several Climate activity fixes, TMPS presence in (Alt)Fields 2019-11-23 [Jeroen] Added documentation headers to _Fields csv files 2019-11-23 [Jeroen] Ignore null frames when injecting an array of frames 2019-11-23 [Jeroen] Allow all subcommands for tester present command to ECU 2019-11-23 [Jeroen] Cleaned up case of Messages to always lower (unless error) ---< Version 1.47 / 2019.11.18 / 49 >--- 2019-11-18 [Jeroen] TPMS write alternative approach, thanks Fred 2019-11-18 [Jeroen] Added UK/RU tranlation, thanks @landswellsong, lint 2019-11-17 [Jeroen] Fixed pilot current in ISOTP mode ( mgerZOE issue #584 ) 2019-11-17 [Jeroen] Avoid crash when clearing fields 2019-11-17 [Jeroen] Avoid crash in Color decoding a themed color 2019-11-15 [Jeroen] Fix massive errors when app is unconfigured 2019-11-15 [Jeroen] Don't do free frame testing in ELM testing when in ISOTP mode 2019-11-15 [Jeroen] In isotpOnly mode use insecure and relax andwers 2019-11-12 [Jeroen] Removed all _web icons in main folder except launcher 2019-11-12 [Jeroen] Moved all artwork except aunch icon to drawable 2019-11-11 [Jeroen] Added BCM and USM, csv files 2019-11-09 [Jeroen] Removed location permission from manifest (not used), manifest cleanup 2019-11-09 [Jeroen] Added option in Experimental fragment to only show when not on master 2019-11-09 [Jeroen] Fixed issue #578 Fan speed label ---< Version 1.46 / 2019.11.10 / 48 >--- 2019-11-08 [Jeroen] Several Code and layout cleanups 2019-11-08 [Jeroen] Fix crash in Firmware activity 2019-11-07 [Jeroen] Updated all field CSV's 2019-11-06 [Jeroen] Added Research activity 2019-11-05 [Jeroen] Improved field logging 2019-11-04 [Jeroen] Fixed consistency of ISOTP error msgs 2019-11-04 [Jeroen] Shortened pre-command timeout to see if it improves long tx ISOTP sync errors. 2019-11-04 [Jeroen] Gradle to 3.5.2 2019-11-04 [Jeroen] Removed fields that cannot be fetched by ISOTP only 2019-11-04 [Jeroen] Added ELM conversation logging 2019-11-04 [Jeroen] Fixed problem that forbid writing log files 2019-11-04 [Cedric] Update FR 2019-11-02 [Jeroen] Alternative ISOTP mode to avoid free frames 2019-10-25 [Jeroen] News updated re dark mode released ---< Version 1.45 / 2019.10.25 / 47 >--- 2019-10-25 [Jeroen+Bob] Switch to API level 21 ---< Version 1.44 / 2019.10.24 / 45+46 >--- 2019-10-24 [Jeroen] Added .idea/codeStyles/Project.xml to the repository 2019-10-24 [Jeroen] Added branch name to info in Settings screen 2019-10-21 [Bob] Added "speed control" activity to display average speed 2019-10-22 [Bob] Added "force dark mode" option 2019-10-18 [Bob-Jeroen] Fix for dynamic color selection in widgets 2019-10-18 [Jeroen] Added Build variant to info in Settings screen 2019-10-18 [Bob] Added theme as optional parameter to Color.decode 2019-10-17 [Jeroen] Widget colors use foreground theme color (this is intermediate) 2019-10-17 [Jeroen] Better colors in delta widget and decel (blue) bar 2019-10-10 [Jeroen] Title fix in Battery, color changes to avoid dark blue 2019-10-03 [Jeroen] Widgets adhere to titleColor 2019-10-03 [Jeroen] Gradle to 3.5.1 2019-10-03 [Jeroen] Changed some color literals to resource names in consumption 2019-10-03 [Jeroen] Added run time decoding of color resource names to allow names in widget json config strings 2019-10-02 [Arnout] Changed header log logic 2019-10-02 [Bob] Avoid null exception when clearing fields 2019-09-29 [Jeroen] Reformatted Settings for consistency 2019-09-29 [Jeroen] Corrected icon error for 12 volt battery (+- from white to transparent) 2019-09-29 [Jeroen] Renamed "Bob Due" to "CanSee" 2019-09-29 [Jeroen] Small layout issues 2019-09-29 [Jeroen] Fixed regression on virtualfield dcPower 2019-09-29 [Jeroen] Batches 1-2-3 for dark mode 2019-09-29 [Jeroen] Lint (Code->Analyse) on all canze:actors, canze:adaptors and canze:classes 2019-09-18 [Jeroen] Lint (Code->Analyse) on all canze:activities. 2019-09-18 [Jeroen] Tyres: avoid crash when message is null, fix error message, fix Lint warning ---< Version 1.43 / 2019.09.16 / 44 >--- 2019-09-07 [Jeroen] androidx.appcompat:appcompat to 1.1.0 2019-09-07 [Jeroen] Removed a lint warning for 1/2/3 in strings 2019-09-07 [Jeroen] Fixed an XML problem in UK language file 2019-09-06 [Jeroen] Gradle to 3.5.0 2019-09-06 [Jeroen] Avoid crash in AllDataActivity 2019-08-16 [Jeroen] Experiment to avoid crash on ParcelFileDescriptor.java:175 on Android <= 5 (<23) 2019-08-15 [Cedric] Ammended FR 2019-08-15 [Jeroen] Added "Not OK" in DE/FR/RU/UK 2019-08-15 [Jeroen] Avoided crash in Device 2019-08-11 [Jeroen] Cleaned up translation files 2019-08-11 [Jeroen] Fixed layout glitch github #554 thanks Gerd 2019-08-11 [Jeroen] Fixed translation error github #554 thanks Gerd ---< Version 1.42 / 2019.08.06 / 43 >--- 2019-08-04 [Jeroen] Removed ES as announced, removed message from NEWS 2019-07-15 [Jeroen] Avoid NullPointerException in DTC 2019-07-15 [Jeroen] Avoid NullPointerException in TyresActivity 2019-07-12 [Jeroen] IDE and Gradle upgraded to 3.4.2 2019-07-12 [Jeroen] Fixed a crash passing null to debug ---< Version 1.41 / 2019.06.30 / 42 >--- 2019-06-30 [Jeroen] Removed FLukan - Twizy references 2019-06-22 [Jeroen] Fixed swapped Read Write buttons, added message about driving. Fixed error msg when message.isError. 2019-06-20 [Oleksiy] Added Russian and Ukranian 2019-06-19 [Jeroen] Added Overinflated message 2019-06-4 [Jeroen] Another attempt to avoid crash in Toast ---< Version 1.40 / 2019.05.13 / 41 >--- 2019-05-19 [Jeroen] Undo Avoid creating a (Main)activity instance 2019-05-19 [Jeroen] Gradle to 3.4.1 2019-03-30 [Jeroen] Removed minified/proguard ---< Version 1.39 / 2019.05.13 / 40 >--- 2019-03-26 [Jeroen] Unified yellow bar font settings 2019-03-26 [Jeroen] News bar now acceppts html tags 2019-03-26 [Jeroen] Expanded experiment to avoid on abort crash in Android 8.1 to widgets 2019-05-20 [Jeroen] Catch parseint exception on a malformed frame 2019-05-19 [Jeroen] Avoid creating a (Main)activity instance (ouch) 2019-05-19 [Jeroen] Check if log files are writeable 2019-05-19 [Jeroen] Gradle to 3.4.0 ---< Version 1.38 / 2019.05.13 / 39 >--- 2019-04-21 [Jeroen] Removed now unused translation entries to avoid lint errors 2019-04-21 [Jeroen] Enabled minification (R8), for the moment also in debug build variant, with limited name obfuscation 2019-04-20 [Jeroen] Removed toasts and added Spinner to all data. Moved all spinner changes to the UI thread 2019-04-19 [Jeroen] Replaced toast when loading settings with Spinner 2019-04-19 [Jeroen] Moved Settings button to three-dot menu 2019-04-19 [Jeroen] Changed Settings and CanSee settings UI to conform to convention (but kept Cancel, now in three-dots) 2019-04-19 [Jeroen] Added Android home ("back") button to CanzeActivities 2019-04-17 [Jeroen] Extra check for non null CanzeDatasource instance 2019-04-17 [Jeroen] 2nd experiment to avoid NullPointerException crash in Toast 2019-04-17 [Jeroen] let it crash on the caller of CanzeDataSource.getInstance to see the call stack 2019-04-17 [Jeroen] Avoid nullpointerException in BluetoothManager.write 2019-04-17 [Jeroen] Gradle to 3.4.0 2019-04-16 [Jeroen] Avoid NullPointerException crash in Timeplot 2019-04-16 [Jeroen] androidx.legacy:legacy-support-v4 1.0.0-beta01 -> 1.0.0 2019-04-16 [Jeroen] Removed GSON source and replaced with gradle implementation ---< Version 1.37 / 2019.04.15 / 38 >--- 2019-03-14 [Jeroen] Avoid NullPointerException crash in SettingsActivity.fillDeviceList 2019-03-13 [Jeroen] Cleanup of toasts (logic, inheritance, use resources, avoid if not needed) 2019-03-08 [Jeroen] Experiment to avoid crash in Android 8.1 in EditText, see manifest for details 2019-03-05 [Jeroen] Avoid crash device being null in Tyres buttonread/write 2019-04-07 [Jeroen] Avoid $BadTokenException crash in Toast on Android 7.1 (SDK 25) 2019-04-05 [Bob] Added possibility to install on external storage ---< Version 1.36 / 2019.04.04 / 37 >--- 2019-04-04 [Bob] Wrong reference while fixing a bug ... grrr ---< Version 1.35 / 2019.04.04 / 36 >--- 2019-04-04 [Bob] Update in Consumption, dash version 2019-04-04 [Jeroen] Experiment to avoid ANR in CanzeActivity.onResume 2019-04-04 [Jeroen] Experiment to avoid IllegalThreadStateException crash in BluetoothManager 2019-04-04 [Jeroen] Experiment to avoid NullPointerException crash in Toast 2019-04-03 [Cedric] Updated fr language 2019-03-31 [Jeroen] Avoid crashes on unexpected strings from ELM 2019-03-31 [Jeroen] Avoid SQLException crash 2019-03-31 [Jeroen] Removed logic to have the device do frame filtering 2019-03-31 [Jeroen] Implemented INTERVAL_ONCE for ECU initialization command 2019-03-19 [Jeroen] Avoid NullPointerException crash in Plotter 2019-03-19 [Jeroen] Avoid IndexOutOfBounds crash in Timeplot 2019-03-16 [Jeroen] Added All Data 2019-03-16 [Jeroen] Fixed Range Activity 2019-03-16 [Jeroen] Removed Tests Bob 2019-03-16 [Jeroen] Moved BCB to chargingtech 2019-03-16 [Jeroen] Avoid crash in Driving when entering nonsensical data 2019-03-15 [Jeroen] Removed all unused resources 2019-03-15 [Jeroen] Removed sl language 2019-03-15 [Jeroen] Avoid crash when BT device name is not in the pref file. ---< Version 1.34 / 2019.03.12 >--- 2019-03-11 [Jeroen] Avoid crash when Bluetooth access is denied 2019-03-07 [Jeroen] Avoid crash on outOfBounds in Plotter.setValue 2019-03-05 [Jeroen] Avoid crash on displaying Tyrevalve IDs 2019-03-05 [Jeroen] Avoid crash on outOfBounds in Fields.get. Formatting cleanup. 2019-03-05 [Jeroen] Avoid crash on null getWindowManager. Formatting cleanup. 2019-03-05 [Jeroen] Update news, update gradle plugin. WIP FieldsAlt ---< Version 1.33 / 2019.03.05 >--- 2019-03-03 [Jeroen] #526 fix and spelling. 2019-02-26 [Jeroen] Moved charging history to technical, added icon 2019-02-25 [Jeroen] Added serial number to Battery screen 2019-02-24 [Jeroen] Avoid nullPointerExceptions and ClassCastExceptions 2019-02-24 [Jeroen] Avoid crash in CanzeActivity when reconnecting 2019-02-24 [Jeroen] Avoid ANR when reading/writing Tyre IDs 2019-02-23 [Jeroen] Avoid ANR / black screen when Bluetooth needs to reconnect (in previous commit) 2019-02-23 [Jeroen] Fixed null pointer exceptions in displayNews. Minor layout fix for news ---< Version 1.32 / 2019.02.23 >--- 2019-02-20 [Jeroen] Added counters and total kWh to Charging history #531 2019-02-20 [Jeroen] Added soh to Battery and Prediction 2019-02-20 [Jeroen] Fixed bugs in Battery class 2019-02-19 [Jeroen] Deleted Dutch (put in news bar) 2019-02-19 [Jeroen] Icon cleanup to a somewhat more consistent style 2019-02-19 [Jeroen] Deleted Dutch 2019-02-18 [Jeroen] Fixed clipping bug #530 2019-02-18 [Jeroen] Minor bug fixes and wording ---< Version 1.31 / 2019.02.18 >--- 2019-02-16 [Jeroen] Fixed error in BCB (uppercase hex :-( ) and inject Testerpresent-Awake 2019-02-16 [Jeroen] Moved leak to tech, code and layout cleanup 2019-02-16 [Jeroen] Implemented real time news 2019-02-16 [Jeroen] Fixed issue with consumption in miles mode #520 2019-02-16 [Bob] Added back reset from virtual field delta, added new delta field with no reset 2019-02-16 [Jeroen] Avoid negative trip numbers 2019-02-15 [Bob] Removed reset from virtual field delta 2019-02-15 [Bob] Trying to reduce stores points in TimePlot (with CanSee data flow is much stronger!!) ---< Version 1.30 / 2019-02.10 >--- 2019-02-10 [Jeroen] Trip consumption added #513 2019-02-10 [Jeroen] Several changes to wording, thanks AlbinoZoe #455 2019-02-03 [Jeroen] Added PTC relays in clima #521 2019-02-03 [Jeroen] Rewording #523 2019-02-03 [Jeroen] re-added parking brake status (regression on ELM testing) #526 2019-02-03 [Jeroen] Fixed values for unavailable charging power 2019-02-03 [Jeroen] Optimized initConnection in relation to new injects 2019-02-03 [Jeroen] Added better ZE40 formula to prediction 2019-02-03 [Jeroen] Added R110 alias 2019-02-03 [Jeroen] Fixed wording in conditioning status #522 2019-01-29 [Bob] New inject methods 2019-01-29 [Jeroen] Added 12v pulsbox values 2019-02-07 [Bob] Fixed some crashes indicated by the store 2019-02-07 [Bob] Trying to reduce the entries in the DB (with CanSee data flow is much stronger!!) 2019-02-10 [Bob] Differenciate font size in Timeplot for landscape/portrait mode ---< Version 1.29 / 2019.01.27 >--- 2019-01-26 [Jeroen] Clima RPM replaced for Watt 2019-01-23 [Bob] Dash device screen for consumption added 2019-01-18 [Jeroen] Implemented multi frame outgoing ISO-TP messages, fixes in ELM code 2019-01-18 [Jeroen] Improvments in DTC dump. BCB now works 2019-01-18 [Jeroen] Removed ConsumptionOld 2019-01-18 [Jeroen] Slowed down Charging history queries 2019-01-17 [Jeroen] Better miles display, fixed miles problem in virtual fields 2019-01-16 [Jeroen] Prepared code and CSVs for ISO-TP only option 2019-01-13 [Jeroen] Removed all ECU classes and replaced by external CSVs 2019-01-13 [Jeroen] Fixed minor errors in charging screens 2019-01-12 [Jeroen] Slowed down temperature queries 2019-01-08 [Bob] Added setttings for CanSee dongle (hidden) 2019-01-05 [Jeroen] Cleanup BobDue code for CanSee dongle, added integrity checks 2019-01-04 [Jeroen] Several internal settings (Android Studio, Gradle, .gitignore) ---< Version 1.28 / 2018.05.08 >--- 2018-03-24 [Jeroen] Added 12 volt battery replacement advice to activity_auxbat 2018-03-24 [Jeroen] Added 1 volt battery replacement advice to activity_auxbat 2018-01-18 [Jeroen] Re-enabled Energy consumed on request ---< Version 1.27 / 2018.01.11 >--- 2018-01-07 [Jeroen] Fixed small issue for dongle emulator 2018-01-07 [Jeroen] Fixed issue with DTC of the TCU 2017-12-22 [Bob] Fixed nullpointer exception 2017-12-22 [Bob] Fixed midpoint in instant consumption 2017-12-17 [Jeroen] Fixed runtime crash by adding bounds checking in several message loopkups 2017-12-17 [Bob, Jeroen] Internal settings after upgrade Android Studio, removed new compile errors ---< Version 1.26 / 2017.12.17 >--- 2017.12.12 [Jeroen] Finalized new consumpion, added alpha color, some plot debugging code 2017.11.26 [Jeroen] Added NewConsumption branch 2017.11.08 [Jeroen] Fixed spurious error in MainActivity (null pointer in setBluetoothState) 2017.11.08 [Jeroen] Added aux battery 2017.10.22 [Jeroen] Fixed bug calculating energy until full issue #470 2017.10.05 [Jeroen] Fixed loading fields bug in EcuDiagBcb 2017.12.10 [Bob] Fixed the triangle timeplot issue #310 ---< Version 1.25 / 2017.06.02 >--- 2017.03.06 [Bob] Enabled Twizy. More to come soon ... 2017.03.07 [Bob] Prepared new logging feature (NLF) 2017.03.07 [Bob] Fixed #452: Charts: Color of description the same as color of line 2017.03.08 [Bob] Fixed #451: x-axis of charts going back and forth during logging 2017.03.16 [Bob] NLF: save/load/modify list of fields to log 2017.03.17 [Bob] NLF: make listing nicer ---< Version 1.24 / 2017.02.21 >--- 2017.02.21 [Bob] Hotfix for issue #441 2017.02.21 [Bob] Trying to fix #310 ---< Version 1.23 / 2017.02.19 >--- 2017.02.16 [Bob] Repair poller restart for HTTP based device 2017.02.16 [Bob] Fixed some imprecisions in widget Timeplot 2017.02.16 [Bob] Added option colorline[x] for widget Timeplot ---< Version 1.22 / 2017.02.12 >--- 2017.02.12 [Jeroen] Added total energy to ChargingTech #430 2017.02.12 [Bob] Spanish language file added, many thanks to the contributors 2017.02.11 [Jeroen] Improved code to get DTC's 2017.02.11 [Jeroen] Added TCU to the DTC reporting 2017.02.11 [Jeroen] Changed http interface to use RequestID instead of ResponseID 2017.02.09 [Jeroen] Added compressor RPM graph (0-4000) in climatech 2017.02.09 [Jeroen] Fixed Y axis on ChargingGraphs for model 90s 2017.02.06 [Jeroen] Fixed formatting problem in ChargingTech 2017.02.05 [Jeroen] Code fixup on getting strings from language packs 2017.02.05 [Jeroen] Added debug lines to all running screens 2017.02.05 [Jeroen] Lots of code and layout cleanup 2017.02.03 [Jeroen] Allow operation without BT adapter so runs on emulator 2017.02.02 [Jeroen] Fixed ELM test 2017.02.02 [Jeroen] Fixed ELM test #427 2017.02.02 [Bob] Merged German with file received from Roland Klose 2017.02.02 [Jeroen] Compressor power dissed, replaced with RPM. 2017.02.02 [Jeroen] Hotfix on master: log level #417 2017.02.02 [Jeroen] Added German (Thank you Stefan!) 2017.02.01 [Jeroen] Climatech, climate replaced power by a graph 2017.01.31 [Jeroen] Added Slovenian (Thank you Zdenko!) 2017.01.27 [Jeroen] Climatech, Power as extra field ---< Version 1.21 / 2017.01.29 >---2017.01.29 [Bob] Fixing issue: V1.20 crashes #407 2017.01.29 [Bob] Fixing issue: V1.20 crashes #407 ---< Version 1.20 / 2017.01.28 >--- 2017.01.28 [Bob] Forgot to pull before compiling!!! 2017.01.28 [Bob] Added missing FR strings ---< Version 1.19 / 2017.01.28 >--- 2017.01.20 [Jeroen] Sped up / simplified selecting next frame by using .min instead of .sort in the queues 2017.01.14 [Jeroen] Implemented DebugListener so Device can send debug lines to Activity without Toasts 2017.01.14 [Jeroen] Reduced device resets (one retry without reset) 2017.01.14 [Jeroen] Fixed graph title in clima to resources 2017.01.14 [Jeroen] Added debugging to ELM327http to find hangup 2017.01.13 [Jeroen] More code cleanup and String separation 2017.01.08 [Bob] Fixed a zoomin problem 2017.01.08 [Bob] Fixed a crash of the charging screen 2017.01.08 [Bob] Fixed a crash of the climate screen 2017.01.07 [Jeroen] Separated all strings, Dutch translation as example. Minor fixes 2017.01.07 [Jeroen] Changed initListeners to be abstract, removed repeated code for addListeners and fiels subscription management. Still bug in zoom one widget 2017.01.07 [Bob] Fixed timeplotter x-axis label problem (second try) 2017.01.06 [Bob] Fixed a wrong event for Settings.deviceList 2017.01.05 [Jeroen] Settings changed so the last http address is retained after choosing BT device 2017.01.04 [Bob] Fixed timeplotter x-axis label problem 2017.01.04 [Jeroen] Improved temp/balances part in chargingtech, removed possible charging pwr from climatech 2017.01.04 [Jeroen] Cleanup of Lint (almost everywhere, not complete) 2017.01.03 [Jeroen] Modified gateway settings to enable on "HTTP" instead of >4th device and a bit of cleanup 2017.01.03 [Jeroen] Fixed layouts and string resources in Firmware, Consumption, Driving, DTC, ELMtest 2017.01.02 [Bob] Modified settings to add configurable address if HTTP selected 2016.12.31 [Jeroen] Better formatting in charging and chargingtech 2016.12.30 [Bob] Added stoppable thread for DTC reading 2016.12.30 [Bob] Removed min & max values from Plotter widget #381 2016.12.30 [Jeroen] Updated layouts braking, charging, driving, firmware, prediction, tyres 2016.12.30 [Jeroen] Minor changes in Main and Battery layouts 2016.12.30 [Jeroen] Climatech moved to technical section, better layout (use filler) 2016.12.30 [Jeroen] ClimaTech added ClimaLoopMode, moved batt temp to graph 2016.12.29 [Jeroen] Alernative DTC code display 2016.12.29 [Jeroen] ELM327 fixed flush hanging if ELM327 babbling 2016.12.29 [Jeroen] ELM327Http better error messages 2016.12.25 [Jeroen] Backported a few changes in the ELM driver from gateway to CanZE 2016.12.24 [Jeroen] Added Dtc Test class and initialisation code, completed display of DTCs 2016.12.24 [Jeroen] Started implementing DTC messages per EcuDiagXXX 2016.12.24 [Jeroen] Activated and debugged string fields, and loaded proper options in EcuDiagCLIM 2016.12.24 [Jeroen] Moved onMessageCompleteEvent to class Message and removed MessageListener 2016.12.23 [Jeroen] Fixed compile time-date in settings, issue #370 2016.12.23 [Jeroen] Populated dynamic classed for UBP 2016.12.22 [Jeroen] Populated dynamic classed for EPS and PEB 2016.12.22 [Jeroen] Populated dynamic classed for CLUSTER (instrument panel, oops in French) 2016.12.22 [Jeroen] Fixed a few minor bugs in ChargingTech 2016.12.22 [Jeroen] Added isZOE and isFLuKan for easier programming and better readability 2016.12.22 [Jeroen] Populated dynamic classed for EVC and BCB/JB2 2016.12.21 [Jeroen] Class EcuDiag added dumping results to file 2016.12.20 [Jeroen] Changed DtcActivity to Dynamic Class loading for definitions 2016.12.20 [Jeroen] Populated dynamic classed for CLIM and LBC 2016.12.20 [Jeroen] Added unit to numerical Diagnose values 2016.12.19 [Jeroen] Added Range to manifest (crashed CanZE) 2016.12.18 [Jeroen] Class Chargingtech removed Ah, added balancing switches 2016.12.18 [Jeroen] Class Mainactivity crash after clearing data (deviceName null) 2016.12.18 [Jeroen] Put dummy gateway server online 2016.12.18 [Jeroen] Class ELM327Http added 2016.12.18 [Jeroen] Class Settingsactivity ELM327Http and Http added 2016.12.14 [Jeroen] Class BluetoothManager implemented dummyMode 2016.12.04 [Jeroen] Class Mainactivity registerApplicationFields() changed to public. Avoid null exception when speed field is not available, loadsettings sets BT dummyMode 2016.12.04 [Jeroen] Class Frames structure for initialization now identical to Fields (subframes) 2016.12.04 [Jeroen] Added EcuDiagLBC with a small init string 2016.11.29 [Jeroen] Class (Virtual)Field and Fields: added decent String and List support 2016.11.29 [Jeroen] DtcActivity: added doDiag and corresponding button in activity 2016.11.29 [Jeroen] Class Ecu: added dtcs and frames and possibily for dynamic loading. Probably unneeded 2016.11.29 [Jeroen] Class Field: added getFrame, optional name and optional list. Offset to int 2016.11.29 [Jeroen] Class VirtualField: match with Field 2016.11.29 [Jeroen] Class Frame: added fields, addField and getAllFields to optimize Fields.onMessageCompleteEvent 2016.11.29 [Jeroen] Class Device: minor reformatting 2016.12.18 [Jeroen] Changed overall logic that frames and messages are bound to a device, not fields 2016.11.29 [Jeroen] Class Fields: optimized Fields.onMessageCompleteEvent massively. Added fillDynamic, overloaded load() get options field back in line and update mains spreadsheet to that and cars Removed all 0x from codes 2016.10.23 [Jeroen] Ensure frames are reloaded before fields ---< Version 1.18 / 2016.11.08 >--- 2016.11.08 [Bob] Fixed a bug leading to non displaying some values ---< Version 1.17 / 2016.10.31 >--- 2016.10.23 [Bob] Made widgets ready for different cars 2016.10.23 [Bob] Application crashed for any selection of ZOE R240, ZOE Q90 and ZOE R90 2016.10.23 [Jeroen] Split ZOE into ZOE Q210, ZOE R240, ZOE Q90 and ZOE R90 for battery prediction ---< Version 1.16 / 2016.10.19 >--- 2016.10.11 [Jeroen] Refined length of prediction interval 2016.08.24 [Jeroen] Split ZOE into ZOE Q210 and ZOE R240 for battery prediction ---< Version 1.15 / 2016.08.10 >--- 2016.07.28 [Bob] Fixed a scaling error in Plotter & BarGraph widgets 2016.07.12 [Jeroen] updated Zoé to ZOE (official Renault verbiage) 2016.07.12 [Jeroen] major update in prediction logic ---< Version 1.14 / 2016.06.13 >--- 2016.06.16 [Jeroen] fixed many bugs in prediction and battery, moved to Tech section 2016.06.16 [Jeroen] fixed bug in HV kilomters 2016.05.16 [Bob] added forward mode to graphs ---< Version 1.13 / 2016.05.15 >--- 2016.05.14 [Jeroen] Added 8 bits to HV kilometers (bringing it in line with car kms), attempted fix issue #337 2016.04.18 [Jeroen] Added (untested) code to get battery data into the prediction plotter 2016.04.18 [Jeroen] Small improvements to the Battery model 2016.04.18 [Bob] Trying to fix issue #310 2016.04.18 [Bob] The plotter on the Battery screen has been fixed ---< Version 1.12 / 2016.04.11 >--- 2016.04.06 [Bob] Trying to resolve a NullPointerException ereported by Google Dev Console 2016.03.31 [Bob] Modified Prediction fragement to work with Timeplot instead of plotter 2016.03.13 [Bob] Added timestamp to field logger 2016.03.06 [Bob] Battery screen: uncommented SOH field, modified scale for voltage (issue #329) 2016.03.04 [Jeroen] Improved description of SOC fields. Improved Class Battery to use int of temperature 2016.03.02 [Jeroen] Added two 14V system fields to the Charge Tech. Trying to figure current 2016.02.28 [Jeroen] Added Battery model to the prediction fragment with some fixed values 2016.02.26 [Jeroen] Added Battery model 2016.02.22 [Bob] Added Prediction fragement with demo code on how to use the plotter without any field 2016.02.19 [ChrisMa] GPS Tracker class added and GPSTestActivity (still experimental) 2016.02.16 [Jeroen] Miles rounding ---< Version 1.11 / 2016.02.15 >--- 2016.02.15 [Jeroen] Simplified virtual field initialisation, check for dependant field existence (issue #318) 2016.02.15 [Jeroen] Added a few temperature testing fields to techclima (research #316) 2016.02.14 [ChrisMa] DataLogger Output fixed: empty NL removed, date corrected 2016.02.14 [ChrisMa] DataLogger-Activation moved to loadSettings in MainActivity ---< Version 1.10 / 2016.02.14 >--- 2016.02.11 [Jeroen] Added battery KM to CahrgingTech (request Harm) 2016.02.10 [Jeroen] Added clima/battery parameters in Playground JM 2016.02.08 [Jeroen] Made firmware screen scrollable, issue #311 2016.01.27 [Jeroen] Squeezed fields init string 2016.01.26 [Jeroen] Brighten progress bar colors to make numericals readable 2016.01.26 [Jeroen] Bug fix in numerical torque display 2016.01.25 [Jeroen] Enlarged numerical vales in consumption screen (top bars) 2016.01.25 [Jeroen] Changed consumption scale from 5-25 to 0 - 40 2016.01.25 [Jeroen] Fixed non display of positive torque in consumption (untested) 2016.01.24 [Bob] tried to put back the label in the top bars of the consumption screen 2016.01.24 [Jeroen] Changed car to bit-map in fields. 2016.01.24 [Jeroen] Changed immediate consumption graph to a Low pass filtered value in a much more limited range. A bit experimental. 2016.01.24 [Jeroen] Added 12V in charging, which is not functioning well for the Zoe, needs more debugging 2016.01.12 [Chris] DataExport Mode re-activated 2016.01.10 [Jeroen] Optimized field lookup a bit 2016.01.10 [Bob] field logging: simple field logging 2016.01.10 [Bob] data logging: no more empty file creation on application start 2016.01.07 [Jeroen] added minim distance 20 pixels for move trigger in WidgetView 2016.01.06 [Jeroen] Optimized field/fields, added sign bit 2016.01.06 [Bob] consumption screen: small color update 2015.12.29 [Jeroen] Charging graphs, added second axis in first graph ---< Version 1.09 / 2015.12.29 >--- 2015.12.29 [Jeroen] Forgot to commit the new icon set 2015.12.29 [Jeroen] promoted charging graphs to Technical, added icon 2015.12.29 [Bob] consumption screen: graphical improvement 2015.12.29 [Bob] consumption screen: label optimization 2015.12.28 [Bob] consumption screen: scaling optimisations 2015.12.28 [Bob] consumption screen: added instant consumption as bar 2015.12.28 [Jeroen] split SOC in User and Real 2015.12.28 [Jeroen] Fixed misleading label for torque bar 2015.12.28 [Jeroen] Changed Zoe reference firmware versions 2015.12.28 [Bob] consumption screen: re-configuration 2015.12.28 [Bob] consumption screen: configured top timeplot 2015.12.26 [Bob] consumption screen: added motor wheel torque bar & graph 2015.12.23 [Bob] CanzeActivity: peparations for commun field management 2015.12.23 [Bob] virtual field listeners where not unregistering as they should 2015.12.23 [Bob] CanzeActivity: removed some commented old code 2015.12.23 [Jeroen] Fixed TPM pressure unavailable bug, slowed down query 2015.12.23 [Jeroen] Slowed down query for FluenceKangooTemps 2015.12.23 [Bob] trying to fix issue #262 2015.12.22 [Bob] modified "temperature" screen to "screen tests" 2015.12.22 [Jeroen] Added Aim bar in braking screen 2015.12.22 [Jeroen] Added charging graphs in Experimental 2015.12.22 [Jeroen] Added virtual field DC power and updated Charging accordingly 2015.12.22 [Bob] settings: spelling errors (#262) 2015.12.22 [Bob] widgets: added feature "timeScale" for timed plots 2015.12.22 [Bob] consumption screen: removed kWh/100km from bottom graph on second Y-axe 2015.12.22 [Bob] consumption screen: added kWh/100km to bottom graph on second Y-axe 2015.12.22 [Bob] widgets: modified timeplot to support second Y-axe 2015.12.21 [Bob] consumption screen: modified kWh/100km 2015.12.21 [Bob] widgets: modified bar (move around zero & gradient support) 2015.12.21 [Bob] consumption screen: fixed another gradient bug 2015.12.20 [Bob] consumption screen: fixed interval error & gradient bug (crashed in some cases) 2015.12.20 [Jeroen] changed virtualfields to one ECU and responseID as selector 2015.12.20 [Bob] consumption screen: color and interval update 2015.12.19 [Bob] consumption screen: moved SoC (for testing) to lower graph 2015.12.19 [Bob] consumption screen: fixed gradient for speed 2015.12.19 [Bob] optimisation in gradient area graph 2015.12.19 [Jeroen] added new virtualFields 801 (FrictionTorque) and 802 (FrictionPower) 2015.12.19 [Jeroen] all text screens: major code cleanup on the onXxxx code 2015.12.19 [Bob] fixed issue #262: Formal Disclaimer answers not fully visible on phone for o.a. Safe Driving Mode setting 2015.12.19 [Bob] fixed issue #271: In battery screen no cell voltages are displayed 2015.12.14 [Bob] screen consumption: gradient are graph for instant consumption ---< Version 1.08 / 2015.12.13 >--- ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/Activity.java ================================================ package lu.fisch.canze.classes; import lu.fisch.canze.activities.MainActivity; public class Activity { private Class classOf; private int drawable; private String title; private int id; /*public Activity(String title, int drawable, Class classOf) { this.classOf = classOf; this.drawable = drawable; this.title = title; }*/ public Activity(int id, int titleId, int drawable, Class classOf) { this.classOf = classOf; this.drawable = drawable; this.title = MainActivity.getStringSingle(titleId).toUpperCase(); this.id = id; } public Class getClassOf() { return classOf; } public int getDrawable() { return drawable; } public String getTitle() { return title; } public int getId() { return id; } @Override public String toString() { return title; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/ActivityRegistry.java ================================================ package lu.fisch.canze.classes; import android.content.SharedPreferences; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; import lu.fisch.canze.R; import lu.fisch.canze.activities.AllDataActivity; import lu.fisch.canze.activities.AuxBattTechActivity; import lu.fisch.canze.activities.BatteryActivity; import lu.fisch.canze.activities.BrakingActivity; import lu.fisch.canze.activities.ChargingActivity; import lu.fisch.canze.activities.ChargingGraphActivity; import lu.fisch.canze.activities.ChargingHistActivity; import lu.fisch.canze.activities.ChargingTechActivity; import lu.fisch.canze.activities.ClimaTechActivity; import lu.fisch.canze.activities.ConsumptionActivity; import lu.fisch.canze.activities.DashActivity; import lu.fisch.canze.activities.DrivingActivity; import lu.fisch.canze.activities.DtcActivity; import lu.fisch.canze.activities.ElmTestActivity; import lu.fisch.canze.activities.FieldTestActivity; import lu.fisch.canze.activities.FirmwareActivity; import lu.fisch.canze.activities.HeatmapBatcompActivity; import lu.fisch.canze.activities.HeatmapCellvoltageActivity; import lu.fisch.canze.activities.LeakCurrentsActivity; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.activities.PredictionActivity; import lu.fisch.canze.activities.RangeActivity; import lu.fisch.canze.activities.ResearchActivity; import lu.fisch.canze.activities.SpeedcontrolActivity; import lu.fisch.canze.activities.TiresActivity; import lu.fisch.canze.fragments.CustomFragment; public class ActivityRegistry { private ArrayList activities = new ArrayList<>(); private ArrayList selected = new ArrayList<>(); private static ActivityRegistry registry = null; public static final int ACTIVITY_CONSUMPTION = 0; public static final int ACTIVITY_CHARGING = 1; public static final int ACTIVITY_BATTERY = 2; public static final int ACTIVITY_DRIVING = 3; public static final int ACTIVITY_CLIMATE = 4; public static final int ACTIVITY_BRAKING = 5; public static final int ACTIVITY_AVERAGE_SPEED = 6; public static final int ACTIVITY_CHARGING_TECH = 7; public static final int ACTIVITY_DTC_READOUT = 8; public static final int ACTIVITY_CHARGING_GRAPHS = 9; public static final int ACTIVITY_FIRMWARE = 10; public static final int ACTIVITY_CHARGING_PREDICTION = 11; public static final int ACTIVITY_ELM_TESTING = 12; public static final int ACTIVITY_CHARGING_HISTORY = 13; public static final int ACTIVITY_12_VOLT_BATT = 14; public static final int ACTIVITY_LEAK_CURRENTS = 15; public static final int ACTIVITY_TIRES = 16; public static final int ACTIVITY_VOLTAGE_HEATMAP = 17; public static final int ACTIVITY_TEMPERATURE_HEATMAP = 18; public static final int ACTIVITY_RANGE = 19; public static final int ACTIVITY_ALL_DATA = 20; public static final int ACTIVITY_DASH = 21; public static final int ACTIVITY_RESEARCH = 22; public static final int ACTIVITY_FIELD_TEST = 23; public static final int[] ACTIVITIES_MAIN = { ACTIVITY_CONSUMPTION, ACTIVITY_CHARGING, ACTIVITY_BATTERY, ACTIVITY_DRIVING, ACTIVITY_CLIMATE, ACTIVITY_BRAKING, ACTIVITY_AVERAGE_SPEED }; public static final int[] ACTIVITIES_TECHNICAL = { ACTIVITY_CHARGING_TECH, ACTIVITY_DTC_READOUT, ACTIVITY_CHARGING_GRAPHS, ACTIVITY_FIRMWARE, ACTIVITY_CHARGING_PREDICTION, ACTIVITY_ELM_TESTING, ACTIVITY_CHARGING_HISTORY, ACTIVITY_12_VOLT_BATT, ACTIVITY_LEAK_CURRENTS, ACTIVITY_TIRES, ACTIVITY_VOLTAGE_HEATMAP, ACTIVITY_TEMPERATURE_HEATMAP, ACTIVITY_RANGE, ACTIVITY_ALL_DATA }; public static final int[] ACTIVITIES_EXPERIMENTAL = { ACTIVITY_DASH, ACTIVITY_RESEARCH, ACTIVITY_FIELD_TEST }; public void loadSelection() { selected.clear(); // avoid crash on context problem if (MainActivity.getInstance().getBaseContext() == null) return; SharedPreferences settings = MainActivity.getInstance().getSharedPreferences(MainActivity.PREFERENCES_FILE, 0); //SharedPreferences.Editor editor = settings.edit(); for(int i = 0; i< CustomFragment.BUTTONCOUNT; i++) { int act = settings.getInt("buttonC"+i,-1); if(act!=-1) { selected.add(activities.get(act)); } } } private ActivityRegistry() { /*// main activities.add(new Activity("CONSUMPTION", @drawable/button_consumption",ConsumptionActivity.class)); activities.add(new Activity("CHARGING","@drawable/button_charge",ChargingActivity.class)); activities.add(new Activity("BATTERY","@drawable/button_battery",BatteryActivity.class)); activities.add(new Activity("DRIVING","@drawable/button_drive",DrivingActivity.class)); activities.add(new Activity("CLIMATE","@drawable/button_climate",ClimaTechActivity.class)); activities.add(new Activity("BRAKING","@drawable/button_brake",BrakingActivity.class)); activities.add(new Activity("AVG SPEED","@drawable/button_speedcam",SpeedcontrolActivity.class)); // technical activities.add(new Activity("CHARGING TECH","@drawable/button_charge", ChargingTechActivity.class)); activities.add(new Activity("CHARGING GRAPHS","@drawable/button_charging_graphs", ChargingGraphActivity.class)); activities.add(new Activity("CHARGING PREDICTION","@drawable/button_prediction", PredictionActivity.class)); activities.add(new Activity("CHARGING HISTORY","@drawable/button_charginghist", ChargingHistActivity.class)); activities.add(new Activity("LEAK CURRENTS","@drawable/button_leak", LeakCurrentsActivity.class)); activities.add(new Activity("VOLTAGE HEATMAP","@drawable/button_lightning", HeatmapCellvoltageActivity.class)); activities.add(new Activity("RANGE","@drawable/button_range", RangeActivity.class)); activities.add(new Activity("DTC READOUT","@drawable/button_attention", DtcActivity.class)); activities.add(new Activity("FIRMWARE","@drawable/button_firmware", FirmwareActivity.class)); activities.add(new Activity("ELM TESTING","@drawable/button_elm327", ElmTestActivity.class)); activities.add(new Activity("12 VOLT BATT","@drawable/button_auxbat", AuxBattTechActivity.class)); activities.add(new Activity("TIRES","@drawable/button_tire", TiresActivity.class)); activities.add(new Activity("TEMPERATURE HEATMAP","@drawable/button_batterytemp", HeatmapBatcompActivity.class)); activities.add(new Activity("ALL DATA","@drawable/button_alldata", AllDataActivity.class)); // experimental activities.add(new Activity("DASH","@drawable/button_dash", DashActivity.class)); activities.add(new Activity("RESEARCH","@drawable/button_microscope", ResearchActivity.class)); activities.add(new Activity("FIELD TEST","@drawable/button_test", FieldTestActivity.class));*/ // main activities.add(new Activity(ACTIVITY_CONSUMPTION, R.string.button_Consumption, R.drawable.button_consumption, ConsumptionActivity.class)); activities.add(new Activity(ACTIVITY_CHARGING, R.string.button_Charging, R.drawable.button_charge, ChargingActivity.class)); activities.add(new Activity(ACTIVITY_BATTERY, R.string.button_Battery, R.drawable.button_battery, BatteryActivity.class)); activities.add(new Activity(ACTIVITY_DRIVING, R.string.button_Driving, R.drawable.button_drive, DrivingActivity.class)); activities.add(new Activity(ACTIVITY_CLIMATE, R.string.button_Climate, R.drawable.button_climate, ClimaTechActivity.class)); activities.add(new Activity(ACTIVITY_BRAKING, R.string.button_Braking, R.drawable.button_brake, BrakingActivity.class)); activities.add(new Activity(ACTIVITY_AVERAGE_SPEED, R.string.button_speedcontrol, R.drawable.button_speedcam, SpeedcontrolActivity.class)); // technical activities.add(new Activity(ACTIVITY_CHARGING_TECH, R.string.button_ChargingTech, R.drawable.button_charge, ChargingTechActivity.class)); activities.add(new Activity(ACTIVITY_DTC_READOUT, R.string.button_DtcReadout, R.drawable.button_attention, DtcActivity.class)); activities.add(new Activity(ACTIVITY_CHARGING_GRAPHS, R.string.button_ChargingGraphs, R.drawable.button_charging_graphs, ChargingGraphActivity.class)); activities.add(new Activity(ACTIVITY_FIRMWARE, R.string.button_Firmware, R.drawable.button_firmware, FirmwareActivity.class)); activities.add(new Activity(ACTIVITY_CHARGING_PREDICTION, R.string.button_ChargingPrediction, R.drawable.button_prediction, PredictionActivity.class)); activities.add(new Activity(ACTIVITY_ELM_TESTING, R.string.button_ElmTesting, R.drawable.button_elm327, ElmTestActivity.class)); activities.add(new Activity(ACTIVITY_CHARGING_HISTORY, R.string.button_chargingHistory, R.drawable.button_charginghist, ChargingHistActivity.class)); activities.add(new Activity(ACTIVITY_12_VOLT_BATT, R.string.button_AuxBatt, R.drawable.button_auxbat, AuxBattTechActivity.class)); activities.add(new Activity(ACTIVITY_LEAK_CURRENTS, R.string.button_LeakCurrents, R.drawable.button_leak, LeakCurrentsActivity.class)); activities.add(new Activity(ACTIVITY_TIRES, R.string.button_Tires, R.drawable.button_tire, TiresActivity.class)); activities.add(new Activity(ACTIVITY_VOLTAGE_HEATMAP, R.string.button_HeatmapVoltage, R.drawable.button_lightning, HeatmapCellvoltageActivity.class)); activities.add(new Activity(ACTIVITY_TEMPERATURE_HEATMAP, R.string.button_HeatmapTemperature, R.drawable.button_batterytemp, HeatmapBatcompActivity.class)); activities.add(new Activity(ACTIVITY_RANGE, R.string.button_Range, R.drawable.button_range, RangeActivity.class)); activities.add(new Activity(ACTIVITY_ALL_DATA, R.string.button_AllData, R.drawable.button_alldata, AllDataActivity.class)); // experimental activities.add(new Activity(ACTIVITY_DASH, R.string.button_Dash, R.drawable.button_dash, DashActivity.class)); activities.add(new Activity(ACTIVITY_RESEARCH, R.string.button_Research, R.drawable.button_microscope, ResearchActivity.class)); activities.add(new Activity(ACTIVITY_FIELD_TEST, R.string.button_FieldTest, R.drawable.button_test, FieldTestActivity.class)); // sort by title Collections.sort(activities, new Comparator() { @Override public int compare(Activity o1, Activity o2) { return o1.getTitle().compareTo(o2.getTitle()); } }); loadSelection(); } public static ActivityRegistry getInstance() { if(registry==null) registry = new ActivityRegistry(); return registry; } public Activity get(int index) { if (index >= 0 && index < activities.size()) return activities.get(index); return null; } public Activity getById (int id) { for (int i = 0; i < activities.size(); i++) { Activity a = activities.get (i); if (a.getId() == id) return a; } return null; } public Activity getByTitle (String title) { for (int i = 0; i < activities.size(); i++) { Activity a = activities.get (i); if (a.getTitle().equals(title)) return a; } return null; } public int size() { return activities.size(); } public Activity selectedGet(int index) { if (index >= 0 && index < selected.size()) return selected.get(index); return null; } public int selectedSize() { return selected.size(); } public ArrayList getActivities() { ArrayList result = new ArrayList<>(); for (int i = 0; i < activities.size(); i++) { result.add(activities.get(i).getTitle()); } return result; } public ArrayList getSelected() { ArrayList result = new ArrayList<>(); for (int i = 0; i < selected.size(); i++) { result.add(selected.get(i).getTitle()); } return result; } public void addToSelected(int index) { if (index >= 0 && index < activities.size()) selected.add(activities.get(index)); } public void removeFromSelected(int index) { if (index >= 0 && index < selected.size()) selected.remove(index); } public int getPos(Activity a) { return activities.indexOf(a); } public boolean moveSelectedUp(int index) { if(index > 0 && index < selected.size()) { Activity a = selected.get(index); selected.remove(index); selected.add(index - 1, a); return true; } return false; } public boolean moveSelectedDown(int index) { if(index >= 0 && index < selected.size()-1) { Activity a = selected.get(index); selected.remove(index); selected.add(index + 1, a); return true; } return false; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/ColorRange.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.classes; /** * Created by robertfisch on 26.10.2015. */ public class ColorRange { public int from; public int to; public String color; public String sid; public ColorRange() {} public ColorRange(int from, int to, String color) { this.color = color; this.from = from; this.to = to; } public boolean isInside(double value) { return (from<=value && value<=to); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/ColorRanges.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.classes; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import java.lang.reflect.Type; import java.util.ArrayList; import lu.fisch.awt.Color; /** * Created by robertfisch on 26.10.2015. */ public class ColorRanges { private ArrayList colorRanges = new ArrayList<>(); public ColorRanges() {} public ColorRanges(String json) { Gson gson = new Gson(); Type tt = new TypeToken>() {}.getType(); colorRanges = gson.fromJson(json,tt); } public Color getColor(String sid, double value, Color defaultColor) { for(int i=0; i colors = new ArrayList<>(); for(int i=0; i0 || colorRange.from>0)) || (!positive && (colorRange.to<0 || colorRange.from<0)) )) colors.add(Color.decode(colorRange.color).getAndroidColor()); } final int[] result = new int[colors.size()]; for (int i = 0; i < colors.size(); i++) { result[i] = colors.get(i); } return result; } */ public int[] getColors(String sid) { ArrayList colors = new ArrayList<>(); for(int i=0; i values = new ArrayList<>(); if((positive && min>0) || (!positive && min<0)) values.add(min); for(int i=1; i0 || colorRange.from>0)) || (!positive && (colorRange.to<0 || colorRange.from<0)) )) { if(colorRange.from>0 && colorRange.to>0) values.add(colorRange.from); else values.add(colorRange.to); } } if((positive && max>0) || (!positive && max<0)) values.add(max); final float[] result = new float[values.size()]; //String spacings = "Spacings: "; for (int i = 0; i < values.size(); i++) { result[i] = (float) (values.get(i)-min)/(max-min); //spacings+=", "+result[i]; } //MainActivity.debug(spacings); return result; } */ public float[] getSpacings(String sid, int min, int max) { ArrayList values = new ArrayList<>(); //values.add(min+0f); for(int i=0; i=0 && colorRange.to>=0) { values.add(colorRange.from); } else { values.add(colorRange.to); }*/ values.add((colorRange.to+colorRange.from)/2.f); } } // replace the first one with min if(values.size()>0) values.set(0,min+0f); // replace the last one with max if(values.size()>0) values.set(values.size()-1,max+0f); //values.add(max+0f); final float[] result = new float[values.size()]; //String debug = "Spacings: "; for (int i = 0; i < values.size(); i++) { result[i] = (values.get(i)-min)/(max-min); //debug+=", "+values.get(i); } //MainActivity.debug(debug); //MainActivity.debug("Spacings "+result.length); return result; } public String getJson() { return (new Gson()).toJson(colorRanges.clone()); } public void add(ColorRange colorRange) { colorRanges.add(colorRange); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/DataLogger.java ================================================ package lu.fisch.canze.classes; import android.os.Environment; import android.os.Handler; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.actors.Field; import lu.fisch.canze.interfaces.FieldListener; import static lu.fisch.canze.activities.MainActivity.debug; /** * Created by Chris Mattheis on 03/11/15. * don't use yet - still work in progress */ public class DataLogger implements FieldListener { /* **************************** * Singleton stuff * ****************************/ private static DataLogger dataLogger = null; public static DataLogger getInstance() { if (dataLogger == null) dataLogger = new DataLogger(); return dataLogger; } /* **************************** * Datalogger stuff * ****************************/ // -------- Data Definitions copied from Driving Activity -- start --- // for ISO-TP optimization to work, group all identical CAN ID's together when calling addListener // free data private static final String SID_Consumption = "800.6109.24"; //EVC private static final String SID_Pedal = "186.40"; //EVC private static final String SID_MeanEffectiveTorque = "800.610b.24"; private static final String SID_RealSpeed = "5d7.0"; //ESC-ABS private static final String SID_SoC = "42e.0"; //EVC private static final String SID_RangeEstimate = "654.42"; //EVC private static final String SID_DriverBrakeWheel_Torque_Request = "130.44"; //UBP braking wheel torque the driver wants private static final String SID_ElecBrakeWheelsTorqueApplied = "1f8.28"; //UBP 10ms // ISO-TP data // private static final String SID_EVC_SoC = "7ec.622002.24"; // (EVC) // private static final String SID_EVC_RealSpeed = "7ec.622003.24"; // (EVC) private static final String SID_EVC_Odometer = "7ec.622006.24"; // (EVC) // private static final String SID_EVC_Pedal = "7ec.62202e.24"; // (EVC) private static final String SID_EVC_TractionBatteryVoltage = "7ec.623203.24"; // (EVC) private static final String SID_EVC_TractionBatteryCurrent = "7ec.623204.24"; // (EVC) private static final String SID_MaxCharge = "7bb.6101.336"; private double dcVolt = 0; // holds the DC voltage, so we can calculate the power when the amps come in private double realSpeed = 0; private double dcPwr = 0; private String var_SoC; private String var_Pedal; private String var_MeanEffectiveTorque; private String var_Odometer; private String var_realSpeed; private String var_Consumption; private String var_dcVolt; private String var_dcPwr; private String var_rangeInBat; private ArrayList subscribedFields; // -------- Data Definitions copied from Driving Activity -- end --- private File logFile = null; private boolean activated = false; private long z = 2; private final SimpleDateFormat sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHMS), Locale.getDefault()); // SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss", Locale.getDefault()); // Checks if external storage is available for read and write public DataLogger() { debug("DataLogger: constructor called"); } // milliSeconds == 0 --> get current time // milliSeconds > 0 --> use the time given as parameter private String getDateString(long milliSeconds, String dateFormat) { // Create a DateFormatter object for displaying date in specified format. SimpleDateFormat formatter = new SimpleDateFormat(dateFormat, Locale.getDefault()); // Create a calendar object that will convert the date and time value in milliseconds to date. Calendar calendar = Calendar.getInstance(); if (milliSeconds > 0) { calendar.setTimeInMillis(milliSeconds); } return formatter.format(calendar.getTime()); } public boolean isCreated() { return (logFile != null); } public boolean activate(boolean state) { boolean result = state; debug("DataLogger: activate > request = " + state); if (activated != state) { if (state) { // now need to activate, open file, start timer result = start(); activated = result; // only true in case of no errors // debug("DataLogger: start"); } else { // now need to de-activate, close file, stop timer result = stop(); activated = false; // always false // debug("DataLogger: stop "); } } debug("DataLogger: activate > return " + result); return result; } public boolean createNewLog() { boolean result = false; // ensure that there is a CanZE Folder in SDcard if (!MainActivity.getInstance().isExternalStorageWritable()) { debug("DataLogger: SDcard not writeable"); return false; } String file_path = MainActivity.getInstance().getExternalFolder(); File dir = new File(file_path); if (!dir.exists()) { dir.mkdirs(); } debug("DataLogger: file_path:" + file_path); // SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss"); String exportdataFileName = file_path + "data-" + sdf.format(Calendar.getInstance().getTime()) + ".log"; logFile = new File(exportdataFileName); if (!logFile.exists()) { try { if (!logFile.createNewFile()) { debug("Datalogger:createNewLog: can't create file:" + exportdataFileName); logFile = null; return false; } } catch (IOException e) { e.printStackTrace(); } } try { //BufferedWriter for performance, true to set append to file flag FileWriter fileWriter = new FileWriter(logFile, true); BufferedWriter bufferedWriter = new BufferedWriter(fileWriter); // set global static BufferedWriter dataexportStream later //if (true) { // bufferedWriter.append("this is just a test if stream is writeable"); // bufferedWriter.newLine(); // bufferedWriter.close(); //} bufferedWriter.close(); result = true; } catch (IOException e) { e.printStackTrace(); } return result; } // private long intervall = 5000; private final int intervall = 5000; private final Handler handler = new Handler(); private final Runnable runnable = new Runnable() { @Override public void run() { // write data to file // Long tsLong = System.currentTimeMillis(); // Method 1 long tsLong = new Date().getTime(); // Method 2 String DateString = getDateString(0, MainActivity.getStringSingle(R.string.format_YMDHMS)); // String DateString = getDateString( 0 , "yyyy-MM-dd-HH-mm-ss"); tsLong >>= 8; String timestamp = Long.toString(tsLong); // String dataWithNewLine= sdf.format(Calendar.getInstance()) + data + System.getProperty("line.separator"); // if(!isCreated()) createNewLog(); // try { // BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(logFile, true)); // bufferedWriter.append(data); // bufferedWriter.close(); //} //catch (IOException e) { // e.printStackTrace(); //} if (realSpeed + dcPwr > 0) { // only log while driving or charging String dataWithNewLine = timestamp + ";" + DateString + ";" + String.format(Locale.getDefault(), "%.3f", realSpeed) + ";" + String.format(Locale.getDefault(), "%.3f", dcPwr) + ";" + var_SoC + ";" + var_dcVolt + ";" + var_dcPwr + ";" + var_Pedal + ";" + var_MeanEffectiveTorque + ";" + var_Odometer + ";" + var_realSpeed + ";" + var_Consumption + ";" + var_rangeInBat; log(dataWithNewLine); } handler.postDelayed(this, intervall); } }; /** * Appends a line of text to the log file * * @param text the text line. A CR will be added automatically */ public void log(String text) { if (!isCreated()) createNewLog(); if (logFile == null) return; debug("DataLogger - log: " + text); try { BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(logFile, true)); bufferedWriter.append(text + System.getProperty("line.separator")); bufferedWriter.close(); } catch (IOException e) { // e.printStackTrace(); } } public boolean start() { // open logfile // start timer debug("DataLogger: start"); handler.postDelayed(runnable, 400); initListeners(); return createNewLog(); } public boolean stop() { // flush and close logfile // stop timer debug("DataLogger: stop"); logFile = null; handler.removeCallbacks(runnable); // free up the listeners again if (subscribedFields != null) { for (Field field : subscribedFields) { field.removeListener(this); } subscribedFields.clear(); } debug("DataLogger: stop - and logFile = null"); return true; } public void destroy() { handler.removeCallbacks(runnable); stop(); } private void addListener(String sid, int intervalMs) { Field field; field = MainActivity.fields.getBySID(sid); if (field != null) { field.addListener(this); // MainActivity.device.addActivityField(field, intervalMs); MainActivity.device.addApplicationField(field, intervalMs); subscribedFields.add(field); } else { MainActivity.toast(MainActivity.TOAST_NONE, MainActivity.getStringSingle(R.string.format_NoSid), "Datalogger", sid); } } private void initListeners() { subscribedFields = new ArrayList<>(); debug("DataLogger: initListeners"); // Make sure to add ISO-TP listeners grouped by ID addListener(SID_Consumption, intervall); // 2000 addListener(SID_Pedal, intervall); // 2000 addListener(SID_MeanEffectiveTorque, intervall); // 2000 addListener(SID_DriverBrakeWheel_Torque_Request, intervall); // 2000 addListener(SID_ElecBrakeWheelsTorqueApplied, intervall); // 2000 addListener(SID_RealSpeed, intervall); // 2000 addListener(SID_SoC, intervall); // 3600 addListener(SID_RangeEstimate, intervall); // 3600 //addListener(SID_EVC_SoC); addListener(SID_EVC_Odometer, intervall); // 6000 addListener(SID_EVC_TractionBatteryVoltage, intervall); // 5000 addListener(SID_EVC_TractionBatteryCurrent, intervall); // 2000 } // This is the event fired as soon as this the registered fields are // getting updated by the corresponding reader class. @Override public void onFieldUpdateEvent(final Field field) { String fieldId = field.getSID(); switch (fieldId) { case SID_SoC: var_SoC = field.getPrintValue(); break; case SID_Pedal: var_Pedal = field.getPrintValue(); break; case SID_MeanEffectiveTorque: var_MeanEffectiveTorque = field.getPrintValue(); break; case SID_EVC_Odometer: var_Odometer = "" + ((int) field.getValue()); break; case SID_RealSpeed: realSpeed = (Math.round(field.getValue() * 10.0) / 10.0); var_realSpeed = "" + realSpeed; break; case SID_EVC_TractionBatteryVoltage: // DC volts // save DC voltage for DC power purposes dcVolt = field.getValue(); var_dcVolt = field.getPrintValue(); break; case SID_EVC_TractionBatteryCurrent: // DC amps // calculate DC power dcPwr = Math.round(dcVolt * field.getValue() / 100.0) / 10.0; var_dcPwr = field.getPrintValue(); break; case SID_Consumption: dcPwr = field.getValue(); if (realSpeed > 5) { var_Consumption = "" + (Math.round(1000.0 * dcPwr / realSpeed) / 10.0); } else { var_Consumption = "-"; } break; case SID_RangeEstimate: var_rangeInBat = "" + (int) field.getValue(); break; case SID_DriverBrakeWheel_Torque_Request: // driverBrakeWheel_Torque_Request = field.getValue(); break; case SID_ElecBrakeWheelsTorqueApplied: // double frictionBrakeTorque = driverBrakeWheel_Torque_Request - field.getValue(); // a fair full red bar is estimated @ 1000 Nm // pb = (ProgressBar) findViewById(R.id.FrictionBreaking); // pb.setProgress((int) (frictionBrakeTorque * realSpeed)); break; } } } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/DebugLogger.java ================================================ package lu.fisch.canze.classes; import android.os.Environment; import android.util.Log; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.activities.MainActivity; import static lu.fisch.canze.activities.MainActivity.TAG; import static lu.fisch.canze.activities.MainActivity.debug; /** * Created by Chris Mattheis on 03/11/15. * don't use yet - still work in progress */ public class DebugLogger { /* **************************** * Singleton stuff * ****************************/ private final static DebugLogger instance = new DebugLogger(); private DebugLogger() { } public static DebugLogger getInstance() { return instance; } /* **************************** * Datalogger stuff * ****************************/ private SimpleDateFormat sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHMS), Locale.US); private boolean firstLog = true; private File logFile = null; private boolean isCreated() { return (logFile != null); } private boolean createNewLog() { if (!MainActivity.storageIsAvailable) { Log.d(TAG, "AllDataActivity.createDump: SDcard not available"); return false; } if (!MainActivity.getInstance().isExternalStorageWritable()) { Log.d(TAG, "DiagDump: SDcard not writeable"); return false; } String file_path = MainActivity.getInstance().getExternalFolder(); File dir = new File(file_path); if (!dir.exists()) { if (!dir.mkdirs()) { Log.d(TAG, "DiagDump: can't create directory:" + file_path); logFile = null; return false; } } String exportdataFileName = file_path + "debug-" + sdf.format(Calendar.getInstance().getTime()) + ".log"; logFile = new File(exportdataFileName); if (!logFile.exists()) { try { if (!logFile.createNewFile()) { Log.d(TAG, "DiagDump: can't create file:" + exportdataFileName); logFile = null; return false; } } catch (IOException e) { e.printStackTrace(); logFile = null; return false; } } // this should not happen, but it did 30-12-2020 Android 6.0.1 App 1.54 if (logFile == null) return false; try { //BufferedWriter for performance, true to set append to file flag FileWriter fileWriter = new FileWriter(logFile, true); BufferedWriter bufferedWriter = new BufferedWriter(fileWriter); // header bufferedWriter.append("Datetime,Message"); bufferedWriter.close(); sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHMSs), Locale.US); return true; } catch (IOException e) { e.printStackTrace(); } logFile = null; return false; } /** * Appends a line of text to the log file * * @param text the text line. A CR will be added automatically */ public void log(String text) { if (logFile == null && firstLog) createNewLog(); firstLog = false; if (logFile != null) { try { BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(logFile, true)); bufferedWriter.append(sdf.format(Calendar.getInstance().getTime()) + "," + text + "\n"); bufferedWriter.close(); } catch (IOException e) { e.printStackTrace(); logFile = null; } } } } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/FieldLogger.java ================================================ package lu.fisch.canze.classes; import android.os.Environment; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Locale; import lu.fisch.canze.R; import lu.fisch.canze.activities.MainActivity; import static lu.fisch.canze.activities.MainActivity.debug; /** * Created by Chris Mattheis on 03/11/15. * don't use yet - still work in progress */ public class FieldLogger { /* **************************** * Singleton stuff * ****************************/ private final static FieldLogger instance = new FieldLogger(); private FieldLogger() { } public static FieldLogger getInstance() { return instance; } /* **************************** * Datalogger stuff * ****************************/ private SimpleDateFormat sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHMS), Locale.US); private boolean firstLog = true; private File logFile = null; private boolean isCreated() { return (logFile != null); } private boolean createNewLog() { if (!MainActivity.storageIsAvailable) { debug("AllDataActivity.createDump: SDcard not available"); return false; } if (!MainActivity.getInstance().isExternalStorageWritable()) { debug("DiagDump: SDcard not writeable"); return false; } String file_path = MainActivity.getInstance().getExternalFolder(); File dir = new File(file_path); if (!dir.exists()) { dir.mkdirs(); } String exportdataFileName = file_path + "field-" + sdf.format(Calendar.getInstance().getTime()) + ".log"; logFile = new File(exportdataFileName); if (!logFile.exists()) { try { if (!logFile.createNewFile()) { debug("FieldLogger.CreateNewLog: can't create file:" + exportdataFileName); logFile = null; return false; } } catch (IOException e) { e.printStackTrace(); logFile = null; return false; } } try { //BufferedWriter for performance, true to set append to file flag FileWriter fileWriter = new FileWriter(logFile, true); BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(logFile, true)); // header bufferedWriter.append("Datetime,SID,Name,Value,Unit\n"); bufferedWriter.close(); sdf = new SimpleDateFormat(MainActivity.getStringSingle(R.string.format_YMDHMSs), Locale.US); return true; } catch (IOException e) { e.printStackTrace(); } logFile = null; return false; } /** * Appends a line of text to the log file * * @param text the text line. A CR will be added automatically */ public void log(String text) { if (logFile == null && firstLog) createNewLog(); firstLog = false; if (logFile != null) { try { BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(logFile, true)); bufferedWriter.append(sdf.format(Calendar.getInstance().getTime()) + "," + text + "\n"); bufferedWriter.close(); } catch (IOException e) { e.printStackTrace(); logFile = null; } } } } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/ForegroundCheckTask.java ================================================ package lu.fisch.canze.classes; // source: https://stackoverflow.com/questions/8489993/check-android-application-is-in-foreground-or-not import android.app.ActivityManager; import android.content.Context; import android.os.AsyncTask; import java.util.List; public class ForegroundCheckTask extends AsyncTask { @Override protected Boolean doInBackground(Context... params) { final Context context = params[0].getApplicationContext(); return isAppOnForeground(context); } private boolean isAppOnForeground(Context context) { ActivityManager activityManager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE); List appProcesses = activityManager.getRunningAppProcesses(); if (appProcesses == null) { return false; } final String packageName = context.getPackageName(); for (ActivityManager.RunningAppProcessInfo appProcess : appProcesses) { if (appProcess.importance == ActivityManager.RunningAppProcessInfo.IMPORTANCE_FOREGROUND && appProcess.processName.equals(packageName)) { return true; } } return false; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/Intervals.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.classes; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import java.lang.reflect.Type; import java.util.HashMap; import lu.fisch.awt.Color; /** * Created by robertfisch on 07.11.2015. */ public class Intervals { private HashMap intervals = new HashMap<>(); public Intervals() {} public Intervals(String json) { Gson gson = new Gson(); Type tt = new TypeToken>() {}.getType(); intervals = gson.fromJson(json,tt); } public int getInterval(String sid) { if(intervals.containsKey(sid)) return intervals.get(sid); else return -1; } public String getJson() { return (new Gson()).toJson(intervals.clone()); } public void add(String sid, int interval) { intervals.put(sid,interval); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/LoggingLogger.java ================================================ package lu.fisch.canze.classes; import android.content.SharedPreferences; import java.util.ArrayList; import java.util.HashSet; import java.util.Set; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.adapters.LoggerField; import lu.fisch.canze.interfaces.FieldListener; /** * Created by robert.fisch on 07.03.17. */ public class LoggingLogger implements FieldListener { /* **************************** * Singleton stuff * ****************************/ private static LoggingLogger loggingLogger = null; private LoggingLogger() { load(); } public static LoggingLogger getInstance() { if(loggingLogger ==null) loggingLogger =new LoggingLogger(); return loggingLogger; } /* **************************** * fields to register * ****************************/ private final ArrayList loggerFields = new ArrayList<>(); public ArrayList getLoggingFields() { return loggerFields; } /** * * @param field field to add to the logger * @param interval in secondes!! */ public void add(Field field, int interval) { LoggerField loggerField = new LoggerField(field,interval); if(!loggerFields.contains(loggerField)) { MainActivity.device.addApplicationField(field, interval * 1000); loggerFields.add(loggerField); save(); } } public Field getField(int index) { return loggerFields.get(index).field; } public Integer getIntnerval(int index) { return loggerFields.get(index).interval; } public int size() { return loggerFields.size(); } public void remove(int index) { loggerFields.remove(index); save(); } public void remove(Field field) { loggerFields.remove(field); save(); } public void clear() { loggerFields.clear(); save(); } /* **************************** * save / load a set of SIDs * ****************************/ public void save() { SharedPreferences settings = MainActivity.getInstance().getSharedPreferences(MainActivity.PREFERENCES_FILE, 0); SharedPreferences.Editor editor = settings.edit(); editor.putStringSet("loggingFields",getFields()); editor.putStringSet("loggingIntervals",getIntervals()); editor.apply(); } public void load() { SharedPreferences settings = MainActivity.getInstance().getSharedPreferences(MainActivity.PREFERENCES_FILE, 0); Set loggingFields = settings.getStringSet("loggingFields",new HashSet()); Set loggingIntervals = settings.getStringSet("loggingIntervals",new HashSet()); setFieldsIntervals(loggingFields,loggingIntervals); } public HashSet getFields() { HashSet result = new HashSet<>(); for(int i=0; i. */ package lu.fisch.canze.classes; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import java.lang.reflect.Type; import java.util.HashMap; /** * Created by robertfisch on 07.11.2015. */ public class Options { private HashMap intervals = new HashMap<>(); public Options() {} public Options(String json) { Gson gson = new Gson(); Type tt = new TypeToken>() {}.getType(); intervals = gson.fromJson(json,tt); } public String getOption(String sid) { if(intervals.containsKey(sid)) return intervals.get(sid); else return null; } public String getJson() { return (new Gson()).toJson(intervals.clone()); } public void add(String sid, String option) { intervals.put(sid,option); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/Sid.java ================================================ package lu.fisch.canze.classes; public class Sid { public static final String DriverBrakeWheel_Torque_Request = "130.44"; //UBP braking wheel torque the driver wants public static final String MeanEffectiveTorque = "186.16"; public static final String Pedal = "186.40"; //EVC public static final String Coasting_Torque = "18a.27"; public static final String TotalPotentialResistiveWheelsTorque = "1f8.16"; // UBP 10ms public static final String ElecBrakeWheelsTorqueApplied = "1f8.28"; //10ms public static final String Aux12A = "1fd.0"; public static final String VehicleState = "35c.5"; public static final String SoC = "42e.0"; //EVC public static final String EngineFanSpeed = "42e.20"; public static final String ACPilotAmps = "42e.38"; public static final String ChargingPower = "42e.56"; public static final String HvCoolingState = "430.38"; public static final String HvEvaporationTemp = "430.40"; public static final String BatteryConditioningMode = "432.36"; public static final String ClimaLoopMode = "42a.48"; public static final String UserSoC = "42e.0"; public static final String AvailableChargingPower = "427.40"; public static final String AvailableEnergy = "427.49"; public static final String HvTemp = "42e.44"; public static final String RealSpeed = "5d7.0"; //ESC-ABS public static final String AuxStatus = "638.37"; public static final String WorstAverageConsumption = "62d.0"; public static final String BestAverageConsumption = "62d.10"; public static final String PlugConnected = "654.2"; public static final String RangeEstimate = "654.42"; public static final String AverageConsumption = "654.52"; public static final String ChargingStatusDisplay = "65b.41"; public static final String TireSpdPresMisadaption = "673.0"; public static final String TireRRState = "673.2"; public static final String TireRLState = "673.5"; public static final String TireFRState = "673.8"; public static final String TireFLState = "673.11"; public static final String TireRRPressure = "673.16"; public static final String TireRLPressure = "673.24"; public static final String TireFRPressure = "673.32"; public static final String TireFLPressure = "673.40"; public static final String HeaterSetpoint = "699.8"; public static final String ThermalComfortPower = "764.6143.88"; public static final String Pressure = "764.6143.134"; public static final String OH_ClimTempDisplay = "764.6145.29"; public static final String TpmsState = "765.6171.16"; public static final String BcbTesterInit = "793.50c0.0"; public static final String BcbTesterAwake = "793.7e01.0"; public static final String BcbVersion = "793.6180.144"; public static final String Phase1currentRMS = "793.622001.24"; public static final String MainsCurrentType = "793.625017.29"; public static final String ACPilotDutyCycle = "793.625026.24"; public static final String PhaseVoltage1 = "793.62502c.24"; // Raw public static final String PhaseVoltage2 = "793.62502d.24"; public static final String PhaseVoltage3 = "793.62502e.24"; public static final String Phase2CurrentRMS = "793.62503a.24"; // Raw <= this seems to be instant DC coupled value public static final String Phase3CurrentRMS = "793.62503b.24"; public static final String InterPhaseVoltage12 = "793.62503f.24"; // Measured public static final String InterPhaseVoltage23 = "793.625041.24"; public static final String InterPhaseVoltage31 = "793.625042.24"; public static final String MainsActivePower = "793.62504a.24"; public static final String GroundResistance = "793.625062.24"; public static final String SupervisorState = "793.625063.24"; public static final String CompletionStatus = "793.625064.24"; public static final String MaxCharge = "7bb.6101.336"; public static final String RealSoC = "7bb.6103.192"; public static final String AverageBatteryTemperature = "7bb.6104.600"; // (LBC) public static final String Preamble_CompartmentTemperatures = "7bb.6104."; // (LBC) public static final String Preamble_BalancingBytes = "7bb.6107."; public static final String Preamble_CellVoltages1 = "7bb.6141."; // (LBC) public static final String Preamble_CellVoltages2 = "7bb.6142."; // (LBC) public static final String HvKilometers = "7bb.6161.96"; public static final String Total_kWh = "7bb.6161.120"; public static final String BatterySerial = "7bb.6162.16"; //EVC public static final String Counter_Full = "7bb.6166.48"; public static final String Counter_Partial = "7bb.6166.64"; public static final String HydraulicTorqueRequest = "7bc.624b7d.28"; // Total Hydraulic brake wheels torque request public static final String CCSEVRequestState = "7c8.620326.28"; public static final String CCSEVReady = "7c8.620329.31"; public static final String CCSEVSEState = "7c8.62032c.28"; public static final String CCSEVSECurrentLimitReached = "7c8.62032d.31"; public static final String CCSEVSEPowerLimitReached = "7c8.620334.31"; public static final String CCSEVSEPresentCurrent = "7c8.620335.24"; public static final String CCSEVSEPresentVoltage = "7c8.620336.24"; public static final String CCSEVSEVoltageLimitReaced = "7c8.620337.31"; public static final String CCSFailureStatus = "7c8.62033b.24"; public static final String CCSCPLCComStatus = "7c8.62033a.28"; public static final String CCSEVSEStatus = "7c8.62033c.24"; public static final String EVC = "7ec.5003.0"; // EVC open Note we use 7ec as the EVC has custom SID codes for older model compatilbility public static final String Aux12V = "7ec.622005.24"; public static final String EVC_Odometer = "7ec.622006.24"; public static final String TorqueRequest = "7ec.622243.24"; public static final String DcLoad = "7ec.623028.24"; public static final String TractionBatteryVoltage = "7ec.623203.24"; public static final String TractionBatteryCurrent = "7ec.623204.24"; public static final String SOH = "7ec.623206.24"; public static final String Preamble_KM = "7ec.6233d4."; // 240 - 24 public static final String Preamble_END = "7ec.6233d5."; // 96 - 8 public static final String Preamble_TYP = "7ec.6233d6."; // 96 - 8 public static final String Preamble_SOC = "7ec.6233d7."; // 168 - 16 public static final String Preamble_TMP = "7ec.6233d8."; // 96 - 8 public static final String Preamble_DUR = "7ec.6233d9."; // 168 - 16 public static final String TripMeterB = "7ec.6233de.24"; public static final String TripEnergyB = "7ec.6233dd.24"; public static final String CurrentUnderLoad = "7ec.623484.24"; // Current measurement given by BCS Battery Current Sensor public static final String VoltageUnderLoad = "7ec.623485.24"; // Voltage measurement given by BCS Battery Current Sensor public static final String PtcRelay1 = "7ec.623498.31"; public static final String PtcRelay2 = "7ec.62349a.31"; public static final String PtcRelay3 = "7ec.62349c.31"; public static final String PEBTorque = "77e.623025.24"; public static final String Instant_Consumption = "800.6100.24"; public static final String FrictionTorque = "800.6101.24"; public static final String DcPowerIn = "800.6103.24"; // Virtual field public static final String DcPowerOut = "800.6109.24"; public static final String ElecBrakeTorque = "800.610a.24"; public static final String TotalPositiveTorque = "800.610b.24"; public static final String TotalNegativeTorque = "800.610c.24"; public static final String ACPilot = "800.610d.24"; public static final String CCSEVSEMaxPower = "18daf1da.623006.24"; public static final String CCSEVSEMaxVoltage = "18daf1da.623008.24"; public static final String CCSEVSEMaxCurrent = "18daf1da.62300a.24"; public static final String Total_Regen_kWh = "18daf1db.629247.24"; // Ph2 only (for now) } ================================================ FILE: app/src/main/java/lu/fisch/canze/classes/TimePoint.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.classes; import java.io.Serializable; /** * Created by robertfisch on 04.11.2015. */ public class TimePoint implements Serializable { public long date; public double value; public TimePoint() { } public TimePoint(long date, double value) { this.date = date; this.value = value; } public String toString() { return date+","+value; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/database/CanzeDataSource.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.database; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.SQLException; import android.database.sqlite.SQLiteDatabase; import java.util.ArrayList; import java.util.Calendar; import java.util.HashMap; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.actors.Field; import lu.fisch.canze.classes.TimePoint; import lu.fisch.canze.interfaces.FieldListener; public class CanzeDataSource implements FieldListener { private static long LIMIT = 60 * 60 * 1000; // 1 h /* * Singleton stuff */ private static CanzeDataSource instance = null; public static CanzeDataSource getInstance() { // let it crash on the caller to see where it comes from // if (instance == null) throw new Error("Must call at least once with given context!"); return instance; } public static CanzeDataSource getInstance(Context context) { if (instance == null) instance = new CanzeDataSource(context); return instance; } private CanzeDataSource(Context context) { dbHelper = new CanzeOpenHelper(context); } // Database fields private SQLiteDatabase database; private CanzeOpenHelper dbHelper; public void open() throws SQLException { database = dbHelper.getWritableDatabase(); } public void close() { dbHelper.close(); } public void reinit() { dbHelper.reinit(database); } private HashMap lasts = new HashMap<>(); public void insert(Field field) { if (!Double.isNaN(field.getValue())) { //MainActivity.debug("CanzeDataSource: inserting "+field.getValue()+" for "+field.getSID()); ContentValues values = new ContentValues(); values.put("sid", field.getSID()); //values.put("moment", Calendar.getInstance().getTimeInMillis()); long iTime = Calendar.getInstance().getTimeInMillis(); // with the new dongle, fields may come in too fast, so let's // make sure we do not get an overflow >> very slow app reaction // maximum each second a new value! iTime = (iTime / 1000) * 1000; values.put("moment", iTime); values.put("value", field.getValue()); // if this is really a new point, insert it //if(getLastTime(field.getSID())!=iTime) TimePoint lastTP = lasts.get(field.getSID()); try { if (lastTP == null || lastTP.date != iTime) database.insert("data", null, values); // but if not, insert the max ... so check if the inserted value is lower than the new one //else if(getLast(field.getSID()) getData(String sid) { ArrayList data = new ArrayList<>(); try { Cursor c = database.rawQuery("SELECT * FROM data WHERE sid='" + sid + "' ORDER BY moment ASC", null); c.moveToFirst(); while (!c.isAfterLast()) { TimePoint b = new TimePoint( c.getLong(c.getColumnIndex("moment")), c.getDouble(c.getColumnIndex("value")) ); data.add(b); c.moveToNext(); } // make sure to close the cursor c.close(); } catch (Exception e) { // do nothing } return data; } /* * FieldListener implementation */ @Override public void onFieldUpdateEvent(Field field) { insert(field); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/database/CanzeOpenHelper.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.database; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; import lu.fisch.canze.classes.Crashlytics; public class CanzeOpenHelper extends SQLiteOpenHelper { private static final int DATABASE_VERSION = 1; private static final String DATABASE_NAME = "lu.fisch.canze.db"; CanzeOpenHelper(Context context) { super(context, DATABASE_NAME, null, DATABASE_VERSION); } @Override public void onCreate(SQLiteDatabase db) { try { // create the database db.execSQL("CREATE TABLE data (sid TEXT NOT NULL, moment INTEGER NOT NULL, value REAL NOT NULL)"); // set an index on the "sid" field db.execSQL("CREATE INDEX indexSid ON data (sid)"); //db.execSQL("CREATE TABLE data (id_data INTEGER PRIMARY KEY AUTOINCREMENT, sid TEXT NOT NULL, moment INTEGER NOT NULL, value REAL NOT NULL)"); } catch (Exception e) { Crashlytics.logException(e); // do nothing } } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { onCreate(db); } public void clear(SQLiteDatabase db) { try { db.execSQL("DROP TABLE IF EXISTS data"); } catch (Exception e) { Crashlytics.logException(e); // do nothing } } public void reinit(SQLiteDatabase db) { clear(db); onCreate(db); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/devices/CanSee.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.devices; import java.io.IOException; import java.util.Calendar; import lu.fisch.canze.BuildConfig; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.actors.Frame; import lu.fisch.canze.actors.Message; import lu.fisch.canze.bluetooth.BluetoothManager; /** * Created by robertfisch on 07.09.2015. */ public class CanSee extends Device { // *** needed by the "reader" part //private String buffer = ""; //private final String separator = "\n"; // If there are more than WRONG_THRESHOLD empty answer strings (meaning either just // EOM as answer or no answer in TIMEOUT milliseconds, Bluetooth will be restarted private static final int WRONG_THRESHOLD = 20; private int wrongCount = 0; // define the timeout we may wait to get an answer private static final int TIMEOUT_FREE = 250; private static final int TIMEOUT_ISO = 1000; // define End Of Message for this type of reader private static final char EOM = '\n'; // the actual filter //private int fieldIndex = 0; // the thread that polls the data to the stack public void join() throws InterruptedException { pollerThread.join(); } // send a command and wait for an answer private String sendAndWaitForAnswer(String command, int waitMillis, int timeout) { // empty incoming buffer. This is necessary to ensure things get not horribly out of sync try { while (BluetoothManager.getInstance().available() > 0) { BluetoothManager.getInstance().read(); } } catch (IOException e) { // ignore } // send the command if (command != null) // prefix fir EOM to make sure the previous command is done! //BluetoothManager.getInstance().write("\r\n"+command + "\r\n"); BluetoothManager.getInstance().write(command + "\n"); //MainActivity.debug("Send > "+command); // wait if needed if (waitMillis > 0) try { Thread.sleep(waitMillis); } catch (InterruptedException e) { e.printStackTrace(); } // init the buffer boolean stop = false; //Do not use StringBuilder as it's not thread safe //StringBuilder readBuffer = new StringBuilder(); StringBuilder readBuffer = new StringBuilder(); // wait for answer long start = Calendar.getInstance().getTimeInMillis(); long runtime = 0; while (!stop && runtime < timeout) { //MainActivity.debug("Delta = "+(Calendar.getInstance().getTimeInMillis()-start)); try { if (BluetoothManager.getInstance().available() > 0) { // read a byte int data = BluetoothManager.getInstance().read(); //MainActivity.debug("Received byte:" + Integer.toHexString(data)); if (data != -1) { // if it is a real one char ch = (char) data; // convert it to a character if (ch == EOM) { // stop if we reached the end or if no more data is available stop = true; } else { // add it to the readBuffer readBuffer.append(ch); } } //} else { // //stop = true; } } catch (IOException e) { e.printStackTrace(); } runtime = Calendar.getInstance().getTimeInMillis() - start; } //MainActivity.debug("Recv < " + readBuffer + ", runtime:" + runtime); return readBuffer.toString().replaceAll("\\s", ""); // all whitespace is removed } @Override public void clearFields() { super.clearFields(); } @Override public Message requestFreeFrame(Frame frame) { // build the command string to send to the remote device // CanSee maintains a table of all received free frames and immediately responds with // the last known frame String command = "g" + frame.getFromIdHex(); return responseToMessage(frame, command, TIMEOUT_FREE); } @Override public Message requestIsoTpFrame(Frame frame) { // build the command string to send to the remote device // Note that all ISOTP handling is done by the CanSee device String command = "i" + frame.getFromIdHex() + "," + frame.getRequestId() + "," + frame.getResponseId(); return responseToMessage(frame, command, TIMEOUT_ISO); } private Message responseToMessage(Frame frame, String command, int timeout) { // convert CanSee output to a Message object MainActivity.debug("CanSee.rtm.send [" + command + "]"); String text = sendAndWaitForAnswer(command, 0, timeout); // send and wait for an answer, no delay MainActivity.debug("CanSee.rtm.receive [" + text + "]"); if (text.length() == 0) { //wrongCount++; if (wrongCount > WRONG_THRESHOLD) { wrongCount = 0; (new Thread(() -> { MainActivity.getInstance().stopBluetooth(false); MainActivity.getInstance().reloadBluetooth(false); })).start(); } return new Message(frame, "-E-CanSee.rtm.empty", true); } // split up the fields String[] pieces = text.trim().split(","); if (pieces.length < 2) { MainActivity.debug("CanSee.rtm.nocomma [" + text + "]"); return new Message(frame, "-E-CanSee.rtm.nocomma:" + text, true); } int id; try { id = Integer.parseInt(pieces[0].trim(), 16); } catch (NumberFormatException e) { MainActivity.debug("CanSee.rtm.Nan [" + text + "]"); return new Message(frame, "-E-CanSee.rtm.Nan:" + text, true); } if (id != frame.getFromId()) { MainActivity.debug("CanSee.rtm.diffid [" + text + "]"); return new Message(frame, "-E-CanSee.rtm.diffid:" + text, true); } wrongCount = 0; return new Message(frame, pieces[1].trim().toLowerCase(), false); } @Override public boolean initDevice(int toughness) { return initDevice(toughness, 1); } @Override protected boolean initDevice(int toughness, int retries) { if (BuildConfig.BRANCH.equals("master") || !BuildConfig.DEBUG) { sendAndWaitForAnswer("n110,0", 0, TIMEOUT_FREE); // disable all serial when on master branch sendAndWaitForAnswer("n114,0", 0, TIMEOUT_FREE); // disable all debugging when on master branch } else { sendAndWaitForAnswer("n110,0", 0, TIMEOUT_FREE); // enable all serial sendAndWaitForAnswer("n114,fe", 0, TIMEOUT_FREE); // enable all default debugging, except reception of free frames } lastInitProblem = ""; return true; } @Override public void stopAndJoin() { super.stopAndJoin(); BluetoothManager.getInstance().disconnect(); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/devices/Device.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.devices; import java.util.ArrayList; import java.util.Calendar; import java.util.Collections; import java.util.Comparator; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.actors.Frame; import lu.fisch.canze.actors.Message; import lu.fisch.canze.actors.VirtualField; import lu.fisch.canze.bluetooth.BluetoothManager; import lu.fisch.canze.database.CanzeDataSource; /** * This class defines an abstract device. It has to manage the device related * decoding of the incoming data as well as the data flow to the device or * whatever is needed to "talk" to it. *

* Created by robertfisch on 07.09.2015. */ public abstract class Device { public static final int INTERVAL_ASAP = 0; // follows frame rate public static final int INTERVAL_ASAPFAST = -1; // truly as fast as possible public static final int INTERVAL_ONCE = -2; // one shot protected static final int TOUGHNESS_HARD = 0; // hardest reset possible (ie atz) protected static final int TOUGHNESS_MEDIUM = 1; // medium reset (i.e. atws) protected static final int TOUGHNESS_SOFT = 2; // softest reset (i.e atd for ELM) protected static final int TOUGHNESS_NONE = 100; // just clear error status private final double minIntervalMultiplicator = 1.3; private final double maxIntervalMultiplicator = 2.5; double intervalMultiplicator = minIntervalMultiplicator; private boolean deviceIsInitialized = false; // if true initConnection will only start a new pollerthread /* ---------------------------------------------------------------- * Attributes \ -------------------------------------------------------------- */ /** * A device will "monitor" or "request" a given number of fields from * the connected CAN-device, so this is the list of all fields that * have to be read and updated. */ protected final ArrayList fields = new ArrayList<>(); /** * Some fields will be custom, activity based */ private ArrayList activityFieldsScheduled = new ArrayList<>(); private ArrayList activityFieldsAsFastAsPossible = new ArrayList<>(); /** * Some other fields will have to be queried anyway, * such as e.g. the speed --> safe mode driving */ private ArrayList applicationFields = new ArrayList<>(); /** * The index of the actual field to query. * Loops over ther "fields" array */ //protected int fieldIndex = 0; private int activityFieldIndex = 0; private boolean pollerActive = false; Thread pollerThread; /** * lastInitProblem should be filled with a descriptive problem description by the initDevice implementation. In normal operation we don't care * because a device either initializes or not, but for testing a new device this can be very helpful. */ String lastInitProblem = ""; /* ---------------------------------------------------------------- * Abstract methods (to be implemented in each "real" device) \ -------------------------------------------------------------- */ /** * A device may need some initialisation before data can be requested. */ public void initConnection() { MainActivity.debug("Device.initConnection: start"); if (BluetoothManager.getInstance().isConnected()) { MainActivity.debug("Device.initConnection: BT is connected"); // make sure we only have one poller task if (pollerThread == null) { MainActivity.debug("Device.initConnection: starting new poller"); // post a task to the UI thread setPollerActive(true); Runnable r = new Runnable() { @Override public void run() { // if the device has been initialised and we got an answer // TOUGHNESS_NONE does basically nothing if (initDevice(deviceIsInitialized ? TOUGHNESS_NONE : TOUGHNESS_HARD)) { deviceIsInitialized = true; while (isPollerActive()) { // MainActivity.debug("Device: inside poller thread"); if (applicationFields.size() + activityFieldsScheduled.size() + activityFieldsAsFastAsPossible.size() == 0 || !BluetoothManager.getInstance().isConnected()) { // MainActivity.debug("Device.poller: no work"); try { if (isPollerActive()) Thread.sleep(1000); else return; } catch (Exception e) { // ignore a sleep exception } } // query a field else { if (isPollerActive()) { MainActivity.debug("Device.poller: Doing next query"); queryNextFilter(); } else return; } } // dereference the poller thread (it i stopped now anyway!) MainActivity.debug("Device.poller stopped"); pollerThread = null; } else { MainActivity.debug("Device.poller: initDevice failed"); deviceIsInitialized = false; // first check if we have not yet been killed! if (isPollerActive()) { MainActivity.debug("Device.poller: restarting Bluetooth"); // drop the BT connexion and try again (new Thread(new Runnable() { @Override public void run() { // stop the BT but don't reset the device registered fields MainActivity.getInstance().stopBluetooth(false); // reload the BT with filter registration MainActivity.getInstance().reloadBluetooth(false); //BluetoothManager.getInstance().connect(); pollerThread = null; // but we are still quitting the poller thread } })).start(); } } } }; pollerThread = new Thread(r); // start the thread pollerThread.start(); } // never mind, the BT is active, and the poller thread is running. Nothing to do } else { MainActivity.debug("Device.initConnection: BT is not connected"); if (pollerThread != null && pollerThread.isAlive()) { MainActivity.debug("Device.initConnection: stopping poller"); setPollerActive(false); try { pollerThread.join(); } catch (Exception e) { e.printStackTrace(); } } } } public Message injectRequest(String sid) { Field field = Fields.getInstance().getBySID(sid); if (field == null) return null; return injectRequest(field.getFrame()); } // stop the poller and request a frame (new!) public Message injectRequest(Frame frame) { if (frame == null) return null; // stop the poller and wait for it to become inactive stopAndJoin(); Message message = requestFrame(frame); // restart the poller initConnection(); // return the captured message return message; } // stop the poller and request multiple frames (new!) public Message injectRequests(Frame[] frames) { return injectRequests(frames, false, false); } // stop the poller and request multiple frames (new!) // this variant will be very useful for ie LoadAllData public Message injectRequests(Frame[] frames, boolean stopOnError, boolean callOnMessageComplete) { // stop the poller and wait for it to become inactive stopAndJoin(); Message message = null; for (Frame frame : frames) { if (frame != null) { message = requestFrame(frame); if (stopOnError && (message == null || message.isError())) break; if (message != null && callOnMessageComplete) { if (!message.isError()) { message.onMessageCompleteEvent(); } else { message.onMessageIncompleteEvent(); } } } } // restart the poller initConnection(); // return the last captured message return message; } // query the device for the next filter private void queryNextFilter() { if (applicationFields.size() + activityFieldsScheduled.size() + activityFieldsAsFastAsPossible.size() > 0) { try { Field field = getNextField(); if (field == null) { // MainActivity.debug("Device: got no next field --> sleeping"); // no next field ---> sleep try { Thread.sleep(200); } catch (Exception e) { // ignore a sleep exception } } else { // long start = Calendar.getInstance().getTimeInMillis(); // MainActivity.debug("Device: queryNextFilter: " + field.getSID()); MainActivity.getInstance().dropDebugMessage(field.getSID()); // get the data Message message = requestFrame(field.getFrame()); // test if we got something if (!message.isError()) { MainActivity.getInstance().appendDebugMessage("ok"); // trigger the compete event of the message. It will update all fields linked to it's corresponding frame message.onMessageCompleteEvent(); if (field.getInterval() == INTERVAL_ONCE) { removeActivityField(field); } } else { if (message.isError7f()) { message.onMessageIncompleteEvent(); return; } // one plain retry MainActivity.getInstance().appendDebugMessage("..."); message = requestFrame(field.getFrame()); if (!message.isError()) { MainActivity.getInstance().appendDebugMessage("ok"); message.onMessageCompleteEvent(); if (field.getInterval() == INTERVAL_ONCE) { removeActivityField(field); } } else { if (message.isError7f()) { message.onMessageIncompleteEvent(); return; } MainActivity.getInstance().appendDebugMessage("fail"); // failed after single retry. Mark underlying fields as updated to avoid // queue clogging. The frame will have to get back to the end of the queue message.onMessageIncompleteEvent(); // reset if something went wrong ... // ... but only if we are not asked to stop! if (BluetoothManager.getInstance().isConnected()) { MainActivity.debug("Device.queryNextFilter: Re-initializing"); deviceIsInitialized = false; // force a true device init initDevice(TOUGHNESS_MEDIUM, 2); // toughness = 1, retries = 2 } } } } } // if any error occures, reset the fieldIndex catch (Exception e) { e.printStackTrace(); } } } private Field getNextField() { long referenceTime = Calendar.getInstance().getTimeInMillis(); synchronized (fields) { if (applicationFields.size() > 0) { // get the first field (the one with the smallest lastRequest time Field field = Collections.min(applicationFields, new Comparator() { @Override public int compare(Field lhs, Field rhs) { return (int) (lhs.getLastRequest() + lhs.getInterval() - (rhs.getLastRequest() + rhs.getInterval())); } }); // return it's index in the global registered field array if (field.isDue(referenceTime)) { //MainActivity.debug(Calendar.getInstance().getTimeInMillis()/1000.+" > Chosing: "+field.getSID()); MainActivity.debug("Device.getNextField (" + pollerThread.getId() + "): applicationFields, " + field.getSID()); return field; } } // take the next custom field if (activityFieldsScheduled.size() > 0) { // get the first field (the one with the smallest lastRequest time Field field = Collections.min(activityFieldsScheduled, new Comparator() { @Override public int compare(Field lhs, Field rhs) { return (int) (lhs.getLastRequest() + lhs.getInterval() - (rhs.getLastRequest() + rhs.getInterval())); } }); // return it's index in the global registered field array if (field.isDue(referenceTime)) { //MainActivity.debug(Calendar.getInstance().getTimeInMillis()/1000.+" > Chosing: "+field.getSID()); MainActivity.debug("Device.getNextField (" + pollerThread.getId() + "): activityFieldsScheduled, " + field.getSID()); return field; } } if (activityFieldsAsFastAsPossible.size() > 0) { activityFieldIndex = (activityFieldIndex + 1) % activityFieldsAsFastAsPossible.size(); Field field = activityFieldsAsFastAsPossible.get(activityFieldIndex); MainActivity.debug("Device.getNextField (" + pollerThread.getId() + "): activityFieldsAsFastAsPossible, " + field.getSID()); return field; } MainActivity.debug("Device.getNextField (" + pollerThread.getId() + "): empty:" + applicationFields.size() + " / " + activityFieldsScheduled.size() + " / " + activityFieldsAsFastAsPossible.size()); return null; } } public void join() throws InterruptedException { if (pollerThread != null) pollerThread.join(); } /* ---------------------------------------------------------------- * Methods (that will be inherited by any "real" device) \ -------------------------------------------------------------- */ /** * This method clears the list of monitored fields, * but only the custom ones ... */ public void clearFields() { MainActivity.debug("Device.clearFields: start"); synchronized (fields) { activityFieldsScheduled.clear(); activityFieldsAsFastAsPossible.clear(); fields.clear(); fields.addAll(applicationFields); } } /** * A CAN message will trigger updates for all connected fields, meaning * any field with the same ID and the same responseID will be updated. * For this reason we don't need to query these fields multiple times * in one turn. * * @param _field the field to be tested * @return boolean true if field's frame is already monitored */ private boolean containsField(Field _field) { for (int i = 0; i < fields.size(); i++) { Field field = fields.get(i); if (field.getId() == _field.getId() && field.getResponseId().equals(_field.getResponseId())) return true; } return false; } private boolean containsApplicationField(Field _field) { for (int i = 0; i < applicationFields.size(); i++) { Field field = applicationFields.get(i); if (field.getId() == _field.getId() && field.getResponseId().equals(_field.getResponseId())) return true; } return false; } private boolean containsActivityFieldScheduled(Field _field) { for (int i = 0; i < activityFieldsScheduled.size(); i++) { Field field = activityFieldsScheduled.get(i); if (field.getId() == _field.getId() && field.getResponseId().equals(_field.getResponseId())) return true; } return false; } private boolean containsActivityFieldAsFastAsPossible(Field _field) { for (int i = 0; i < activityFieldsAsFastAsPossible.size(); i++) { Field field = activityFieldsAsFastAsPossible.get(i); if (field.getId() == _field.getId() && field.getResponseId().equals(_field.getResponseId())) return true; } return false; } /** * Method to add a field to the list of monitored field. * The field is also immediately registered onto the device. * * @param field the field to be added */ private void addActivityField(final Field field) { // ass already present listeners are no being re-registered, do this always // register it to be saved to the database field.addListener(CanzeDataSource.getInstance()); if (!field.isVirtual()) { synchronized (fields) { if (!containsField(field)) { // add it to the lists fields.add(field); activityFieldsAsFastAsPossible.add(field); // if the scheduled list constains the same frame id, // it can be removed there if (containsActivityFieldScheduled(field)) activityFieldsScheduled.remove(field); } if (!containsActivityFieldAsFastAsPossible(field)) { activityFieldsAsFastAsPossible.add(field); // if the scheduled list constains the same frame id, // it can be removed there if (containsActivityFieldScheduled(field)) activityFieldsScheduled.remove(field); } } } // register real fields on which a virtual field may depend else { VirtualField virtualField = (VirtualField) field; for (Field realField : virtualField.getFields()) { addActivityField(realField); } } } /* JM: I made addActivity without interval private, as to change the behavior with interval 0, which is used throughout the code to mean "we don't care, as fast as possible" */ public void addActivityField(final Field field, int interval) { /* JM changed behavior interval > 0 is interval interval == INTERVAL_ASAP (0) is frame repeat interval (as given in the frame assets, especially relevant for freeframes) interval == INTERVAL_ASAPFAST (-1) is ASAP (note: old behavior is ASAP for ANYTHING negative, but I am pretty sure only -1 was ever used). This should be used sparingly, if at all. The only reason I can think of is for a fast ISO-TP field which has no known interval rate interval == INTERVAL_ONCE) (-2) is add, but remove after one successful execution (in the poller thread). This is very useful for i.e. tester present messages */ if (field.isSelfPropelled()) { //if self propelled, do not add to queue return; } else if (interval > INTERVAL_ASAP) { // interval is a ms value. Continue // Nothing } else if (interval == INTERVAL_ASAP) { // if INTERVAL_ASAP, get from the frame definition interval = field.getFrame().getInterval(); } else if (interval == INTERVAL_ASAPFAST) { // if INTERVAL_ASAP, add to the ASAP queue addActivityField(field); return; } else if (interval == INTERVAL_ONCE) { // if INTERVAL_ONCE. Continue // Nothing. The INTERVAL_ONCE will be picked up by the poller } else { // abort return; } // ass already present listeners are no being re-registered, do this always // register it to be saved to the database field.addListener(CanzeDataSource.getInstance()); if (!field.isVirtual()) { synchronized (fields) { if (!containsField(field)) { // add it to the lists fields.add(field); activityFieldsScheduled.add(field); // set the fields query interval field.setInterval(interval); } if (!containsActivityFieldScheduled(field)) { // only add it this field id is not yet on the list of the // request as fast as possible list. if (!containsActivityFieldAsFastAsPossible(field)) activityFieldsScheduled.add(field); // the fields interval will be ignored as the one from the // applicationFields has priority } else { // the smallest interval is the one to take if (interval < field.getInterval()) field.setInterval(interval); } } } // register real fields on which a virtual field may depend else { VirtualField virtualField = (VirtualField) field; for (Field realField : virtualField.getFields()) { // increase interval addActivityField(realField, interval * virtualField.getFields().size()); } } } public void removeActivityField(final Field field) { synchronized (fields) { // only remove from the custom fields if (activityFieldsScheduled.remove(field)) { //field.setInterval(Integer.MAX_VALUE); //return; /* // remove it from the database if it is not on the other list if (!containsApplicationField(field) && !containsActivityFieldAsFastAsPossible(field)) { fields.remove(field); field.setInterval(Integer.MAX_VALUE); // un-register it ... field.removeListener(CanzeDataSource.getInstance()); } } } } public void addApplicationField(final Field field, int interval) { // as already present listeners are not being re-registered, do this always // register it to be saved to the database field.addListener(CanzeDataSource.getInstance()); if (!field.isVirtual()) { synchronized (fields) { if (!containsField(field)) { // set the fields query interval field.setInterval(interval); // add it to the two lists fields.add(field); applicationFields.add(field); } } } // register real fields on which a virtual field may depend else { VirtualField virtualField = (VirtualField) field; for (Field realField : virtualField.getFields()) { // increase interval addApplicationField(realField, interval * virtualField.getFields().size()); } } } public void removeApplicationField(final Field field) { synchronized (fields) { // only remove from the custom fields if (applicationFields.remove(field)) { // remove it from the database if it is not on the other list if (!containsActivityFieldScheduled(field) && !containsActivityFieldAsFastAsPossible(field)) { fields.remove(field); field.setInterval(Integer.MAX_VALUE); // un-register it ... field.removeListener(CanzeDataSource.getInstance()); } } } // remove depenand fields // ATTENTION; remove the field, despite if it is used by some other VF or not! //if(field.isVirtual()) //{ // may break something, so please do it manually if really needed! //} } /* ---------------------------------------------------------------- * Methods (that will be inherited by any "real" device) \ -------------------------------------------------------------- */ public void init(boolean reset) { // init the connection initConnection(); if (reset) { // clean all filters (just to make sure) clearFields(); MainActivity.debug("Device.init: done, reset"); } else MainActivity.debug("Device.init: done, noreset"); } /** * Stop the poller thread and wait for it to be finished */ public void stopAndJoin() { MainActivity.debug("Device.stopAndJoin: start"); setPollerActive(false); try { if (pollerThread != null && pollerThread.isAlive()) { MainActivity.debug("Device.stopAndJoin: poller informed. Joining thread"); if (pollerThread != null) pollerThread.join(); pollerThread = null; } else MainActivity.debug("Device.stopAndJoin: pollerThread is null"); } catch (Exception e) { e.printStackTrace(); } MainActivity.debug("Device.stopAndJoin: poller stopped"); } private boolean isPollerActive() { return pollerActive; } void setPollerActive(boolean pollerActive) { this.pollerActive = pollerActive; } /** * Request a field from the device depending on the * type of field. * * @param frame the field to be requested * @return Message containing the response or an error */ public Message requestFrame(Frame frame) { Message msg; if (frame == null) return null; if (frame.isIsoTp()) { msg = requestIsoTpFrame(frame); } else { if (MainActivity.altFieldsMode) MainActivity.toast(MainActivity.TOAST_NONE, "Free frame in ISOTP mode:" + frame.getRID()); // MainActivity.debug("********* free frame in alt mode ********: " + frame.getRID()); msg = requestFreeFrame(frame); } if (msg.isError()) { MainActivity.debug("Device.requestframe: " + frame.getRID() + " returned error " + msg.getError()); // when the answer is empty, the timeout is to low --> increase it! if (intervalMultiplicator < maxIntervalMultiplicator) { intervalMultiplicator += 0.1; MainActivity.debug("Device.requestframe: intervalMultiplicator+ = " + intervalMultiplicator); } } else { MainActivity.debug("Device.requestframe: request for " + frame.getRID() + " returned data " + msg.getData()); // theory: when the answer is good, we might recover slowly --> decrease it! // jm: but never below 1 ----> 2015-12-14 changed 10 1.3 if (intervalMultiplicator > minIntervalMultiplicator) { intervalMultiplicator -= 0.01; MainActivity.debug("Device.requestframe: intervalMultiplicator- = " + intervalMultiplicator); } } return msg; } /** * Request a free-frame type field from the device * * @param frame The frame requested * @return Message */ public abstract Message requestFreeFrame(Frame frame); /** * Request an ISO-TP frame type from the device * * @param frame The frame requested * @return Message */ public abstract Message requestIsoTpFrame(Frame frame); public abstract boolean initDevice(int toughness); protected abstract boolean initDevice(int toughness, int retries); public String getLastInitProblem() { return lastInitProblem; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/devices/ELM327.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.devices; import java.io.IOException; import java.util.Calendar; import lu.fisch.canze.R; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.actors.Ecu; import lu.fisch.canze.actors.Ecus; import lu.fisch.canze.actors.Frame; import lu.fisch.canze.actors.Message; import lu.fisch.canze.bluetooth.BluetoothManager; /** * Created by robertfisch on 07.09.2015. * Main loop fir ELM */ public class ELM327 extends Device { // Implementation of requestFreeFrame and requestIsotpFrame for the eLM327 style KONNWEI and // comparable drivers. Note that all ISOTP handling is done in this driver, as well as the // low level serial command interface. // Note that the output of the driver is an object of the type Message // This is a fairly complex driver dealing with subtle intricacies and it's better not touched // without extensive testing afterwards. Any assumpion may safely be considered wrong ;-) // define the Timeout we may wait to get an answer private static int DEFAULT_TIMEOUT = 500; private static int MINIMUM_TIMEOUT = 100; private int generalTimeout = 500; // define End Of Message for this type of reader private static final char EOM1 = '\r'; private static final char EOM2 = '>'; private static final char EOM3 = '?'; private boolean deviceIsInitialized = false; private int lastId = 0; // used to skip sending unneeded commands private boolean lastCommandWasFreeFrame = false; // ditto protected boolean initDevice(int toughness, int retries) { if (initDevice(toughness)) return true; while (retries-- > 0) { MainActivity.debug("ELM327: flushWithTimeout"); flushWithTimeout(500); MainActivity.debug("ELM327: initDevice(" + toughness + "), " + retries + " retries left"); if (initDevice(toughness)) return true; } MainActivity.toast(MainActivity.TOAST_ELM, R.string.message_HardResetFailed); MainActivity.debug("ELM327: Hard reset failed, restarting Bluetooth ..."); ///----- WE ARE HERE INSIDE THE POLLER THREAD, SO ///----- JOINING CAN'T WORK! // ... but we don't want the next request to happen, // so we need to stop the poller here anyway, but // DO NOT JOIN IT! setPollerActive(false); (new Thread(new Runnable() { @Override public void run() { // -- give up and restart BT // stop BT without resetting the registered fields MainActivity.debug("ELM327: stopBluetooth (via MainActivity)"); MainActivity.getInstance().stopBluetooth(false); // restart BT without reloading all settings MainActivity.debug("ELM327: reloadBluetooth (via MainActivity)"); MainActivity.getInstance().reloadBluetooth(false); } })).start(); return false; } public boolean initDevice(int toughness) { MainActivity.debug("ELM327: initDevice (" + toughness + ")"); String response; int elmVersion = 0; lastInitProblem = ""; // ensure the dongle header field is set again lastId = 0; // extremely soft, just clear the global error condition if (toughness == TOUGHNESS_NONE) { deviceIsInitialized = true; return deviceIsInitialized; } killCurrentOperation(); if (toughness == TOUGHNESS_HARD || toughness == TOUGHNESS_MEDIUM) { // the default 500mS should be enough to answer, however, the answer contains various 's, so we need to set untilEmpty to true response = sendAndWaitForAnswer("atws", 500, true, -1, true); } else { // TOUGHNESS_WEAK response = sendAndWaitForAnswer("atd", 500, true, -1, true); MainActivity.debug("ELM327: version = " + response); } MainActivity.debug("ELM327: version: [" + response + "]"); response = response.trim(); if (response.equals("")) { lastInitProblem = "ELM is not responding (toughness = " + toughness + ")"; MainActivity.toast(MainActivity.TOAST_ELM, lastInitProblem); return false; } // only do version control at a full reset if (toughness <= TOUGHNESS_MEDIUM) { if (response.toUpperCase().contains("V1.3")) { elmVersion = 13; } else if (response.toUpperCase().contains("V1.4")) { elmVersion = 14; } else if (response.toUpperCase().contains("V1.5")) { elmVersion = 15; } else if (response.toUpperCase().contains("V2.")) { elmVersion = 20; } else if (response.toUpperCase().contains("INNOCAR")) { elmVersion = 8015; } else { lastInitProblem = "Unrecognized ELM version response [" + response.replace("\r", "").replace(" ", "") + "]"; MainActivity.toast(MainActivity.TOAST_ELM, lastInitProblem); return false; } } deviceIsInitialized = false; // ***** CanZE version ******************************************************************* // ate0 (no echo. At this point, echo is still on (except when atd was issued), so // we still need to absorb the echoed command. After this point, echo is // finally off so we can safely check for OK messages. If the app starts // responding with toasts showing the responses in brackets equal to the // commands, somehow the echo was not executed. so maybe we need to check for // that specific condition in the next command.) // ats0 (no spaces) // atsp6 (CAN 500K 11 bit) // atat1 (auto timing) // atcaf0 (no formatting) // atfcsh77b (flow control response ID to 77b. This is needed to be able to set the flow // control response. Any ID would be fine // atfcsd300010 (the flow control response data to 300010 (flow control, clear to send, // all frames, 16 ms wait between frames. Note that it is not possible to let // the ELM request each frame as the Altered Flow Control only responds to a // FRST, not a NEXT) // atfcsm1 (flow control mode 1: ID and data suplied) //String[] commands = "ate0;ats0;atsp6;atat1;atcaf0;atfcsh77b;atfcsd300010;atfcsm1".split(";"); // ***** DDT4ALL version ***************************************************************** // ate1 (echo on) ==> we don't do this // ats0 (no spaces) // ath0 (headers off = default) // atl0 (Linefeeds off) // atal (allow long messages) // atcaf0 (no formatting) // Here they stop initialization and do the remainder per ECU. // We do ATSH and ATFCSH too per request (since we constantly switch ECU's, // (we can optimize that, remember last ECU), however they also do flow control // initialisation and bus speed, per ECU, which we prefer to do here. // We also skip ATCRA (see comments at freeframe) // atfcsh77b (flow control response ID to 77b. This is needed to be able to set the flow // control response. Any ID would be fine // atfcsd300000 (the flow control response data to 300010 (flow control, clear to send, // all frames, no wait between frames. Note that it is not possible to let // the ELM request each frame as the Altered Flow Control only responds to a // FRST, not a NEXT) // atsp6 (CAN 500K 11 bit) ==> might need to change that if we want to support // pin re-assignment to ie the MM bus String[] commands = "ate0;ats0;ath0;atl0;atal;atcaf0;atfcsh77b;atfcsd300000;atfcsm1;atsp6".split(";"); boolean first = true; for (String command : commands) { if (!initCommandExpectOk(command, first)) { lastInitProblem = command + " command problem"; return deviceIsInitialized; } first = false; } if (toughness == TOUGHNESS_HARD) { switch (elmVersion) { case 13: MainActivity.toast(MainActivity.TOAST_ELM, R.string.message_ELM13Ready); break; case 14: MainActivity.toast(MainActivity.TOAST_ELM, R.string.message_ELM13Ready); break; case 15: MainActivity.toast(MainActivity.TOAST_ELM, R.string.message_ELMReady); break; case 20: lastInitProblem = MainActivity.getStringSingle(R.string.message_ELM20Ready); MainActivity.toast(MainActivity.TOAST_ELM, lastInitProblem); break; case 8015: MainActivity.toast(MainActivity.TOAST_ELM, R.string.message_ELM8015Ready); break; // default should never be reached!! default: lastInitProblem = MainActivity.getStringSingle(R.string.message_ELMUnknown); MainActivity.toast(MainActivity.TOAST_ELM, lastInitProblem); break; } } deviceIsInitialized = true; return deviceIsInitialized; } private void killCurrentOperation() { // ensure any running operation is stopped // sending a return might restart the last command. Bad plan. sendNoWait("x"); // discard everything that still comes in flushWithTimeoutCore(200, '\0'); // if a command was running, it is interrupted now and the ELM is waiting for a command. // However, if there was no command running, the x in the buffer will screw up the next // command. There are two possibilities: Sending a Backspace and hope for the best, or // sending x and being sure the ELM will report an unknown command (prompt a ? mark), // as it will be processing either x or xx . We choose the latter and discard // the ? anser sendNoWait("x\r"); if (!flushWithTimeoutCore(500, '\0')) { MainActivity.debug("ELM327: KillCurrentOperation unable to flush after x"); } } private void flushWithTimeout(int timeout) { flushWithTimeout(timeout, '\0'); } private void flushWithTimeout(int timeout, char eom) { if (flushWithTimeoutCore(timeout, eom)) return; killCurrentOperation(); } private boolean flushWithTimeoutCore(int timeout, char eom) { // empty incoming buffer // just make sure there is no previous response // the ELM might be in a mode where it is spewing out data, and that might put this // method in an endless loop. If there are more than 100 character flushed, return false // this should normally be followed by a failure and thus device re-initialisation int count = 100; try { // fast track, don't use expensive calendar..... if (timeout == 0) { while (BluetoothManager.getInstance().isConnected() && BluetoothManager.getInstance().available() > 0) { BluetoothManager.getInstance().read(); if (count-- == 0) return false; } } else { long end = Calendar.getInstance().getTimeInMillis() + timeout; while (Calendar.getInstance().getTimeInMillis() < end) { // read a byte if (!BluetoothManager.getInstance().isConnected()) return false; if (BluetoothManager.getInstance().available() > 0) { // absorb the characters while (BluetoothManager.getInstance().available() > 0) { int c = BluetoothManager.getInstance().read(); if (c == (int) eom) return true; if (count-- == 0) return false; } // restart the timer end = Calendar.getInstance().getTimeInMillis() + timeout; } else { // let the system breath if there was no data Thread.sleep(5); } } } } catch (IOException | InterruptedException e) { // ignore } return true; } private boolean initCommandExpectOk(String command) { return initCommandExpectOk(command, false, true); } private boolean initCommandExpectOk(String command, boolean untilEmpty) { return initCommandExpectOk(command, untilEmpty, true); } private boolean initCommandExpectOk(String command, boolean untilEmpty, boolean addReturn) { String response = ""; for (int i = 2; i > 0; i--) { if (untilEmpty) { response = sendAndWaitForAnswer(command, 40, true, -1, addReturn); // wait 40 ms for untilempty } else { response = sendAndWaitForAnswer(command, 0, false, -1, addReturn); // // just one line } if (response.toUpperCase().contains("OK")) return true; // we're done if we got an OK if (MainActivity.altFieldsMode) untilEmpty = true; // crappy dongles answer with things like CR > LF [space] } // we've tried and tried and failed here /* if (timeoutLogLevel >= 2 || (timeoutLogLevel >= 1 && !command.startsWith("atma") && command.startsWith("at"))) { MainActivity.toast("Err " + command + " [" + response.replace("\r", "").replace(" ", "") + "]"); } */ MainActivity.toast(MainActivity.TOAST_ELM, "Error [" + command + "] [" + response.replace("\r", "").replace(" ", "") + "]"); MainActivity.debug("ELM327.initCommandExpectOk c:" + command + ", untilempty:" + untilEmpty + " res:" + response); return false; } private void sendNoWait(String command) { if (!BluetoothManager.getInstance().isConnected()) return; if (command != null) { BluetoothManager.getInstance().write(command); } } private String sendAndWaitForAnswer(String command, int waitMillis) { return sendAndWaitForAnswer(command, waitMillis, false, -1, true); } private String sendAndWaitForAnswer(String command, int waitMillis, int answerLinesCount) { return sendAndWaitForAnswer(command, waitMillis, false, answerLinesCount, true); } private String sendAndWaitForAnswer(String command, int waitMillis, boolean untilEmpty) { return sendAndWaitForAnswer(command, waitMillis, untilEmpty, -1, true); } private String sendAndWaitForAnswer(String command, int waitMillis, boolean untilEmpty, int answerLinesCount, boolean addReturn) { int maxUntilEmptyCounter = 10; int maxLengthCounter = 500; // char = nibble, so 2000 bits if (!BluetoothManager.getInstance().isConnected()) return ""; if (command != null) { flushWithTimeout(10, '>'); // send the command BluetoothManager.getInstance().write(command + (addReturn ? "\r" : "")); } MainActivity.debug("Send > "+command); // wait if needed (JM: tbh, I think waiting here is never needed. Any waiting should be handled in the wait for an answer timeout. But that's me. /* if(waitMillis>0) { try { Thread.sleep(waitMillis); } catch (InterruptedException e) { e.printStackTrace(); } } */ // init the buffer boolean stop = false; StringBuilder readBuffer = new StringBuilder(); // wait for answer long end = Calendar.getInstance().getTimeInMillis() + generalTimeout; boolean timedOut = false; while (!stop && !timedOut) { //MainActivity.debug("Delta = "+(Calendar.getInstance().getTimeInMillis()-start)); try { // read a byte if (BluetoothManager.getInstance().isConnected() && BluetoothManager.getInstance().available() > 0) { //MainActivity.debug("Reading ..."); int data = BluetoothManager.getInstance().read(); //MainActivity.debug("... done"); // if it is a real one if (data != -1) { // we might be JUST approaching the generalTimeout, so give it a chance to get to the EOM, // end = end + 2; // convert it to a character char ch = (char) data; if (ch == '\n') ch = '\r'; // add it to the readBuffer readBuffer.append(ch); // if we reach the end of a line if (ch == EOM1 || ch == EOM2 || ch == EOM3) { //MainActivity.debug("ALC: "+answerLinesCount+")\n"+readBuffer); // decrease awaiting answer lines answerLinesCount--; // if we not asked to keep on and we got enough lines, stop if (!untilEmpty) { if (answerLinesCount <= 0) { // the number of lines is in //MainActivity.debug("ELM327: sendAndWaitForAnswer > stop on decimal char [" + data + "]"); stop = true; // so quit } else // the number of lines is NOT in { end = Calendar.getInstance().getTimeInMillis() + generalTimeout; // so restart the timeout } } else { // if (untilEmpty) { stop = (BluetoothManager.getInstance().available() == 0); // a problem here is that we assume the next character is already available, which might not be the case, so adding..... if (stop) { // wait a fraction try { //Thread.sleep(50); if (waitMillis > 50) { Thread.sleep(400); } else { Thread.sleep(50); } end = Calendar.getInstance().getTimeInMillis() + generalTimeout; } catch (InterruptedException e) { // do nothing } stop = (BluetoothManager.getInstance().available() == 0); } else { if (--maxUntilEmptyCounter <= 0) timedOut = true; // well, this is a timed"In", as in, too many lines } } } else { if (--maxLengthCounter <= 0) timedOut = true; // well, this is a timed"In", as in, too many lines } } } else { // let the system breath if there was no data try { Thread.sleep(10); } catch (InterruptedException e) { // do nothing } } if (Calendar.getInstance().getTimeInMillis() > end) { timedOut = true; // MainActivity.toast("Sum Ting Wong on command " + command); } } catch (IOException e) { // ignore: e.printStackTrace(); } } // set the flag that a timeout has occurred. someThingWrong can be inspected anywhere, but we reset the device after a full filter has been run if (timedOut) { /* if (timeoutLogLevel >= 2 || (timeoutLogLevel >= 1 && (command==null || (!command.startsWith("atma") && command.startsWith("at"))))) { MainActivity.toast("Timeout on [" + command + "][" + readBuffer.replace("\r", "").replace(" ", "") + "]"); } */ MainActivity.toast(MainActivity.TOAST_ELM, "Timeout on [" + command + "] [" + readBuffer.toString().replace("\r", "").replace(" ", "") + "]"); MainActivity.debug("ELM327: sendAndWaitForAnswer > timed out on [" + command + "] [" + readBuffer.toString().replace("\r", "").replace(" ", "") + "]"); return (""); } //MainActivity.debug("ALC: "+answerLinesCount+" && Stop: "+stop+" && Delta: "+(Calendar.getInstance().getTimeInMillis()-start)); MainActivity.debug("Recv < "+readBuffer); return readBuffer.toString(); } @Override public void clearFields() { super.clearFields(); //fieldIndex=0; } @Override public Message requestFreeFrame(Frame frame) { if (!deviceIsInitialized) { return new Message(frame, "-E-Re-initialisation needed", true); } String hexData; // ensure the ATCRA filter is reset in the next NON free frame request lastCommandWasFreeFrame = true; // EML needs the filter to be 3 hex symbols and contains the from CAN id of the ECU. // getFromIdHex returns 3 chars for 11 bit id, and 8 bits for a 29 bit id String emlFilter = frame.getFromIdHex(); MainActivity.debug("ELM327: requestFreeFrame: atcra" + emlFilter); if (!initCommandExpectOk("atcra" + emlFilter)) return new Message(frame, "-E-Problem sending atcra command", true); //sendAndWaitForAnswer("atcra" + emlFilter, 400); // atma (wait for one answer line) generalTimeout = (int) (frame.getInterval() * intervalMultiplicator + 50); if (generalTimeout < MINIMUM_TIMEOUT) generalTimeout = MINIMUM_TIMEOUT; MainActivity.debug("ELM327: requestFreeFrame > TIMEOUT = " + generalTimeout); // 10 ms plus repeat time timeout, do not wait until empty, do not count lines, add \r to command hexData = sendAndWaitForAnswer("atma", frame.getInterval() + 10); MainActivity.debug("ELM327: requestFreeFrame > hexData = [" + hexData + "]"); // the dongle starts babbling now. sendAndWaitForAnswer should stop at the first full line // ensure any running operation is stopped // sending a return might restart the last command. Bad plan. sendNoWait("x"); // let it settle down, the ELM should indicate STOPPED then prompt > flushWithTimeout(100, '>'); generalTimeout = DEFAULT_TIMEOUT; // atar (clear filter) // AM has suggested the atar might not be neccesary as it might only influence cra filters and they are always set // however, make sure proper flushing is done // if cra does influence ISO-TP requests, an small optimization might be to only sending an atar when switching from free // frames to isotp frames. // if (!initCommandExpectOk("atar")) someThingWrong |= true; hexData = hexData.trim(); if (hexData.equals("")) return new Message(frame, "-E-data empty", true); else return new Message(frame, hexData, false); } @Override public Message requestIsoTpFrame(Frame frame) { if (!deviceIsInitialized) { return new Message(frame, "-E-Re-initialisation needed", true); } String hexData; int len; // PERFORMANCE ENHANCEMENT: only send ATAR if coming from a free frame if (lastCommandWasFreeFrame) { // atar (clear filter set by free frame capture method) if (!initCommandExpectOk("atar")) { return new Message(frame, "-E-Problem sending atar command", true); } lastCommandWasFreeFrame = false; } // PERFORMANCE ENHANCEMENT II: lastId contains the CAN id of the previous ISO-TP command. If // the current ID is the same, no need to re-address that ECU. Even if different ECU but // same id length, no change 11/29 bit mode needed either. // (re)enabled after 1.54 release // lastId = 0; if (lastId != frame.getFromId()) { // IIa: 11/29 bit mode change only if needed if (frame.isExtended()) { if (lastId < 0x1000) { // switch to 29 bit if (!initCommandExpectOk("atsp7",true)) return new Message(frame, "-E-Problem sending atsp7 command", true); // set prio using AT CP if (!initCommandExpectOk("atcp" + frame.getToIdHexMSB(), true)) return new Message(frame, "-E-Problem sending atcp command", true); } } else { if (lastId >= 0x1000 || lastId == 0) { // 0 check if optimization II is disabled // switch to 11 bit if (!initCommandExpectOk("atsp6", true)) return new Message(frame, "-E-Problem sending atsp6 command", true); } } // change ECU address // Set header if (!initCommandExpectOk("atsh" + frame.getToIdHexLSB())) return new Message(frame, "-E-Problem sending atsh command", true); // Set filter if (!initCommandExpectOk("atcra" + frame.getFromIdHex())) return new Message(frame, "-E-Problem sending atcra command", true); // Set flow control response ID if (!initCommandExpectOk("atfcsh" + frame.getToIdHex())) return new Message(frame, "-E-Problem sending atfcsh command", true); lastId = frame.getFromId(); } // ISOTP outgoing starts here int outgoingLength = frame.getRequestId().length(); String elmResponse = ""; if (outgoingLength <= 14) { // SINGLE transfers up to 7 bytes. If we ever implement extended addressing (which is // not the same as 29 bits mode) this driver considers this simply data // 022104 ISO-TP single frame - length 2 - payload 2104, which means PID 21 (??), id 04 (see first tab). String elmCommand = "0" + (outgoingLength / 2) + frame.getRequestId(); // send SING frame. elmResponse = sendAndWaitForAnswer(elmCommand, 0, false).replace("\r", ""); } else { int startIndex = 0; int endIndex = 12; // send FRST frame. String elmCommand = String.format("1%03X", outgoingLength / 2) + frame.getRequestId().substring(startIndex, endIndex); //flushWithTimeout(500, '>'); String elmFlowResponse = sendAndWaitForAnswer(elmCommand, 0, false).replace("\r", ""); startIndex = endIndex; if (startIndex > outgoingLength) startIndex = outgoingLength; endIndex += 14; if (endIndex > outgoingLength) endIndex = outgoingLength; int next = 1; while (startIndex < outgoingLength) { // prepare NEXT frame. elmCommand = String.format("2%01X", next) + frame.getRequestId().substring(startIndex, endIndex); // for the moment we ignore block size, just 1 or all. Also ignore delay if (elmFlowResponse.startsWith("3000")) { // The receiving ECU expects all data to be sent without further flow control, // the ELM still answers with at least a \n after each sent frame. // Since there are no further flow control frames, we just pretent the answer // of each frame is the actual answer and won't change the FlowResponse //flushWithTimeout(500, '>'); elmResponse = sendAndWaitForAnswer(elmCommand, 0, false).replace("\r", ""); } else if (elmFlowResponse.startsWith("30")) { // The receiving ECU expects the next frame of data to be sent, and it will // respond with the next flow control command, or the actual answer. We just // pretent the answer of the frame is both the actual answer as wel as the next // FlowResponse //flushWithTimeout(500, '>'); elmFlowResponse = sendAndWaitForAnswer(elmCommand, 0, false).replace("\r", ""); elmResponse = elmFlowResponse; } else { return new Message(frame, "-E-ISOTP tx flow Error:" + elmFlowResponse, true); } startIndex = endIndex; if (startIndex > outgoingLength) startIndex = outgoingLength; endIndex += 14; if (endIndex > outgoingLength) endIndex = outgoingLength; if (next == 15) next = 0; else next++; } } // ISOTP receiver starts here // clean-up if there is mess around elmResponse = elmResponse.trim(); if (elmResponse.startsWith(">")) elmResponse = elmResponse.substring(1); // quit on error conditions if (elmResponse.compareTo("CAN ERROR") == 0) { return new Message(frame, "-E-Can Error", true); } else if (elmResponse.compareTo("?") == 0) { return new Message(frame, "-E-Unknown command", true); } else if (elmResponse.compareTo("") == 0) { return new Message(frame, "-E-Empty result", true); } // get type (first nibble of first line) switch (elmResponse.substring(0, 1)) { case "0": // SINGLE frame try { len = Integer.parseInt(elmResponse.substring(1, 2), 16); // remove 2 nibbles (type + length) hexData = elmResponse.substring(2); // and we're done } catch (StringIndexOutOfBoundsException e) { return new Message(frame, "-E-ISOTP rx unexpected length of SING frame:" + elmResponse, true); } catch (NumberFormatException e) { return new Message(frame, "-E-ISOTP rx uninterpretable length of SING frame:" + elmResponse, true); } break; case "1": // FIRST frame try { len = Integer.parseInt(elmResponse.substring(1, 4), 16); // remove 4 nibbles (type + length) hexData = elmResponse.substring(4); } catch (StringIndexOutOfBoundsException e) { return new Message(frame, "-E-ISOTP rx unexpected length of FRST frame:" + elmResponse, true); } catch (NumberFormatException e) { return new Message(frame, "-E-ISOTP rx uninterpretable length of FRST frame:" + elmResponse, true); } // calculate the # of frames to come. 6 byte are in and each of the 0x2 frames has a payload of 7 bytes int framesToReceive = len / 7; // read this as ((len - 6 [remaining characters]) + 6 [offset to / 7, so 0->0, 1-7->7, etc]) / 7 // get all remaining 0x2 (NEXT) frames String lines0x1 = sendAndWaitForAnswer(null, 0, framesToReceive); // split into lines with hex data String[] hexDataLines = lines0x1.split("[\\r]+"); int next = 1; for (String hexDataLine : hexDataLines) { // ignore empty lines hexDataLine = hexDataLine.trim(); if (hexDataLine.length() > 2) { // check the proper sequence if (hexDataLine.startsWith(String.format("2%01X", next))) { // cut off the first byte (type + sequence) and add to the result hexData += hexDataLine.substring(2); } else { return new Message(frame, "-E-ISOTP rx out of sequence:" + hexDataLine, true); } if (next == 15) next = 0; else next++; } } break; default: // a NEXT, FLOWCONTROL should not be received. Neither should any other string (such as NO DATA) flushWithTimeout(400, '>'); return new Message(frame, "-E-ISOTP rx unexpected 1st nibble of 1st frame:" + elmResponse, true); } // There was spurious error here, that immediately sending another command STOPPED the still not entirely finished ISO-TP command. // It was probably still sending "OK>" or just ">". So, the next command files and if it was i.e. an atcra f a free frame capture, // the following ATMA immediately overwhelmed the ELM as no filter was set. // As a solution, added this wait for a > after an ISO-TP command. flushWithTimeout(400, '>'); len *= 2; // Having less data than specified in length is actually an error, but at least we do not need so substr it // if there is more data than specified in length, that is OK (filler bytes in the last frame), so cut those away hexData = (hexData.length() <= len) ? hexData.trim().toLowerCase() : hexData.substring(0, len).trim().toLowerCase(); if (hexData.equals("")) return new Message(frame, "-E-ISOTP rx data empty", true); else return new Message(frame, hexData.toLowerCase(), false); } @Override public void stopAndJoin() { super.stopAndJoin(); BluetoothManager.getInstance().disconnect(); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/devices/Http.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.devices; import com.google.gson.JsonElement; import com.google.gson.JsonParser; import java.io.BufferedInputStream; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import lu.fisch.canze.BuildConfig; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.actors.Frame; import lu.fisch.canze.actors.Message; public class Http extends Device { private static final int TIMEOUT_DUMMMY = 0; private String urlLeader; public void join() throws InterruptedException { pollerThread.join(); } private String sendAndWaitForAnswer(String command, int waitMillis, int timeout) { String result; try { result = httpGet(urlLeader + command); //MainActivity.debug("Http: jsonLineResult:" + jsonLine); if (result.compareTo("") == 0) { return "-E-result from httpGet empty"; } if (result.compareTo("") == 0) { MainActivity.debug("Http: getMessageResult is empty"); return "-E-result from json element R empty"; } if (result.substring(0, 1).compareTo("-") == 0) { MainActivity.debug("Http: getMessageResult is an error or warning"); return result; } } catch (Exception e) { MainActivity.debug("Http: Exception"); return "-E-Exception"; } return result; } private String httpGet(String urlString) { try { // MainActivity.debug("Http: httpGet url:" + urlString); URL url = new URL(urlString); HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection(); try { urlConnection.setConnectTimeout(10000); // MainActivity.debug("Http: httpGet start connection and get result"); InputStream ips = urlConnection.getInputStream(); // MainActivity.debug("Http: httpGet ips opened"); BufferedInputStream in = new BufferedInputStream(ips); // MainActivity.debug("Http: httpGet in opened"); BufferedReader reader = new BufferedReader(new InputStreamReader(in)); String st; StringBuilder stringBuilder = new StringBuilder(200); while ((st = reader.readLine()) != null) { // MainActivity.debug("Http: httpGet append " + st); stringBuilder.append(st); } // MainActivity.debug("Http: httpGet return " + stringBuilder.toString()); return stringBuilder.toString(); } catch (Exception e) { e.printStackTrace(); } finally { urlConnection.disconnect(); } } catch (Exception e) { e.printStackTrace(); } return ""; } @Override public void clearFields() { super.clearFields(); } @Override public Message requestFreeFrame(Frame frame) { // build the command string to send to the remote device // CanSee maintains a table of all received free frames and immediately responds with // the last known frame String command = "g" + frame.getFromIdHex(); return responseToMessage(frame, command, TIMEOUT_DUMMMY); } @Override public Message requestIsoTpFrame(Frame frame) { // build the command string to send to the remote device // Note that all ISOTP handling is done by the CanSee device String command = "i" + frame.getFromIdHex() + "," + frame.getRequestId() + "," + frame.getResponseId(); return responseToMessage(frame, command, TIMEOUT_DUMMMY); } private Message responseToMessage(Frame frame, String command, int timeout) { // convert CanSee output to a Message object MainActivity.debug("Http.rtm.send [" + command + "]"); String text = sendAndWaitForAnswer(command, 0, timeout); // send and wait for an answer, no delay MainActivity.debug("Http.rtm.receive [" + text + "]"); if (text.length() == 0) { return new Message(frame, "-E-Http.rtm.empty", true); } // split up the fields String[] pieces = text.trim().split(","); if (pieces.length < 2) { MainActivity.debug("Http.rtm.nocomma [" + text + "]"); return new Message(frame, "-E-Http.rtm.nocomma:" + text, true); } int id; try { id = Integer.parseInt(pieces[0].trim(), 16); } catch (NumberFormatException e) { MainActivity.debug("Http.rtm.Nan [" + text + "]"); return new Message(frame, "-E-Http.rtm.Nan:" + text, true); } if (id != frame.getFromId()) { MainActivity.debug("Http.rtm.diffid [" + text + "]"); return new Message(frame, "-E-Http.rtm.diffid:" + text, true); } return new Message(frame, pieces[1].trim().toLowerCase(), false); } @Override public boolean initDevice(int toughness) { return initDevice(toughness, 1); } @Override protected boolean initDevice(int toughness, int retries) { urlLeader = MainActivity.getBluetoothDeviceAddress() + "?command="; if (BuildConfig.BRANCH.equals("master")) { sendAndWaitForAnswer("n110,0", 0, TIMEOUT_DUMMMY); // disable all serial when on master branch sendAndWaitForAnswer("n114,0", 0, TIMEOUT_DUMMMY); // disable all debugging when on master branch } else { sendAndWaitForAnswer("n110,1", 0, TIMEOUT_DUMMMY); // enable all serial sendAndWaitForAnswer("n114,f6", 0, TIMEOUT_DUMMMY); // enable all default debugging } lastInitProblem = ""; return true; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/exceptions/NoDecoderException.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.exceptions; public class NoDecoderException extends Exception { } ================================================ FILE: app/src/main/java/lu/fisch/canze/fragments/CustomFragment.java ================================================ package lu.fisch.canze.fragments; import android.content.Intent; import android.graphics.drawable.Drawable; import android.os.Bundle; import androidx.fragment.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import lu.fisch.canze.R; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.classes.Activity; import lu.fisch.canze.classes.ActivityRegistry; public class CustomFragment extends Fragment { public CustomFragment() { // Required empty public constructor } public static final int BUTTONCOUNT = 14; private View view; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment View view = inflater.inflate(R.layout.fragment_custom, container, false); this.view=view; loadButtons(); return view; } @Override public void onResume() { super.onResume(); loadButtons(); } public void loadButtons() { ActivityRegistry registry = ActivityRegistry.getInstance(); for(int i=0; i activityClass) { Button button = view.findViewById(buttonId); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (!MainActivity.isSafe()) return; if (MainActivity.device == null) { MainActivity.toast(MainActivity.TOAST_NONE, R.string.toast_AdjustSettings); return; } MainActivity.getInstance().leaveBluetoothOn = true; Intent intent = new Intent(MainActivity.getInstance(), activityClass); CustomFragment.this.startActivityForResult(intent, MainActivity.LEAVE_BLUETOOTH_ON); } }); } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { MainActivity.getInstance().onActivityResult(requestCode, resultCode, data); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/fragments/ExperimentalFragment.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.fragments; import android.content.Intent; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; import lu.fisch.canze.BuildConfig; import lu.fisch.canze.R; import lu.fisch.canze.activities.DashActivity; import lu.fisch.canze.activities.FieldTestActivity; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.activities.ResearchActivity; import lu.fisch.canze.activities.TwingoTestActivity; import lu.fisch.canze.activities.TwizyTestActivity; /** * A simple {@link Fragment} subclass. */ public class ExperimentalFragment extends Fragment { public ExperimentalFragment() { // Required empty public constructor } @Override public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment View view = inflater.inflate(R.layout.fragment_experimental, container, false); activateButton(view, R.id.buttonDash, DashActivity.class); activateButton(view, R.id.buttonResearch, ResearchActivity.class); activateButton(view, R.id.buttonFieldTest, FieldTestActivity.class, true); activateButton(view, R.id.buttonTwingoTest, TwingoTestActivity.class, false); activateButton(view, R.id.buttonTwizyTest, TwizyTestActivity.class, false); return view; } private void activateButton(View view, int buttonId, final Class activityClass) { Button button = view.findViewById(buttonId); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (!MainActivity.isSafe()) return; if (MainActivity.device == null) { MainActivity.toast(MainActivity.TOAST_NONE, R.string.toast_AdjustSettings); return; } MainActivity.getInstance().leaveBluetoothOn = true; Intent intent = new Intent(MainActivity.getInstance(), activityClass); ExperimentalFragment.this.startActivityForResult(intent, MainActivity.LEAVE_BLUETOOTH_ON); } }); } private void activateButton(View view, int buttonId, final Class activityClass, boolean onlyDebug) { if (BuildConfig.BRANCH.equals("master") & onlyDebug) { // if on master and onlyDebug is true, hide button Button button = view.findViewById(buttonId); button.setVisibility(View.INVISIBLE); } else { activateButton(view, buttonId, activityClass); } } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { MainActivity.getInstance().onActivityResult(requestCode, resultCode, data); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/fragments/MainFragment.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.fragments; import android.content.Intent; import android.os.Bundle; import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentActivity; import android.text.Html; import android.text.method.LinkMovementMethod; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.TextView; import com.google.gson.JsonElement; import com.google.gson.JsonParser; import java.io.BufferedInputStream; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import lu.fisch.canze.BuildConfig; import lu.fisch.canze.R; import lu.fisch.canze.activities.BatteryActivity; import lu.fisch.canze.activities.BrakingActivity; import lu.fisch.canze.activities.ChargingActivity; import lu.fisch.canze.activities.ClimaTechActivity; import lu.fisch.canze.activities.ConsumptionActivity; import lu.fisch.canze.activities.DrivingActivity; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.activities.SpeedcontrolActivity; public class MainFragment extends Fragment { private static boolean firstRun = true; private static String msg = ""; private static boolean isHtml = false; public MainFragment() { // Required empty public constructor } @Override public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment // For a bundle, the app might have been installed by users of rooted devices without the // proper "sub-APKs", which will make it crash on not found resources when inflating the // screen. We try to catch that here without using any resource. try { View view = inflater.inflate(R.layout.fragment_main, container, false); activateButton(view, R.id.buttonConsumption, ConsumptionActivity.class); activateButton(view, R.id.buttonChargingActivity, ChargingActivity.class); activateButton(view, R.id.buttonBattery, BatteryActivity.class); activateButton(view, R.id.buttonDrivingActivity, DrivingActivity.class); activateButton(view, R.id.buttonClimaTech, ClimaTechActivity.class); activateButton(view, R.id.buttonBraking, BrakingActivity.class); activateButton(view, R.id.buttonSpeed, SpeedcontrolActivity.class); getNews(view); return view; } catch (Exception e) { MainActivity.toast(MainActivity.TOAST_NONE, "Please install from the play store"); MainActivity.getInstance().finish(); System.exit(0); } return null; } private void activateButton(View view, int buttonId, final Class activityClass) { Button button = view.findViewById(buttonId); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (!MainActivity.isSafe()) return; if (MainActivity.device == null) { MainActivity.toast(MainActivity.TOAST_NONE, R.string.toast_AdjustSettings); return; } MainActivity.getInstance().leaveBluetoothOn = true; Intent intent = new Intent(MainActivity.getInstance(), activityClass); MainFragment.this.startActivityForResult(intent, MainActivity.LEAVE_BLUETOOTH_ON); } }); } private void getNews(final View view) { if (firstRun) { (new Thread(new Runnable() { @Override public void run() { try { URL url = new URL("https://raw.githubusercontent.com/fesch/CanZE/Development/NEWS.json"); HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection(); if (urlConnection == null) return; try { urlConnection.setConnectTimeout(10000); InputStream ips = urlConnection.getInputStream(); BufferedInputStream in = new BufferedInputStream(ips); BufferedReader reader = new BufferedReader(new InputStreamReader(in)); StringBuilder stringBuilder = new StringBuilder(200); while ((msg = reader.readLine()) != null) { // MainActivity.debug("ELM327Http: httpGet append " + st); stringBuilder.append(msg); } JsonElement jsonElement = JsonParser.parseString(stringBuilder.toString()); msg = ""; int version = jsonElement.getAsJsonObject().get("version").getAsInt(); msg = jsonElement.getAsJsonObject().get("news").getAsString(); isHtml = msg.contains("<"); if (version > BuildConfig.VERSION_CODE) { if (isHtml) { msg = "

Please upgrade CanZE

" + msg; } else { msg = "Please upgrade CanZE\n\n" + msg; } } } catch (Exception e) { // ignore offline situation } finally { urlConnection.disconnect(); } } catch (Exception e) { // ignore offline situation } displayNews(view); } })).start(); firstRun = false; } else { displayNews(view); } } private void displayNews(final View view) { if (msg == null || "".equals(msg)) return; FragmentActivity fa = getActivity(); if (fa == null) return; fa.runOnUiThread(new Runnable() { @Override public void run() { TextView tv = view.findViewById(R.id.textNews); tv.setVisibility(View.VISIBLE); if (isHtml) { tv.setText(Html.fromHtml(msg)); tv.setMovementMethod(LinkMovementMethod.getInstance()); } else { tv.setText(msg); } } }); } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { MainActivity.getInstance().onActivityResult(requestCode, resultCode, data); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/fragments/TechnicalFragment.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.fragments; import android.content.Intent; import android.os.Bundle; import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import lu.fisch.canze.R; import lu.fisch.canze.activities.AllDataActivity; import lu.fisch.canze.activities.AuxBattTechActivity; import lu.fisch.canze.activities.ChargingGraphActivity; import lu.fisch.canze.activities.ChargingHistActivity; import lu.fisch.canze.activities.ChargingTechActivity; import lu.fisch.canze.activities.DtcActivity; import lu.fisch.canze.activities.ElmTestActivity; import lu.fisch.canze.activities.FirmwareActivity; import lu.fisch.canze.activities.HeatmapBatcompActivity; import lu.fisch.canze.activities.HeatmapCellvoltageActivity; import lu.fisch.canze.activities.LeakCurrentsActivity; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.activities.PredictionActivity; import lu.fisch.canze.activities.RangeActivity; import lu.fisch.canze.activities.TiresActivity; /** * A simple {@link Fragment} subclass. */ public class TechnicalFragment extends Fragment { public TechnicalFragment() { // Required empty public constructor } @Override public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment View view = inflater.inflate(R.layout.fragment_technical, container, false); activateButton(view, R.id.buttonChargingTech, ChargingTechActivity.class); activateButton(view, R.id.buttonDtc, DtcActivity.class); activateButton(view, R.id.buttonChargingGraphs, ChargingGraphActivity.class); activateButton(view, R.id.buttonFirmware, FirmwareActivity.class); activateButton(view, R.id.buttonChargingPrediction, PredictionActivity.class); activateButton(view, R.id.buttonElmTest, ElmTestActivity.class); activateButton(view, R.id.buttonChargingHistory, ChargingHistActivity.class); activateButton(view, R.id.buttonAuxBatt, AuxBattTechActivity.class); activateButton(view, R.id.buttonLeakCurrents, LeakCurrentsActivity.class); activateButton(view, R.id.buttonTires, TiresActivity.class); activateButton(view, R.id.buttonHeatmapCellvoltage, HeatmapCellvoltageActivity.class); activateButton(view, R.id.buttonHeatmapBatcomp, HeatmapBatcompActivity.class); activateButton(view, R.id.buttonRange, RangeActivity.class); activateButton(view, R.id.buttonAllData, AllDataActivity.class); return view; } private void activateButton(View view, int buttonId, final Class activityClass) { Button button = view.findViewById(buttonId); if (MainActivity.isPh2() && buttonId == R.id.buttonTires) { button.setVisibility(View.INVISIBLE); button.setEnabled(false); } else { button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (!MainActivity.isSafe()) return; if (MainActivity.device == null) { MainActivity.toast(MainActivity.TOAST_NONE, R.string.toast_AdjustSettings); return; } MainActivity.getInstance().leaveBluetoothOn = true; Intent intent = new Intent(MainActivity.getInstance(), activityClass); TechnicalFragment.this.startActivityForResult(intent, MainActivity.LEAVE_BLUETOOTH_ON); } }); } } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { MainActivity.getInstance().onActivityResult(requestCode, resultCode, data); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/interfaces/BluetoothEvent.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.interfaces; import android.bluetooth.BluetoothSocket; public interface BluetoothEvent { void onBeforeConnect(); void onAfterConnect(BluetoothSocket bluetoothSocket); void onBeforeDisconnect(BluetoothSocket bluetoothSocket); void onAfterDisconnect(); } ================================================ FILE: app/src/main/java/lu/fisch/canze/interfaces/DebugListener.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* * This class represents a stack listener. */ package lu.fisch.canze.interfaces; public interface DebugListener { void dropDebugMessage (String msg); void appendDebugMessage (String msg); } ================================================ FILE: app/src/main/java/lu/fisch/canze/interfaces/DrawSurfaceInterface.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.interfaces; public interface DrawSurfaceInterface { void repaint(); } ================================================ FILE: app/src/main/java/lu/fisch/canze/interfaces/FieldListener.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* * This class represents a stack listener. */ package lu.fisch.canze.interfaces; import lu.fisch.canze.actors.Field; public interface FieldListener { void onFieldUpdateEvent(Field field); } ================================================ FILE: app/src/main/java/lu/fisch/canze/interfaces/VirtualFieldAction.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.interfaces; import java.util.HashMap; import lu.fisch.canze.actors.Field; public interface VirtualFieldAction { double updateValue(HashMap dependantFields); } ================================================ FILE: app/src/main/java/lu/fisch/canze/ui/AppSectionsPagerAdapter.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.ui; import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentManager; import androidx.fragment.app.FragmentPagerAdapter; import java.util.ArrayList; import lu.fisch.canze.fragments.CustomFragment; import lu.fisch.canze.fragments.ExperimentalFragment; import lu.fisch.canze.fragments.MainFragment; import lu.fisch.canze.fragments.TechnicalFragment; public class AppSectionsPagerAdapter extends FragmentPagerAdapter { private final ArrayList fragments = new ArrayList<>(); public AppSectionsPagerAdapter(FragmentManager fm) { super(fm, FragmentPagerAdapter.BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT); fragments.add(new MainFragment()); // 0 fragments.add(new TechnicalFragment()); // 1 fragments.add(new ExperimentalFragment()); // 2 fragments.add(new CustomFragment()); // 2 } @NonNull @Override public Fragment getItem(int i) { return fragments.get(i); } @Override public int getCount() { return fragments.size(); } } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/Bar.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.widgets; import lu.fisch.awt.Color; import lu.fisch.awt.Graphics; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.interfaces.DrawSurfaceInterface; /** * * @author robertfisch */ public class Bar extends Drawable { public Bar() { super(); } public Bar(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; // test } public Bar(DrawSurfaceInterface drawSurface, int x, int y, int width, int height) { this.drawSurface=drawSurface; this.x = x; this.y = y; this.width = width; this.height = height; } @Override public void draw(Graphics g) { // black border g.setColor(Color.BLACK); g.drawRect(x, y, width, height); int value = this.value; if (inverted) value=-value; // calculate fill height int fillHeight = (int) ((value-min)/(double)(max-min)*(height-1)); if(valuemax) fillHeight = (int) ((max-min)/(double)(max-min)*(height-1)); int barWidth = width-Math.max(g.stringWidth(min+""),g.stringWidth(max+""))-10-10-g.stringHeight(title)-4; int startY = y+height-fillHeight; // if min is below zero, we want to start at that position if(min<0) { int zero = (int) ((0-min)/(double)(max-min)*(height-1)); startY = y+zero; if(value>0) { fillHeight=zero-(height-fillHeight); startY-=fillHeight; } else { fillHeight=zero-fillHeight; } } // draw the filled part g.drawRect(x + width - barWidth, y, barWidth, height); g.setColor(Color.RED); String sid = getSids().get(0); if(getOptions().getOption(sid)!=null && getOptions().getOption(sid).contains("gradient")) { int[] colors = colorRanges.getColors(sid); float[] spacings = colorRanges.getSpacings(sid, min, max); if(colors.length==spacings.length) { g.setGradient(0, height-1, 0, 0, colors, spacings); } } g.fillRect(x + 1 + width - barWidth, startY, barWidth - 2, fillHeight); g.clearGradient(); // draw the ticks if(minorTicks>0 || majorTicks>0) { g.setColor(Color.GRAY_DARK); int toTicks = minorTicks; if(toTicks==0) toTicks=majorTicks; double accel = (double)height/((max-min)/(double)toTicks); double ax,ay,bx=0,by=0; int actual = min; int sum = 0; for(double i=height; i>=0; i-=accel) { if(minorTicks>0) { ax = x+width-barWidth-5; ay = y+i; bx = x+width-barWidth; by = y+i; g.drawLine((int)ax, (int)ay, (int)bx, (int)by); } // draw majorTicks if(majorTicks!=0 && sum % majorTicks == 0) { if(majorTicks>0) { ax = x+width-barWidth-10; ay = y+i; bx = x+width-barWidth; by = y+i; g.drawLine((int)ax, (int)ay, (int)bx, (int)by); if(ay!=y+height && (int)i!=0) { g.setColor(Color.WHITE); g.drawLine(x+1+width-barWidth, (int)ay, x+width-1, (int)by); g.setColor(Color.GRAY_DARK); } } // draw String if(showLabels) { String text = (actual)+""; double sw = g.stringWidth(text); bx = x+width-barWidth-16-sw; by = y+i; g.drawString(text, (int)(bx), (int)(by+g.stringHeight(text)*(1-i/height))); } actual+=majorTicks; } sum+=minorTicks; } } // draw the value if(showValue) { g.setTextSize(Math.min(width/7,40)); String text = String.format("%." + String.valueOf(field.getDecimals()) + "f", field.getValue()); int tw = g.stringWidth(text); int th = g.stringHeight(text); int tx = x+width-barWidth/2-tw/2; int ty = y+height/2+th/2; g.setColor(Color.BLACK); g.drawString(text, tx, ty); } // draw the title if(title!=null && !title.equals("")) { g.setColor(getTitleColor()); g.setTextSize(16); int tw = g.stringWidth(title); int th = g.stringHeight(title); int tx = x; //x+width-barWidth/2-tw/2; int ty = y+height; //getY()+getHeight()-8; g.rotate(-90, tx, ty); g.drawString(title,tx+4,ty+th+2); g.rotate(90,tx,ty); } } /* -------------------------------- * Serialization \ ------------------------------ */ @Override public String dataToJson() { return ""; } @Override public void dataFromJson(String json) { } } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/BarGraph.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.widgets; import lu.fisch.awt.Color; import lu.fisch.awt.Graphics; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.database.CanzeDataSource; import lu.fisch.canze.interfaces.DrawSurfaceInterface; /** * Created by robertfisch on 26.10.2015. */ public class BarGraph extends Plotter { public BarGraph() { super(); } public BarGraph(int x, int y, int width, int height) { super(x, y, width, height); } public BarGraph(DrawSurfaceInterface drawSurface, int x, int y, int width, int height) { super(drawSurface,x,y,width,height); } @Override public void draw(Graphics g) { // black border g.setColor(Color.BLACK); g.drawRect(x, y, width, height); // calculate fill height int fillHeight = (int) ((value-min)/(double)(max-min)*(height-1)); int barWidth = width-Math.max(g.stringWidth(min+""),g.stringWidth(max+""))-10-10; // draw the ticks if(minorTicks>0 || majorTicks>0) { int toTicks = minorTicks; if(toTicks==0) toTicks=majorTicks; double accel = (double)height/((max-min)/(double)toTicks); double ax,ay,bx,by; int actual = min; int sum = 0; for(double i=height; i>=0; i-=accel) { if(minorTicks>0) { g.setColor(Color.GRAY); ax = x+width-barWidth-5; ay = y+i; bx = x+width-barWidth; by = y+i; g.drawLine((int)ax, (int)ay, (int)bx, (int)by); } // draw majorTicks if(majorTicks!=0 && sum % majorTicks == 0) { if(majorTicks>0) { g.setColor(Color.GRAY_LIGHT); ax = x+width-barWidth-10; ay = y+i; bx = x+width; by = y+i; g.drawLine((int)ax, (int)ay, (int)bx, (int)by); g.setColor(Color.GRAY); ax = x+width-barWidth-10; ay = y+i; bx = x+width-barWidth; by = y+i; g.drawLine((int)ax, (int)ay, (int)bx, (int)by); } // draw String if(showLabels) { g.setColor(Color.GRAY); String text = (actual)+""; double sw = g.stringWidth(text); bx = x+width-barWidth-16-sw; by = y+i; g.drawString(text, (int)(bx), (int)(by+g.stringHeight(text)*(1-i/height))); } actual+=majorTicks; } sum+=minorTicks; } } // draw the graph g.drawRect(x+width-barWidth, y, barWidth, height); if(values.size()>0) { double w = (double) barWidth/values.size(); double h = (double) getHeight()/(getMax()-getMin()); for(int i=0; i "+field.getValue()); int index = sids.indexOf(sid); if (index == -1) { sids.add(sid); values.add(field.getValue()); //minValues.add(CanzeDataSource.getInstance().getMin(sid)); //maxValues.add(CanzeDataSource.getInstance().getMax(sid)); } else setValue(index, field.getValue()); // only repaint if the last field has been updated //if(index==sids.size()-1) super.onFieldUpdateEvent(field); } } } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/BatteryBar.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.widgets; import lu.fisch.awt.Color; import lu.fisch.awt.Graphics; import lu.fisch.canze.interfaces.DrawSurfaceInterface; /** * * @author robertfisch */ public class BatteryBar extends Drawable { public BatteryBar() { super(); } public BatteryBar(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; // test } public BatteryBar(DrawSurfaceInterface drawSurface, int x, int y, int width, int height) { this.drawSurface=drawSurface; this.x = x; this.y = y; this.width = width; this.height = height; } @Override public void draw(Graphics g) { // black border g.setColor(Color.BLACK); g.drawRect(x, y, width, height); // calculate fill height int fillHeight = (int) ((value-min)/(double)(max-min)*(height-1)); int barWidth = width-Math.max(g.stringWidth(min+""),g.stringWidth(max+""))-10-10-g.stringHeight(title)-4; // draw the filled part g.drawRect(x + width - barWidth, y, barWidth, height); if( value< -20 ) {g.setColor(Color.BLACK);} else if ( value< 0 ) { g.setColor(Color.BLUE);} else if ( value< 15 ) { g.setColor(Color.GRAY);} else if ( value< 22 ) { g.setColor(Color.GREEN);} else if ( value< 25 ) { g.setColor(Color.YELLOW);} else { g.setColor(Color.RED);} if(inverted) g.fillRect(x+1+width-barWidth, y+1, barWidth-1, fillHeight); else g.fillRect(x+1+width-barWidth, y+height-fillHeight, barWidth-1, fillHeight); // draw the ticks if(minorTicks>0 || majorTicks>0) { g.setColor(Color.GRAY_DARK); int toTicks = minorTicks; if(toTicks==0) toTicks=majorTicks; double accel = (double)height/((max-min)/(double)toTicks); double ax,ay,bx=0,by=0; int actual = min; int sum = 0; for(double i=height; i>=0; i-=accel) { if(minorTicks>0) { ax = x+width-barWidth-5; ay = y+i; bx = x+width-barWidth; by = y+i; g.drawLine((int)ax, (int)ay, (int)bx, (int)by); } // draw majorTicks if(majorTicks!=0 && sum % majorTicks == 0) { if(majorTicks>0) { ax = x+width-barWidth-10; ay = y+i; bx = x+width-barWidth; by = y+i; g.drawLine((int)ax, (int)ay, (int)bx, (int)by); if(ay!=y+height && (int)i!=0) { g.setColor(Color.WHITE); g.drawLine(x+1+width-barWidth, (int)ay, x+width-1, (int)by); g.setColor(Color.GRAY_DARK); } } // draw String if(showLabels) { String text = (actual)+""; double sw = g.stringWidth(text); bx = x+width-barWidth-16-sw; by = y+i; g.drawString(text, (int)(bx), (int)(by+g.stringHeight(text)*(1-i/height))); } actual+=majorTicks; } sum+=minorTicks; } } // draw the value if(showValue) { g.setTextSize(Math.min(width/7,40)); String text = String.format("%." + String.valueOf(field.getDecimals()) + "f", field.getValue()); int tw = g.stringWidth(text); int th = g.stringHeight(text); int tx = x+width-barWidth/2-tw/2; int ty = y+height/2; g.setColor(Color.GREEN_DARK); g.drawString(text, tx, ty); } // draw the title if(title!=null && !title.equals("")) { g.setColor(getTitleColor()); g.setTextSize(16); int tw = g.stringWidth(title); int th = g.stringHeight(title); int tx = x; //x+width-barWidth/2-tw/2; int ty = y+height; //getY()+getHeight()-8; g.rotate(-90, tx, ty); g.drawString(title,tx+4,ty+th-2); g.rotate(90,tx,ty); } } /* -------------------------------- * Serialization \ ------------------------------ */ @Override public String dataToJson() { return ""; } @Override public void dataFromJson(String json) { } } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/DrawThread.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.widgets; import lu.fisch.awt.Graphics; import lu.fisch.canze.widgets.Drawable; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.PaintFlagsDrawFilter; import android.os.Handler; import android.view.SurfaceHolder; public class DrawThread extends Thread { /** Handle to the surface manager object we interact with */ private SurfaceHolder mSurfaceHolder; /** Handle to the application context, used to e.g. fetch Drawables. */ private Context mContext; /** Message handler used by thread to interact with TextView */ private Handler mHandler; // indicates weather we are running or not private boolean running = false; private Drawable drawable = null; public DrawThread(SurfaceHolder surfaceHolder, Context context, Handler handler) { // get handles to some important objects mSurfaceHolder = surfaceHolder; mHandler = handler; mContext = context; } public void setDrawable(Drawable item) { this.drawable =item; } private void draw(Canvas c) { if(running) { // enable anti-aliasing c.setDrawFilter(new PaintFlagsDrawFilter(1, Paint.ANTI_ALIAS_FLAG)); // clean background Paint paint = new Paint(); paint.setColor(Color.WHITE); c.drawRect(0, 0, c.getWidth(), c.getHeight(), paint); // do your paintings here ... drawable.draw(new Graphics(c)); } } @Override public void run() { Canvas c = null; try { // get the surface c = mSurfaceHolder.lockCanvas(); synchronized (mSurfaceHolder) { if(c!=null) { draw(c); } } } finally { // do this in a finally so that if an exception is thrown // during the above, we don't leave the surface in an // inconsistent state if (c != null) { mSurfaceHolder.unlockCanvasAndPost(c); } running=false; } } @Override public void start() { running=true; super.start(); } public boolean isRunning() { return running; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/Drawable.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* * Represents an elemtn which can be draw onto a canvas */ package lu.fisch.canze.widgets; import android.graphics.Point; import com.google.gson.Gson; import java.util.ArrayList; import java.util.HashMap; import lu.fisch.awt.Color; import lu.fisch.awt.Graphics; import lu.fisch.awt.Rectangle; import lu.fisch.canze.activities.CanzeActivity; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.classes.ColorRanges; import lu.fisch.canze.classes.Intervals; import lu.fisch.canze.classes.Options; import lu.fisch.canze.database.CanzeDataSource; import lu.fisch.canze.interfaces.DrawSurfaceInterface; import lu.fisch.canze.interfaces.FieldListener; /** * * @author robertfisch */ public abstract class Drawable implements FieldListener { protected int x, y, width, height; protected int min = 0; protected int max = 0; protected int minAlt = 0; protected int maxAlt = 0; protected int majorTicks = 10; protected int minorTicks = 2; protected boolean showLabels = true; protected boolean showValue = true; protected boolean inverted = false; protected int value = 0; protected Field field = null; protected String title = ""; protected int timeSale = 1; // colors protected Color foreground = Color.BLACK; protected Color background = Color.WHITE; protected Color intermediate = Color.GRAY_LIGHT; protected Color titleColor = Color.BLUE; protected DrawSurfaceInterface drawSurface = null; protected ArrayList sids = new ArrayList<>(); protected ColorRanges colorRanges = new ColorRanges(); protected Intervals intervals = new Intervals(); protected Options options = new Options(); public Drawable() { } public abstract void draw(Graphics g); public boolean isInside(Point p) { Rectangle rect = new Rectangle(x, y, width, height); return rect.contains(p); } protected double mkRad(double degree) { return degree/180.*Math.PI; } @Override public void onFieldUpdateEvent(Field field) { this.field = field; setValue((int) field.getValue()); if(drawSurface!=null) drawSurface.repaint(); } public void onLayout(boolean landscape) { // empty } public void reset() { // empty } /* -------------------------------- * Serialization \ ------------------------------ */ public abstract String dataToJson(); public abstract void dataFromJson(String json); public void loadValuesFromDatabase() { // empty } /* -------------------------------- * Getters & setters \ ------------------------------ */ public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } public int getWidth() { return width; } public void setWidth(int width) { this.width = width; } public int getHeight() { return height; } public void setHeight(int height) { this.height = height; } public int getMin() { return min; } public void setMin(int min) { this.min = min; } public int getMax() { return max; } public void setMax(int max) { this.max = max; } public int getMajorTicks() { return majorTicks; } public void setMajorTicks(int majorTicks) { this.majorTicks = majorTicks; } public int getMinorTicks() { return minorTicks; } public void setMinorTicks(int minorticks) { this.minorTicks = minorticks; } public boolean isShowLabels() { return showLabels; } public void setShowLabels(boolean showLabels) { this.showLabels = showLabels; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public int getValue() { return value; } public void setValue(int value) { this.value = value; } public DrawSurfaceInterface getDrawSurface() { return drawSurface; } public void setDrawSurface(DrawSurfaceInterface drawSurface) { this.drawSurface = drawSurface; } public boolean isShowValue() { return showValue; } public void setShowValue(boolean showValue) { this.showValue = showValue; } public boolean isInverted() { return inverted; } public void setInverted(boolean inverted) { this.inverted = inverted; } public Field getField() { return field; } public void addField(String sid) { if(!sids.contains(sid)) { sids.add(sid); } } public ArrayList getSids() { return sids; } public void setColorRanges(ColorRanges colorRanges) { this.colorRanges = colorRanges; } public Color getForeground() { return foreground; } public void setForeground(Color foreground) { this.foreground = foreground; } public Color getBackground() { return background; } public void setBackground(Color background) { this.background = background; } public Color getIntermediate() { return intermediate; } public void setIntermediate(Color intermediate) { this.intermediate = intermediate; } public Color getTitleColor() { return titleColor; } public void setTitleColor(Color titleColor) { this.titleColor = titleColor; } public Intervals getIntervals() { return intervals; } public void setIntervals(Intervals intervals) { this.intervals = intervals; } public Options getOptions() { return options; } public void setOptions(Options options) { this.options = options; } public int getMaxAlt() { return maxAlt; } public void setMaxAlt(int maxAlt) { this.maxAlt = maxAlt; } public int getMinAlt() { return minAlt; } public void setMinAlt(int minAlt) { this.minAlt = minAlt; } public int getTimeScale() { return timeSale; } public void setTimeScale(int timescale) { this.timeSale = timescale; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/Kompass.java ================================================ package lu.fisch.canze.widgets; import android.graphics.Point; import lu.fisch.awt.Color; import lu.fisch.awt.Graphics; import lu.fisch.awt.Polygon; import lu.fisch.canze.interfaces.DrawSurfaceInterface; /** * * @author robertfisch */ public class Kompass extends Tacho { public Kompass() { super(); } public Kompass(int x, int y, int width, int height) { super(x, y, width, height); } public Kompass(DrawSurfaceInterface drawSurface, int x, int y, int width, int height) { super(drawSurface, x, y, width, height); } @Override public void setMax(int max) { super.setMax(max); super.setMin(-max); } @Override public void setMin(int min) { super.setMin(min); super.setMax(-min); } @Override public void draw(Graphics g) { // clean the surface g.setColor(Color.WHITE); g.fillRect(0,0,getWidth(),getHeight()); g.setTextSize(12); double alpha = (360-angle)/2.; // determine the rayon to be used double rayon = 0; if(angle>=180) rayon = Math.min(width/2.,height/(1+Math.sin(mkRad(90-alpha))))-padding; else rayon = Math.min((width/2)/Math.cos(mkRad(90-angle/2)),height)-padding; // determine center point Point center = new Point(x+(width/2),y+(int)(rayon+padding)); g.setColor(Color.BLACK); g.drawRect(x, y, width, height); // draw the frame g.setColor(Color.GRAY_DARK); double ax,ay,bx=0,by=0; // draw right arm ax = center.x+rayon*Math.cos(mkRad(-90+alpha)); ay = center.y-rayon*Math.sin(mkRad(-90+alpha)); //g.drawLine(center.x,center.y,(int)ax,(int)ay); // draw arc for(double i=-90+alpha; i<=360-90-alpha; i+=2) { bx = center.x+rayon*Math.cos(mkRad(i)); by = center.y-rayon*Math.sin(mkRad(i)); g.drawLine((int)ax, (int)ay, (int)bx, (int)by); ax=bx; ay=by; } // draw left arm ax = center.x+rayon*Math.cos(mkRad(-90-alpha)); ay = center.y-rayon*Math.sin(mkRad(-90-alpha)); //g.drawLine(center.x,center.y,(int)ax,(int)ay); // draw last chunk of arc g.drawLine((int)ax, (int)ay, (int)bx, (int)by); // draw the labels g.setColor(Color.BLACK); double dist = 360-2*alpha; int actual = 0; // draw the minor ticks if(minorTicks >0 || majorTicks>0) { g.setColor(Color.GRAY_DARK); int toTicks = minorTicks; if(toTicks==0) toTicks=majorTicks; double accel = dist/((max-min)/toTicks); int sum = 0; // min --> 0 for(double i=-90+alpha+dist/2; i<=360-90-alpha; i+=accel) { if(minorTicks >0) { ax = center.x+(rayon)*Math.cos(mkRad(i)); ay = center.y-(rayon)*Math.sin(mkRad(i)); bx = center.x+(rayon-6)*Math.cos(mkRad(i)); by = center.y-(rayon-6)*Math.sin(mkRad(i)); g.drawLine((int)ax, (int)ay, (int)bx, (int)by); } // draw majorTicks if(majorTicks!=0 && sum % majorTicks == 0) { if(majorTicks>0) { ax = center.x+(rayon)*Math.cos(mkRad(i)); ay = center.y-(rayon)*Math.sin(mkRad(i)); bx = center.x+(rayon-12)*Math.cos(mkRad(i)); by = center.y-(rayon-12)*Math.sin(mkRad(i)); g.drawLine((int)ax, (int)ay, (int)bx, (int)by); } // draw String if(showLabels) { bx = center.x+(rayon-24)*Math.cos(mkRad(i)); by = center.y-(rayon-24)*Math.sin(mkRad(i)); String text = (actual)+""; double sw = g.stringWidth(text); g.drawString(text, (int) (bx - (sw/2. + sw/2.*Math.cos(mkRad(i))) ), (int) (by + g.stringHeight(text) / 2)); } actual-=majorTicks; } sum+= minorTicks; } // 0 --> max actual = 0; sum=0; //for(double i=-90+alpha+dist/2; i<=360-90-alpha; i+=accel) for(double i=-90+alpha+dist/2; i>=-90+alpha; i-=accel) { if(minorTicks >0) { ax = center.x+(rayon)*Math.cos(mkRad(i)); ay = center.y-(rayon)*Math.sin(mkRad(i)); bx = center.x+(rayon-6)*Math.cos(mkRad(i)); by = center.y-(rayon-6)*Math.sin(mkRad(i)); g.drawLine((int)ax, (int)ay, (int)bx, (int)by); } // draw majorTicks if(majorTicks!=0 && sum % majorTicks == 0) { if(majorTicks>0) { ax = center.x+(rayon)*Math.cos(mkRad(i)); ay = center.y-(rayon)*Math.sin(mkRad(i)); bx = center.x+(rayon-12)*Math.cos(mkRad(i)); by = center.y-(rayon-12)*Math.sin(mkRad(i)); g.drawLine((int)ax, (int)ay, (int)bx, (int)by); } // draw String if(showLabels) { bx = center.x+(rayon-24)*Math.cos(mkRad(i)); by = center.y-(rayon-24)*Math.sin(mkRad(i)); String text = (actual)+""; double sw = g.stringWidth(text); g.drawString(text, (int) (bx - (sw/2. + sw/2.*Math.cos(mkRad(i))) ), (int) (by + g.stringHeight(text) / 2)); } actual+=majorTicks; } sum+= minorTicks; } } // draw the needle g.setColor(Color.RED); double rota = 90+alpha+dist*(value-min)/(max-min); if (inverted) rota = 90+alpha+dist*(-value-min)/(max-min); Polygon p = new Polygon(); double needleLength = rayon-45; double pointerLength = rayon*0.1; double angleDiff = 5; p.addPoint(center.x, center.y); p.addPoint((int)(center.x+(needleLength-pointerLength)*Math.cos(mkRad(rota + angleDiff))), (int)(center.y+(needleLength-pointerLength)*Math.sin(mkRad(rota + angleDiff)))); p.addPoint((int)(center.x+needleLength*Math.cos(mkRad(rota))), (int)(center.y+needleLength*Math.sin(mkRad(rota)))); p.addPoint((int)(center.x+(needleLength-pointerLength)*Math.cos(mkRad(rota-angleDiff))), (int)(center.y+(needleLength-pointerLength)*Math.sin(mkRad(rota - angleDiff)))); g.fillPolygon(p); // draw the value if(showValue) { if(field !=null) { g.setTextSize(Math.min(width / 7, 40)); String text = String.format("%." + String.valueOf(field.getDecimals()) + "f", field.getValue()); int tw = g.stringWidth(text); int th = g.stringHeight(text); int tx = center.x-tw/2-3; int ty = center.y+th; g.setColor(Color.WHITE); g.fillRect(tx - 1, ty - th, tw + 7, th + 5); //g.setColor(Color.BLACK); //g.drawRect(tx - 1, ty - th, tw + 7, th +5); g.setColor(Color.GREEN_DARK); g.drawString(text, tx, ty); } } // draw the title if(title!=null && !title.equals("")) { g.setColor(getTitleColor()); g.setTextSize(20); int tw = g.stringWidth(title); //int th = g.stringHeight(title); int tx = getX()+getWidth()/2-tw/2; int ty = getY()+getHeight()-8; g.drawString(title,tx,ty); } } /* -------------------------------- * Serialization \ ------------------------------ */ @Override public String dataToJson() { return ""; } @Override public void dataFromJson(String json) { } } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/Label.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.widgets; import lu.fisch.awt.Color; import lu.fisch.awt.Graphics; import lu.fisch.canze.interfaces.DrawSurfaceInterface; /** * Created by robertfisch on 04.10.2015. */ public class Label extends Drawable { private int textSize = -1; public Label() { super(); } public Label(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; // test } public Label(DrawSurfaceInterface drawSurface, int x, int y, int width, int height) { this.drawSurface=drawSurface; this.x = x; this.y = y; this.width = width; this.height = height; } @Override public void onLayout(boolean landscape) { textSize=-1; } @Override public void reset() { textSize=-1; } @Override public void draw(Graphics g) { // black border //g.setColor(Color.BLACK); //g.drawRect(x, y, width, height); // background g.setColor(getBackground()); g.fillRect(x, y, width, height); // black border g.setColor(getForeground()); g.drawRect(x, y, width, height); // draw the value if(showValue) { if(field !=null) { // get text String text = String.format("%." + String.valueOf(field.getDecimals()) + "f", field.getValue()).trim(); int th, tw; //if(textSize==-1) { // init textSize = 10; // find out what the biggest text size could be do { g.setTextSize(textSize); tw = g.stringWidth(text); th = g.stringHeight(text); textSize++; } while (th < getHeight() * 0.9 && tw < getWidth() * 0.9); textSize--; //} g.setTextSize(textSize); tw = g.stringWidth(text); th = g.stringHeight(text); int tx = getX()+getWidth()/2-tw/2; int ty = getY()+getHeight()/2+th/2; //g.setColor(Color.GREEN_DARK); g.setColor(getForeground()); g.drawString(text, tx, ty); } } // draw the title if(title!=null && !title.equals("")) { g.setColor(getTitleColor()); g.setTextSize(20); int tx = getX()+8; int ty = getY()+g.stringHeight(title)+8; g.drawString(title,tx,ty); } } /* -------------------------------- * Serialization \ ------------------------------ */ @Override public String dataToJson() { return ""; } @Override public void dataFromJson(String json) { } } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/Plotter.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.widgets; import static lu.fisch.canze.activities.MainActivity.debug; import android.content.res.Resources; import android.util.TypedValue; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import lu.fisch.awt.Color; import lu.fisch.awt.Graphics; import java.lang.reflect.Type; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.HashMap; import java.util.Locale; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.classes.TimePoint; import lu.fisch.canze.classes.Crashlytics; import lu.fisch.canze.database.CanzeDataSource; import lu.fisch.canze.fragments.MainFragment; import lu.fisch.canze.interfaces.DrawSurfaceInterface; /** * * @author robertfisch */ public class Plotter extends Drawable { protected ArrayList values = new ArrayList<>(); //protected ArrayList minValues = new ArrayList<>(); //protected ArrayList maxValues = new ArrayList<>(); protected ArrayList sids = new ArrayList<>(); public Plotter() { super(); } public Plotter(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; // test } public Plotter(DrawSurfaceInterface drawSurface, int x, int y, int width, int height) { this.drawSurface=drawSurface; this.x = x; this.y = y; this.width = width; this.height = height; } public void setValue(int index, double value) { // synchronized as loadValuesFromDatabase can be running synchronized (values) { try { values.set(index, value); } catch (IndexOutOfBoundsException e) { Crashlytics.logException(e); // Bail out. Based on Play Console Crash Report } //if(valuemaxValues.get(index)) maxValues.set(index,value); } } @Override public void setValue(int value) { super.setValue(value); //addValue(value); } @Override public void draw(Graphics g) { // black border //g.setColor(Color.BLACK); //g.drawRect(x, y, width, height); // background g.setColor(getBackground()); g.fillRect(x, y, width, height); // black border g.setColor(getForeground()); g.drawRect(x, y, width, height); // calculate fill height int fillHeight = (int) ((value-min)/(double)(max-min)*(height-1)); int barWidth = width-Math.max(g.stringWidth(min+""),g.stringWidth(max+""))-10-10; int spaceAlt = Math.max(g.stringWidth(minAlt+""),g.stringWidth(maxAlt+""))+10+10; // reduce with if second y-axe is used if (minAlt==-1 && maxAlt==-1) { spaceAlt=0; } barWidth-=spaceAlt; // what is the graph height SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss", Locale.getDefault()); int graphHeight = height-g.stringHeight(sdf.format(Calendar.getInstance().getTime()))-5; // draw the ticks if(minorTicks>0 || majorTicks>0) { int toTicks = minorTicks; if(toTicks==0) toTicks=majorTicks; double accel = (double)height/((max-min)/(double)toTicks); double ax,ay,bx,by; int actual = min; int sum = 0; for(double i=height; i>=0; i-=accel) { if(minorTicks>0) { g.setColor(Color.GRAY); ax = x+width-barWidth-5; ay = y+i; bx = x+width-barWidth; by = y+i; g.drawLine((int)ax, (int)ay, (int)bx, (int)by); } // draw majorTicks if(majorTicks!=0 && sum % majorTicks == 0) { if(majorTicks>0) { g.setColor(Color.GRAY_LIGHT); ax = x+width-barWidth-10; ay = y+i; bx = x+width; by = y+i; g.drawLine((int)ax, (int)ay, (int)bx, (int)by); g.setColor(Color.GRAY); ax = x+width-barWidth-10; ay = y+i; bx = x+width-barWidth; by = y+i; g.drawLine((int)ax, (int)ay, (int)bx, (int)by); } // draw String if(showLabels) { g.setColor(Color.GRAY); String text = (actual)+""; double sw = g.stringWidth(text); bx = x+width-barWidth-16-sw; by = y+i; g.drawString(text, (int)(bx), (int)(by+g.stringHeight(text)*(1-i/height))); } actual+=majorTicks; } sum+=minorTicks; } } // draw the horizontal grid /* g.setColor(getIntermediate()); long start = Calendar.getInstance().getTimeInMillis()/1000; int interval = 60/timeSale; for(long x=width-(start%interval)-spaceAlt; x>=width-barWidth-spaceAlt; x-=interval) { g.drawLine(x, 1, x, graphHeight + 5); } */ /* MainActivity.debug("Values "+values.size()); MainActivity.debug("Values min "+minValues.size()); MainActivity.debug("Values max "+maxValues.size());/**/ // draw the graph g.drawRect(x+width-barWidth, y, barWidth, height); // min & max /* if(minValues.size()>0) { double w = (double) barWidth/minValues.size(); double h = (double) getHeight()/(getMax()-getMin()+1); double lastX = Double.NaN; double lastY = Double.NaN; g.setColor(Color.GREEN_DARK); for(int i=0; i0) { g.drawLine(getX()+getWidth()-barWidth+(int)lastX, getY()+(int)lastY, getX()+getWidth()-barWidth+(int)mx, getY()+(int)my); } lastX=mx; lastY=my; } } if(maxValues.size()>0) { double w = (double) barWidth/maxValues.size(); double h = (double) getHeight()/(getMax()-getMin()+1); double lastX = Double.NaN; double lastY = Double.NaN; g.setColor(Color.BLUE); for(int i=0; i0) { g.drawLine(getX()+getWidth()-barWidth+(int)lastX, getY()+(int)lastY, getX()+getWidth()-barWidth+(int)mx, getY()+(int)my); } lastX=mx; lastY=my; } } */ // values //MainActivity.debug("PLOTTER SIZE: "+values.size()); if(values.size()>0) { double w = (double) barWidth/values.size(); double h = (double) getHeight()/(getMax()-getMin()); double lastX = Double.NaN; double lastY = Double.NaN; double min = Double.NaN; double max = Double.NaN; if(values.size()>0) min=values.get(0); max=min; g.setColor(Color.RED); for(int i=0; imax) max=values.get(i); try { //MainActivity.debug("Value "+i+": "+values.get(i)); //MainActivity.debug("Value "+i+": "+values.get(i)+" Max: "+getMax()+" Min: "+getMin()+" height: "+getHeight()+" h: "+h); double mx = w / 2 + i * w; double my = getHeight() - (values.get(i) - getMin()) * h; int rayon = 2; g.fillOval(getX() + getWidth() - barWidth + (int) mx - rayon, getY() + (int) my - rayon, 2 * rayon + 1, 2 * rayon + 1); if (i > 0) { g.drawLine(getX() + getWidth() - barWidth + (int) lastX, getY() + (int) lastY, getX() + getWidth() - barWidth + (int) mx, getY() + (int) my); } lastX = mx; lastY = my; } catch (IndexOutOfBoundsException | NullPointerException e) { /* simply ignore */ } } // draw min & max if (showValue) { g.setColor(getTitleColor()); g.setTextSize(20); int tx = getX() + width - 8 - spaceAlt; int ty = getY(); int dy = g.stringHeight("Ip") + 4; // full height and undersling String text = "min: "+String.format("%.2f", min); int tw = g.stringWidth(text); ty += dy; g.drawString(text, tx - tw, ty); text = "max: "+String.format("%.2f", max); tw = g.stringWidth(text); ty += dy; g.drawString(text, tx - tw, ty); } } // draw the title if(title!=null && !title.equals("")) { g.setColor(getTitleColor()); g.setTextSize(20); int th = g.stringHeight(title); int tx = getX()+width-barWidth+8; int ty = getY()+th+4; g.drawString(title,tx,ty); } } @Override public void onFieldUpdateEvent(Field field) { // only take data fofr valid cars //MainActivity.debug("Plotter: "+field.getSID()+" --> "+field.getValue()); //MainActivity.debug("Car = "+MainActivity.car+" / "+field.getCar()+" / "+field.isCar(MainActivity.car)); if(field.isCar(MainActivity.car)) { String sid = field.getSID(); //MainActivity.debug("!! Plotter: "+sid+" --> "+field.getValue()); int index = sids.indexOf(sid); if (index == -1) { values.add(field.getValue()); sids.add(sid); //minValues.add(CanzeDataSource.getInstance().getMin(sid)); //maxValues.add(CanzeDataSource.getInstance().getMax(sid)); } else setValue(index, field.getValue()); // only repaint if the last field has been updated //if(index==sids.size()-1) super.onFieldUpdateEvent(field); } } /* -------------------------------- * Serialization \ ------------------------------ */ @Override public void loadValuesFromDatabase() { super.loadValuesFromDatabase(); // since this code is called in a separate thread (see WidgetView.SurfaceCreated) we need // to synchronize "values" synchronized (values) { values.clear(); //maxValues.clear(); //minValues.clear(); for (int s = 0; s < sids.size(); s++) { String sid = sids.get(s); values.add(CanzeDataSource.getInstance().getLast(sid)); //maxValues.add(CanzeDataSource.getInstance().getMax(sid)); //minValues.add(CanzeDataSource.getInstance().getMin(sid)); } } } @Override public String dataToJson() { Gson gson = new Gson(); ArrayList> data = new ArrayList<>(); data.add((ArrayList) values.clone()); //data.add((ArrayList) minValues.clone()); //data.add((ArrayList) maxValues.clone()); return gson.toJson(data); } @Override public void dataFromJson(String json) { Gson gson = new Gson(); Type fooType = new TypeToken>>() {}.getType(); ArrayList> data = gson.fromJson(json, fooType); values = data.get(0); //minValues=data.get(1); //maxValues=data.get(2); } //unused and faulty anyway as the size of sids and values may now divert //public void setValues(ArrayList values) //{ // this.values = values; //} } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/Tacho.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.widgets; import android.content.res.Resources; import android.graphics.Point; import android.util.TypedValue; import com.google.gson.Gson; import lu.fisch.awt.Color; import lu.fisch.awt.Graphics; import lu.fisch.awt.Polygon; import lu.fisch.canze.interfaces.DrawSurfaceInterface; /** * * @author robertfisch */ public class Tacho extends Drawable { protected double angle = 240; protected boolean autoRange = false; protected int padding = 5; public Tacho() { super(); } public Tacho(DrawSurfaceInterface drawSurface, int x, int y, int width, int height) { this.drawSurface=drawSurface; this.x = x; this.y = y; this.width = width; this.height = height; } public Tacho(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; } public void draw(Graphics g) { // clean the surface //g.setColor(Color.WHITE); //g.fillRect(0,0,getWidth(),getHeight()); // background g.setColor(getBackground()); g.fillRect(x, y, width, height); // black border g.setColor(getForeground()); g.drawRect(x, y, width, height); g.setTextSize(12); double alpha = (360-angle)/2.; // determine the rayon to be used double rayon = 0; if(angle>=180) rayon = Math.min(width/2.,height/(1+Math.sin(mkRad(90-alpha))))-padding; else rayon = Math.min((width/2)/Math.cos(mkRad(90-angle/2)),height)-padding; // determine center point Point center = new Point(x+(width/2),y+(int)(rayon+padding)); //g.setColor(Color.BLACK); g.setColor(getForeground()); g.drawRect(x, y, width, height); // draw the frame //g.setColor(Color.GRAY_DARK); g.setColor(getIntermediate()); double ax,ay,bx=0,by=0; // draw right arm ax = center.x+rayon*Math.cos(mkRad(-90+alpha)); ay = center.y-rayon*Math.sin(mkRad(-90+alpha)); //g.drawLine(center.x,center.y,(int)ax,(int)ay); // draw arc for(double i=-90+alpha; i<=360-90-alpha; i+=2) { bx = center.x+rayon*Math.cos(mkRad(i)); by = center.y-rayon*Math.sin(mkRad(i)); g.drawLine((int)ax, (int)ay, (int)bx, (int)by); ax=bx; ay=by; } // draw left arm ax = center.x+rayon*Math.cos(mkRad(-90-alpha)); ay = center.y-rayon*Math.sin(mkRad(-90-alpha)); //g.drawLine(center.x,center.y,(int)ax,(int)ay); // draw last chunk of arc g.drawLine((int)ax, (int)ay, (int)bx, (int)by); // draw the labels g.setColor(getForeground()); //g.setColor(Color.BLACK); double dist = 360-2*alpha; int actual = min; // draw the minor ticks if(minorTicks >0 || majorTicks>0) { //g.setColor(Color.GRAY_DARK); g.setColor(getIntermediate()); int toTicks = minorTicks; if (toTicks == 0) toTicks = majorTicks; double accel = dist / ((max - min) / toTicks); int sum = 0; for (double i = 360 - 90 - alpha; i > (int)( -90 + alpha)-accel; i -= accel) { if (minorTicks > 0) { ax = center.x + (rayon) * Math.cos(mkRad(i)); ay = center.y - (rayon) * Math.sin(mkRad(i)); bx = center.x + (rayon - 6) * Math.cos(mkRad(i)); by = center.y - (rayon - 6) * Math.sin(mkRad(i)); g.drawLine((int) ax, (int) ay, (int) bx, (int) by); } // draw majorTicks if (majorTicks != 0 && sum % majorTicks == 0) { if (majorTicks > 0) { ax = center.x + (rayon) * Math.cos(mkRad(i)); ay = center.y - (rayon) * Math.sin(mkRad(i)); bx = center.x + (rayon - 12) * Math.cos(mkRad(i)); by = center.y - (rayon - 12) * Math.sin(mkRad(i)); g.drawLine((int) ax, (int) ay, (int) bx, (int) by); } // draw String if (showLabels) { bx = center.x + (rayon - 24) * Math.cos(mkRad(i)); by = center.y - (rayon - 24) * Math.sin(mkRad(i)); String text = (actual) + ""; double sw = g.stringWidth(text); g.drawString(text, (int) (bx - (sw/2. + sw/2.*Math.cos(mkRad(i))) ), (int) (by + g.stringHeight(text) / 2)); } actual += majorTicks; } sum += minorTicks; } } // draw the needle g.setColor(Color.RED); double rota = 90+alpha+dist*(value-min)/(max-min); Polygon p = new Polygon(); double needleLength = rayon-45; double pointerLength = rayon*0.1; double angleDiff = 5; p.addPoint(center.x, center.y); p.addPoint((int)(center.x+(needleLength-pointerLength)*Math.cos(mkRad(rota + angleDiff))), (int)(center.y+(needleLength-pointerLength)*Math.sin(mkRad(rota + angleDiff)))); p.addPoint((int)(center.x+needleLength*Math.cos(mkRad(rota))), (int)(center.y+needleLength*Math.sin(mkRad(rota)))); p.addPoint((int)(center.x+(needleLength-pointerLength)*Math.cos(mkRad(rota-angleDiff))), (int)(center.y+(needleLength-pointerLength)*Math.sin(mkRad(rota - angleDiff)))); g.fillPolygon(p); // draw the value if(showValue) { if(field !=null) { //g.setTextSize(Math.min(width / 7, 40)); g.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 22, Resources.getSystem().getDisplayMetrics())); String text = String.format("%." + String.valueOf(field.getDecimals()) + "f", field.getValue()); int tw = g.stringWidth(text); int th = g.stringHeight(text); int tx = center.x-tw/2-3; int ty = center.y+th; g.setColor(getBackground()); //g.setColor(Color.WHITE); g.fillRect(tx - 1, ty - th, tw + 7, th + 5); //g.setColor(Color.BLACK); //g.drawRect(tx - 1, ty - th, tw + 7, th +5); g.setColor(getForeground()); //g.setColor(Color.GREEN_DARK); g.drawString(text, tx, ty); } } // draw the title if(title!=null && !title.equals("")) { //g.setColor(Color.BLUE); g.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 14, Resources.getSystem().getDisplayMetrics())); //g.setTextSize(20); int tw = g.stringWidth(title); //int th = g.stringHeight(title); int tx = getX()+getWidth()/2-tw/2; int ty = getY()+getHeight()-8; g.drawString(title,tx,ty); } } /* -------------------------------- * Getters & setters \ ------------------------------ */ public void setAngle(double angle) { this.angle = angle; } public void setValue(int value) { if(autoRange) { if(valuemax) max=value; } else { if(valuemax) value=max; } this.value = value; } /* -------------------------------- * Serialization \ ------------------------------ */ @Override public String dataToJson() { return ""; } @Override public void dataFromJson(String json) { } } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/Timeplot.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.widgets; import android.content.res.Resources; import android.util.TypedValue; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import java.lang.reflect.Type; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.HashMap; import java.util.Locale; import lu.fisch.awt.Color; import lu.fisch.awt.Graphics; import lu.fisch.awt.Polygon; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.actors.Field; import lu.fisch.canze.actors.Fields; import lu.fisch.canze.classes.TimePoint; import lu.fisch.canze.database.CanzeDataSource; import lu.fisch.canze.interfaces.DrawSurfaceInterface; /** * @author robertfisch */ public class Timeplot extends Drawable { protected HashMap> values = new HashMap<>(); private boolean backward = true; public Timeplot() { super(); } public Timeplot(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; // test } public Timeplot(DrawSurfaceInterface drawSurface, int x, int y, int width, int height) { this.drawSurface = drawSurface; this.x = x; this.y = y; this.width = width; this.height = height; } public void addValue(String fieldSID, double value) { long iTime = Calendar.getInstance().getTimeInMillis(); // with the new dongle, fields may come in too fast, so let's // make sure we do not get an overflow >> very slow app reaction // maximum each second a new value! iTime = (iTime / 1000) * 1000; //MainActivity.debug(values.size()+""); if (!values.containsKey(fieldSID)) values.put(fieldSID, new ArrayList()); // don't add every point, but check if for the given second we already have this point // remembering more than one point per second is kind of overkill // values.get(fieldSID).add(new TimePoint(Calendar.getInstance().getTimeInMillis(), value)); // if empty, add /* TODO given crashlitics, I think we should sync this block JM */ ArrayList val = values.get(fieldSID); if (val == null) return; if (val.size() == 0) val.add(new TimePoint(iTime, value)); else { TimePoint lastTP = val.get(val.size() - 1); // if this is really a new point, add it if (lastTP == null || lastTP.date != iTime) val.add(new TimePoint(iTime, value)); // if not, replace the previous point // ( database will store the max, but as the value of the last point is also being // displayed on the screen, we should prefer having the real last point here ) else { val.set(val.size() - 1, new TimePoint(iTime, value)); } } } private Color getColor(int i) { if (i == 0) return Color.RENAULT_RED; else if (i == 1) return Color.BLUE; else return Color.GREEN_DARK; } @Override public void draw(Graphics g) { // background g.setColor(getBackground()); g.fillRect(x, y, width, height); // black border g.setColor(getForeground()); g.drawRect(x, y, width, height); // calculate fill height //int fillHeight = (int) ((value-min)/(double)(max-min)*(height-1)); int barWidth = width - Math.max(g.stringWidth(min + ""), g.stringWidth(max + "")) - 10 - 10; int spaceAlt = Math.max(g.stringWidth(minAlt + ""), g.stringWidth(maxAlt + "")) + 10 + 10; // reduce with if second y-axe is used //MainActivity.debug("Alt: "+minAlt+" - "+maxAlt); if (minAlt == 0 && maxAlt == 0) { spaceAlt = 0; } barWidth -= spaceAlt; SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss", Locale.getDefault()); int graphHeight = height - g.stringHeight(sdf.format(Calendar.getInstance().getTime())) - 15; // draw the ticks double realMaxAlt = getMaxAlt(); if (minorTicks > 0 || majorTicks > 0) { int toTicks = minorTicks; if (toTicks == 0) toTicks = majorTicks; double intervals = ((max - min) / (double) toTicks); double accel = (double) graphHeight / intervals; double ax, ay, bx, by; int actual = min; int actualAlt = minAlt; int sum = 0; for (double i = graphHeight; i >= 0; i -= accel) { if (minorTicks > 0) { g.setColor(getForeground()); ax = x + width - barWidth - spaceAlt - 5; ay = y + i; bx = x + width - barWidth - spaceAlt; by = y + i; g.drawLine((int) ax, (int) ay, (int) bx, (int) by); if (spaceAlt != 0) { ax = x + width - spaceAlt; ay = y + i; bx = ax + 5; by = y + i; g.drawLine((int) ax, (int) ay, (int) bx, (int) by); } } // draw majorTicks if (majorTicks != 0 && sum % majorTicks == 0) { if (majorTicks > 0) { g.setColor(getIntermediate()); ax = x + width - spaceAlt - barWidth - 10; ay = y + i; bx = x + width - spaceAlt + (spaceAlt != 0 ? 10 : 0); by = y + i; g.drawLine((int) ax, (int) ay, (int) bx, (int) by); g.setColor(getForeground()); ax = x + width - barWidth - spaceAlt - 10; ay = y + i; bx = x + width - barWidth - spaceAlt; by = y + i; g.drawLine((int) ax, (int) ay, (int) bx, (int) by); if (spaceAlt != 0) { ax = x + width - spaceAlt; ay = y + i; bx = ax + 10; by = y + i; g.drawLine((int) ax, (int) ay, (int) bx, (int) by); } } // draw String if (showLabels) { g.setColor(getForeground()); g.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 8, Resources.getSystem().getDisplayMetrics())); String text = (actual) + ""; double sw = g.stringWidth(text); bx = x + width - barWidth - 16 - sw - spaceAlt; by = y + i; g.drawString(text, (int) (bx), (int) (by + g.stringHeight(text) * (1 - i / graphHeight))); // alternative labels if (spaceAlt != 0) { text = (actualAlt) + ""; //sw = g.stringWidth(text); bx = x + width - spaceAlt + 16; by = y + i; g.drawString(text, (int) (bx), (int) (by + g.stringHeight(text) * (1 - i / graphHeight))); } } actual += majorTicks; actualAlt += Math.round((double) (maxAlt - minAlt) / (max - min) * majorTicks); } sum += minorTicks; } // calculate real max alt double altTicks = Math.round((double) (maxAlt - minAlt) / (max - min) * majorTicks) / ((double) majorTicks / toTicks); realMaxAlt = intervals * altTicks + getMinAlt(); } // draw the vertical grid g.setColor(getIntermediate()); long start = (Calendar.getInstance().getTimeInMillis() / 1000); // start in seconds int interval = 60 / timeSale; try { if (backward) { ArrayList list = this.values.get(sids.get(0)); start = list.get(list.size() - 1).date / 1000; for (int s = 0; s < sids.size(); s++) { list = this.values.get(sids.get(s)); long thisDate = list.get(list.size() - 1).date / 1000; if (thisDate > start) start = thisDate; } long newStart = start; for (long x = width - (newStart % interval) - spaceAlt; x >= width - barWidth - spaceAlt; x -= interval) { g.drawLine(x, 1, x, graphHeight + 5); } } else { ArrayList list = this.values.get(sids.get(0)); start = list.get(0).date / 1000; for (int s = 0; s < sids.size(); s++) { list = this.values.get(sids.get(s)); long thisDate = list.get(0).date / 1000; if (thisDate < start) start = thisDate; } for (long x = width - barWidth - spaceAlt; x < width - spaceAlt; x += interval) { g.drawLine(x, 1, x, graphHeight + 5); } } } catch (Exception e) { //MainActivity.debug("Exception: "+e.getMessage()); for (long x = width - (start % interval) - spaceAlt; x >= width - barWidth - spaceAlt; x -= interval) { g.drawLine(x, 1, x, graphHeight + 5); } } // draw the graph for (int s = 0; s < sids.size(); s++) { String sid = sids.get(s); //ArrayList tmpValues = this.values.get(sid); // make a shallow copy. this avoids array size changes and thus out of bounds while drawing ArrayList tmpValues = new ArrayList<>(this.values.get(sid)); // setup an empty list if no list has been found if (tmpValues == null) { tmpValues = new ArrayList<>(); this.values.put(sid, tmpValues); } g.setColor(getForeground()); g.drawRect(x + width - barWidth - spaceAlt, y, barWidth, graphHeight); if (tmpValues.size() > 0) { double w = (double) barWidth / tmpValues.size(); double h = (double) graphHeight / (getMax() - getMin()); double hAlt = (double) graphHeight / (realMaxAlt - getMinAlt()); double lastX = Double.NaN; double lastY = Double.NaN; g.setColor(getColor(s)); if (isBackward()) { long maxTime = start * 1000; //values.get(values.size() - 1).date; for (int i = tmpValues.size() - 1; i >= 0; i--) { TimePoint tp; try { tp = tmpValues.get(i); } catch (IndexOutOfBoundsException e) { tp = null; } if (tp != null && !Double.isNaN(tp.value) && tp.date != 0) { g.setColor(colorRanges.getColor(sid, tp.value, getColor(s))); double mx = barWidth - ((maxTime - tp.date) / timeSale / 1000.0); if (mx < 0) { tmpValues.remove(i); } else { // determine Y double my; // distinct "alt" vs "normal" if (getOptions().getOption(sid) != null && getOptions().getOption(sid).contains("alt")) my = graphHeight - (tp.value - minAlt) * hAlt; else my = graphHeight - (tp.value - min) * h; // check if y should be fixed: colorline[value-of-y] if ((getOptions().getOption(sid) != null && !getOptions().getOption(sid).isEmpty() && getOptions().getOption(sid).contains("colorline"))) { // parse out position of line String options = getOptions().getOption(sid); int index = options.indexOf("colorline"); index += ("colorline").length() + 1; String value = ""; while (index < options.length() && options.charAt(index) != ']') { value += options.charAt(index); index++; } if (getOptions().getOption(sid) != null && getOptions().getOption(sid).contains("alt")) my = graphHeight - (Double.parseDouble(value) - minAlt) * hAlt; else my = graphHeight - (Double.parseDouble(value) - min) * h; } // now get ZY double zy; if (getOptions().getOption(sid) != null && getOptions().getOption(sid).contains("alt")) zy = graphHeight - (- minAlt) * hAlt; else zy = graphHeight - (- min) * h; int rayon = 2; if (getOptions().getOption(sid) == null || (getOptions().getOption(sid) != null && (getOptions().getOption(sid).isEmpty() || getOptions().getOption(sid).contains("dot")))) { g.fillOval(getX() + getWidth() - barWidth + (int) mx - rayon - spaceAlt, getY() + (int) my - rayon, 2 * rayon + 1, 2 * rayon + 1); } if (i < tmpValues.size() - 1 && (mx != 0 || my != 0)) { if (getOptions().getOption(sid) != null && getOptions().getOption(sid).contains("full")) { if (!testErrorPoint(lastX, lastY, "last full") && !testErrorPoint(mx, my, "m full")) { Polygon p = new Polygon(); p.addPoint(getX() + getWidth() - barWidth + (int) lastX - spaceAlt, getY() + (int) lastY); p.addPoint(getX() + getWidth() - barWidth + (int) mx - spaceAlt, getY() + (int) my); p.addPoint(getX() + getWidth() - barWidth + (int) mx - spaceAlt, (int) (getY() + zy)); p.addPoint(getX() + getWidth() - barWidth + (int) lastX - spaceAlt, (int) (getY() + zy)); g.fillPolygon(p); } } else if (getOptions().getOption(sid) != null && getOptions().getOption(sid).contains("gradient")) { if (i < tmpValues.size() && tmpValues.get(i + 1) != null) { if (!testErrorPoint(lastX, lastY, "last grad") && !testErrorPoint(mx, my, "m grad")) { Polygon p = new Polygon(); p.addPoint(getX() + getWidth() - barWidth + (int) lastX - spaceAlt, getY() + (int) lastY); p.addPoint(getX() + getWidth() - barWidth + (int) mx - spaceAlt, getY() + (int) my); p.addPoint(getX() + getWidth() - barWidth + (int) mx - spaceAlt, (int) (getY() + zy)); p.addPoint(getX() + getWidth() - barWidth + (int) lastX - spaceAlt, (int) (getY() + zy)); int[] colors = colorRanges.getColors(sid); float[] spacings = colorRanges.getSpacings(sid, min, max); if (colors.length == spacings.length) g.setGradient(0, graphHeight, 0, 0, colors, spacings); g.fillPolygon(p); g.clearGradient(); //else MainActivity.debug("size not equal: "+colors.length+"=="+spacings.length); } } } else { if (!testErrorPoint(mx, my, "m line")) { g.drawLine(getX() + getWidth() - barWidth + (int) lastX - spaceAlt, getY() + (int) lastY, getX() + getWidth() - barWidth + (int) mx - spaceAlt, getY() + (int) my); } } } lastX = mx; lastY = my; } } } } else { // forward long minTime = start * 1000; //values.get(0).date; for (int i = 0; i < tmpValues.size(); i++) { TimePoint tp = tmpValues.get(i); if (tp != null && !Double.isNaN(tp.value) && tp.date != 0) { g.setColor(colorRanges.getColor(sid, tp.value, getColor(s))); double mx = ((tp.date - minTime) / timeSale / 1000.0); if (mx <= barWidth) { // ignore point that are out of scope but do not delete them double my = graphHeight - (tp.value - min) * h; // check if y should be fixed: colorline[value-of-y] if ((getOptions().getOption(sid) != null && !getOptions().getOption(sid).isEmpty() && getOptions().getOption(sid).contains("colorline"))) { // parse out position of line String options = getOptions().getOption(sid); int index = options.indexOf("colorline"); index += ("colorline").length() + 1; String value = ""; while (index < options.length() && options.charAt(index) != ']') { value += options.charAt(index); index++; } my = graphHeight - (Double.parseDouble(value) - min) * h; } double zy = graphHeight - (- min) * h; // draw on alternate scale if requested if (getOptions().getOption(sid) != null && getOptions().getOption(sid).contains("alt")) { my = graphHeight - (tp.value - minAlt) * hAlt; zy = graphHeight - (- minAlt) * hAlt; } int rayon = 2; //MainActivity.debug("HERE: "+sid+" / "+getOptions().getOption(sid)); if (getOptions().getOption(sid) == null || (getOptions().getOption(sid) != null && (getOptions().getOption(sid).isEmpty() || getOptions().getOption(sid).contains("dot")))) { g.fillOval(getX() + getWidth() - barWidth + (int) mx - rayon - spaceAlt, getY() + (int) my - rayon, 2 * rayon + 1, 2 * rayon + 1); } if (i > 0 && (mx != 0 || my != 0)) { if (getOptions().getOption(sid) != null && getOptions().getOption(sid).contains("full")) { if (!testErrorPoint(lastX, lastY, "last full") && !testErrorPoint(mx, my, "m full")) { Polygon p = new Polygon(); p.addPoint(getX() + getWidth() - barWidth + (int) lastX - spaceAlt, getY() + (int) lastY); p.addPoint(getX() + getWidth() - barWidth + (int) mx - spaceAlt, getY() + (int) my); p.addPoint(getX() + getWidth() - barWidth + (int) mx - spaceAlt, (int) (getY() + zy)); p.addPoint(getX() + getWidth() - barWidth + (int) lastX - spaceAlt, (int) (getY() + zy)); g.fillPolygon(p); } } else if (getOptions().getOption(sid) != null && getOptions().getOption(sid).contains("gradient")) { //if (i < values.size() && values.get(i - 1) != null) { if (!testErrorPoint(lastX, lastY, "last grad") && !testErrorPoint(mx, my, "m grad")) { Polygon p = new Polygon(); p.addPoint(getX() + getWidth() - barWidth + (int) lastX - spaceAlt, getY() + (int) lastY); p.addPoint(getX() + getWidth() - barWidth + (int) mx - spaceAlt, getY() + (int) my); p.addPoint(getX() + getWidth() - barWidth + (int) mx - spaceAlt, (int) (getY() + zy)); p.addPoint(getX() + getWidth() - barWidth + (int) lastX - spaceAlt, (int) (getY() + zy)); int[] colors = colorRanges.getColors(sid); float[] spacings = colorRanges.getSpacings(sid, min, max); if (colors.length == spacings.length) g.setGradient(0, graphHeight, 0, 0, colors, spacings); g.fillPolygon(p); g.clearGradient(); //else MainActivity.debug("size not equal: "+colors.length+"=="+spacings.length); } //} } else { if (!testErrorPoint(mx, my, "m line")) { g.drawLine(getX() + getWidth() - barWidth + (int) lastX - spaceAlt, getY() + (int) lastY, getX() + getWidth() - barWidth + (int) mx - spaceAlt, getY() + (int) my); } } } lastX = mx; lastY = my; } } } } } } // clean bottom g.setColor(getBackground()); g.fillRect(width - barWidth - 2, graphHeight + 1, barWidth + 1, height - graphHeight - 2); // draw bottom axis int c = 0; int ts = (int) timeSale; // draw the horizontal scale sdf = new SimpleDateFormat("HH:mm", Locale.getDefault()); if (!this.values.isEmpty()) if (backward) { long newStart = (Calendar.getInstance().getTimeInMillis()); // use now as starting for (int s = 0; s < sids.size(); s++) { //check all sids in this graph ArrayList list = this.values.get(sids.get(s)); // get the timepoints of this sid if (list != null && !list.isEmpty()) { TimePoint tp = list.get(list.size() - 1); // get the last one if (tp != null) { if (tp.date > newStart) newStart = tp.date; // find the max } } } //long newStart = start*1000; //MainActivity.debug("Start 2: "+sdf.format(newStart)); for (long x = width - (start % interval) - spaceAlt; x >= width - barWidth - spaceAlt; x -= interval) { if (c % (5 * ts) == 0) { g.setColor(getForeground()); g.drawLine(x, graphHeight, x, graphHeight + 10); String date = sdf.format((newStart - ((newStart % interval)) * timeSale - interval * c * timeSale * 1000)); g.drawString(date, x - g.stringWidth(date) - 4, height - 2); } else { g.setColor(getForeground()); g.drawLine(x, graphHeight, x, graphHeight + 3); } c++; } } else { // forward ArrayList list; // = this.values.get(sids.get(0)); long newStart = (Calendar.getInstance().getTimeInMillis()); for (int s = 0; s < sids.size(); s++) { //check all sids in this graph list = this.values.get(sids.get(s)); // get the timepoints of this sid if (list != null && !list.isEmpty()) { TimePoint tp = list.get(0); // get the first one if (tp != null) { if (tp.date < newStart) newStart = tp.date; // find the min } } } //MainActivity.debug("START: "+sdf.format(start)); //long newStart = start*1000; for (long x = width - barWidth - spaceAlt; x < width - spaceAlt; x += interval) { if (c % (5 * ts) == 0) { g.setColor(getForeground()); g.drawLine(x, graphHeight, x, graphHeight + 10); String date = sdf.format(newStart + (interval * c * timeSale * 1000)); g.drawString(date, x - g.stringWidth(date) - 4, height - 2); } else { g.setColor(getForeground()); g.drawLine(x, graphHeight, x, graphHeight + 3); } c++; } } // draw the title if (title != null && !title.equals("")) { g.setColor(getTitleColor()); if (MainActivity.getInstance().isLandscape()) g.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 14, Resources.getSystem().getDisplayMetrics())); else g.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 10, Resources.getSystem().getDisplayMetrics())); // draw multi-line title title = title.replace(" / ", ", "); // let's be lazy String[] parts = title.split(","); int tx = getX() + width - barWidth + 8 - spaceAlt; for (int s = 0; s < sids.size(); s++) { String sid = sids.get(s); //ArrayList tmpValues = this.values.get(sid);tmpValues = ArrayList tmpValues = new ArrayList<>(this.values.get(sid)); if (tmpValues == null) continue; int th = g.stringHeight(title); int ty = getY() + th + 4; if (tmpValues.isEmpty()) g.setColor(getColor(s)); else g.setColor(colorRanges.getColor(sid, tmpValues.get(tmpValues.size() - 1).value, getColor(s))); if (s < parts.length) { g.drawString(parts[s].trim(), tx, ty); tx += g.stringWidth(parts[s].trim()); } // draw " / " if needed if (s < sids.size() - 1) { g.setColor(getTitleColor()); g.drawString(" / ", tx, ty); tx += g.stringWidth(" /-"); // " / " will _not_ work! } } /* // draw single line title int th = g.stringHeight(title); int tx = getX()+width-barWidth+8-spaceAlt; int ty = getY()+th+4; g.drawString(title,tx,ty); */ } // draw the value if (showValue) { //g.setTextSize(40); if (MainActivity.getInstance().isLandscape()) g.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 22, Resources.getSystem().getDisplayMetrics())); else g.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 18, Resources.getSystem().getDisplayMetrics())); int tx = getX() + width - 8 - spaceAlt; int ty = getY(); int dy = g.stringHeight("Ip") + 4; // full height and undersling for (int s = 0; s < sids.size(); s++) { String sid = sids.get(s); // ArrayList tmpValues = this.values.get(sid); ArrayList tmpValues = new ArrayList<>(this.values.get(sid)); if (tmpValues == null) continue; Field field = Fields.getInstance().getBySID(sid); String text; if (field != null) { text = String.format("%." + field.getDecimals() + "f", field.getValue()); } else { if (tmpValues.size() == 0) text = "N/A"; else text = String.valueOf(tmpValues.get(tmpValues.size() - 1).value); } if (tmpValues.isEmpty()) { g.setColor(getColor(s)); } else { g.setColor(colorRanges.getColor(sid, tmpValues.get(tmpValues.size() - 1).value, getColor(s))); } int tw = g.stringWidth(text); ty += dy; g.drawString(text, tx - tw, ty); } } // black border g.setColor(getForeground()); g.drawRect(x, y, width, height); } @Override public void onFieldUpdateEvent(Field field) { addValue(field.getSID(), field.getValue()); super.onFieldUpdateEvent(field); } @Override public String dataToJson() { Gson gson = new Gson(); return gson.toJson(values.clone()); } @Override public void dataFromJson(String json) { Gson gson = new Gson(); Type fooType = new TypeToken>>() { }.getType(); values = gson.fromJson(json, fooType); } @Override public void loadValuesFromDatabase() { super.loadValuesFromDatabase(); //values.clear(); // not needed as items will be replaced anyway! for (int s = 0; s < sids.size(); s++) { String sid = sids.get(s); values.put(sid, CanzeDataSource.getInstance().getData(sid)); } } public void addField(String sid) { super.addField(sid); if (!values.containsKey(sid)) { values.put(sid, new ArrayList()); } } public void setValues(HashMap> values) { sids.clear(); sids.addAll(values.keySet()); this.values = values; } public boolean isBackward() { return backward; } public void setBackward(boolean backward) { this.backward = backward; } private boolean testErrorPoint(double x, double y, String er) { double maxdelta = 2.0; if (Double.isNaN(x) || Double.isNaN(y)) { return true; } // test for origin (close to 0, 0 to find tringle problem) // MainActivity.toast ("x:" + x + ", y:" + y + ", " + er); return x >= -maxdelta && x <= maxdelta && y >= -maxdelta && y <= maxdelta; } } ================================================ FILE: app/src/main/java/lu/fisch/canze/widgets/WidgetView.java ================================================ /* CanZE Take a closer look at your ZE car Copyright (C) 2015 - The CanZE Team http://canze.fisch.lu This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package lu.fisch.canze.widgets; import android.content.Context; import android.content.Intent; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Paint; import android.graphics.PaintFlagsDrawFilter; import android.graphics.Point; import android.os.Handler; import android.os.Message; import android.util.AttributeSet; import android.view.Display; import android.view.MotionEvent; import android.view.SurfaceHolder; import android.view.SurfaceView; import android.view.View; import android.view.WindowManager; import java.lang.reflect.Constructor; import java.util.Locale; import lu.fisch.awt.Color; import lu.fisch.awt.Graphics; import lu.fisch.canze.activities.CanzeActivity; import lu.fisch.canze.actors.Field; import lu.fisch.canze.classes.ColorRanges; import lu.fisch.canze.classes.Crashlytics; import lu.fisch.canze.classes.Intervals; import lu.fisch.canze.classes.Options; import lu.fisch.canze.interfaces.DrawSurfaceInterface; import lu.fisch.canze.activities.MainActivity; import lu.fisch.canze.R; import lu.fisch.canze.activities.WidgetActivity; public class WidgetView extends SurfaceView implements DrawSurfaceInterface, SurfaceHolder.Callback, View.OnTouchListener { // a reference to the drawing thread private DrawThread drawThread = null; // your application certainly needs some data model private Drawable drawable = null; private String fieldSID = ""; private boolean clickable = true; protected boolean landscape = true; private CanzeActivity canzeActivity = null; // for data sharing public static Drawable selectedDrawable = null; public void setDrawable(Drawable drawable) { this.drawable=drawable; //if(drawable.getDrawSurface()==null) drawable.setDrawSurface(this); repaint(); } public Drawable getDrawable() { return drawable; } public WidgetView(Context context) { super(context); init(context, null); setOnTouchListener(this); } public WidgetView(Context context, AttributeSet attrs) { super(context, attrs); init(context, attrs); setOnTouchListener(this); } public WidgetView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); init(context, attrs); setOnTouchListener(this); } @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { super.onLayout(changed, left, top, right, bottom); landscape = (right-left)>(bottom-top); if(changed) drawable.onLayout(landscape); } public void reset() { drawable.reset(); repaint(); } public String extractCarValue(String[] values) { // the first value is the default one String carValue = values[0]; for(int i=1; i constructor = clazz.getConstructor(null); Constructor constructor = clazz.getConstructor(); drawable = (Drawable) constructor.newInstance(); drawable.setDrawSurface(WidgetView.this); // apply attributes drawable.setMin(Integer.valueOf(extractCarValue(attributes.getString(R.styleable.WidgetView_axisMinY).split(",")))); drawable.setMax(Integer.valueOf(extractCarValue(attributes.getString(R.styleable.WidgetView_axisMaxY).split(",")))); //drawable.setMin(attributes.getInt(R.styleable.WidgetView_min, 0)); //drawable.setMax(attributes.getInt(R.styleable.WidgetView_max, 0)); drawable.setMajorTicks(Integer.valueOf(extractCarValue(attributes.getString(R.styleable.WidgetView_majorTicks).split(",")))); drawable.setMinorTicks(Integer.valueOf(extractCarValue(attributes.getString(R.styleable.WidgetView_minorTicks).split(",")))); //drawable.setMajorTicks(attributes.getInt(R.styleable.WidgetView_majorTicks, 0)); //drawable.setMinorTicks(attributes.getInt(R.styleable.WidgetView_minorTicks, 0)); drawable.setTitle(attributes.getString(R.styleable.WidgetView_text)); drawable.setShowLabels(attributes.getBoolean(R.styleable.WidgetView_showLabels, true)); drawable.setShowValue(attributes.getBoolean(R.styleable.WidgetView_showValue, true)); drawable.setInverted(attributes.getBoolean(R.styleable.WidgetView_isInverted, false)); String colorRangesJson =attributes.getString(R.styleable.WidgetView_colorRanges); if(colorRangesJson!=null && !colorRangesJson.trim().isEmpty()) drawable.setColorRanges(new ColorRanges(colorRangesJson.replace("'", "\""))); String foreground =attributes.getString(R.styleable.WidgetView_foregroundColor); if(foreground!=null && !foreground.isEmpty()) drawable.setForeground(Color.decode(foreground)); String background =attributes.getString(R.styleable.WidgetView_backgroundColor); if(background!=null && !background.isEmpty()) drawable.setBackground(Color.decode(background)); String intermediate =attributes.getString(R.styleable.WidgetView_intermediateColor); if(intermediate!=null && !intermediate.isEmpty()) drawable.setIntermediate(Color.decode(intermediate)); String titleColor =attributes.getString(R.styleable.WidgetView_titleColor); if(titleColor!=null && !titleColor.isEmpty()) drawable.setTitleColor(Color.decode(titleColor)); String intervalJson =attributes.getString(R.styleable.WidgetView_intervals); if(intervalJson!=null && !intervalJson.trim().isEmpty()) drawable.setIntervals(new Intervals(intervalJson.replace("'", "\""))); String optionsJson =attributes.getString(R.styleable.WidgetView_options); if(optionsJson!=null && !optionsJson.trim().isEmpty()) drawable.setOptions(new Options(optionsJson.replace("'", "\""))); //drawable.setMinAlt(attributes.getInt(R.styleable.WidgetView_minAlt, -1)); //drawable.setMaxAlt(attributes.getInt(R.styleable.WidgetView_maxAlt, -1)); String minAlt = attributes.getString(R.styleable.WidgetView_axisMinYAlt); if(minAlt!=null && !minAlt.trim().isEmpty()) drawable.setMinAlt(Integer.valueOf(extractCarValue(minAlt.split(",")))); String maxAlt = attributes.getString(R.styleable.WidgetView_axisMaxYAlt); if(maxAlt!=null && !maxAlt.trim().isEmpty()) drawable.setMaxAlt(Integer.valueOf(extractCarValue(maxAlt.split(",")))); drawable.setTimeScale(attributes.getInt(R.styleable.WidgetView_timeScale,1)); fieldSID = attributes.getString(R.styleable.WidgetView_fieldSID); if(fieldSID!=null && !fieldSID.equals("")) { String[] sids = fieldSID.split(","); for (int s = 0; s < sids.length; s++) { Field field = MainActivity.fields.getBySID(sids[s]); if (field == null) { //MainActivity.debug("WidgetView: init: Field with SID <" + sids[s] + "> (index <" + s + "> in <" + R.styleable.WidgetView_text + "> not found!"); MainActivity.toast(MainActivity.TOAST_NONE, String.format(Locale.getDefault(), MainActivity.getStringSingle(R.string.format_NoSid), "Widget", sids[s])); } else if (field.getResponseId().equals("999999")) { //do nothing for temporary disabled fields } else { // add field to list of registered sids for this widget drawable.addField(field.getSID()); // add listener field.addListener(drawable); // add filter to reader int interval = drawable.getIntervals().getInterval(field.getSID()); if (interval == -1) MainActivity.device.addActivityField(field, 0); // JM added 0, see that method for rationale else MainActivity.device.addActivityField(field, interval); } } } //MainActivity.debug("WidgetView: My SID is "+fieldSID); if(MainActivity.milesMode) drawable.setTitle(drawable.getTitle().replace("km","mi")); } else { MainActivity.debug("WidgetView: init: WidgetIndex " + widgetIndex + " is wrong!? Not registered in ?"); } } catch(Exception e) { Crashlytics.logException(e); } } // in case your application needs one or more timers, // you have to put them here /*Timer timer = new Timer(); timer.schedule(new TimerTask() { @Override public void run() { repaint(); } }, 100, 100); */ } private boolean motionDown = false; private boolean motionMove = false; private float downX, downY; @Override public boolean onTouch(View v, MotionEvent event) { // react on touch events // get pointer index from the event object int pointerIndex = event.getActionIndex(); // get pointer ID int pointerId = event.getPointerId(pointerIndex); // get masked (not specific to a pointer) action int maskedAction = event.getActionMasked(); MainActivity.debug("WidgetView: maskedAction = " + maskedAction); switch (maskedAction) { case MotionEvent.ACTION_DOWN: case MotionEvent.ACTION_POINTER_DOWN:{ motionDown=true; downX=event.getX(); downY=event.getY(); break; } case MotionEvent.ACTION_MOVE: { if (Math.abs(downX - event.getX()) + Math.abs(downY - event.getY()) > 20) { motionMove=true; } break; } case MotionEvent.ACTION_UP: case MotionEvent.ACTION_POINTER_UP: { if(!motionMove && clickable && MainActivity.isSafe()) { canzeActivity.setWidgetClicked(true); Intent intent = new Intent(this.getContext(), WidgetActivity.class); selectedDrawable = this.getDrawable(); this.getContext().startActivity(intent); } motionDown=false; motionMove=false; break; } case MotionEvent.ACTION_CANCEL: { break; } } invalidate(); return true; } @Override public void surfaceChanged(SurfaceHolder arg0, int arg1, int arg2, int arg3) { } @Override public void surfaceCreated(SurfaceHolder arg0) { // load data from the database (new Thread(new Runnable() { @Override public void run() { drawable.loadValuesFromDatabase(); repaint(); } })).start(); } // DIRECT repaint method public void repaint2() { Canvas c = null; try { c = getHolder().lockCanvas(); if (c != null) { // enable anti-aliasing c.setDrawFilter(new PaintFlagsDrawFilter(1, Paint.ANTI_ALIAS_FLAG)); // clean background Paint paint = new Paint(); paint.setColor(drawable.getBackground().getAndroidColor()); c.drawRect(0, 0, c.getWidth(), c.getHeight(), paint); // set dimensions drawable.setWidth(getWidth()); drawable.setHeight(getHeight()); // do the drawing drawable.draw(new Graphics(c)); } } catch(Exception e) { Crashlytics.logException(e); // ignore } finally { if (c != null) { getHolder().unlockCanvasAndPost(c); } } } // INDIRECT repaint method (using a separate thread public void repaint() { if(drawThread==null || !drawThread.isRunning()) { // gargabe collect System.gc(); // post a task to the UI thread this.post(new Runnable() { @Override public void run() { // create a new drawThread drawThread = new DrawThread(getHolder(), getContext(), new Handler() { @Override public void handleMessage(Message m) { } }); // call the setter for the pointer to the model if (drawable != null) { drawable.setWidth(getWidth()); drawable.setHeight(getHeight()); // draw the widget drawThread.setDrawable(drawable); } // start the thread drawThread.start(); } }); } } @Override public void surfaceDestroyed(SurfaceHolder arg0) { // stop the drawThread properly boolean retry = true; while (retry) { try { // wait for it to finish if(drawThread!=null && drawThread.isRunning()) drawThread.join(); retry = false; } catch (InterruptedException e) { // ignore any error e.printStackTrace(); } } // set it to null, so that a new one can be created in case of a resume drawThread=null; // set parent //if(canzeActivity!=null) // canzeActivity.setWidgetClicked(false); } /* ************************************* * Getter & Setter * *************************************/ public String getFieldSID() { return fieldSID; } @Override public boolean isClickable() { return clickable; } @Override public void setClickable(boolean clickable) { this.clickable = clickable; } public void setFieldSID(String fieldSID) { this.fieldSID = fieldSID; } public void setCanzeActivity(CanzeActivity canzeActivity) { this.canzeActivity = canzeActivity; } } ================================================ FILE: app/src/main/res/drawable/animation_bluetooth.xml ================================================ ================================================ FILE: app/src/main/res/drawable/background_splash.xml ================================================ ================================================ FILE: app/src/main/res/drawable/border.xml ================================================ ================================================ FILE: app/src/main/res/drawable/circular_progress_bar.xml ================================================ ================================================ FILE: app/src/main/res/drawable/progressbar_canze.xml ================================================ ================================================ FILE: app/src/main/res/drawable/progressbar_canze_accel.xml ================================================ ================================================ FILE: app/src/main/res/drawable/progressbar_canze_decel.xml ================================================ ================================================ FILE: app/src/main/res/drawable/progressbar_canze_decel_aim.xml ================================================ ================================================ FILE: app/src/main/res/drawable/progressbar_canze_decel_aimright.xml ================================================ ================================================ FILE: app/src/main/res/drawable/progressbar_canze_green.xml ================================================ ================================================ FILE: app/src/main/res/drawable/progressbar_canze_red.xml ================================================ ================================================ FILE: app/src/main/res/layout/activity_alldata.xml ================================================